diff --git a/charting_library/charting_library.min.d.ts b/charting_library/charting_library.min.d.ts new file mode 100644 index 00000000..9bbbc834 --- /dev/null +++ b/charting_library/charting_library.min.d.ts @@ -0,0 +1,1230 @@ +/// + +export declare type LanguageCode = 'ar' | 'zh' | 'cs' | 'da_DK' | 'nl_NL' | 'en' | 'et_EE' | 'fr' | 'de' | 'el' | 'he_IL' | 'hu_HU' | 'id_ID' | 'it' | 'ja' | 'ko' | 'fa' | 'pl' | 'pt' | 'ro' | 'ru' | 'sk_SK' | 'es' | 'sv' | 'th' | 'tr' | 'vi'; +export interface ISubscription { + subscribe(obj: object | null, member: TFunc, singleshot?: boolean): void; + unsubscribe(obj: object | null, member: TFunc): void; + unsubscribeAll(obj: object | null): void; +} +export interface IDelegate extends ISubscription { + fire: TFunc; +} +export interface IDestroyable { + destroy(): void; +} +export interface FormatterParseResult { + res: boolean; +} +export interface ErrorFormatterParseResult extends FormatterParseResult { + error?: string; + res: false; +} +export interface SuccessFormatterParseResult extends FormatterParseResult { + res: true; + suggest?: string; +} +export interface IFormatter { + format(value: any): string; + parse?(value: string): ErrorFormatterParseResult | SuccessFormatterParseResult; +} +/** + * This is the generic type useful for declaring a nominal type, + * which does not structurally matches with the base type and + * the other types declared over the same base type + * + * Usage: + * @example + * type Index = Nominal; + * // let i: Index = 42; // this fails to compile + * let i: Index = 42 as Index; // OK + * @example + * type TagName = Nominal; + */ +export declare type Nominal = T & { + [Symbol.species]: Name; +}; +export declare type StudyInputValueType = string | number | boolean; +export declare type StudyOverrideValueType = string | number | boolean; +export interface StudyOverrides { + [key: string]: StudyOverrideValueType; +} +export interface WatchedValueSubscribeOptions { + once?: boolean; + callWithLast?: boolean; +} +export interface IWatchedValueReadonly { + value(): T; + subscribe(callback: (value: T) => void, options?: WatchedValueSubscribeOptions): void; + unsubscribe(callback?: ((value: T) => void) | null): void; + spawn(): IWatchedValueReadonlySpawn; +} +export interface IWatchedValueReadonlySpawn extends IWatchedValueReadonly, IDestroyable { +} +export declare type WatchedValueCallback = (value: T) => void; +export interface IWatchedValue extends IWatchedValueReadonly { + value(): T; + setValue(value: T, forceUpdate?: boolean): void; + subscribe(callback: WatchedValueCallback, options?: WatchedValueSubscribeOptions): void; + unsubscribe(callback?: WatchedValueCallback | null): void; + readonly(): IWatchedValueReadonly; + spawn(): IWatchedValueSpawn; +} +export interface IWatchedValueSpawn extends IWatchedValueReadonlySpawn, IWatchedValue { + spawn(): IWatchedValueSpawn; +} +export declare const enum ConnectionStatus { + Connected = 1, + Connecting = 2, + Disconnected = 3, + Error = 4, +} +export declare const enum OrderType { + Limit = 1, + Market = 2, + Stop = 3, + StopLimit = 4, +} +export declare const enum Side { + Buy = 1, + Sell = -1, +} +export declare const enum OrderStatus { + Canceled = 1, + Filled = 2, + Inactive = 3, + Placing = 4, + Rejected = 5, + Working = 6, +} +export declare const enum ParentType { + Order = 1, + Position = 2, + Trade = 3, +} +export declare const enum OrderTicketFocusControl { + StopLoss = 1, + StopPrice = 2, + TakeProfit = 3, +} +export declare const enum NotificationType { + Error = 0, + Success = 1, +} +export interface TableRow { + priceFormatter?: IFormatter; + [name: string]: any; +} +export interface TableFormatterInputs { + value: number | string | Side | OrderType | OrderStatus; + prevValue?: number | undefined; + row: TableRow; + $container: JQuery; + priceFormatter?: IFormatter; +} +export declare type TableElementFormatFunction = (inputs: TableFormatterInputs) => string | JQuery; +export interface TableElementFormatter { + name: string; + format: TableElementFormatFunction; +} +export declare type StandardFormatterName = 'date' | 'default' | 'fixed' | 'formatPrice' | 'formatPriceForexSup' | 'integerSeparated' | 'localDate' | 'percentage' | 'pips' | 'profit' | 'side' | 'status' | 'symbol' | 'type'; +export interface DOMLevel { + price: number; + volume: number; +} +export interface DOMData { + snapshot: boolean; + asks: DOMLevel[]; + bids: DOMLevel[]; +} +export interface QuantityMetainfo { + min: number; + max: number; + step: number; +} +export interface InstrumentInfo { + qty: QuantityMetainfo; + pipValue: number; + pipSize: number; + minTick: number; + description: string; + domVolumePrecision?: number; +} +export interface CustomFields { + [key: string]: any; +} +export interface PreOrder { + symbol: string; + brokerSymbol?: string; + type?: OrderType; + side?: Side; + qty: number; + status?: OrderStatus; + stopPrice?: number; + limitPrice?: number; + stopLoss?: number; + takeProfit?: number; + duration?: OrderDuration; +} +export interface PlacedOrder extends PreOrder, CustomFields { + id: string; + filledQty?: number; + avgPrice?: number; + updateTime?: number; + takeProfit?: number; + stopLoss?: number; + type: OrderType; + side: Side; + status: OrderStatus; +} +export interface OrderWithParent extends PlacedOrder { + parentId: string; + parentType: ParentType; +} +export declare type Order = OrderWithParent | PlacedOrder; +export interface Position { + id: string; + symbol: string; + brokerSymbol?: string; + qty: number; + side: Side; + avgPrice: number; + [key: string]: any; +} +export interface Trade extends CustomFields { + id: string; + date: number; + symbol: string; + brokerSymbol?: string; + qty: number; + side: Side; + price: number; +} +export interface Execution extends CustomFields { + symbol: string; + brokerSymbol?: string; + price: number; + qty: number; + side: Side; + time: number; +} +export interface AccountInfo { + id: string; + name: string; + currency?: string; +} +export interface AccountManagerColumn { + id?: string; + label: string; + className?: string; + formatter?: StandardFormatterName | 'orderSettings' | 'posSettings' | string; + property?: string; + sortProp?: string; + modificationProperty?: string; + notSortable?: boolean; + help?: string; + highlightDiff?: boolean; + fixedWidth?: boolean; + notHideable?: boolean; + hideByDefault?: boolean; +} +export interface SortingParameters { + columnId: string; + asc?: boolean; +} +export interface AccountManagerTable { + id: string; + title?: string; + columns: AccountManagerColumn[]; + initialSorting?: SortingParameters; + changeDelegate: IDelegate<(data: object) => void>; + getData(): Promise; +} +export interface AccountManagerPage { + id: string; + title: string; + tables: AccountManagerTable[]; +} +export interface AccountManagerInfo { + accountTitle: string; + accountsList?: AccountInfo[]; + account?: IWatchedValue; + summary: AccountManagerSummaryField[]; + customFormatters?: TableElementFormatter[]; + orderColumns: AccountManagerColumn[]; + historyColumns?: AccountManagerColumn[]; + positionColumns: AccountManagerColumn[]; + tradeColumns?: AccountManagerColumn[]; + pages: AccountManagerPage[]; + possibleOrderStatuses?: OrderStatus[]; + contextMenuActions?(contextMenuEvent: JQueryEventObject, activePageActions: ActionMetaInfo[]): Promise; +} +export interface TradingQuotes { + trade?: number; + size?: number; + bid?: number; + bid_size?: number; + ask?: number; + ask_size?: number; + spread?: number; +} +export interface ActionDescription { + text?: '-' | string; + separator?: boolean; + shortcut?: string; + tooltip?: string; + checked?: boolean; + checkable?: boolean; + enabled?: boolean; + externalLink?: boolean; +} +export interface MenuSeparator extends ActionDescription { + separator: boolean; +} +export interface ActionDescriptionWithCallback extends ActionDescription { + action: (a: ActionDescription) => void; +} +export declare type ActionMetaInfo = ActionDescriptionWithCallback | MenuSeparator; +export interface AccountManagerSummaryField { + text: string; + wValue: IWatchedValueReadonly; + formatter?: string; +} +export interface OrderDurationMetaInfo { + hasDatePicker?: boolean; + hasTimePicker?: boolean; + name: string; + value: string; +} +export interface OrderDuration { + type: string; + datetime?: number; +} +export interface BrokerConfigFlags { + showQuantityInsteadOfAmount?: boolean; + supportOrderBrackets?: boolean; + supportPositionBrackets?: boolean; + supportTradeBrackets?: boolean; + supportTrades?: boolean; + supportClosePosition?: boolean; + supportCloseTrade?: boolean; + supportEditAmount?: boolean; + supportLevel2Data?: boolean; + supportMultiposition?: boolean; + supportPLUpdate?: boolean; + supportReducePosition?: boolean; + supportReversePosition?: boolean; + supportStopLimitOrders?: boolean; + supportDemoLiveSwitcher?: boolean; + supportCustomPlaceOrderTradableCheck?: boolean; + supportMarketBrackets?: boolean; + supportSymbolSearch?: boolean; + supportModifyDuration?: boolean; + requiresFIFOCloseTrades?: boolean; + supportBottomWidget?: boolean; + /** + * @deprecated + */ + supportBrackets?: boolean; +} +export interface SingleBrokerMetaInfo { + configFlags: BrokerConfigFlags; + customNotificationFields?: string[]; + durations?: OrderDurationMetaInfo[]; +} +export interface Brackets { + stopLoss?: number; + takeProfit?: number; +} +export interface DefaultContextMenuActionsParams { +} +export interface DefaultDropdownActionsParams { + showFloatingToolbar?: boolean; + showDOM?: boolean; + tradingProperties?: boolean; + selectAnotherBroker?: boolean; + disconnect?: boolean; + showHowToUse?: boolean; +} +export interface ITradeContext { + symbol: string; + displaySymbol: string; + value: number | null; + formattedValue: string; + last: number; +} +export interface QuotesBase { + change: number; + change_percent: number; + last_price: number; + fractional: number; + minmov: number; + minmove2: number; + pricescale: number; + description: string; +} +export interface IBrokerConnectionAdapterFactory { + createDelegate(): IDelegate; + createWatchedValue(value?: T): IWatchedValue; +} +export interface IBrokerConnectionAdapterHost { + factory: IBrokerConnectionAdapterFactory; + connectionStatusUpdate(status: ConnectionStatus, message?: string): void; + defaultFormatter(symbol: string): Promise; + numericFormatter(decimalPlaces: number): Promise; + defaultContextMenuActions(context: ITradeContext, params?: DefaultContextMenuActionsParams): Promise; + defaultDropdownMenuActions(options?: Partial): ActionMetaInfo[]; + floatingTradingPanelVisibility(): IWatchedValue; + domVisibility(): IWatchedValue; + patchConfig(config: Partial): void; + setDurations(durations: OrderDurationMetaInfo[]): void; + orderUpdate(order: Order, isHistoryUpdate?: boolean): void; + orderPartialUpdate(id: string, orderChanges: Partial): void; + positionUpdate(position: Position, isHistoryUpdate?: boolean): void; + positionPartialUpdate(id: string, positionChanges: Partial): void; + tradeUpdate(trade: Trade, isHistoryUpdate?: boolean): void; + tradePartialUpdate(id: string, tradeChanges: Partial): void; + executionUpdate(execution: Execution, isHistoryUpdate?: boolean): void; + fullUpdate(): void; + realtimeUpdate(symbol: string, data: TradingQuotes): void; + plUpdate(positionId: string, pl: number): void; + tradePLUpdate(tradeId: string, pl: number): void; + equityUpdate(equity: number): void; + domeUpdate(symbol: string, equity: DOMData): void; + showOrderDialog(order: T, handler: (order: T) => Promise, focus?: OrderTicketFocusControl): Promise; + showCancelOrderDialog(orderId: string, handler: () => void): Promise; + showCancelMultipleOrdersDialog(symbol: string, side: Side | undefined, qty: number, handler: () => void): Promise; + showCancelBracketsDialog(orderId: string, handler: () => void): Promise; + showCancelMultipleBracketsDialog(orderId: string, handler: () => void): Promise; + showClosePositionDialog(positionId: string, handler: () => void): Promise; + showReversePositionDialog(position: Position, handler: () => void): Promise; + showPositionBracketsDialog(position: Position | Trade, brackets: Brackets, focus: OrderTicketFocusControl | null, handler: (brackets: Brackets) => void): Promise; + showNotification(title: string, text: string, notificationType?: NotificationType): void; + setButtonDropdownActions(descriptions: ActionMetaInfo[]): void; + activateBottomWidget(): Promise; + showTradingProperties(): void; + symbolSnapshot(symbol: string): Promise; +} +export interface IBrokerCommon { + chartContextMenuActions(context: ITradeContext, options?: DefaultContextMenuActionsParams): Promise; + isTradable(symbol: string): Promise; + connectionStatus(): ConnectionStatus; + placeOrder(order: PreOrder, silently?: boolean): Promise; + modifyOrder(order: Order, silently?: boolean, focus?: OrderTicketFocusControl): Promise; + orders(): Promise; + positions(): Promise; + trades?(): Promise; + executions(symbol: string): Promise; + symbolInfo(symbol: string): Promise; + accountInfo(): Promise; + editPositionBrackets?(positionId: string, focus?: OrderTicketFocusControl, brackets?: Brackets, silently?: boolean): Promise; + editTradeBrackets?(tradeId: string, focus?: OrderTicketFocusControl, brackets?: Brackets, silently?: boolean): Promise; + accountManagerInfo(): AccountManagerInfo; + formatter?(symbol: string): Promise; + spreadFormatter?(symbol: string): Promise; +} +export interface IBrokerWithoutRealtime extends IBrokerCommon { + subscribeDOME?(symbol: string): void; + unsubscribeDOME?(symbol: string): void; + cancelOrder(orderId: string, silently: boolean): Promise; + cancelOrders(symbol: string, side: Side | undefined, ordersIds: string[], silently: boolean): Promise; + reversePosition?(positionId: string, silently?: boolean): Promise; + closePosition(positionId: string, silently: boolean): Promise; + closeTrade?(tradeId: string, silently: boolean): Promise; + /** + * @deprecated Brokers should always send PL and equity updates + */ + subscribePL?(positionId: string): void; + subscribeEquity?(): void; + /** + * @deprecated + */ + unsubscribePL?(positionId: string): void; + unsubscribeEquity?(): void; +} +export interface IBrokerTerminal extends IBrokerWithoutRealtime { + subscribeRealtime(symbol: string): void; + unsubscribeRealtime(symbol: string): void; +} +export declare type ResolutionString = string; +export interface Exchange { + value: string; + name: string; + desc: string; +} +export interface DatafeedSymbolType { + name: string; + value: string; +} +export interface DatafeedConfiguration { + exchanges?: Exchange[]; + supported_resolutions?: ResolutionString[]; + supports_marks?: boolean; + supports_time?: boolean; + supports_timescale_marks?: boolean; + symbols_types?: DatafeedSymbolType[]; +} +export declare type OnReadyCallback = (configuration: DatafeedConfiguration) => void; +export interface IExternalDatafeed { + onReady(callback: OnReadyCallback): void; +} +export interface DatafeedQuoteValues { + ch?: number; + chp?: number; + short_name?: string; + exchange?: string; + description?: string; + lp?: number; + ask?: number; + bid?: number; + spread?: number; + open_price?: number; + high_price?: number; + low_price?: number; + prev_close_price?: number; + volume?: number; + original_name?: string; + [valueName: string]: string | number | undefined; +} +export interface QuoteOkData { + s: 'ok'; + n: string; + v: DatafeedQuoteValues; +} +export interface QuoteErrorData { + s: 'error'; + n: string; + v: object; +} +export declare type QuoteData = QuoteOkData | QuoteErrorData; +export declare type QuotesCallback = (data: QuoteData[]) => void; +export interface IDatafeedQuotesApi { + getQuotes(symbols: string[], onDataCallback: QuotesCallback, onErrorCallback: (msg: string) => void): void; + subscribeQuotes(symbols: string[], fastSymbols: string[], onRealtimeCallback: QuotesCallback, listenerGUID: string): void; + unsubscribeQuotes(listenerGUID: string): void; +} +export declare type CustomTimezones = 'America/New_York' | 'America/Los_Angeles' | 'America/Chicago' | 'America/Phoenix' | 'America/Toronto' | 'America/Vancouver' | 'America/Argentina/Buenos_Aires' | 'America/El_Salvador' | 'America/Sao_Paulo' | 'America/Bogota' | 'America/Caracas' | 'Europe/Moscow' | 'Europe/Athens' | 'Europe/Berlin' | 'Europe/London' | 'Europe/Madrid' | 'Europe/Paris' | 'Europe/Rome' | 'Europe/Warsaw' | 'Europe/Istanbul' | 'Europe/Zurich' | 'Australia/Sydney' | 'Australia/Brisbane' | 'Australia/Adelaide' | 'Australia/ACT' | 'Asia/Almaty' | 'Asia/Ashkhabad' | 'Asia/Tokyo' | 'Asia/Taipei' | 'Asia/Singapore' | 'Asia/Shanghai' | 'Asia/Seoul' | 'Asia/Tehran' | 'Asia/Dubai' | 'Asia/Kolkata' | 'Asia/Hong_Kong' | 'Asia/Bangkok' | 'Pacific/Auckland' | 'Pacific/Chatham' | 'Pacific/Fakaofo' | 'Pacific/Honolulu' | 'America/Mexico_City' | 'Africa/Johannesburg' | 'Asia/Kathmandu' | 'US/Mountain'; +export declare type Timezone = 'UTC' | CustomTimezones; +export interface LibrarySymbolInfo { + /** + * Symbol Name + */ + name: string; + full_name: string; + base_name?: [string]; + /** + * Unique symbol id + */ + ticker?: string; + description: string; + type: string; + /** + * @example "1700-0200" + */ + session: string; + /** + * Traded exchange + * @example "NYSE" + */ + exchange: string; + listed_exchange: string; + timezone: Timezone; + /** + * Code (Tick) + * @example 8/16/.../256 (1/8/100 1/16/100 ... 1/256/100) or 1/10/.../10000000 (1 0.1 ... 0.0000001) + */ + pricescale: number; + /** + * The number of units that make up one tick. + * @example For example, U.S. equities are quotes in decimals, and tick in decimals, and can go up +/- .01. So the tick increment is 1. But the e-mini S&P futures contract, though quoted in decimals, goes up in .25 increments, so the tick increment is 25. (see also Tick Size) + */ + minmov: number; + fractional?: boolean; + /** + * @example Quarters of 1/32: pricescale=128, minmovement=1, minmovement2=4 + */ + minmove2?: number; + /** + * false if DWM only + */ + has_intraday?: boolean; + /** + * An array of resolutions which should be enabled in resolutions picker for this symbol. + */ + supported_resolutions: ResolutionString[]; + /** + * @example (for ex.: "1,5,60") - only these resolutions will be requested, all others will be built using them if possible + */ + intraday_multipliers?: string[]; + has_seconds?: boolean; + /** + * It is an array containing seconds resolutions (in seconds without a postfix) the datafeed builds by itself. + */ + seconds_multipliers?: string[]; + has_daily?: boolean; + has_weekly_and_monthly?: boolean; + has_empty_bars?: boolean; + force_session_rebuild?: boolean; + has_no_volume?: boolean; + /** + * Integer showing typical volume value decimal places for this symbol + */ + volume_precision?: number; + data_status?: 'streaming' | 'endofday' | 'pulsed' | 'delayed_streaming'; + /** + * Boolean showing whether this symbol is expired futures contract or not. + */ + expired?: boolean; + /** + * Unix timestamp of expiration date. + */ + expiration_date?: number; + sector?: string; + industry?: string; + currency_code?: string; +} +export interface Bar { + time: number; + open: number; + high: number; + low: number; + close: number; + volume?: number; +} +export interface SearchSymbolResultItem { + symbol: string; + full_name: string; + description: string; + exchange: string; + ticker: string; + type: string; +} +export interface HistoryMetadata { + noData: boolean; + nextTime?: number | null; +} +export interface MarkCustomColor { + color: string; + background: string; +} +export declare type MarkConstColors = 'red' | 'green' | 'blue' | 'yellow'; +export interface Mark { + id: string | number; + time: number; + color: MarkConstColors | MarkCustomColor; + text: string; + label: string; + labelFontColor: string; + minSize: number; +} +export interface TimescaleMark { + id: string | number; + time: number; + color: MarkConstColors | string; + label: string; + tooltip: string[]; +} +export declare type ResolutionBackValues = 'D' | 'M'; +export interface HistoryDepth { + resolutionBack: ResolutionBackValues; + intervalBack: number; +} +export declare type SearchSymbolsCallback = (items: SearchSymbolResultItem[]) => void; +export declare type ResolveCallback = (symbolInfo: LibrarySymbolInfo) => void; +export declare type HistoryCallback = (bars: Bar[], meta: HistoryMetadata) => void; +export declare type SubscribeBarsCallback = (bar: Bar) => void; +export declare type GetMarksCallback = (marks: T[]) => void; +export declare type ServerTimeCallback = (serverTime: number) => void; +export declare type DomeCallback = (data: DOMData) => void; +export declare type ErrorCallback = (reason: string) => void; +export interface IDatafeedChartApi { + calculateHistoryDepth?(resolution: ResolutionString, resolutionBack: ResolutionBackValues, intervalBack: number): HistoryDepth | undefined; + getMarks?(symbolInfo: LibrarySymbolInfo, startDate: number, endDate: number, onDataCallback: GetMarksCallback, resolution: ResolutionString): void; + getTimescaleMarks?(symbolInfo: LibrarySymbolInfo, startDate: number, endDate: number, onDataCallback: GetMarksCallback, resolution: ResolutionString): void; + /** + * This function is called if configuration flag supports_time is set to true when chart needs to know the server time. + * The charting library expects callback to be called once. + * The time is provided without milliseconds. Example: 1445324591. It is used to display Countdown on the price scale. + */ + getServerTime?(callback: ServerTimeCallback): void; + searchSymbols(userInput: string, exchange: string, symbolType: string, onResult: SearchSymbolsCallback): void; + resolveSymbol(symbolName: string, onResolve: ResolveCallback, onError: ErrorCallback): void; + getBars(symbolInfo: LibrarySymbolInfo, resolution: ResolutionString, rangeStartDate: number, rangeEndDate: number, onResult: HistoryCallback, onError: ErrorCallback, isFirstCall: boolean): void; + subscribeBars(symbolInfo: LibrarySymbolInfo, resolution: ResolutionString, onTick: SubscribeBarsCallback, listenerGuid: string, onResetCacheNeededCallback: () => void): void; + unsubscribeBars(listenerGuid: string): void; + subscribeDepth?(symbolInfo: LibrarySymbolInfo, callback: DomeCallback): string; + unsubscribeDepth?(subscriberUID: string): void; +} +export interface ChartMetaInfo { + id: string; + name: string; + symbol: string; + resolution: ResolutionString; + timestamp: number; +} +export interface ChartData { + id: string; + name: string; + symbol: string; + resolution: ResolutionString; + content: string; +} +export interface StudyTemplateMetaInfo { + name: string; +} +export interface StudyTemplateData { + name: string; + content: string; +} +export interface IExternalSaveLoadAdapter { + getAllCharts(): Promise; + removeChart(chartId: string): Promise; + saveChart(chartData: ChartData): Promise; + getChartContent(chartId: string): Promise; + getAllStudyTemplates(): Promise; + removeStudyTemplate(studyTemplateInfo: StudyTemplateMetaInfo): Promise; + saveStudyTemplate(studyTemplateData: StudyTemplateData): Promise; + getStudyTemplateContent(studyTemplateInfo: StudyTemplateMetaInfo): Promise; +} +export interface RestBrokerMetaInfo { + url: string; + access_token: string; +} +export interface AccessListItem { + name: string; + grayed?: boolean; +} +export interface AccessList { + type: 'black' | 'white'; + tools: AccessListItem[]; +} +export interface NumericFormattingParams { + decimal_sign: string; +} +export declare type AvailableSaveloadVersions = '1.0' | '1.1'; +export interface Overrides { + [key: string]: string | number | boolean; +} +export interface WidgetBarParams { + details?: boolean; + watchlist?: boolean; + news?: boolean; + watchlist_settings?: { + default_symbols: string[]; + readonly?: boolean; + }; +} +export interface RssNewsFeedInfo { + url: string; + name: string; +} +export declare type RssNewsFeedItem = RssNewsFeedInfo | RssNewsFeedInfo[]; +export interface RssNewsFeedParams { + default: RssNewsFeedItem; + [symbolType: string]: RssNewsFeedItem; +} +export interface NewsProvider { + is_news_generic?: boolean; + get_news(symbol: string, callback: (items: NewsItem[]) => void): void; +} +export interface CustomFormatter { + format(date: Date): string; + formatLocal(date: Date): string; +} +export interface CustomFormatters { + timeFormatter: CustomFormatter; + dateFormatter: CustomFormatter; +} +export interface TimeFrameItem { + text: string; + resolution: ResolutionString; + description?: string; + title?: string; +} +export interface Favorites { + intervals: ResolutionString[]; + chartTypes: string[]; +} +export interface NewsItem { + fullDescription: string; + link?: string; + published: number; + shortDescription?: string; + source: string; + title: string; +} +export interface LoadingScreenOptions { + foregroundColor?: string; + backgroundColor?: string; +} +export interface InitialSettingsMap { + [key: string]: string; +} +export interface ISettingsAdapter { + initialSettings?: InitialSettingsMap; + setValue(key: string, value: string): void; + removeValue(key: string): void; +} +export declare type IBasicDataFeed = IDatafeedChartApi & IExternalDatafeed; +export interface ChartingLibraryWidgetOptions { + container_id: string; + datafeed: IBasicDataFeed | (IBasicDataFeed & IDatafeedQuotesApi); + interval: ResolutionString; + symbol: string; + auto_save_delay?: number; + autosize?: boolean; + debug?: boolean; + disabled_features?: string[]; + drawings_access?: AccessList; + enabled_features?: string[]; + fullscreen?: boolean; + height?: number; + library_path?: string; + locale: LanguageCode; + numeric_formatting?: NumericFormattingParams; + saved_data?: object; + studies_access?: AccessList; + study_count_limit?: number; + symbol_search_request_delay?: number; + timeframe?: string; + timezone?: 'exchange' | Timezone; + toolbar_bg?: string; + width?: number; + charts_storage_url?: string; + charts_storage_api_version?: AvailableSaveloadVersions; + client_id?: string; + user_id?: string; + load_last_chart?: boolean; + studies_overrides?: StudyOverrides; + customFormatters?: CustomFormatters; + overrides?: Overrides; + snapshot_url?: string; + indicators_file_name?: string; + preset?: 'mobile'; + time_frames?: TimeFrameItem[]; + custom_css_url?: string; + favorites?: Favorites; + save_load_adapter?: IExternalSaveLoadAdapter; + loading_screen?: LoadingScreenOptions; + settings_adapter?: ISettingsAdapter; +} +export interface TradingTerminalWidgetOptions extends ChartingLibraryWidgetOptions { + brokerConfig?: SingleBrokerMetaInfo; + restConfig?: RestBrokerMetaInfo; + widgetbar?: WidgetBarParams; + rss_news_feed?: RssNewsFeedParams; + news_provider?: NewsProvider; + brokerFactory?(host: IBrokerConnectionAdapterHost): IBrokerWithoutRealtime | IBrokerTerminal; +} +export declare type LayoutType = 's' | '2h' | '2-1' | '2v' | '3h' | '3v' | '3s' | '4' | '6' | '8'; +export declare type SupportedLineTools = 'text' | 'anchored_text' | 'note' | 'anchored_note' | 'double_curve' | 'arc' | 'icon' | 'arrow_up' | 'arrow_down' | 'arrow_left' | 'arrow_right' | 'price_label' | 'flag' | 'vertical_line' | 'horizontal_line' | 'horizontal_ray' | 'trend_line' | 'trend_angle' | 'arrow' | 'ray' | 'extended' | 'parallel_channel' | 'disjoint_angle' | 'flat_bottom' | 'pitchfork' | 'schiff_pitchfork_modified' | 'schiff_pitchfork' | 'balloon' | 'inside_pitchfork' | 'pitchfan' | 'gannbox' | 'gannbox_square' | 'gannbox_fan' | 'fib_retracement' | 'fib_trend_ext' | 'fib_speed_resist_fan' | 'fib_timezone' | 'fib_trend_time' | 'fib_circles' | 'fib_spiral' | 'fib_speed_resist_arcs' | 'fib_channel' | 'xabcd_pattern' | 'cypher_pattern' | 'abcd_pattern' | 'callout' | 'triangle_pattern' | '3divers_pattern' | 'head_and_shoulders' | 'fib_wedge' | 'elliott_impulse_wave' | 'elliott_triangle_wave' | 'elliott_triple_combo' | 'elliott_correction' | 'elliott_double_combo' | 'cyclic_lines' | 'time_cycles' | 'sine_line' | 'long_position' | 'short_position' | 'forecast' | 'date_range' | 'price_range' | 'date_and_price_range' | 'bars_pattern' | 'ghost_feed' | 'projection' | 'rectangle' | 'rotated_rectangle' | 'ellipse' | 'triangle' | 'polyline' | 'curve' | 'regression_trend' | 'cursor' | 'dot' | 'arrow_cursor' | 'eraser' | 'measure' | 'zoom' | 'brush'; +export interface IOrderLineAdapter { + remove(): void; + onModify(callback: () => void): this; + onModify(data: T, callback: (data: T) => void): this; + onMove(callback: () => void): this; + onMove(data: T, callback: (data: T) => void): this; + getPrice(): number; + setPrice(value: number): this; + getText(): string; + setText(value: string): this; + getTooltip(): string; + setTooltip(value: string): this; + getQuantity(): string; + setQuantity(value: string): this; + getEditable(): boolean; + setEditable(value: boolean): this; + getExtendLeft(): boolean; + setExtendLeft(value: boolean): this; + getLineLength(): number; + setLineLength(value: number): this; + getLineStyle(): number; + setLineStyle(value: number): this; + getLineWidth(): number; + setLineWidth(value: number): this; + getBodyFont(): string; + setBodyFont(value: string): this; + getQuantityFont(): string; + setQuantityFont(value: string): this; + getLineColor(): string; + setLineColor(value: string): this; + getBodyBorderColor(): string; + setBodyBorderColor(value: string): this; + getBodyBackgroundColor(): string; + setBodyBackgroundColor(value: string): this; + getBodyTextColor(): string; + setBodyTextColor(value: string): this; + getQuantityBorderColor(): string; + setQuantityBorderColor(value: string): this; + getQuantityBackgroundColor(): string; + setQuantityBackgroundColor(value: string): this; + getQuantityTextColor(): string; + setQuantityTextColor(value: string): this; + getCancelButtonBorderColor(): string; + setCancelButtonBorderColor(value: string): this; + getCancelButtonBackgroundColor(): string; + setCancelButtonBackgroundColor(value: string): this; + getCancelButtonIconColor(): string; + setCancelButtonIconColor(value: string): this; +} +export interface IPositionLineAdapter { + remove(): void; + onClose(callback: () => void): this; + onClose(data: T, callback: (data: T) => void): this; + onModify(callback: () => void): this; + onModify(data: T, callback: (data: T) => void): this; + onReverse(callback: () => void): this; + onReverse(data: T, callback: (data: T) => void): this; + getPrice(): number; + setPrice(value: number): this; + getText(): string; + setText(value: string): this; + getTooltip(): string; + setTooltip(value: string): this; + getQuantity(): string; + setQuantity(value: string): this; + getExtendLeft(): boolean; + setExtendLeft(value: boolean): this; + getLineLength(): number; + setLineLength(value: number): this; + getLineStyle(): number; + setLineStyle(value: number): this; + getLineWidth(): number; + setLineWidth(value: number): this; + getBodyFont(): string; + setBodyFont(value: string): this; + getQuantityFont(): string; + setQuantityFont(value: string): this; + getLineColor(): string; + setLineColor(value: string): this; + getBodyBorderColor(): string; + setBodyBorderColor(value: string): this; + getBodyBackgroundColor(): string; + setBodyBackgroundColor(value: string): this; + getBodyTextColor(): string; + setBodyTextColor(value: string): this; + getQuantityBorderColor(): string; + setQuantityBorderColor(value: string): this; + getQuantityBackgroundColor(): string; + setQuantityBackgroundColor(value: string): this; + getQuantityTextColor(): string; + setQuantityTextColor(value: string): this; + getReverseButtonBorderColor(): string; + setReverseButtonBorderColor(value: string): this; + getReverseButtonBackgroundColor(): string; + setReverseButtonBackgroundColor(value: string): this; + getReverseButtonIconColor(): string; + setReverseButtonIconColor(value: string): this; + getCloseButtonBorderColor(): string; + setCloseButtonBorderColor(value: string): this; + getCloseButtonBackgroundColor(): string; + setCloseButtonBackgroundColor(value: string): this; + getCloseButtonIconColor(): string; + setCloseButtonIconColor(value: string): this; +} +export declare type Direction = 'buy' | 'sell'; +export interface IExecutionLineAdapter { + remove(): void; + getPrice(): number; + setPrice(value: number): this; + getTime(): number; + setTime(value: number): this; + getDirection(): Direction; + setDirection(value: Direction): this; + getText(): string; + setText(value: string): this; + getTooltip(): string; + setTooltip(value: string): this; + getArrowHeight(): number; + setArrowHeight(value: number): this; + getArrowSpacing(): number; + setArrowSpacing(value: number): this; + getFont(): string; + setFont(value: string): this; + getTextColor(): string; + setTextColor(value: string): this; + getArrowColor(): string; + setArrowColor(value: string): this; +} +export declare type StudyInputId = Nominal; +export interface StudyInputInfo { + id: StudyInputId; + name: string; + type: string; + localizedName: string; +} +export interface StudyInputValueItem { + id: StudyInputId; + value: StudyInputValueType; +} +export interface IStudyApi { + isUserEditEnabled(): boolean; + setUserEditEnabled(enabled: boolean): void; + getInputsInfo(): StudyInputInfo[]; + getInputValues(): StudyInputValueItem[]; + setInputValues(values: StudyInputValueItem[]): void; + mergeUp(): void; + mergeDown(): void; + unmergeUp(): void; + unmergeDown(): void; + isVisible(): boolean; + setVisible(visible: boolean): void; + bringToFront(): void; + sendToBack(): void; + applyOverrides(overrides: TOverrides): void; +} +export interface TimePoint { + time: number; +} +export interface StickedPoint extends TimePoint { + channel: 'open' | 'high' | 'low' | 'close'; +} +export interface PricedPoint extends TimePoint { + price: number; +} +export declare type ShapePoint = StickedPoint | PricedPoint | TimePoint; +export interface ILineDataSourceApi { + isSelectionEnabled(): boolean; + setSelectionEnabled(enable: boolean): void; + isSavingEnabled(): boolean; + setSavingEnabled(enable: boolean): void; + isShowInObjectsTreeEnabled(): boolean; + setShowInObjectsTreeEnabled(enabled: boolean): void; + isUserEditEnabled(): boolean; + setUserEditEnabled(enabled: boolean): void; + bringToFront(): void; + sendToBack(): void; + getProperties(): object; + setProperties(newProperties: object): void; + getPoints(): PricedPoint[]; + setPoints(points: ShapePoint[]): void; +} +export interface CrossHairMovedEventParams { + time: number; + price: number; +} +export interface VisibleTimeRange { + from: number; + to: number; +} +export interface VisiblePriceRange { + from: number; + to: number; +} +export declare type ChartActionId = 'chartProperties' | 'compareOrAdd' | 'scalesProperties' | 'tmzProperties' | 'paneObjectTree' | 'insertIndicator' | 'symbolSearch' | 'changeInterval' | 'timeScaleReset' | 'chartReset' | 'seriesHide' | 'studyHide' | 'lineToggleLock' | 'lineHide' | 'showLeftAxis' | 'showRightAxis' | 'scaleSeriesOnly' | 'drawingToolbarAction' | 'magnetAction' | 'stayInDrawingModeAction' | 'lockDrawingsAction' | 'hideAllDrawingsAction' | 'hideAllMarks' | 'showCountdown' | 'showSeriesLastValue' | 'showSymbolLabelsAction' | 'showStudyLastValue' | 'showStudyPlotNamesAction' | 'undo' | 'redo' | 'takeScreenshot' | 'paneRemoveAllStudiesDrawingTools'; +export declare const enum SeriesStyle { + Bars = 0, + Candles = 1, + Line = 2, + Area = 3, + HeikenAshi = 8, + HollowCandles = 9, + Renko = 4, + Kagi = 5, + PointAndFigure = 6, + LineBreak = 7, +} +export declare type EntityId = Nominal; +export interface EntityInfo { + id: EntityId; + name: string; +} +export interface CreateStudyOptions { + checkLimit: boolean; +} +export interface CreateShapeOptions { + shape?: 'arrow_up' | 'arrow_down' | 'flag' | 'vertical_line' | 'horizontal_line'; + text?: string; + lock?: boolean; + disableSelection?: boolean; + disableSave?: boolean; + disableUndo?: boolean; + overrides?: TOverrides; + zOrder?: 'top' | 'bottom'; + showInObjectsTree?: boolean; +} +export interface CreateStudyTemplateOptions { + saveInterval?: boolean; +} +export interface SymbolExt { + symbol: string; + full_name: string; + exchange: string; + description: string; + type: string; +} +export interface CreateTradingPrimitiveOptions { + disableUndo?: boolean; +} +export interface IChartWidgetApi { + onDataLoaded(): ISubscription<() => void>; + onSymbolChanged(): ISubscription<() => void>; + onIntervalChanged(): ISubscription<(interval: ResolutionString, timeFrameParameters: { + timeframe?: string; + }) => void>; + dataReady(callback: () => void): boolean; + crossHairMoved(callback: (params: CrossHairMovedEventParams) => void): void; + setVisibleRange(range: VisibleTimeRange, callback: () => void): void; + setSymbol(symbol: string, callback: () => void): void; + setResolution(resolution: ResolutionString, callback: () => void): void; + resetData(): void; + executeActionById(actionId: ChartActionId): void; + getCheckableActionState(actionId: ChartActionId): boolean; + refreshMarks(): void; + clearMarks(): void; + setChartType(type: SeriesStyle): void; + getAllShapes(): EntityInfo[]; + getAllStudies(): EntityInfo[]; + /** + * @deprecated Use shape/study API instead ([getStudyById] / [getShapeById]) + */ + setEntityVisibility(entityId: EntityId, isVisible: boolean): void; + createStudy(name: string, forceOverlay: boolean, lock?: boolean, inputs?: TStudyInputs[], callback?: (entityId: EntityId) => void, overrides?: TOverrides, options?: CreateStudyOptions): EntityId | null; + getStudyById(entityId: EntityId): IStudyApi; + createShape(point: ShapePoint, options: CreateShapeOptions): EntityId | null; + createMultipointShape(points: ShapePoint[], options: CreateShapeOptions): EntityId | null; + getShapeById(entityId: EntityId): ILineDataSourceApi; + removeEntity(entityId: EntityId): void; + removeAllShapes(): void; + removeAllStudies(): void; + createStudyTemplate(options: CreateStudyTemplateOptions): object; + applyStudyTemplate(template: object): void; + createOrderLine(options: CreateTradingPrimitiveOptions): IOrderLineAdapter; + createPositionLine(options: CreateTradingPrimitiveOptions): IPositionLineAdapter; + createExecutionShape(options: CreateTradingPrimitiveOptions): IExecutionLineAdapter; + symbol(): string; + symbolExt(): SymbolExt; + resolution(): ResolutionString; + getVisibleRange(): VisibleTimeRange; + getVisiblePriceRange(): VisiblePriceRange; + priceFormatter(): IFormatter; + chartType(): SeriesStyle; + setTimezone(timezone: 'exchange' | Timezone): void; +} +export declare type EditObjectDialogObjectType = 'mainSeries' | 'drawing' | 'study' | 'other'; +export interface EditObjectDialogEventParams { + objectType: EditObjectDialogObjectType; + scriptTitle: string; +} +export interface MouseEventParams { + clientX: number; + clientY: number; + pageX: number; + pageY: number; + screenX: number; + screenY: number; +} +export interface StudyOrDrawingAddedToChartEventParams { + value: string; +} +export declare type EmptyCallback = () => void; +export interface SubscribeEventsMap { + toggle_sidebar: (isHidden: boolean) => void; + indicators_dialog: EmptyCallback; + toggle_header: (isHidden: boolean) => void; + edit_object_dialog: (params: EditObjectDialogEventParams) => void; + chart_load_requested: (savedData: object) => void; + chart_loaded: EmptyCallback; + mouse_down: (params: MouseEventParams) => void; + mouse_up: (params: MouseEventParams) => void; + drawing: (params: StudyOrDrawingAddedToChartEventParams) => void; + study: (params: StudyOrDrawingAddedToChartEventParams) => void; + undo: EmptyCallback; + redo: EmptyCallback; + reset_scales: EmptyCallback; + compare_add: EmptyCallback; + add_compare: EmptyCallback; + 'load_study template': EmptyCallback; + onTick: (tick: Bar) => void; + onAutoSaveNeeded: EmptyCallback; + onScreenshotReady: (url: string) => void; + onMarkClick: (markId: Mark['id']) => void; + onTimescaleMarkClick: (markId: TimescaleMark['id']) => void; + onSelectedLineToolChanged: EmptyCallback; + layout_about_to_be_changed: (newLayoutType: LayoutType) => void; + layout_changed: EmptyCallback; + activeChartChanged: (chartIndex: number) => void; +} +export interface SaveChartToServerOptions { + chartName?: string; + defaultChartName?: string; +} +export interface WatchListApi { + getList(): string[]; + setList(symbols: string[]): void; + onListChanged(): ISubscription; +} +export interface GrayedObject { + type: 'drawing' | 'study'; + name: string; +} +export interface ContextMenuItem { + position: 'top' | 'bottom'; + text: string; + click: EmptyCallback; +} +export interface DialogParams { + title: string; + body: string; + callback: CallbackType; +} +export interface SymbolIntervalResult { + symbol: string; + interval: ResolutionString; +} +export interface SaveLoadChartRecord { + id: string; + name: string; + image_url: string; + modified_iso: number; + short_symbol: string; + interval: ResolutionString; +} +export interface CreateButtonOptions { + align: 'right' | 'left'; +} +export interface IChartingLibraryWidget { + onChartReady(callback: EmptyCallback): void; + onGrayedObjectClicked(callback: (obj: GrayedObject) => void): void; + onShortcut(shortCut: string, callback: EmptyCallback): void; + subscribe(event: EventName, callback: SubscribeEventsMap[EventName]): void; + unsubscribe(event: EventName, callback: SubscribeEventsMap[EventName]): void; + chart(index?: number): IChartWidgetApi; + setLanguage(lang: LanguageCode): void; + setSymbol(symbol: string, interval: ResolutionString, callback: EmptyCallback): void; + remove(): void; + closePopupsAndDialogs(): void; + selectLineTool(linetool: SupportedLineTools): void; + selectedLineTool(): SupportedLineTools; + save(callback: (state: object) => void): void; + load(state: object): void; + getSavedCharts(callback: (chartRecords: SaveLoadChartRecord[]) => void): void; + loadChartFromServer(chartRecord: SaveLoadChartRecord): void; + saveChartToServer(onComplete?: EmptyCallback, onFail?: EmptyCallback, saveAsSnapshot?: false, options?: SaveChartToServerOptions): void; + removeChartFromServer(chartId: string, onCompleteCallback: EmptyCallback): void; + onContextMenu(callback: (unixTime: number, price: number) => ContextMenuItem[]): void; + createButton(options?: CreateButtonOptions): JQuery; + showNoticeDialog(params: DialogParams<() => void>): void; + showConfirmDialog(params: DialogParams<(confirmed: boolean) => void>): void; + showLoadChartDialog(): void; + showSaveAsChartDialog(): void; + symbolInterval(): SymbolIntervalResult; + mainSeriesPriceFormatter(): IFormatter; + getIntervals(): string[]; + getStudiesList(): string[]; + addCustomCSSFile(url: string): void; + applyOverrides(overrides: TOverrides): void; + applyStudiesOverrides(overrides: object): void; + watchList(): WatchListApi; + activeChart(): IChartWidgetApi; + chartsCount(): number; + layout(): LayoutType; + setLayout(layout: LayoutType): void; +} +export interface ChartingLibraryWidgetConstructor { + new (options: ChartingLibraryWidgetOptions | TradingTerminalWidgetOptions): IChartingLibraryWidget; +} +export declare function version(): string; +export declare function onready(callback: () => void): void; +export declare const widget: ChartingLibraryWidgetConstructor; + +export as namespace TradingView; diff --git a/charting_library/charting_library.min.js b/charting_library/charting_library.min.js index 29c2be18..f40a2135 100644 --- a/charting_library/charting_library.min.js +++ b/charting_library/charting_library.min.js @@ -1,25 +1 @@ -(function(){function m(a){var b;if("object"!==typeof a||a.constructor&&!a.hasOwnProperty("constructor")&&!(a.constructor.prototype||{}).hasOwnProperty("isPrototypeOf"))return!1;for(b in a);return void 0===b||a.hasOwnProperty(b)}function k(){var a,b,c,e,d,f=arguments[0]||{},h=1,g=arguments.length,l=!1;"boolean"===typeof f&&(l=f,f=arguments[h]||{},h++);"object"!==typeof f&&"function"!==typeof f&&(f={});h===g&&(f=this,h--);for(;h'},onChartReady:function(a){this._ready?a.call(this):this._ready_handlers.push(a)},setSymbol:function(a,b,c){this._innerWindow().tradingViewApi.changeSymbol(a,b+"",c)},layout:function(){return this._innerWindow().tradingViewApi.layout()},setLayout:function(a){return this._innerWindow().tradingViewApi.setLayout(a)}, -chartsCount:function(){return this._innerWindow().tradingViewApi.chartsCount()},chart:function(a){return this._innerWindow().tradingViewApi.chart(a)},activeChart:function(){return this._innerWindow().tradingViewApi.activeChart()},watchList:function(){return this._innerWindow().tradingViewApi.watchlist()},createButton:function(a){return this._innerWindow().createButton(a)},symbolInterval:function(a){return this._innerWindow().tradingViewApi.getSymbolInterval(a)},remove:function(){window.removeEventListener("resize", -this._onWindowResize);this._ready_handlers.splice(0,this._ready_handlers.length);delete window[this.options.uid];var a=d.gEl(this.id);a.contentWindow.destroyChart();a.parentNode.removeChild(a)},getVisibleRange:function(a){return this._innerWindow().tradingViewApi.getVisibleRange(a)},getVisiblePriceRange:function(a){return this._innerWindow().tradingViewApi.getVisiblePriceRange(a)},subscribe:function(a,b){this._innerWindow().tradingViewApi.subscribe(a,b)},unsubscribe:function(a,b){this._innerWindow().tradingViewApi.unsubscribe(a, -b)},onContextMenu:function(a){this._innerWindow().tradingViewApi.onContextMenu(a)},onShortcut:function(a,b){this._innerWindow().createShortcutAction(a,b)},onGrayedObjectClicked:function(a){this._innerWindow().tradingViewApi.onGrayedObjectClicked(a)},closePopupsAndDialogs:function(){this._innerWindow().tradingViewApi.closePopupsAndDialogs()},applyOverrides:function(a){this.options=k(!0,this.options,{overrides:a});this._innerWindow().applyOverrides(a)},applyStudiesOverrides:function(a){this._innerWindow().applyStudiesOverrides(a)}, -createStudyTemplate:function(a,b){return this._innerWindow().tradingViewApi.createStudyTemplate(a,b)},addCustomCSSFile:function(a){this._innerWindow().addCustomCSSFile(a)},save:function(a){this._innerWindow().tradingViewApi.saveChart(a)},load:function(a,b){this._innerWindow().tradingViewApi.loadChart({json:a,extendedData:b})},setLanguage:function(a){this.remove();this.options.locale=a;this.create()},isFloatingTradingPanelVisible:function(){return this._innerWindow().isFloatingTradingPanelVisible()}, -toggleFloatingTradingPanel:function(){this._innerWindow().toggleFloatingTradingPanel()},isBottomTradingPanelVisible:function(){return this._innerWindow().isBottomTradingPanelVisible()},toggleBottomTradingPanel:function(){this._innerWindow().toggleBottomTradingPanel()},showSampleOrderDialog:function(a){return this._innerWindow().showSampleOrderDialog(a)},mainSeriesPriceFormatter:function(){return this._innerWindow().tradingViewApi.mainSeriesPriceFormatter()},showNoticeDialog:function(a){this._innerWindow().tradingViewApi.showNoticeDialog(a)}, -showConfirmDialog:function(a){this._innerWindow().tradingViewApi.showConfirmDialog(a)},selectLineTool:function(a){this._innerWindow().tradingViewApi.selectLineTool(a)},selectedLineTool:function(){return this._innerWindow().tradingViewApi.selectedLineTool()},getSavedCharts:function(a){this._innerWindow().tradingViewApi.getSavedCharts(a)},loadChartFromServer:function(a){this._innerWindow().tradingViewApi.loadChartFromServer(a)},saveChartToServer:function(a,b,c,d){this._innerWindow().tradingViewApi.saveChartToServer(a, -b,c,d)},removeChartFromServer:function(a,b){this._innerWindow().tradingViewApi.removeChartFromServer(a,b)},getIntervals:function(){return this._innerWindow().tradingViewApi.getIntervals()},getStudiesList:function(){return this._innerWindow().tradingViewApi.getStudiesList()}};g("onSymbolChange");g("onIntervalChange");[["onTick"],["onAutoSaveNeeded"],["onScreenshotReady"],["onBarMarkClicked","onMarkClick"],["onTimescaleMarkClicked","onTimescaleMarkClick"]].forEach(function(a){d.widget.prototype[a[0]]= -function(b){var c=a[1]||a[0];console.warn("Method `"+a[0]+'` is obsolete. Please use `widget.subscribe("'+c+'", callback)` instead.');this.subscribe(c,b)}});window.TradingView&&jQuery?jQuery.extend(window.TradingView,d):window.TradingView=d}})(); +!function(t,e){"object"==typeof exports&&"undefined"!=typeof module?e(exports):"function"==typeof define&&define.amd?define(["exports"],e):e(t.TradingView=t.TradingView||{})}(this,function(t){"use strict";function e(t,o){var i=n({},t);for(var s in o)"object"!=typeof t[s]||null===t[s]||Array.isArray(t[s])?void 0!==o[s]&&(i[s]=o[s]):i[s]=e(t[s],o[s]);return i}function o(){return"1.12 (internal id 0fe96f46 @ 2018-02-14 01:08:23.615443)"}function i(t){window.addEventListener("DOMContentLoaded",t,!1)}var n=Object.assign||function(t){for(var e,o=arguments,i=1,n=arguments.length;i'},t}(),d=a;window.TradingView=window.TradingView||{},window.TradingView.version=o,t.version=o,t.onready=i,t.widget=d,Object.defineProperty(t,"__esModule",{value:!0})}); diff --git a/charting_library/datafeed-api.d.ts b/charting_library/datafeed-api.d.ts new file mode 100644 index 00000000..2915ecf4 --- /dev/null +++ b/charting_library/datafeed-api.d.ts @@ -0,0 +1,220 @@ +export declare type ResolutionString = string; +export interface Exchange { + value: string; + name: string; + desc: string; +} +export interface DatafeedSymbolType { + name: string; + value: string; +} +export interface DatafeedConfiguration { + exchanges?: Exchange[]; + supported_resolutions?: ResolutionString[]; + supports_marks?: boolean; + supports_time?: boolean; + supports_timescale_marks?: boolean; + symbols_types?: DatafeedSymbolType[]; +} +export declare type OnReadyCallback = (configuration: DatafeedConfiguration) => void; +export interface IExternalDatafeed { + onReady(callback: OnReadyCallback): void; +} +export interface DatafeedQuoteValues { + ch?: number; + chp?: number; + short_name?: string; + exchange?: string; + description?: string; + lp?: number; + ask?: number; + bid?: number; + spread?: number; + open_price?: number; + high_price?: number; + low_price?: number; + prev_close_price?: number; + volume?: number; + original_name?: string; + [valueName: string]: string | number | undefined; +} +export interface QuoteOkData { + s: 'ok'; + n: string; + v: DatafeedQuoteValues; +} +export interface QuoteErrorData { + s: 'error'; + n: string; + v: object; +} +export declare type QuoteData = QuoteOkData | QuoteErrorData; +export declare type QuotesCallback = (data: QuoteData[]) => void; +export interface IDatafeedQuotesApi { + getQuotes(symbols: string[], onDataCallback: QuotesCallback, onErrorCallback: (msg: string) => void): void; + subscribeQuotes(symbols: string[], fastSymbols: string[], onRealtimeCallback: QuotesCallback, listenerGUID: string): void; + unsubscribeQuotes(listenerGUID: string): void; +} +export declare type CustomTimezones = 'America/New_York' | 'America/Los_Angeles' | 'America/Chicago' | 'America/Phoenix' | 'America/Toronto' | 'America/Vancouver' | 'America/Argentina/Buenos_Aires' | 'America/El_Salvador' | 'America/Sao_Paulo' | 'America/Bogota' | 'America/Caracas' | 'Europe/Moscow' | 'Europe/Athens' | 'Europe/Berlin' | 'Europe/London' | 'Europe/Madrid' | 'Europe/Paris' | 'Europe/Rome' | 'Europe/Warsaw' | 'Europe/Istanbul' | 'Europe/Zurich' | 'Australia/Sydney' | 'Australia/Brisbane' | 'Australia/Adelaide' | 'Australia/ACT' | 'Asia/Almaty' | 'Asia/Ashkhabad' | 'Asia/Tokyo' | 'Asia/Taipei' | 'Asia/Singapore' | 'Asia/Shanghai' | 'Asia/Seoul' | 'Asia/Tehran' | 'Asia/Dubai' | 'Asia/Kolkata' | 'Asia/Hong_Kong' | 'Asia/Bangkok' | 'Pacific/Auckland' | 'Pacific/Chatham' | 'Pacific/Fakaofo' | 'Pacific/Honolulu' | 'America/Mexico_City' | 'Africa/Johannesburg' | 'Asia/Kathmandu' | 'US/Mountain'; +export declare type Timezone = 'UTC' | CustomTimezones; +export interface LibrarySymbolInfo { + /** + * Symbol Name + */ + name: string; + full_name: string; + base_name?: [string]; + /** + * Unique symbol id + */ + ticker?: string; + description: string; + type: string; + /** + * @example "1700-0200" + */ + session: string; + /** + * Traded exchange + * @example "NYSE" + */ + exchange: string; + listed_exchange: string; + timezone: Timezone; + /** + * Code (Tick) + * @example 8/16/.../256 (1/8/100 1/16/100 ... 1/256/100) or 1/10/.../10000000 (1 0.1 ... 0.0000001) + */ + pricescale: number; + /** + * The number of units that make up one tick. + * @example For example, U.S. equities are quotes in decimals, and tick in decimals, and can go up +/- .01. So the tick increment is 1. But the e-mini S&P futures contract, though quoted in decimals, goes up in .25 increments, so the tick increment is 25. (see also Tick Size) + */ + minmov: number; + fractional?: boolean; + /** + * @example Quarters of 1/32: pricescale=128, minmovement=1, minmovement2=4 + */ + minmove2?: number; + /** + * false if DWM only + */ + has_intraday?: boolean; + /** + * An array of resolutions which should be enabled in resolutions picker for this symbol. + */ + supported_resolutions: ResolutionString[]; + /** + * @example (for ex.: "1,5,60") - only these resolutions will be requested, all others will be built using them if possible + */ + intraday_multipliers?: string[]; + has_seconds?: boolean; + /** + * It is an array containing seconds resolutions (in seconds without a postfix) the datafeed builds by itself. + */ + seconds_multipliers?: string[]; + has_daily?: boolean; + has_weekly_and_monthly?: boolean; + has_empty_bars?: boolean; + force_session_rebuild?: boolean; + has_no_volume?: boolean; + /** + * Integer showing typical volume value decimal places for this symbol + */ + volume_precision?: number; + data_status?: 'streaming' | 'endofday' | 'pulsed' | 'delayed_streaming'; + /** + * Boolean showing whether this symbol is expired futures contract or not. + */ + expired?: boolean; + /** + * Unix timestamp of expiration date. + */ + expiration_date?: number; + sector?: string; + industry?: string; + currency_code?: string; +} +export interface DOMLevel { + price: number; + volume: number; +} +export interface DOMData { + snapshot: boolean; + asks: DOMLevel[]; + bids: DOMLevel[]; +} +export interface Bar { + time: number; + open: number; + high: number; + low: number; + close: number; + volume?: number; +} +export interface SearchSymbolResultItem { + symbol: string; + full_name: string; + description: string; + exchange: string; + ticker: string; + type: string; +} +export interface HistoryMetadata { + noData: boolean; + nextTime?: number | null; +} +export interface MarkCustomColor { + color: string; + background: string; +} +export declare type MarkConstColors = 'red' | 'green' | 'blue' | 'yellow'; +export interface Mark { + id: string | number; + time: number; + color: MarkConstColors | MarkCustomColor; + text: string; + label: string; + labelFontColor: string; + minSize: number; +} +export interface TimescaleMark { + id: string | number; + time: number; + color: MarkConstColors | string; + label: string; + tooltip: string[]; +} +export declare type ResolutionBackValues = 'D' | 'M'; +export interface HistoryDepth { + resolutionBack: ResolutionBackValues; + intervalBack: number; +} +export declare type SearchSymbolsCallback = (items: SearchSymbolResultItem[]) => void; +export declare type ResolveCallback = (symbolInfo: LibrarySymbolInfo) => void; +export declare type HistoryCallback = (bars: Bar[], meta: HistoryMetadata) => void; +export declare type SubscribeBarsCallback = (bar: Bar) => void; +export declare type GetMarksCallback = (marks: T[]) => void; +export declare type ServerTimeCallback = (serverTime: number) => void; +export declare type DomeCallback = (data: DOMData) => void; +export declare type ErrorCallback = (reason: string) => void; +export interface IDatafeedChartApi { + calculateHistoryDepth?(resolution: ResolutionString, resolutionBack: ResolutionBackValues, intervalBack: number): HistoryDepth | undefined; + getMarks?(symbolInfo: LibrarySymbolInfo, startDate: number, endDate: number, onDataCallback: GetMarksCallback, resolution: ResolutionString): void; + getTimescaleMarks?(symbolInfo: LibrarySymbolInfo, startDate: number, endDate: number, onDataCallback: GetMarksCallback, resolution: ResolutionString): void; + /** + * This function is called if configuration flag supports_time is set to true when chart needs to know the server time. + * The charting library expects callback to be called once. + * The time is provided without milliseconds. Example: 1445324591. It is used to display Countdown on the price scale. + */ + getServerTime?(callback: ServerTimeCallback): void; + searchSymbols(userInput: string, exchange: string, symbolType: string, onResult: SearchSymbolsCallback): void; + resolveSymbol(symbolName: string, onResolve: ResolveCallback, onError: ErrorCallback): void; + getBars(symbolInfo: LibrarySymbolInfo, resolution: ResolutionString, rangeStartDate: number, rangeEndDate: number, onResult: HistoryCallback, onError: ErrorCallback, isFirstCall: boolean): void; + subscribeBars(symbolInfo: LibrarySymbolInfo, resolution: ResolutionString, onTick: SubscribeBarsCallback, listenerGuid: string, onResetCacheNeededCallback: () => void): void; + unsubscribeBars(listenerGuid: string): void; + subscribeDepth?(symbolInfo: LibrarySymbolInfo, callback: DomeCallback): string; + unsubscribeDepth?(subscriberUID: string): void; +} + +export as namespace TradingView; diff --git a/charting_library/datafeed/udf/datafeed.js b/charting_library/datafeed/udf/datafeed.js deleted file mode 100644 index 628e1d1b..00000000 --- a/charting_library/datafeed/udf/datafeed.js +++ /dev/null @@ -1,842 +0,0 @@ -'use strict'; -/* - This class implements interaction with UDF-compatible datafeed. - - See UDF protocol reference at - https://github.com/tradingview/charting_library/wiki/UDF -*/ - - -function parseJSONorNot(mayBeJSON) { - if (typeof mayBeJSON === 'string') { - return JSON.parse(mayBeJSON); - } else { - return mayBeJSON; - } -} - -var Datafeeds = {}; - -Datafeeds.UDFCompatibleDatafeed = function(datafeedURL, updateFrequency) { - this._datafeedURL = datafeedURL; - this._configuration = undefined; - - this._symbolSearch = null; - this._symbolsStorage = null; - this._barsPulseUpdater = new Datafeeds.DataPulseUpdater(this, updateFrequency || 10 * 1000); - this._quotesPulseUpdater = new Datafeeds.QuotesPulseUpdater(this); - - this._enableLogging = false; - this._initializationFinished = false; - this._callbacks = {}; - - this._initialize(); -}; - -Datafeeds.UDFCompatibleDatafeed.prototype.defaultConfiguration = function() { - return { - supports_search: false, - supports_group_request: true, - supported_resolutions: ['1', '5', '15', '30', '60', '1D', '1W', '1M'], - supports_marks: false, - supports_timescale_marks: false - }; -}; - -Datafeeds.UDFCompatibleDatafeed.prototype.getServerTime = function(callback) { - if (this._configuration.supports_time) { - this._send(this._datafeedURL + '/time', {}) - .done(function(response) { - var time = +response; - if (!isNaN(time)) { - callback(time); - } - }) - .fail(function() { - }); - } -}; - -Datafeeds.UDFCompatibleDatafeed.prototype.on = function(event, callback) { - if (!this._callbacks.hasOwnProperty(event)) { - this._callbacks[event] = []; - } - - this._callbacks[event].push(callback); - return this; -}; - -Datafeeds.UDFCompatibleDatafeed.prototype._fireEvent = function(event, argument) { - if (this._callbacks.hasOwnProperty(event)) { - var callbacksChain = this._callbacks[event]; - for (var i = 0; i < callbacksChain.length; ++i) { - callbacksChain[i](argument); - } - - this._callbacks[event] = []; - } -}; - -Datafeeds.UDFCompatibleDatafeed.prototype.onInitialized = function() { - this._initializationFinished = true; - this._fireEvent('initialized'); -}; - -Datafeeds.UDFCompatibleDatafeed.prototype._logMessage = function(message) { - if (this._enableLogging) { - var now = new Date(); - console.log(now.toLocaleTimeString() + '.' + now.getMilliseconds() + '> ' + message); - } -}; - -Datafeeds.UDFCompatibleDatafeed.prototype._send = function(url, params) { - var request = url; - if (params) { - for (var i = 0; i < Object.keys(params).length; ++i) { - var key = Object.keys(params)[i]; - var value = encodeURIComponent(params[key]); - request += (i === 0 ? '?' : '&') + key + '=' + value; - } - } - - this._logMessage('New request: ' + request); - - return $.ajax({ - type: 'GET', - url: request, - contentType: 'text/plain' - }); -}; - -Datafeeds.UDFCompatibleDatafeed.prototype._initialize = function() { - var that = this; - - this._send(this._datafeedURL + '/config') - .done(function(response) { - var configurationData = parseJSONorNot(response); - that._setupWithConfiguration(configurationData); - }) - .fail(function(reason) { - that._setupWithConfiguration(that.defaultConfiguration()); - }); -}; - -Datafeeds.UDFCompatibleDatafeed.prototype.onReady = function(callback) { - var that = this; - if (this._configuration) { - setTimeout(function() { - callback(that._configuration); - }, 0); - } else { - this.on('configuration_ready', function() { - callback(that._configuration); - }); - } -}; - -Datafeeds.UDFCompatibleDatafeed.prototype._setupWithConfiguration = function(configurationData) { - this._configuration = configurationData; - - if (!configurationData.exchanges) { - configurationData.exchanges = []; - } - - // @obsolete; remove in 1.5 - var supportedResolutions = configurationData.supported_resolutions || configurationData.supportedResolutions; - configurationData.supported_resolutions = supportedResolutions; - - // @obsolete; remove in 1.5 - var symbolsTypes = configurationData.symbols_types || configurationData.symbolsTypes; - configurationData.symbols_types = symbolsTypes; - - if (!configurationData.supports_search && !configurationData.supports_group_request) { - throw new Error('Unsupported datafeed configuration. Must either support search, or support group request'); - } - - if (!configurationData.supports_search) { - this._symbolSearch = new Datafeeds.SymbolSearchComponent(this); - } - - if (configurationData.supports_group_request) { - // this component will call onInitialized() by itself - this._symbolsStorage = new Datafeeds.SymbolsStorage(this); - } else { - this.onInitialized(); - } - - this._fireEvent('configuration_ready'); - this._logMessage('Initialized with ' + JSON.stringify(configurationData)); -}; - -// =============================================================================================================================== -// The functions set below is the implementation of JavaScript API. - -Datafeeds.UDFCompatibleDatafeed.prototype.getMarks = function(symbolInfo, rangeStart, rangeEnd, onDataCallback, resolution) { - if (this._configuration.supports_marks) { - this._send(this._datafeedURL + '/marks', { - symbol: symbolInfo.ticker.toUpperCase(), - from: rangeStart, - to: rangeEnd, - resolution: resolution - }) - .done(function(response) { - onDataCallback(parseJSONorNot(response)); - }) - .fail(function() { - onDataCallback([]); - }); - } -}; - -Datafeeds.UDFCompatibleDatafeed.prototype.getTimescaleMarks = function(symbolInfo, rangeStart, rangeEnd, onDataCallback, resolution) { - if (this._configuration.supports_timescale_marks) { - this._send(this._datafeedURL + '/timescale_marks', { - symbol: symbolInfo.ticker.toUpperCase(), - from: rangeStart, - to: rangeEnd, - resolution: resolution - }) - .done(function(response) { - onDataCallback(parseJSONorNot(response)); - }) - .fail(function() { - onDataCallback([]); - }); - } -}; - -Datafeeds.UDFCompatibleDatafeed.prototype.searchSymbols = function(searchString, exchange, type, onResultReadyCallback) { - var MAX_SEARCH_RESULTS = 30; - - if (!this._configuration) { - onResultReadyCallback([]); - return; - } - - if (this._configuration.supports_search) { - this._send(this._datafeedURL + '/search', { - limit: MAX_SEARCH_RESULTS, - query: searchString.toUpperCase(), - type: type, - exchange: exchange - }) - .done(function(response) { - var data = parseJSONorNot(response); - - for (var i = 0; i < data.length; ++i) { - if (!data[i].params) { - data[i].params = []; - } - - data[i].exchange = data[i].exchange || ''; - } - - if (typeof data.s == 'undefined' || data.s !== 'error') { - onResultReadyCallback(data); - } else { - onResultReadyCallback([]); - } - }) - .fail(function(reason) { - onResultReadyCallback([]); - }); - } else { - if (!this._symbolSearch) { - throw new Error('Datafeed error: inconsistent configuration (symbol search)'); - } - - var searchArgument = { - searchString: searchString, - exchange: exchange, - type: type, - onResultReadyCallback: onResultReadyCallback - }; - - if (this._initializationFinished) { - this._symbolSearch.searchSymbols(searchArgument, MAX_SEARCH_RESULTS); - } else { - var that = this; - - this.on('initialized', function() { - that._symbolSearch.searchSymbols(searchArgument, MAX_SEARCH_RESULTS); - }); - } - } -}; - -Datafeeds.UDFCompatibleDatafeed.prototype._symbolResolveURL = '/symbols'; - -// BEWARE: this function does not consider symbol's exchange -Datafeeds.UDFCompatibleDatafeed.prototype.resolveSymbol = function(symbolName, onSymbolResolvedCallback, onResolveErrorCallback) { - var that = this; - - if (!this._initializationFinished) { - this.on('initialized', function() { - that.resolveSymbol(symbolName, onSymbolResolvedCallback, onResolveErrorCallback); - }); - - return; - } - - var resolveRequestStartTime = Date.now(); - that._logMessage('Resolve requested'); - - function onResultReady(data) { - var postProcessedData = data; - if (that.postProcessSymbolInfo) { - postProcessedData = that.postProcessSymbolInfo(postProcessedData); - } - - that._logMessage('Symbol resolved: ' + (Date.now() - resolveRequestStartTime)); - - onSymbolResolvedCallback(postProcessedData); - } - - if (!this._configuration.supports_group_request) { - this._send(this._datafeedURL + this._symbolResolveURL, { - symbol: symbolName ? symbolName.toUpperCase() : '' - }) - .done(function(response) { - var data = parseJSONorNot(response); - - if (data.s && data.s !== 'ok') { - onResolveErrorCallback('unknown_symbol'); - } else { - onResultReady(data); - } - }) - .fail(function(reason) { - that._logMessage('Error resolving symbol: ' + JSON.stringify([reason])); - onResolveErrorCallback('unknown_symbol'); - }); - } else { - if (this._initializationFinished) { - this._symbolsStorage.resolveSymbol(symbolName, onResultReady, onResolveErrorCallback); - } else { - this.on('initialized', function() { - that._symbolsStorage.resolveSymbol(symbolName, onResultReady, onResolveErrorCallback); - }); - } - } -}; - -Datafeeds.UDFCompatibleDatafeed.prototype._historyURL = '/history'; - -Datafeeds.UDFCompatibleDatafeed.prototype.getBars = function(symbolInfo, resolution, rangeStartDate, rangeEndDate, onDataCallback, onErrorCallback) { - // timestamp sample: 1399939200 - if (rangeStartDate > 0 && (rangeStartDate + '').length > 10) { - throw new Error(['Got a JS time instead of Unix one.', rangeStartDate, rangeEndDate]); - } - - this._send(this._datafeedURL + this._historyURL, { - symbol: symbolInfo.ticker.toUpperCase(), - resolution: resolution, - from: rangeStartDate, - to: rangeEndDate - }) - .done(function(response) { - var data = parseJSONorNot(response); - - var nodata = data.s === 'no_data'; - - if (data.s !== 'ok' && !nodata) { - if (!!onErrorCallback) { - onErrorCallback(data.s); - } - - return; - } - - var bars = []; - - // data is JSON having format {s: "status" (ok, no_data, error), - // v: [volumes], t: [times], o: [opens], h: [highs], l: [lows], c:[closes], nb: "optional_unixtime_if_no_data"} - var barsCount = nodata ? 0 : data.t.length; - - var volumePresent = typeof data.v != 'undefined'; - var ohlPresent = typeof data.o != 'undefined'; - - for (var i = 0; i < barsCount; ++i) { - var barValue = { - time: data.t[i] * 1000, - close: +data.c[i] - }; - - if (ohlPresent) { - barValue.open = +data.o[i]; - barValue.high = +data.h[i]; - barValue.low = +data.l[i]; - } else { - barValue.open = barValue.high = barValue.low = +barValue.close; - } - - if (volumePresent) { - barValue.volume = +data.v[i]; - } - - bars.push(barValue); - } - - onDataCallback(bars, { noData: nodata, nextTime: data.nb || data.nextTime }); - }) - .fail(function(arg) { - console.warn(['getBars(): HTTP error', arg]); - - if (!!onErrorCallback) { - onErrorCallback('network error: ' + JSON.stringify(arg)); - } - }); -}; - -Datafeeds.UDFCompatibleDatafeed.prototype.subscribeBars = function(symbolInfo, resolution, onRealtimeCallback, listenerGUID, onResetCacheNeededCallback) { - this._barsPulseUpdater.subscribeDataListener(symbolInfo, resolution, onRealtimeCallback, listenerGUID, onResetCacheNeededCallback); -}; - -Datafeeds.UDFCompatibleDatafeed.prototype.unsubscribeBars = function(listenerGUID) { - this._barsPulseUpdater.unsubscribeDataListener(listenerGUID); -}; - -Datafeeds.UDFCompatibleDatafeed.prototype.calculateHistoryDepth = function(period, resolutionBack, intervalBack) { -}; - -Datafeeds.UDFCompatibleDatafeed.prototype.getQuotes = function(symbols, onDataCallback, onErrorCallback) { - this._send(this._datafeedURL + '/quotes', { symbols: symbols }) - .done(function(response) { - var data = parseJSONorNot(response); - if (data.s === 'ok') { - // JSON format is {s: "status", [{s: "symbol_status", n: "symbol_name", v: {"field1": "value1", "field2": "value2", ..., "fieldN": "valueN"}}]} - if (onDataCallback) { - onDataCallback(data.d); - } - } else { - if (onErrorCallback) { - onErrorCallback(data.errmsg); - } - } - }) - .fail(function(arg) { - if (onErrorCallback) { - onErrorCallback('network error: ' + arg); - } - }); -}; - -Datafeeds.UDFCompatibleDatafeed.prototype.subscribeQuotes = function(symbols, fastSymbols, onRealtimeCallback, listenerGUID) { - this._quotesPulseUpdater.subscribeDataListener(symbols, fastSymbols, onRealtimeCallback, listenerGUID); -}; - -Datafeeds.UDFCompatibleDatafeed.prototype.unsubscribeQuotes = function(listenerGUID) { - this._quotesPulseUpdater.unsubscribeDataListener(listenerGUID); -}; - -// ================================================================================================================================================== -// ================================================================================================================================================== -// ================================================================================================================================================== - -/* - It's a symbol storage component for ExternalDatafeed. This component can - * interact to UDF-compatible datafeed which supports whole group info requesting - * do symbol resolving -- return symbol info by its name -*/ -Datafeeds.SymbolsStorage = function(datafeed) { - this._datafeed = datafeed; - - this._exchangesList = ['NYSE', 'FOREX', 'AMEX']; - this._exchangesWaitingForData = {}; - this._exchangesDataCache = {}; - - this._symbolsInfo = {}; - this._symbolsList = []; - - this._requestFullSymbolsList(); -}; - -Datafeeds.SymbolsStorage.prototype._requestFullSymbolsList = function() { - var that = this; - - for (var i = 0; i < this._exchangesList.length; ++i) { - var exchange = this._exchangesList[i]; - - if (this._exchangesDataCache.hasOwnProperty(exchange)) { - continue; - } - - this._exchangesDataCache[exchange] = true; - - this._exchangesWaitingForData[exchange] = 'waiting_for_data'; - - this._datafeed._send(this._datafeed._datafeedURL + '/symbol_info', { - group: exchange - }) - .done((function(exchange) { - return function(response) { - that._onExchangeDataReceived(exchange, parseJSONorNot(response)); - that._onAnyExchangeResponseReceived(exchange); - }; - })(exchange)) - .fail((function(exchange) { - return function(reason) { - that._onAnyExchangeResponseReceived(exchange); - }; - })(exchange)); - } -}; - -Datafeeds.SymbolsStorage.prototype._onExchangeDataReceived = function(exchangeName, data) { - function tableField(data, name, index) { - return data[name] instanceof Array ? - data[name][index] : - data[name]; - } - - try { - for (var symbolIndex = 0; symbolIndex < data.symbol.length; ++symbolIndex) { - var symbolName = data.symbol[symbolIndex]; - var listedExchange = tableField(data, 'exchange-listed', symbolIndex); - var tradedExchange = tableField(data, 'exchange-traded', symbolIndex); - var fullName = tradedExchange + ':' + symbolName; - - // This feature support is not implemented yet - // var hasDWM = tableField(data, "has-dwm", symbolIndex); - - var hasIntraday = tableField(data, 'has-intraday', symbolIndex); - - var tickerPresent = typeof data.ticker != 'undefined'; - - var symbolInfo = { - name: symbolName, - base_name: [listedExchange + ':' + symbolName], - description: tableField(data, 'description', symbolIndex), - full_name: fullName, - legs: [fullName], - has_intraday: hasIntraday, - has_no_volume: tableField(data, 'has-no-volume', symbolIndex), - listed_exchange: listedExchange, - exchange: tradedExchange, - minmov: tableField(data, 'minmovement', symbolIndex) || tableField(data, 'minmov', symbolIndex), - minmove2: tableField(data, 'minmove2', symbolIndex) || tableField(data, 'minmov2', symbolIndex), - fractional: tableField(data, 'fractional', symbolIndex), - pointvalue: tableField(data, 'pointvalue', symbolIndex), - pricescale: tableField(data, 'pricescale', symbolIndex), - type: tableField(data, 'type', symbolIndex), - session: tableField(data, 'session-regular', symbolIndex), - ticker: tickerPresent ? tableField(data, 'ticker', symbolIndex) : symbolName, - timezone: tableField(data, 'timezone', symbolIndex), - supported_resolutions: tableField(data, 'supported-resolutions', symbolIndex) || this._datafeed.defaultConfiguration().supported_resolutions, - force_session_rebuild: tableField(data, 'force-session-rebuild', symbolIndex) || false, - has_daily: tableField(data, 'has-daily', symbolIndex) || true, - intraday_multipliers: tableField(data, 'intraday-multipliers', symbolIndex) || ['1', '5', '15', '30', '60'], - has_weekly_and_monthly: tableField(data, 'has-weekly-and-monthly', symbolIndex) || false, - has_empty_bars: tableField(data, 'has-empty-bars', symbolIndex) || false, - volume_precision: tableField(data, 'volume-precision', symbolIndex) || 0 - }; - - this._symbolsInfo[symbolInfo.ticker] = this._symbolsInfo[symbolName] = this._symbolsInfo[fullName] = symbolInfo; - this._symbolsList.push(symbolName); - } - } catch (error) { - throw new Error('API error when processing exchange `' + exchangeName + '` symbol #' + symbolIndex + ': ' + error); - } -}; - -Datafeeds.SymbolsStorage.prototype._onAnyExchangeResponseReceived = function(exchangeName) { - delete this._exchangesWaitingForData[exchangeName]; - - var allDataReady = Object.keys(this._exchangesWaitingForData).length === 0; - - if (allDataReady) { - this._symbolsList.sort(); - this._datafeed._logMessage('All exchanges data ready'); - this._datafeed.onInitialized(); - } -}; - -// BEWARE: this function does not consider symbol's exchange -Datafeeds.SymbolsStorage.prototype.resolveSymbol = function(symbolName, onSymbolResolvedCallback, onResolveErrorCallback) { - var that = this; - - setTimeout(function() { - if (!that._symbolsInfo.hasOwnProperty(symbolName)) { - onResolveErrorCallback('invalid symbol'); - } else { - onSymbolResolvedCallback(that._symbolsInfo[symbolName]); - } - }, 0); -}; - -// ================================================================================================================================================== -// ================================================================================================================================================== -// ================================================================================================================================================== - -/* - It's a symbol search component for ExternalDatafeed. This component can do symbol search only. - This component strongly depends on SymbolsDataStorage and cannot work without it. Maybe, it would be - better to merge it to SymbolsDataStorage. -*/ - -Datafeeds.SymbolSearchComponent = function(datafeed) { - this._datafeed = datafeed; -}; - -// searchArgument = { searchString, onResultReadyCallback} -Datafeeds.SymbolSearchComponent.prototype.searchSymbols = function(searchArgument, maxSearchResults) { - if (!this._datafeed._symbolsStorage) { - throw new Error('Cannot use local symbol search when no groups information is available'); - } - - var symbolsStorage = this._datafeed._symbolsStorage; - - var results = []; // array of WeightedItem { item, weight } - var queryIsEmpty = !searchArgument.searchString || searchArgument.searchString.length === 0; - var searchStringUpperCase = searchArgument.searchString.toUpperCase(); - - for (var i = 0; i < symbolsStorage._symbolsList.length; ++i) { - var symbolName = symbolsStorage._symbolsList[i]; - var item = symbolsStorage._symbolsInfo[symbolName]; - - if (searchArgument.type && searchArgument.type.length > 0 && item.type !== searchArgument.type) { - continue; - } - - if (searchArgument.exchange && searchArgument.exchange.length > 0 && item.exchange !== searchArgument.exchange) { - continue; - } - - var positionInName = item.name.toUpperCase().indexOf(searchStringUpperCase); - var positionInDescription = item.description.toUpperCase().indexOf(searchStringUpperCase); - - if (queryIsEmpty || positionInName >= 0 || positionInDescription >= 0) { - var found = false; - for (var resultIndex = 0; resultIndex < results.length; resultIndex++) { - if (results[resultIndex].item === item) { - found = true; - break; - } - } - - if (!found) { - var weight = positionInName >= 0 ? positionInName : 8000 + positionInDescription; - results.push({ item: item, weight: weight }); - } - } - } - - searchArgument.onResultReadyCallback( - results - .sort(function(weightedItem1, weightedItem2) { - return weightedItem1.weight - weightedItem2.weight; - }) - .map(function(weightedItem) { - var item = weightedItem.item; - return { - symbol: item.name, - full_name: item.full_name, - description: item.description, - exchange: item.exchange, - params: [], - type: item.type, - ticker: item.name - }; - }) - .slice(0, Math.min(results.length, maxSearchResults)) - ); -}; - -// ================================================================================================================================================== -// ================================================================================================================================================== -// ================================================================================================================================================== - -/* - This is a pulse updating components for ExternalDatafeed. They emulates realtime updates with periodic requests. -*/ - -Datafeeds.DataPulseUpdater = function(datafeed, updateFrequency) { - this._datafeed = datafeed; - this._subscribers = {}; - - this._requestsPending = 0; - var that = this; - - var update = function() { - if (that._requestsPending > 0) { - return; - } - - for (var listenerGUID in that._subscribers) { - var subscriptionRecord = that._subscribers[listenerGUID]; - var resolution = subscriptionRecord.resolution; - - var datesRangeRight = parseInt((new Date().valueOf()) / 1000); - - // BEWARE: please note we really need 2 bars, not the only last one - // see the explanation below. `10` is the `large enough` value to work around holidays - var datesRangeLeft = datesRangeRight - that.periodLengthSeconds(resolution, 10); - - that._requestsPending++; - - (function(_subscriptionRecord) { // eslint-disable-line - that._datafeed.getBars(_subscriptionRecord.symbolInfo, resolution, datesRangeLeft, datesRangeRight, function(bars) { - that._requestsPending--; - - // means the subscription was cancelled while waiting for data - if (!that._subscribers.hasOwnProperty(listenerGUID)) { - return; - } - - if (bars.length === 0) { - return; - } - - var lastBar = bars[bars.length - 1]; - if (!isNaN(_subscriptionRecord.lastBarTime) && lastBar.time < _subscriptionRecord.lastBarTime) { - return; - } - - var subscribers = _subscriptionRecord.listeners; - - // BEWARE: this one isn't working when first update comes and this update makes a new bar. In this case - // _subscriptionRecord.lastBarTime = NaN - var isNewBar = !isNaN(_subscriptionRecord.lastBarTime) && lastBar.time > _subscriptionRecord.lastBarTime; - - // Pulse updating may miss some trades data (ie, if pulse period = 10 secods and new bar is started 5 seconds later after the last update, the - // old bar's last 5 seconds trades will be lost). Thus, at fist we should broadcast old bar updates when it's ready. - if (isNewBar) { - if (bars.length < 2) { - throw new Error('Not enough bars in history for proper pulse update. Need at least 2.'); - } - - var previousBar = bars[bars.length - 2]; - for (var i = 0; i < subscribers.length; ++i) { - subscribers[i](previousBar); - } - } - - _subscriptionRecord.lastBarTime = lastBar.time; - - for (var i = 0; i < subscribers.length; ++i) { - subscribers[i](lastBar); - } - }, - - // on error - function() { - that._requestsPending--; - }); - })(subscriptionRecord); - } - }; - - if (typeof updateFrequency != 'undefined' && updateFrequency > 0) { - setInterval(update, updateFrequency); - } -}; - -Datafeeds.DataPulseUpdater.prototype.unsubscribeDataListener = function(listenerGUID) { - this._datafeed._logMessage('Unsubscribing ' + listenerGUID); - delete this._subscribers[listenerGUID]; -}; - -Datafeeds.DataPulseUpdater.prototype.subscribeDataListener = function(symbolInfo, resolution, newDataCallback, listenerGUID) { - this._datafeed._logMessage('Subscribing ' + listenerGUID); - - if (!this._subscribers.hasOwnProperty(listenerGUID)) { - this._subscribers[listenerGUID] = { - symbolInfo: symbolInfo, - resolution: resolution, - lastBarTime: NaN, - listeners: [] - }; - } - - this._subscribers[listenerGUID].listeners.push(newDataCallback); -}; - -Datafeeds.DataPulseUpdater.prototype.periodLengthSeconds = function(resolution, requiredPeriodsCount) { - var daysCount = 0; - - if (resolution === 'D') { - daysCount = requiredPeriodsCount; - } else if (resolution === 'M') { - daysCount = 31 * requiredPeriodsCount; - } else if (resolution === 'W') { - daysCount = 7 * requiredPeriodsCount; - } else { - daysCount = requiredPeriodsCount * resolution / (24 * 60); - } - - return daysCount * 24 * 60 * 60; -}; - -Datafeeds.QuotesPulseUpdater = function(datafeed) { - this._datafeed = datafeed; - this._subscribers = {}; - this._updateInterval = 60 * 1000; - this._fastUpdateInterval = 10 * 1000; - this._requestsPending = 0; - - var that = this; - - setInterval(function() { - that._updateQuotes(function(subscriptionRecord) { return subscriptionRecord.symbols; }); - }, this._updateInterval); - - setInterval(function() { - that._updateQuotes(function(subscriptionRecord) { return subscriptionRecord.fastSymbols.length > 0 ? subscriptionRecord.fastSymbols : subscriptionRecord.symbols; }); - }, this._fastUpdateInterval); -}; - -Datafeeds.QuotesPulseUpdater.prototype.subscribeDataListener = function(symbols, fastSymbols, newDataCallback, listenerGUID) { - if (!this._subscribers.hasOwnProperty(listenerGUID)) { - this._subscribers[listenerGUID] = { - symbols: symbols, - fastSymbols: fastSymbols, - listeners: [] - }; - } - - this._subscribers[listenerGUID].listeners.push(newDataCallback); -}; - -Datafeeds.QuotesPulseUpdater.prototype.unsubscribeDataListener = function(listenerGUID) { - delete this._subscribers[listenerGUID]; -}; - -Datafeeds.QuotesPulseUpdater.prototype._updateQuotes = function(symbolsGetter) { - if (this._requestsPending > 0) { - return; - } - - var that = this; - for (var listenerGUID in this._subscribers) { - this._requestsPending++; - - var subscriptionRecord = this._subscribers[listenerGUID]; - this._datafeed.getQuotes(symbolsGetter(subscriptionRecord), - - // onDataCallback - (function(subscribers, guid) { // eslint-disable-line - return function(data) { - that._requestsPending--; - - // means the subscription was cancelled while waiting for data - if (!that._subscribers.hasOwnProperty(guid)) { - return; - } - - for (var i = 0; i < subscribers.length; ++i) { - subscribers[i](data); - } - }; - }(subscriptionRecord.listeners, listenerGUID)), - // onErrorCallback - function(error) { - that._requestsPending--; - }); - } -}; - -if (typeof module !== 'undefined' && module && module.exports) { - module.exports = { - UDFCompatibleDatafeed: Datafeeds.UDFCompatibleDatafeed, - }; -} diff --git a/charting_library/static/bundles/13.416855bb3e77f54b85bc.js b/charting_library/static/bundles/13.416855bb3e77f54b85bc.js new file mode 100644 index 00000000..c8625e03 --- /dev/null +++ b/charting_library/static/bundles/13.416855bb3e77f54b85bc.js @@ -0,0 +1,4 @@ +webpackJsonp([13],{334:function(t,e,n){var o,i,r;!function(a,c){i=[t,n(516),n(1091),n(687)],o=c,void 0!==(r="function"==typeof o?o.apply(e,i):o)&&(t.exports=r)}(0,function(t,e,n,o){"use strict";function i(t){return t&&t.__esModule?t:{default:t}}function r(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function a(t,e){if(!t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!e||"object"!=typeof e&&"function"!=typeof e?t:e}function c(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function, not "+typeof e);t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,enumerable:!1,writable:!0,configurable:!0}}),e&&(Object.setPrototypeOf?Object.setPrototypeOf(t,e):t.__proto__=e)}function u(t,e){var n="data-clipboard-"+t;if(e.hasAttribute(n))return e.getAttribute(n)}var l=i(e),s=i(n),f=i(o),h="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},d=function(){function t(t,e){var n,o;for(n=0;n0&&void 0!==arguments[0]?arguments[0]:{};this.action="function"==typeof t.action?t.action:this.defaultAction,this.target="function"==typeof t.target?t.target:this.defaultTarget,this.text="function"==typeof t.text?t.text:this.defaultText,this.container="object"===h(t.container)?t.container:document.body}},{key:"listenClick",value:function(t){var e=this;this.listener=(0,f.default)(t,"click",function(t){return e.onClick(t)})}},{key:"onClick",value:function(t){var e=t.delegateTarget||t.currentTarget;this.clipboardAction&&(this.clipboardAction=null),this.clipboardAction=new l.default({action:this.action(e),target:this.target(e),text:this.text(e),container:this.container,trigger:e,emitter:this})}},{key:"defaultAction",value:function(t){return u("action",t)}},{key:"defaultTarget",value:function(t){var e=u("target",t);if(e)return document.querySelector(e)}},{key:"defaultText",value:function(t){return u("text",t)}},{key:"destroy",value:function(){this.listener.destroy(),this.clipboardAction&&(this.clipboardAction.destroy(),this.clipboardAction=null)}}],[{key:"isSupported",value:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:["copy","cut"],e="string"==typeof t?[t]:t,n=!!document.queryCommandSupported;return e.forEach(function(t){n=n&&!!document.queryCommandSupported(t)}),n}}]),e}(s.default);t.exports=p})},516:function(t,e,n){var o,i,r;!function(a,c){i=[t,n(1090)],o=c, +void 0!==(r="function"==typeof o?o.apply(e,i):o)&&(t.exports=r)}(0,function(t,e){"use strict";function n(t){return t&&t.__esModule?t:{default:t}}function o(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}var i=n(e),r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},a=function(){function t(t,e){var n,o;for(n=0;n0&&void 0!==arguments[0]?arguments[0]:{};this.action=t.action,this.container=t.container,this.emitter=t.emitter,this.target=t.target,this.text=t.text,this.trigger=t.trigger,this.selectedText=""}},{key:"initSelection",value:function(){this.text?this.selectFake():this.target&&this.selectTarget()}},{key:"selectFake",value:function(){var t,e=this,n="rtl"==document.documentElement.getAttribute("dir");this.removeFake(),this.fakeHandlerCallback=function(){return e.removeFake()},this.fakeHandler=this.container.addEventListener("click",this.fakeHandlerCallback)||!0,this.fakeElem=document.createElement("textarea"),this.fakeElem.style.fontSize="12pt",this.fakeElem.style.border="0",this.fakeElem.style.padding="0",this.fakeElem.style.margin="0",this.fakeElem.style.position="absolute",this.fakeElem.style[n?"right":"left"]="-9999px",t=window.pageYOffset||document.documentElement.scrollTop,this.fakeElem.style.top=t+"px",this.fakeElem.setAttribute("readonly",""),this.fakeElem.value=this.text,this.container.appendChild(this.fakeElem),this.selectedText=(0,i.default)(this.fakeElem),this.copyText()}},{key:"removeFake",value:function(){this.fakeHandler&&(this.container.removeEventListener("click",this.fakeHandlerCallback),this.fakeHandler=null,this.fakeHandlerCallback=null),this.fakeElem&&(this.container.removeChild(this.fakeElem),this.fakeElem=null)}},{key:"selectTarget",value:function(){this.selectedText=(0,i.default)(this.target),this.copyText()}},{key:"copyText",value:function(){var t=void 0;try{t=document.execCommand(this.action)}catch(e){t=!1}this.handleResult(t)}},{key:"handleResult",value:function(t){this.emitter.emit(t?"success":"error",{action:this.action,text:this.selectedText,trigger:this.trigger,clearSelection:this.clearSelection.bind(this)})}},{key:"clearSelection",value:function(){this.trigger&&this.trigger.focus(),window.getSelection().removeAllRanges()}},{key:"destroy",value:function(){this.removeFake()}},{key:"action",set:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"copy";if(this._action=t,"copy"!==this._action&&"cut"!==this._action)throw Error('Invalid "action" value, use either "copy" or "cut"')},get:function(){return this._action}},{key:"target", +set:function(t){if(void 0!==t){if(!t||"object"!==(void 0===t?"undefined":r(t))||1!==t.nodeType)throw Error('Invalid "target" value, use a valid Element');if("copy"===this.action&&t.hasAttribute("disabled"))throw Error('Invalid "target" attribute. Please use "readonly" instead of "disabled" attribute');if("cut"===this.action&&(t.hasAttribute("readonly")||t.hasAttribute("disabled")))throw Error('Invalid "target" attribute. You can\'t cut text from elements with "readonly" or "disabled" attributes');this._target=t}},get:function(){return this._target}}]),t}();t.exports=c})},613:function(t,e){function n(t,e){for(;t&&t.nodeType!==i;){if("function"==typeof t.matches&&t.matches(e))return t;t=t.parentNode}}var o,i=9;"undefined"==typeof Element||Element.prototype.matches||(o=Element.prototype,o.matches=o.matchesSelector||o.mozMatchesSelector||o.msMatchesSelector||o.oMatchesSelector||o.webkitMatchesSelector),t.exports=n},614:function(t,e,n){function o(t,e,n,o,i){var a=r.apply(this,arguments);return t.addEventListener(n,a,i),{destroy:function(){t.removeEventListener(n,a,i)}}}function i(t,e,n,i,r){return"function"==typeof t.addEventListener?o.apply(null,arguments):"function"==typeof n?o.bind(null,document).apply(null,arguments):("string"==typeof t&&(t=document.querySelectorAll(t)),Array.prototype.map.call(t,function(t){return o(t,e,n,i,r)}))}function r(t,e,n,o){return function(n){n.delegateTarget=a(n.target,e),n.delegateTarget&&o.call(t,n)}}var a=n(613);t.exports=i},686:function(t,e){e.node=function(t){return void 0!==t&&t instanceof HTMLElement&&1===t.nodeType},e.nodeList=function(t){var n=Object.prototype.toString.call(t);return void 0!==t&&("[object NodeList]"===n||"[object HTMLCollection]"===n)&&"length"in t&&(0===t.length||e.node(t[0]))},e.string=function(t){return"string"==typeof t||t instanceof String},e.fn=function(t){return"[object Function]"===Object.prototype.toString.call(t)}},687:function(t,e,n){function o(t,e,n){if(!t&&!e&&!n)throw Error("Missing required arguments");if(!c.string(e))throw new TypeError("Second argument must be a String");if(!c.fn(n))throw new TypeError("Third argument must be a Function");if(c.node(t))return i(t,e,n);if(c.nodeList(t))return r(t,e,n);if(c.string(t))return a(t,e,n);throw new TypeError("First argument must be a String, HTMLElement, HTMLCollection, or NodeList")}function i(t,e,n){return t.addEventListener(e,n),{destroy:function(){t.removeEventListener(e,n)}}}function r(t,e,n){return Array.prototype.forEach.call(t,function(t){t.addEventListener(e,n)}),{destroy:function(){Array.prototype.forEach.call(t,function(t){t.removeEventListener(e,n)})}}}function a(t,e,n){return u(document.body,t,e,n)}var c=n(686),u=n(614);t.exports=o},1090:function(t,e){function n(t){var e,n,o,i;return"SELECT"===t.nodeName?(t.focus(),e=t.value):"INPUT"===t.nodeName||"TEXTAREA"===t.nodeName?(n=t.hasAttribute("readonly"),n||t.setAttribute("readonly",""),t.select(),t.setSelectionRange(0,t.value.length),n||t.removeAttribute("readonly"),e=t.value):(t.hasAttribute("contenteditable")&&t.focus(),o=window.getSelection(), +i=document.createRange(),i.selectNodeContents(t),o.removeAllRanges(),o.addRange(i),e=""+o),e}t.exports=n},1091:function(t,e){function n(){}n.prototype={on:function(t,e,n){var o=this.e||(this.e={});return(o[t]||(o[t]=[])).push({fn:e,ctx:n}),this},once:function(t,e,n){function o(){i.off(t,o),e.apply(n,arguments)}var i=this;return o._=e,this.on(t,o,n)},emit:function(t){var e=[].slice.call(arguments,1),n=((this.e||(this.e={}))[t]||[]).slice(),o=0,i=n.length;for(o;o0&&void 0!==arguments[0]?arguments[0]:{};this.action=t.action,this.container=t.container,this.emitter=t.emitter,this.target=t.target,this.text=t.text,this.trigger=t.trigger,this.selectedText=""}},{key:"initSelection",value:function(){this.text?this.selectFake():this.target&&this.selectTarget()}},{key:"selectFake",value:function(){var t,e=this,n="rtl"==document.documentElement.getAttribute("dir");this.removeFake(),this.fakeHandlerCallback=function(){return e.removeFake()},this.fakeHandler=this.container.addEventListener("click",this.fakeHandlerCallback)||!0,this.fakeElem=document.createElement("textarea"),this.fakeElem.style.fontSize="12pt",this.fakeElem.style.border="0",this.fakeElem.style.padding="0",this.fakeElem.style.margin="0",this.fakeElem.style.position="absolute",this.fakeElem.style[n?"right":"left"]="-9999px",t=window.pageYOffset||document.documentElement.scrollTop,this.fakeElem.style.top=t+"px",this.fakeElem.setAttribute("readonly",""),this.fakeElem.value=this.text,this.container.appendChild(this.fakeElem),this.selectedText=(0,i.default)(this.fakeElem),this.copyText()}},{key:"removeFake",value:function(){this.fakeHandler&&(this.container.removeEventListener("click",this.fakeHandlerCallback),this.fakeHandler=null,this.fakeHandlerCallback=null),this.fakeElem&&(this.container.removeChild(this.fakeElem),this.fakeElem=null)}},{key:"selectTarget",value:function(){this.selectedText=(0,i.default)(this.target),this.copyText()}},{key:"copyText",value:function(){var t=void 0;try{t=document.execCommand(this.action)}catch(e){t=!1}this.handleResult(t)}},{key:"handleResult",value:function(t){this.emitter.emit(t?"success":"error",{action:this.action,text:this.selectedText,trigger:this.trigger,clearSelection:this.clearSelection.bind(this)})}},{key:"clearSelection",value:function(){this.trigger&&this.trigger.focus(),window.getSelection().removeAllRanges()}},{key:"destroy",value:function(){this.removeFake()}},{key:"action",set:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"copy";if(this._action=t, -"copy"!==this._action&&"cut"!==this._action)throw Error('Invalid "action" value, use either "copy" or "cut"')},get:function(){return this._action}},{key:"target",set:function(t){if(void 0!==t){if(!t||"object"!==(void 0===t?"undefined":r(t))||1!==t.nodeType)throw Error('Invalid "target" value, use a valid Element');if("copy"===this.action&&t.hasAttribute("disabled"))throw Error('Invalid "target" attribute. Please use "readonly" instead of "disabled" attribute');if("cut"===this.action&&(t.hasAttribute("readonly")||t.hasAttribute("disabled")))throw Error('Invalid "target" attribute. You can\'t cut text from elements with "readonly" or "disabled" attributes');this._target=t}},get:function(){return this._target}}]),t}();t.exports=c})},389:function(t,e,n){var o,i,r;!function(a,c){i=[t,n(388),n(725),n(526)],o=c,void 0!==(r="function"==typeof o?o.apply(e,i):o)&&(t.exports=r)}(0,function(t,e,n,o){"use strict";function i(t){return t&&t.__esModule?t:{default:t}}function r(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function a(t,e){if(!t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!e||"object"!=typeof e&&"function"!=typeof e?t:e}function c(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function, not "+typeof e);t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,enumerable:!1,writable:!0,configurable:!0}}),e&&(Object.setPrototypeOf?Object.setPrototypeOf(t,e):t.__proto__=e)}function u(t,e){var n="data-clipboard-"+t;if(e.hasAttribute(n))return e.getAttribute(n)}var l=i(e),s=i(n),f=i(o),h="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},d=function(){function t(t,e){var n,o;for(n=0;n0&&void 0!==arguments[0]?arguments[0]:{};this.action="function"==typeof t.action?t.action:this.defaultAction,this.target="function"==typeof t.target?t.target:this.defaultTarget,this.text="function"==typeof t.text?t.text:this.defaultText,this.container="object"===h(t.container)?t.container:document.body}},{key:"listenClick",value:function(t){var e=this;this.listener=(0,f.default)(t,"click",function(t){return e.onClick(t)})}},{key:"onClick",value:function(t){var e=t.delegateTarget||t.currentTarget;this.clipboardAction&&(this.clipboardAction=null),this.clipboardAction=new l.default({action:this.action(e),target:this.target(e),text:this.text(e),container:this.container,trigger:e,emitter:this})}},{key:"defaultAction",value:function(t){ -return u("action",t)}},{key:"defaultTarget",value:function(t){var e=u("target",t);if(e)return document.querySelector(e)}},{key:"defaultText",value:function(t){return u("text",t)}},{key:"destroy",value:function(){this.listener.destroy(),this.clipboardAction&&(this.clipboardAction.destroy(),this.clipboardAction=null)}}],[{key:"isSupported",value:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:["copy","cut"],e="string"==typeof t?[t]:t,n=!!document.queryCommandSupported;return e.forEach(function(t){n=n&&!!document.queryCommandSupported(t)}),n}}]),e}(s.default);t.exports=p})},485:function(t,e){function n(t,e){for(;t&&t.nodeType!==i;){if("function"==typeof t.matches&&t.matches(e))return t;t=t.parentNode}}var o,i=9;"undefined"==typeof Element||Element.prototype.matches||(o=Element.prototype,o.matches=o.matchesSelector||o.mozMatchesSelector||o.msMatchesSelector||o.oMatchesSelector||o.webkitMatchesSelector),t.exports=n},486:function(t,e,n){function o(t,e,n,o,r){var a=i.apply(this,arguments);return t.addEventListener(n,a,r),{destroy:function(){t.removeEventListener(n,a,r)}}}function i(t,e,n,o){return function(n){n.delegateTarget=r(n.target,e),n.delegateTarget&&o.call(t,n)}}var r=n(485);t.exports=o},525:function(t,e){e.node=function(t){return void 0!==t&&t instanceof HTMLElement&&1===t.nodeType},e.nodeList=function(t){var n=Object.prototype.toString.call(t);return void 0!==t&&("[object NodeList]"===n||"[object HTMLCollection]"===n)&&"length"in t&&(0===t.length||e.node(t[0]))},e.string=function(t){return"string"==typeof t||t instanceof String},e.fn=function(t){return"[object Function]"===Object.prototype.toString.call(t)}},526:function(t,e,n){function o(t,e,n){if(!t&&!e&&!n)throw Error("Missing required arguments");if(!c.string(e))throw new TypeError("Second argument must be a String");if(!c.fn(n))throw new TypeError("Third argument must be a Function");if(c.node(t))return i(t,e,n);if(c.nodeList(t))return r(t,e,n);if(c.string(t))return a(t,e,n);throw new TypeError("First argument must be a String, HTMLElement, HTMLCollection, or NodeList")}function i(t,e,n){return t.addEventListener(e,n),{destroy:function(){t.removeEventListener(e,n)}}}function r(t,e,n){return Array.prototype.forEach.call(t,function(t){t.addEventListener(e,n)}),{destroy:function(){Array.prototype.forEach.call(t,function(t){t.removeEventListener(e,n)})}}}function a(t,e,n){return u(document.body,t,e,n)}var c=n(525),u=n(486);t.exports=o},724:function(t,e){function n(t){var e,n,o,i;return"SELECT"===t.nodeName?(t.focus(),e=t.value):"INPUT"===t.nodeName||"TEXTAREA"===t.nodeName?(n=t.hasAttribute("readonly"),n||t.setAttribute("readonly",""),t.select(),t.setSelectionRange(0,t.value.length),n||t.removeAttribute("readonly"),e=t.value):(t.hasAttribute("contenteditable")&&t.focus(),o=window.getSelection(),i=document.createRange(),i.selectNodeContents(t),o.removeAllRanges(),o.addRange(i),e=""+o),e}t.exports=n},725:function(t,e){function n(){}n.prototype={on:function(t,e,n){var o=this.e||(this.e={});return(o[t]||(o[t]=[])).push({fn:e,ctx:n}),this}, -once:function(t,e,n){function o(){i.off(t,o),e.apply(n,arguments)}var i=this;return o._=e,this.on(t,o,n)},emit:function(t){var e=[].slice.call(arguments,1),n=((this.e||(this.e={}))[t]||[]).slice(),o=0,i=n.length;for(o;o");return this.bindControl(new l(p(e),this._linetool.properties().collectibleColors,!0,this.model(),"Change All Lines Color",0)),{label:$(""+$.t("Use one color")+""),editor:e}},n.prototype.addOneColorPropertyWidget=function(e){var t=this.createOneColorForAllLinesWidget(),o=$("");o.append($("")).append(t.label).append(t.editor),o.appendTo(e)},n=i(n),n.createTemplatesPropertyPage=i,e.exports=n},15:function(e,t,o){"use strict";function i(){return $('
').slider({max:4,min:1,step:1})}Object.defineProperty(t,"__esModule",{value:!0}),o(22),o(285),t.createLineWidthEditor=i},31:function(e,t,o){"use strict";function i(){return new n.Combobox([{html:'
',value:a.LINESTYLE_SOLID},{html:'
',value:a.LINESTYLE_DOTTED},{html:'
',value:a.LINESTYLE_DASHED}])}var n,a;Object.defineProperty(t,"__esModule",{value:!0}),n=o(738),a=o(115),t.createLineStyleEditor=i},65:function(e,t,o){"use strict";function i(e){var t=$('
').slider({max:100,min:0,step:1}),o=["-moz-linear-gradient(left, %COLOR 0%, transparent 100%)","-webkit-gradient(linear, left top, right top, color-stop(0%,%COLOR), color-stop(100%,transparent))","-webkit-linear-gradient(left, %COLOR 0%,transparent 100%)","-o-linear-gradient(left, %COLOR 0%,transparent 100%)","linear-gradient(to right, %COLOR 0%,transparent 100%)"];return t.updateColor=function(e){var i=t.find(".gradient");o.forEach(function(t){i.css("background-image",t.replace(/%COLOR/,e))})},e?(t.updateColor(e.val()||"black"),e.on("change",function(e){t.updateColor(e.target.value)})):t.updateColor("black"),t}Object.defineProperty(t,"__esModule",{value:!0}),o(22),o(285),t.createTransparencyEditor=i},81:function(e,t,o){"use strict";function i(e,t,o){a.call(this,e,t),this._linetool=o,this.prepareLayout()}var n=o(10),a=n.PropertyPage,r=n.GreateTransformer,l=n.LessTransformer,p=n.ToIntTransformer,s=n.SimpleStringBinder;o(142),inherit(i,a),i.BarIndexPastLimit=-5e4,i.BarIndexFutureLimit=15e3,i.prototype.bindBarIndex=function(e,t,o,n){var a=[p(e.value()),r(i.BarIndexPastLimit),l(i.BarIndexFutureLimit)];this.bindControl(new s(t,e,a,!1,o,n))}, +i.prototype.createPriceEditor=function(e){var t,o=this._linetool.ownerSource().formatter(),i=function(e){return o.format(e)},n=function(e){var t=o.parse(e);if(t.res)return t.price?t.price:t.value},a=$("");return a.TVTicker({step:o._minMove/o._priceScale||1,formatter:i,parser:n}),e&&(t=[function(t){var o=n(t);return void 0===o?e.value():o}],this.bindControl(new s(a,e,t,!1,this.model(),"Change "+this._linetool+" point price")).addFormatter(function(e){return o.format(e)})),a},i.prototype._createPointRow=function(e,t,o){var i,n,a,r,l,p=$(""),s=$("");return s.html($.t("Price")+o),s.appendTo(p),i=$(""),i.appendTo(p),n=this.createPriceEditor(t.price),n.appendTo(i),a=$(""),a.html($.t("Bar #")),a.appendTo(p),r=$(""),r.appendTo(p),l=$(""),l.appendTo(r),l.addClass("ticker"),this.bindBarIndex(t.bar,l,this.model(),"Change "+this._linetool+" point bar index"),p},i.prototype.prepareLayoutForTable=function(e){var t,o,i,n,a,r=this._linetool.points(),l=r.length;for(t=0;t1?" "+(t+1):"",a=this._createPointRow(o,i,n),a.appendTo(e))},i.prototype.prepareLayout=function(){this._table=$(document.createElement("table")),this._table.addClass("property-page"),this._table.attr("cellspacing","0"),this._table.attr("cellpadding","2"),this.prepareLayoutForTable(this._table),this.loadData()},i.prototype.widget=function(){return this._table},e.exports=i},121:function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),function(e){e[e.Coordinates=100]="Coordinates",e[e.Display=100]="Display",e[e.Style=200]="Style",e[e.Inputs=300]="Inputs",e[e.Properties=250]="Properties"}(t.TabPriority||(t.TabPriority={})),function(e){e.background="Background",e.coordinates="Coordinates",e.drawings="Drawings",e.events="Events",e.eventsAndAlerts="Events & Alerts",e.inputs="Inputs",e.properties="Properties",e.scales="Scales",e.sourceCode="Source Code",e.style="Style",e.timezoneSessions="Timezone/Sessions",e.trading="Trading",e.visibility="Visibility"}(t.TabNames||(t.TabNames={})),function(e){e[e.Default=100]="Default",e[e.UserSave=200]="UserSave",e[e.Override=300]="Override"}(t.TabOpenFrom||(t.TabOpenFrom={}))},208:function(e,t,o){"use strict";function i(e,t,o){r.call(this,e,t),this._study=o,this.prepareLayout()}function n(e,t,o){r.call(this,e,t),this._study=o,this._property=e,this.prepareLayout()}var a=o(10),r=a.PropertyPage,l=a.GreateTransformer,p=a.LessTransformer,s=a.ToIntTransformer,d=a.ToFloatTransformer,h=a.SimpleComboBinder,c=a.BooleanBinder,b=a.DisabledBinder,u=a.ColorBinding,C=a.SliderBinder,y=a.SimpleStringBinder,g=o(47).addColorPicker,w=o(31).createLineStyleEditor,T=o(1121).createShapeLocationEditor,_=o(1122).createShapeStyleEditor,m=o(15).createLineWidthEditor,f=o(1123).createVisibilityEditor,L=o(1119).createHHistDirectionEditor,v=o(476).createPlotEditor,k=o(38).NumericFormatter,S=o(45),P=o(106).PlotType,x=o(13).getLogger("Chart.Study.PropertyPage");inherit(i,r),i.prototype.prepareLayout=function(){function e(e){ +return(new k).format(e)}var t,o,n,a,r,l,p,s,b,T,_,f,L,v,P,B,E,R,F,I,A,D,W,O,V,j,z,M,H,q,N,G,U,Y,K,Q;for(this._table=$(""),this._table.addClass("property-page"),this._table.attr("cellspacing","0"),this._table.attr("cellpadding","2"),t=this._study.metaInfo(),o={},n=0;n0)for(n=0;n'),T.appendTo(this._table),_=$("
"),_.appendTo(T),f=$(""),f.appendTo(_),L=$.t(b.name.value(),{context:"input"}),v=this.createLabeledCell(L,f).appendTo(T).addClass("propertypage-name-label"),P=$(""),P.appendTo(T),P.addClass("colorpicker-cell"),B=g(P),E=$(""),E.appendTo(T),R=m(),R.appendTo(E),F=$('').css({whiteSpace:"nowrap"}),F.appendTo(T),I=w(),I.render().appendTo(F),A=$(""),A.appendTo(F),D=[d(b.value.value())],W="Change band",O=new y(A,b.value,D,!1,this.model(),W),O.addFormatter(e),this.bindControl(O),this.bindControl(new c(f,b.visible,!0,this.model(),W)),this.bindControl(new u(B,b.color,!0,this.model(),W)),this.bindControl(new h(I,b.linestyle,parseInt,!0,this.model(),W)),this.bindControl(new C(R,b.linewidth,!0,this.model(),W)));if(this._study.properties().bandsBackground&&(b=this._study.properties().bandsBackground,V=$.t("Background"),W=$.t("Change band background"),T=this._prepareFilledAreaBackground(b.fillBackground,b.backgroundColor,b.transparency,V,W),T.appendTo(this._table)),this._study.properties().areaBackground&&(b=this._study.properties().areaBackground,V=$.t("Background"),W=$.t("Change area background"),T=this._prepareFilledAreaBackground(b.fillBackground,b.backgroundColor,b.transparency,V,W),T.appendTo(this._table)),void 0!==(j=t.filledAreas))for(n=0;n'),_=$(""),_.appendTo(T),f=$(""),f.appendTo(_), +this.bindControl(new c(f,b.visible,!0,this.model(),W+" visibility")),this.createLabeledCell(V,f).appendTo(T).addClass("propertypage-name-label"),T.appendTo(this._table),M=this._findPlotPalette(n,z),H=M.palette,q=M.paletteProps,this._prepareLayoutForPalette(0,z,H,q,W)):(T=this._prepareFilledAreaBackground(b.visible,b.color,b.transparency,V,W),T.appendTo(this._table)));for(N in t.graphics){G=t.graphics[N];for(U in G)b=this._property.graphics[N][U],i["_createRow_"+N].call(this,this._table,b)}Y=this._table.find(".visibility-switch.plot-visibility-switch"),1===Y.length&&(_=Y.parent(),_.css("display","none"),v=this._table.find(".propertypage-plot-with-palette"),1===v.length?v.css("display","none"):(v=this._table.find(".propertypage-name-label"),v.css("padding-left",0),v.find("label").attr("for",""))),K=this._prepareStudyPropertiesLayout(),this._table=this._table.add(K),S.isScriptStrategy(t)&&(Q=this._prepareOrdersSwitches(),this._table=this._table.add(Q)),this.loadData()},i.prototype._prepareOrdersSwitches=function(){var e,t,o,i,n,a,r,l=$(''),p="chart-orders-switch_"+Date.now().toString(36),s=$("").appendTo(l),d=$('').appendTo($("").appendTo(l),o=$('').appendTo($("").appendTo(l),a=$('').appendTo($("'),o.appendTo(this._table),i=$("'),o.appendTo(this._table), +i=$("');y.appendTo(this._table),o=$("'),a.appendTo(this._table),r=$("');L.appendTo(this._table),o=$("'), +L.appendTo(this._table),$("');L.appendTo(this._table),o=$("'),L.appendTo(this._table),$("'),s.appendTo(this._table),$("');b.appendTo(this._table),o=$(""),t.appendTo(o),$("").appendTo(t),$(""),t.appendTo(o),$("").appendTo(t),$("").appendTo(r),l=$("'),s=$("").appendTo(this._table),c=$("
").appendTo(s));return $('").appendTo($("").appendTo(s)),e="chart-orders-labels-switch_"+Date.now().toString(36),t=$("
").appendTo(t)),$('").appendTo($("").appendTo(t)),i="chart-orders-qty-switch_"+Date.now().toString(36),n=$("
").appendTo(n)),$('").appendTo($("").appendTo(n)),r=this._study.properties(),this.bindControl(new c(d,r.strategy.orders.visible,!0,this.model(),"Trades on chart visibility")),this.bindControl(new c(o,r.strategy.orders.showLabels,!0,this.model(),"Signal labels visibility")),this.bindControl(new b(o,r.strategy.orders.visible,!0,this.model(),"Signal labels visibility",!0)),this.bindControl(new c(a,r.strategy.orders.showQty,!0,this.model(),"Quantity visibility")),this.bindControl(new b(a,r.strategy.orders.visible,!0,this.model(),"Quantity visibility",!0)),l},i.prototype._prepareLayoutForPlot=function(e,t){var o,i,n,a,r,l,p,s,d,b,y,w,T=t.id,_=this._study.properties().styles[T],f=this._findPlotPalette(e,t),L=f.palette,k=f.paletteProps,S="Change "+T;L?(o=$('
"),i.appendTo(o),i.addClass("visibility-cell"),n=$(""),n.appendTo(i),this.bindControl(new c(n,_.visible,!0,this.model(),S)),a=$.t(_.title.value(),{context:"input"}),this.createLabeledCell(a,n).appendTo(o).addClass("propertypage-name-label propertypage-plot-with-palette"),this._prepareLayoutForPalette(e,t,L,k,S)):(o=$('
"),i.appendTo(o),i.addClass("visibility-cell"),n=$(""),n.appendTo(i),a=$.t(this._study.properties().styles[T].title.value(),{context:"input"}),this.createLabeledCell(a,n).appendTo(o).addClass("propertypage-name-label"),r=$(""),r.appendTo(o),r.addClass("colorpicker-cell"),l=g(r),p=$(""),p.appendTo(o),s=m(),s.appendTo(p),d=$(""),d.appendTo(o),b=v(),b.appendTo(d),y=$(""),y.appendTo(o),w=$(""),w.appendTo(y),this.createLabeledCell("Price Line",w).appendTo(o),this.bindControl(new c(n,_.visible,!0,this.model(),S)),this.bindControl(new u(l,_.color,!0,this.model(),S,_.transparency)),this.bindControl(new C(s,_.linewidth,!0,this.model(),S,this._study.metaInfo().isTVScript)),this.bindControl(new h(b,_.plottype,parseInt,!0,this.model(),S)),this.bindControl(new c(w,_.trackPrice,!0,this.model(),"Change Price Line")))},i.prototype._prepareLayoutForBarsPlot=function(e,t){var o,i,n,a,r,l,p=t.id,s=this._study.properties().ohlcPlots[p],d=this._findPlotPalette(e,t),h=d.palette,b=d.paletteProps,C="Change "+p,y=$('
"),o.appendTo(y),o.addClass("visibility-cell"),i=$(""),i.appendTo(o),this.bindControl(new c(i,s.visible,!0,this.model(),C)),n=s.title.value(),this.createLabeledCell(n,i).appendTo(y).addClass("propertypage-name-label"),h?(a=!0,this._prepareLayoutForPalette(e,t,h,b,C,a)):(r=$(""),r.appendTo(y),r.addClass("colorpicker-cell"),l=g(r),this.bindControl(new u(l,s.color,!0,this.model(),C)))},i.prototype._prepareLayoutForCandlesPlot=function(e,t){var o,i,n,a,r,l,p,s,d;this._prepareLayoutForBarsPlot(e,t),o=t.id,i=this._study.properties().ohlcPlots[o],n="Change "+o,a=$('
"),r.appendTo(a),r.addClass("visibility-cell"),l=$(""),l.appendTo(r),this.bindControl(new c(l,i.drawWick,!0,this.model(),n)),p="Wick",this.createLabeledCell(p,l).appendTo(a),s=$(""),s.appendTo(a),s.addClass("colorpicker-cell"),d=g(s),this.bindControl(new u(d,i.wickColor,!0,this.model(),n))},i.prototype._prepareLayoutForShapesPlot=function(e,t){var o,i,n,a,r,l,p,s,d,b=t.id,C=this._study.properties().styles[b],y=this._findPlotPalette(e,t),w=y.palette,m=y.paletteProps,f="Change "+b,L=$('
"),o.appendTo(L),o.addClass("visibility-cell"),i=$(""),i.appendTo(o),this.bindControl(new c(i,C.visible,!0,this.model(),f)),n=$.t(this._study.properties().styles[b].title.value(),{context:"input"}),this.createLabeledCell(n,i).appendTo(L).addClass("propertypage-name-label"),a=$(""),a.appendTo(L),r=_(),r.appendTo(a),this.bindControl(new h(r,C.plottype,null,!0,this.model(),f)),l=$(""),l.appendTo(L),p=T(),p.appendTo(l),this.bindControl(new h(p,C.location,null,!0,this.model(),f)),w?this._prepareLayoutForPalette(e,t,w,m,f):(L=$('
").appendTo(L),$("").appendTo(L),s=$(""),s.appendTo(L),s.addClass("colorpicker-cell"),d=g(s),this.bindControl(new u(d,C.color,!0,this.model(),f,C.transparency)))},i.prototype._prepareLayoutForCharsPlot=function(e,t){var o,i,n,a,r,l,p,s,d,b=t.id,C=this._study.properties().styles[b],w=this._findPlotPalette(e,t),_=w.palette,m=w.paletteProps,f="Change "+b,L=$('
"),o.appendTo(L),o.addClass("visibility-cell"),i=$(""),i.appendTo(o),this.bindControl(new c(i,C.visible,!0,this.model(),f)),n=$.t(this._study.properties().styles[b].title.value(),{context:"input"}),this.createLabeledCell(n,i).appendTo(L).addClass("propertypage-name-label"),a=$(""),a.appendTo(L),r=$(''),r.appendTo(a),r.keyup(function(){var e=$(this),t=e.val();t&&(e.val(t.split("")[t.length-1]),e.change())}),this.bindControl(new y(r,C.char,null,!1,this.model(),f)),l=$(""),l.appendTo(L),p=T(),p.appendTo(l),this.bindControl(new h(p,C.location,null,!0,this.model(),f)),_?this._prepareLayoutForPalette(e,t,_,m,f):(L=$('
").appendTo(L),$("").appendTo(L),s=$(""),s.appendTo(L),s.addClass("colorpicker-cell"),d=g(s),this.bindControl(new u(d,C.color,!0,this.model(),f,C.transparency)))},i.prototype._isStyleNeedsConnectPoints=function(e){return[P.Cross,P.Circles].indexOf(e)>=0},i.prototype._prepareLayoutForPalette=function(e,t,o,i,n,a){var r,l,p,s,d,b,y,w,T,_,f,L,k,S,P,x=e,B=t.id,E=null,R=B.startsWith("fill");E=a?this._study.properties().ohlcPlots[B]:R?this._study.properties().filledAreasStyle[B]:this._study.properties().styles[B],r=0;for(l in o.colors)p=i.colors[l],s=$('
").appendTo(s),d=$(""),d.appendTo(s),d.addClass("propertypage-name-label"),d.html($.t(p.name.value(),{context:"input"})),b=$(""),b.appendTo(s),b.addClass("colorpicker-cell"),y=g(b),this.bindControl(new u(y,p.color,!0,this.model(),n,E.transparency)),!R&&this._study.isLinePlot(x)&&(w=$(""),w.appendTo(s),T=m(),T.appendTo(w),this.bindControl(new C(T,p.width,!0,this.model(),n,this._study.metaInfo().isTVScript)),_=$(""),_.appendTo(s),0===r&&(f=v(),f.appendTo(_),this.bindControl(new h(f,E.plottype,parseInt,!0,this.model(),n)),L=$(""),k=$('').css({whiteSpace:"nowrap"}),S=$("").html($.t("Price Line")),P=$(""),P.append(L),k.append(P).append(S).appendTo(s),this.bindControl(new c(L,E.trackPrice,!0,this.model(),"Change Price Line")))),r++},i.prototype._prepareLayoutForArrowsPlot=function(e,t){var o,i,n,a,r,l,p,s=t.id,d=this._study.properties().styles[s],h="Change "+s,b=$('
"),o.appendTo(b),o.addClass("visibility-cell"),i=$(""),i.appendTo(o),n=$.t(this._study.properties().styles[s].title.value(),{context:"input"}), +this.createLabeledCell(n,i).appendTo(b).addClass("propertypage-name-label"),a=$(""),a.appendTo(b),a.addClass("colorpicker-cell"),r=g(a),l=$(""),l.appendTo(b),l.addClass("colorpicker-cell"),p=g(l),this.bindControl(new c(i,d.visible,!0,this.model(),h)),this.bindControl(new u(r,d.colorup,!0,this.model(),h,d.transparency)),this.bindControl(new u(p,d.colordown,!0,this.model(),h,d.transparency))},i.prototype._findPlotPalette=function(e,t){var o,i=e,n=t.id,a=null,r=null,l=this._study.metaInfo().plots;if(this._study.isBarColorerPlot(i)||this._study.isBgColorerPlot(i))a=this._study.metaInfo().palettes[t.palette],r=this._study.properties().palettes[t.palette];else for(o=0;o');return this._study.metaInfo().is_price_study||(e=this.createPrecisionEditor(),t=$("
"+$.t("Precision")+"").append(e).appendTo(t),this.bindControl(new h(e,this._study.properties().precision,null,!0,this.model(),"Change Precision"))),"Compare@tv-basicstudies"===this._study.metaInfo().id&&(e=this.createSeriesMinTickEditor(),t=$("
"+$.t("Override Min Tick")+"").append(e).appendTo(t),this.bindControl(new h(e,this._study.properties().minTick,null,!0,this.model(),"Change MinTick"))),this._putStudyDefaultStyles(o),o},i.prototype._putStudyDefaultStyles=function(e,t){var o,i,n,a,r,l,p=null,s=this._study;return(!s.properties().linkedToSeries||!s.properties().linkedToSeries.value())&&($.each(this._model.m_model.panes(),function(e,t){$.each(t.dataSources(),function(e,o){if(o===s)return p=t,!1})}),this._pane=p,this._pane&&(-1!==this._pane.leftPriceScale().dataSources().indexOf(this._study)?o="left":-1!==this._pane.rightPriceScale().dataSources().indexOf(this._study)?o="right":this._pane.isOverlay(this._study)&&(o="none")),o&&(i=this,n={left:$.t("Scale Left"),right:$.t("Scale Right")},i._pane.actionNoScaleIsEnabled(s)&&(n.none=$.t("Screen (No Scale)")),a=this.createKeyCombo(n).val(o).change(function(){switch(this.value){case"left":i._model.move(i._study,i._pane,i._pane.leftPriceScale());break;case"right":i._model.move(i._study,i._pane,i._pane.rightPriceScale());break;case"none":i._model.move(i._study,i._pane,null)}}),r=this.addRow(e),$(""+$.t("Scale")+"").appendTo(r).append(a),t&&t>2&&l.attr("colspan",t-1)),e)},i.prototype.widget=function(){return this._table},i.prototype._prepareFilledAreaBackground=function(e,t,o,i,n){var a,r,l,p=$('
");return s.appendTo(p),a=$(""),a.appendTo(s),this.createLabeledCell(i,a).appendTo(p).addClass("propertypage-name-label"), +r=$(""),r.appendTo(p),r.addClass("colorpicker-cell"),l=g(r),this.bindControl(new c(a,e,!0,this.model(),n+" visibility")),this.bindControl(new u(l,t,!0,this.model(),n+" color",o)),p},inherit(n,r),n.prototype.prepareLayout=function(){if(this._study.properties().linkedToSeries&&this._study.properties().linkedToSeries.value())return void(this._table=$());this._table=$()},n.prototype.widget=function(){return this._table},i._createRow_horizlines=function(e,t){var o=this.addRow(e),i=t.name.value(),n=$(""),a=this.createColorPicker(),r=m(),l=w();$("").append(n).appendTo(o),this.createLabeledCell(i,n).appendTo(o),$("").append(a).appendTo(o),$("").append(r).appendTo(o),$("").append(l.render()).appendTo(o),this.bindControl(new c(n,t.visible,!0,this.model(),"Change "+i+" visibility")),this.bindControl(new u(a,t.color,!0,this.model(),"Change "+i+" color")),this.bindControl(new h(l,t.style,parseInt,!0,this.model(),"Change "+i+" style")),this.bindControl(new C(r,t.width,!0,this.model(),"Change "+i+" width"))},i._createRow_vertlines=function(e,t){var o=this.addRow(e),i=t.name.value(),n=$(""),a=this.createColorPicker(),r=m(),l=w();$("").append(n).appendTo(o),this.createLabeledCell(i,n).appendTo(o),$("").append(a).appendTo(o),$("").append(r).appendTo(o),$("").append(l.render()).appendTo(o),this.bindControl(new c(n,t.visible,!0,this.model(),"Change "+i+" visibility")),this.bindControl(new u(a,t.color,!0,this.model(),"Change "+i+" color")),this.bindControl(new h(l,t.style,parseInt,!0,this.model(),"Change "+i+" style")),this.bindControl(new C(r,t.width,!0,this.model(),"Change "+i+" width"))},i._createRow_lines=function(e,t){var o=this.addRow(e),i=t.title.value(),n=$(""),a=this.createColorPicker(),r=m(),l=w();$("").append(n).appendTo(o),this.createLabeledCell(i,n).appendTo(o),$("").append(a).appendTo(o),$("").append(r).appendTo(o),$("").append(l.render()).appendTo(o),this.bindControl(new c(n,t.visible,!0,this.model(),"Change "+i+" visibility")),this.bindControl(new u(a,t.color,!0,this.model(),"Change "+i+" color")),this.bindControl(new h(l,t.style,parseInt,!0,this.model(),"Change "+i+" style")),this.bindControl(new C(r,t.width,!0,this.model(),"Change "+i+" width"))},i._createRow_hlines=function(e,t){var o,i,n,a=this.addRow(e),r=t.name.value(),l=$(""),p=this.createColorPicker(),s=m(),d=w(),b=$("");$("").append(l).appendTo(a),this.createLabeledCell(r,l).appendTo(a),$("").append(p).appendTo(a),$("").append(s).appendTo(a),$("").append(d.render()).appendTo(a),$("").appendTo(a),$("").append(b).appendTo(a),this.createLabeledCell("Show Price",b).appendTo(a),this.bindControl(new c(l,t.visible,!0,this.model(),"Change "+r+" visibility")),this.bindControl(new u(p,t.color,!0,this.model(),"Change "+r+" color")), +this.bindControl(new h(d,t.style,parseInt,!0,this.model(),"Change "+r+" style")),this.bindControl(new C(s,t.width,!0,this.model(),"Change "+r+" width")),this.bindControl(new c(b,t.showPrice,!0,this.model(),"Change "+r+" show price")),t.enableText.value()&&(a=this.addRow(e),$('').appendTo(a),o=$(""),$('').append(o).appendTo(a),this.createLabeledCell("Show Text",o).appendTo(a),this.bindControl(new c(o,t.showText,!0,this.model(),"Change "+r+" show text")),i=TradingView.createTextPosEditor(),$("").append(i.render()).appendTo(a),this.bindControl(new h(i,t.textPos,parseInt,!0,this.model(),"Change "+r+" text position")),n=this.createFontSizeEditor(),$('').append(n).appendTo(a),this.bindControl(new h(n,t.fontSize,parseInt,!0,this.model(),"Change "+r+" font size")))},i._createRow_hhists=function(e,t){var o,i,n,a,r,d,b=t.title.value(),C=[],g=[],w=this.addRow(e),T=f();$("").append(T).appendTo(w),this.createLabeledCell(b,T).appendTo(w),this.bindControl(new c(T,t.visible,!0,this.model(),"Change "+b+" Visibility")),w=this.addRow(e),o=$(""),o.attr("type","text"),o.addClass("ticker"),this.createLabeledCell($.t("Width (% of the Box)"),o).appendTo(w),$("").append(o).appendTo(w),i=[s(40)],i.push(l(0)),i.push(p(100)),this.bindControl(new y(o,t.percentWidth,i,!1,this.model(),"Change Percent Width")),w=this.addLabeledRow(e,"Placement"),n=L(),$("").append(n).appendTo(w),this.bindControl(new h(n,t.direction,null,!0,this.model(),"Change "+b+" Placement")),w=this.addRow(e),a=$(""),$("").append(a).appendTo(w),this.createLabeledCell($.t("Show Values"),a).appendTo(w),this.bindControl(new c(a,t.showValues,!0,this.model(),"Change "+b+" Show Values")),w=this.addRow(e),r=this.createColorPicker(),this.createLabeledCell($.t("Text Color"),r).appendTo(w),$("").append(r).appendTo(w),this.bindControl(new u(r,t.valuesColor,!0,this.model(),"Change "+b+" Text Color"));for(d in t.colors)isNumber(parseInt(d,10))&&(w=this.addRow(e),C[d]=t.titles[d].value(),g[d]=this.createColorPicker(),$("").append(C[d]).appendTo(w),$("").append(g[d]).appendTo(w),this.bindControl(new u(g[d],t.colors[d],!0,this.model(),"Change "+C[d]+" color")))},i._createRow_backgrounds=function(e,t){var o=this.addRow(e),i=$(""),n=t.name.value(),a=this.createColorPicker();$("").append(i).appendTo(o),this.createLabeledCell(n,i).appendTo(o),$("").append(a).appendTo(o),this.bindControl(new c(i,t.visible,!0,this.model(),"Change "+n+" visibility")),this.bindControl(new u(a,t.color,!0,this.model(),"Change "+n+" color",t.transparency))},i._createRow_polygons=function(e,t){var o=this.addRow(e),i=t.name.value(),n=this.createColorPicker();$("").append(i).appendTo(o),$("").append(n).appendTo(o),this.bindControl(new u(n,t.color,!0,this.model(),"Change "+i+" color"))},i._createRow_trendchannels=function(e,t){var o=this.addRow(e),i=t.name.value(),n=this.createColorPicker() +;$("").append(i).appendTo(o),$("").append(n).appendTo(o),this.bindControl(new u(n,t.color,!0,this.model(),"Change "+i+" color",t.transparency))},i._createRow_textmarks=function(e,t){var o=this.addLabeledRow(e),i=t.name.value(),n=this.createColorPicker(),a=this.createColorPicker(),r=this.createFontEditor(),l=this.createFontSizeEditor(),p=$(''),s=$('');$("").append(i).appendTo(o),"rectangle"!==t.shape.value()&&$("").append(n).appendTo(o),$("").append(a).appendTo(o),$("").append(r).appendTo(o),$("").append(l).appendTo(o),$("").append(p).appendTo(o),$("").append(s).appendTo(o),this.bindControl(new u(n,t.color,!0,this.model(),"Change "+i+" color",t.transparency)),this.bindControl(new u(a,t.fontColor,!0,this.model(),"Change "+i+" text color",t.transparency)),this.bindControl(new h(l,t.fontSize,parseInt,!0,this.model(),"Change "+i+" font size")),this.bindControl(new h(r,t.fontFamily,null,!0,this.model(),"Change "+i+" font")),this.bindControl(new c(p,t.fontBold,!0,this.model(),"Change Text Font Bold")),this.bindControl(new c(s,t.fontItalic,!0,this.model(),"Change Text Font Italic"))},i._createRow_shapemarks=function(e,t){var o=this.addRow(e),i=$(""),n=t.name.value(),a=this.createColorPicker(),r=$("");r.attr("type","text"),r.addClass("ticker"),$("").append(i).appendTo(o),this.createLabeledCell(n,i).appendTo(o),$("").append(a).appendTo(o),this.createLabeledCell("Size",r).appendTo(o),$("").append(r).appendTo(o),this.bindControl(new c(i,t.visible,!0,this.model(),"Change "+n+" visibility")),this.bindControl(new u(a,t.color,!0,this.model(),"Change "+n+" back color",t.transparency)),this.bindControl(new y(r,t.size,null,!1,this.model(),"Change size"))},t.StudyStylesPropertyPage=i,t.StudyDisplayPropertyPage=n},267:function(e,t,o){"use strict";function i(e,t,o){n.call(this,e,t,o),this.prepareLayout()}var n=o(14),a=o(10),r=a.FloatBinder,l=a.BooleanBinder,p=a.SliderBinder,s=a.ColorBinding,d=a.SimpleComboBinder,h=o(47).addColorPicker,c=o(31).createLineStyleEditor,b=o(15).createLineWidthEditor,u=o(65).createTransparencyEditor;inherit(i,n),i.prototype.addLevelEditor=function(e,t){var o,i,n,a,p,d=t||$("
");return c.appendTo(d),o=$(""),o.appendTo(c),t&&o.css("margin-left","15px"),i=$(""),i.appendTo(d),n=$(""),n.appendTo(i),n.css("width","70px"),this.bindControl(new r(n,e.coeff,!1,this.model(),"Change Pitchfork Line Coeff")),a=$(""),a.appendTo(d),p=h(a),this.bindControl(new l(o,e.visible,!0,this.model(),"Change Fib Retracement Line Visibility")),this.bindControl(new s(p,e.color,!0,this.model(),"Change Fib Retracement Line Color",0)),d},i.prototype.prepareLayout=function(){ +var e,t,o,i,n,a,r,C,y,g,w,T,_,m,f,L,v,k,S,P,x,B,E,R,F,I,A,D,W,O,V,j,z;for(this._div=$(document.createElement("div")).addClass("property-page"),e=this._linetool.properties().trendline,t=$("").appendTo(this._div).css("padding-bottom","3px"),e&&(o=$("").appendTo(t),i=$(""),$("").appendTo(t),$("").appendTo(T),$("
").append(i).appendTo(o),$("").append($.t("Trend Line")).appendTo(o),this.bindControl(new l(i,e.visible,!0,this.model(),"Change Fib Retracement Line Visibility")),n=$("").appendTo(o),a=h(n),this.bindControl(new s(a,e.color,!0,this.model(),"Change Fib Retracement Line Color",0)),r=$("").appendTo(o),C=b(),C.appendTo(r),this.bindControl(new p(C,e.linewidth,parseInt,this.model(),"Change Fib Retracement Line Width")),y=$("").appendTo(o),g=c(),g.render().appendTo(y),this.bindControl(new d(g,e.linestyle,parseInt,!0,this.model(),"Change Fib Retracement Line Style"))),w=this._linetool.properties().levelsStyle,T=$("
").appendTo(T),$(""+$.t("Levels Line")+"").appendTo(T),r=$("").appendTo(T),C=b(),C.appendTo(r),this.bindControl(new p(C,w.linewidth,parseInt,this.model(),"Change Fib Retracement Line Width")),y=$("").appendTo(T),g=c(),g.render().appendTo(y),this.bindControl(new d(g,w.linestyle,parseInt,!0,this.model(),"Change Fib Retracement Line Style")),this._table=$(document.createElement("table")).appendTo(this._div),this._table.attr("cellspacing","0"),this._table.attr("cellpadding","2"),_={},m=0;m<24;m++)f=m%8,T=_[f],L="level"+(m+1),_[f]=this.addLevelEditor(this._linetool.properties()[L],T);this.addOneColorPropertyWidget(this._table),v=$("").appendTo(this._div),k=$("").appendTo(v),this._linetool.properties().extendLines&&(S=$(""),P=$("").appendTo(v),F=$(""),P=$("
").append(P).appendTo(k)),this._linetool.properties().extendLeft&&(x=$(""),P=$("").append(P).appendTo(k)),this._linetool.properties().extendRight&&(B=$(""),P=$("").append(P).appendTo(k)),this._linetool.properties().reverse&&(E=$(""),P=$("").append(P).appendTo(k)),R=$("
").append(P).appendTo(R),I=$(""),P=$("").append(P).appendTo(R),A=$(""),P=$("").append(P).appendTo(R),D=$("").appendTo(this._div), +W=$(""),O=$(""),T=$(""),T.append("").append(W).append("").append(O),T.appendTo(D),V=$("
"+$.t("Labels")+" 
").appendTo(this._div),T=$("").appendTo(V),j=$(""),$("
").append(j).appendTo(T),this.createLabeledCell($.t("Background"),j).appendTo(T),z=u(),$("").append(z).appendTo(T),this.bindControl(new l(I,this._linetool.properties().showPrices,!0,this.model(),"Change Gann Fan Prices Visibility")),this.bindControl(new l(F,this._linetool.properties().showCoeffs,!0,this.model(),"Change Gann Fan Levels Visibility")),this.bindControl(new l(j,this._linetool.properties().fillBackground,!0,this.model(),"Change Fib Retracement Background Visibility")),this.bindControl(new p(z,this._linetool.properties().transparency,!0,this.model(),"Change Fib Retracement Background Transparency")),this._linetool.properties().extendLines&&this.bindControl(new l(S,this._linetool.properties().extendLines,!0,this.model(),"Change Fib Retracement Extend Lines")),this._linetool.properties().extendLeft&&this.bindControl(new l(x,this._linetool.properties().extendLeft,!0,this.model(),"Change Fib Retracement Extend Lines")),this._linetool.properties().extendRight&&this.bindControl(new l(B,this._linetool.properties().extendRight,!0,this.model(),"Change Fib Retracement Extend Lines")),this._linetool.properties().reverse&&this.bindControl(new l(E,this._linetool.properties().reverse,!0,this.model(),"Change Fib Retracement Reverse")),this.bindControl(new d(W,this._linetool.properties().horzLabelsAlign,null,!0,this.model(),"Change Fib Labels Horizontal Alignment")),this.bindControl(new d(O,this._linetool.properties().vertLabelsAlign,null,!0,this.model(),"Change Fib Labels Vertical Alignment")),this.bindControl(new l(A,this._linetool.properties().coeffsAsPercents,!0,this.model(),"Change Fib Retracement Coeffs As Percents")),this.loadData()},i.prototype.widget=function(){return this._div},e.exports=i},399:function(e,t,o){"use strict";function i(e,t,o){p.call(this,e,t),this._linetool=o,this.prepareLayout()}function n(e,t,o){a.call(this,e,t,o),this.prepareLayout()}var a=o(14),r=o(81),l=o(10),p=l.PropertyPage,s=l.SliderBinder,d=o(65).createTransparencyEditor,h=o(121);inherit(i,r),i.prototype.prepareLayout=function(){var e,t,o,i,n,a,l=$(''),p=$('
').data({"layout-tab":h.TabNames.inputs,"layout-tab-priority":h.TabPriority.Inputs});this._table=l.add(p),r.prototype.prepareLayoutForTable.call(this,l),e=$("").appendTo(p),$("").appendTo(p),$("
").append($.t("Avg HL in minticks")).appendTo(e),t=$("").appendTo(e), +o=$("").addClass("ticker").appendTo(t),e=$("
").append($.t("Variance")).appendTo(e),i=$("").appendTo(e),n=$("").addClass("ticker").appendTo(i),a=this._linetool.properties(),this.bindInteger(o,a.averageHL,$.t("Change Average HL value"),1,5e4),this.bindInteger(n,a.variance,$.t("Change Variance value"),1,100),this.loadData()},i.prototype.widget=function(){return this._table},inherit(n,a),n.prototype.prepareLayout=function(){var e,t,o,i,n,a,r,l,p,h,c;this._widget=$("
"),e=$("").appendTo(this._widget),t=this.createColorPicker(),o=this.createColorPicker(),i=this.createColorPicker(),n=this.createColorPicker(),a=this.createColorPicker(),r=$("").data("hides",$(n).add(a)),l=$("").data("hides",$(i)),p=this.addLabeledRow(e,$.t("Candles")),$("
").prependTo(p),$("").append(t).appendTo(p),$("").append(o).appendTo(p),p=this.addLabeledRow(e,$.t("Borders"),r),$("").append(r).prependTo(p),$("").append(n).appendTo(p),$("").append(a).appendTo(p),$("").appendTo(p),p=this.addLabeledRow(e,$.t("Wick"),l),$("").append(l).prependTo(p),$("").append(i).appendTo(p),$("").appendTo(p),e=$("").appendTo(this._widget),p=$("").appendTo(e),$("").appendTo(this._table),$('").appendTo(this._table),$('").appendTo(this._table),$("{{#columns}}{{/columns}}',tvDataTableCell:'', -tvWidgetChartLikeButton:'
'+i(907)+'
'}},function(t,e,i){"use strict";function o(t){for(var i=0;i'},,,,,,,,,,,,,,,,,,,,,function(t,e,i){"use strict";function o(t){if(t)return function(e,i,o){function n(e,i){return i?t[e](a,i):t[e](a)}var s,r,a=$(this);return"get"===e?(s=i,"function"==typeof t[s]?n(s,o):t[s]):t[e]?a.each(function(){return n(e,r)}):a}}function n(t,e){function i(t,e,i){return void 0===i?t[e]():t[e](i)}if(t&&e)return t=""+t,function(o,n,a){var l,h,c;return"get"===o?l=n:(h=n,"object"===(void 0===o?"undefined":s(o))&&void 0===n?(h=o,o="init"):"string"!=typeof o&&(o="init")),"getInstance"===o?$(this).eq(0).data(t):"get"===o?(c=$(this).eq(0).data(t),c?"function"==typeof c[l]?i(c,l,a):c[l]:void console.warn("[Block Plugin] Trying to get prop or execute method of "+t+" but it has not been inited")):$(this).each(function(){var n=$(this),s=n.data(t);void 0===s?(s=void 0===h?e(n):e(n,h),n.data(t,s)):"init"===o&&(console.warn("[ Block Plugin: "+t+" ] - Try to init but plugin is already inited. Trace:"),console.trace()),"init"!==o&&("function"==typeof s[o]?i(s,o,h):r.logError("[Block Plugin] "+t+" does not support command "+o))})}}var s="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},r=i(12).getLogger("CommonUI.CreateTVBlockPlugin");t.exports.createTvBlockPlugin=o,t.exports.createTvBlockWithInstance=n},function(t,e,i){(function(o){"use strict";function n(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}var s,r,a,l,h,c;Object.defineProperty(e,"__esModule",{value:!0}),s=function(){function t(t,e){var i,o;for(i=0;i{{#labelLeft}}{{labelLeft}}{{/labelLeft}}{{> inputWrapper }}{{#labelRight}}{{labelRight}}{{/labelRight}}{{/hasLabel}}{{^hasLabel}}{{> inputWrapper }}{{/hasLabel}}',inputWrapper:'<{{ tag }} class="{{ customClass }}{{#disabled}} i-disabled{{/disabled}}">{{^hasCheckbox}}{{> checkbox }}{{/hasCheckbox}}{{> box }}{{> ripple }}',checkbox:'',checkboxClass:"{{ customClass }}__input",box:''+i(382)+"",ripple:''},h="i-inited",c=function(){function t(e){var i,o=e.customClass,s=void 0===o?"tv-control-checkbox":o,r=e.$checkbox,l=e.tag,c=e.id,d=e.name,p=e.checked,u=e.disabled,_=e.labelLeft,f=e.labelRight,m=e.labelAddClass,g=e.boxAddClass;if(n(this,t),this.$el=null,void 0===l&&(l=_||f?"span":"label"),i=r instanceof $&&!!r.length){if(!r.is("input[type=checkbox]"))return void a.logError("`$checkbox` need to be input[type=checkbox]");if(r.hasClass(h))return;this._setInputId(r,c),this._setInputClass(r,s),this._setInputName(r,d),this._setInputChecked(r,p),this._setInputDisabled(r,u),p=!!r.prop("checked"),u=!!r.attr("disabled")}this.$el=this.render({$checkbox:r,hasCheckbox:i,customClass:s,tag:l,id:c,name:d,checked:p,disabled:u,labelLeft:_,labelRight:f,hasLabel:_||f,labelAddClass:m,boxAddClass:g}),this.$checkbox=i?r:this.$el.find("input[type=checkbox]")}return s(t,[{key:"_setInputId",value:function(t,e){void 0!==e&&t.attr("id",e)}},{key:"_setInputClass",value:function(t,e){var i=o.render(l.checkboxClass,{customClass:e});t.addClass(i)}},{key:"_setInputName",value:function(t,e){void 0!==e&&t.attr("name",e)}},{key:"_setInputChecked",value:function(t,e){void 0!==e&&t.prop("checked",!!e)}},{key:"_setInputDisabled",value:function(t,e){void 0!==e&&(e?t.setAttribute("disabled","disabled"):t.removeAttr("disabled"))}},{key:"render",value:function(t){var e,i=t.$checkbox,n=$(o.render(l.labelWrapper,t,l));return t.hasCheckbox&&(n.insertBefore(i),e=n.find("."+t.customClass).andSelf().filter("."+t.customClass).eq(0),e.prepend(i.detach()),i.addClass(h)),n}},{key:"checked",set:function(t){this._setInputChecked(this.$checkbox,!!t)},get:function(){return!!this.$checkbox.prop("checked")}}]),t}(),$.fn.tvControlCheckbox=(0,r.createTvBlockWithInstance)("tv-control-checkbox",function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return new c(TradingView.mergeObj(e,{$checkbox:t}))}),e.default=c, -t.exports=e.default}).call(e,i(30))},function(t,e,i){(function(o,n){"use strict";function s(){var t,e,i=l.width();for(c.width=i,c.height=l.height(),t=0;tt.height()},breakpoints:r.breakpoints,widgetbarBreakpoint:1064,setFixedBodyState:function(t){var e,i,o;t&&1==++h?("hidden"!==$(document.body).css("overflow").toLowerCase()&&document.body.scrollHeight>document.body.offsetHeight&&($(".widgetbar-wrap").css("right",c.getScrollbarWidth()),a.css("padding-right",parseInt(a.css("padding-right").replace("px",""))+c.getScrollbarWidth()+"px").data("wasScroll",!0)),!TradingView.isMobile.any()&&c.isMobileSafari?a.addClass("i-no-scroll-safari"):a.css("top",-l.scrollTop()).addClass("i-no-scroll")):!t&&h>0&&0==--h&&(!TradingView.isMobile.any()&&c.isMobileSafari?a.removeClass("i-no-scroll-safari"):(e=-parseInt(a.css("top").replace("px","")),a.removeClass("i-no-scroll").css("top",""),l.scrollTop(e)),a.data("wasScroll")&&(i=a.get(0),$(".widgetbar-wrap").css("right",0),o=$(".widgetbar-wrap").width()||0,i.scrollHeight<=i.clientHeight&&(o-=c.getScrollbarWidth()),a.css("padding-right",(o<0?0:o)+"px").data("wasScroll",void 0)))}},d=Object.keys(c.breakpoints).sort(function(t,e){return c.breakpoints[t]-c.breakpoints[e]}),o.extend(c,n),s(),$(s),l.on("resize",s),e.default=c,t.exports=e.default}).call(e,i(130),i(166))},function(t,e){"use strict";t.exports={text:{name:"LineToolText",supportsText:!0},anchored_text:{name:"LineToolTextAbsolute",supportsText:!0},note:{name:"LineToolNote",supportsText:!0},anchored_note:{name:"LineToolNoteAbsolute",supportsText:!0},callout:{name:"LineToolCallout",supportsText:!0},balloon:{name:"LineToolBalloon",supportsText:!0},arrow_up:{name:"LineToolArrowMarkUp",supportsText:!0},arrow_down:{name:"LineToolArrowMarkDown",supportsText:!0},arrow_left:{name:"LineToolArrowMarkLeft",supportsText:!0},arrow_right:{name:"LineToolArrowMarkRight",supportsText:!0},price_label:{name:"LineToolPriceLabel"},flag:{name:"LineToolFlagMark"},vertical_line:{name:"LineToolVertLine"},horizontal_line:{name:"LineToolHorzLine"},horizontal_ray:{name:"LineToolHorzRay"},trend_line:{name:"LineToolTrendLine"},trend_angle:{name:"LineToolTrendAngle"},arrow:{name:"LineToolArrow"},ray:{name:"LineToolRay"}, -extended:{name:"LineToolExtended"},parallel_channel:{name:"LineToolParallelChannel"},disjoint_angle:{name:"LineToolDisjointAngle"},flat_bottom:{name:"LineToolFlatBottom"},pitchfork:{name:"LineToolPitchfork"},schiff_pitchfork_modified:{name:"LineToolSchiffPitchfork"},schiff_pitchfork:{name:"LineToolSchiffPitchfork2"},inside_pitchfork:{name:"LineToolInsidePitchfork"},pitchfan:{name:"LineToolPitchfan"},gannbox:{name:"LineToolGannSquare"},gannbox_square:{name:"LineToolGannComplex"},gannbox_fan:{name:"LineToolGannFan"},fib_retracement:{name:"LineToolFibRetracement"},fib_trend_ext:{name:"LineToolTrendBasedFibExtension"},fib_speed_resist_fan:{name:"LineToolFibSpeedResistanceFan"},fib_timezone:{name:"LineToolFibTimeZone"},fib_trend_time:{name:"LineToolTrendBasedFibTime"},fib_circles:{name:"LineToolFibCircles"},fib_spiral:{name:"LineToolFibSpiral"},fib_speed_resist_arcs:{name:"LineToolFibSpeedResistanceArcs"},fib_wedge:{name:"LineToolFibWedge"},fib_channel:{name:"LineToolFibChannel"},xabcd_pattern:{name:"LineTool5PointsPattern"},cypher_pattern:{name:"LineToolCypherPattern"},abcd_pattern:{name:"LineToolABCD"},triangle_pattern:{name:"LineToolTrianglePattern"},"3divers_pattern":{name:"LineToolThreeDrivers"},head_and_shoulders:{name:"LineToolHeadAndShoulders"},elliott_impulse_wave:{name:"LineToolElliottImpulse"},elliott_triangle_wave:{name:"LineToolElliottTriangle"},elliott_triple_combo:{name:"LineToolElliottTripleCombo"},elliott_correction:{name:"LineToolElliottCorrection"},elliott_double_combo:{name:"LineToolElliottDoubleCombo"},cyclic_lines:{name:"LineToolCircleLines"},time_cycles:{name:"LineToolTimeCycles"},sine_line:{name:"LineToolSineLine"},long_position:{name:"LineToolRiskRewardLong"},short_position:{name:"LineToolRiskRewardShort"},forecast:{name:"LineToolPrediction"},date_range:{name:"LineToolDateRange"},price_range:{name:"LineToolPriceRange"},date_and_price_range:{name:"LineToolDateAndPriceRange"},bars_pattern:{name:"LineToolBarsPattern"},ghost_feed:{name:"LineToolGhostFeed"},projection:{name:"LineToolProjection"},rectangle:{name:"LineToolRectangle"},rotated_rectangle:{name:"LineToolRotatedRectangle"},ellipse:{name:"LineToolEllipse"},triangle:{name:"LineToolTriangle"},polyline:{name:"LineToolPolyline"},curve:{name:"LineToolBezierQuadro"},double_curve:{name:"LineToolBezierCubic"},arc:{name:"LineToolArc"},icon:{name:"LineToolIcon"}}},function(t,e,i){"use strict";function o(t){this._options=t||{},this._setInput(),this._caption=$('').html(" "),this._helpTooltipTrigger=$('').text("?").attr("title",$.t("Type the interval number for munute charts (i.e. 5 if it is going to be a five minute chart). Or number plus letter for H (Hourly), D (Daily), W (Weekly), M (Monthly) intervals (i.e. D or 2H)")),this._dialogTitle=$.t("Change Interval")}var n=i(72),s=i(77);o.prototype._setInput=function(){this._input=$(''), -this._input.on("keypress",this._handleInput.bind(this)).on("input",function(){this._validate(),this._updateCaption()}.bind(this)).on("blur",function(){setTimeout(this._submit.bind(this),0)}.bind(this))},o.prototype._validate=function(){var t=this._input.val();this._parsed=s.parseIntervalValue(t),this._valid=!this._parsed.error,this._supported=!this._parsed.error&&s.intervalIsSupported(t),!this._supported||this._parsed.unit&&"H"!==this._parsed.unit||this._parsed.qty*("H"===this._parsed.unit?60:1)>1440&&(this._supported=!1)},o.prototype._updateCaption=function(){var t,e,i;this._valid&&this._supported?(e=this._parsed.qty||1,i=this._parsed.unit?{H:"hour",D:"day",W:"week",M:"month",S:"second"}[this._parsed.unit]:"minute",t=e+" "+$.t(i,{count:e}),this._input.add(this._caption).removeClass("error")):(t=this._parsed.error?" ":$.t("Not applicable"),this._input.add(this._caption).addClass("error")),this._caption.html(t)},o.prototype._handleInput=function(t){if(13===t.which)return void this._submit();t.ctrlKey||t.metaKey||!t.charCode||!t.which||t.which<=32||s.isIntervalChar(String.fromCharCode(t.charCode))||t.preventDefault()},o.prototype._submit=function(){var t,e;TVDialogs.isOpen(this._dialogTitle)&&(this._valid&&this._supported&&(t=s.sanitizeIntervalValue(this._input.val()),e=n.interval.value(),t&&e!==t&&"function"==typeof this._options.callback&&this._options.callback(t)),TVDialogs.destroy(this._dialogTitle))},o.prototype._setInitialValue=function(t){var e,i;t=t||this._options.initialValue,e="",i=!1,t&&","!==t?e=s.sanitizeIntervalValue(t)||"":(t=n.interval.value(),e=t,i=!0),this._input.val(e),i&&this._input.select()},o.prototype.isValid=function(){return!!this._valid},o.prototype.show=function(t){var e=TVDialogs.createDialog(this._dialogTitle,{hideCloseCross:!0,addClass:"change-interval-dialog"}),i=e.find("._tv-dialog-content");return e.css("min-width",0),i.css("min-width",0).mousedown(function(t){this._input.is(t.target)||t.preventDefault()}.bind(this)).append(this._input.add(this._caption).add(this._helpTooltipTrigger)),TVDialogs.applyHandlers(e),TVDialogs.positionDialog(e),this._setInitialValue(t),this._validate(),this._updateCaption(),e},t.exports=o},function(t,e,i){(function(e){"use strict";function o(t){var i,o,n,s,r,a,l,h,c,d,p,_,m,g,y,b,w,C,x,P,L,k=this;this._guid=H(),this._startSpinner(t.jqParent),S.init(),i=this,S.tool.subscribe(function(t){var e,o,n,s;i._model&&(e=t,i._model.model().setCurrentTool(e),TradingView.isMobile.any()&&(o=i._paneWidgets[0],v.isLineTool(e)&&"LineToolBrush"!==e?(n=.5*i._model.model().timeScale().width(),s=.5*o._state.defaultPriceScale().height(),i._model.model().setCurrentPosition(n,s,o._state),o._updateTooltip(n,s)):o._hideTooltip()),i._model&&TradingView.isMobile.any()&&i._model.model().crossHairSource().updateAllViews())}),o=function(t,e,i){var o,n=e.mainSeries().syncModel(),s=t.mainSeries().syncModel(),r=i;return n&&s&&(o=t._createSyncPoint(n,s),r=o.sourceTimeToTargetTime(i)),t.timeScale().points().roughIndex(r,s&&s.distance.bind(s))},n=function(t,e,i){ -var o,n=e.mainSeries().syncModel(),s=i.mainSeries().syncModel(),r=n&&s&&i._createSyncPoint(n,s);return r?(o=e.timeScale(),t.map(function(t){var e=$.extend({},t),a=o.timePointToIndex(e.time_t),l=t.timeStamp||o.points().roughTime(a+e.offset,n.projectTime.bind(n));return e.time_t=r.sourceTimeToTargetTime(l),e.index=i.timeScale().points().roughIndex(e.time_t,s&&s.distance.bind(s)),e.offset=0,e})):t},S.createdLineTool.subscribe(null,function(t){var e,i,n=k._model.model();t.model!==n&&k._model.model().mainSeries().symbol()===t.symbol&&(e=n.paneForSource(k._model.model().mainSeries()),i={index:o(n,t.model,t.point.timeStamp),price:t.point.price},k._model.createLineTool(e,i,t.linetool,t.properties,t.linkKey))}),S.continuedLineTool.subscribe(null,function(t){var e,i,s,r=k._model.model();t.model!==r&&(e={index:o(r,t.model,t.point.timeStamp),price:t.point.price},(i=k._model.lineBeingCreated())&&k._model.model().coninueCreatingLine(e,t.envState,!!t.finalState)&&t.finalState&&(s=$.extend({},t.finalState),s.points=n(t.finalState.points,t.model,r),i.restoreExternalPoints(s)))}),S.cancelledLineTool.subscribe(null,function(t){var e=k._model.model();t.model!==e&&k._model.model().cancelCreatingLine()}),S.startedMovingLineTool.subscribe(null,function(t){var e,i,n=k._model.model();t.model!==n&&k._model.model().mainSeries().symbol()===t.symbol&&(e=n.dataSources().filter(function(e){return e.linkKey===t.linkKey})[0])&&e.isActualSymbol()&&(i={index:o(n,t.model,t.point.timeStamp),price:t.point.price},k._model.model().startMovingSource(e,i))}),S.movedLineTool.subscribe(null,function(t){var e,i=k._model.model();t.model!==i&&i.sourceBeingMoved()&&i.sourceBeingMoved().linkKey===t.linkKey&&(e={index:o(i,t.model,t.point.timeStamp),price:t.point.price},k._model.model().moveSource(e))}),S.finishedMovingLineTool.subscribe(null,function(t){var e,i,o=k._model.model();t.model!==o&&(e=o.sourceBeingMoved())&&(k._model.model().endMovingSource(!!t.finalState),t.finalState&&(i=$.extend({},t.finalState),i.points=n(t.finalState.points,t.model,o),e.restoreExternalPoints(i)))}),S.startedChangingLineTool.subscribe(null,function(t){var e,i,n=k._model.model();t.model!==n&&k._model.model().mainSeries().symbol()===t.symbol&&(e=n.dataSources().filter(function(e){return e.linkKey===t.linkKey})[0])&&e.isActualSymbol()&&(i={index:o(n,t.model,t.point.timeStamp),price:t.point.price},k._model.model().startChangingLinetool(e,i,t.pointIndex,t.envState))}),S.changedLineTool.subscribe(null,function(t){var e,i=k._model.model();t.model!==i&&i.lineBeingEdited()&&i.lineBeingEdited().linkKey===t.linkKey&&(e={index:o(i,t.model,t.point.timeStamp),price:t.point.price},k._model.model().changeLinePoint(e,t.envState))}),S.finishedChangingLineTool.subscribe(null,function(t){var e,i,o=k._model.model();t.model!==o&&(e=o.dataSources().filter(function(e){return e.linkKey===t.linkKey})[0],o.lineBeingEdited()&&k._model.model().endChangingLinetool(!!t.finalState),e&&e.isActualSymbol()&&t.finalState&&(i=$.extend({},t.finalState),i.points=n(t.finalState.points,t.model,o),e.restoreExternalPoints(i))) -}),S.removedLineTool.subscribe(null,function(t){var e,i=k._model.model();t.model!==i&&(e=i.dataSources().filter(function(e){return e.linkKey===t.linkKey})[0])&&k._model.model().removeSource(e)}),S.finishedLineTool.subscribe(null,function(t){var e=k._model.model();t.model!==e&&e.dataSources().filter(function(e){return e.linkKey===t.linkKey})[0]&&k._model.model().finishLineTool()}),S.changedLineStyle.subscribe(null,function(t){var e,i=k._model.model();t.model!==i&&(e=i.dataSources().filter(function(e){return e.linkKey===t.linkKey})[0])&&(e.properties().merge(t.state),e.propertiesChanged())}),S.restoredLineToolState.subscribe(null,function(t){var e,i,o=k._model.model();t.model!==o&&(e=o.dataSources().filter(function(e){return e.linkKey===t.linkKey})[0])&&(i=$.extend({},t.state),i.points=n(t.state.points,t.model,o),i.indexes=i.points.map(function(t){return{index:t.index,price:t.price}}),o.restoreLineToolState(e,i))}),S.restoredLineTool.subscribe(null,function(t){var e=k._model.model();t.model!==e&&e.restoreSource(t.state.restorePane,t.state.paneIndex,t.state.paneState,t.state.sourceState,t.state.priceScaleName)}),S.copiedLineTool.subscribe(null,function(t){var e,i,o,s,r,a=k._model.model();if(t.model!==a&&k._model.model().mainSeries().symbol()===t.symbol){if(t.model.mainSeries().syncModel(),a.mainSeries().syncModel(),e=a.paneForSource(k._model.model().mainSeries()),i=n(t.points,t.model,a),o=i[0],s=a.createLineTool(e,o,t.linetool,null,t.linkKey),a.lineBeingCreated())for(r=1;r0?this.model().zoomIn(a,l):o<0&&this.model().zoomOut(a,l),i&&this.model().scrollChart(-80*i),!1}.bind(this)),this._initBarsMarksSources(),this.setAutoScaleOnSymbolChange(),this.readOnly()||this._hideSymbolSearch||E.registerDialogKeypressHandler(this), -this.model().timeScale().onScroll().subscribe(this,function(){this._onScroll.fire()}),this._inited=!0}.bind(this),e=this._makeDefaultModel(),void 0===e?t():e.then(t)},o.prototype._checkObsoleteTimezone=function(){var t=this._properties.timezone.value();V(t)||this._properties.timezone.setValue(n(t))},o.prototype._initBarsMarksSources=function(){var t=this;this.withModel(this,function(){this.model().barsMarksSources().forEach(function(e){e.onNeedRepaint.subscribe(t,t.paint)})})},o.prototype.initESDTimelineWidget=function(){new ESDTimelineWidget(this)},o.prototype.applyAutoScaleOnNewSymbol=function(){(!this.model().mainSeries()instanceof u||!this.model().mainSeries().properties().lockScale.value())&&this.model().mainSeries().priceScale().setAutoScale(!0)},o.prototype.setAutoScaleOnSymbolChange=function(){this.withModel(this,function(){this.model().mainSeries().properties().symbol.listeners().subscribe(this,function(){this.applyAutoScaleOnNewSymbol()})})},o.prototype.initColors=function(){this._properties.paneProperties.background.listeners().subscribe(this,o.prototype.setBackgroundColor),this._properties.paneProperties.vertGridProperties.color.listeners().subscribe(this,o.prototype.redrawPanes),this._properties.paneProperties.horzGridProperties.color.listeners().subscribe(this,o.prototype.redrawPanes),this._properties.scalesProperties.lineColor.listeners().subscribe(this,o.prototype.setScaleLineColor),this._properties.scalesProperties.textColor.listeners().subscribe(this,o.prototype.setScaleTextColor)},o.prototype.paneWidgets=function(){return this._paneWidgets},o.prototype.paneByCanvas=function(t){for(var e=0;e',actions:[{name:"open-manage-drawings",type:"primary",text:$.t("Open Manage Drawings"),method:"close"},{name:"not-now",type:"default",text:$.t("Not Now"),method:"close"}]}),s.on("action:open-manage-drawings",function(){i.e(0,function(t){new(0,i(300).ObjectTreeDialog)({chartWidget:this,activeTab:1},this._model).show()}.bind(this))}.bind(this)),o._linetoolWarningDialogShown=!0,s.on("afterClose",function(){o._linetoolWarningDialogShown=!1}),s.open()}},o.prototype.redrawPanes=function(t){for(var e=0;e'),this.$shield=$('
').appendTo(this.$element),this.$element.appendTo(e),this._showed=!1,this._cw.withModel(this,this._connectToModel)},o.LoadingScreen.prototype._connectToModel=function(){this._cw.model().mainSeries().onDataLoaded().subscribe(this,function(t){switch(t.method){case"symbol_error":t.params[1]!==u.PERMISSION_DENIED&&this.hide();break;case"series_error":f.enabled("hide_loading_screen_on_series_error")&&this.hide();break;case"series_completed":this.hide()}})},o.LoadingScreen.prototype.show=function(){return this._cw._inLoadingState=!0,this._showed||this._cw.isDetached||(this._showed=!0,this._show()),$.Deferred().resolve()},o.LoadingScreen.prototype._show=function(){var t=this._cw.properties().paneProperties.background.value();this.$shield.css("background",t),this.$element.addClass("fade")},o.LoadingScreen.prototype.hide=function(){delete this._cw._inLoadingState,this._showed&&this._hide()},o.LoadingScreen.prototype._hide=function(){this._showed=!1,this.$element.removeClass("fade")},o.LoadingScreen.prototype.$canvas=null,o.LoadingScreen.prototype.context=null,o.prototype._makeMasterTable=function(){this._jqMainTable=$(document.createElement("table")),this._jqMainTable.appendTo(this._jqMainDiv),this._jqMainTable.addClass("chart-markup-table"),this._jqMainTable.attr("cellpading","0"),this._jqMainTable.attr("cellspacing","0")},o.prototype.unsetActivePaneWidget=function(){this.activePaneWidget=!1},o.prototype.setActivePaneWidget=function(t){this.activePaneWidget=t},o.prototype.isMaximizedPane=function(){return!!this._maximizedPaneWidget},o.prototype.toggleMaximizePane=function(t){if(!(this._paneWidgets.length<2)){this._maximizedPaneWidget?(this._maximizedPaneWidget.state().setMaximized(!1),this._maximizedPaneWidget=null,this._paneSeparators.forEach(function(t){t.show()})):(this._maximizedPaneWidget=t,this._maximizedPaneWidget.state().setMaximized(!0),this._paneSeparators.forEach(function(t){t.hide()}));for(var e=this._paneWidgets.length;e--;)this._paneWidgets[e].updateControls();this._adjustSize(),this.updateIndicatorImagePosition()}},o.prototype._makePaneWidgetsAndSeparators=function(){var t,e,i,o,n=this._model.panes(),s=n.length,l=this._paneWidgets.length;for(t=s;t0&&(i=new a(this,t-1,t),this._paneSeparators.push(i), -this._timeAxisWidget?i.jqRow.insertBefore(this._timeAxisWidget.jqRow):i.jqRow.appendTo(this._jqMainTable)),this._timeAxisWidget?e.jqRow.insertBefore(this._timeAxisWidget.jqRow):e.jqRow.appendTo(this._jqMainTable);for(t=0;t'),o.css({float:"none","box-sizing":"border-box",width:"100%"}),n=null,s=B({title:i||$.t("Add Symbol"),width:400,actions:[{name:"apply",text:$.t("Apply"),type:"primary"}],content:o,isClickOutFn:function(t){if(n&&(t.target===n[0]||n[0].contains(t.target)))return!1}}),r=function(i){var o={inputs:{symbol:i}};this.model().insertStudy(t,o,!1,e),s.close()},a=E.bindToInput(o,{callback:r.bind(this),onPopupOpen:function(t){t.css("z-index",s.zIndex),n=t},onPopupClose:function(){n=null}}),s.on("action:apply",function(){a.acceptTypeIn()}),s.open()):this.hasConfirmInputs(t)?(i=defaults("study_"+t.id).description,q.show(this,t,{title:i,callback:function(i){this.model().insertStudy(t,i,!1,e)}.bind(this)})):m.isPointsBasedStudy(t.id)?(l=m.lineToolNameForPointsBasedStudy(t.id),S.tool.setValue(l)):(h="Volume@tv-basicstudies"===t.id,this.insertStudy(t.id,!0,h,null,null,e))},o.prototype.hasConfirmInputs=function(t){var e,i,o=t.inputs;if(void 0===o)return!1;for(e=0;e0;)for(e=this._content.panes[t].sources,i=e.length;i-- >0;)if("MainSeries"===e[i].type)return e[i].state},o.prototype.updateSeriesControlUI=function(){this._seriesControlWidget&&this._seriesControlWidget.updateUI()},o.prototype.tickSeriesControlClock=function(){this._seriesControlWidget&&this._seriesControlWidget.tickClock()},o.prototype.resizeSeriesControlUI=function(){this._seriesControlWidget&&this._seriesControlWidget.resizeUI()},o.prototype.updateUndoRedo=function(){l.undoStack().isEmpty()?this.actions().undo.setEnabled(!1):this.actions().undo.setEnabled(!0),l.redoStack().isEmpty()?this.actions().redo.setEnabled(!1):this.actions().redo.setEnabled(!0)},o.prototype.createSessionBreaksActions=function(t){var e,o=i(5).ActionBinder,n=this,s=function(){e=new b({text:$.t("Session Breaks"),checkable:!0}), -e.binder=new o(e,n.model().mainSeries().sessionsStudy().properties().graphics.vertlines.sessBreaks.visible,n.model(),"Session Breaks"),n._actions.sessionBreaks=e};n.model().mainSeries().sessionsStudy()?s():n.model().mainSeries().onSessionsStudyCreated().subscribe(n,function(){s()})},o.prototype.updateActionForIntradayOnly=function(t){!t||!t instanceof b||t.setEnabled(!!this.model().mainSeries().isIntradayInterval())},o.prototype.withModel=function(t,e){this.model()?e.call(t):this.modelCreated().subscribe(t,e,!0)},o.prototype.containsVolume=function(){return this.model().dataSources().some(function(t){return t instanceof m&&"Volume"===t.metaInfo().shortId})},o.prototype.containsStudyByPredicate=function(t){return!!this._model&&this._model.dataSources().some(function(e){if(!(e instanceof m))return!1;var i=e.metaInfo();return t(i)})},o.prototype.containsStudy=function(t){return this.containsStudyByPredicate(function(e){return e.id===t||e.fullId===t})},o.prototype.containsSessions=function(){return this.model().dataSources().some(function(t){return t instanceof m&&"Sessions"===t.metaInfo().shortId})},o.prototype.isSmall=function(t){return this.constructor.isSmall(this._jqParent)},o.isSmall=function(t){return t.width()<550||t.height()<300},o.prototype.onWidget=function(){return this._onWidget},o.prototype.onCmeWidget=function(){return"cme"===this.widgetCustomer()},o.prototype.widgetCustomer=function(){return this._widgetCustomer},o.prototype.resize=function(){this._resizeHandler&&this._jqMainDiv&&this._resizeHandler()},o.prototype.chartSession=function(){return this._chartSession},o.prototype.maxLhsPriceAxisWidth=0,o.prototype.maxRhsPriceAxisWidth=0,o.prototype.GUIResetScales=function(){z("GUI","Reset Scales"),this.model()&&(this._containsData&&this.model().chartModel().restoreAxisState(this._content),this.model().resetScales())},o.prototype.onLineCancelled=function(){S.resetToCursor()},o.prototype.createIndicatorImage=function(){var t=this;this.indicatorImage=this._jqParent.find(".chart-status-picture"),0===this.indicatorImage.length?this.indicatorImage=$('').appendTo(this._jqParent):this.indicatorImage.html(""),f.enabled("display_market_status")&&(this.indicatorText=$(''),this.indicatorText.appendTo(this.indicatorImage),this.indicatorDot=new G({el:this.indicatorText.find(".js-market-status")[0],classSuffix:"--for-chart"}),f.enabled("display_data_mode")&&($('').appendTo(this.indicatorText),this.dataModeIndicator=new K({el:this.indicatorText.find(".js-data-mode")[0],classSuffix:"--for-chart"}))),t.withModel(null,function(){var e=t._model.mainSeries();e.onStatusChanged().subscribe(null,t.updateIndicatorImage.bind(t)),e.marketStatus.subscribe(t.updateIndicatorImage.bind(t)),t.updateIndicatorImage(),t.checkCompactMode(),t._model.onRearrangePanes().subscribe(null,function(){ -t.resetIndicatorSize(),t.resizeIndicator()})}),t.rhsPriceAxisWidthChanged.subscribe(t,t.updateIndicatorImagePosition),t.updateIndicatorImagePosition()},o.prototype.updateIndicatorImage=function(){var t,e,i,o=this,n=this._model;n&&(t=n.mainSeries(),e=t.status(),i=t.quoteData?t.quoteData.update_mode_seconds:null,o._updateDataAndMarketStatus(t.marketStatus.value(),e,i))},o.prototype.checkCompactMode=function(){this._jqMainDiv&&this._jqMainDiv.toggleClass("i-compact",this._jqMainDiv.width()<=400),this.indicatorImage&&(this._indicatorWidth=this.indicatorImage.outerWidth())},o.prototype._statusDetails=function(){return this.__statusDetails||(this.__statusDetails={},this.__statusDetails[u.STATUS_SNAPSHOT]={className:"snapshot",text:"",showBatsWarn:!1,priority:1},this.__statusDetails[u.STATUS_LOADING]=this.__statusDetails[u.STATUS_RESOLVING]={className:"loading",text:$.t("loading data"),priority:100},this.__statusDetails[u.STATUS_INVALID_SYMBOL]={className:"invalid",text:$.t("invalid symbol"),showBatsWarn:!1,priority:50},this.__statusDetails[u.STATUS_NO_BARS]={className:"invalid",text:$.t("instrument is not allowed"),showBatsWarn:!1,priority:50},this.__statusDetails[u.STATUS_OFFLINE]={className:"connecting",text:$.t("retrying"),priority:1},this.__statusDetails[u.STATUS_EOD]=this.__statusDetails[u.STATUS_PULSE]={className:"eod",text:$.t("eod"),priority:1},this.__statusDetails[u.STATUS_DELAYED]={className:"delayed",title:$.t("Quotes are delayed by 10 min and updated every 30 seconds"),text:$.t("eod delayed"),priority:1},this.__statusDetails[u.STATUS_DELAYED_STREAMING]={className:"delayed-streaming",text:$.t("delayed"),priority:1},this.__statusDetails[u.STATUS_READY]=this.__statusDetails.defaults={className:"open",text:$.t("open"),priority:-1},this.__statusDetails.pre_market={text:$.t("pre-market"),className:"pre-market",priority:0},this.__statusDetails.post_market={text:$.t("post-market"),className:"post-market",priority:0},this.__statusDetails.out_of_session={text:$.t("closed"),className:"out-of-session",priority:10},this.__statusDetails.market=this.__statusDetails.defaults),this.__statusDetails},o.prototype._updateDataAndMarketStatus=function(t,e){var i,o;if(void 0!==this.indicatorText){switch(e){case u.STATUS_LOADING:case u.STATUS_RESOLVING:i="loading",this.indicatorDot.setStatus("loading");break;case u.STATUS_INVALID_SYMBOL:i="invalid",this.indicatorDot.reset();break;case u.STATUS_NO_BARS:i="forbidden";break;case u.STATUS_DELAYED:i="delayed";break;case u.STATUS_DELAYED_STREAMING:i="delayed_streaming";break;case u.STATUS_EOD:case u.STATUS_PULSE:i="endofday";break;case u.STATUS_OFFLINE:i="connecting";break;case u.STATUS_SNAPSHOT:i="snapshot";break;case u.STATUS_READY:i="realtime";break;default:i=e,X.logWarn("unhandled data mode "+i)}f.enabled("display_data_mode")&&this.dataModeIndicator.setMode(i),o=["loading","invalid"],!o.includes(i)&&t?this.indicatorDot.setStatus(t,!0):"invalid"===i&&this.indicatorDot.setStatus("invalid",!0),this.resizeIndicator()}},o.prototype.resetIndicatorSize=function(){ -if(this._paneWidgets[0]&&this._paneWidgets[0].legendWidget)for(var t=0;t650?(this.indicatorDot.setTooltipEnabled(!1),this.indicatorDot.disableShortMode()):i>550?(this.indicatorDot.setTooltipEnabled(!1),this.indicatorDot.disableShortMode()):(this.indicatorDot.setTooltipEnabled(!1),this.indicatorDot.enableShortMode())),f.enabled("display_data_mode")&&this.dataModeIndicator&&(i>650?(this.dataModeIndicator.setTooltipEnabled(!1),this.dataModeIndicator.disableShortMode()):i>550?(this.dataModeIndicator.setTooltipEnabled(!0),this.dataModeIndicator.enableShortMode()):(this.dataModeIndicator.setTooltipEnabled(!1),this.dataModeIndicator.enableShortMode()))},o.prototype._resultingStatusRecord=function(t,e){var i,o;return t?(i=this._statusDetails()[t],o=this._statusDetails()[e],o||(o=this._statusDetails().defaults),o.priority>i.priority?o:i):this._statusDetails()[e]},o.prototype.updateIndicatorImagePosition=function(){var t=this.indicatorImage;this.indicatorImage&&t.css("marginRight",this.maxRhsPriceAxisWidth)},o.prototype._startSpinner=function(t){if(!this._spinner){var e=$(t).get(0);e&&(this._spinner=F("",{zIndex:"auto"}).spin(e))}},o.prototype.isJustClonedChart=function(){return!!(this._options||{}).justCloned},o.prototype.getLastPaneLeftBottom=function(){var t=this._paneWidgets[this._paneWidgets.length-1].jqPane,e=t.offset();return{left:e.left,bottom:$(document.body).height()-e.top-t.height()}},o.prototype.setDataWindowWidget=function(t){this._dataWindowWidget=t},o.prototype.removeDataWindowWidget=function(){this._dataWindowWidget=null},f.enabled("datasource_copypaste")&&(o.prototype.onAppClipboardPaste=function(t,e){X.logDebug("[[paste]]"),this._model&&this._model.pasteSourceFromClip(t,e)},o.prototype.onAppClipboardCopy=function(t){if(t||(t=this._model.selectedSource()),t instanceof m&&t.isChildStudy())return void X.logDebug("Can not copy child study");X.logDebug("[[copy]]"),this._model&&this._model.copySourceToClip(t)},o.prototype.onAppClipboardCut=function(t){X.logDebug("[[cut]]"),this._model&&this._model.cutSourceToClip(t||this._model.selectedSource())}),o.prototype.applyOverrides=function(t){ -applyPropertiesOverrides(this.properties(),null,!1,t),this._model&&(applyPropertiesOverrides(this._model.model().properties(),null,!1,t),applyPropertiesOverrides(this._model.mainSeries().properties(),null,!1,t,"mainSeriesProperties"))},o.prototype.setActive=function(t){var e,i=this.actions();for(e in i)i.hasOwnProperty(e)&&this.actions()[e].setActive(t);this._isActive=t,this._paneWidgets.forEach(function(t){t.update()})},o.prototype.isActive=function(){return this._isActive},o.prototype.trackTime=function(){return this._chartWidgetCollection.lock.trackTime},o.prototype.id=function(){return this._guid},o.prototype.createBranding=function(){this._modelCreated.subscribe(this,function(){this._model.model().createBrandingSource()},!0)},o.prototype._updateAbsoluteRect=function(){this._jqMainDiv.css("position","absolute"),this._jqMainDiv.css("left",this._rect.x+"px"),this._jqMainDiv.css("top",this._rect.y+"px"),this._jqMainDiv.width(this._rect.w),this._jqMainDiv.height(this._rect.h)},t.exports.ChartWidget=o}).call(e,i(15))},function(t,e){"use strict";var i=function(){function t(t){switch(t){case"c67":case"m67":case"c45":return"copy";case"c86":case"m86":case"s45":return"paste";case"c88":case"m88":case"s46":return"cut"}}function e(t){var e=[];return t.shiftKey&&e.push("s"),t.ctrlKey&&e.push("c"),t.metaKey&&e.push("m"),t.altKey&&e.push("a"),e.push(t.keyCode),e.join("")}function i(t){var e=$.Event(d+":"+t);return $(window).trigger(e,{AppClipboard:_}),e}function o(o){var n,s,r;if((document.activeElement===document.body||document.activeElement===document.documentElement)&&(n=e(o),s=t(n))){if("keydown"===o.type)p[n]=!0;else if(p[n])return;if(document.getSelection){if(!document.getSelection().isCollapsed)return}else if(document.selection&&"None"!==document.selection.type)return;o.isDefaultPrevented()||(r=i(s),r.isDefaultPrevented()&&o.preventDefault())}}function n(t){t=t.originalEvent||t,t.key===c&&i("change")}function s(){u||($(document).on("keypress keydown",o),$(window).on("storage",n),u=!0)}function r(){$(document).off("keypress keydown",o),$(window).off("storage",n),$(window).off(d+":copy"),$(window).off(d+":paste"),$(window).off(d+":cut"),$(window).off(d+":change"),u=!1}function a(){try{return JSON.parse(TVLocalStorage.getItem(c))}catch(t){return null}}function l(t){if(null==t)return h();var e=JSON.stringify(t);e!==TVLocalStorage.getItem(c)&&(TVLocalStorage.setItem(c,e),i("change"))}function h(){TVLocalStorage.getItem(c)&&(TVLocalStorage.removeItem(c),i("change"))}var c="application-clipboard",d="appclip",p={},u=!1,_={init:s,set:l,get:a,clear:h,destroy:r};return _}();t.exports=i},function(t,e,i){"use strict";function o(t,e,i){n.call(this,t,e,i),this.prepareLayout()}var n=i(10),s=i(5),r=s.FloatBinder,a=s.BooleanBinder,l=s.SliderBinder,h=s.ColorBinding,c=s.SimpleComboBinder,d=i(32).addColorPicker,p=i(19).createLineStyleEditor,u=i(13).createLineWidthEditor,_=i(46).createTransparencyEditor;inherit(o,n),o.prototype.addLevelEditor=function(t,e){var i,o,n,s,l,c=e||$("
").appendTo(this._table),p=$("
").append($.t("Transparency")).appendTo(p),h=d(),$("").append(h).appendTo(p),c=this._linetool.properties(),this.bindColor(t,c.candleStyle.upColor,"Change Candle Up Color"),this.bindColor(o,c.candleStyle.downColor,"Change Candle Down Color"),this.bindBoolean(l,c.candleStyle.drawWick,"Change Candle Wick Visibility"),this.bindColor(i,c.candleStyle.wickColor,"Change Candle Wick Color"),this.bindBoolean(r,c.candleStyle.drawBorder,"Change Candle Border Visibility"),this.bindColor(n,c.candleStyle.borderUpColor,"Change Candle Up Border Color"),this.bindColor(a,c.candleStyle.borderDownColor,"Change Candle Down Border Color"),this.bindControl(new s(h,c.transparency,!0,this.model(),"Change Guest Feed Transparency"))},n.prototype.widget=function(){return this._widget},t.LineToolGhostFeedInputsPropertyPage=i,t.LineToolGhostFeedStylesPropertyPage=n},400:function(e,t,o){"use strict";function i(e,t,o){a.call(this,e,t,o),this.prepareLayout()}function n(e,t,o){r.call(this,e,t,o)}var a=o(14),r=o(81),l=o(10),p=l.BooleanBinder,s=l.SimpleComboBinder,d=l.SimpleStringBinder,h=l.ColorBinding,c=l.SliderBinder,b=o(31).createLineStyleEditor,u=o(15).createLineWidthEditor;inherit(i,a),i.prototype.prepareLayout=function(){var e,t,o,i,n,a,r,l,C,y,g,w,T,_;this._res=$("
"),this._table=$('
').appendTo(this._res),e=u(),t=b(),o=this.createColorPicker(),i=this.addLabeledRow(this._table,"Line"),$("
").append(o).appendTo(i),$("").append(e).appendTo(i),$('').append(t.render().css("display","block")).appendTo(i),n=$(""), +i=$("
').append($("
').append($("").append(r).appendTo(i),$("").append(C).appendTo(i),$("").append(l).appendTo(i),$("").append(y).appendTo(i),$("").append(g).appendTo(i),i=$("
").append($.t("Text Alignment:")).appendTo(i),w=$(""),T=$("").data("selectbox-css",{display:"block"}),$("").append(w).appendTo(i),$("").append(T).appendTo(i),_=$("',textNotesWidgetItem:'
{{title}}
{{#symbol}}
'+i(838)+'{{symbol}}
{{/symbol}}
{{description}}
',tvDataTable:'{{#columns}}{{/columns}}{{#bodies}}{{#strokes}}{{#cells}}{{/cells}}{{/strokes}}{{/bodies}}
{{{label}}}
{{#contain}}{{{contain}}}{{/contain}}
',tvDataTableRow:'
{{#contain}}{{{contain}}}{{/contain}}
{{#contain}}{{{contain}}}{{/contain}}
");return p.appendTo(c), -i=$(""),i.appendTo(p),e&&i.css("margin-left","15px"),o=$(""),o.appendTo(c),n=$(""),n.appendTo(o),n.css("width","70px"),this.bindControl(new r(n,t.coeff,!1,this.model(),"Change Pitchfork Line Coeff")),s=$(""),s.appendTo(c),l=d(s),this.bindControl(new a(i,t.visible,!0,this.model(),"Change Fib Retracement Line Visibility")),this.bindControl(new h(l,t.color,!0,this.model(),"Change Fib Retracement Line Color",0)),c},o.prototype.prepareLayout=function(){var t,e,i,o,n,s,r,f,m,g,v,y,b,w,S,T,C,x,P,L,k,I,A,E,M,D,O,V,B,R,N,F,z;for(this._div=$(document.createElement("div")).addClass("property-page"),t=this._linetool.properties().trendline,e=$("").appendTo(this._div).css("padding-bottom","3px"),t&&(i=$("").appendTo(e),o=$(""),$("").appendTo(e),$("").appendTo(y),$("").appendTo(a)),c=t('').appendTo(l),h=t('
').appendTo(c).find(".tvcolorpicker-swatch").data("color",s),n.addClass&&h.addClass(n.addClass),s&&(s=s.toLowerCase(),r&&o(g(r),g(s))&&h.addClass("active"),h.css({backgroundColor:s}).data("color",s),h.bind("click",function(){k.call(i,s,O.val(),!0)}))}),t(s).addClass("tvcolorpicker-table"),u?s:t()}function T(e,n,i){var r,o=t(e).offset(),s={left:t(document).scrollLeft(),top:t(document).scrollTop()},a={width:t(e).outerWidth(),height:t(e).outerHeight()},l={width:t(window).width(),height:t(window).height()},u={width:t(n).outerWidth(),height:t(n).outerHeight()};switch("function"==typeof i.direction?i.direction():i.direction){default:case"down":r={top:o.top+a.height+i.offset,left:o.left+i.drift};break;case"right":r={top:o.top+i.drift,left:o.left+a.width+i.offset}}r.top+u.height>l.height+s.top&&(r.top=l.height-u.height+s.top),o.left+u.width>l.width&&(r.left=l.width-u.width),r.left+="px",r.top+="px",n.css(r)}function C(e){function n(t){var e=t.originalEvent,n=t.offsetX||t.layerX||e&&(e.offsetX||e.layerX)||0,i=t.offsetY||t.layerY||e&&(e.offsetY||e.layerY)||0;E.css({left:n+"px",top:i+"px"}),W[0]=a(n/H),W[1]=l(1-i/F),A.css({backgroundColor:d(f(c(W[0],W[1],1)))}),x()}function i(e){1==e.which&&(Y=!1,U.is(".opened")&&t(B).get(0).focus())}function o(e){var n=e.pageY,i=t(j),r=i.offset().top,o=n-r;return o>i.height()?i.height():o<0?0:o}function v(t){var e=o(t);I.css({top:e+"px"}),W[2]=u(1-Math.max(0,Math.min(e,F))/F),x()}function w(e){1==e.which&&(z=!1,t(document).unbind("mouseup",w),U.is(".opened")&&t(B).get(0).focus())}function x(){var t,e;R&&(R=!1,U.find(".tvcolorpicker-swatch.active").removeClass("active")),t=r(f(W),O.val()),s(m(B.val().toUpperCase()),t)||(e=p(t),B.data("tvcolorpicker-custom-color",e),S.call(B,e))}var M,C,P,E,N,L,A,I,j,F,H,Y,z,R,W,V=!1,B=t(this),U=t('
'),q=t('
').appendTo(U);return q.append(D.call(this,["rgb(0, 0, 0)","rgb(66, 66, 66)","rgb(101, 101, 101)","rgb(152, 152, 152)","rgb(182, 182, 182)","rgb(203, 203, 203)","rgb(216, 216, 216)","rgb(238, 238, 238)","rgb(242, 242, 242)","rgb(255, 255, 255)"])),q.append(D.call(this,["rgb(151, 0, 0)","rgb(255, 0, 0)","rgb(255, 152, 0)","rgb(255, 255, 0)","rgb(0, 255, 0)","rgb(0, 255, 255)","rgb(73, 133, 231)","rgb(0, 0, 255)","rgb(152, 0, 255)","rgb(255, 0, 255)"])), -q.append(D.call(this,["rgb(230, 184, 175)","rgb(244, 204, 204)","rgb(252, 229, 205)","rgb(255, 242, 204)","rgb(217, 234, 211)","rgb(208, 224, 227)","rgb(201, 218, 248)","rgb(207, 226, 243)","rgb(217, 210, 233)","rgb(234, 209, 220)","rgb(221, 126, 107)","rgb(234, 153, 153)","rgb(249, 203, 156)","rgb(255, 229, 153)","rgb(182, 215, 168)","rgb(162, 196, 201)","rgb(164, 194, 244)","rgb(159, 197, 232)","rgb(180, 167, 214)","rgb(213, 166, 189)","rgb(204, 65, 37)","rgb(224, 102, 102)","rgb(246, 178, 107)","rgb(255, 217, 102)","rgb(147, 196, 125)","rgb(118, 165, 175)","rgb(109, 158, 235)","rgb(111, 168, 220)","rgb(142, 124, 195)","rgb(194, 123, 160)","rgb(166, 28, 0)","rgb(204, 0, 0)","rgb(230, 145, 56)","rgb(241, 194, 50)","rgb(106, 168, 79)","rgb(69, 129, 142)","rgb(60, 120, 216)","rgb(61, 133, 198)","rgb(103, 78, 167)","rgb(166, 77, 121)","rgb(133, 32, 12)","rgb(153, 0, 0)","rgb(180, 95, 6)","rgb(191, 144, 0)","rgb(56, 118, 29)","rgb(19, 79, 92)","rgb(17, 85, 204)","rgb(11, 83, 148)","rgb(53, 28, 117)","rgb(116, 27, 71)","rgb(91, 15, 0)","rgb(102, 0, 0)","rgb(120, 63, 4)","rgb(127, 96, 0)","rgb(39, 78, 19)","rgb(12, 52, 61)","rgb(28, 69, 135)","rgb(7, 55, 99)","rgb(32, 18, 77)","rgb(76, 17, 48)"])),M=t('
').css({display:"none"}).appendTo(U),C=t('
').appendTo(M),P=t('
').appendTo(C),E=t('
').appendTo(P),N=t('
').appendTo(P),L=t('
').appendTo(C),A=t('
').appendTo(L),I=t('
').appendTo(A),j=t('
').appendTo(A),O=y(t(this),e.hideTransparency),O.initEvents(),O.updateColor(),O.$el.appendTo(U),O.val(m(B.val()||_)[3]),F=P.height(),H=P.width(),Y=!1,z=!1,R=!0,W=[0,0,.5],N.bind("mousedown",function(e){1==e.which&&(Y=!0,t(document).bind("mouseup",i),n(e),e.preventDefault())}),N.bind("mousemove",function(t){Y&&(n(t),t.preventDefault())}),t(O).on("change",function(){if(V)return void x();k.call(this,t(this).val()||_,O.val())}.bind(this)),t(O).on("afterChange",function(){t(this).focus()}.bind(this)),L.bind("mousedown",function(e){1==e.which&&(z=!0,t(document).bind("mouseup",w),v(e),e.preventDefault())}),t(document).bind("mousemove",function(t){z&&(v(t),t.preventDefault())}),t(''+t.t("Custom color...")+"").appendTo(U).bind("click",function(){var e,n=t(this).is(".active");n||M.css({minWidth:q.width()+"px",minHeight:q.height()+"px"}),t(this)[n?"removeClass":"addClass"]("active"),V=t(this).is(".active"),M.css({display:n?"none":"block"}),q.css({display:n?"block":"none"}),n?B.removeData("tvcolorpicker-custom-color"):(F=P.height(),H=P.width(),e=g(B.val()||_),W=h(e),E.css({left:~~(W[0]*H)+"px",top:~~((1-W[1])*F)+"px"}),I.css({top:~~((1-W[2])*F)+"px"}),A.css({backgroundColor:d(f(c(W[0],W[1],1)))}))}),U.append(t(D.call(this,b,{addClass:"tvcolorpicker-user" -})).addClass("tvcolorpicker-user-swatches")),t(document.body).append(U),T(B,U,e),U}function P(){t(".tvcolorpicker-popup").removeClass("opened").remove(),t(O).off("change"),t(O).off("afterChange"),t(E).data("tvcolorpicker",null),t(E).each(function(){var e,n=t(this).data("tvcolorpicker-custom-color");n&&(x(n)&&t(this).trigger("customcolorchange",[b]),t(this).data("tvcolorpicker-custom-color",null)),e=t(this).data("tvcolorpicker-previous-color"),e&&e!=t(this).val()&&t(this).trigger("change"),t(this).removeData("tvcolorpicker-previous-color")})}var O,E;return w=t.extend({},i.options,w||{}),E=this,w&&"customColors"in w&&n(w.customColors),this.each(function(){function n(){var t=e(s.val());M.call(s,t)}var i,r,o,s=t(this);s.val(e(s.val())),i=null,r=!1,s.addClass("tvcolorpicker-widget").attr("autocomplete","off").attr("readonly",!0),o=function(){s.data("tvcolorpicker")||(P.call(s),i=C.call(s,w),s.data("tvcolorpicker-custom-color",null),s.data("tvcolorpicker",i),s.data("tvcolorpicker-previous-color",s.val()),i.bind("mousedown click",function(e){t(e.target).parents().andSelf().is(i)&&(s.focus(),r=!0,setTimeout(function(){r=!1},0))}))},s.on("touchstart",o),s.focus(o),P.call(s),s.bind("blur",function(t){r?t.stopPropagation():P.call(s)}),s.change(function(t){n()}),n()})}var v,b,_;if(!t)throw Error("This program cannot be run in DOS mode");i.setCustomColors=n,t.fn.tvcolorpicker=i,v=10,b=[],_="rgb(14, 15, 16)",i.options={direction:"down",offset:0,drift:0}}(window.jQuery)},,,,,,,,,,,,,,,,,,,,,,,,function(t,e,n){var i,r;!function(t){"use strict";function e(t){var e=t.length,i=n.type(t);return"function"!==i&&!n.isWindow(t)&&(!(1!==t.nodeType||!e)||("array"===i||0===e||"number"==typeof e&&e>0&&e-1 in t))}var n,i,r,o,s,a,l;if(!t.jQuery){n=function(t,e){return new n.fn.init(t,e)},n.isWindow=function(t){return t&&t===t.window},n.type=function(t){return t?"object"==typeof t||"function"==typeof t?r[s.call(t)]||"object":typeof t:t+""},n.isArray=Array.isArray||function(t){return"array"===n.type(t)},n.isPlainObject=function(t){var e;if(!t||"object"!==n.type(t)||t.nodeType||n.isWindow(t))return!1;try{if(t.constructor&&!o.call(t,"constructor")&&!o.call(t.constructor.prototype,"isPrototypeOf"))return!1}catch(t){return!1}for(e in t);return void 0===e||o.call(t,e)},n.each=function(t,n,i){var r=0,o=t.length,s=e(t);if(i){if(s)for(;r0?r=s:n=s}while(Math.abs(o)>x&&++a=w?c(e,r):0===o?r:f(e,s,s+M)}function p(){y=!0,t===n&&i===r||h()}var g,m,y,v,b,_=4,w=.001,x=1e-7,k=10,S=11,M=1/(S-1),D="Float32Array"in e;if(4!==arguments.length)return!1;for(g=0;g<4;++g)if("number"!=typeof arguments[g]||isNaN(arguments[g])||!isFinite(arguments[g]))return!1;return t=Math.min(t,1),i=Math.min(i,1),t=Math.max(t,0),i=Math.max(i,0),m=D?new Float32Array(S):Array(S),y=!1,v=function(e){return y||p(),t===n&&i===r?e:0===e?0:1===e?1:l(d(e),n,r)},v.getControlPoints=function(){return[{x:t,y:n},{x:i,y:r}]},b="generateBezier("+[t,n,i,r]+")",v.toString=function(){return b},v}function h(t,e){var n=t;return C.isString(t)?y.Easings[t]||(n=!1):n=C.isArray(t)&&1===t.length?u.apply(null,t):C.isArray(t)&&2===t.length?v.apply(null,t.concat([e])):!(!C.isArray(t)||4!==t.length)&&c.apply(null,t),!1===n&&(n=y.Easings[y.defaults.easing]?y.defaults.easing:m),n}function f(t){var e,n,o,a,l,u,c,h,g,m,v,_,x,S,D,T,P,O,E,N,L,A,I,j,F,H,Y;if(t)for(e=y.timestamp&&!0!==t?t:M.now(),n=y.State.calls.length,n>1e4&&(y.State.calls=r(y.State.calls),n=y.State.calls.length),o=0;o4;t--)if(e=n.createElement("div"),e.innerHTML="\x3c!--[if IE "+t+"]>=0?e:Math.max(0,l+e),s=n<0?l+n:Math.min(n,l),a=s-o,a>0)if(r=Array(a),this.charAt)for(i=0;i=0}:function(t,e){for(var n=0;nh&&Math.abs(a.v)>h))break;return o?function(t){return u[t*(u.length-1)|0]}:c}}(),y.Easings={linear:function(t){return t},swing:function(t){return.5-Math.cos(t*Math.PI)/2},spring:function(t){return 1-Math.cos(4.5*t*Math.PI)*Math.exp(6*-t)}},p.each([["ease",[.25,.1,.25,1]],["ease-in",[.42,0,1,1]],["ease-out",[0,0,.58,1]],["ease-in-out",[.42,0,.58,1]],["easeInSine",[.47,0,.745,.715]],["easeOutSine",[.39,.575,.565,1]],["easeInOutSine",[.445,.05,.55,.95]],["easeInQuad",[.55,.085,.68,.53]],["easeOutQuad",[.25,.46,.45,.94]],["easeInOutQuad",[.455,.03,.515,.955]],["easeInCubic",[.55,.055,.675,.19]],["easeOutCubic",[.215,.61,.355,1]],["easeInOutCubic",[.645,.045,.355,1]],["easeInQuart",[.895,.03,.685,.22]],["easeOutQuart",[.165,.84,.44,1]],["easeInOutQuart",[.77,0,.175,1]],["easeInQuint",[.755,.05,.855,.06]],["easeOutQuint",[.23,1,.32,1]],["easeInOutQuint",[.86,0,.07,1]],["easeInExpo",[.95,.05,.795,.035]],["easeOutExpo",[.19,1,.22,1]],["easeInOutExpo",[1,0,0,1]],["easeInCirc",[.6,.04,.98,.335]],["easeOutCirc",[.075,.82,.165,1]],["easeInOutCirc",[.785,.135,.15,.86]]],function(t,e){y.Easings[e[0]]=c.apply(null,e[1])}),b=y.CSS={RegEx:{isHex:/^#([A-f\d]{3}){1,2}$/i,valueUnwrap:/^[A-z]+\((.*)\)$/i,wrappedValueAlreadyExtracted:/[0-9.]+ [0-9.]+ [0-9.]+( [0-9.]+)?/,valueSplit:/([A-z]+\(.+\))|(([A-z0-9#-.]+?)(?=\s|$))/gi},Lists:{colors:["fill","stroke","stopColor","color","backgroundColor","borderColor","borderTopColor","borderRightColor","borderBottomColor","borderLeftColor","outlineColor"],transformsBase:["translateX","translateY","scale","scaleX","scaleY","skewX","skewY","rotateZ"],transforms3D:["transformPerspective","translateZ","scaleZ","rotateX","rotateY"],units:["%","em","ex","ch","rem","vw","vh","vmin","vmax","cm","mm","Q","in","pc","pt","px","deg","grad","rad","turn","s","ms"],colorNames:{aliceblue:"240,248,255",antiquewhite:"250,235,215",aquamarine:"127,255,212",aqua:"0,255,255",azure:"240,255,255",beige:"245,245,220",bisque:"255,228,196",black:"0,0,0",blanchedalmond:"255,235,205",blueviolet:"138,43,226",blue:"0,0,255",brown:"165,42,42",burlywood:"222,184,135",cadetblue:"95,158,160",chartreuse:"127,255,0",chocolate:"210,105,30",coral:"255,127,80",cornflowerblue:"100,149,237",cornsilk:"255,248,220",crimson:"220,20,60",cyan:"0,255,255",darkblue:"0,0,139",darkcyan:"0,139,139",darkgoldenrod:"184,134,11",darkgray:"169,169,169",darkgrey:"169,169,169",darkgreen:"0,100,0",darkkhaki:"189,183,107",darkmagenta:"139,0,139",darkolivegreen:"85,107,47",darkorange:"255,140,0",darkorchid:"153,50,204",darkred:"139,0,0",darksalmon:"233,150,122",darkseagreen:"143,188,143",darkslateblue:"72,61,139",darkslategray:"47,79,79",darkturquoise:"0,206,209",darkviolet:"148,0,211",deeppink:"255,20,147",deepskyblue:"0,191,255",dimgray:"105,105,105",dimgrey:"105,105,105",dodgerblue:"30,144,255",firebrick:"178,34,34",floralwhite:"255,250,240",forestgreen:"34,139,34",fuchsia:"255,0,255",gainsboro:"220,220,220",ghostwhite:"248,248,255",gold:"255,215,0",goldenrod:"218,165,32",gray:"128,128,128",grey:"128,128,128",greenyellow:"173,255,47", -green:"0,128,0",honeydew:"240,255,240",hotpink:"255,105,180",indianred:"205,92,92",indigo:"75,0,130",ivory:"255,255,240",khaki:"240,230,140",lavenderblush:"255,240,245",lavender:"230,230,250",lawngreen:"124,252,0",lemonchiffon:"255,250,205",lightblue:"173,216,230",lightcoral:"240,128,128",lightcyan:"224,255,255",lightgoldenrodyellow:"250,250,210",lightgray:"211,211,211",lightgrey:"211,211,211",lightgreen:"144,238,144",lightpink:"255,182,193",lightsalmon:"255,160,122",lightseagreen:"32,178,170",lightskyblue:"135,206,250",lightslategray:"119,136,153",lightsteelblue:"176,196,222",lightyellow:"255,255,224",limegreen:"50,205,50",lime:"0,255,0",linen:"250,240,230",magenta:"255,0,255",maroon:"128,0,0",mediumaquamarine:"102,205,170",mediumblue:"0,0,205",mediumorchid:"186,85,211",mediumpurple:"147,112,219",mediumseagreen:"60,179,113",mediumslateblue:"123,104,238",mediumspringgreen:"0,250,154",mediumturquoise:"72,209,204",mediumvioletred:"199,21,133",midnightblue:"25,25,112",mintcream:"245,255,250",mistyrose:"255,228,225",moccasin:"255,228,181",navajowhite:"255,222,173",navy:"0,0,128",oldlace:"253,245,230",olivedrab:"107,142,35",olive:"128,128,0",orangered:"255,69,0",orange:"255,165,0",orchid:"218,112,214",palegoldenrod:"238,232,170",palegreen:"152,251,152",paleturquoise:"175,238,238",palevioletred:"219,112,147",papayawhip:"255,239,213",peachpuff:"255,218,185",peru:"205,133,63",pink:"255,192,203",plum:"221,160,221",powderblue:"176,224,230",purple:"128,0,128",red:"255,0,0",rosybrown:"188,143,143",royalblue:"65,105,225",saddlebrown:"139,69,19",salmon:"250,128,114",sandybrown:"244,164,96",seagreen:"46,139,87",seashell:"255,245,238",sienna:"160,82,45",silver:"192,192,192",skyblue:"135,206,235",slateblue:"106,90,205",slategray:"112,128,144",snow:"255,250,250",springgreen:"0,255,127",steelblue:"70,130,180",tan:"210,180,140",teal:"0,128,128",thistle:"216,191,216",tomato:"255,99,71",turquoise:"64,224,208",violet:"238,130,238",wheat:"245,222,179",whitesmoke:"245,245,245",white:"255,255,255",yellowgreen:"154,205,50",yellow:"255,255,0"}},Hooks:{templates:{textShadow:["Color X Y Blur","black 0px 0px 0px"],boxShadow:["Color X Y Blur Spread","black 0px 0px 0px 0px"],clip:["Top Right Bottom Left","0px 0px 0px 0px"],backgroundPosition:["X Y","0% 0%"],transformOrigin:["X Y Z","50% 50% 0px"],perspectiveOrigin:["X Y","50% 50%"]},registered:{},register:function(){var t,e,n,i,r,o,s,a,l;for(t=0;t=1?"":"alpha(opacity="+parseInt(100*parseFloat(n),10)+")"}else switch(t){case"name":return"opacity";case"extract":case"inject":return n}}},register:function(){function t(t,e,n){var i,r,o,s,a;if("border-box"===(""+b.getPropertyValue(e,"boxSizing")).toLowerCase()===(n||!1)){for(o=0,s="width"===t?["Left","Right"]:["Top","Bottom"],a=["padding"+s[0],"padding"+s[1],"border"+s[0]+"Width","border"+s[1]+"Width"],i=0;i9)||y.State.isGingerbread||(b.Lists.transformsBase=b.Lists.transformsBase.concat(b.Lists.transforms3D)),n=0;n8)&&3===o.split(" ").length&&(o+=" 1"),o;case"inject":return/^rgb/.test(r)?r:(k<=8?4===r.split(" ").length&&(r=r.split(/\s+/).slice(0,3).join(" ")):3===r.split(" ").length&&(r+=" 1"),(k<=8?"rgb":"rgba")+"("+r.replace(/\s+/g,",").replace(/\.(\d)+(?=,)/g,"")+")")}}}();b.Normalizations.registered.innerWidth=e("width",!0),b.Normalizations.registered.innerHeight=e("height",!0),b.Normalizations.registered.outerWidth=e("width"),b.Normalizations.registered.outerHeight=e("height")}},Names:{camelCase:function(t){return t.replace(/-(\w)/g,function(t,e){return e.toUpperCase()})},SVGAttribute:function(t){var e="width|height|x|y|cx|cy|r|rx|ry|x1|x2|y1|y2";return(k||y.State.isAndroid&&!y.State.isChrome)&&(e+="|transform"),RegExp("^("+e+")$","i").test(t)},prefixCheck:function(t){var e,n,i,r;if(y.State.prefixMatches[t])return[y.State.prefixMatches[t],!0];for(e=["","Webkit","Moz","ms","O"],n=0,i=e.length;n=2&&console.log("Get "+n+": "+l),l},setPropertyValue:function(t,n,i,r,o){var a,l,u,c=n;if("scroll"===n)o.container?o.container["scroll"+o.direction]=i:"Left"===o.direction?e.scrollTo(i,o.alternateValue):e.scrollTo(o.alternateValue,i);else if(b.Normalizations.registered[n]&&"transform"===b.Normalizations.registered[n]("name",t))b.Normalizations.registered[n]("inject",t,i),c="transform",i=s(t).transformCache[n];else{if(b.Hooks.registered[n]&&(a=n,l=b.Hooks.getRoot(n),r=r||b.getPropertyValue(t,l),i=b.Hooks.injectValue(a,i,r),n=l),b.Normalizations.registered[n]&&(i=b.Normalizations.registered[n]("inject",t,i),n=b.Normalizations.registered[n]("name",t)),c=b.Names.prefixCheck(n)[0],k<=8)try{t.style[c]=i}catch(t){y.debug&&console.log("Browser does not support ["+i+"] for ["+c+"]")}else u=s(t),u&&u.isSVG&&b.Names.SVGAttribute(n)?t.setAttribute(n,i):t.style[c]=i;y.debug>=2&&console.log("Set "+n+" ("+c+"): "+i)}return[c,i]},flushTransformCache:function(t){ -var e,n,i,r,o="",a=s(t);(k||y.State.isAndroid&&!y.State.isChrome)&&a&&a.isSVG?(e=function(e){return parseFloat(b.getPropertyValue(t,e))},n={translate:[e("translateX"),e("translateY")],skewX:[e("skewX")],skewY:[e("skewY")],scale:1!==e("scale")?[e("scale"),e("scale")]:[e("scaleX"),e("scaleY")],rotate:[e("rotateZ"),0,0]},p.each(s(t).transformCache,function(t){/^translate/i.test(t)?t="translate":/^scale/i.test(t)?t="scale":/^rotate/i.test(t)&&(t="rotate"),n[t]&&(o+=t+"("+n[t].join(" ")+") ",delete n[t])})):(p.each(s(t).transformCache,function(e){if(i=s(t).transformCache[e],"transformPerspective"===e)return r=i,!0;9===k&&"rotateZ"===e&&(e="rotate"),o+=e+i+" "}),r&&(o="perspective"+r+" "+o)),b.setPropertyValue(t,"transform",o)}},b.Hooks.register(),b.Normalizations.register(),y.hook=function(t,e,n){var r;return t=o(t),p.each(t,function(t,o){if(s(o)===i&&y.init(o),n===i)r===i&&(r=b.getPropertyValue(o,e));else{var a=b.setPropertyValue(o,e,n);"transform"===a[0]&&y.CSS.flushTransformCache(o),r=a}}),r},_=function(){function t(){return c?S.promise||null:m}function r(t,r){function o(o){var l,u,g,m,v,_,P,O,N,L,A,I,j,Y,z,R,W,V,B,U,q,$;if(c.begin&&0===D)try{c.begin.call(w,w)}catch(t){setTimeout(function(){throw t},1)}if("scroll"===E)g=/^x$/i.test(c.axis)?"Left":"Top",m=parseFloat(c.offset)||0,c.container?C.isWrapped(c.container)||C.isNode(c.container)?(c.container=c.container[0]||c.container,v=c.container["scroll"+g],P=v+p(t).position()[g.toLowerCase()]+m):c.container=null:(v=y.State.scrollAnchor[y.State["scrollProperty"+g]],_=y.State.scrollAnchor[y.State["scrollProperty"+("Left"===g?"Top":"Left")]],P=p(t).offset()[g.toLowerCase()]+m),d={scroll:{rootPropertyValue:!1,startValue:v,currentValue:v,endValue:P,unitType:"",easing:c.easing,scrollData:{container:c.container,direction:g,alternateValue:_}},element:t},y.debug&&console.log("tweensContainer (scroll): ",d.scroll,t);else if("reverse"===E){if(!(l=s(t)))return;if(!l.tweensContainer)return void p.dequeue(t,c.queue);"none"===l.opts.display&&(l.opts.display="auto"),"hidden"===l.opts.visibility&&(l.opts.visibility="visible"),l.opts.loop=!1,l.opts.begin=null,l.opts.complete=null,k.easing||delete c.easing,k.duration||delete c.duration,c=p.extend({},l.opts,c),u=p.extend(!0,{},l?l.tweensContainer:null);for(O in u)u.hasOwnProperty(O)&&"element"!==O&&(N=u[O].startValue,u[O].startValue=u[O].currentValue=u[O].endValue,u[O].endValue=N,C.isEmptyObject(k)||(u[O].easing=c.easing),y.debug&&console.log("reverse tweensContainer ("+O+"): "+JSON.stringify(u[O]),t));d=u}else if("start"===E){l=s(t),l&&l.tweensContainer&&!0===l.isAnimating&&(u=l.tweensContainer),L=function(e,n){var i,o,s;return C.isFunction(e)&&(e=e.call(t,r,M)),C.isArray(e)?(i=e[0],!C.isArray(e[1])&&/^[\d-]/.test(e[1])||C.isFunction(e[1])||b.RegEx.isHex.test(e[1])?s=e[1]:C.isString(e[1])&&!b.RegEx.isHex.test(e[1])&&y.Easings[e[1]]||C.isArray(e[1])?(o=n?e[1]:h(e[1],c.duration),s=e[2]):s=e[1]||e[2]):i=e,n||(o=o||c.easing),C.isFunction(i)&&(i=i.call(t,r,M)),C.isFunction(s)&&(s=s.call(t,r,M)),[i||0,o,s]},A=function(r,o){ -var s,h,f,g,m,v,_,w,x,k,S,M,D,T,P,O,E,N,L,A,I,j,H,Y,z,R=b.Hooks.getRoot(r),W=!1,V=o[0],B=o[1],U=o[2];if(!(l&&l.isSVG||"tween"===R||!1!==b.Names.prefixCheck(R)[1]||b.Normalizations.registered[R]!==i))return void(y.debug&&console.log("Skipping ["+R+"] due to a lack of browser support."));if((c.display!==i&&null!==c.display&&"none"!==c.display||c.visibility!==i&&"hidden"!==c.visibility)&&/opacity|filter/.test(r)&&!U&&0!==V&&(U=0),c._cacheValues&&u&&u[r]?(U===i&&(U=u[r].endValue+u[r].unitType),W=l.rootPropertyValueCache[R]):b.Hooks.registered[r]?U===i?(W=b.getPropertyValue(t,R),U=b.getPropertyValue(t,r,W)):W=b.Hooks.templates[R][1]:U===i&&(U=b.getPropertyValue(t,r)),m=!1,v=function(t,e){var n,i;return i=(""+(e||"0")).toLowerCase().replace(/[%A-z]+$/,function(t){return n=t,""}),n||(n=b.Values.getUnitType(t)),[i,n]},U!==V&&C.isString(U)&&C.isString(V)){for(s="",_=0,w=0,x=[],k=[],S=0,M=0,D=0,U=b.Hooks.fixColors(U),V=b.Hooks.fixColors(V);_=4&&"("===T?S++:(S&&S<5||S>=4&&")"===T&&--S<5)&&(S=0),0===M&&"r"===T||1===M&&"g"===T||2===M&&"b"===T||3===M&&"a"===T||M>=3&&"("===T?(3===M&&"a"===T&&(D=1),M++):D&&","===T?++D>3&&(M=D=0):(D&&M<(D?5:4)||M>=(D?4:3)&&")"===T&&--M<(D?5:4))&&(M=D=0)}_===U.length&&w===V.length||(y.debug&&console.error('Trying to pattern match mis-matched strings ["'+V+'", "'+U+'"]'),s=i),s&&(x.length?(y.debug&&console.log('Pattern found "'+s+'" -> ',x,k,"["+U+","+V+"]"),U=x,V=k,f=g=""):s=i)}if(s||(h=v(r,U),U=h[0],g=h[1],h=v(r,V),V=h[0].replace(/^([+-\/*])=/,function(t,e){return m=e,""}),f=h[1],U=parseFloat(U)||0,V=parseFloat(V)||0,"%"===f&&(/^(fontSize|lineHeight)$/.test(r)?(V/=100,f="em"):/^scale/.test(r)?(V/=100,f=""):/(Red|Green|Blue)$/i.test(r)&&(V=V/100*255,f=""))),Y=function(){var i,r,o,s={myParent:t.parentNode||n.body,position:b.getPropertyValue(t,"position"),fontSize:b.getPropertyValue(t,"fontSize")},a=s.position===F.lastPosition&&s.myParent===F.lastParent,u=s.fontSize===F.lastFontSize;return F.lastParent=s.myParent,F.lastPosition=s.position,F.lastFontSize=s.fontSize,i=100,r={},u&&a?(r.emToPx=F.lastEmToPx,r.percentToPxWidth=F.lastPercentToPxWidth,r.percentToPxHeight=F.lastPercentToPxHeight):(o=l&&l.isSVG?n.createElementNS("http://www.w3.org/2000/svg","rect"):n.createElement("div"),y.init(o),s.myParent.appendChild(o),p.each(["overflow","overflowX","overflowY"],function(t,e){ -y.CSS.setPropertyValue(o,e,"hidden")}),y.CSS.setPropertyValue(o,"position",s.position),y.CSS.setPropertyValue(o,"fontSize",s.fontSize),y.CSS.setPropertyValue(o,"boxSizing","content-box"),p.each(["minWidth","maxWidth","width","minHeight","maxHeight","height"],function(t,e){y.CSS.setPropertyValue(o,e,i+"%")}),y.CSS.setPropertyValue(o,"paddingLeft",i+"em"),r.percentToPxWidth=F.lastPercentToPxWidth=(parseFloat(b.getPropertyValue(o,"width",null,!0))||1)/i,r.percentToPxHeight=F.lastPercentToPxHeight=(parseFloat(b.getPropertyValue(o,"height",null,!0))||1)/i,r.emToPx=F.lastEmToPx=(parseFloat(b.getPropertyValue(o,"paddingLeft"))||1)/i,s.myParent.removeChild(o)),null===F.remToPx&&(F.remToPx=parseFloat(b.getPropertyValue(n.body,"fontSize"))||16),null===F.vwToPx&&(F.vwToPx=parseFloat(e.innerWidth)/100,F.vhToPx=parseFloat(e.innerHeight)/100),r.remToPx=F.remToPx,r.vwToPx=F.vwToPx,r.vhToPx=F.vhToPx,y.debug>=1&&console.log("Unit ratios: "+JSON.stringify(r),t),r},/[\/*]/.test(m))f=g;else if(g!==f&&0!==U)if(0===V)f=g;else{switch(a=a||Y(),z=/margin|padding|left|right|width|text|word|letter/i.test(r)||/X$/.test(r)||"x"===r?"x":"y",g){case"%":U*="x"===z?a.percentToPxWidth:a.percentToPxHeight;break;case"px":break;default:U*=a[g+"ToPx"]}switch(f){case"%":U*=1/("x"===z?a.percentToPxWidth:a.percentToPxHeight);break;case"px":break;default:U*=1/a[f+"ToPx"]}}switch(m){case"+":V=U+V;break;case"-":V=U-V;break;case"*":V*=U;break;case"/":V=U/V}d[r]={rootPropertyValue:W,startValue:U,currentValue:U,endValue:V,unitType:f,easing:B},s&&(d[r].pattern=s),y.debug&&console.log("tweensContainer ("+r+"): "+JSON.stringify(d[r]),t)};for(I in x)if(x.hasOwnProperty(I))if(j=b.Names.camelCase(I),Y=L(x[I]),T(b.Lists.colors,j)&&(z=Y[0],R=Y[1],W=Y[2],b.RegEx.isHex.test(z)))for(V=["Red","Green","Blue"],B=b.Values.hexToRgb(z),U=W?b.Values.hexToRgb(W):i,q=0;q0)}Object.defineProperty(e,"__esModule",{value:!0}),e.isNumber=n,e.isInteger=i,e.isNaN=r},function(t,e,n){!function(){function n(){return{keys:Object.keys||function(t){if("object"!=typeof t&&"function"!=typeof t||null===t)throw new TypeError("keys() called on a non-object");var e,n=[];for(e in t)t.hasOwnProperty(e)&&(n[n.length]=e);return n},uniqueId:function(t){var e=++s+"";return t?t+e:e},has:function(t,e){return r.call(t,e)},each:function(t,e,n){var r,o,s;if(null!=t)if(i&&t.forEach===i)t.forEach(e,n);else if(t.length===+t.length)for(r=0,o=t.length;r2?arguments[2]:void 0,c=Math.min((void 0===u?s:r(u,s))-l,s-a),h=1;for(l0;)l in n?n[a]=n[l]:delete n[a],a+=h,l+=h;return n}},function(t,e,n){"use strict";var i=n(100),r=n(135),o=n(62);t.exports=function(t){for(var e=i(this),n=o(e.length),s=arguments.length,a=r(s>1?arguments[1]:void 0,n),l=s>2?arguments[2]:void 0,u=void 0===l?n:r(l,n);u>a;)e[a++]=t;return e}},function(t,e,n){var i=n(29),r=n(236),o=n(22)("species");t.exports=function(t){var e;return r(t)&&(e=t.constructor,"function"!=typeof e||e!==Array&&!r(e.prototype)||(e=void 0),i(e)&&null===(e=e[o])&&(e=void 0)),void 0===e?Array:e}},function(t,e,n){var i=n(393);t.exports=function(t,e){return new(i(t))(e)}},function(t,e,n){"use strict";var i=n(94),r=n(29),o=n(234),s=[].slice,a={},l=function(t,e,n){if(!(e in a)){for(var i=[],r=0;rs;)n.call(t,a=e[s++])&&l.push(a);return l}},function(t,e,n){"use strict";var i=n(18);t.exports=function(){var t=i(this),e="";return t.global&&(e+="g"),t.ignoreCase&&(e+="i"),t.multiline&&(e+="m"),t.unicode&&(e+="u"),t.sticky&&(e+="y"),e}},function(t,e,n){var i=n(29),r=n(180).set;t.exports=function(t,e,n){var o,s=e.constructor;return s!==n&&"function"==typeof s&&(o=s.prototype)!==n.prototype&&i(o)&&r&&r(t,o),t}},function(t,e,n){var i=n(29),r=n(82),o=n(22)("match");t.exports=function(t){var e;return i(t)&&(void 0!==(e=t[o])?!!e:"RegExp"==r(t))}},function(t,e,n){var i=n(98),r=n(61);t.exports=function(t,e){for(var n,o=r(t),s=i(o),a=s.length,l=0;a>l;)if(o[n=s[l++]]===e)return n}},function(t,e,n){var i=n(20),r=n(246).set,o=i.MutationObserver||i.WebKitMutationObserver,s=i.process,a=i.Promise,l="process"==n(82)(s);t.exports=function(){var t,e,n,u,c,h,f=function(){var i,r;for(l&&(i=s.domain)&&i.exit();t;){r=t.fn,t=t.next;try{r()}catch(i){throw t?n():e=void 0,i}}e=void 0,i&&i.enter()};return l?n=function(){s.nextTick(f)}:o?(u=!0,c=document.createTextNode(""),new o(f).observe(c,{characterData:!0}),n=function(){c.data=u=!u}):a&&a.resolve?(h=a.resolve(),n=function(){h.then(f)}):n=function(){r.call(i,f)},function(i){var r={fn:i,next:void 0};e&&(e.next=r),t||(t=r, -n()),e=r}}},function(t,e,n){"use strict";var i=n(98),r=n(134),o=n(109),s=n(100),a=n(172),l=Object.assign;t.exports=!l||n(38)(function(){var t={},e={},n=Symbol(),i="abcdefghijklmnopqrst";return t[n]=7,i.split("").forEach(function(t){e[t]=t}),7!=l({},t)[n]||Object.keys(l({},e)).join("")!=i})?function(t,e){for(var n,l,u,c,h,f=s(t),d=arguments.length,p=1,g=r.f,m=o.f;d>p;)for(n=a(arguments[p++]),l=g?i(n).concat(g(n)):i(n),u=l.length,c=0;u>c;)m.call(n,h=l[c++])&&(f[h]=n[h]);return f}:l},function(t,e,n){var i=n(39),r=n(18),o=n(98);t.exports=n(55)?Object.defineProperties:function(t,e){r(t);for(var n,s=o(e),a=s.length,l=0;a>l;)i.f(t,n=s[l++],e[n]);return t}},function(t,e,n){var i=n(61),r=n(178).f,o={}.toString,s="object"==typeof window&&window&&Object.getOwnPropertyNames?Object.getOwnPropertyNames(window):[],a=function(t){try{return r(t)}catch(t){return s.slice()}};t.exports.f=function(t){return s&&"[object Window]"==o.call(t)?a(t):r(i(t))}},function(t,e,n){var i=n(178),r=n(134),o=n(18),s=n(20).Reflect;t.exports=s&&s.ownKeys||function(t){var e=i.f(o(t)),n=r.f;return n?e.concat(n(t)):e}},function(t,e,n){var i=n(20).parseFloat,r=n(245).trim;t.exports=1/i(n(185)+"-0")!=-1/0?function(t){var e=r(t+"",3),n=i(e);return 0===n&&"-"==e.charAt(0)?-0:n}:i},function(t,e,n){var i=n(20).parseInt,r=n(245).trim,o=n(185),s=/^[\-+]?0[xX]/;t.exports=8!==i(o+"08")||22!==i(o+"0x16")?function(t,e){var n=r(t+"",3);return i(n,e>>>0||(s.test(n)?16:10))}:i},function(t,e){t.exports=Object.is||function(t,e){return t===e?0!==t||1/t==1/e:t!=t&&e!=e}},function(t,e,n){var i=n(18),r=n(94),o=n(22)("species");t.exports=function(t,e){var n,s=i(t).constructor;return void 0===s||void 0==(n=i(s)[o])?e:r(n)}},function(t,e,n){"use strict";var i=n(136),r=n(83);t.exports=function(t){var e=r(this)+"",n="",o=i(t);if(o<0||o==1/0)throw RangeError("Count can't be negative");for(;o>0;(o>>>=1)&&(e+=e))1&o&&(n+=e);return n}},function(t,e,n){var i=n(20),r=n(96),o=n(132),s=n(247),a=n(39).f;t.exports=function(t){var e=r.Symbol||(r.Symbol=o?{}:i.Symbol||{});"_"==t.charAt(0)||t in e||a(e,t,{value:s.f(t)})}},function(t,e,n){var i=n(4);i(i.P,"Array",{copyWithin:n(391)}),n(95)("copyWithin")},function(t,e,n){var i=n(4);i(i.P,"Array",{fill:n(392)}),n(95)("fill")},function(t,e,n){"use strict";var i=n(4),r=n(227)(6),o="findIndex",s=!0;o in[]&&Array(1)[o](function(){s=!1}),i(i.P+i.F*s,"Array",{findIndex:function(t){return r(this,t,arguments.length>1?arguments[1]:void 0)}}),n(95)(o)},function(t,e,n){"use strict";var i=n(4),r=n(227)(5),o="find",s=!0;o in[]&&Array(1)[o](function(){s=!1}),i(i.P+i.F*s,"Array",{find:function(t){return r(this,t,arguments.length>1?arguments[1]:void 0)}}),n(95)(o)},function(t,e,n){"use strict";var i=n(74),r=n(4),o=n(100),s=n(238),a=n(235),l=n(62),u=n(231),c=n(248);r(r.S+r.F*!n(174)(function(t){Array.from(t)}),"Array",{from:function(t){var e,n,r,h,f=o(t),d="function"==typeof this?this:Array,p=arguments.length,g=p>1?arguments[1]:void 0,m=void 0!==g,y=0,v=c(f);if(m&&(g=i(g,p>2?arguments[2]:void 0,2)),void 0==v||d==Array&&a(v))for(e=l(f.length), -n=new d(e);e>y;y++)u(n,y,m?g(f[y],y):f[y]);else for(h=v.call(f),n=new d;!(r=h.next()).done;y++)u(n,y,m?s(h,g,[r.value,y],!0):r.value);return n.length=y,n}})},function(t,e,n){"use strict";var i=n(95),r=n(240),o=n(131),s=n(61);t.exports=n(173)(Array,"Array",function(t,e){this._t=s(t),this._i=0,this._k=e},function(){var t=this._t,e=this._k,n=this._i++;return!t||n>=t.length?(this._t=void 0,r(1)):"keys"==e?r(0,n):"values"==e?r(0,t[n]):r(0,[n,t[n]])},"values"),o.Arguments=o.Array,i("keys"),i("values"),i("entries")},function(t,e,n){"use strict";var i=n(4),r=n(231);i(i.S+i.F*n(38)(function(){function t(){}return!(Array.of.call(t)instanceof t)}),"Array",{of:function(){for(var t=0,e=arguments.length,n=new("function"==typeof this?this:Array)(e);e>t;)r(n,t,arguments[t++]);return n.length=e,n}})},function(t,e,n){n(181)("Array")},function(t,e,n){var i=n(22)("toPrimitive"),r=Date.prototype;i in r||n(84)(r,i,n(396))},function(t,e,n){var i=Date.prototype,r="Invalid Date",o="toString",s=i[o],a=i.getTime;new Date(NaN)+""!=r&&n(99)(i,o,function(){var t=a.call(this);return t===t?s.call(this):r})},function(t,e,n){"use strict";var i=n(29),r=n(108),o=n(22)("hasInstance"),s=Function.prototype;o in s||n(39).f(s,o,{value:function(t){if("function"!=typeof this||!i(t))return!1;if(!i(this.prototype))return t instanceof this;for(;t=r(t);)if(this.prototype===t)return!0;return!1}})},function(t,e,n){var i=n(39).f,r=n(85),o=n(51),s=Function.prototype,a=/^\s*function ([^ (]*)/,l="name",u=Object.isExtensible||function(){return!0};l in s||n(55)&&i(s,l,{configurable:!0,get:function(){try{var t=this,e=(""+t).match(a)[1];return o(t,l)||!u(t)||i(t,l,r(5,e)),e}catch(t){return""}}})},function(t,e,n){"use strict";var i=n(229);t.exports=n(230)("Map",function(t){return function(){return t(this,arguments.length>0?arguments[0]:void 0)}},{get:function(t){var e=i.getEntry(this,t);return e&&e.v},set:function(t,e){return i.def(this,0===t?0:t,e)}},i,!0)},function(t,e,n){var i=n(4),r=n(241),o=Math.sqrt,s=Math.acosh;i(i.S+i.F*!(s&&710==Math.floor(s(Number.MAX_VALUE))&&s(1/0)==1/0),"Math",{acosh:function(t){return(t=+t)<1?NaN:t>94906265.62425156?Math.log(t)+Math.LN2:r(t-1+o(t-1)*o(t+1))}})},function(t,e,n){function i(t){return isFinite(t=+t)&&0!=t?t<0?-i(-t):Math.log(t+Math.sqrt(t*t+1)):t}var r=n(4),o=Math.asinh;r(r.S+r.F*!(o&&1/o(0)>0),"Math",{asinh:i})},function(t,e,n){var i=n(4),r=Math.atanh;i(i.S+i.F*!(r&&1/r(-0)<0),"Math",{atanh:function(t){return 0==(t=+t)?t:Math.log((1+t)/(1-t))/2}})},function(t,e,n){var i=n(4),r=n(176);i(i.S,"Math",{cbrt:function(t){return r(t=+t)*Math.pow(Math.abs(t),1/3)}})},function(t,e,n){var i=n(4);i(i.S,"Math",{clz32:function(t){return(t>>>=0)?31-Math.floor(Math.log(t+.5)*Math.LOG2E):32}})},function(t,e,n){var i=n(4),r=Math.exp;i(i.S,"Math",{cosh:function(t){return(r(t=+t)+r(-t))/2}})},function(t,e,n){var i=n(4),r=n(175);i(i.S+i.F*(r!=Math.expm1),"Math",{expm1:r})},function(t,e,n){var i=n(4),r=n(176),o=Math.pow,s=o(2,-52),a=o(2,-23),l=o(2,127)*(2-a),u=o(2,-126),c=function(t){return t+1/s-1/s};i(i.S,"Math",{fround:function(t){ -var e,n,i=Math.abs(t),o=r(t);return il||n!=n?o*(1/0):o*n)}})},function(t,e,n){var i=n(4),r=Math.abs;i(i.S,"Math",{hypot:function(t,e){for(var n,i,o=0,s=0,a=arguments.length,l=0;s0?(i=n/l,o+=i*i):o+=n;return l===1/0?1/0:l*Math.sqrt(o)}})},function(t,e,n){var i=n(4),r=Math.imul;i(i.S+i.F*n(38)(function(){return-5!=r(4294967295,5)||2!=r.length}),"Math",{imul:function(t,e){var n=65535,i=+t,r=+e,o=n&i,s=n&r;return 0|o*s+((n&i>>>16)*s+o*(n&r>>>16)<<16>>>0)}})},function(t,e,n){var i=n(4);i(i.S,"Math",{log10:function(t){return Math.log(t)/Math.LN10}})},function(t,e,n){var i=n(4);i(i.S,"Math",{log1p:n(241)})},function(t,e,n){var i=n(4);i(i.S,"Math",{log2:function(t){return Math.log(t)/Math.LN2}})},function(t,e,n){var i=n(4);i(i.S,"Math",{sign:n(176)})},function(t,e,n){var i=n(4),r=n(175),o=Math.exp;i(i.S+i.F*n(38)(function(){return-2e-17!=!Math.sinh(-2e-17)}),"Math",{sinh:function(t){return Math.abs(t=+t)<1?(r(t)-r(-t))/2:(o(t-1)-o(-t-1))*(Math.E/2)}})},function(t,e,n){var i=n(4),r=n(175),o=Math.exp;i(i.S,"Math",{tanh:function(t){var e=r(t=+t),n=r(-t);return e==1/0?1:n==1/0?-1:(e-n)/(o(t)+o(-t))}})},function(t,e,n){var i=n(4);i(i.S,"Math",{trunc:function(t){return(t>0?Math.floor:Math.ceil)(t)}})},function(t,e,n){var i=n(4);i(i.S,"Number",{EPSILON:Math.pow(2,-52)})},function(t,e,n){var i=n(4),r=n(20).isFinite;i(i.S,"Number",{isFinite:function(t){return"number"==typeof t&&r(t)}})},function(t,e,n){var i=n(4);i(i.S,"Number",{isInteger:n(237)})},function(t,e,n){var i=n(4);i(i.S,"Number",{isNaN:function(t){return t!=t}})},function(t,e,n){var i=n(4),r=n(237),o=Math.abs;i(i.S,"Number",{isSafeInteger:function(t){return r(t)&&o(t)<=9007199254740991}})},function(t,e,n){var i=n(4);i(i.S,"Number",{MAX_SAFE_INTEGER:9007199254740991})},function(t,e,n){var i=n(4);i(i.S,"Number",{MIN_SAFE_INTEGER:-9007199254740991})},function(t,e,n){var i=n(4),r=n(407);i(i.S+i.F*(Number.parseFloat!=r),"Number",{parseFloat:r})},function(t,e,n){var i=n(4),r=n(408);i(i.S+i.F*(Number.parseInt!=r),"Number",{parseInt:r})},function(t,e,n){"use strict";var i=n(4),r=n(38),o=n(390),s=1..toPrecision;i(i.P+i.F*(r(function(){return"1"!==s.call(1,void 0)})||!r(function(){s.call({})})),"Number",{toPrecision:function(t){var e=o(this,"Number#toPrecision: incorrect invocation!");return void 0===t?s.call(e):s.call(e,t)}})},function(t,e,n){var i=n(4);i(i.S+i.F,"Object",{assign:n(403)})},function(t,e,n){var i=n(4);i(i.S,"Object",{is:n(409)})},function(t,e,n){var i=n(4);i(i.S,"Object",{setPrototypeOf:n(180).set})},function(t,e,n){"use strict";var i,r,o,s,a,l,u,c,h,f,d,p,g,m,y,v,b,_=n(132),w=n(20),x=n(74),k=n(228),S=n(4),M=n(29),D=n(94),T=n(167),C=n(171),P=n(410),O=n(246).set,E=n(402)(),N="Promise",L=w.TypeError,A=w.process,I=w[N];A=w.process,i="process"==k(A),r=function(){},l=!!function(){try{var t=I.resolve(1),e=(t.constructor={})[n(22)("species")]=function(t){t(r,r)};return(i||"function"==typeof PromiseRejectionEvent)&&t.then(r)instanceof e}catch(t){}}(),u=function(t,e){ -return t===e||t===I&&e===a},c=function(t){var e;return!(!M(t)||"function"!=typeof(e=t.then))&&e},h=function(t){return u(I,t)?new f(t):new s(t)},f=s=function(t){var e,n;this.promise=new t(function(t,i){if(void 0!==e||void 0!==n)throw L("Bad Promise constructor");e=t,n=i}),this.resolve=D(e),this.reject=D(n)},d=function(t){try{t()}catch(t){return{error:t}}},p=function(t,e){if(!t._n){t._n=!0;var n=t._c;E(function(){for(var i=t._v,r=1==t._s,o=0,s=function(e){var n,o,s=r?e.ok:e.fail,a=e.resolve,l=e.reject,u=e.domain;try{s?(r||(2==t._h&&y(t),t._h=1),!0===s?n=i:(u&&u.enter(),n=s(i),u&&u.exit()),n===e.promise?l(L("Promise-chain cycle")):(o=c(n))?o.call(n,a,l):a(n)):l(i)}catch(t){l(t)}};n.length>o;)s(n[o++]);t._c=[],t._n=!1,e&&!t._h&&g(t)})}},g=function(t){O.call(w,function(){var e,n,r,o=t._v;if(m(t)&&(e=d(function(){i?A.emit("unhandledRejection",o,t):(n=w.onunhandledrejection)?n({promise:t,reason:o}):(r=w.console)&&r.error&&r.error("Unhandled promise rejection",o)}),t._h=i||m(t)?2:1),t._a=void 0,e)throw e.error})},m=function(t){if(1==t._h)return!1;for(var e,n=t._a||t._c,i=0;n.length>i;)if(e=n[i++],e.fail||!m(e.promise))return!1;return!0},y=function(t){O.call(w,function(){var e;i?A.emit("rejectionHandled",t):(e=w.onrejectionhandled)&&e({promise:t,reason:t._v})})},v=function(t){var e=this;e._d||(e._d=!0,e=e._w||e,e._v=t,e._s=2,e._a||(e._a=e._c.slice()),p(e,!0))},b=function(t){var e,n=this;if(!n._d){n._d=!0,n=n._w||n;try{if(n===t)throw L("Promise can't be resolved itself");(e=c(t))?E(function(){var i={_w:n,_d:!1};try{e.call(t,x(b,i,1),x(v,i,1))}catch(t){v.call(i,t)}}):(n._v=t,n._s=1,p(n,!1))}catch(t){v.call({_w:n,_d:!1},t)}}},l||(I=function(t){T(this,I,N,"_h"),D(t),o.call(this);try{t(x(b,this,1),x(v,this,1))}catch(t){v.call(this,t)}},o=function(t){this._c=[],this._a=void 0,this._s=0,this._d=!1,this._v=void 0,this._h=0,this._n=!1},o.prototype=n(179)(I.prototype,{then:function(t,e){var n=h(P(this,I));return n.ok="function"!=typeof t||t,n.fail="function"==typeof e&&e,n.domain=i?A.domain:void 0,this._c.push(n),this._a&&this._a.push(n),this._s&&p(this,!1),n.promise},catch:function(t){return this.then(void 0,t)}}),f=function(){var t=new o;this.promise=t,this.resolve=x(b,t,1),this.reject=x(v,t,1)}),S(S.G+S.W+S.F*!l,{Promise:I}),n(110)(I,N),n(181)(N),a=n(96)[N],S(S.S+S.F*!l,N,{reject:function(t){var e=h(this);return(0,e.reject)(t),e.promise}}),S(S.S+S.F*(_||!l),N,{resolve:function(t){if(t instanceof I&&u(t.constructor,this))return t;var e=h(this);return(0,e.resolve)(t),e.promise}}),S(S.S+S.F*!(l&&n(174)(function(t){I.all(t).catch(r)})),N,{all:function(t){var e=this,n=h(e),i=n.resolve,r=n.reject,o=d(function(){var n=[],o=0,s=1;C(t,!1,function(t){var a=o++,l=!1;n.push(void 0),s++,e.resolve(t).then(function(t){l||(l=!0,n[a]=t,--s||i(n))},r)}),--s||i(n)});return o&&r(o.error),n.promise},race:function(t){var e=this,n=h(e),i=n.reject,r=d(function(){C(t,!1,function(t){e.resolve(t).then(n.resolve,i)})});return r&&i(r.error),n.promise}})},function(t,e,n){var i=n(4),r=n(94),o=n(18),s=(n(20).Reflect||{}).apply,a=Function.apply -;i(i.S+i.F*!n(38)(function(){s(function(){})}),"Reflect",{apply:function(t,e,n){var i=r(t),l=o(n);return s?s(i,e,l):a.call(i,e,l)}})},function(t,e,n){var i=n(4),r=n(133),o=n(94),s=n(18),a=n(29),l=n(38),u=n(395),c=(n(20).Reflect||{}).construct,h=l(function(){function t(){}return!(c(function(){},[],t)instanceof t)}),f=!l(function(){c(function(){})});i(i.S+i.F*(h||f),"Reflect",{construct:function(t,e){var n,i,l,d,p;if(o(t),s(e),n=arguments.length<3?t:o(arguments[2]),f&&!h)return c(t,e,n);if(t==n){switch(e.length){case 0:return new t;case 1:return new t(e[0]);case 2:return new t(e[0],e[1]);case 3:return new t(e[0],e[1],e[2]);case 4:return new t(e[0],e[1],e[2],e[3])}return i=[null],i.push.apply(i,e),new(u.apply(t,i))}return l=n.prototype,d=r(a(l)?l:Object.prototype),p=Function.apply.call(t,d,e),a(p)?p:d}})},function(t,e,n){var i=n(39),r=n(4),o=n(18),s=n(111);r(r.S+r.F*n(38)(function(){Reflect.defineProperty(i.f({},1,{value:1}),1,{value:2})}),"Reflect",{defineProperty:function(t,e,n){o(t),e=s(e,!0),o(n);try{return i.f(t,e,n),!0}catch(t){return!1}}})},function(t,e,n){var i=n(4),r=n(97).f,o=n(18);i(i.S,"Reflect",{deleteProperty:function(t,e){var n=r(o(t),e);return!(n&&!n.configurable)&&delete t[e]}})},function(t,e,n){"use strict";var i=n(4),r=n(18),o=function(t){this._t=r(t),this._i=0;var e,n=this._k=[];for(e in t)n.push(e)};n(239)(o,"Object",function(){var t,e=this,n=e._k;do{if(e._i>=n.length)return{value:void 0,done:!0}}while(!((t=n[e._i++])in e._t));return{value:t,done:!1}}),i(i.S,"Reflect",{enumerate:function(t){return new o(t)}})},function(t,e,n){var i=n(97),r=n(4),o=n(18);r(r.S,"Reflect",{getOwnPropertyDescriptor:function(t,e){return i.f(o(t),e)}})},function(t,e,n){var i=n(4),r=n(108),o=n(18);i(i.S,"Reflect",{getPrototypeOf:function(t){return r(o(t))}})},function(t,e,n){function i(t,e){var n,a,c=arguments.length<3?t:arguments[2];return u(t)===c?t[e]:(n=r.f(t,e))?s(n,"value")?n.value:void 0!==n.get?n.get.call(c):void 0:l(a=o(t))?i(a,e,c):void 0}var r=n(97),o=n(108),s=n(51),a=n(4),l=n(29),u=n(18);a(a.S,"Reflect",{get:i})},function(t,e,n){var i=n(4);i(i.S,"Reflect",{has:function(t,e){return e in t}})},function(t,e,n){var i=n(4),r=n(18),o=Object.isExtensible;i(i.S,"Reflect",{isExtensible:function(t){return r(t),!o||o(t)}})},function(t,e,n){var i=n(4);i(i.S,"Reflect",{ownKeys:n(406)})},function(t,e,n){var i=n(4),r=n(18),o=Object.preventExtensions;i(i.S,"Reflect",{preventExtensions:function(t){r(t);try{return o&&o(t),!0}catch(t){return!1}}})},function(t,e,n){var i=n(4),r=n(180);r&&i(i.S,"Reflect",{setPrototypeOf:function(t,e){r.check(t,e);try{return r.set(t,e),!0}catch(t){return!1}}})},function(t,e,n){function i(t,e,n){var l,f,d=arguments.length<4?t:arguments[3],p=o.f(c(t),e);if(!p){if(h(f=s(t)))return i(f,e,n,d);p=u(0)}return a(p,"value")?!(!1===p.writable||!h(d))&&(l=o.f(d,e)||u(0),l.value=n,r.f(d,e,l),!0):void 0!==p.set&&(p.set.call(d,n),!0)}var r=n(39),o=n(97),s=n(108),a=n(51),l=n(4),u=n(85),c=n(18),h=n(29);l(l.S,"Reflect",{set:i})},function(t,e,n){n(55)&&"g"!=/./g.flags&&n(39).f(RegExp.prototype,"flags",{ -configurable:!0,get:n(398)})},function(t,e,n){"use strict";var i=n(229);t.exports=n(230)("Set",function(t){return function(){return t(this,arguments.length>0?arguments[0]:void 0)}},{add:function(t){return i.def(this,t=0===t?0:t,t)}},i)},function(t,e,n){"use strict";var i=n(4),r=n(244)(!1);i(i.P,"String",{codePointAt:function(t){return r(this,t)}})},function(t,e,n){"use strict";var i=n(4),r=n(62),o=n(184),s="endsWith",a=""[s];i(i.P+i.F*n(170)(s),"String",{endsWith:function(t){var e=o(this,t,s),n=arguments.length>1?arguments[1]:void 0,i=r(e.length),l=void 0===n?i:Math.min(r(n),i),u=t+"";return a?a.call(e,u,l):e.slice(l-u.length,l)===u}})},function(t,e,n){var i=n(4),r=n(135),o=String.fromCharCode,s=String.fromCodePoint;i(i.S+i.F*(!!s&&1!=s.length),"String",{fromCodePoint:function(t){for(var e,n=[],i=arguments.length,s=0;i>s;){if(e=+arguments[s++],r(e,1114111)!==e)throw RangeError(e+" is not a valid code point");n.push(e<65536?o(e):o(55296+((e-=65536)>>10),e%1024+56320))}return n.join("")}})},function(t,e,n){"use strict";var i=n(4),r=n(184),o="includes";i(i.P+i.F*n(170)(o),"String",{includes:function(t){return!!~r(this,t,o).indexOf(t,arguments.length>1?arguments[1]:void 0)}})},function(t,e,n){"use strict";var i=n(244)(!0);n(173)(String,"String",function(t){this._t=t+"",this._i=0},function(){var t,e=this._t,n=this._i;return n>=e.length?{value:void 0,done:!0}:(t=i(e,n),this._i+=t.length,{value:t,done:!1})})},function(t,e,n){var i=n(4),r=n(61),o=n(62);i(i.S,"String",{raw:function(t){for(var e=r(t.raw),n=o(e.length),i=arguments.length,s=[],a=0;n>a;)s.push(e[a++]+""),a1?arguments[1]:void 0,e.length)),i=t+"";return a?a.call(e,i,n):e.slice(n,n+i.length)===i}})},function(t,e,n){"use strict";var i,r,o=n(20),s=n(51),a=n(55),l=n(4),u=n(99),c=n(177).KEY,h=n(38),f=n(183),d=n(110),p=n(112),g=n(22),m=n(247),y=n(412),v=n(401),b=n(397),_=n(236),w=n(18),x=n(61),k=n(111),S=n(85),M=n(133),D=n(405),T=n(97),C=n(39),P=n(98),O=T.f,E=C.f,N=D.f,L=o.Symbol,A=o.JSON,I=A&&A.stringify,j="prototype",F=g("_hidden"),H=g("toPrimitive"),Y={}.propertyIsEnumerable,z=f("symbol-registry"),R=f("symbols"),W=f("op-symbols"),V=Object[j],B="function"==typeof L,U=o.QObject,q=!U||!U[j]||!U[j].findChild,$=a&&h(function(){return 7!=M(E({},"a",{get:function(){return E(this,"a",{value:7}).a}})).a})?function(t,e,n){var i=O(V,e);i&&delete V[e],E(t,e,n),i&&t!==V&&E(V,e,i)}:E,G=function(t){var e=R[t]=M(L[j]);return e._k=t,e},X=B&&"symbol"==typeof L.iterator?function(t){return"symbol"==typeof t}:function(t){return t instanceof L},K=function(t,e,n){return t===V&&K(W,e,n),w(t),e=k(e,!0),w(n),s(R,e)?(n.enumerable?(s(t,F)&&t[F][e]&&(t[F][e]=!1),n=M(n,{enumerable:S(0,!1)})):(s(t,F)||E(t,F,S(1,{})),t[F][e]=!0),$(t,e,n)):E(t,e,n)},Q=function(t,e){w(t) -;for(var n,i=b(e=x(e)),r=0,o=i.length;o>r;)K(t,n=i[r++],e[n]);return t},J=function(t,e){return void 0===e?M(t):Q(M(t),e)},Z=function(t){var e=Y.call(this,t=k(t,!0));return!(this===V&&s(R,t)&&!s(W,t))&&(!(e||!s(this,t)||!s(R,t)||s(this,F)&&this[F][t])||e)},tt=function(t,e){if(t=x(t),e=k(e,!0),t!==V||!s(R,e)||s(W,e)){var n=O(t,e);return!n||!s(R,e)||s(t,F)&&t[F][e]||(n.enumerable=!0),n}},et=function(t){for(var e,n=N(x(t)),i=[],r=0;n.length>r;)s(R,e=n[r++])||e==F||e==c||i.push(e);return i},nt=function(t){for(var e,n=t===V,i=N(n?W:x(t)),r=[],o=0;i.length>o;)!s(R,e=i[o++])||n&&!s(V,e)||r.push(R[e]);return r};for(B||(L=function(){var t,e;if(this instanceof L)throw TypeError("Symbol is not a constructor!");return t=p(arguments.length>0?arguments[0]:void 0),e=function(n){this===V&&e.call(W,n),s(this,F)&&s(this[F],t)&&(this[F][t]=!1),$(this,t,S(1,n))},a&&q&&$(V,t,{configurable:!0,set:e}),G(t)},u(L[j],"toString",function(){return this._k}),T.f=tt,C.f=K,n(178).f=D.f=et,n(109).f=Z,n(134).f=nt,a&&!n(132)&&u(V,"propertyIsEnumerable",Z,!0),m.f=function(t){return G(g(t))}),l(l.G+l.W+l.F*!B,{Symbol:L}),i="hasInstance,isConcatSpreadable,iterator,match,replace,search,species,split,toPrimitive,toStringTag,unscopables".split(","),r=0;i.length>r;)g(i[r++]);for(i=P(g.store),r=0;i.length>r;)y(i[r++]);l(l.S+l.F*!B,"Symbol",{for:function(t){return s(z,t+="")?z[t]:z[t]=L(t)},keyFor:function(t){if(X(t))return v(z,t);throw TypeError(t+" is not a symbol!")},useSetter:function(){q=!0},useSimple:function(){q=!1}}),l(l.S+l.F*!B,"Object",{create:J,defineProperty:K,defineProperties:Q,getOwnPropertyDescriptor:tt,getOwnPropertyNames:et,getOwnPropertySymbols:nt}),A&&l(l.S+l.F*(!B||h(function(){var t=L();return"[null]"!=I([t])||"{}"!=I({a:t})||"{}"!=I(Object(t))})),"JSON",{stringify:function(t){if(void 0!==t&&!X(t)){for(var e,n,i=[t],r=1;arguments.length>r;)i.push(arguments[r++]);return e=i[1],"function"==typeof e&&(n=e),!n&&_(e)||(e=function(t,e){if(n&&(e=n.call(this,t,e)),!X(e))return e}),i[1]=e,I.apply(A,i)}}}),L[j][H]||n(84)(L[j],H,L[j].valueOf),d(L,"Symbol"),d(Math,"Math",!0),d(o.JSON,"JSON",!0)},function(t,e,n){"use strict";var i=n(4),r=n(226)(!0);i(i.P,"Array",{includes:function(t){return r(this,t,arguments.length>1?arguments[1]:void 0)}}),n(95)("includes")},function(t,e,n){var i=n(4),r=n(243)(!0);i(i.S,"Object",{entries:function(t){return r(t)}})},function(t,e,n){var i=n(4),r=n(243)(!1);i(i.S,"Object",{values:function(t){return r(t)}})},,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,function(t,e){},,,,,,,,,,,,,,,,,,,,,,,,,,,,,,function(t,e){"use strict";var n=function(){function t(t,e){this.mouseFlag=!1,this.accuracy=2,this.value=1,this.colorInput=t,this.$el=$('
'),e&&this.$el.hide(),this.$gradient=$('
').appendTo(this.$el),this.$roller=$('').appendTo(this.$gradient)}return t.prototype.calculateRollerPosition=function(t){ -var e=t.pageX,n=this.$gradient.offset().left,i=e-n,r=this.$gradient.width();return i>r?100:i<0?0:~~(i/r*100)},t.prototype.toRgb=function(t){var e;return~t.indexOf("#")?t:(e=t.match(/[0-9.]+/g),e?"rgb("+e.slice(0,3).join(", ")+")":"rgb(127, 127, 127)")},t.prototype.setValue=function(t){if(1===t)return void(this.value=t);this.value=t.toFixed(this.accuracy)},t.prototype.updateRoller=function(){this.$roller.css("left",100-100*this.value+"%")},t.prototype.rollerMoveHandler=function(t){if(this.mouseFlag){var e=this.calculateRollerPosition(t);this.setValue((100-e)/100),$(this).trigger("change",[this.val()]),this.$roller.css("left",e+"%")}t.preventDefault()},t.prototype.mouseupHandler=function(t){this.mouseFlag&&(this.mouseFlag=!1,$(this).trigger("afterChange",[this.val()]))},t.prototype.initEvents=function(){var t=function(t){return this.rollerMoveHandler(t)}.bind(this),e=function(n){return $(document).off("mousemove mouseup",t),$(document).off("mouseup",e),this.mouseupHandler(n)}.bind(this);this.$el.on("mousedown",function(n){this.mouseFlag=!0,$(document).on("mousemove mouseup",t),$(document).on("mouseup",e),n.preventDefault()}.bind(this)),this.colorInput.on("change",function(t){this.updateColor()}.bind(this))},t.prototype.removeEvents=function(){},t.prototype.updateColor=function(){var t=this.colorInput.val()||"black",e=this.toRgb(t),n=["-moz-linear-gradient(left, %COLOR 0%, transparent 100%)","-webkit-gradient(linear, left top, right top, color-stop(0%,%COLOR), color-stop(100%,transparent))","-webkit-linear-gradient(left, %COLOR 0%,transparent 100%)","-o-linear-gradient(left, %COLOR 0%,transparent 100%)","linear-gradient(to right, %COLOR 0%,transparent 100%)"];$.browser.msie?this.$gradient.css("filter","progid:DXImageTransform.Microsoft.gradient(startColorstr='"+e+"', EndColor=0, GradientType=1)"):n.forEach(function(t){this.$gradient.css("background-image",t.replace(/%COLOR/,e))}.bind(this))},t.prototype.val=function(t){return t&&(this.setValue(+t),this.updateRoller()),this.value},function(e,n){return new t(e,n)}}();t.exports=n},,,,function(t,e,n){"use strict";function i(t){return t&&t.__esModule?t:{default:t}}function r(t){var e,n;if(t&&t.__esModule)return t;if(e={},null!=t)for(n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n]);return e.default=t,e}function o(t,e){var n,i,r,o=Object.getOwnPropertyNames(e);for(n=0;n-1?n[1].toLowerCase():n[0]))},t.prototype.formatLanguageCode=function(t){var e,n;return"string"==typeof t&&t.indexOf("-")>-1?(e=["hans","hant","latn","cyrl","cans","mong","arab"],n=t.split("-"),this.options.lowerCaseLng?n=n.map(function(t){return t.toLowerCase()}):2===n.length?(n[0]=n[0].toLowerCase(),n[1]=n[1].toUpperCase(),e.indexOf(n[1].toLowerCase())>-1&&(n[1]=o(n[1].toLowerCase()))):3===n.length&&(n[0]=n[0].toLowerCase(),2===n[1].length&&(n[1]=n[1].toUpperCase()),"sgn"!==n[0]&&2===n[2].length&&(n[2]=n[2].toUpperCase()),e.indexOf(n[1].toLowerCase())>-1&&(n[1]=o(n[1].toLowerCase())),e.indexOf(n[2].toLowerCase())>-1&&(n[2]=o(n[2].toLowerCase()))),n.join("-")):this.options.cleanCode||this.options.lowerCaseLng?t.toLowerCase():t},t.prototype.isWhitelisted=function(t,e){return("languageOnly"===this.options.load||this.options.nonExplicitWhitelist&&!e)&&(t=this.getLanguagePartFromCode(t)),!this.whitelist||!this.whitelist.length||this.whitelist.indexOf(t)>-1},t.prototype.toResolveHierarchy=function(t,e){var n,i,r=this;return e=e||this.options.fallbackLng||[],"string"==typeof e&&(e=[e]),n=[],i=function(t){ -var e=!(arguments.length<=1||void 0===arguments[1])&&arguments[1];r.isWhitelisted(t,e)?n.push(t):r.logger.warn("rejecting non-whitelisted language code: "+t)},"string"==typeof t&&t.indexOf("-")>-1?("languageOnly"!==this.options.load&&i(this.formatLanguageCode(t),!0),"currentOnly"!==this.options.load&&i(this.getLanguagePartFromCode(t))):"string"==typeof t&&i(this.formatLanguageCode(t)),e.forEach(function(t){n.indexOf(t)<0&&i(r.formatLanguageCode(t))}),n},t}(),e.default=l},function(t,e,n){"use strict";function i(t){return t&&t.__esModule?t:{default:t}}function r(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function o(){var t={};return u.forEach(function(e){e.lngs.forEach(function(n){return t[n]={numbers:e.nr,plurals:c[e.fc]}})}),t}var s,a,l,u,c,h;Object.defineProperty(e,"__esModule",{value:!0}),s="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol?"symbol":typeof t},a=n(75),l=i(a),u=[{lngs:["ach","ak","am","arn","br","fil","gun","ln","mfe","mg","mi","oc","tg","ti","tr","uz","wa"],nr:[1,2],fc:1},{lngs:["af","an","ast","az","bg","bn","ca","da","de","dev","el","en","eo","es","es_ar","et","eu","fi","fo","fur","fy","gl","gu","ha","he","hi","hu","hy","ia","it","kn","ku","lb","mai","ml","mn","mr","nah","nap","nb","ne","nl","nn","no","nso","pa","pap","pms","ps","pt","pt_br","rm","sco","se","si","so","son","sq","sv","sw","ta","te","tk","ur","yo"],nr:[1,2],fc:2},{lngs:["ay","bo","cgg","fa","id","ja","jbo","ka","kk","km","ko","ky","lo","ms","sah","su","th","tt","ug","vi","wo","zh"],nr:[1],fc:3},{lngs:["be","bs","dz","hr","ru","sr","uk"],nr:[1,2,5],fc:4},{lngs:["ar"],nr:[0,1,2,3,11,100],fc:5},{lngs:["cs","sk"],nr:[1,2,5],fc:6},{lngs:["csb","pl"],nr:[1,2,5],fc:7},{lngs:["cy"],nr:[1,2,3,8],fc:8},{lngs:["fr"],nr:[1,2],fc:9},{lngs:["ga"],nr:[1,2,3,7,11],fc:10},{lngs:["gd"],nr:[1,2,3,20],fc:11},{lngs:["is"],nr:[1,2],fc:12},{lngs:["jv"],nr:[0,1],fc:13},{lngs:["kw"],nr:[1,2,3,4],fc:14},{lngs:["lt"],nr:[1,2,10],fc:15},{lngs:["lv"],nr:[1,2,0],fc:16},{lngs:["mk"],nr:[1,2],fc:17},{lngs:["mnk"],nr:[0,1,2],fc:18},{lngs:["mt"],nr:[1,2,11,20],fc:19},{lngs:["or"],nr:[2,1],fc:2},{lngs:["ro"],nr:[1,2,20],fc:20},{lngs:["sl"],nr:[5,1,2,3],fc:21}],c={1:function(t){return+(t>1)},2:function(t){return+(1!=t)},3:function(t){return 0},4:function(t){return+(t%10==1&&t%100!=11?0:t%10>=2&&t%10<=4&&(t%100<10||t%100>=20)?1:2)},5:function(t){return+(0===t?0:1==t?1:2==t?2:t%100>=3&&t%100<=10?3:t%100>=11?4:5)},6:function(t){return+(1==t?0:t>=2&&t<=4?1:2)},7:function(t){return+(1==t?0:t%10>=2&&t%10<=4&&(t%100<10||t%100>=20)?1:2)},8:function(t){return+(1==t?0:2==t?1:8!=t&&11!=t?2:3)},9:function(t){return+(t>=2)},10:function(t){return+(1==t?0:2==t?1:t<7?2:t<11?3:4)},11:function(t){return+(1==t||11==t?0:2==t||12==t?1:t>2&&t<20?2:3)},12:function(t){return+(t%10!=1||t%100==11)},13:function(t){return+(0!==t)},14:function(t){return+(1==t?0:2==t?1:3==t?2:3)},15:function(t){ -return+(t%10==1&&t%100!=11?0:t%10>=2&&(t%100<10||t%100>=20)?1:2)},16:function(t){return+(t%10==1&&t%100!=11?0:0!==t?1:2)},17:function(t){return+(1==t||t%10==1?0:1)},18:function(t){return+(0==t?0:1==t?1:2)},19:function(t){return+(1==t?0:0===t||t%100>1&&t%100<11?1:t%100>10&&t%100<20?2:3)},20:function(t){return+(1==t?0:0===t||t%100>0&&t%100<20?1:2)},21:function(t){return+(t%100==1?1:t%100==2?2:t%100==3||t%100==4?3:0)}},h=function(){function t(e){var n=arguments.length<=1||void 0===arguments[1]?{}:arguments[1];r(this,t),this.languageUtils=e,this.options=n,this.logger=l.default.create("pluralResolver"),this.rules=o()}return t.prototype.addRule=function(t,e){this.rules[t]=e},t.prototype.getRule=function(t){return this.rules[this.languageUtils.getLanguagePartFromCode(t)]},t.prototype.needsPlural=function(t){var e=this.getRule(t);return!(e&&e.numbers.length<=1)},t.prototype.getSuffix=function(t,e){var n,i=this,r=this.getRule(t);return r?(n=function(){var t,n,o;return 1===r.numbers.length?{v:""}:(t=r.noAbs?r.plurals(e):r.plurals(Math.abs(e)),n=r.numbers[t],2===r.numbers.length&&1===r.numbers[0]&&(2===n?n="plural":1===n&&(n="")),o=function(){return i.options.prepend&&""+n?i.options.prepend+""+n:""+n},"v1"===i.options.compatibilityJSON?1===n?{v:""}:"number"==typeof n?{v:"_plural_"+n}:{v:o()}:"v2"===i.options.compatibilityJSON||2===r.numbers.length&&1===r.numbers[0]?{v:o()}:2===r.numbers.length&&1===r.numbers[0]?{v:o()}:{v:i.options.prepend&&""+t?i.options.prepend+""+t:""+t})}(),"object"===(void 0===n?"undefined":s(n))?n.v:void 0):(this.logger.warn("no plural rule found for: "+t),"")},t}(),e.default=h},function(t,e,n){"use strict";function i(t){var e,n;if(t&&t.__esModule)return t;if(e={},null!=t)for(n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n]);return e.default=t,e}function r(t){return t&&t.__esModule?t:{default:t}}function o(t,e){var n,i,r,o=Object.getOwnPropertyNames(e);for(n=0;n-1&&this.options.ns.splice(e,1)},e.prototype.getResource=function(t,e,n){var i,r=arguments.length<=3||void 0===arguments[3]?{}:arguments[3],o=r.keySeparator||this.options.keySeparator;return void 0===o&&(o="."),i=[t,e],n&&"string"!=typeof n&&(i=i.concat(n)),n&&"string"==typeof n&&(i=i.concat(o?n.split(o):n)),t.indexOf(".")>-1&&(i=t.split(".")),d.getPath(this.data,i)},e.prototype.addResource=function(t,e,n,i){var r,o=arguments.length<=4||void 0===arguments[4]?{silent:!1}:arguments[4],s=this.options.keySeparator;void 0===s&&(s="."),r=[t,e],n&&(r=r.concat(s?n.split(s):n)),t.indexOf(".")>-1&&(r=t.split("."),i=e,e=r[1]),this.addNamespaces(e),d.setPath(this.data,r,i),o.silent||this.emit("added",t,e,n,i)},e.prototype.addResources=function(t,e,n){for(var i in n)"string"==typeof n[i]&&this.addResource(t,e,i,n[i],{silent:!0});this.emit("added",t,e,n)},e.prototype.addResourceBundle=function(t,e,n,i,r){var o,s=[t,e];t.indexOf(".")>-1&&(s=t.split("."),i=n,n=e,e=s[1]),this.addNamespaces(e),o=d.getPath(this.data,s)||{},i?d.deepExtend(o,n,r):o=u({},o,n),d.setPath(this.data,s,o),this.emit("added",t,e,n)},e.prototype.removeResourceBundle=function(t,e){this.hasResourceBundle(t,e)&&delete this.data[t][e],this.removeNamespaces(e),this.emit("removed",t,e)},e.prototype.hasResourceBundle=function(t,e){return void 0!==this.getResource(t,e)},e.prototype.getResourceBundle=function(t,e){return e||(e=this.options.defaultNS),"v1"===this.options.compatibilityAPI?u({},this.getResource(t,e)):this.getResource(t,e)},e.prototype.toJSON=function(){return this.data},e}(h.default),e.default=p},function(t,e,n){"use strict";function i(t){var e,n;if(t&&t.__esModule)return t;if(e={},null!=t)for(n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n]);return e.default=t,e}function r(t){return t&&t.__esModule?t:{default:t}}function o(t,e){var n,i,r,o=Object.getOwnPropertyNames(e);for(n=0;n-1&&(i=t.split(r),n=i[0],t=i[1]),"string"==typeof n&&(n=[n]),{key:t,namespaces:n}},e.prototype.translate=function(t){var e,n,i,r,o,s,a,l,h,f,d,p,g,m,y,b,_=arguments.length<=1||void 0===arguments[1]?{}:arguments[1];if("object"!==(void 0===_?"undefined":c(_))?_=this.options.overloadTranslationOptionHandler(arguments):"v1"===this.options.compatibilityAPI&&(_=v.convertTOptions(_)),void 0===t||null===t||""===t)return"";if("number"==typeof t&&(t+=""),"string"==typeof t&&(t=[t]),(e=_.lng||this.language)&&"cimode"===e.toLowerCase())return t[t.length-1];if(n=_.keySeparator||this.options.keySeparator||".",i=this.extractFromKey(t[t.length-1],_),r=i.key,o=i.namespaces,s=o[o.length-1],a=this.resolve(t,_),l=Object.prototype.toString.apply(a),h=["[object Number]","[object Function]","[object RegExp]"],f=void 0!==_.joinArrays?_.joinArrays:this.options.joinArrays,a&&"string"!=typeof a&&h.indexOf(l)<0&&(!f||"[object Array]"!==l)){if(!_.returnObjects&&!this.options.returnObjects)return this.logger.warn("accessing an object - but returnObjects options is not enabled!"),this.options.returnedObjectHandler?this.options.returnedObjectHandler(r,a,_):"key '"+r+" ("+this.language+")' returned an object instead of string.";d="[object Array]"===l?[]:{};for(p in a)d[p]=this.translate(""+r+n+p,u({joinArrays:!1,ns:o},_));a=d}else if(f&&"[object Array]"===l)(a=a.join(f))&&(a=this.extendTranslation(a,r,_));else{if(g=!1,m=!1,this.isValidLookup(a)||void 0===_.defaultValue||(g=!0,a=_.defaultValue),this.isValidLookup(a)||(m=!0,a=r),m||g){if(this.logger.log("missingKey",e,s,r,a),y=[],"fallback"===this.options.saveMissingTo&&this.options.fallbackLng&&this.options.fallbackLng[0])for(b=0;b1?e-1:0),i=1;i1?e-1:0),i=1;i1?e-1:0),i=1;i=0?"rtl":"ltr":"rtl"},e.prototype.createInstance=function(){return new e(arguments.length<=0||void 0===arguments[0]?{}:arguments[0],arguments[1])},e.prototype.cloneInstance=function(){var t=this,n=arguments.length<=0||void 0===arguments[0]?{}:arguments[0],i=arguments[1],r=new e(c({},n,this.options,{isClone:!0}),i);return["store","translator","services","language"].forEach(function(e){r[e]=t[e]}),r},e}(p.default),e.default=new A},function(t,e,n){"use strict";function i(t){return t&&t.__esModule?t:{default:t}}var r,o;Object.defineProperty(e,"__esModule",{value:!0}),r=n(563),o=i(r),e.default=o.default},,function(t,e,n){var i,r,o;!function(s){r=[n(17)],i=s,void 0!==(o="function"==typeof i?i.apply(e,r):i)&&(t.exports=o)}(function(t){function e(t){return a.raw?t:encodeURIComponent(t)}function n(t){return a.raw?t:decodeURIComponent(t)}function i(t){return e(a.json?JSON.stringify(t):t+"")}function r(t){0===t.indexOf('"')&&(t=t.slice(1,-1).replace(/\\"/g,'"').replace(/\\\\/g,"\\"));try{return t=decodeURIComponent(t.replace(s," ")),a.json?JSON.parse(t):t}catch(t){}}function o(e,n){var i=a.raw?e:r(e);return t.isFunction(n)?n(i):i}var s=/\+/g,a=t.cookie=function(r,s,l){var u,c,h,f,d,p,g,m,y;if(void 0!==s&&!t.isFunction(s))return l=t.extend({},a.defaults,l),"number"==typeof l.expires&&(u=l.expires,c=l.expires=new Date,c.setTime(+c+864e5*u)),document.cookie=e(r)+"="+i(s)+(l.expires?"; expires="+l.expires.toUTCString():"")+(l.path?"; path="+l.path:"")+(l.domain?"; domain="+l.domain:"")+(l.secure?"; secure":"");for(h=r?void 0:{},f=document.cookie?document.cookie.split("; "):[],d=0,p=f.length;d"'`=\/]/g,function(t){return b[t]})}function l(e,n){function r(){if(d&&!p)for(;f.length;)delete l[f.pop()];else f=[];d=!1,p=!1}function o(t){if("string"==typeof t&&(t=t.split(w,2)),!m(t)||2!==t.length)throw Error("Invalid tags: "+t);g=RegExp(i(t[0])+"\\s*"),y=RegExp("\\s*"+i(t[1])),v=RegExp("\\s*"+i("}"+t[1]))}var a,l,f,d,p,g,y,v,b,M,D,T,C,P,O,E,N;if(!e)return[];for(a=[],l=[],f=[],d=!1,p=!1,o(n||t.tags),b=new h(e);!b.eos();){if(M=b.pos,T=b.scanUntil(g))for(E=0,N=T.length;E0?a[a.length-1][4]:o;break;default:s.push(e)}return o}function h(t){this.string=t,this.tail=t,this.pos=0}function f(t,e){this.view=t,this.cache={".":this.view},this.parent=e}function d(){this.cache={}}var p,g=Object.prototype.toString,m=Array.isArray||function(t){return"[object Array]"===g.call(t) -},y=RegExp.prototype.test,v=/\S/,b={"&":"&","<":"<",">":">",'"':""","'":"'","/":"/","`":"`","=":"="},_=/\s*/,w=/\s+/,x=/\s*=/,k=/\s*\}/,S=/#|\^|\/|>|\{|&|=|!/;h.prototype.eos=function(){return""===this.tail},h.prototype.scan=function(t){var e,n=this.tail.match(t);return n&&0===n.index?(e=n[0],this.tail=this.tail.substring(e.length),this.pos+=e.length,e):""},h.prototype.scanUntil=function(t){var e,n=this.tail.search(t);switch(n){case-1:e=this.tail,this.tail="";break;case 0:e="";break;default:e=this.tail.substring(0,n),this.tail=this.tail.substring(n)}return this.pos+=e.length,e},f.prototype.push=function(t){return new f(t,this)},f.prototype.lookup=function(t){var n,i,o,s,a,l=this.cache;if(l.hasOwnProperty(t))n=l[t];else{for(i=this,a=!1;i;){if(t.indexOf(".")>0)for(n=i.view,o=t.split("."),s=0;null!=n&&s"===o?s=this.renderPartial(r,e,n,i):"&"===o?s=this.unescapedValue(r,e):"name"===o?s=this.escapedValue(r,e):"text"===o&&(s=this.rawValue(r)),void 0!==s&&(u+=s);return u},d.prototype.renderSection=function(t,n,i,r){function o(t){return l.render(t,n,i)}var s,a,l=this,u="",c=n.lookup(t[1]);if(c){if(m(c))for(s=0,a=c.length;s","/":"?","\\":"|"}},t.each(["keydown","keyup","keypress"],function(){t.event.special[this]={add:e}})}(jQuery)},,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,function(t,e){"use strict";!function(){var t,e,n,i,r,o;window.parent!==window&&window.CanvasRenderingContext2D&&window.TextMetrics&&(e=window.CanvasRenderingContext2D.prototype)&&e.hasOwnProperty("font")&&e.hasOwnProperty("mozTextStyle")&&"function"==typeof e.__lookupSetter__&&(n=e.__lookupSetter__("font"))&&(e.__defineSetter__("font",function(t){try{return n.call(this,t)}catch(t){if("NS_ERROR_FAILURE"!==t.name)throw t}}),i=e.measureText,t=function(){this.width=0,this.isFake=!0,this.__proto__=window.TextMetrics.prototype},e.measureText=function(e){try{return i.apply(this,arguments)}catch(e){if("NS_ERROR_FAILURE"!==e.name)throw e;return new t}},r=e.fillText,e.fillText=function(t,e,n,i){try{r.apply(this,arguments)}catch(t){if("NS_ERROR_FAILURE"!==t.name)throw t}},o=e.strokeText,e.strokeText=function(t,e,n,i){try{o.apply(this,arguments)}catch(t){if("NS_ERROR_FAILURE"!==t.name)throw t}})}()},function(t,e){!function(){var t,e,n,i,r=document.createElement("a").classList;r&&(t=Object.getPrototypeOf(r),e=t.add,n=t.remove,i=t.toggle,r.add("a","b"),r.toggle("a",!0),r.contains("b")||(t.add=function(t){for(var n=0;nn)&&(i.top%1n)||(r=Math.round(parseFloat(c.css("margin-left")))||0,o=Math.round(parseFloat(c.css("margin-top")))||0,c.css({"margin-left":r+"px","margin-top":o+"px"}),s=u.getBoundingClientRect(),a=-s.left%1,a>0&&(a-=1),a<-.5&&(a+=1),l=-s.top%1,l>0&&(l-=1),l<-.5&&(l+=1),c.css({"margin-left":r+a+"px","margin-top":o+l+"px"})))}),this}}(jQuery)},function(t,e){"use strict";!function(t,e){function n(){this._state=[],this._defaults={classHolder:"sbHolder",classHolderDisabled:"sbHolderDisabled",classHolderOpen:"sbHolderOpen",classSelector:"sbSelector",classOptions:"sbOptions",classGroup:"sbGroup",classSub:"sbSub",classDisabled:"sbDisabled",classToggleOpen:"sbToggleOpen",classToggle:"sbToggle",classSeparator:"sbSeparator",useCustomPrependWithSelector:"",customPrependSelectorClass:"",speed:200,slidesUp:!1,effect:"slide",onChange:null,beforeOpen:null,onOpen:null,onClose:null}}function i(e,n,i,r){function o(){n.removeClass(e.settings.customPrependSelectorClass),e._lastSelectorPrepend&&(e._lastSelectorPrepend.remove(),delete e._lastSelectorPrepend),i.data("custom-option-prepend")&&(e.settings.customPrependSelectorClass&&n.addClass(e.settings.customPrependSelectorClass),e._lastSelectorPrepend=t(i.data("custom-option-prepend")).clone(),n[e.settings.useCustomPrependWithSelector](e._lastSelectorPrepend))}e.settings.useCustomPrependWithSelector&&(r?e._onAttachCallback=o:o())}var r="selectbox",o=!1,s=!0;t.extend(n.prototype,{_refreshSelectbox:function(t,e){ -if(!t)return o;var n=this._getInst(t);return null==n?o:(this._fillList(t,n,e),s)},_isOpenSelectbox:function(t){return t?this._getInst(t).isOpen:o},_isDisabledSelectbox:function(t){return t?this._getInst(t).isDisabled:o},_attachSelectbox:function(e,n){function i(){var e,n=this.attr("id").split("_")[1];for(e in l._state)e!==n&&l._state.hasOwnProperty(e)&&t(":input[sb='"+e+"']")[0]&&l._closeSelectbox(t(":input[sb='"+e+"']")[0])}function s(n){a.children().each(function(i){var r,o=t(this);if(o.is(":selected")){if(38==n&&i>0)return r=t(a.children()[i-1]),l._changeSelectbox(e,r.val(),r.text()),!1;if(40==n&&i",{id:"sbHolder_"+u.uid,class:u.settings.classHolder}),g=a.data("selectbox-css"),g&&c.css(g),h=t("",{id:"sbSelector_"+u.uid,href:"#",class:u.settings.classSelector,click:function(n){n.preventDefault(),n.stopPropagation(),i.apply(t(this),[]);var r=t(this).attr("id").split("_")[1];l._state[r]?l._closeSelectbox(e):(l._openSelectbox(e),f.focus())},keyup:function(t){s(t.keyCode)}}),f=t("",{id:"sbToggle_"+u.uid,href:"#",class:u.settings.classToggle,click:function(n){n.preventDefault(),n.stopPropagation(),i.apply(t(this),[]);var r=t(this).attr("id").split("_")[1];l._state[r]?l._closeSelectbox(e):(l._openSelectbox(e),f.focus())},keyup:function(t){s(t.keyCode)}}),f.appendTo(c),d=t("
    ",{id:"sbOptions_"+u.uid,class:u.settings.classOptions,css:{display:"none"}}),u.sbOptions=d,u.sbToggle=f,u.sbSelector=h,this._fillList(e,u),t.data(e,r,u),h.appendTo(c),d.appendTo(c),c.insertAfter(a),u._onAttachCallback&&(u._onAttachCallback(),delete u._onAttachCallback),a.is(":disabled")&&t.selectbox._disableSelectbox(e),a.change(function(){var n=t(this).val(),i=a.find("option[value='"+n+"']").text();l._changeSelectbox(e,n,i)})},_detachSelectbox:function(e){var n=this._getInst(e);if(!n)return o;t("#sbHolder_"+n.uid).remove(),delete this._state[n.uid],t.data(e,r,null),t(e).show()},_changeSelectbox:function(e,n,r){var a,l,u=this._getInst(e),c=this._get(u,"onChange");t("#sbSelector_"+u.uid).text()===r&&t("#sbOptions_"+u.uid).find('a[rel="'+n+'"]').hasClass("active")||(a=t(e).find("option[value='"+n+"']"),l=t("#sbSelector_"+u.uid),l.text(r),i(u,l,a),t("#sbOptions_"+u.uid).find(".active").removeClass("active"),t("#sbOptions_"+u.uid).find('a[rel="'+n+'"]').addClass("active"),t(e).find("option").attr("selected",o),a.attr("selected",s),c?c.apply(u.input?u.input[0]:null,[n,u]):u.input&&u.input.trigger("change"))},_enableSelectbox:function(e){var n=this._getInst(e);if(!n||!n.isDisabled)return o;t("#sbHolder_"+n.uid).removeClass(n.settings.classHolderDisabled),n.isDisabled=o,t.data(e,r,n)},_disableSelectbox:function(e){var n=this._getInst(e);if(!n||n.isDisabled)return o;t("#sbHolder_"+n.uid).addClass(n.settings.classHolderDisabled), -n.isDisabled=s,t.data(e,r,n)},_optionSelectbox:function(e,n,i){var s=this._getInst(e);return s?null==i?s[n]:(s[n]=i,void t.data(e,r,s)):o},_openSelectbox:function(e){var n,i,o,a,l,u,c,h,f,d,p=this._getInst(e),g=this;!p||p.isOpen||p.isDisabled||(n=t("#sbOptions_"+p.uid),i=parseInt(t(window).height(),10),o=parseInt(t(window).width(),10),a=t("#sbHolder_"+p.uid).offset(),l=t(window).scrollTop(),u=n.prev().height(),c=i-(a.top-l)-u/2,h=this._get(p,"onOpen"),f=this._get(p,"beforeOpen"),d=null,f&&(d=f()),"object"==typeof d&&null!==d?n.css(d):(c>50&&!p.settings.slidesUp?n.css({bottom:"auto",top:u+2+"px",maxHeight:c-u+"px"}):n.css({top:"auto",bottom:u+2+"px",maxHeight:a.top-l-u/2+"px"}),a.left+n.width()>o?n.css("left","-"+(n.width()-n.parent().width()+3)+"px"):n.css("left","-1px")),"fade"===p.settings.effect?n.fadeIn(p.settings.speed):n.slideDown(p.settings.speed),t("#sbToggle_"+p.uid).addClass(p.settings.classToggleOpen),t("#sbHolder_"+p.uid).addClass(p.settings.classHolderOpen),this._state[p.uid]=s,p.isOpen=s,h&&h.apply(p.input?p.input[0]:null,[p]),t.data(e,r,p),t("html").unbind("click.sbClose").one("click.sbClose",function(){g._closeSelectbox(e)}))},_closeSelectbox:function(e){var n,i=this._getInst(e);i&&i.isOpen&&(n=this._get(i,"onClose"),t("#sbOptions_"+i.uid).hide(),t("#sbToggle_"+i.uid).removeClass(i.settings.classToggleOpen),t("#sbHolder_"+i.uid).removeClass(i.settings.classHolderOpen),this._state[i.uid]=o,i.isOpen=o,n&&n.apply(i.input?i.input[0]:null,[i]),t.data(e,r,i),t("html").unbind("click.sbClose"))},_newInst:function(t){return{id:t[0].id.replace(/([^A-Za-z0-9_-])/g,"\\\\$1"),input:t,uid:Math.floor(99999999*Math.random()),isOpen:o,isDisabled:o,isSelected:o,settings:{}}},_getInst:function(e){try{return t.data(e,r)}catch(t){throw"Missing instance data for this selectbox"}},_get:function(t,n){return t.settings[n]!==e?t.settings[n]:this._defaults[n]},_getOptions:function(n,r,o,a,l){var u=!(!arguments[1]||!arguments[1].sub),c=!(!arguments[1]||!arguments[1].disabled),h=this;arguments[0].each(function(n){var r,f=t(this),d=t("
  • ");f.is(":selected")&&(o.sbSelector.text(f.text()),i(o,o.sbSelector,f,!0),o.isSelected=s),n===a-1&&d.addClass("last"),function(){var n,i=f.text(),s=f.data("custom-option-text"),a=s!==e?s:i;"__separator__"===f.val()?(r=t("").addClass(o.settings.classSeparator),r.appendTo(d)):f.is(":disabled")||c?(r=t("",{text:a}).addClass(o.settings.classDisabled),u&&r.addClass(o.settings.classSub),r.appendTo(d)):(r=t("",{href:"#"+f.val(),rel:f.val(),text:a,class:"filter",click:function(e){e.preventDefault();var n=o.sbToggle;n.attr("id").split("_")[1];h._closeSelectbox(l),h._changeSelectbox(l,t(this).attr("rel"),i),n.focus()}}),f.is(":selected")&&r.addClass("active"),u&&r.addClass(o.settings.classSub),r.appendTo(d)),(n=f.data("custom-option-prepend"))&&r.prepend(n)}(),d.addClass(f.attr("class")),d.appendTo(o.sbOptions)})},_fillList:function(e,n,r){var o=this,a=t(e),l=(a.find("optgroup"),a.find("option")),u=l.length;r||(r=0),a.children().slice(r).each(function(i){var r,s=t(this),a={} -;s.is("option")?o._getOptions(s,null,n,u,e):s.is("optgroup")&&(r=t("
  • "),t("",{text:s.attr("label")}).addClass(n.settings.classGroup).appendTo(r),r.appendTo(n.sbOptions),s.is(":disabled")&&(a.disabled=!0),a.sub=!0,o._getOptions(s.find("option"),a,n,u,e))}),n.isSelected||(n.sbSelector.text(l.first().text()),i(n,n.sbSelector,l.first(),!0),n.isSelected=s)}}),t.fn.selectbox=function(e){var n=Array.prototype.slice.call(arguments,1);return"string"==typeof e&&"isDisabled"==e?t.selectbox["_"+e+"Selectbox"].apply(t.selectbox,[this[0]].concat(n)):"option"==e&&2==arguments.length&&"string"==typeof arguments[1]?t.selectbox["_"+e+"Selectbox"].apply(t.selectbox,[this[0]].concat(n)):this.each(function(){"string"==typeof e?t.selectbox["_"+e+"Selectbox"].apply(t.selectbox,[this].concat(n)):t.selectbox._attachSelectbox(this,e)})},t.selectbox=new n,t.selectbox.version="0.1.3"}(jQuery)},function(t,e){"use strict";!function(t){var e,n;void 0!==document.hidden?(e="hidden",n="visibilitychange"):void 0!==document.mozHidden?(e="mozHidden",n="mozvisibilitychange"):void 0!==document.msHidden?(e="msHidden",n="msvisibilitychange"):void 0!==document.webkitHidden&&(e="webkitHidden",n="webkitvisibilitychange"),t.tabvisible=!0,n&&(t(document).on(n,function(n){t.tabvisible=!document[e],t(window).trigger("visibilitychange",!document[e])}),t(document).trigger(n)),t.whenTabVisible=function(e){!n||t.tabvisible?e():t(window).one("visibilitychange",e)}}(jQuery)},,function(t,e){"use strict";!function(){var t,e,n,i,r,o,s=function(){};for(void 0===window.console&&(window.console={}),t=window.console,e=["dir","log","time","info","warn","count","clear","debug","error","group","trace","assert","dirxml","profile","timeEnd","groupEnd","profileEnd","timeStamp","exception","table","notifyFirebug","groupCollapsed","getFirebugElement","firebug","userObjects","someMethodForAssetHashChange"],n=0,i=e.length;n "+r.stack+")

    "):window.__tv_js_errors.push(t+" (found at "+e+", line "+n+" at time "+s+")"),o)try{o.apply(window,arguments)}catch(t){}}}()},,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,function(t,e,n){(function(t){"use strict";if(t._babelPolyfill)throw Error("only one instance of babel/polyfill is allowed");t._babelPolyfill=!0,n(759)}).call(e,function(){return this}())},function(t,e,n){n(481),n(453),n(454),n(455),n(424),n(423),n(452),n(443),n(444),n(445),n(446),n(447),n(448),n(449),n(450),n(451),n(426),n(427),n(428),n(429),n(430),n(431),n(432),n(433),n(434),n(435),n(436),n(437),n(438),n(439),n(440),n(441),n(442),n(475),n(478),n(477),n(473),n(474),n(476),n(479),n(480),n(422),n(421),n(417),n(419),n(413),n(414),n(416),n(415),n(420),n(418),n(471),n(456),n(425),n(472),n(457),n(458),n(459),n(460),n(461),n(464),n(462),n(463),n(465),n(466),n(467),n(468), -n(470),n(469),n(482),n(484),n(483),t.exports=n(96)},,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,function(t,e){!function(t){"use strict";function e(t){if("string"!=typeof t&&(t+=""),/[^a-z0-9\-#$%&'*+.\^_`|~]/i.test(t))throw new TypeError("Invalid character in header field name");return t.toLowerCase()}function n(t){return"string"!=typeof t&&(t+=""),t}function i(t){var e={next:function(){var e=t.shift();return{done:void 0===e,value:e}}};return y.iterable&&(e[Symbol.iterator]=function(){return e}),e}function r(t){this.map={},t instanceof r?t.forEach(function(t,e){this.append(e,t)},this):t&&Object.getOwnPropertyNames(t).forEach(function(e){this.append(e,t[e])},this)}function o(t){if(t.bodyUsed)return Promise.reject(new TypeError("Already read"));t.bodyUsed=!0}function s(t){return new Promise(function(e,n){t.onload=function(){e(t.result)},t.onerror=function(){n(t.error)}})}function a(t){var e=new FileReader,n=s(e);return e.readAsArrayBuffer(t),n}function l(t){var e=new FileReader,n=s(e);return e.readAsText(t),n}function u(t){var e,n=new Uint8Array(t),i=Array(n.length);for(e=0;e-1?e:t}function d(t,e){e=e||{};var n=e.body;if("string"==typeof t)this.url=t;else{if(t.bodyUsed)throw new TypeError("Already read");this.url=t.url,this.credentials=t.credentials,e.headers||(this.headers=new r(t.headers)),this.method=t.method,this.mode=t.mode,n||null==t._bodyInit||(n=t._bodyInit,t.bodyUsed=!0)}if(this.credentials=e.credentials||this.credentials||"omit",!e.headers&&this.headers||(this.headers=new r(e.headers)),this.method=f(e.method||this.method||"GET"),this.mode=e.mode||this.mode||null,this.referrer=null,("GET"===this.method||"HEAD"===this.method)&&n)throw new TypeError("Body not allowed for GET or HEAD requests");this._initBody(n)}function p(t){var e=new FormData;return t.trim().split("&").forEach(function(t){var n,i,r;t&&(n=t.split("="),i=n.shift().replace(/\+/g," "),r=n.join("=").replace(/\+/g," "),e.append(decodeURIComponent(i),decodeURIComponent(r)))}),e}function g(t){var e=new r;return t.split("\r\n").forEach(function(t){var n,i=t.split(":"),r=i.shift().trim();r&&(n=i.join(":").trim(),e.append(r,n))}),e}function m(t,e){e||(e={}),this.type="default",this.status="status"in e?e.status:200,this.ok=this.status>=200&&this.status<300,this.statusText="statusText"in e?e.statusText:"OK",this.headers=new r(e.headers),this.url=e.url||"",this._initBody(t)}var y,v,b,_,w,x;t.fetch||(y={searchParams:"URLSearchParams"in t,iterable:"Symbol"in t&&"iterator"in Symbol,blob:"FileReader"in t&&"Blob"in t&&function(){try{return new Blob,!0}catch(t){return!1}}(),formData:"FormData"in t,arrayBuffer:"ArrayBuffer"in t},y.arrayBuffer&&(v=["[object Int8Array]","[object Uint8Array]","[object Uint8ClampedArray]","[object Int16Array]","[object Uint16Array]","[object Int32Array]","[object Uint32Array]","[object Float32Array]","[object Float64Array]"],b=function(t){return t&&DataView.prototype.isPrototypeOf(t)},_=ArrayBuffer.isView||function(t){return t&&v.indexOf(Object.prototype.toString.call(t))>-1}),r.prototype.append=function(t,i){t=e(t),i=n(i);var r=this.map[t];r||(r=[],this.map[t]=r),r.push(i)},r.prototype.delete=function(t){delete this.map[e(t)]},r.prototype.get=function(t){var n=this.map[e(t)];return n?n[0]:null},r.prototype.getAll=function(t){return this.map[e(t)]||[]},r.prototype.has=function(t){return this.map.hasOwnProperty(e(t))},r.prototype.set=function(t,i){this.map[e(t)]=[n(i)]},r.prototype.forEach=function(t,e){Object.getOwnPropertyNames(this.map).forEach(function(n){this.map[n].forEach(function(i){t.call(e,i,n,this)},this)},this)},r.prototype.keys=function(){var t=[];return this.forEach(function(e,n){t.push(n)}),i(t)},r.prototype.values=function(){var t=[];return this.forEach(function(e){t.push(e)}),i(t)},r.prototype.entries=function(){var t=[];return this.forEach(function(e,n){t.push([n,e])}),i(t)},y.iterable&&(r.prototype[Symbol.iterator]=r.prototype.entries), -w=["DELETE","GET","HEAD","OPTIONS","POST","PUT"],d.prototype.clone=function(){return new d(this,{body:this._bodyInit})},h.call(d.prototype),h.call(m.prototype),m.prototype.clone=function(){return new m(this._bodyInit,{status:this.status,statusText:this.statusText,headers:new r(this.headers),url:this.url})},m.error=function(){var t=new m(null,{status:0,statusText:""});return t.type="error",t},x=[301,302,303,307,308],m.redirect=function(t,e){if(-1===x.indexOf(e))throw new RangeError("Invalid status code");return new m(null,{status:e,headers:{location:t}})},t.Headers=r,t.Request=d,t.Response=m,t.fetch=function(t,e){return new Promise(function(n,i){var r=new d(t,e),o=new XMLHttpRequest;o.onload=function(){var t,e={status:o.status,statusText:o.statusText,headers:g(o.getAllResponseHeaders()||"")};e.url="responseURL"in o?o.responseURL:e.headers.get("X-Request-URL"),t="response"in o?o.response:o.responseText,n(new m(t,e))},o.onerror=function(){i(new TypeError("Network request failed"))},o.ontimeout=function(){i(new TypeError("Network request failed"))},o.open(r.method,r.url,!0),"include"===r.credentials&&(o.withCredentials=!0),"responseType"in o&&y.blob&&(o.responseType="blob"),r.headers.forEach(function(t,e){o.setRequestHeader(e,t)}),o.send(void 0===r._bodyInit?null:r._bodyInit)})},t.fetch.polyfill=!0)}("undefined"!=typeof self?self:this)}]); \ No newline at end of file diff --git a/charting_library/static/bundles/vendors.a94ef44ed5c201cefcf6ad7460788c1a.css b/charting_library/static/bundles/vendors.a94ef44ed5c201cefcf6ad7460788c1a.css new file mode 100644 index 00000000..90cc9e3f --- /dev/null +++ b/charting_library/static/bundles/vendors.a94ef44ed5c201cefcf6ad7460788c1a.css @@ -0,0 +1 @@ +@keyframes highlight-animation{0%{background:transparent}to{background:#fff2cf}}@keyframes highlight-animation-theme-dark{0%{background:transparent}to{background:#194453}} \ No newline at end of file diff --git a/charting_library/static/images/dialogs/checkbox.png b/charting_library/static/images/dialogs/checkbox.png index 99581d89..9a01791c 100644 Binary files a/charting_library/static/images/dialogs/checkbox.png and b/charting_library/static/images/dialogs/checkbox.png differ diff --git a/charting_library/static/images/save-load-separator-inv.png b/charting_library/static/images/save-load-separator-inv.png deleted file mode 100644 index d1bbb9e6..00000000 Binary files a/charting_library/static/images/save-load-separator-inv.png and /dev/null differ diff --git a/charting_library/static/images/ticker-icons.png b/charting_library/static/images/ticker-icons.png deleted file mode 100644 index 21350cff..00000000 Binary files a/charting_library/static/images/ticker-icons.png and /dev/null differ diff --git a/charting_library/static/localization/translations/ar.json b/charting_library/static/localization/translations/ar.json index 6d1b6db0..732c93e0 100644 --- a/charting_library/static/localization/translations/ar.json +++ b/charting_library/static/localization/translations/ar.json @@ -1 +1 @@ -{"ticks_slippage ... ticks": "ticks", "Months_interval": "شهور", "Percent_input": "Percent", "RSI Length_input": "RSI Length", "month": "أشهر", "London": "لندن", "roclen1_input": "roclen1", "Unmerge Down": "إلغاء الدمج لأسفل", "Minor": "أصغر", "Top Margin": "الهامش العلوي", "Magnet Mode": "وضع المغناطيس", "OSC_input": "OSC", "Show Executions": "إظهار أوامر التنفيذ", "Volume_study": "الحجم", "Lips_input": "Lips", "Show real prices on price scale (instead of Heikin-Ashi price)": "إظهار الأسعار الحقيقية على نطاق السعر (بدلًا من سعر هيكن آشي)", "Histogram": "مدرج بياني", "Base Line_input": "Base Line", "Step": "خطوة", "Elliott Wave Circle": "موجات إيليوت الدائريه", "Fib Time Zone": "منطقة فيبوناتشي الزمنية", "SMALen2_input": "SMALen2", "Bollinger Bands_study": "Bollinger Bands", "Nov": "نوفمبر", "Upper_input": "Upper", "Sig_input": "Sig", "Move Up": "تحريك لأعلى", "Callout": "وسيلة شرح", "Gann Square": "مربع جان", "Count_input": "Count", "Anchored Text": "إدراج نص", "SMALen1_input": "SMALen1", "Cross_chart_type": "تقاطع", "Target Color:": "لون الهدف:", "Pitchfork": "بيتش فورك", "Normal": "عادي", "Accumulation/Distribution_study": "Accumulation/Distribution", "Rate Of Change_study": "Rate Of Change", "in_dates": "in", "Color 7_input": "Color 7", "Chop Zone_study": "Chop Zone", "Scales Properties": "خصائص نطاقات القياس", "Trend-Based Fib Time": "فيبوناتشي الزمني الاتجاهي", "Remove All Indicators": "حذف كل المؤشرات الفنية", "Oscillator_input": "Oscillator", "Last Modified": "تم التعديل آخر مرة", "yay Color 0_input": "yay Color 0", "Labels": "عناوين", "Chande Kroll Stop_study": "Chande Kroll Stop", "Hours_interval": "ساعات", "Scale Right": "نطاق القياس الأيمن", "Money Flow_study": "Money Flow", "siglen_input": "siglen", "Indicator Labels": "تسميات المؤشرات", "Toggle Percentage": "نطاق قياس النسبة المئوية", "Remove All Drawing Tools": "احذف كل أدوات الرسم", "Remove all line tools for ": "حذف كافة خطوط الأدوات لـ ", "Linear Regression Curve_study": "Linear Regression Curve", "Symbol_input": "Symbol", "Upper Deviation_input": "Upper Deviation", "Rename Chart Layout": "إعادة تسمية الرسم البياني", "Label": "عنوان", "Change Hours To": "تغيير الساعات إلى", "smoothD_input": "smoothD", "Falling_input": "Falling", "Percentage": "نسبة مئوية", "Entry price:": "سعر الدخول:", "RSI Source_input": "RSI Source", "Ichimoku Cloud_study": "Ichimoku Cloud", "jawLength_input": "jawLength", "Toggle Log Scale": "نطاق قياس لوغاريتمي", "Grid": "شبكة", "Mass Index_study": "Mass Index", "Rename...": "إعادة تسمية...", "Smoothing_input": "Smoothing", "Color 3_input": "Color 3", "Jaw Length_input": "Jaw Length", "Quotes are delayed by 10 min and updated every 30 seconds": "الاقتباسات تتأخر 10 دقائق ويتم تحديثها كل 30 ثانية", "Keltner Channels_study": "Keltner Channels", "Long Position": "صفقه شراء", "Bands style_input": "Bands style", "Undo {0}": "تراجع {0}", "With Markers": "ذو علامات", "Momentum_study": "Momentum", "MF_input": "MF", "Gann Box": "صندوق جان", "Extend Lines Left": "الخطوط الممتدة على اليسار", "Long length_input": "Long length", "Disjoint Angle": "زاوية منفصلة", "W_interval_short": "W", "Show Only Future Events": "إظهار الأحداث القادمة فقط", "Log Scale": "نطاق قياس لوغاريتمي", "Bar's Style": "نمط الشموع", "Equality Line_input": "Equality Line", "Short_input": "Short", "Fib Wedge": "وتد فيبوناتشي", "Line": "خطي", "Down fractals_input": "Down fractals", "Fib Retracement": "تصحيح فيبوناتشي", "smalen2_input": "smalen2", "isCentered_input": "isCentered", "Border": "الإطار", "Klinger Oscillator_study": "Klinger Oscillator", "Style": "نمط", "Show Left Scale": "إظهار النطاق الأيسر", "SMI Ergodic Indicator/Oscillator_study": "SMI Ergodic Indicator/Oscillator", "Aug": "أغسطس", "Last available bar": "آخر شريط متاح", "Manage Drawings": "إدارة الرسوم", "Top": "الأعلى", "No drawings yet": "لا يوجد رسوم حتى الآن", "Chande MO_input": "Chande MO", "Copy link": "نسخ الرابط", "TRIX_study": "TRIX", "MACD_study": "MACD", "RVGI_input": "RVGI", "Last edited ": "آخر تعديل ", "signalLength_input": "signalLength", "Middle_input": "Middle", "Renko": "رينكو", "d_dates": "يوم", "Point & Figure": "بوينت اند فيجر", "Source_compare": "مصدر", "Correlation Coefficient_study": "Correlation Coefficient", "Text color": "لون النص", "Levels": "مستويات", "Short Length_input": "Short Length", "teethLength_input": "teethLength", "Failure text color": "فشل في لون النص", "Hong Kong": "هونج كونج", "FAILURE": "فشل", "Subminuette": "فاصل الدقيقة في موجات اليوت", "Lock All Drawing Tools": "قفل أدوات الرسم", "Target border color": "لون إطار الهدف", "Right End": "النهاية اليمنى", "Show Symbol Last Value": "إظهار آخر قيمة للرمز", "Head & Shoulders": "الرأس و الكتفين", "Simple ma(oscillator)_input": "Simple ma(oscillator)", "Properties...": "خصائص...", "MA Cross_study": "MA Cross", "Trend Angle": "زاوية الإتجاه", "Crosshair": "خط تقاطع", "Signal line period_input": "Signal line period", "Q_input": "Q", "Line Break": "خط فاصل", "Show/Hide": "إظهار/إخفاء", "Price Volume Trend_study": "Price Volume Trend", "Auto Scale": "نطاق قياس تلقائي", "hour": "ساعات", "Scales": "نطاق القياس", "Text": "نص", "F_data_mode_forbidden_letter": "F", "Risk/Reward long": "ربح/خساره شراء", "Long RoC Length_input": "Long RoC Length", "Length3_input": "Length3", "Delete all drawing for this symbol": "حذف كافة الرسومات لهذا الرمز", "Madrid": "مدريد", "Show Bars Range": "إظهار مدى الأعمدة", "Show Economic Events on Chart": "إظهار الأحداث الاقتصادية على الرسم البياني", "%s ago_time_range": "%s ago", "Zoom In": "تكبير", "Failure back color": "فشل في لون الخلفية", "Time Scale": "النطاق الزمني", "Extend Left": "تمديد لليسار", "Date Range": "المدى الزمني", "Show Price": "عرض السعر", "Level_input": "Level", "Commodity Channel Index_study": "Commodity Channel Index", "Elder's Force Index_input": "Elder's Force Index", "Scales Properties...": "خصائص نطاق القياس...", "Format": "تنسيق", "Color bars based on previous close": "تلوين الشموع وفقاً للإغلاق السابق", "Precise Labels": "تسميات دقيقة", "Adjust Scale": "تعديل النطاق", "Text:": "النص:", "Aroon_study": "Aroon", "show MA_input": "show MA", "h_dates": "ساعة", "Short Position": "صفقة بيع", "Change Interval...": "تغيير المؤشر المشترك...", "SMALen3_input": "SMALen3", "Average Directional Index_study": "Average Directional Index", "Fr_day_of_week": "Fr", "Curve": "منحنى", "H_in_legend": "H", "Bars Pattern": "نموذج الأعمدة", "D_input": "D", "Font Size": "حجم الخط", "Change Interval": "تغيير الفترة", "p_input": "p", "Chart layout name": "اسم الرسم البياني", "Fib Circles": "دوائر فيبوناتشي", "Dot": "نقطة", "Target back color": "لون خلفية الهدف", "All": "الكل", "orders_up to ... orders": "orders", "Lead 2_input": "Lead 2", "Save image": "حفظ الصورة", "Fundamentals": "الأساسيات", "Unlock": "فتح", "Navigation Buttons": "أزرار التنقل", "Apply": "تفعيل", "Show Countdown": "اظهار العد التنازلي", "Sine Line": "منحنى الجيب", "Hide": "إخفاء", "Target text color": "لون نص الهدف", "Scale Left": "نطاق القياس الأيسر", "Elliott Wave Subminuette": "موجات اليوت", "Jan": "يناير", "Source back color": "لون خلفية المصدر", "Sao Paulo": "ساو باولو", "Oct": "أكتوبر", "Extend Lines": "تمديد الخطوط", "Inputs": "مدخلات", "Conversion Line_input": "Conversion Line", "Su_day_of_week": "Su", "Up fractals_input": "Up fractals", "Regression Trend": "إتجاه الإنحدار", "Symbol Description": "وصف الرمز", "Double EMA_study": "Double EMA", "minute": "دقائق", "Price Oscillator_study": "Price Oscillator", "Stop Color:": "لون وقف الخسارة", "Stay in Drawing Mode": "البقاء في وضع الرسم", "Bottom Margin": "الهامش السفلي", "Save Chart Layout saves not just some particular chart, it saves all charts for all symbols and intervals which you are modifying while working with this Layout": "حفظ تصميم الرسم البياني لا يعني حفظ رسم بياني بعينه ولكن يتم حفظ كافة الرسوم البيانية للأزواج والإطارات الزمنية التي تقوم بتعديلها أثناء استخدام هذا التصميم", "Average True Range_study": "Average True Range", "Max value_input": "Max value", "MA Length_input": "MA Length", "Time Interval": "الفترة الزمنية", "UpperLimit_input": "UpperLimit", "sym_input": "sym", "DI Length_input": "DI Length", "SMI_input": "SMI", "Arrow": "سهم", "Basis_input": "Basis", "Moving Average_study": "Moving Average", "lengthStoch_input": "lengthStoch", "Taipei": "طرابلس", "Remove from favorites": "حذف من القائمة المفضلة", "Copy": "نسخ", "Scale Series Only": "النطاق المتسلسل فقط", "Simple": "بسيط", "Report a data issue": "ابلغ عن مشكلة في البيانات", "Arnaud Legoux Moving Average_study": "Arnaud Legoux Moving Average", "Technical Analysis": "تحليل فني", "Lower Band_input": "Lower Band", "VI +_input": "VI +", "Lead 1_input": "Lead 1", "Always Show Stats": "إظهار الاحصائيات دائمًا", "ROCLen2_input": "ROCLen2", "Simple ma(signal line)_input": "Simple ma(signal line)", "Show Labels": "عرض العناوين", "Public Library": "المكتبة العامة", " Do you really want to delete Drawing Template '{0}' ?": " هل ترغب حقًا في حذف قالب الرسوم '‎{0}‎' ؟", "Ray": "شعاع", "Close message": "أغلق الرساله", "long_input": "long", "Show Drawings Toolbar": "عرض رسومات شريط الأدوات", "Chaikin Oscillator_study": "Chaikin Oscillator", "Balloon": "بالونة نصية", "Color Theme": "لون القالب", "Centered_input": "Centered", "Bollinger Bands Width_input": "Bollinger Bands Width", "Fib Speed Resistance Arcs": "أقواس فيبوناتشي", "Error occured while publishing": "حدث خطأ أثناء النشر", "Lock/Unlock": "إغلاق/فتح", "Color 1_input": "Color 1", "Moving Average Weighted_study": "Moving Average Weighted", "Save": "حفظ", "Type": "نوع", "Chart Layout Name": "اسم تصميم الرسم البياني", "Short period_input": "Short period", "Load Chart Layout": "تحميل تصميم رسم بياني", "Fib Speed Resistance Fan": "مروحة فيبوناتشي", "Left End": "النهاية اليسرى", "Volume Oscillator_study": "Volume Oscillator", "Always Visible": "مرئية دائمًا", "S_data_mode_snapshot_letter": "S", "post-market": "مابعد الافتتاح", "Change Minutes To": "غير الدقائق إلى", "Earnings breaks": "فواصل الربح", "Drawing Tools": "أدوات الرسم", "smalen4_input": "smalen4", "CCI_input": "CCI", "Unmerge Up": "إلغاء الدمج لأعلى", "increment_input": "increment", "(H + L)/2": "(أعلى + أدنى)/2", "XABCD Pattern": "XABCD نموذج", "Schiff Pitchfork": "سكيف بيتش فورك", "Flipped": "مقلوب", "DEMA_input": "DEMA", "NV_input": "NV", "Choppiness Index_study": "Choppiness Index", "Merge Down": "دمج لأسفل", "Th_day_of_week": "Th", " per contract": " لكل عقد", "eod delayed": "بيانات نهاية اليوم متأخرة", "Delete": "مسح", "in %s_time_range": "in %s", "percent_input": "percent", "Apr": "إبريل", "Length_input": "Length", "Median_input": "Median", "Accumulation/Distribution_input": "Accumulation/Distribution", "C_in_legend": "C", "Weeks_interval": "أسابيع", "smoothK_input": "smoothK", "Percentage_scale_menu": "نسبة مئوية", "Change Extended Hours": "تغيير الساعات الممتدة", "MOM_input": "MOM", "h_interval_short": "h", "Rotated Rectangle": "مستطيل مائل", "Modified Schiff": "سكيف معدل", "Symbol": "رمز", "Send Backward": "إرسال إلى الخلف", "TRIX_input": "TRIX", "Show Price Range": "عرض المدى السعري", "Elliott Major Retracement": "مستويات إرتداد إليوت العظمى", "Periods_input": "Periods", "Forecast": "توقعات", "Ghost Feed": "شموع وهمية", "Histogram_input": "Histogram", "The Extended Trading Hours feature is available only for intraday charts": "ساعات التداول الإضافية متاحة فقط على الرسوم البيانية على مدار اليوم", "StdDev_input": "StdDev", "Change Minutes From": "غير الدقائق من", "Relative Strength Index_study": "Relative Strength Index", "-DI_input": "-DI", "short_input": "short", "top": "علوي", "Precision": "الدقة", "Please enter chart layout name": "من فضلك إدخل اسم الرسم البياني", "Offset": "أوفست", "Date": "التاريخ", "Format...": "تنسيق...", "Toggle Auto Scale": "نطاق قياس تلقائي", "Search": "بحث", "Zig Zag_study": "Zig Zag", "Actual": "الحقيقي", "SUCCESS": "نجاح", "Detrended Price Oscillator_input": "Detrended Price Oscillator", "{0} copy": "{0} نسخ", "length_input": "length", "Price Line": "خط السعر", "Area With Breaks": "مساحة ذات فواصل", "Zoom Out": "تصغير", "Stop Level. Ticks:": "مستوى وقف الخسارة بالنقاط", "Jul": "يوليو", "Visual Order": "الترتيب المرئي", "Stop Background Color": "لون خلفية الخسارة", "Slow length_input": "Slow length", "Conversion Line Periods_input": "Conversion Line Periods", "Stochastic_study": "Stochastic", "Marker Color": "لون التحديد", "TEMA_input": "TEMA", "Directional Movement_study": "Directional Movement", "Extend Left End": "تمديد النهاية اليسرى", "Advance/Decline_study": "Advance/Decline", "New York": "نيويورك", "Flag Mark": "إشارة علم", "Drawings": "الرسوم", "Fast length_input": "Fast length", "Cancel": "إلغاء", "Bar #": "عمود #", "Redo": "إعادة", "Ultimate Oscillator_study": "Ultimate Oscillator", "Vert Grid Lines": "خطوط شبكية رأسية", "Growing_input": "Growing", "Angle": "الزاوية", "Plot_input": "Plot", "Chicago": "شيكاغو", "Color 8_input": "Color 8", "Indicators, Fundamentals, Economy and Add-ons": "مؤشرات فنية، بيانات أساسية، اقتصاد و إضافات", "Bollinger Bands Width_study": "Bollinger Bands Width", "roclen3_input": "roclen3", "Overbought_input": "Overbought", "DPO_input": "DPO", "Levels Line": "خط المستويات", "Trend Line": "خط الإتجاه", "Relative Vigor Index_study": "Relative Vigor Index", "Risk/Reward short": "نسبة الربح/الخسارة", "Price Range": "المدى السعري", "Extended Hours": "الساعات الممتدة", "Triangle": "مثلث", "Line With Breaks": "خط ذو فواصل", "Period_input": "Period", "Watermark": "علامة مائية", "Trigger_input": "Trigger", "SigLen_input": "SigLen", "Clone": "استنساخ", "Color 2_input": "Color 2", "Show Prices": "عرض الأسعار", "Graphics": "رسوم", "Arrow Mark Right": "سهم لليمين", "Background color 2": "لون الخلفية 2", "Background color 1": "لون الخلفية 1", "Circles": "دوائر", "Stop syncing drawing": "إيقاف مزامنة الرسم", "Visible on Mouse Over": "مرئية عند تمرير الفأرة", "Vortex Indicator_study": "Vortex Indicator", "Williams Alligator_study": "Williams Alligator", "ROCLen1_input": "ROCLen1", "Border Color": "لون الإطار", "M_interval_short": "M", "Change Symbol...": "...تغيير الرمز", "Price Levels": "مستويات السعر", "Source text color": "لون نص المصدر", "Zero Line_input": "Zero Line", "Increment_input": "Increment", "Days_interval": "Days", "Show Right Scale": "إظهار النطاق الأيمن", "Enter a new chart layout name": "إدخل اسم جديد للرسم البياني", "m_dates": "شهر", "Lock": "إغلاق", "length14_input": "length14", "retrying": "اعد المحاولة", "High": "أعلى", "Date and Price Range": "نطاق التاريخ والسعر", "Polyline": "متعدد الخطوط", "Add to favorites": "اضف إلى القائمة المفضلة", "Symbol Last Value": "آخر سعر للرمز", "Color 0_input": "Color 0", "maximum_input": "maximum", "Paris": "باريس", "D_data_mode_delayed_letter": "D", "Sigma_input": "Sigma", "Coordinates": "إحداثيات", "fastLength_input": "fastLength", "Width": "عرض", "Historical Volatility_study": "Historical Volatility", "Compare or Add Symbol...": "قارن أو اضف رمز...", "Parallel Channel": "قناة متوازية", "Time Cycles": "الدورات الزمنية", "Divisor_input": "Divisor", "ROC_input": "ROC", "Dec": "ديسمبر", "Extend": "تمديد", "length7_input": "length7", "Send to Back": "إرسال للمؤخرة", "Undo": "تراجع", "Window Size_input": "Window Size", "Reset Scale": "إعادة تعيين نطاق القياس", "Long Length_input": "Long Length", "%R_input": "%R", "Chart Properties": "خصائص الرسم البياني", "bars_margin": "أعمدة", "Show Indicator Last Value": "إظهار آخر قيمة للمؤشر", "Show Angle": "إظهار الزاوية", "Indicator Last Value": "القيمة الأخيرة للمؤشر", "smalen3_input": "smalen3", "Length1_input": "Length1", "Always Invisible": "مخفية دائمًا", "x_input": "x", "Save As...": "...حفظ بإسم", "Elliott Double Combo Wave (WXY)": "الموجة المركبة المزدوجة لاليوت (WXY)", "Parabolic SAR_study": "Parabolic SAR", "Fisher Transform_study": "Fisher Transform", "Show Hidden Tools": "إظهار الأدوات المخفاه", "Hollow Candles": "شموع مفرغة", "UO_input": "UO", "Stats Text Color": "لون نص الاحصائيات", "Short RoC Length_input": "Short RoC Length", "Show Orders": "إظهار الأوامر", "Countdown": "العد التنازلي", "Jaw_input": "Jaw", "Help": "مساعدة", "Coppock Curve_study": "Coppock Curve", "Reset Chart": "إعادة تعيين الرسم البياني", "Sep": "سبتمبر", "Themes": "خلفيات", "Left Axis": "المحور الأيسر", "YES": "نعم", "longlen_input": "longlen", "Moving Average Exponential_study": "Moving Average Exponential", "Source border color": "لون إطار المصدر", "Redo {0}": "إعادة {0}", "Cypher Pattern": "نموذج سيفر", "s_dates": "s", "Move Down": "تحريك لأسفل", "Area": "مساحي", "invalid symbol": "رمز غير صحيح", "Triangle Pattern": "نموذج المثلث", "Gann Fan": "مروحة جان", "Balance of Power_study": "Balance of Power", "EOM_input": "EOM", "Least Squares Moving Average_study": "Least Squares Moving Average", "Sydney": "سيدني", "Indicators": "مؤشرات فنية", "q_input": "q", "%D_input": "%D", "Text Alignment:": "محاذاة النص:", "Offset_input": "Offset", "Price Scale": "نطاق السعر", "HV_input": "HV", "(H + L + C)/3": "(أعلى + أدنى + إغلاق)/3", "Start_input": "ابدأ", "R_data_mode_realtime_letter": "R", "Hours": "ساعات", "Berlin": "برلين", "Color 4_input": "Color 4", "Los Angeles": "لوس أنجلوس", "Prices": "أسعار", "Extended Hours (Intraday Only)": "الساعات الممتدة (على مدار اليوم فقط)", "Minute": "دقيقه", "Cycle": "دورة", "ADX Smoothing_input": "ADX Smoothing", "Settings": "إعدادات", "Candles": "شموع", "We_day_of_week": "We", "%d minute": "‎%d‎ minutes", "Kagi": "كاجي", "MA_input": "MA", "Detrended Price Oscillator_study": "Detrended Price Oscillator", "Multiplier_input": "Multiplier", "Image URL": "رابط الصورة", "SMI Ergodic Oscillator_input": "SMI Ergodic Oscillator", "Show Objects Tree": "عرض الإضافات على الرسم", "Primary": "أوًلي", "Price:": "سعر:", "Bring to Front": "إحضار للمقدمة", "Brush": "فرشاة", "Chaikin Oscillator_input": "Chaikin Oscillator", "lengthRSI_input": "lengthRSI", "Events & Alerts": "الأحداث والتنبيهات", "+DI_input": "+DI", "Apply Default Drawing Template": "تطبيق القالب الافتراضي للرسوم", "Invalid Symbol": "رمز غير صحيح", "Inside Pitchfork": "داخل البيتش فورك", "yay Color 1_input": "yay Color 1", "Hide Marks On Bars": "إخفاء العلامات على الشموع", "Note": "ملاحظة", "Hide All Drawing Tools": "إخفاء أدوات الرسم", "WMA Length_input": "WMA Length", "Show Dividends on Chart": "إظهار الأرباح DPS على الرسم البياني", "Borders": "إطارات", "loading...": "تحميل...", "Events": "أحداث", "Columns": "أعمدة", "Indicator Arguments": "تفاصيل المؤشر", "Fib Spiral": "دوامة فيبوناتشي", "Create Vertical Line": "إنشاء خط عمودي", " per order": " لكل أمر", "Jun": "يونيو", "Price Label": "عنوان السعر", "Overlay the main chart": "تركيب فوق الرسم البياني الرئيسي", "Source_input": "Source", "%K_input": "%K", "Success back color": "نجاح لون الخلفية", "Toronto": "تورنتو", "McGinley Dynamic_study": "McGinley Dynamic", "Tokyo": "طوكيو", "Elliott Wave Minor": "موجة إليوت الصغرى", "Measure (Shift + Click on the chart)": "قياس (Shift + نقر على الرسم البياني)", "Override Min Tick": "Tickتجاوز الحد الأدنى لل", "Show Positions": "إظهار الصفقات", "Add To Text Notes": "إضافة إلى الملاحظات النصية", "Elliott Triple Combo Wave (WXYXZ)": "الموجة الثلاثية المركبة لاليوت (WXYXZ)", "not authorized": "غير مصرح", "Base Line Periods_input": "Base Line Periods", "pre-market": "ماقبل الافتتاح", "Top Labels": "عناوين القمة", "Elliott Triangle Wave (ABCDE)": "الموجة المثلثية لاليوت (ABCDE)", "Minuette": "الفاصل الساعة في موجات اليوت", "Text Wrap": "إلتفاف النص", "Elliott Minor Retracement": "مستويات إرتداد إليوت الصغرى", "Pitchfan": "بتشفان", "No symbols matched your criteria": "لا توجد رموز تتوافق مع بحثك", "Icon": "أيقونة", "Open": "إفتتاح", "Heikin Ashi": "هايكين آشي", "Indicator_input": "Indicator", "Open Interval Dialog": "فتح حوار منفصل", "Shanghai": "شنغهاي", "Athens": "أثينا", "Timezone/Sessions Properties...": "خصائص المنطقة الزمنية/جلسات التداول...", "middle": "وسط", "Lock Cursor In Time": "قفل المؤشر في وقت محدد", "Intermediate": "متوسط", "Eraser": "ممحاة", "TimeZone": "المنطقة الزمنية", "Envelope_study": "Envelope", "Active Symbol": "الرمز الفعال", "Horizontal Line": "خط أفقي", "O_in_legend": "O", "Confirmation": "تأكيد", "Lines:": "خطوط", "Buenos Aires": "بوينس آيرس", "useTrueRange_input": "useTrueRange", "Bangkok": "بانكوك", "Profit Level. Ticks:": "مستوى الأرباح بالنقاط", "Show Date/Time Range": "إظهار مدى الوقت/التاريخ", "%d year": "‎%d‎ years", "Horz Grid Lines": "خطوط شبكية أفقية", "Tu_day_of_week": "Tu", "day": "أيام", "deviation_input": "deviation", "UTC": "بالتوقيت العالمي المنسق", "VWMA_study": "VWMA", "Success text color": "نجاح لون النص", "Displacement_input": "Displacement", "ADR_B_input": "ADR_B", "Chaikin Money Flow_study": "Chaikin Money Flow", "Ease Of Movement_study": "Ease Of Movement", "Defaults": "الإعدادات الإفتراضية", "Oversold_input": "Oversold", "Williams %R_study": "Williams %R", "depth_input": "depth", "RSI_input": "RSI", "Long period_input": "Long period", "Mo_day_of_week": "Mo", "center": "منتصف", "Vertical Line": "خط رأسي", "Bogota": "بوجوتا", "Show Splits on Chart": "إظهار الانقسامات على الرسم البياني", "Minutes_interval": "دقائق", "X_input": "X", "C_data_mode_connecting_letter": "C", "SMALen4_input": "SMALen4", "ROCLen4_input": "ROCLen4", "Aroon Down_input": "Aroon Down", "Add To Watchlist": "اضف لقائمة المتابعة", "Extend Right": "تمديد لليمين", "left": "يسار", "Lock scale": "قفل نطاق القياس", "Time Levels": "مستويات الوقت", "smalen1_input": "smalen1", "Extend Right End": "تمديد النهاية اليمنى", "Fans": "مراوح", "Price_input": "Price", "Close_input": "Close", "Arrow Mark Down": "سهم لأسفل", "Weeks": "أسابيع", "Modified Schiff Pitchfork": "سكيف بيتش فورك معدل", "Relative Volatility Index_study": "Relative Volatility Index", "Elliott Impulse Wave (12345)": "الموجة الدافعة لاليوت (12345)", "PVT_input": "PVT", "Level {0}": "مستوى {0}", "Circle Lines": "خطوط دائرية", "Hull Moving Average_study": "Hull Moving Average", "Bring Forward": "إحضار إلى الأمام", "Zero_input": "Zero", "Company Comparison": "مقارنة الأسهم", "Stochastic Length_input": "Stochastic Length", "mult_input": "mult", "Signal smoothing_input": "Signal smoothing", "E_data_mode_end_of_day_letter": "E", "Trend-Based Fib Extension": "امتداد فيبوناتشي الاتجاهي", "Double Curve": "منحنى مزدوج", "Stochastic RSI_study": "Stochastic RSI", "Horizontal Ray": "شعاع أفقي", "Symbol Labels": "تسميات الرمز", "Script Editor...": "محرر سكريبت...", "Fullscreen mode": "وضع الشاشة الكاملة", "Add Text Note For {0}": "إضافة نص إلى الملاحظة ‎{0}‎", "K_input": "K", "In Session": "في الجلسة", "ROCLen3_input": "ROCLen3", "Text Color": "لون النص", "New Zealand": "نيوزلندا", "CHOP_input": "CHOP", "Screen (No Scale)": "الرسم البياني (بدون نطاق القياس)", "Signal_input": "Signal", "OK": "موافقة", "Show": "عرض", "Exchange": "سوق", "{0} bars": "{0} أعمدة", "Lower_input": "Lower", "Created ": "تم إنشاءه ", "Arc": "قوس", "Elder's Force Index_study": "Elder's Force Index", "Show Earnings on Chart": "إظهار الأرباح على الرسم البياني", "Low": "أدنى", "Bollinger Bands %B_study": "Bollinger Bands %B", "Time Zone": "المنطقة الزمنية", "right": "يمين", "Schiff": "سكيف", "Donchian Channels_study": "Donchian Channels", "Upper Band_input": "Upper Band", "start_input": "start", "No indicators matched your criteria.": "لا توجد مؤشرات تتوافق مع بحثك.", "Short length_input": "Short length", "Kolkata": "كولكاتا", "Triple EMA_study": "Triple EMA", "Precise Labels_scale_menu": "تسميات دقيقة", "Smoothed Moving Average_study": "Smoothed Moving Average", "Show Text": "إظهار النص", "Channel": "قناة", "Lagging Span 2 Periods_input": "Lagging Span 2 Periods", "Connecting Line": "الخط الواصل", "Seoul": "سيول", "bottom": "قاع", "Teeth_input": "Teeth", "Moscow": "موسكو", "Save New Chart Layout": "حفظ تصميم رسم بياني جديد", "Fib Channel": "قناة فيبوناتشي", "Visibility": "الظهور", "Closed_line_tool_position": "مغلق", "exponential_input": "exponential", "OnBalanceVolume_input": "OnBalanceVolume", "roclen2_input": "roclen2", "Chande Momentum Oscillator_study": "Chande Momentum Oscillator", "Not applicable": "غير صالح للتطبيق", "or copy url:": "أو نسخ الرابط", "Bollinger Bands %B_input": "Bollinger Bands %B", "Save Chart Layout": "حفظ تصميم الرسم البياني", "Indicator Values": "قيم المؤشر", "Lips Length_input": "Lips Length", "Use Upper Deviation_input": "Use Upper Deviation", "L_in_legend": "L", "Inside": "داخلي", "shortlen_input": "shortlen", "Timezone/Sessions": "المنطقة الزمنية/جلسات التداول", "ADX_input": "ADX", "Profit Background Color": "لون خلفية الأرباح", "Trading": "تداول", "Exponential_input": "Exponential", "Use Lower Deviation_input": "Use Lower Deviation", "Stay In Drawing Mode": "الإستمرار في وضع الرسم", "Comment": "تعليق", "Long_input": "Long", "Bars": "أعمدة", "Flat Top/Bottom": "أفقي - قمة/قاع", "loading data": "تحميل البيانات", "Lock drawings": "قفل الرسوم", "Border color": "لون الإطار", "Left Labels": "عناوين الجهة اليسرى", "Insert Indicator...": "إضافة مؤشر...", "P_input": "P", "Color 6_input": "Color 6", "Rectangle": "مستطيل", "Feb": "فبراير", "Transparency": "الشفافية", "All Indicators And Drawing Tools": "كافة المؤشرات وأدوات الرسم", "Cyclic Lines": "خطوط دورية", "length28_input": "length28", "ABCD Pattern": "ABCD نموذج", "closed": "مغلق", "Objects Tree": "قائمة الرسوم المضافة", "NO": "لا", "Add": "اضف", "Scale": "نطاق", "On Balance Volume_study": "On Balance Volume", "NEW": "جديد", "Wick": "ذيل", "Hull MA_input": "Hull MA", "Lock Scale": "قفل نطاق القياس", "distance: {0}": "مسافة: {0}", "Extended": "خط ممتد", "Three Drives Pattern": "نموذج الثلاث موجات", "Arcs": "أقواس", "Length2_input": "Length2", "Insert Drawing Tool": "إضافة أداة رسم", "OHLC Values": "قيم الافتتاح وأعلى وأدنى مستوى والإغلاق", "Correlation_input": "Correlation", "Scales Text": "تسمية نطاق القياس", "Session Breaks": "راحات جلسة التداول", "Add {0} To Watchlist": "اضف {0} إلى قائمة المتابعة", "Anchored Note": "ملاحظة ثابتة", "lipsLength_input": "lipsLength", "roclen4_input": "roclen4", "Tehran": "طهران", "Background Color": "لون الخلفية", "Right Axis": "المحور الأيمن", "D_data_mode_delayed_streaming_letter": "D", "VI -_input": "VI -", "slowLength_input": "slowLength", "Click to set a point": "انقر لتحديد نقطة", "Save Indicator Template As...": "حفظ قالب المؤشر كـ...", "delayed": "متأخر", "n/a": "غير متوافق", "Indicator Titles": "مسميات المؤشر", "Sa_day_of_week": "Sa", "Net Volume_study": "Net Volume", "Error": "خطأ", "RVI_input": "RVI", "Awesome Oscillator_study": "Awesome Oscillator", "Original": "أصلي", "True Strength Indicator_study": "True Strength Indicator", "Objects Tree...": "...قائمة الرسوم المضافة", "Compare": "قارن", "Add Symbol": "اضف رمز", "Projection": "مسقط", "Track time": "تتبع الوقت", "Signal Length_input": "Signal Length", "Properties": "خصائص", "Teeth Length_input": "Teeth Length", "D_interval_short": "D", "Close": "أدنى", "ParabolicSAR_input": "ParabolicSAR", "Log Scale_scale_menu": "نطاق قياس لوغاريتمي", "MACD_input": "MACD", "{0} P&L: {1}": "‎{0}‎ الهدف والخسارة:‎{1}‎", "Arrow Mark Left": "سهم لليسار", "Source Code...": "كود المصدر", "(O + H + L + C)/4": "(افتتاح + أعلى+ أدنى + إغلاق)/4", "Open_line_tool_position": "مفتوح", "Lagging Span_input": "Lagging Span", "Cross": "تقاطع", "Mirrored": "معكوس", "Price": "سعر", "Vancouver": "فانكوفر", "Elliott Correction Wave (ABC)": "الموجة التصحيحية لاليوت (ABC)", "Label Background": "خلفية العنوان", "Templates": "قوالب", "ADX smoothing_input": "ADX smoothing", "Mar": "مارس", "May": "مايو", "Color 5_input": "Color 5", "Scale Price Chart Only": "نطاق الرسم البياني للسعر فقط", "Default": "الإعداد الإفتراضي", "auto_scale": "تلقائي", "Background": "الخلفية", "VWMA_input": "VWMA", "Lower Deviation_input": "Lower Deviation", "ATR_input": "ATR", "Reverse": "إنعكاس", "Shapes_input": "Shapes", "Median": "متوسط", "Fisher_input": "Fisher", "Remove": "حذف", "len_input": "len", "Arrow Mark Up": "سهم لأعلى", "log": "لوغاريتمي", "Crosses_input": "Crosses", "KST_input": "KST", "Sync drawing to all charts": "مزامنة الرسوم على كافة الرسوم البيانية", "LowerLimit_input": "LowerLimit", "Know Sure Thing_study": "Know Sure Thing", "Copy Chart Layout": "نسخ تصميم الرسم البياني", "Compare...": "قارن...", "Compare or Add Symbol": "قارن أو اضف رمز", "Color": "لون", "Aroon Up_input": "Aroon Up", "Singapore": "سنغافورة", "Scales Lines": "خطوط نطاق القياس", "Show Distance": "إظهار المسافة", "Risk/Reward Ratio: {0}": "نسبة الربح/الخسارة: {0}", "Williams Fractal_study": "Williams Fractal", "Merge Up": "دمج لأعلى", "Right Margin": "الهامش الأيمن", "Ellipse": "قطع ناقص", "Warsaw": "وارسو"} \ No newline at end of file +{"ticks_slippage ... ticks": "ticks", "Months_interval": "شهور", "Percent_input": "Percent", "Callout": "وسيلة شرح", "Clone": "استنساخ", "London": "لندن", "roclen1_input": "roclen1", "Unmerge Down": "إلغاء الدمج لأسفل", "Minor": "أصغر", "Do you really want to delete Chart Layout '{0}' ?": "هل تريد حقا حذف مخطط الرسم البيانى‎{0}‎؟", "Magnet Mode": "وضع المغناطيس", "OSC_input": "OSC", "Show Executions": "إظهار أوامر التنفيذ", "Volume_study": "الحجم", "Lips_input": "Lips", "Show real prices on price scale (instead of Heikin-Ashi price)": "إظهار الأسعار الحقيقية على نطاق السعر (بدلًا من سعر هيكن آشي)", "Histogram": "مدرج بياني", "Base Line_input": "Base Line", "Step": "خطوة", "Change Minutes To": "غير الدقائق إلى", "Fib Time Zone": "منطقة فيبوناتشي الزمنية", "SMALen2_input": "SMALen2", "Bollinger Bands_study": "Bollinger Bands", "Nov": "نوفمبر", "Upper_input": "Upper", "exponential_input": "exponential", "Move Up": "تحريك لأعلى", "Scales Properties...": "خصائص نطاق القياس...", "Count_input": "Count", "Anchored Text": "إدراج نص", "OnBalanceVolume_input": "OnBalanceVolume", "Cross_chart_type": "تقاطع", "H_in_legend": "H", "Pitchfork": "بيتش فورك", "R_data_mode_replay_letter": "R", "Accumulation/Distribution_study": "Accumulation/Distribution", "Rate Of Change_study": "Rate Of Change", "in_dates": "in", "Color 7_input": "Color 7", "Chop Zone_study": "Chop Zone", "Scales Properties": "خصائص نطاقات القياس", "Trend-Based Fib Time": "فيبوناتشي الزمني الاتجاهي", "Remove All Indicators": "حذف كل المؤشرات الفنية", "Oscillator_input": "Oscillator", "Last Modified": "تم التعديل آخر مرة", "yay Color 0_input": "yay Color 0", "Labels": "عناوين", "Chande Kroll Stop_study": "Chande Kroll Stop", "Hours_interval": "ساعات", "Scale Right": "نطاق القياس الأيمن", "Money Flow_study": "Money Flow", "siglen_input": "siglen", "Indicator Labels": "تسميات المؤشرات", "Hide All Drawing Tools": "إخفاء أدوات الرسم", "Toggle Percentage": "نطاق قياس النسبة المئوية", "Remove All Drawing Tools": "احذف كل أدوات الرسم", "Remove all line tools for ": "حذف كافة خطوط الأدوات لـ ", "Linear Regression Curve_study": "Linear Regression Curve", "Symbol_input": "Symbol", "increment_input": "increment", "Compare or Add Symbol...": "قارن أو اضف رمز...", "Allow up to": "السماح بذلك", "Label": "عنوان", "Change Hours To": "تغيير الساعات إلى", "smoothD_input": "smoothD", "Falling_input": "Falling", "Risk/Reward short": "نسبة الربح/الخسارة", "Entry price:": "سعر الدخول:", "Circles": "دوائر", "Ichimoku Cloud_study": "Ichimoku Cloud", "Signal smoothing_input": "Signal smoothing", "Toggle Log Scale": "نطاق قياس لوغاريتمي", "Apply Elliot Wave Major": "تطبيق موجات أليوت الرئيسيه", "Grid": "شبكة", "Mass Index_study": "Mass Index", "Rename...": "إعادة تسمية...", "Smoothing_input": "Smoothing", "Color 3_input": "Color 3", "Jaw Length_input": "Jaw Length", "Pitchfan": "بتشفان", "Fundamentals": "الأساسيات", "Keltner Channels_study": "Keltner Channels", "Long Position": "صفقه شراء", "Bands style_input": "Bands style", "Undo {0}": "تراجع {0}", "With Markers": "ذو علامات", "Momentum_study": "Momentum", "MF_input": "MF", "Gann Box": "صندوق جان", "Extend Lines Left": "الخطوط الممتدة على اليسار", "Fast length_input": "Fast length", "Apply Elliot Wave": "تطبيق موجات أليوت", "Disjoint Angle": "زاوية منفصلة", "W_interval_short": "W", "Show Only Future Events": "إظهار الأحداث القادمة فقط", "Log Scale": "نطاق قياس لوغاريتمي", "Minuette": "الفاصل الساعة في موجات اليوت", "Equality Line_input": "Equality Line", "Short_input": "Short", "Fib Wedge": "وتد فيبوناتشي", "Line": "خطي", "Down fractals_input": "Down fractals", "Fib Retracement": "تصحيح فيبوناتشي", "smalen2_input": "smalen2", "isCentered_input": "isCentered", "Border": "الإطار", "Klinger Oscillator_study": "Klinger Oscillator", "Absolute": "مطلق", "Style": "نمط", "Show Left Scale": "إظهار النطاق الأيسر", "SMI Ergodic Indicator/Oscillator_study": "SMI Ergodic Indicator/Oscillator", "Aug": "أغسطس", "Last available bar": "آخر شريط متاح", "Manage Drawings": "إدارة الرسوم", "Top": "الأعلى", "No drawings yet": "لا يوجد رسوم حتى الآن", "Chande MO_input": "Chande MO", "jawLength_input": "jawLength", "TRIX_study": "TRIX", "Show Bars Range": "إظهار مدى الأعمدة", "RVGI_input": "RVGI", "Last edited ": "آخر تعديل ", "signalLength_input": "signalLength", "%s ago_time_range": "%s ago", "Renko": "رينكو", "d_dates": "يوم", "Point & Figure": "بوينت اند فيجر", "August": "أغسطس", "Source_compare": "مصدر", "Correlation Coefficient_study": "Correlation Coefficient", "Text color": "لون النص", "Levels": "مستويات", "Length_input": "Length", "Short Length_input": "Short Length", "teethLength_input": "teethLength", "Visible Range_study": "Visible Range", "Delete": "مسح", "Hong Kong": "هونج كونج", "Text Alignment:": "محاذاة النص:", "Subminuette": "فاصل الدقيقة في موجات اليوت", "October": "أكتوبر", "Lock All Drawing Tools": "قفل أدوات الرسم", "Long_input": "Long", "Unmerge Up": "إلغاء الدمج لأعلى", "Show Symbol Last Value": "إظهار آخر قيمة للرمز", "Head & Shoulders": "الرأس و الكتفين", "Properties...": "خصائص...", "MA Cross_study": "MA Cross", "Trend Angle": "زاوية الإتجاه", "Crosshair": "خط تقاطع", "Signal line period_input": "Signal line period", "Timezone/Sessions Properties...": "خصائص المنطقة الزمنية/جلسات التداول...", "Line Break": "خط فاصل", "Show/Hide": "إظهار/إخفاء", "Price Volume Trend_study": "Price Volume Trend", "Auto Scale": "نطاق قياس تلقائي", "Delete chart layout": "حذف تخطيط الرسم البيانى", "Text": "نص", "F_data_mode_forbidden_letter": "F", "Risk/Reward long": "ربح/خساره شراء", "Long RoC Length_input": "Long RoC Length", "Length3_input": "Length3", "+DI_input": "+DI", "Madrid": "مدريد", "Sig_input": "Sig", "No Overlapping Labels_scale_menu": "No Overlapping Labels", "MACD_study": "MACD", "Show Economic Events on Chart": "إظهار الأحداث الاقتصادية على الرسم البياني", "Moving Average_study": "Moving Average", "Zoom In": "تكبير", "Failure back color": "فشل في لون الخلفية", "Time Scale": "النطاق الزمني", "Extend Left": "تمديد لليسار", "Date Range": "المدى الزمني", "Show Price": "عرض السعر", "Level_input": "Level", "Commodity Channel Index_study": "Commodity Channel Index", "Elder's Force Index_input": "Elder's Force Index", "Gann Square": "مربع جان", "Format": "تنسيق", "Color bars based on previous close": "تلوين الشموع وفقاً للإغلاق السابق", "Long length_input": "Long length", "Text:": "النص:", "Aroon_study": "Aroon", "Active Symbol": "الرمز الفعال", "Lead 1_input": "Lead 1", "Short Position": "صفقة بيع", "SMALen1_input": "SMALen1", "P_input": "P", "Apply Default": "تطبيق الوضع الافتراضي", "SMALen3_input": "SMALen3", "Average Directional Index_study": "Average Directional Index", "Fr_day_of_week": "Fr", "Curve": "منحنى", "Target Color:": "لون الهدف:", "Bars Pattern": "نموذج الأعمدة", "D_input": "D", "Font Size": "حجم الخط", "Create Vertical Line": "إنشاء خط عمودي", "p_input": "p", "Rotated Rectangle": "مستطيل مائل", "Chart layout name": "اسم الرسم البياني", "Fib Circles": "دوائر فيبوناتشي", "Dot": "نقطة", "Target back color": "لون خلفية الهدف", "All": "الكل", "orders_up to ... orders": "orders", "Dot_hotkey": "Dot", "Lead 2_input": "Lead 2", "Save image": "حفظ الصورة", "Move Down": "تحريك لأسفل", "Unlock": "فتح", "Navigation Buttons": "أزرار التنقل", "Apply": "تفعيل", "Plots Background_study": "Plots Background", "Sine Line": "منحنى الجيب", "Price Channel_study": "Price Channel", "Hide": "إخفاء", "Target text color": "لون نص الهدف", "Scale Left": "نطاق القياس الأيسر", "Elliott Wave Subminuette": "موجات اليوت", "Countdown": "العد التنازلي", "UO_input": "UO", "Source back color": "لون خلفية المصدر", "Go to Date...": "الذهاب إلى تاريخ...", "Sao Paulo": "ساو باولو", "R_data_mode_realtime_letter": "R", "Extend Lines": "تمديد الخطوط", "Conversion Line_input": "Conversion Line", "March": "مارس", "Su_day_of_week": "Su", "Exchange": "سوق", "Arcs": "أقواس", "Regression Trend": "إتجاه الإنحدار", "Fib Spiral": "دوامة فيبوناتشي", "Double EMA_study": "Double EMA", "All Indicators And Drawing Tools": "كافة المؤشرات وأدوات الرسم", "Th_day_of_week": "Th", "Stay in Drawing Mode": "البقاء في وضع الرسم", "Bottom Margin": "الهامش السفلي", "Dubai": "دبي", "Save Chart Layout saves not just some particular chart, it saves all charts for all symbols and intervals which you are modifying while working with this Layout": "حفظ تصميم الرسم البياني لا يعني حفظ رسم بياني بعينه ولكن يتم حفظ كافة الرسوم البيانية للأزواج والإطارات الزمنية التي تقوم بتعديلها أثناء استخدام هذا التصميم", "Average True Range_study": "Average True Range", "Max value_input": "Max value", "MA Length_input": "MA Length", "in %s_time_range": "in %s", "UpperLimit_input": "UpperLimit", "sym_input": "sym", "DI Length_input": "DI Length", "Rome": "روما", "SMI_input": "SMI", "Arrow": "سهم", "Basis_input": "Basis", "Arrow Mark Down": "سهم لأسفل", "lengthStoch_input": "lengthStoch", "Taipei": "طرابلس", "Remove from favorites": "حذف من القائمة المفضلة", "Copy": "نسخ", "Scale Series Only": "النطاق المتسلسل فقط", "Simple": "بسيط", "Report a data issue": "ابلغ عن مشكلة في البيانات", "Arnaud Legoux Moving Average_study": "Arnaud Legoux Moving Average", "Smoothed Moving Average_study": "Smoothed Moving Average", "Lower Band_input": "Lower Band", "VI +_input": "VI +", "Q_input": "Q", "Contracts": "العقود", "Always Show Stats": "إظهار الاحصائيات دائمًا", "ROCLen2_input": "ROCLen2", "Simple ma(signal line)_input": "Simple ma(signal line)", "Change Interval...": "تغيير المؤشر المشترك...", "Public Library": "المكتبة العامة", " Do you really want to delete Drawing Template '{0}' ?": " هل ترغب حقًا في حذف قالب الرسوم '‎{0}‎' ؟", "Color 6_input": "Color 6", "CRSI_study": "CRSI", "Close message": "أغلق الرساله", "UTC": "بالتوقيت العالمي المنسق", "Show Drawings Toolbar": "عرض رسومات شريط الأدوات", "Chaikin Oscillator_study": "Chaikin Oscillator", "Balloon": "بالونة نصية", "Color Theme": "لون القالب", "Awesome Oscillator_study": "Awesome Oscillator", "Bollinger Bands Width_input": "Bollinger Bands Width", "long_input": "long", "Error occured while publishing": "حدث خطأ أثناء النشر", "Fisher_input": "Fisher", "Color 1_input": "Color 1", "Moving Average Weighted_study": "Moving Average Weighted", "Save": "حفظ", "Type": "نوع", "Wick": "ذيل", "Accumulative Swing Index_study": "Accumulative Swing Index", "Load Chart Layout": "تحميل تصميم رسم بياني", "Fib Speed Resistance Fan": "مروحة فيبوناتشي", "Left End": "النهاية اليسرى", "Volume Oscillator_study": "Volume Oscillator", "Always Visible": "مرئية دائمًا", "S_data_mode_snapshot_letter": "S", "Elliott Wave Circle": "موجات إيليوت الدائريه", "Earnings breaks": "فواصل الربح", "Change Minutes From": "غير الدقائق من", "Displacement_input": "Displacement", "smalen4_input": "smalen4", "CCI_input": "CCI", "Upper Deviation_input": "Upper Deviation", "(H + L)/2": "(أعلى + أدنى)/2", "XABCD Pattern": "XABCD نموذج", "Schiff Pitchfork": "سكيف بيتش فورك", "Flipped": "مقلوب", "DEMA_input": "DEMA", "Move_input": "Move", "NV_input": "NV", "Choppiness Index_study": "Choppiness Index", "Merge Down": "دمج لأسفل", " per contract": " لكل عقد", "Overlay the main chart": "تركيب فوق الرسم البياني الرئيسي", "log": "لوغاريتمي", "Length MA_input": "Length MA", "percent_input": "percent", "Apr": "إبريل", "{0} copy": "{0} نسخ", "Median_input": "Median", "Accumulation/Distribution_input": "Accumulation/Distribution", "C_in_legend": "C", "Weeks_interval": "أسابيع", "smoothK_input": "smoothK", "Percentage_scale_menu": "نسبة مئوية", "Change Extended Hours": "تغيير الساعات الممتدة", "MOM_input": "MOM", "h_interval_short": "h", "Change Interval": "تغيير الفترة", "Modified Schiff": "سكيف معدل", "top": "علوي", "Send Backward": "إرسال إلى الخلف", "Custom color...": "لون مخصص...", "TRIX_input": "TRIX", "Show Price Range": "عرض المدى السعري", "Elliott Major Retracement": "مستويات إرتداد إليوت العظمى", "Fri": "الجمعة", "Periods_input": "Periods", "Forecast": "توقعات", "Ghost Feed": "شموع وهمية", "Signal_input": "Signal", "Histogram_input": "Histogram", "The Extended Trading Hours feature is available only for intraday charts": "ساعات التداول الإضافية متاحة فقط على الرسوم البيانية على مدار اليوم", "StdDev_input": "StdDev", "EMA Cross_study": "EMA Cross", "Conversion Line Periods_input": "Conversion Line Periods", "Brisbane": "بريسبان", "Monday": "الإثنين", "Add Symbol_compare_or_add_symbol_dialog": "Add Symbol", "Williams %R_study": "Williams %R", "Symbol": "رمز", "a month": "كل شهر", "Precision": "الدقة", "Go to": "الذهاب إلى", "Please enter chart layout name": "من فضلك إدخل اسم الرسم البياني", "Mar": "مارس", "VWAP_study": "VWAP", "Offset": "أوفست", "Date": "التاريخ", "Format...": "تنسيق...", "Toggle Auto Scale": "نطاق قياس تلقائي", "Search": "بحث", "Zig Zag_study": "Zig Zag", "Actual": "الحقيقي", "SUCCESS": "نجاح", "Long period_input": "Long period", "length_input": "length", "roclen4_input": "roclen4", "Price Line": "خط السعر", "Area With Breaks": "مساحة ذات فواصل", "Zoom Out": "تصغير", "Stop Level. Ticks:": "مستوى وقف الخسارة بالنقاط", "Jul": "يوليو", "Circle Lines": "خطوط دائرية", "Visual Order": "الترتيب المرئي", "Stop Background Color": "لون خلفية الخسارة", "1. Slide your finger to select location for first anchor
    2. Tap anywhere to place the first anchor": "حرك إصبعك لتحديد موقع المرساة الأولى <‎2‎
    open a chart and then try again.": "Textnotizen sind verfügbar nur auf der Chartseite. Bitte öffne einen Chart und versuche Sie es erneut.", "Tu_day_of_week": "Tu", "day": "Tag", "deviation_input": "Abweichung", "week": "Woche", "Base currency": "Basis Währung", "VWMA_study": "VWMA", "Success text color": "Textfarbe Erfolg", "ADX smoothing_input": "ADX Glättung", "%d hour": "%d Stunde", "Order size": "Umfang der Order", "Displacement_input": "Displacement", "ADR_B_input": "ADR_B", "Chaikin Money Flow_study": "Chaikin Money Flow", "Ease Of Movement_study": "Ease Of Movement", "Defaults": "Standardeinstellungen", "Oversold_input": "Überverkauft", "Williams %R_study": "Williams %R", "depth_input": "depth", "RSI_input": "RSI", "Long period_input": "Lange Periode", "Mo_day_of_week": "Mo", "center": "zentrieren", "Vertical Line": "Vertikale Linie", "Sorry, the Copy Link button doesn't work in your browser. Please select the link and copy it manually.": "Entschuldigung, der Knopf \"Link-Adresse kopieren\" funktioniert nicht in Ihrem Browser. Bitte markieren Sie das Link und kopieren Sie es manuell.", "X_input": "X", "C_data_mode_connecting_letter": "C", "Simple ma(oscillator)_input": "Simple ma(oscillator)", "SMALen4_input": "SMALen4", "ROCLen4_input": "ROCLen4", "Aroon Down_input": "Aroon Hoch", "Add To Watchlist": "Zur Beobachtungsliste hinzufügen", "Extend Right": "Nach rechts verlängern", "left": "links", "Lock scale": "Skalierung feststellen", "Time Levels": "Zeitebenen", "Arrow": "Pfeil", "smalen1_input": "smalen1", "Drawing Template '{0}' already exists. Do you really want to replace it?": "Zeichenvorlage '{0}' gibt es bereits. Möchten Sie es wirklich wirklich ersetzen?", "Extend Right End": "Rechtes Ende verlängern", "Fans": "Fächer", "Price_input": "Preis", "Close_input": "Close", "Arrow Mark Down": "Pfeil nach unten", "Modified Schiff Pitchfork": "Modifizierte Schiff-Pitchfork", "Relative Volatility Index_study": "Relative Volatility Index", "Elliott Impulse Wave (12345)": "Elliot Impuls Welle (12345)", "PVT_input": "PVT", "Circle Lines": "Kreislinien", "Hull Moving Average_study": "Hull Moving Average", "Bring Forward": "Weiter nach vorne", "Friday": "Freitag", "Zero_input": "Null", "Company Comparison": "Unternehmensvergleich", "Stochastic Length_input": "Stochastische Länge", "mult_input": "mult", "Signal smoothing_input": "Signalglättung", "E_data_mode_end_of_day_letter": "E", "Trend-Based Fib Extension": "Trend basierte Fib Extension", "Double Curve": "Doppel-Kurve", "Stochastic RSI_study": "Stochastic RSI", "Horizontal Ray": "Horizontaler Linie", "Ok": "In Ordnung", "Edit Order": "Auftrag bearbeiten", "Error:": "Fehler:", "Fullscreen mode": "Vollbildmodus", "Add Text Note For {0}": "Textnotiz für {0} hinzufügen", "K_input": "K", "In Session": "In der Sitzung", "ROCLen3_input": "ROCLen3", "Micro": "Mikro", "Text Color": "Textfarbe", "Extend Alert Line": "Alarm Linie erweitern", "Oops!": "Huch!", "New Zealand": "Neuseeland", "Apply Defaults": "Voreinstellungen anwenden", "Screen (No Scale)": "Bildschirm (ohne Skalierung)", "Extended Alert Line": "Alarm Linie erweitern", "Signal_input": "Signal", "OK": "In Ordnung", "like": "likes", "Show": "Anzeigen", "Exchange": "Börse", "{0} bars": "{0} Balken", "Lower_input": "Unter", "Created ": "Erstellt ", "Arc": "Bogen", "Elder's Force Index_study": "Elder's Force Index", "Do you really want to delete Color Theme '{0}' ?": "Möchten Sie wirklich die Farbenmotiv '{0}' löschen?", "%d month_plural": "%d Monate", "Low": "Tief", "Bollinger Bands %B_study": "Bollinger Bands %B", "Time Zone": "Zeitzone", "right": "rechts", "%d month": "%d Monat", "Donchian Channels_study": "Donchian Channels", "Upper Band_input": "Oberes Band", "February": "Februar", "start_input": "start", "No indicators matched your criteria.": "Keine passenden Indikatoren gefunden", "Commission": "Kommission", "Short length_input": "Kurze Länge", "Kolkata": "Kalkutta", "Triple EMA_study": "Triple EMA", "Precise Labels_scale_menu": "Precise Labels", "Smoothed Moving Average_study": "Smoothed Moving Average", "Chatham Islands": "Chatham Inseln", "Channel": "Kanal", "FXCM CFD data is available only to FXCM account holders": "FXCM CFD Informationen sind nur für Inhaber eines FXCM Kontos verfügbar.", "Lagging Span 2 Periods_input": "Lagging Span 2 Periods", "Connecting Line": "Linien Verbinden", "day_plural": "Tage", "bottom": "Unterseite", "Teeth_input": "Teeth", "Moscow": "Moskau", "Fib Channel": "Fib Kanal", "Visibility": "Sichtbarkeit", "Events": "Ereignisse", "Minutes_interval": "Minuten", "Insert Study Template": "Indikatorvorlage einfügen", "exponential_input": "exponentiell", "%d hour_plural": "%d Stunden", "OnBalanceVolume_input": "OnBalanceVolume", "roclen2_input": "roclen2", "Chande Momentum Oscillator_study": "Chande Momentum Oscillator", "Not applicable": "Nicht anwendbar", "or copy url:": "oder URL kopieren:", "Bollinger Bands %B_input": "Bollinger-Bänder %B", "Indicator Values": "Wert des Indikators", "Lips Length_input": "Lips Length", "Use Upper Deviation_input": "Benutze obere Abweichung", "L_in_legend": "niedrigster Kurs", "Inside": "Innerhalb", "minute_plural": "Minuten", "shortlen_input": "shortlen", "Quotes are delayed by {0} min": "Preise sind um {0} Minuten verzögert", "Copied to clipboard": "In die Zwischenablage kopiert", "ADX_input": "ADX", "Profit Background Color": "Gewinn Hintergrund Farbe", "Bar's Style": "Balken Darstellung", "Exponential_input": "Exponentiell", "ROCLen2_input": "ROCLen2", "Previous": "Vorherig", "Stay In Drawing Mode": "Im Zeichenmodus bleiben", "Comment": "Kommentar", "Long_input": "Lang", "Bars": "Balken", "Show Labels": "Markierungen anzeigen", "Flat Top/Bottom": "Flache Ober-/Unterseite", "loading data": "laden von daten", "December": "Dezember", "Lock drawings": "Zeichnungen sperren", "Border color": "Rahmenfarbe", "Change Seconds From": "Wechsle Sekunden von", "Left Labels": "linke Markierungen", "Insert Indicator...": "Indikator einfügen...", "P_input": "P", "Paste %s": "Einfügen %s", "Invite-only script. You have been granted access.": "Auf-Einladung-Skript. Sie haben Zugang erhalten.", "Ray": "Strahl", "ATR Length": "ATR- Länge", "Rectangle": "Rechteck", "Source back color": "Hintergrundfarbe Ursprung", "Transparency": "Transparenz", "No": "Nein", "All Indicators And Drawing Tools": "Alle Indikatoren und Zeichenwerkzeuge.", "Cyclic Lines": "Zyklische Linien", "length28_input": "length28", "ABCD Pattern": "ABCD Muster", "When selecting this checkbox the study template will set \"__interval__\" interval on a chart": "Wenn diese Checkbox ausgewählt wird, stellt die Indikatorvorlage das __interval__-Intervall auf dem Chart ein.", "Add": "Hinzufügen", "Line - Low": "Linie - Tief", "Millennium": "Jahrtausend", "Price Label": "Preisschild", "Apply Indicator on {0} ...": "Indikator anwenden auf {0}", "NEW": "NEU", "Wick": "Docht", "Hull MA_input": "Hull MA", "Lock Scale": "Skalierung fixieren", "distance: {0}": "Abstand: {0}", "Extended": "verlängert", "Arcs": "Bögen", "Top Margin": "Oberer Abstand", "Length2_input": "Länge 2", "Insert Drawing Tool": "Zeichenwerkzeug einfügen", "Show Price Range": "Preisspanne anzeigen", "Correlation_input": "Korrelation", "Scales Text": "Achsenbeschriftung", "Session Breaks": "Ende der Handelszeit", "Add {0} To Watchlist": "{0} zur Beobachtungsliste hinzufügen", "Anchored Note": "Dauerhafte Notiz", "lipsLength_input": "lipsLength", "Apply Indicator on {0}": "Indikator anwenden auf {0}", "roclen4_input": "roclen4", "closed": "geschlossen", "Background Color": "Hintergrundfarbe", "D_data_mode_delayed_streaming_letter": "D", "VI -_input": "VI -", "slowLength_input": "slowLength", "Click to set a point": "Klicken Sie, um einen Punkt zu setzen", "January": "Januar", "n/a": "k.A.", "Indicator Titles": "Titel des Indikators", "Sa_day_of_week": "Sa", "Change area background": "Wechsle Hintergrund", "Error": "Fehler", "Edit Position": "Position bearbeiten", "RVI_input": "RVI", "Awesome Oscillator_study": "Awesome Oscillator", "Do you really want to delete Drawing Template '{0}' ?": "Möchten Sie wirklich die Zeichenvorlage '{0}' löschen?", "Left": "Links", "Show Text": "Text anzeigen", "Objects Tree...": "Objekt-Baum...", "Compare": "Vergleichen", "Add Symbol": "Symbol hinzufügen", "Projection": "Projektion", "Track time": "Verfolge Zeit", "Enter a new chart layout name": "Chart Layout neu benennen", "Signal Length_input": "Signallänge", "Properties": "Eigenschaften", "Teeth Length_input": "Teeth Length", "Point Value": "Punktwert", "D_interval_short": "D", "Close": "Schluß", "ParabolicSAR_input": "ParabolicSAR", "Log Scale_scale_menu": "Logarithmische Skalierung", "MACD_input": "MACD", "Do not show this message again": "Nachricht nicht erneut anzeigen", "Arrow Mark Left": "Pfeil nach links", "Source Code...": "Quellcode", "Line - Close": "Linie - Schlusspreis", "Confirm Inputs": "Eingabe bestätigen", "Open_line_tool_position": "Eröffnungskurs", "Lagging Span_input": "Lagging Span", "Cross": "Kreuz", "Mirrored": "Gespiegelt", "Price": "Preis", "Elliott Correction Wave (ABC)": "Elliott Korrektur Welle (ABC)", "Error while trying to create snapshot.": "Fehler während der Erstellung eines Schnappschuss", "Label Background": "Markierungshintergrund", "Please report the issue or click Reconnect.": "Bitte melden Sie das Problem und klicken Neu verbinden", "1. Slide your finger to select location for first anchor
    2. Tap anywhere to place the first anchor": "1. Bewegen Sie Ihren Finger zur Position des ersten Ankerpunkts.
    2. Durch Antippen einer beliebigen Stelle wird der erste Ankerpunkt gesetzt.", "%": "Prozent", "May": "Mai", "Are you sure?": "Sind Sie sicher?", "Color 5_input": "Farbe 5", "McGinley Dynamic_study": "McGinley Dynamic", "Default": "Standard", "auto_scale": "auto", "Background": "Hintergrund", "% of equity": "% Aktien", "Apply Elliot Wave Intermediate": "Fortgeschrittene Elliot Wellen anwenden", "VWMA_input": "VWMA", "Lower Deviation_input": "Untere Abweichung", "ATR_input": "ATR", "Extend Lines Left": "Linie nach Link erweitern", "Reverse": "Invertieren", "Oops, something went wrong": "Huch, etwas ging schief", "Shapes_input": "Formen", "Median": "Median Wert", "Fisher_input": "Fisher", "Remove": "Entfernen", "len_input": "len", "Arrow Mark Up": "Pfeil nach oben", "Crosses_input": "Crosses", "KST_input": "KST", "LowerLimit_input": "UntereBegrenzung", "Know Sure Thing_study": "Know Sure Thing", "Copy Chart Layout": "Chart Layout kopieren", "Compare...": "Vergleichen...", "1. Slide your finger to select location for next anchor
    2. Tap anywhere to place the next anchor": "1. Bewegen Sie Ihren Finger zur Position des nächsten Ankerpunkts.
    2. Durch Antippen einer beliebigen Stelle wird der nächste Ankerpunkt gesetzt.", "Compare or Add Symbol": "Symbol hinzufügen oder vergleichen", "Color": "Farbe", "Aroon Up_input": "Aroon Tief", "Singapore": "Singapur", "Scales Lines": "Achsenlinien", "Type the interval number for munute charts (i.e. 5 if it is going to be a five minute chart). Or number plus letter for H (Hourly), D (Daily), W (Weekly), M (Monthly) intervals (i.e. D or 2H)": "Geben Sie das Interval für die Minuten-Charts ein (z.B. 5, wenn es ein 5-Minuten-Chart sein soll), oder eine Zahl plus einen Buchstaben für H (stündliche), D (tägliche), W (wöchentliche), M (monatliche) Intervalle (z.B. D oder 2H).", "Show Distance": "Abstand anzeigen", "Risk/Reward Ratio: {0}": "Rendite/Risiko Verhältnis: {0}", "Williams Fractal_study": "Williams Fractal", "Merge Up": "Nach oben zusammenführen", "Right Margin": "Rechter Seitenrand", "Ellipse": "Elypse", "Warsaw": "Warschau"} \ No newline at end of file +{"ticks_slippage ... ticks": "Ticks", "Months_interval": "Monate", "Realtime": "Echtzeit", "RSI Length_input": "RSI Länge", "Sync to all charts": "Alle Charts synchronisieren", "month": "Monat", "roclen1_input": "roclen1", "Unmerge Down": "Verschmelzung nach unten aufheben", "Percents": "Prozente", "Search Note": "Notiz suchen", "Do you really want to delete Chart Layout '{0}' ?": "Möchten Sie wirklich diese Chartskizze '{0}' löschen?", "Quotes are delayed by {0} min and updated every 30 seconds": "Kurse sind um {0} Min. verzögert und werden alle 30 Sekunden aktualisiert", "Magnet Mode": "Magnetmodus", "OSC_input": "OSC", "Hide alert label line": "", "Volume_study": "Volumen", "Lips_input": "Lips (Lippen)", "Show real prices on price scale (instead of Heikin-Ashi price)": "Reale Preise auf der Preisachse anzeigen (anstatt der Heikin-Ashi-Preise)", "Histogram": "Histogramm", "Base Line_input": "Grundlinie", "Step": "Stufe", "Insert Study Template": "Studienvorlage einfügen", "Fib Time Zone": "Fib Zeitzonen", "SMALen2_input": "SMALen2", "Bollinger Bands_study": "Bollinger Bands", "Show/Hide": "Anzeigen/Verbergen", "Upper_input": "Ober", "exponential_input": "exponentiell", "Move Up": "Aufwärts", "This indicator cannot be applied to another indicator": "Diese Anzeige kann nicht bei einer anderen Anzeige angewendet werden.", "Scales Properties...": "Skalierungseigenschaften...", "Count_input": "Zähler", "Full Circles": "Volle Kreise", "Industry": "Branche", "OnBalanceVolume_input": "OnBalanceVolumen", "Cross_chart_type": "Cross", "H_in_legend": "H", "a day": "ein Tag", "R_data_mode_replay_letter": "R", "Accumulation/Distribution_study": "Akkumulation/Verteilung", "Rate Of Change_study": "Veränderungsrate", "in_dates": "in", "Clone": "Duplizieren", "Color 7_input": "Farbe 7", "Chop Zone_study": "Chop Zone", "Scales Properties": "Skalierungseigenschaften", "Trend-Based Fib Time": "Trendbasierte Fib-Zeit", "Remove All Indicators": "Alle Indikatoren entfernen", "Oscillator_input": "Oszillator", "Last Modified": "Zuletzt geändert", "yay Color 0_input": "yay Farbe 0", "Labels": "Beschriftungen", "Chande Kroll Stop_study": "Chande-Kroll-Stop", "Hours_interval": "Stunden", "Allow up to": "Ermöglicht bis zu", "Scale Right": "Skalierung rechts", "Money Flow_study": "Geldfluss", "siglen_input": "siglen", "Indicator Labels": "Indikator Bezeichnungen", "__specialSymbolOpen__Tomorrow at__specialSymbolClose__ __dayTime__": "__specialSymbolOpen__morgen bei__specialSymbolClose____dayTime__", "Toggle Percentage": "Auf Prozent umschalten", "Remove All Drawing Tools": "Alle Zeichen-Tools entfernen", "Remove all line tools for ": "Alle Linien-Tools entfernen für", "Linear Regression Curve_study": "Linere Regressionskurve", "Symbol_input": "Symbol", "increment_input": "Schrittweite", "Compare or Add Symbol...": "Symbol hinzufügen oder vergleichen...", "__specialSymbolOpen__Last__specialSymbolClose__ __dayName__ __specialSymbolOpen__at__specialSymbolClose__ __dayTime__": "__specialSymbolOpen__letzter__specialSymbolClose____dayName____specialSymbolOpen__bei__specialSymbolClose____dayTime__", "Save Chart Layout": "Chart-Layout speichern", "Number Of Line": "Linienzahl", "Label": "Beschriftung", "Post Market": "Nach Börsenschluss", "second": "Sekunde", "Change Hours To": "Stunden ändern in", "smoothD_input": "smoothD", "Falling_input": "Fallend", "X_input": "X", "Risk/Reward short": "Risiko/Gewinn Short", "UpperLimit_input": "OberesLimit", "Donchian Channels_study": "Donchain Kanäle", "Entry price:": "Einstiegspreis:", "Circles": "Kreise", "Head": "Kopf", "Stop: {0} ({1}) {2}, Amount: {3}": "Stop: {0}({1}){2}, Betrag: {3}", "Mirrored": "Gespiegelt", "Ichimoku Cloud_study": "Ichimoku Cloud", "Signal smoothing_input": "Signalglättung", "Toggle Log Scale": "Auf logarithmische Skalierung umschalten", "Toggle Auto Scale": "Auf automatische Skalierung umschalten", "Grid": "Gitter", "Triangle Down": "Dreieck Abwärts", "Apply Elliot Wave Minor": "Minimale Elliot Wellen anwenden", "Rename...": "Umbenennen...", "Smoothing_input": "Glättung", "Color 3_input": "Farbe 3", "Jaw Length_input": "Jaw (Kiefer) Länge", "Delete all drawing for this symbol": "Alle Zeichenwerkzeuge für dieses Symbol löschen", "Fundamentals": "Fundamentaldaten", "Keltner Channels_study": "Keltner Kanäle", "Long Position": "Long-Position", "Bands style_input": "Bänder-Stil", "Undo {0}": "Rückgängig {0}", "With Markers": "Mit Markierungen", "Momentum_study": "Momentum", "MF_input": "MF", "Gann Box": "Gann-Box", "Switch to the next chart": "Zum nächsten Chart wechseln", "charts by TradingView": "Charts von TradingView", "Fast length_input": "Schnelle Länge", "Apply Elliot Wave": "Elliot Wellen anwenden", "Disjoint Angle": "Zerlegter Winkel", "W_interval_short": "W", "Show Only Future Events": "Nur zukünftige Ereignisse anzeigen", "Log Scale": "Logarithmische Skalierung", "Line - High": "Linie - Hoch", "Zurich": "Zürich", "Equality Line_input": "Linie der Gleichwertigkeit", "Short_input": "Kurz", "Fib Wedge": "Fib Keil", "Line": "Linie", "Session": "Sitzung", "Down fractals_input": "Down Bruchteile", "smalen2_input": "smalen2", "isCentered_input": "istZentriert", "Border": "Rahmen", "Klinger Oscillator_study": "Klinger Oszillator", "Absolute": "Absolut", "Tue": "Die", "Style": "Stil", "Show Left Scale": "Linke Preisachse anzeigen", "SMI Ergodic Indicator/Oscillator_study": "SMI Ergodic Indikator/Oszillator", "Last available bar": "Letzter vorhandener Balken", "Manage Drawings": "Zeichnungen verwalten", "Analyze Trade Setup": "Trade Setup analysieren", "No drawings yet": "Noch keine Zeichnungen", "SMI_input": "SMI", "Chande MO_input": "Chande MO", "jawLength_input": "jawLänge", "TRIX_study": "TRIX", "Show Bars Range": "Kursspanne anzeigen", "RVGI_input": "RVGI", "Last edited ": "Zuletzt geändert ", "signalLength_input": "signalLänge", "%s ago_time_range": "vor %s", "Reset Settings": "Einstellungen zurücksetzen", "d_dates": "t", "Are you sure?": "Sind Sie sicher?", "Bar #": "Balken Nr.", "Recalculate After Order filled": "Nach Ausführen der Order neu berechnen", "Source_compare": "Quelle", "Q_input": "Q", "Correlation Coefficient_study": "Korrelations-Koeffizient", "Delayed": "Verzögert", "Bottom Labels": "Beschriftungen", "Text color": "Textfarbe", "Levels": "Level", "Short Length_input": "Kurze Länge", "teethLength_input": "teethLänge", "Visible Range_study": "Visible Range", "Hong Kong": "Hongkong", "Open {{symbol}} Text Note": "{{symbol}} Texthinweis öffnen", "Lock All Drawing Tools": "Fixiere alle Zeichen-Tools", "Long_input": "Lang", "Right End": "Rechtes Ende", "Show Symbol Last Value": "Letzten Symbol-Wert anzeigen", "Head & Shoulders": "Kopf- & Schultern", "Do you really want to delete Study Template '{0}' ?": "Möchten Sie wirklich diese Studienvorlage '{0}' löschen?", "Favorite Drawings Toolbar": "Bevorzugte Zeichenwerkzeugleiste", "Properties...": "Eigenschaften...", "Reset Scale": "Skalierung zurücksetzen", "MA Cross_study": "MA Cross", "Trend Angle": "Trendwinkel", "Snapshot": "Schnappschuss", "Signal line period_input": "Singnallinienperiode", "Timezone/Sessions Properties...": "Zeitzonen- / Sitzungseinstellungen...", "Line Break": "Linienunterbrechung", "Quantity": "Anzahl", "Price Volume Trend_study": "Preis-Volumen-Trend", "Auto Scale": "Autoskalierung", "hour": "Stunde", "Delete chart layout": "Chart Layout löschen", "F_data_mode_forbidden_letter": "F", "Risk/Reward long": "Chance/Risiko Long", "Long RoC Length_input": "Lange RoC Länge", "Length3_input": "Länge 3", "+DI_input": "+DI", "Length_input": "Länge", "Use one color": "Eine Farbe verwenden", "Chart Properties": "Chart Einstellungen", "No Overlapping Labels_scale_menu": "Keine überlappenden Label", "Exit Full Screen (ESC)": "Vollbild beenden (ESC)", "MACD_study": "MACD", "Show Economic Events on Chart": "Wirtschaftliche Ereignisse auf dem Chart anzeigen", "Moving Average_study": "Gleitender Durchschnitt", "Show Wave": "Welle anzeigen", "Failure back color": "Hintergrundfarbe Fehler", "Below Bar": "Unterhalb der Bars", "Time Scale": "Zeitachse", "

    Only D, W, M intervals are supported for this symbol/exchange. You will be automatically switched to a D interval. Intraday intervals are not available because of exchange policies.

    ": "

    NurD,W,MIntervalle werden für dieses Symbol / diese Börse unterstützt. Das Chart wechselt automatisch zu einem D Intervall. Intraday Intervalle sind wegen Regulierungen der Börse nicht verfügbar.

    ", "Extend Left": "Nach links verlängern", "Date Range": "Datumsbereich", "Min Move": "Min. Bewegung", "Price format is invalid.": "Preisformat ist ungültig.", "Show Price": "Preise anzeigen", "Level_input": "Niveau", "Commodity Channel Index_study": "Commodity Channel Index", "Elder's Force Index_input": "Elder's Force Index", "Gann Square": "Gann Square (Quadrat)", "Currency": "Währung", "Color bars based on previous close": "Balken gemäß vorherigem Schlußkurs färben.", "Change band background": "Bandhintergrund ändern", "Target: {0} ({1}) {2}, Amount: {3}": "Ziel: {0} ({1}) {2}, Betrag: {3}", "Zoom Out": "Verkleinern", "This chart layout has a lot of objects and can't be published! Please remove some drawings and/or studies from this chart layout and try to publish it again.": "Dieser Entwurf enthält zu viele Objekte und kann nicht veröffentlicht werden! Bitte entfernen Sie einige Zeichnungen und / oder Texte von diesem Entwurf und versuchen Sie es erneut.", "Anchored Text": "Verankerter Text", "Long length_input": "Lange Länge", "Edit {0} Alert...": "{0} Meldung bearbeiten ...", "Previous Close Price Line": "Vorherige Schlusskurslinie", "Up Wave 5": "Aufwärtswelle 5", "Qty: {0}": "Anz:{0}", "Heikin Ashi": "HeikinAshi", "Aroon_study": "Aroon", "show MA_input": "MA anzeigen", "Lead 1_input": "Lead 1", "Short Position": "Short-Position", "SMALen1_input": "SMALen1", "P_input": "P", "Apply Default": "Standard anwenden", "SMALen3_input": "SMALen3", "Average Directional Index_study": "Average Directional Index", "Fr_day_of_week": "Fr", "Invite-only script. Contact the author for more information.": "Auf-Einladung- Skript. Kontaktieren sie den Autor für nähere Informationen.", "Curve": "Kurve", "a year": "ein Jahr", "Target Color:": "Kursziel Farbe:", "Bars Pattern": "Balkenmuster", "D_input": "D", "Font Size": "Schriftgröße", "Create Vertical Line": "Vertikale Linie erstellen", "p_input": "p", "Rotated Rectangle": "Drehbares Rechteck", "Chart layout name": "Chart Layout Name", "Fib Circles": "Fib Kreise", "Apply Manual Decision Point": "Manuellen Entscheidungspunkt verwenden", "Dot": "Punkt", "Target back color": "Hintergrundfarbe Kursziel", "All": "Alle", "orders_up to ... orders": "Order", "Dot_hotkey": "Punkt", "Lead 2_input": "Lead 2", "Save image": "Bild speichern", "Move Down": "Abwärts", "Triangle Up": "Dreieck Aufwärts", "Box Size": "Boxgröße", "Navigation Buttons": "Navigationstasten", "Apply": "Anwenden", "Down Wave 3": "Abwärtsbewegung 3", "Plots Background_study": "Grafiken Hintergrund", "Marketplace Add-ons": "Handelsplatz Add-Ons", "Sine Line": "Sinuslinie", "Fill": "Füllen", "%d day": "%d Tag", "Hide": "Verbergen", "Toggle Maximize Chart": "Auf maximierten Chart umschalten", "Target text color": "Textfarbe Kursziel", "Scale Left": "Skalierung links", "Elliott Wave Subminuette": "Subminuette Elliott Welle", "Down Wave C": "Abwärtsbewegung C", "UO_input": "UO", "Go to Date...": "Gehe zu Datum...", "Text Alignment:": "Textausrichtung:", "R_data_mode_realtime_letter": "R", "Extend Lines": "Linien verlängern", "Conversion Line_input": "Umrechnungslinie", "March": "März", "Su_day_of_week": "Su", "Exchange": "Börse", "Arcs": "Bögen", "Regression Trend": "Regressionstrend", "Fib Spiral": "Fib Spirale", "Double EMA_study": "Double EMA", "minute": "Minute", "All Indicators And Drawing Tools": "Alle Indikatoren und Zeichen-Tools", "Indicator Last Value": "Letzter Wert des Indikators", "Sync drawings to all charts": "Zeichen-Tools mit allen Charts synchronisieren", "Change Average HL value": "Durchschnittlichen HL-Wert ändern", "Stop Color:": "Stop Farbe:", "Stay in Drawing Mode": "Im Zeichenmodus bleiben", "Bottom Margin": "unterer Abstand", "Save Chart Layout saves not just some particular chart, it saves all charts for all symbols and intervals which you are modifying while working with this Layout": "Chart-Layout speichern speichert nicht nur einen bestimmten Chart, sondern es speichert alle Charts für alle Symbole und Intervalle, welche Sie verändern, während Sie in diesem Layout arbeiten.", "Average True Range_study": "Average True Range", "Max value_input": "Maximalwert", "MA Length_input": "MA Länge", "Invite-Only Scripts": "Auf-Einladung-Skripte", "in %s_time_range": "in %s", "Extend Bottom": "Nach unten verlängern", "sym_input": "sym", "DI Length_input": "DI-Länge", "Rome": "Rom", "Scale": "Skalierung", "Periods_input": "Zeiträume", "Arrow": "Pfeil", "Square": "Rechteck", "Basis_input": "Basis", "Arrow Mark Down": "Pfeil nach unten", "lengthStoch_input": "LängeStoch", "Objects Tree": "Objekbaum", "Remove from favorites": "Aus Favoriten entfernen", "Show Symbol Previous Close Value": "Vorigen Schlusskurs des Symbols anzeigen", "Scale Series Only": "Nur Datenreihe skalieren", "Source text color": "Textfarbe Ursprung", "Simple": "Einfach", "Report a data issue": "Ein Problem mit den Daten melden", "Arnaud Legoux Moving Average_study": "Arnaud Legoux Gleitender Mittelwert", "Smoothed Moving Average_study": "Geglättete Gleitende Durchschnitt", "Lower Band_input": "Unteres Band", "Verify Price for Limit Orders": "Preis für Limit-Orders überprüfen", "VI +_input": "VI +", "Line Width": "Linienbreite", "Contracts": "Verträge", "Always Show Stats": "Statistiken immer anzeigen", "Down Wave 4": "Abwärtsbewegung 4", "ROCLen2_input": "ROCLen2", "Simple ma(signal line)_input": "Simple ma(Signallinie)", "Change Interval...": "Intervall ändern", "Public Library": "Öffentliche Bibliothek", " Do you really want to delete Drawing Template '{0}' ?": " Möchten Sie die Zeichenvorlage '{0}' wirklich löschen?", "Sat": "Sa", "Left Shoulder": "Linke Schulter", "week": "Woche", "CRSI_study": "CRSI", "Close message": "Nachricht schließen", "Base currency": "Basis-Währung", "Show Drawings Toolbar": "Zeichnung Toolbar anzeigen", "Chaikin Oscillator_study": "Chaikin-Oszillator", "Price Source": "Preisquelle", "Market Open": "Börse geöffnet", "Color Theme": "Farbthema", "Awesome Oscillator_study": "Awesome Oscillator", "Bollinger Bands Width_input": "Bollinger-Bänder-Breite", "long_input": "lang", "Error occured while publishing": "Während der Veröffentlichung ist ein Fehler aufgetreten", "Fisher_input": "Fisher", "Color 1_input": "Farbe 1", "Moving Average Weighted_study": "Gewichteter Gleitender Durchschnitt", "Save": "Speichern", "Type": "Typ", "Accumulative Swing Index_study": "Accumulative Swing Index", "Load Chart Layout": "Chart-Layout laden", "Show Values": "Werte anzeigen", "Fib Speed Resistance Fan": "Fib Speed Resistance Fan (Fächer)", "Bollinger Bands Width_study": "Bollinger Bands Weite", "This chart layout has more than 1000 drawings, which is a lot! This may negatively affect performance, storage and publishing. We recommend to remove some drawings to avoid potential performance issues.": "Dieses Chart-Layout verfügt über 1000 Zeichnungselemente. Das ist eine Menge! Dies kann die Leistung, das Speichern und die Veröffentlichung negativ beeinflussen. Wir empfehlen einige Zeichnungselemente zu entfernen, um eventuelle Leistungsprobleme zu verhindern.", "Left End": "linkes Ende", "%d year": "%d Jahr", "Always Visible": "Immer sichtbar", "S_data_mode_snapshot_letter": "S", "Flag": "Flagge", "Elliott Wave Circle": "Elliot Wellenkreis", "Earnings breaks": "Earnings-Breaks", "Change Minutes From": "Wechsle Minuten von", "Do not ask again": "Nicht erneut fragen", "Displacement_input": "Verschiebung", "smalen4_input": "smalen4", "CCI_input": "CCI", "Upper Deviation_input": "Obere Abweichung", "(H + L)/2": "", "XABCD Pattern": "XABCD-Muster", "Schiff Pitchfork": "Schiff-Pitchfork", "Copied to clipboard": "In die Zwischenablage kopiert", "Flipped": "Umgedreht", "DEMA_input": "DEMA", "Move_input": "Bewegung", "NV_input": "NV", "Choppiness Index_study": "Choppiness Index", "Study Template '{0}' already exists. Do you really want to replace it?": "Studienvorlage '{0}' gibt es bereits. Möchten Sie es wirklich ersetzen?", "Merge Down": "Nach unten zusammenführen", " per contract": " pro Kontrakt", "Overlay the main chart": "Hauptchart überlagern", "Delete": "Löschen", "Save Indicator Template As": "Indikatorvorlage speichern als", "Length MA_input": "Länge MA", "percent_input": "Prozent", "{0} copy": "{0} kopieren", "Avg HL in minticks": "Durchschnittliche HL in Minticks", "Accumulation/Distribution_input": "Akkumulation/Distribution", "C_in_legend": "C", "Weeks_interval": "Wochen", "smoothK_input": "smoothK", "Percentage_scale_menu": "Prozentsatz", "Change Extended Hours": "Erweiterte Stunden ändern", "MOM_input": "MOM", "h_interval_short": "Std.", "Change Interval": "Intervall ändern", "Change area background": "Bereichshintergrund ändern", "Modified Schiff": "Modifizierte Schiff", "top": "Oberseite", "Custom color...": "Benutzerdefinierte Farbe...", "Send Backward": "Eins nach hinten verschieben", "Mexico City": "Mexiko City", "TRIX_input": "TRIX", "Show Price Range": "Preisspanne anzeigen", "Elliott Major Retracement": "Major Elliott Retracement", "ASI_study": "ASI", "Notification": "Benachrichtigung", "Fri": "Fr", "just now": "gerade", "Forecast": "Prognose", "Fraction part is invalid.": "Dieser Teil ist ungültig", "Connecting": "Es wird verbunden", "Ghost Feed": "", "Signal_input": "Signal", "Histogram_input": "Histogramm", "The Extended Trading Hours feature is available only for intraday charts": "Die Funktion \"Erweiterte Handelszeiten\" ist nur für Intraday-Charts verfügbar", "Stop syncing": "Synchronisierung stoppen", "open": "Eröffnung", "StdDev_input": "StdAbw", "EMA Cross_study": "EMA Cross", "Conversion Line Periods_input": "Perioden der Umrechnungslinie", "Diamond": "Diamant", "My Scripts": "Meine Skripte", "Monday": "Montag", "Add Symbol_compare_or_add_symbol_dialog": "Symbol hinzufügen", "Williams %R_study": "Williams %R", "Symbol": "Symbol / Währungspaar", "a month": "ein Monat", "Precision": "Präzision", "depth_input": "Tiefe", "Go to": "Gehe zu", "Please enter chart layout name": "Bitte geben Sie einen Namen für das Chart-Layout ein.", "Mar": "Mrz", "VWAP_study": "VWAP", "Offset": "Ausgleich", "Date": "Datum", "Apply WPT Up Wave": "WPT Up Wave anwenden", "__dayName__ __specialSymbolOpen__at__specialSymbolClose__ __dayTime__": "__dayName____specialSymbolOpen__bei__specialSymbolClose____dayTime__", "Toggle Maximize Pane": "Auf maximierten Ausschnitt umschalten", "Search": "Suche", "Zig Zag_study": "Zig Zag", "Actual": "Ist", "SUCCESS": "ERFOLG", "Long period_input": "Langer Zeitraum", "length_input": "Länge", "roclen4_input": "roclen4", "Price Line": "Preislinie", "Area With Breaks": "Fläche mit Lücken", "Median_input": "Median", "Stop Level. Ticks:": "Stop Wert. Ticks:", "Economy & Symbols": "Wirtschaft und Symbole", "Circle Lines": "Kreislinien", "Visual Order": "Visuelle Reihenfolge", "__specialSymbolOpen__Yesterday at__specialSymbolClose__ __dayTime__": "__specialSymbolOpen__gestern bei__specialSymbolClose____dayTime__", "Stop Background Color": "Hintergrundfarbe beenden", "Slow length_input": "Langsame Länge", "Sector": "Sektor", "powered by TradingView": "unterstützt von TradingView", "Marker Color": "Stiftfarbe", "TEMA_input": "TEMA", "Format...": "Formatierung...", "Min Move 2": "Min Bewegung 2", "Extend Left End": "Linkes Ende verlängern", "Advance/Decline_study": "Anstieg/Rückgang", "Any Number": "Jegliche Nummer", "Flag Mark": "Flagge", "Drawings": "Zeichnungen", "Cancel": "Abbrechen", "Compare or Add Symbol": "Symbol hinzufügen oder vergleichen", "Redo": "Wiederherstellen", "Hide Drawings Toolbar": "Zeichnen-Werkzeugleiste ausblenden", "Ultimate Oscillator_study": "Ultimativer Oszillator", "Vert Grid Lines": "Vertikale Gitterlinien", "Growing_input": "Wachsend", "Angle": "Winkel", "Plot_input": "Zeichnen", "Color 8_input": "Farbe 8", "Indicators, Fundamentals, Economy and Add-ons": "Indikatoren, Unternehmens- und Wirtschaftsdaten und Add-ons", "h_dates": "h", "ROC Length_input": "ROC Periodenlänge", "roclen3_input": "roclen3", "Overbought_input": "Überkauft", "Extend Top": "Nach oben verlängern", "Change Minutes To": "Wechsle Minuten zu", "No study templates saved": "Keine Studienvorlagen gespeichert", "Trend Line": "Trendlinie", "TimeZone": "Zeitzone", "Your chart is being saved, please wait a moment before you leave this page.": "Ihre Chart wurde gespeichert, bitte warten Sie einen Moment bevor Sie diese Seite verlassen.", "Percentage": "Prozentsatz", "Tu_day_of_week": "Tu", "Extended Hours": "Verlängerte Handelszeit", "Triangle": "Dreieck", "Line With Breaks": "Linie mit Unterbrechungen", "Period_input": "Zeitraum", "Watermark": "Wasserzeichen", "Trigger_input": "Auslöser", "SigLen_input": "SigLen", "Extend Right": "Nach rechts verlängern", "Color 2_input": "Farbe 2", "Show Prices": "Preise anzeigen", "Unlock": "Entsperren", "Copy": "Kopieren", "high": "High", "Arc": "Bogen", "Edit Order": "Auftrag bearbeiten", "January": "Januar", "Arrow Mark Right": "Pfeil nach rechts", "Extend Alert Line": "Alarmlinie erweitern", "Background color 1": "Hintergrundfarbe 1", "RSI Source_input": "RSI Quelle", "Close Position": "Position schliessen", "Stop syncing drawing": "Zeichentool-Synchronisierung beenden", "Visible on Mouse Over": "Sichtbar, wenn der Mauszeiger darüber bewegt wird", "MA/EMA Cross_study": "MA/EMA Cross", "Thu": "Do", "Vortex Indicator_study": "Vortex-Indikator", "view-only chart by {user}": "schreibgeschützter Chart von {user}", "ROCLen1_input": "ROCLen1", "M_interval_short": "M", "Chaikin Oscillator_input": "Chaikin-Oszillator", "Price Levels": "Preisniveaus", "Show Splits": "Splits anzeigen", "Zero Line_input": "Nulllinie", "Replay Mode": "Wiedeholungs-Modus", "__specialSymbolOpen__Today at__specialSymbolClose__ __dayTime__": "__specialSymbolOpen__heute bei__specialSymbolClose____dayTime__", "Increment_input": "Schrittweite", "Days_interval": "Tage", "Show Right Scale": "Rechte Preisachse anzeigen", "Show Alert Labels": "Alarm-Labels anzeigen", "Historical Volatility_study": "Historische Volatilität", "Lock": "Fixieren", "length14_input": "Länge14", "ext": "verl.", "Date and Price Range": "Daten- und Preisbereich", "Polyline": "Linienzug", "Reconnect": "Neu verbinden", "Lock/Unlock": "Fixieren / Lösen", "Base Level": "Grundwert", "Label Down": "Beschriftung Abwärts", "Saturday": "Samstag", "Symbol Last Value": "Letzter Symbolwert", "Above Bar": "Oberhalb des Balkens", "Studies": "Studien", "Color 0_input": "Farbe 0", "Add Symbol": "Symbol hinzufügen", "maximum_input": "Maximum", "Wed": "Mi", "D_data_mode_delayed_letter": "D", "Sigma_input": "Sigma", "VWMA_study": "VWMA", "fastLength_input": "schnelleLänge", "Time Levels": "Zeitebenen", "Width": "Breite", "Loading": "Wird geladen", "Template": "Vorlage", "Use Lower Deviation_input": "Benutze untere Abweichung", "Up Wave 3": "Aufwärtswelle 3", "Parallel Channel": "Paralleler Kanal", "Time Cycles": "Zeitzyklen", "Second fraction part is invalid.": "Zweiter Bruchteil ungültig", "Divisor_input": "Divisor", "Baseline": "Grundlinie", "Down Wave 1 or A": "Abwärtsbewegung 1 oder A", "ROC_input": "ROC", "Dec": "Dez", "Ray": "Strahl", "Extend": "Verlängern", "length7_input": "Länge7", "Bring Forward": "Nach vorne bringen", "Bottom": "Boden", "Apply Elliot Wave Major": "Haupt- Elliot Wellen anwenden", "Undo": "Rückgängig", "Window Size_input": "Fenstergröße", "useTrueRange_input": "useTrueRange", "Right Labels": "Beschriftung Rechts", "Long Length_input": "Lange Länge", "True Strength Indicator_study": "Wahre-Stärke-Indikator", "%R_input": "%R", "There are no saved charts": "Es gibt keine gespeicherten Charts.", "Instrument is not allowed": "Dieses Instrument ist nicht erlaubt.", "bars_margin": "Balken", "Decimal Places": "Dezimalstellen", "Show Indicator Last Value": "Letzten Indikatorwert anzeigen", "Initial capital": "Anfangskapital", "Show Angle": "Winkel anzeigen", "Mass Index_study": "Mass-Index", "More features on tradingview.com": "Mehr Funktionen auf tradingview.com", "Objects Tree...": "Objektbaum...", "Remove Drawing Tools & Indicators": "Zeichenwerkzeuge und Indikatoren entfernen", "Length1_input": "Länge 1", "Always Invisible": "Immer verborgen", "Circle": "Kreis", "Days": "Tage", "x_input": "x", "Save As...": "Speichern unter...", "Elliott Double Combo Wave (WXY)": "Elliot Doppe Combo Welle (WXY)", "Parabolic SAR_study": "Parabolic SAR", "Any Symbol": "Jegliches Symbol", "Variance": "Abweichung", "Stats Text Color": "Statistiken Textfarbe", "Minutes": "Minuten", "Short RoC Length_input": "Kurze RoC Länge", "Projection": "Projektion", "Jaw_input": "Jaw (Kiefer)", "Right": "Rechts", "Help": "Hilfe", "Coppock Curve_study": "Coppock-Kurve", "Reversal Amount": "Umkehrbetrag", "Reset Chart": "Chart zurücksetzen", "Sunday": "Sonntag", "Left Axis": "Linke Achse", "YES": "JA", "longlen_input": "longlen", "Moving Average Exponential_study": "Exponentiell Gleitender Durchschnitt", "Source border color": "Randfarbe Ursprung", "Redo {0}": "Wiederherstellen {0}", "Cypher Pattern": "Zahlenmuster", "s_dates": "s", "Area": "Fläche", "Triangle Pattern": "Dreiecksmuster", "Balance of Power_study": "Balance of Power", "EOM_input": "EOM", "Shapes_input": "Formen", "Oversold_input": "Überverkauft", "Apply Manual Risk/Reward": "Manuelles Chancen-Risiko verwenden", "Market Closed": "Markt geschlossen", "Indicators": "Indikatoren", "close": "Close", "q_input": "q", "You are notified": "Sie wurden benachritigt", "Font Icons": "Schriftartsymbole", "%D_input": "%D", "Border Color": "Rahmenfarbe", "Offset_input": "Offset", "Risk": "Risiko", "Price Scale": "Preisskala", "HV_input": "HV", "Seconds": "Sekunden", "Settings": "Einstellungen", "Start_input": "Start", "Elliott Impulse Wave (12345)": "Elliot Impuls Welle (12345)", "Hours": "Stunden", "Send to Back": "Ganz nach hinten verschieben", "Color 4_input": "Farbe 4", "Angles": "Winkel", "Prices": "Preise", "July": "Juli", "Create Horizontal Line": "Horizontale Linie erstellen", "ADX Smoothing_input": "ADX Glättung", "One color for all lines": "Eine Farbe für alle Linien", "m_dates": "m", "(H + L + C)/3": "(H + L + C)/3\n(H + L + C)/3", "Candles": "Kerzen", "We_day_of_week": "We", "Width (% of the Box)": "Breite (% der Box)", "%d minute": "%d Minute", "Go to...": "Gehe zu...", "Pip Size": "Pip-Größe", "Wednesday": "Mittwoch", "This drawing is used in alert. If you remove the drawing, the alert will be also removed. Do you want to remove the drawing anyway?": "Dieses Zeichnungselemente wird für einem Alarm benutzt. Wenn Sie dieses entfernen, wird der Alarm ebenfalls gelöscht. Möchten Sie dieses Zeichnungselement trotzdem löschen?", "Show Countdown": "Countdown anzeigen", "Show alert label line": "Alarm-Label-Line anzeigen", "MA_input": "MA", "Length2_input": "Länge 2", "not authorized": "nicht autorisiert", "Session Volume_study": "Session Volume", "Image URL": "Bild URL", "SMI Ergodic Oscillator_input": "SMI Ergodic Oszillator", "Show Objects Tree": "Objektbaum anzeigen", "Price:": "Preis:", "Bring to Front": "Ganz nach vorne bringen", "Brush": "Pinsel", "Not Now": "Jetzt nicht", "Yes": "Ja", "C_data_mode_connecting_letter": "C", "SMALen4_input": "SMALen4", "Apply Default Drawing Template": "Voreingestellte Vorlage anwenden", "Compact": "Kompakt", "Save As Default": "Als Standard speichern", "Target border color": "Randfarbe Kursziel", "Invalid Symbol": "Ungültiges Symbol", "yay Color 1_input": "yay Farbe 1", "Quandl is a huge financial database that we have connected to TradingView. Most of its data is EOD and is not updated in real-time, however the information may be extremely useful for fundamental analysis.": "Quandl ist eine riesige Finanzdatenbank, welche wir an TradingView angeschlossen haben. Die meisten Daten sind EOD und werden nicht Echtzeit aktualisiert, dennoch könnte die Information für die Fundamentalanalyse sehr nützlich sein.", "Hide Marks On Bars": "", "Cancel Order": "Auftrag abbrechen", "Hide All Drawing Tools": "Alle Zeichen-Tools verbergen", "WMA Length_input": "WMA Länge", "Show Dividends on Chart": "Dividenden auf dem Chart anzeigen", "Show Executions": "Ausführungen anzeigen", "Borders": "Rahmen", "Remove Indicators": "Indikatoren entfernen", "loading...": "lade...", "Closed_line_tool_position": "geschlossen", "Rectangle": "Rechteck", "Change Resolution": "Auflösung ändern", "Indicator Arguments": "Funktionsargument des Indikators", "Symbol Description": "Symbolbeschreibung", "Chande Momentum Oscillator_study": "Chande-Momentum-Oszillator", "Degree": "Grad", " per order": " pro Order", "Line - HL/2": "Linie - HT/2", "Up Wave 4": "Aufwärtswelle 4", "Least Squares Moving Average_study": "Least-Squares gleitender Durchschnitt", "Change Variance value": "Varianzenwert ändern", "powered by ": "unterstützt von ", "Source_input": "Quelle", "Change Seconds To": "Wechsle Sekunden zu", "%K_input": "%K", "Scales Text": "Skalentext", "Please enter template name": "Bitte geben Sie einen Namen für die Vorlage ein.", "Tokyo": "Tokio", "Events Breaks": "Ereignisabbruch", "Study Templates": "Studie Vorlagen", "Months": "Monate", "Symbol Info...": "Symbol-Info...", "Elliott Wave Minor": "Minor Elliott Welle", "Read our blog for more info!": "Lesen Sie unseren Blog, um mehr zu erfahren!", "Measure (Shift + Click on the chart)": "Maß (Shift + Klick auf den Chart)", "Override Min Tick": "Min Tick überschreiben", "Show Positions": "Positionen anzeigen", "Add To Text Notes": "Füge zu Textnotizen hinzu", "Elliott Triple Combo Wave (WXYXZ)": "Elliot Dreifach-Combo-Welle (WXYXZ)", "Multiplier_input": "Multiplikator", "Risk/Reward": "Risiko/Chance", "Base Line Periods_input": "Perioden der Grundlinien", "Show Dividends": "Dividenden anzeigen", "Relative Strength Index_study": "Relative-Stärke-Index", "Modified Schiff Pitchfork": "Modifizierte Schiff-Pitchfork", "Top Labels": "Markierungen an Oberseite", "Show Earnings": "Earnings zeigen", "Line - Open": "Linie - Eröffnung", "Elliott Triangle Wave (ABCDE)": "Elliot Dreiecks-Welle (ABCDE)", "Text Wrap": "Zeilenumbruch", "Reverse Position": "Position Umkehren", "Elliott Minor Retracement": "Minor Elliott Retracement", "DPO_input": "DPO", "Th_day_of_week": "Th", "Slash_hotkey": "Schrägstrich", "No symbols matched your criteria": "Kein passendes Symbol für Ihr Kriterium gefunden", "Icon": "Symbol", "lengthRSI_input": "LängeRSI", "Tuesday": "Dienstag", "Teeth Length_input": "Teeth (Zähne) Länge", "Indicator_input": "Indikator", "Box size assignment method": "Zuweisungsmethode der Boxgrösse", "Open Interval Dialog": "Intervall-Dialog öffnen", "Athens": "Athen", "Fib Speed Resistance Arcs": "Fib Speed Resistance Arcs (Bögen)", "Content": "Inhalt", "middle": "Mitte", "Lock Cursor In Time": "Sperre den Zeiger in Zeit", "Eraser": "Radierer", "Relative Vigor Index_study": "Relative-Vitalität-Index", "Envelope_study": "Umschlag", "Pre Market": "Vor Börseneröffnung", "Horizontal Line": "Horizontale Linie", "O_in_legend": "O", "Confirmation": "Bestätigung", "HL Bars": "High-Low Bars", "Lines:": "Linien:", "Hide Favorite Drawings Toolbar": "Favorisierte Zeichen-Werkzeugleiste ausblenden", "X Cross": "X-Kreuz", "Profit Level. Ticks:": "Gewinnspanne. Ticks:", "Show Date/Time Range": "Datums-/Zeitspanne anzeigen", "Level {0}": "", "Favorites": "Favoriten", "Horz Grid Lines": "Horz Gitterlinien", "-DI_input": "-DI", "Price Range": "Preisspanne", "day": "Tag", "deviation_input": "Abweichung", "Account Size": "Kontogröße", "Value_input": "Wert", "Time Interval": "Zeitinterval", "Success text color": "Textfarbe Erfolg", "ADX smoothing_input": "ADX Glättung", "%d hour": "%d Stunde", "Order size": "Umfang der Order", "Drawing Tools": "Zeichen-Tools", "Save Drawing Template As": "Zeichenvorlage speichern als", "Traditional": "Traditionell", "Chaikin Money Flow_study": "Chaikin Geldkreislauf", "Ease Of Movement_study": "Ease Of Movement", "Defaults": "Standardeinstellungen", "Percent_input": "Prozent", "Interval is not applicable": "Intervall ist nicht anwendbar", "short_input": "kurz", "Visual settings...": "Visuelle Einstellungen...", "RSI_input": "RSI", "Chatham Islands": "Chatham Inseln", "Detrended Price Oscillator_input": "Trendbereinigter Preis-Oszillator", "Mo_day_of_week": "Mo", "center": "zentrieren", "Vertical Line": "Vertikale Linie", "Show Splits on Chart": "Splits auf dem Chart anzeigen", "Sorry, the Copy Link button doesn't work in your browser. Please select the link and copy it manually.": "Entschuldigung, der Knopf \"Link-Adresse kopieren\" funktioniert nicht in Ihrem Browser. Bitte markieren Sie das Link und kopieren Sie es manuell.", "Levels Line": "", "Events & Alerts": "Ereignisse & Alarme", "May": "Mai", "ROCLen4_input": "ROCLen4", "Aroon Down_input": "Aroon Hoch", "Add To Watchlist": "Zur Watchlist Hinzufügen", "Total": "Gesamt", "Price": "Preis", "left": "links", "Lock scale": "Skalierung feststellen", "Limit_input": "Limit", "Change Days To": "Tage ändern in", "Price Oscillator_study": "Preis-Oszillator", "smalen1_input": "smalen1", "Drawing Template '{0}' already exists. Do you really want to replace it?": "Zeichenvorlage '{0}' existiert bereits. Möchten Sie sie wirklich ersetzen?", "Show Middle Point": "Zeige Mittelpunkt", "KST_input": "KST", "Extend Right End": "Rechtes Ende verlängern", "Fans": "Fächer", "Color based on previous close_input": "Farben basiert auf vorherigem Schlusskurs", "Price_input": "Preis", "Gann Fan": "Gann Fächer", "Weeks": "Wochen", "McGinley Dynamic_study": "McGinley-Dynamik", "Relative Volatility Index_study": "Relative-Volatilität-Index", "Source Code...": "Quellcode...", "PVT_input": "PVT", "Show Hidden Tools": "Versteckte Tools anzeigen", "Hull Moving Average_study": "Hull gleitenden Durchschnitt", "Symbol Prev. Close Value": "Voriger Schlusskurs des Symbols", "{0} chart by TradingView": "{0} Chart von TradingView", "Right Shoulder": "Rechte Schulter", "Remove Drawing Tools": "Zeichenwerkzeuge entfernen", "Friday": "Freitag", "Zero_input": "Null", "Company Comparison": "Unternehmen vergleichen", "Stochastic Length_input": "Stochastische Länge", "mult_input": "mult", "URL cannot be received": "URL kann nicht empfangen werden", "Success back color": "Hintergrundfarbe Erfolg", "E_data_mode_end_of_day_letter": "E", "Trend-Based Fib Extension": "Trendbasierte Fib-Extension", "Top": "Oben", "Double Curve": "Doppel-Kurve", "Stochastic RSI_study": "Stochastischer RSI", "Oops!": "Huch!", "Horizontal Ray": "Unterstützung-/Widerstandslinie", "smalen3_input": "smalen3", "Symbol Labels": "Symbol-Label", "Script Editor...": "Skript-Editor", "Trades on Chart": "Trades auf Charts", "Listed Exchange": "Gelistete Börse", "Error:": "Fehler:", "Fullscreen mode": "Vollbildmodus", "Add Text Note For {0}": "Textnotiz für {0} hinzufügen", "K_input": "K", "Do you really want to delete Drawing Template '{0}' ?": "Möchten Sie wirklich die Zeichenvorlage '{0}' löschen?", "ROCLen3_input": "ROCLen3", "Restore Size": "Größe Wiederherstellen", "Text Color": "Textfarbe", "Rename Chart Layout": "Chart-Layout umbenennen", "Background color 2": "Hintergrundfarbe 2", "Drawings Toolbar": "Zeichen-Werkzeugleiste", "New Zealand": "Neuseeland", "CHOP_input": "CHOP", "Apply Defaults": "Voreinstellungen anwenden", "Screen (No Scale)": "Bildschirm (keine Skalierung)", "Extended Alert Line": "Alarmlinie erweitern", "Note": "Anmerkung", "Moving Average Channel_study": "Kanal der gleitenden Durchschnitte", "like": "positive Bewertung", "Show": "Anzeigen", "{0} bars": "{0} Balken", "Lower_input": "Unter", "Created ": "Erstellt ", "Warning": "Warnung", "Elder's Force Index_study": "Elder's Force Index", "Show Earnings on Chart": "Earnings im Chart zeigen", "ATR_input": "ATR", "Stochastic_study": "Stochastik", "Bollinger Bands %B_study": "Bollinger Bands %B", "Time Zone": "Zeitzone", "right": "rechts", "%d month": "%d Monat", "Wrong value": "Falscher Wert", "Upper Band_input": "Oberes Band", "Sun": "Son", "start_input": "Start", "No indicators matched your criteria.": "Keine passenden Indikatoren zu Ihren Kriterien gefunden", "Commission": "Kommission", "Short length_input": "Kurze Länge", "Kolkata": "Kalkutta", "Triple EMA_study": "Dreifache EMA", "Technical Analysis": "Technische Analyse", "Show Text": "Text anzeigen", "Channel": "Kanal", "FXCM CFD data is available only to FXCM account holders": "FXCM CFD Informationen sind nur für Inhaber eines FXCM Kontos verfügbar.", "Lagging Span 2 Periods_input": "Lagging Span 2 Perioden", "Connecting Line": "Verbindungsleitung", "bottom": "Unterseite", "Teeth_input": "Teeth (Zähne)", "Sig_input": "Sig", "Open Manage Drawings": "Zeichnungen verwalten öffnen", "Save New Chart Layout": "Neues Chart-Layout speichern", "Fib Channel": "Fib Kanal", "Save Drawing Template As...": "Zeichenvorlage speichern als...", "Minutes_interval": "Minuten", "Up Wave 2 or B": "Aufwärtswelle 2 oder B", "Columns": "Spalten", "Directional Movement_study": "Richtungsbewegung", "roclen2_input": "roclen2", "Apply WPT Down Wave": "WPT Down Wave anwenden", "Not applicable": "Nicht anwendbar", "Bollinger Bands %B_input": "Bollinger-Bänder %B", "Default": "Standard", "Template name": "Vorlage Name", "Indicator Values": "Werte des Indikators", "Lips Length_input": "Länge der Lips (Lippen)", "Use Upper Deviation_input": "Benutze obere Abweichung", "L_in_legend": "Tief", "Remove custom interval": "Benutzerdefiniertes Intervall entfernen", "shortlen_input": "shortlen", "Quotes are delayed by {0} min": "Kurse sind um {0} Minuten verzögert", "Hide Events on Chart": "Ereignisse im Chart ausblenden", "Williams Alligator_study": "Williams Alligator", "Profit Background Color": "Gewinn Hintergrund Farbe", "Bar's Style": "Balken Darstellung", "Exponential_input": "Exponentiell", "Down Wave 5": "Abwärtsbewegung 5", "Previous": "Vorherig", "Stay In Drawing Mode": "Im Zeichenmodus bleiben", "Comment": "Kommentar", "Connors RSI_study": "Connors RSI", "Bars": "Balken", "Show Labels": "Markierungen anzeigen", "Symbol Type": "Symboltyp", "December": "Dezember", "Lock drawings": "Zeichnungen fixieren", "Border color": "Rahmenfarbe", "Change Seconds From": "Wechsle Sekunden von", "Left Labels": "Beschriftungen links", "Insert Indicator...": "Indikator einfügen...", "ADR_B_input": "ADR_B", "Paste %s": "Einfügen %s", "Change Symbol...": "Symbol ändern...", "Timezone": "Zeitzone", "Invite-only script. You have been granted access.": "Auf-Einladung-Skript. Sie haben Zugang erhalten.", "Color 6_input": "Farbe 6", "Oct": "Okt", "ATR Length": "ATR-Länge", "{0} financials by TradingView": "{0} Finanzdaten von TradingView", "Extend Lines Left": "Linie nach links erweitern", "Source back color": "Hintergrundfarbe Ursprung", "Transparency": "Transparenz", "No": "Nein", "June": "Juni", "Cyclic Lines": "Zyklische Linien", "length28_input": "Länge28", "ABCD Pattern": "ABCD Muster", "When selecting this checkbox the study template will set \"__interval__\" interval on a chart": "Wenn diese Checkbox ausgewählt wird, stellt die Indikatorvorlage das __interval__-Intervall auf dem Chart ein.", "Add": "Hinzufügen", "Line - Low": "Linie - Tief", "On Balance Volume_study": "On Balance Volume", "Apply Indicator on {0} ...": "Indikator anwenden auf {0}...", "NEW": "NEU", "Wick": "Docht", "Hull MA_input": "Hull MA", "Lock Scale": "Skalierung fixieren", "distance: {0}": "Abstand: {0}", "Extended": "verlängert", "Three Drives Pattern": "Three-Drives-Muster", "NO": "NEIN", "Top Margin": "Oberer Rand", "Up fractals_input": "Up Brüche", "Insert Drawing Tool": "Zeichenwerkzeug einfügen", "OHLC Values": "OHLC Werte", "Correlation_input": "Korrelation", "Session Breaks": "Sitzungspausen", "Add {0} To Watchlist": "{0} zur Watchlist hinzufügen", "Anchored Note": "Verankerter Hinweis", "lipsLength_input": "lipsLänge", "low": "Low", "Apply Indicator on {0}": "Indikator anwenden auf {0}", "UpDown Length_input": "UpDown Periodenlänge", "Price Label": "Preis-Label", "Balloon": "Hoher Restbetrag", "Track time": "Zeit verfolgen", "Background Color": "Hintergrundfarbe", "an hour": "eine Stunde", "Right Axis": "Rechte Achse", "D_data_mode_delayed_streaming_letter": "D", "VI -_input": "VI -", "slowLength_input": "slowLength", "Click to set a point": "Klicken Sie, um einen Punkt zu setzen", "Save Indicator Template As...": "Indikatorvorlage speichern als...", "Arrow Up": "Pfeil Aufwärts", "Indicator Titles": "Titel des Indikators", "Failure text color": "Textfarbe Fehler", "Sa_day_of_week": "Sa", "Net Volume_study": "Nettovolumen", "Error": "Fehler", "Edit Position": "Position bearbeiten", "RVI_input": "RVI", "Centered_input": "Zentriert", "Recalculate On Every Tick": "Bei Jedem Anklicken Neu Berechnen", "Left": "Links", "Simple ma(oscillator)_input": "Simple ma(Oszillator)", "Compare": "Vergleichen", "Fisher Transform_study": "Fisher Transform", "Show Orders": "Orders anzeigen", "Zoom In": "Vergrößern", "Length EMA_input": "Länge EMA", "Enter a new chart layout name": "Chart Layout neu benennen", "Signal Length_input": "Signallänge", "FAILURE": "FEHLER", "Point Value": "Punktwert", "D_interval_short": "D", "MA with EMA Cross_study": "MA mit EMA Cross", "Label Up": "Beschriftung Aufwärts", "Price Channel_study": "Preiskanal", "Close": "Schließen", "ParabolicSAR_input": "ParabolicSAR", "Log Scale_scale_menu": "Logarithmische Skalierung", "MACD_input": "MACD", "Do not show this message again": "Nachricht nicht erneut anzeigen", "No Overlapping Labels": "Keine überlappenden Label", "Arrow Mark Left": "Pfeil nach links", "Down Wave 2 or B": "Abwärtsbewegung 2 oder B", "Line - Close": "Linie - Schluss", "(O + H + L + C)/4": "", "Confirm Inputs": "Eingabe bestätigen", "Open_line_tool_position": "Öffnen", "Lagging Span_input": "Lagging Span", "Thursday": "Donnerstag", "Arrow Down": "Pfeil Abwärts", "Elliott Correction Wave (ABC)": "Elliott Korrektur Welle (ABC)", "Error while trying to create snapshot.": "Fehler während der Erstellung eines Schnappschusses", "Label Background": "Beschriftung-Hintergrund", "Templates": "Vorlagen", "Please report the issue or click Reconnect.": "Bitte, melden Sie das Problem und klicken Neu verbinden", "1. Slide your finger to select location for first anchor
    2. Tap anywhere to place the first anchor": "1. Bewegen Sie Ihren Finger zur Position des ersten Ankerpunkts.
    2. Durch Antippen einer beliebigen Stelle wird der erste Ankerpunkt gesetzt.", "Signal Labels": "Kennzeichnung Signal", "Delete Text Note": "Textnotiz löschen", "compiling...": "wird zusammengestellt...", "Detrended Price Oscillator_study": "Trendbereinigter Kursoszillator", "Color 5_input": "Farbe 5", "Fixed Range_study": "Fixed Range", "Up Wave 1 or A": "Aufwärtswelle 1 oder A", "Scale Price Chart Only": "Nur den Preis-Chart vergrößern", "Unmerge Up": "Verschmelzung nach oben aufheben", "auto_scale": "Automatisch", "Short period_input": "Kurzer Zeitraum", "Background": "Hintergrund", "% of equity": "% Aktien", "Apply Elliot Wave Intermediate": "Intermediate Elliot Wellen anwenden", "VWMA_input": "VWMA", "Lower Deviation_input": "Untere Abweichung", "Save Interval": "Intervall speichern", "February": "Februar", "Reverse": "INVERT", "Oops, something went wrong": "Huch, etwas ging schief", "Add to favorites": "Zu Favoriten hinzufügen", "Median": "Medianer Wert", "ADX_input": "ADX", "Remove": "Entfernen", "len_input": "len", "Arrow Mark Up": "Pfeil nach oben", "Active Symbol": "Aktives Symbol", "Crosses_input": "Kreuze", "Middle_input": "Mitte", "Sync drawing to all charts": "Zeichen-Tools mit allen Charts synchronisieren", "LowerLimit_input": "UntereBegrenzung", "Know Sure Thing_study": "Know-Sure-Thing", "Copy Chart Layout": "Chart Layout kopieren", "Compare...": "Vergleichen...", "1. Slide your finger to select location for next anchor
    2. Tap anywhere to place the next anchor": "1. Bewegen Sie Ihren Finger zur Position des nächsten Ankerpunkts.
    2. Durch Antippen einer beliebigen Stelle wird der nächste Ankerpunkt gesetzt.", "Text Notes are available only on chart page. Please open a chart and then try again.": "Textnotizen sind verfügbar nur auf der Chartseite. Bitte öffne einen Chart und versuche Sie es erneut.", "Color": "Farbe", "Aroon Up_input": "Aroon Tief", "Singapore": "Singapur", "Scales Lines": "Skalenlinien", "Type the interval number for munute charts (i.e. 5 if it is going to be a five minute chart). Or number plus letter for H (Hourly), D (Daily), W (Weekly), M (Monthly) intervals (i.e. D or 2H)": "Geben Sie die Intervallänge für Minuten-Charts ein (z.B. 5, wenn es sich um ein Fünf-Minuten-Diagramm handeln soll). Oder Zahl plus Buchstabe für die Intervalle H (Std.), D (Täglich), W (Wöchentlich), M (Monatlich) (z.B. D oder 2H).", "HLC Bars": "HLC-Balken", "Up Wave C": "Aufwärtswelle C", "Show Distance": "Abstand anzeigen", "Risk/Reward Ratio: {0}": "Chance/Risiko Verhältnis: {0}", "Volume Oscillator_study": "Volume Oscillator", "Williams Fractal_study": "Williams Fractal", "Merge Up": "Nach oben zusammenführen", "Right Margin": "Rechter Seitenrand", "Moscow": "Moskau", "Warsaw": "Warschau"} \ No newline at end of file diff --git a/charting_library/static/localization/translations/el.json b/charting_library/static/localization/translations/el.json index 14fffafe..5583539a 100644 --- a/charting_library/static/localization/translations/el.json +++ b/charting_library/static/localization/translations/el.json @@ -1 +1 @@ -{"ticks_slippage ... ticks": "ticks", "Months_interval": "Months", "Percent_input": "Percent", "in_dates": "σε", "roclen1_input": "roclen1", "Top Margin": "Περιθώριο Πάνω", "OSC_input": "OSC", "Volume_study": "Όγκος", "Lips_input": "Lips", "Histogram": "Ιστόγραμμα", "Base Line_input": "Base Line", "Step": "Βήμα", "SMALen2_input": "SMALen2", "Bollinger Bands_study": "Bollinger Bands", "Nov": "Νοε", "Upper_input": "Upper", "Sig_input": "Sig", "Move Up": "Μετακίνηση πάνω", "Scales Properties...": "Ιδιότητες Κλίμακας", "Count_input": "Count", "Anchored Text": "Καρφιτσωμένο κείμενο", "SMALen1_input": "SMALen1", "Cross_chart_type": "Cross", "H_in_legend": "H", "Accumulation/Distribution_study": "Accumulation/Distribution", "Rate Of Change_study": "Rate Of Change", "Color 7_input": "Color 7", "Chop Zone_study": "Chop Zone", "Scales Properties": "Ιδιότητες κλίμακας", "Remove All Indicators": "Αφαίρεση όλων των Τεχνικών Δεικτών", "Oscillator_input": "Oscillator", "Last Modified": "Τελευταία αλλαγή", "yay Color 0_input": "yay Color 0", "Labels": "Ετικέτες", "Chande Kroll Stop_study": "Chande Kroll Stop", "Hours_interval": "Hours", "Scale Right": "Δεξια Κλίμακα", "Bollinger Bands %B_input": "Bollinger Bands %B", "DEMA_input": "DEMA", "Toggle Percentage": "Ποσοστιαία κλίμακα", "Remove All Drawing Tools": "Αφαίρεση όλων των εργαλείων σχεδίασης", "Linear Regression Curve_study": "Linear Regression Curve", "Symbol_input": "Symbol", "increment_input": "increment", "Use Lower Deviation_input": "Use Lower Deviation", "Label": "Ετικέτα", "second": "seconds", "smoothD_input": "smoothD", "Percentage": "Ποσοστό", "RSI Source_input": "RSI Source", "Ichimoku Cloud_study": "Ichimoku Cloud", "Toggle Log Scale": "Λογαριθμική κλίμακα", "Grid": "Πλέγμα", "Mass Index_study": "Mass Index", "Rename...": "Μετονομασία...", "Smoothing_input": "Smoothing", "Color 3_input": "Color 3", "Jaw Length_input": "Jaw Length", "Keltner Channels_study": "Keltner Channels", "Bands style_input": "Bands style", "Undo {0}": "Αναίρεση {0}", "Momentum_study": "Momentum", "MF_input": "MF", "Long length_input": "Long length", "W_interval_short": "W", "Log Scale": "Λογαριθμική κλίμακα", "Equality Line_input": "Equality Line", "Short_input": "Short", "Down fractals_input": "Down fractals", "smalen2_input": "smalen2", "isCentered_input": "isCentered", "Klinger Oscillator_study": "Klinger Oscillator", "Style": "Στυλ", "SMI Ergodic Indicator/Oscillator_study": "SMI Ergodic Indicator/Oscillator", "Aug": "Αυγ", "Manage Drawings": "Διαχείριση σχεδίων", "No drawings yet": "Δεν υπάρχουν ακομα σχέδια", "Chande MO_input": "Chande MO", "jawLength_input": "jawLength", "TRIX_study": "TRIX", "RVGI_input": "RVGI", "signalLength_input": "signalLength", "Middle_input": "Middle", "d_dates": "d", "in %s_time_range": "in %s", "Source_compare": "Πηγή", "Correlation Coefficient_study": "Correlation Coefficient", "Text color": "Χρώμα κειμένου", "lipsLength_input": "lipsLength", "Short Length_input": "Short Length", "teethLength_input": "teethLength", "FAILURE": "ΑΠΟΤΥΧΙΑ", "Lock All Drawing Tools": "Κλείδωμα Εργαλείων Σχεδίασης", "Default": "Προεπιλογή", "Simple ma(oscillator)_input": "Simple ma(oscillator)", "Properties...": "Ιδιότητες...", "MA Cross_study": "MA Cross", "Signal line period_input": "Signal line period", "Show/Hide": "Εμφάνιση/Απόκρυψη", "Price Volume Trend_study": "Price Volume Trend", "Auto Scale": "Αυτόματη κλίμακα", "Scales": "Κλίμακες", "Text": "Κείμενο", "F_data_mode_forbidden_letter": "F", "Long RoC Length_input": "Long RoC Length", "Length3_input": "Length3", "+DI_input": "+DI", "{0} copy": "{0} αντιγράφω", "MACD_study": "MACD", "%s ago_time_range": "%s ago", "Zoom In": "Μεγέθυνση", "Date Range": "Εύρος ημ/νιας", "Show Price": "Εμφάνιση Τιμής", "Level_input": "Level", "Commodity Channel Index_study": "Commodity Channel Index", "Elder's Force Index_input": "Elder's Force Index", "Format": "Διαμόρφωση", "Move Down": "Μετακίνηση κάτω", "Text:": "Κείμενο:", "Aroon_study": "Aroon", "show MA_input": "show MA", "Lead 1_input": "Lead 1", "ADR_B_input": "ADR_B", "SMALen3_input": "SMALen3", "Average Directional Index_study": "Average Directional Index", "Fr_day_of_week": "Fr", "D_input": "D", "Font Size": "Μέγεθος γραμματοσειράς", "Change Interval": "Αλλαγή διαστήματος", "p_input": "p", "orders_up to ... orders": "orders", "Lead 2_input": "Lead 2", "Save image": "Αποθήκευση εικόνας", "Vortex Indicator_study": "Vortex Indicator", "Apply": "Εφαρμογή", "%d day": "%d days", "Hide": "Απόκρυψη", "Scale Left": "Αριστερή Κλίμακα", "Jan": "Ιαν", "Text Alignment:": "Στοίχιση Κειμένου:", "Oct": "Οκτ", "Conversion Line_input": "Conversion Line", "Su_day_of_week": "Su", "Up fractals_input": "Up fractals", "Double EMA_study": "Double EMA", "Price Oscillator_study": "Price Oscillator", "Th_day_of_week": "Th", "Stay in Drawing Mode": "Παραμονή στη Λειτουργία Σχεδίασης", "Average True Range_study": "Average True Range", "Max value_input": "Max value", "MA Length_input": "MA Length", "Time Interval": "Χρονικό εύρος", "UpperLimit_input": "UpperLimit", "sym_input": "sym", "DI Length_input": "DI Length", "SMI_input": "SMI", "Basis_input": "Basis", "Moving Average_study": "Κινητός μέσος όρος", "lengthStoch_input": "lengthStoch", "Remove from favorites": "Διαγραφή απο τα αγαπημένα", "Arnaud Legoux Moving Average_study": "Arnaud Legoux Moving Average", "Technical Analysis": "Τεχνική Ανάλυση", "Lower Band_input": "Lower Band", "VI +_input": "VI +", "Always Show Stats": "Εμφάνιζε πάντα στατιστικά", "ROCLen2_input": "ROCLen2", "Simple ma(signal line)_input": "Simple ma(signal line)", "Show Labels": "Εμφάνιση Ετικετών", "Color 6_input": "Color 6", "Chaikin Oscillator_study": "Chaikin Oscillator", "Color Theme": "Χρωματικό Θέμα", "Centered_input": "Centered", "Bollinger Bands Width_input": "Bollinger Bands Width", "Signal Length_input": "Signal Length", "D_interval_short": "D", "Lock/Unlock": "Κλείδωμα/Ξεκλείδωμα", "Color 1_input": "Color 1", "Moving Average Weighted_study": "Moving Average Weighted", "Save": "Αποθήκευση", "Type": "Τύπος", "Short period_input": "Short period", "Fisher_input": "Fisher", "Volume Oscillator_study": "Ταλαντωτής όγκου", "S_data_mode_snapshot_letter": "S", "smalen4_input": "smalen4", "CCI_input": "CCI", "Upper Deviation_input": "Upper Deviation", "NV_input": "NV", "Choppiness Index_study": "Choppiness Index", "Merge Down": "Συγχώνευση προς τα κάτω", "eod delayed": "με καθυστέρηση", "Delete": "Διαγραφή", "percent_input": "percent", "Apr": "Απρ", "Length_input": "Length", "NO": "ΟΧΙ", "Accumulation/Distribution_input": "Accumulation/Distribution", "C_in_legend": "C", "Weeks_interval": "Weeks", "smoothK_input": "smoothK", "Percentage_scale_menu": "Ποσοστό", "MOM_input": "MOM", "h_interval_short": "h", "Symbol": "Σύμβολο", "Send Backward": "Μετακίνηση προς τα πίσω", "TRIX_input": "TRIX", "Periods_input": "Periods", "Forecast": "Πρόβλεψη", "Histogram_input": "Histogram", "StdDev_input": "StdDev", "Relative Strength Index_study": "Relative Strength Index", "-DI_input": "-DI", "short_input": "short", "top": "πάνω", "Precision": "Ακρίβεια", "Format...": "Διαμόρφωση...", "Toggle Auto Scale": "Αυτόματη κλίμακα", "Search": "Αναζήτησή", "Zig Zag_study": "Zig Zag", "SUCCESS": "ΕΠΙΤΥΧΙΑ", "Detrended Price Oscillator_input": "Detrended Price Oscillator", "length_input": "length", "Price Line": "Γραμμή Τιμής", "Zoom Out": "Σμίκρυνση", "Jul": "Ιουλ", "Visual Order": "Σειρά Εμφάνισης", "Slow length_input": "Slow length", "Conversion Line Periods_input": "Conversion Line Periods", "Sep": "Σεπ", "TEMA_input": "TEMA", "Directional Movement_study": "Directional Movement", "q_input": "q", "Advance/Decline_study": "Advance/Decline", "Drawings": "Σχέδια", "Fast length_input": "Fast length", "Cancel": "Άκυρο", "Ultimate Oscillator_study": "Ultimate Oscillator", "Growing_input": "Growing", "Plot_input": "Plot", "Color 8_input": "Color 8", "Indicators, Fundamentals, Economy and Add-ons": "Δείκτες, Θεμελιώδη, οικονομικά στοιχεία και πρόσθετα", "h_dates": "ω", "Bollinger Bands Width_study": "Bollinger Bands Width", "roclen3_input": "roclen3", "Overbought_input": "Overbought", "DPO_input": "DPO", "TimeZone": "Ζώνη ώρας", "Tu_day_of_week": "Tu", "Period_input": "Period", "Trigger_input": "Trigger", "SigLen_input": "SigLen", "Price": "Τιμή", "Color 2_input": "Color 2", "Show Prices": "Εμφάνιση Τιμών", "Background color 2": "Χρώμα υπόβαθρου 2", "Background color 1": "Χρωμα υπόβαθρου 1", "Williams Alligator_study": "Williams Alligator", "ROCLen1_input": "ROCLen1", "M_interval_short": "M", "Change Symbol...": "Αλλαγή Συμβόλου...", "Zero Line_input": "Zero Line", "Increment_input": "Increment", "Days_interval": "Days", "Net Volume_study": "Net Volume", "m_dates": "m", "Lock": "Κλείδωμα", "length14_input": "length14", "retrying": "προσπαθώ ξανά", "High": "Υψηλό", "Add to favorites": "Προσθήκη στα αγαπημένα", "Color 0_input": "Color 0", "maximum_input": "maximum", "D_data_mode_delayed_letter": "D", "Sigma_input": "Sigma", "Coordinates": "Συντεταγμένες", "fastLength_input": "fastLength", "Width": "Πλάτος", "Historical Volatility_study": "Historical Volatility", "Compare or Add Symbol...": "Σύγκριση ή Προσθήκη Συμβόλου...", "Falling_input": "Falling", "Divisor_input": "Divisor", "Dec": "Δεκ", "length7_input": "length7", "Undo": "Αναίρεση", "Window Size_input": "Window Size", "Reset Scale": "Επαναφορά Κλίμακας", "Long Length_input": "Long Length", "%R_input": "%R", "Chart Properties": "Ιδιότητες γραφήματος", "bars_margin": "bars", "Show Angle": "Εμφάνιση γωνίας", "smalen3_input": "smalen3", "Length1_input": "Length1", "x_input": "x", "Save As...": "Αποθήκευση ως...", "Parabolic SAR_study": "Parabolic SAR", "UO_input": "UO", "Stats Text Color": "Χρώμα κειμένου στατιστικών", "Short RoC Length_input": "Short RoC Length", "Jaw_input": "Jaw", "Help": "Βοήθεια", "Coppock Curve_study": "Coppock Curve", "Reset Chart": "Επαναφορά Γραφήματος", "Marker Color": "Χρωμα υπογράμμισης", "YES": "ΝΑΙ", "longlen_input": "longlen", "Moving Average Exponential_study": "Moving Average Exponential", "s_dates": "s", "Open Interval Dialog": "Άνοιγμα διαλόγου διαστήματος", "invalid symbol": "άκυρο σύμβολο", "Balance of Power_study": "Balance of Power", "EOM_input": "EOM", "Indicators": "Τέχν. Δείκτες", "%D_input": "%D", "Offset_input": "Offset", "HV_input": "HV", "Start_input": "Αρχή", "R_data_mode_realtime_letter": "R", "ROC_input": "ROC", "Send to Back": "Τοποθέτηση πίσω", "Color 4_input": "Color 4", "closed": "αγορά κλειστή", "Prices": "Τιμές", "ADX Smoothing_input": "ADX Smoothing", "Settings": "Ρυθμίσεις", "We_day_of_week": "We", "%d minute": "%d minutes", "Hide All Drawing Tools": "Απόκρυψη Εργαλείων Σχεδίασης", "MA_input": "MA", "Detrended Price Oscillator_study": "Detrended Price Oscillator", "Multiplier_input": "Multiplier", "Image URL": "URL εικόνας", "SMI Ergodic Oscillator_input": "SMI Ergodic Oscillator", "Show Objects Tree": "Εμφάνιση Δέντρου Αντικειμένων", "Price:": "Τιμή:", "Bring to Front": "Τοποθέτηση μπροστά", "Add Symbol": "Εισαγωγή Συμβόλου", "Chaikin Oscillator_input": "Chaikin Oscillator", "C_data_mode_connecting_letter": "C", "SMALen4_input": "SMALen4", "Invalid Symbol": "Άκυρο σύμβολο", "yay Color 1_input": "yay Color 1", "CHOP_input": "CHOP", "Note": "Σημείωση", "WMA Length_input": "WMA Length", "Low": "Χαμηλό", "Borders": "Περιθώρια", "loading...": "ενημέρωση...", "Events": "Γεγονότα", "Columns": "Στήλες", "Jun": "Ιουν", "On Balance Volume_study": "On Balance Volume", "Source_input": "Source", "Properties": "Ιδιότητες", "Log Scale_scale_menu": "Λογαριθμική Κλίμακα", "Length2_input": "Length2", "Measure (Shift + Click on the chart)": "Μέτρηση (Shift + Click στο γράφημα)", "RSI Length_input": "RSI Length", "Base Line Periods_input": "Base Line Periods", "Top Labels": "Ετικέτες Πάνω", "siglen_input": "siglen", "No symbols matched your criteria": "Δε βρέθηκαν σύμβολα", "Icon": "Εικονίδιο", "Open": "Άνοιγμα", "Indicator_input": "Indicator", "Athens": "Αθηνα", "Q_input": "Q", "Relative Vigor Index_study": "Relative Vigor Index", "Envelope_study": "Envelope", "Active Symbol": "Ενεργό σύμβολο", "O_in_legend": "O", "Confirmation": "Επιβεβαίωση", "useTrueRange_input": "useTrueRange", "Show Date/Time Range": "Εμφάνιση εύρους ημ/νιας", "%d year": "%d years", "Copy": "Αντιγραφή", "deviation_input": "deviation", "long_input": "long", "VWMA_study": "VWMA", "%d hour": "%d hours", "Displacement_input": "Displacement", "Chaikin Money Flow_study": "Chaikin Money Flow", "Ease Of Movement_study": "Ease Of Movement", "Defaults": "Προεπιλογές", "Oversold_input": "Oversold", "Williams %R_study": "Williams %R", "depth_input": "depth", "RSI_input": "RSI", "Long period_input": "Long period", "Mo_day_of_week": "Mo", "X_input": "X", "ROCLen4_input": "ROCLen4", "Aroon Down_input": "Aroon Down", "Clone": "Κλωνοποίηση", "left": "δεξιά", "Lock scale": "Κλείδωμα κλίμακας", "smalen1_input": "smalen1", "Price_input": "Price", "Close_input": "Close", "Relative Volatility Index_study": "Relative Volatility Index", "PVT_input": "PVT", "Hull Moving Average_study": "Hull Moving Average", "Bring Forward": "Μετακίνηση μπροστά", "Zero_input": "Zero", "Company Comparison": "Σύγκριση Εταιρείας", "Stochastic Length_input": "Stochastic Length", "mult_input": "mult", "Signal smoothing_input": "Signal smoothing", "E_data_mode_end_of_day_letter": "E", "Stochastic RSI_study": "Stochastic RSI", "Fullscreen mode": "Λειτουργία πλήρους οθόνης", "K_input": "K", "ROCLen3_input": "ROCLen3", "Text Color": "Χρώμα Κειμένου", "Signal_input": "Signal", "like": "likes", "Show": "Εμφάνιση", "Lower_input": "Lower", "Elder's Force Index_study": "Elder's Force Index", "Stochastic_study": "Stochastic", "Bollinger Bands %B_study": "Bollinger Bands %B", "Time Zone": "Ζώνη Ώρας", "%d month": "%d months", "Donchian Channels_study": "Donchian Channels", "Upper Band_input": "Upper Band", "start_input": "start", "No indicators matched your criteria.": "Δε βρέθηκαν Τέχνικο. Δείκτες που να ταιριάζουν με τα κριτήρια αναζήτησης", "Short length_input": "Short length", "Triple EMA_study": "Triple EMA", "Precise Labels_scale_menu": "Precise Labels", "Smoothed Moving Average_study": "Smoothed Moving Average", "Show Text": "Εμφάνιση Κειμένου", "Lagging Span 2 Periods_input": "Lagging Span 2 Periods", "Teeth_input": "Teeth", "Closed_line_tool_position": "Closed", "exponential_input": "exponential", "OnBalanceVolume_input": "OnBalanceVolume", "roclen2_input": "roclen2", "Chande Momentum Oscillator_study": "Chande Momentum Oscillator", "Not applicable": "Μη εφαρμόσιμο", "or copy url:": "ή αντιγραφή URL", "Money Flow_study": "Money Flow", "Lips Length_input": "Lips Length", "Use Upper Deviation_input": "Use Upper Deviation", "L_in_legend": "L", "shortlen_input": "shortlen", "Exponential_input": "Exponential", "Stay In Drawing Mode": "Παραμονή στη Λειτουργία Σχεδίασης", "Comment": "Σχόλιο", "Long_input": "Long", "loading data": "ενημέρωση δεδομένων", "Left Labels": "Ετικέτες Δεξιά", "Insert Indicator...": "Προσθήκη Τεχικού Δείκτη...", "P_input": "P", "Feb": "Φεβ", "Transparency": "Διαφάνεια", "length28_input": "length28", "Objects Tree": "Δέντρο αντικειμένων", "Add": "Προσθήκη", "Least Squares Moving Average_study": "Κινητός μέσος ελαχίστων τετραγώνων", "Hull MA_input": "Hull MA", "Lock Scale": "Κλεϊδωμα Κλίμακας", "distance: {0}": "απόσταση: {0}", "log": "λογαριθμική", "Median_input": "Median", "Minutes_interval": "Minutes", "Insert Drawing Tool": "Προσθήκη Εργαλείου Σχεδίασης", "Show Price Range": "Εμφάνιση Εύρους Τιμών", "Correlation_input": "Correlation", "Anchored Note": "Καρφιτσωμένη σημείωση", "roclen4_input": "roclen4", "Background Color": "Χρώμα Υπόβαθρου", "D_data_mode_delayed_streaming_letter": "D", "VI -_input": "VI -", "slowLength_input": "slowLength", "Click to set a point": "Κάντε κλικ για να δημιουργία σημείου", "Sa_day_of_week": "Sa", "RVI_input": "RVI", "Awesome Oscillator_study": "Awesome Oscillator", "True Strength Indicator_study": "True Strength Indicator", "Objects Tree...": "Δέντρο Αντικειμένων", "Compare": "Σύγκριση", "Fisher Transform_study": "Fisher Transform", "%K_input": "%K", "Teeth Length_input": "Teeth Length", "Close": "Κλείσιμο", "ParabolicSAR_input": "ParabolicSAR", "MACD_input": "MACD", "Open_line_tool_position": "Opened", "Lagging Span_input": "Lagging Span", "Label Background": "Υπόβαθρο Ετικέτας", "ADX smoothing_input": "ADX smoothing", "Mar": "Μαρ", "May": "Μαι", "Color 5_input": "Color 5", "McGinley Dynamic_study": "McGinley Dynamic", "auto_scale": "αυτοματο", "Background": "Υπόβαθρο", "VWMA_input": "VWMA", "Lower Deviation_input": "Lower Deviation", "ATR_input": "ATR", "Shapes_input": "Shapes", "ADX_input": "ADX", "Remove": "Αφαίρεση", "len_input": "len", "Williams Fractal_study": "Williams Fractal", "Crosses_input": "Crosses", "KST_input": "KST", "LowerLimit_input": "LowerLimit", "Know Sure Thing_study": "Know Sure Thing", "Compare...": "Σύγκριση...", "Compare or Add Symbol": "Σύγκριση ή Προσθήκη Συμβόλου", "Color": "Χρώμα", "Aroon Up_input": "Aroon Up", "Show Distance": "Εμφάνιση Διαστήματος", "lengthRSI_input": "lengthRSI", "Merge Up": "Συγχώνευση προς τα πάνω", "Right Margin": "Περιθώριο Δεξιά"} \ No newline at end of file +{"ticks_slippage ... ticks": "ticks", "Months_interval": "Months", "Percent_input": "Percent", "in_dates": "σε", "roclen1_input": "roclen1", "smalen3_input": "smalen3", "OSC_input": "OSC", "Volume_study": "Όγκος", "Lips_input": "Lips", "Histogram": "Ιστόγραμμα", "Base Line_input": "Base Line", "Step": "Βήμα", "SMALen2_input": "SMALen2", "Bollinger Bands_study": "Bollinger Bands", "Nov": "Νοε", "Upper_input": "Upper", "Sig_input": "Sig", "Move Up": "Μετακίνηση πάνω", "Scales Properties...": "Ιδιότητες Κλίμακας", "Count_input": "Count", "Anchored Text": "Καρφιτσωμένο κείμενο", "OnBalanceVolume_input": "OnBalanceVolume", "Cross_chart_type": "Cross", "H_in_legend": "H", "R_data_mode_replay_letter": "R", "Accumulation/Distribution_study": "Accumulation/Distribution", "Rate Of Change_study": "Rate Of Change", "Color 7_input": "Color 7", "Chop Zone_study": "Chop Zone", "Scales Properties": "Ιδιότητες κλίμακας", "Remove All Indicators": "Αφαίρεση όλων των Τεχνικών Δεικτών", "Oscillator_input": "Oscillator", "Last Modified": "Τελευταία αλλαγή", "yay Color 0_input": "yay Color 0", "Labels": "Ετικέτες", "Chande Kroll Stop_study": "Chande Kroll Stop", "Hours_interval": "Hours", "Scale Right": "Δεξια Κλίμακα", "Money Flow_study": "Money Flow", "DEMA_input": "DEMA", "Toggle Percentage": "Ποσοστιαία κλίμακα", "Remove All Drawing Tools": "Αφαίρεση όλων των εργαλείων σχεδίασης", "Linear Regression Curve_study": "Linear Regression Curve", "Symbol_input": "Symbol", "increment_input": "increment", "Compare or Add Symbol...": "Σύγκριση ή Προσθήκη Συμβόλου...", "Label": "Ετικέτα", "smoothD_input": "smoothD", "Percentage": "Ποσοστό", "RSI Source_input": "RSI Source", "Ichimoku Cloud_study": "Ichimoku Cloud", "Toggle Log Scale": "Λογαριθμική κλίμακα", "Grid": "Πλέγμα", "Mass Index_study": "Mass Index", "Rename...": "Μετονομασία...", "Smoothing_input": "Smoothing", "Color 3_input": "Color 3", "Jaw Length_input": "Jaw Length", "Keltner Channels_study": "Keltner Channels", "Bands style_input": "Bands style", "Undo {0}": "Αναίρεση {0}", "Momentum_study": "Momentum", "MF_input": "MF", "m_dates": "m", "Fast length_input": "Fast length", "W_interval_short": "W", "Log Scale": "Λογαριθμική κλίμακα", "Equality Line_input": "Equality Line", "Short_input": "Short", "Down fractals_input": "Down fractals", "smalen2_input": "smalen2", "isCentered_input": "isCentered", "Klinger Oscillator_study": "Klinger Oscillator", "Style": "Στυλ", "SMI Ergodic Indicator/Oscillator_study": "SMI Ergodic Indicator/Oscillator", "Aug": "Αυγ", "No Overlapping Labels_scale_menu": "No Overlapping Labels", "Manage Drawings": "Διαχείριση σχεδίων", "No drawings yet": "Δεν υπάρχουν ακομα σχέδια", "Chande MO_input": "Chande MO", "jawLength_input": "jawLength", "TRIX_study": "TRIX", "RVGI_input": "RVGI", "signalLength_input": "signalLength", "d_dates": "d", "Source_compare": "Πηγή", "Correlation Coefficient_study": "Correlation Coefficient", "Text color": "Χρώμα κειμένου", "lipsLength_input": "lipsLength", "Short Length_input": "Short Length", "teethLength_input": "teethLength", "Visible Range_study": "Visible Range", "Lock All Drawing Tools": "Κλείδωμα Εργαλείων Σχεδίασης", "Long_input": "Long", "Default": "Προεπιλογή", "Properties...": "Ιδιότητες...", "MA Cross_study": "MA Cross", "Signal line period_input": "Signal line period", "Show/Hide": "Εμφάνιση/Απόκρυψη", "Price Volume Trend_study": "Price Volume Trend", "Auto Scale": "Αυτόματη κλίμακα", "Text": "Κείμενο", "F_data_mode_forbidden_letter": "F", "Long RoC Length_input": "Long RoC Length", "Length3_input": "Length3", "+DI_input": "+DI", "Length_input": "Length", "MACD_study": "MACD", "%s ago_time_range": "%s ago", "Zoom In": "Μεγέθυνση", "Date Range": "Εύρος ημ/νιας", "Show Price": "Εμφάνιση Τιμής", "Level_input": "Level", "Commodity Channel Index_study": "Commodity Channel Index", "Elder's Force Index_input": "Elder's Force Index", "Format": "Διαμόρφωση", "Move Down": "Μετακίνηση κάτω", "Text:": "Κείμενο:", "Aroon_study": "Aroon", "Active Symbol": "Ενεργό σύμβολο", "Lead 1_input": "Lead 1", "SMALen1_input": "SMALen1", "P_input": "P", "SMALen3_input": "SMALen3", "Average Directional Index_study": "Average Directional Index", "Fr_day_of_week": "Fr", "D_input": "D", "Font Size": "Μέγεθος γραμματοσειράς", "Change Interval": "Αλλαγή διαστήματος", "p_input": "p", "orders_up to ... orders": "orders", "Dot_hotkey": "Dot", "Lead 2_input": "Lead 2", "Save image": "Αποθήκευση εικόνας", "Vortex Indicator_study": "Vortex Indicator", "Apply": "Εφαρμογή", "Plots Background_study": "Plots Background", "Price Channel_study": "Price Channel", "Hide": "Απόκρυψη", "Scale Left": "Αριστερή Κλίμακα", "Jan": "Ιαν", "Text Alignment:": "Στοίχιση Κειμένου:", "R_data_mode_realtime_letter": "R", "Conversion Line_input": "Conversion Line", "Su_day_of_week": "Su", "Up fractals_input": "Up fractals", "Double EMA_study": "Double EMA", "Price Oscillator_study": "Price Oscillator", "Th_day_of_week": "Th", "Stay in Drawing Mode": "Παραμονή στη Λειτουργία Σχεδίασης", "Average True Range_study": "Average True Range", "Max value_input": "Max value", "MA Length_input": "MA Length", "in %s_time_range": "in %s", "UpperLimit_input": "UpperLimit", "sym_input": "sym", "DI Length_input": "DI Length", "SMI_input": "SMI", "Basis_input": "Basis", "Moving Average_study": "Κινητός μέσος όρος", "lengthStoch_input": "lengthStoch", "Remove from favorites": "Διαγραφή απο τα αγαπημένα", "Arnaud Legoux Moving Average_study": "Arnaud Legoux Moving Average", "Technical Analysis": "Τεχνική Ανάλυση", "Lower Band_input": "Lower Band", "VI +_input": "VI +", "Always Show Stats": "Εμφάνιζε πάντα στατιστικά", "ROCLen2_input": "ROCLen2", "Simple ma(signal line)_input": "Simple ma(signal line)", "Show Labels": "Εμφάνιση Ετικετών", "Color 6_input": "Color 6", "CRSI_study": "CRSI", "Value_input": "Value", "Chaikin Oscillator_study": "Chaikin Oscillator", "ASI_study": "ASI", "Color Theme": "Χρωματικό Θέμα", "Awesome Oscillator_study": "Awesome Oscillator", "Bollinger Bands Width_input": "Bollinger Bands Width", "Signal Length_input": "Signal Length", "D_interval_short": "D", "Color 1_input": "Color 1", "Moving Average Weighted_study": "Moving Average Weighted", "Save": "Αποθήκευση", "Type": "Τύπος", "Short period_input": "Short period", "Fisher_input": "Fisher", "Volume Oscillator_study": "Ταλαντωτής όγκου", "S_data_mode_snapshot_letter": "S", "smalen4_input": "smalen4", "CCI_input": "CCI", "Upper Deviation_input": "Upper Deviation", "Accumulative Swing Index_study": "Accumulative Swing Index", "Move_input": "Move", "NV_input": "NV", "Choppiness Index_study": "Choppiness Index", "Merge Down": "Συγχώνευση προς τα κάτω", "Delete": "Διαγραφή", "Length MA_input": "Length MA", "percent_input": "percent", "Apr": "Απρ", "{0} copy": "{0} αντιγράφω", "Median_input": "Median", "Accumulation/Distribution_input": "Accumulation/Distribution", "C_in_legend": "C", "Weeks_interval": "Weeks", "smoothK_input": "smoothK", "Percentage_scale_menu": "Ποσοστό", "MOM_input": "MOM", "h_interval_short": "h", "top": "πάνω", "Send Backward": "Μετακίνηση προς τα πίσω", "Custom color...": "Αλλο χρώμα...", "TRIX_input": "TRIX", "Periods_input": "Periods", "Forecast": "Πρόβλεψη", "Histogram_input": "Histogram", "StdDev_input": "StdDev", "EMA Cross_study": "EMA Cross", "Conversion Line Periods_input": "Conversion Line Periods", "Add Symbol_compare_or_add_symbol_dialog": "Add Symbol", "Williams %R_study": "Williams %R", "Symbol": "Σύμβολο", "Precision": "Ακρίβεια", "RSI_input": "RSI", "Format...": "Διαμόρφωση...", "Toggle Auto Scale": "Αυτόματη κλίμακα", "Search": "Αναζήτησή", "Zig Zag_study": "Zig Zag", "SUCCESS": "ΕΠΙΤΥΧΙΑ", "Long period_input": "Long period", "length_input": "length", "roclen4_input": "roclen4", "Price Line": "Γραμμή Τιμής", "Zoom Out": "Σμίκρυνση", "Jul": "Ιουλ", "Visual Order": "Σειρά Εμφάνισης", "Slow length_input": "Slow length", "Sep": "Σεπ", "TEMA_input": "TEMA", "q_input": "q", "Advance/Decline_study": "Advance/Decline", "Drawings": "Σχέδια", "Cancel": "Άκυρο", "Ultimate Oscillator_study": "Ultimate Oscillator", "Growing_input": "Growing", "Plot_input": "Plot", "Color 8_input": "Color 8", "Indicators, Fundamentals, Economy and Add-ons": "Δείκτες, Θεμελιώδη, οικονομικά στοιχεία και πρόσθετα", "h_dates": "ω", "Bollinger Bands Width_study": "Bollinger Bands Width", "Top Labels": "Ετικέτες Πάνω", "Overbought_input": "Overbought", "DPO_input": "DPO", "TimeZone": "Ζώνη ώρας", "Tu_day_of_week": "Tu", "Period_input": "Period", "Trigger_input": "Trigger", "SigLen_input": "SigLen", "Price": "Τιμή", "Color 2_input": "Color 2", "Show Prices": "Εμφάνιση Τιμών", "Background color 2": "Χρώμα υπόβαθρου 2", "Background color 1": "Χρωμα υπόβαθρου 1", "MA/EMA Cross_study": "MA/EMA Cross", "Williams Alligator_study": "Williams Alligator", "ROCLen1_input": "ROCLen1", "M_interval_short": "M", "Chaikin Oscillator_input": "Chaikin Oscillator", "Zero Line_input": "Zero Line", "Increment_input": "Increment", "Days_interval": "Days", "Net Volume_study": "Net Volume", "Historical Volatility_study": "Historical Volatility", "Lock": "Κλείδωμα", "length14_input": "length14", "High": "Υψηλό", "Lock/Unlock": "Κλείδωμα/Ξεκλείδωμα", "Color 0_input": "Color 0", "maximum_input": "maximum", "D_data_mode_delayed_letter": "D", "Sigma_input": "Sigma", "VWMA_study": "VWMA", "fastLength_input": "fastLength", "Width": "Πλάτος", "Use Lower Deviation_input": "Use Lower Deviation", "Falling_input": "Falling", "Divisor_input": "Divisor", "Dec": "Δεκ", "length7_input": "length7", "Undo": "Αναίρεση", "Window Size_input": "Window Size", "Reset Scale": "Επαναφορά Κλίμακας", "Long Length_input": "Long Length", "%R_input": "%R", "Chart Properties": "Ιδιότητες γραφήματος", "bars_margin": "bars", "Show Angle": "Εμφάνιση γωνίας", "Objects Tree...": "Δέντρο Αντικειμένων", "Length1_input": "Length1", "x_input": "x", "Save As...": "Αποθήκευση ως...", "Parabolic SAR_study": "Parabolic SAR", "UO_input": "UO", "Stats Text Color": "Χρώμα κειμένου στατιστικών", "Short RoC Length_input": "Short RoC Length", "Jaw_input": "Jaw", "Help": "Βοήθεια", "Coppock Curve_study": "Coppock Curve", "Reset Chart": "Επαναφορά Γραφήματος", "Marker Color": "Χρωμα υπογράμμισης", "Open": "Άνοιγμα", "YES": "ΝΑΙ", "longlen_input": "longlen", "Moving Average Exponential_study": "Moving Average Exponential", "s_dates": "s", "Open Interval Dialog": "Άνοιγμα διαλόγου διαστήματος", "Balance of Power_study": "Balance of Power", "EOM_input": "EOM", "Indicators": "Τέχν. Δείκτες", "%D_input": "%D", "Offset_input": "Offset", "HV_input": "HV", "Start_input": "Αρχή", "Oct": "Οκτ", "ROC_input": "ROC", "Send to Back": "Τοποθέτηση πίσω", "Color 4_input": "Color 4", "Prices": "Τιμές", "ADX Smoothing_input": "ADX Smoothing", "Settings": "Ρυθμίσεις", "We_day_of_week": "We", "Hide All Drawing Tools": "Απόκρυψη Εργαλείων Σχεδίασης", "MA_input": "MA", "Length2_input": "Length2", "Multiplier_input": "Multiplier", "Session Volume_study": "Session Volume", "Image URL": "URL εικόνας", "SMI Ergodic Oscillator_input": "SMI Ergodic Oscillator", "Show Objects Tree": "Εμφάνιση Δέντρου Αντικειμένων", "Price:": "Τιμή:", "Bring to Front": "Τοποθέτηση μπροστά", "Add Symbol": "Εισαγωγή Συμβόλου", "C_data_mode_connecting_letter": "C", "SMALen4_input": "SMALen4", "Invalid Symbol": "Άκυρο σύμβολο", "yay Color 1_input": "yay Color 1", "CHOP_input": "CHOP", "Middle_input": "Middle", "WMA Length_input": "WMA Length", "Low": "Χαμηλό", "Borders": "Περιθώρια", "loading...": "ενημέρωση...", "Closed_line_tool_position": "Closed", "Columns": "Στήλες", "Jun": "Ιουν", "Least Squares Moving Average_study": "Κινητός μέσος ελαχίστων τετραγώνων", "Source_input": "Source", "%K_input": "%K", "Log Scale_scale_menu": "Λογαριθμική Κλίμακα", "len_input": "len", "Measure (Shift + Click on the chart)": "Μέτρηση (Shift + Click στο γράφημα)", "RSI Length_input": "RSI Length", "Long length_input": "Long length", "Base Line Periods_input": "Base Line Periods", "Relative Strength Index_study": "Relative Strength Index", "roclen3_input": "roclen3", "siglen_input": "siglen", "Slash_hotkey": "Slash", "No symbols matched your criteria": "Δε βρέθηκαν σύμβολα", "Icon": "Εικονίδιο", "lengthRSI_input": "lengthRSI", "Teeth Length_input": "Teeth Length", "Indicator_input": "Indicator", "Athens": "Αθηνα", "Q_input": "Q", "Relative Vigor Index_study": "Relative Vigor Index", "Envelope_study": "Envelope", "show MA_input": "show MA", "O_in_legend": "O", "Confirmation": "Επιβεβαίωση", "useTrueRange_input": "useTrueRange", "Show Date/Time Range": "Εμφάνιση εύρους ημ/νιας", "Minutes_interval": "Minutes", "-DI_input": "-DI", "Copy": "Αντιγραφή", "deviation_input": "deviation", "long_input": "long", "Time Interval": "Χρονικό εύρος", "Displacement_input": "Displacement", "Chaikin Money Flow_study": "Chaikin Money Flow", "Ease Of Movement_study": "Ease Of Movement", "Defaults": "Προεπιλογές", "Oversold_input": "Oversold", "short_input": "short", "depth_input": "depth", "VWAP_study": "VWAP", "Detrended Price Oscillator_input": "Detrended Price Oscillator", "Mo_day_of_week": "Mo", "ROC Length_input": "ROC Length", "X_input": "X", "ROCLen4_input": "ROCLen4", "Aroon Down_input": "Aroon Down", "Clone": "Κλωνοποίηση", "left": "δεξιά", "Lock scale": "Κλείδωμα κλίμακας", "Limit_input": "Limit", "smalen1_input": "smalen1", "Color based on previous close_input": "Color based on previous close", "Price_input": "Price", "Relative Volatility Index_study": "Relative Volatility Index", "PVT_input": "PVT", "Hull Moving Average_study": "Hull Moving Average", "Bring Forward": "Μετακίνηση μπροστά", "Zero_input": "Zero", "Company Comparison": "Σύγκριση Εταιρείας", "Stochastic Length_input": "Stochastic Length", "mult_input": "mult", "Signal smoothing_input": "Signal smoothing", "E_data_mode_end_of_day_letter": "E", "Stochastic RSI_study": "Stochastic RSI", "Signal_input": "Signal", "Fullscreen mode": "Λειτουργία πλήρους οθόνης", "K_input": "K", "ROCLen3_input": "ROCLen3", "Text Color": "Χρώμα Κειμένου", "Note": "Σημείωση", "Moving Average Channel_study": "Moving Average Channel", "Show": "Εμφάνιση", "Lower_input": "Lower", "Elder's Force Index_study": "Elder's Force Index", "Stochastic_study": "Stochastic", "Bollinger Bands %B_study": "Bollinger Bands %B", "Time Zone": "Ζώνη Ώρας", "Donchian Channels_study": "Donchian Channels", "Upper Band_input": "Upper Band", "start_input": "start", "No indicators matched your criteria.": "Δε βρέθηκαν Τέχνικο. Δείκτες που να ταιριάζουν με τα κριτήρια αναζήτησης", "Short length_input": "Short length", "Triple EMA_study": "Triple EMA", "Smoothed Moving Average_study": "Smoothed Moving Average", "Show Text": "Εμφάνιση Κειμένου", "Lagging Span 2 Periods_input": "Lagging Span 2 Periods", "Teeth_input": "Teeth", "exponential_input": "exponential", "Directional Movement_study": "Directional Movement", "roclen2_input": "roclen2", "Chande Momentum Oscillator_study": "Chande Momentum Oscillator", "Not applicable": "Μη εφαρμόσιμο", "Bollinger Bands %B_input": "Bollinger Bands %B", "Shapes_input": "Shapes", "Lips Length_input": "Lips Length", "Use Upper Deviation_input": "Use Upper Deviation", "L_in_legend": "L", "shortlen_input": "shortlen", "Exponential_input": "Exponential", "Stay In Drawing Mode": "Παραμονή στη Λειτουργία Σχεδίασης", "Comment": "Σχόλιο", "Connors RSI_study": "Connors RSI", "Left Labels": "Ετικέτες Δεξιά", "Insert Indicator...": "Προσθήκη Τεχικού Δείκτη...", "ADR_B_input": "ADR_B", "Change Symbol...": "Αλλαγή Συμβόλου...", "Feb": "Φεβ", "Transparency": "Διαφάνεια", "length28_input": "length28", "Objects Tree": "Δέντρο αντικειμένων", "Add": "Προσθήκη", "On Balance Volume_study": "On Balance Volume", "Hull MA_input": "Hull MA", "Lock Scale": "Κλεϊδωμα Κλίμακας", "distance: {0}": "απόσταση: {0}", "log": "λογαριθμική", "NO": "ΟΧΙ", "Top Margin": "Περιθώριο Πάνω", "Insert Drawing Tool": "Προσθήκη Εργαλείου Σχεδίασης", "Show Price Range": "Εμφάνιση Εύρους Τιμών", "Correlation_input": "Correlation", "Anchored Note": "Καρφιτσωμένη σημείωση", "UpDown Length_input": "UpDown Length", "Background Color": "Χρώμα Υπόβαθρου", "D_data_mode_delayed_streaming_letter": "D", "VI -_input": "VI -", "slowLength_input": "slowLength", "Click to set a point": "Κάντε κλικ για να δημιουργία σημείου", "Sa_day_of_week": "Sa", "RVI_input": "RVI", "Centered_input": "Centered", "True Strength Indicator_study": "True Strength Indicator", "Simple ma(oscillator)_input": "Simple ma(oscillator)", "Compare": "Σύγκριση", "Fisher Transform_study": "Fisher Transform", "Length EMA_input": "Length EMA", "FAILURE": "ΑΠΟΤΥΧΙΑ", "MA with EMA Cross_study": "MA with EMA Cross", "Close": "Κλείσιμο", "ParabolicSAR_input": "ParabolicSAR", "MACD_input": "MACD", "Open_line_tool_position": "Opened", "Lagging Span_input": "Lagging Span", "Label Background": "Υπόβαθρο Ετικέτας", "ADX smoothing_input": "ADX smoothing", "Mar": "Μαρ", "May": "Μαι", "Detrended Price Oscillator_study": "Detrended Price Oscillator", "Color 5_input": "Color 5", "McGinley Dynamic_study": "McGinley Dynamic", "auto_scale": "αυτοματο", "Background": "Υπόβαθρο", "VWMA_input": "VWMA", "Lower Deviation_input": "Lower Deviation", "ATR_input": "ATR", "Add to favorites": "Προσθήκη στα αγαπημένα", "ADX_input": "ADX", "Remove": "Αφαίρεση", "Crosses_input": "Crosses", "KST_input": "KST", "LowerLimit_input": "LowerLimit", "Know Sure Thing_study": "Know Sure Thing", "Compare...": "Σύγκριση...", "Compare or Add Symbol": "Σύγκριση ή Προσθήκη Συμβόλου", "Color": "Χρώμα", "Aroon Up_input": "Aroon Up", "Show Distance": "Εμφάνιση Διαστήματος", "Fixed Range_study": "Fixed Range", "Williams Fractal_study": "Williams Fractal", "Merge Up": "Συγχώνευση προς τα πάνω", "Right Margin": "Περιθώριο Δεξιά"} \ No newline at end of file diff --git a/charting_library/static/localization/translations/en.json b/charting_library/static/localization/translations/en.json index ab45fe8f..e264d2f4 100644 --- a/charting_library/static/localization/translations/en.json +++ b/charting_library/static/localization/translations/en.json @@ -1 +1 @@ -{"Simple ma(oscillator)_input": "Simple ma(oscillator)", "ticks_slippage ... ticks": "ticks", "Months_interval": "Months", "Detrended Price Oscillator_input": "Detrended Price Oscillator", "maximum_input": "maximum", "Percent_input": "Percent", "D_data_mode_delayed_letter": "D", "smalen1_input": "smalen1", "fastLength_input": "fastLength", "roclen1_input": "roclen1", "Price_input": "Price", "Close_input": "Close", "Use Lower Deviation_input": "Use Lower Deviation", "Falling_input": "Falling", "useTrueRange_input": "useTrueRange", "Relative Volatility Index_study": "Relative Volatility Index", "R_data_mode_realtime_letter": "R", "PVT_input": "PVT", "Conversion Line_input": "Conversion Line", "Hull Moving Average_study": "Hull Moving Average", "Su_day_of_week": "Su", "Up fractals_input": "Up fractals", "OSC_input": "OSC", "Divisor_input": "Divisor", "Volume_study": "Volume", "Lips_input": "Lips", "Window Size_input": "Window Size", "Zero_input": "Zero", "Base Line_input": "Base Line", "Double EMA_study": "Double EMA", "D_interval_short": "D", "Signal smoothing_input": "Signal smoothing", "E_data_mode_end_of_day_letter": "E", "SMALen2_input": "SMALen2", "Bollinger Bands_study": "Bollinger Bands", "Long Length_input": "Long Length", "True Strength Indicator_study": "True Strength Indicator", "%R_input": "%R", "Upper_input": "Upper", "Stochastic RSI_study": "Stochastic RSI", "bars_margin": "bars", "Sigma_input": "Sigma", "%d hour_plural": "%d hours", "Average True Range_study": "Average True Range", "Max value_input": "Max value", "MA Length_input": "MA Length", "Length1_input": "Length1", "SMALen1_input": "SMALen1", "UpperLimit_input": "UpperLimit", "sym_input": "sym", "Short RoC Length_input": "Short RoC Length", "ROCLen3_input": "ROCLen3", "DI Length_input": "DI Length", "Parabolic SAR_study": "Parabolic SAR", "Sa_day_of_week": "Sa", "SMI_input": "SMI", "Lead 1_input": "Lead 1", "Basis_input": "Basis", "Moving Average_study": "Moving Average", "in_dates": "in", "lengthStoch_input": "lengthStoch", "Color 7_input": "Color 7", "Chop Zone_study": "Chop Zone", "Signal_input": "Signal", "Jaw_input": "Jaw", "Jaw Length_input": "Jaw Length", "MACD_input": "MACD", "Coppock Curve_study": "Coppock Curve", "yay Color 0_input": "yay Color 0", "Oscillator_input": "Oscillator", "Chande Kroll Stop_study": "Chande Kroll Stop", "Hours_interval": "Hours", "StdDev_input": "StdDev", "Smoothed Moving Average_study": "Smoothed Moving Average", "Lower Band_input": "Lower Band", "VI +_input": "VI +", "Elder's Force Index_study": "Elder's Force Index", "Money Flow_study": "Money Flow", "DEMA_input": "DEMA", "ROCLen2_input": "ROCLen2", "Simple ma(signal line)_input": "Simple ma(signal line)", "longlen_input": "longlen", "Moving Average Exponential_study": "Moving Average Exponential", "%d month_plural": "%d months", "Lower_input": "Lower", "Linear Regression Curve_study": "Linear Regression Curve", "Symbol_input": "Symbol", "s_dates": "s", "Upper Deviation_input": "Upper Deviation", "Upper Band_input": "Upper Band", "Chaikin Oscillator_study": "Chaikin Oscillator", "Chande MO_input": "Chande MO", "Balance of Power_study": "Balance of Power", "EOM_input": "EOM", "start_input": "start", "Centered_input": "Centered", "Bollinger Bands Width_input": "Bollinger Bands Width", "Signal Length_input": "Signal Length", "MOM_input": "MOM", "Average Directional Index_study": "Average Directional Index", "Short length_input": "Short length", "smoothD_input": "smoothD", "Color 1_input": "Color 1", "Moving Average Weighted_study": "Moving Average Weighted", "Precise Labels_scale_menu": "Precise Labels", "ADX smoothing_input": "ADX smoothing", "Short period_input": "Short period", "smalen4_input": "smalen4", "RSI Source_input": "RSI Source", "%D_input": "%D", "signalLength_input": "signalLength", "Offset_input": "Offset", "day_plural": "days", "HV_input": "HV", "Teeth_input": "Teeth", "Volume Oscillator_study": "Volume Oscillator", "h_interval_short": "h", "Ichimoku Cloud_study": "Ichimoku Cloud", "S_data_mode_snapshot_letter": "S", "jawLength_input": "jawLength", "Hull MA_input": "Hull MA", "ROC_input": "ROC", "exponential_input": "exponential", "Mass Index_study": "Mass Index", "OnBalanceVolume_input": "OnBalanceVolume", "Smoothing_input": "Smoothing", "roclen2_input": "roclen2", "Color 3_input": "Color 3", "Chande Momentum Oscillator_study": "Chande Momentum Oscillator", "Fr_day_of_week": "Fr", "Bollinger Bands %B_input": "Bollinger Bands %B", "CCI_input": "CCI", "increment_input": "increment", "Lagging Span 2 Periods_input": "Lagging Span 2 Periods", "Keltner Channels_study": "Keltner Channels", "Lips Length_input": "Lips Length", "Use Upper Deviation_input": "Use Upper Deviation", "L_in_legend": "L", "We_day_of_week": "We", "Bands style_input": "Bands style", "shortlen_input": "shortlen", "Momentum_study": "Momentum", "ADX_input": "ADX", "MF_input": "MF", "Williams Alligator_study": "Williams Alligator", "week_plural": "weeks", "NV_input": "NV", "Choppiness Index_study": "Choppiness Index", "Long length_input": "Long length", "Th_day_of_week": "Th", "Vortex Indicator_study": "Vortex Indicator", "MA_input": "MA", "Long_input": "Long", "Detrended Price Oscillator_study": "Detrended Price Oscillator", "Multiplier_input": "Multiplier", "percent_input": "percent", "Equality Line_input": "Equality Line", "lengthRSI_input": "lengthRSI", "SMI Ergodic Oscillator_input": "SMI Ergodic Oscillator", "Accumulation/Distribution_input": "Accumulation/Distribution", "D_input": "D", "C_in_legend": "C", "Weeks_interval": "Weeks", "smoothK_input": "smoothK", "Percentage_scale_menu": "Percentage", "Down fractals_input": "Down fractals", "like_plural": "likes", "P_input": "P", "Source_compare": "Source", "smalen2_input": "smalen2", "Ease Of Movement_study": "Ease Of Movement", "Color 6_input": "Color 6", "C_data_mode_connecting_letter": "C", "Klinger Oscillator_study": "Klinger Oscillator", "Exponential_input": "Exponential", "TRIX_input": "TRIX", "SMI Ergodic Indicator/Oscillator_study": "SMI Ergodic Indicator/Oscillator", "Chaikin Oscillator_input": "Chaikin Oscillator", "Bollinger Bands %B_study": "Bollinger Bands %B", "Correlation_input": "Correlation", "yay Color 1_input": "yay Color 1", "length28_input": "length28", "Periods_input": "Periods", "CHOP_input": "CHOP", "hour_plural": "hours", "TRIX_study": "TRIX", "WMA Length_input": "WMA Length", "Growing_input": "Growing", "Color 0_input": "Color 0", "On Balance Volume_study": "On Balance Volume", "RVGI_input": "RVGI", "Histogram_input": "Histogram", "Count_input": "Count", "Stochastic Length_input": "Stochastic Length", "Middle_input": "Middle", "Closed_line_tool_position": "Closed", "Indicator_input": "Indicator", "Relative Strength Index_study": "Relative Strength Index", "d_dates": "d", "in %s_time_range": "in %s", "Start_input": "Start", "%s ago_time_range": "%s ago", "mult_input": "mult", "-DI_input": "-DI", "Length2_input": "Length2", "Donchian Channels_study": "Donchian Channels", "Correlation Coefficient_study": "Correlation Coefficient", "Least Squares Moving Average_study": "Least Squares Moving Average", "depth_input": "depth", "Mo_day_of_week": "Mo", "lipsLength_input": "lipsLength", "Short Length_input": "Short Length", "teethLength_input": "teethLength", "roclen4_input": "roclen4", "month_plural": "months", "length7_input": "length7", "Source_input": "Source", "%K_input": "%K", "Log Scale_scale_menu": "Log Scale", "Zig Zag_study": "Zig Zag", "D_data_mode_delayed_streaming_letter": "D", "VI -_input": "VI -", "slowLength_input": "slowLength", "Long period_input": "Long period", "length_input": "length", "ADX Smoothing_input": "ADX Smoothing", "Price Oscillator_study": "Price Oscillator", "W_interval_short": "W", "Median_input": "Median", "MA Cross_study": "MA Cross", "RSI Length_input": "RSI Length", "Signal line period_input": "Signal line period", "RVI_input": "RVI", "Base Line Periods_input": "Base Line Periods", "Awesome Oscillator_study": "Awesome Oscillator", "Slow length_input": "Slow length", "Conversion Line Periods_input": "Conversion Line Periods", "Price Volume Trend_study": "Price Volume Trend", "smalen3_input": "smalen3", "Fisher Transform_study": "Fisher Transform", "Stochastic_study": "Stochastic", "ATR_input": "ATR", "%d day_plural": "%d days", "TEMA_input": "TEMA", "siglen_input": "siglen", "F_data_mode_forbidden_letter": "F", "Directional Movement_study": "Directional Movement", "short_input": "short", "q_input": "q", "Zero Line_input": "Zero Line", "Teeth Length_input": "Teeth Length", "Long RoC Length_input": "Long RoC Length", "Length3_input": "Length3", "+DI_input": "+DI", "len_input": "len", "Length_input": "Length", "Fast length_input": "Fast length", "ParabolicSAR_input": "ParabolicSAR", "Sig_input": "Sig", "Short_input": "Short", "Ultimate Oscillator_study": "Ultimate Oscillator", "MACD_study": "MACD", "second_plural": "seconds", "%d year_plural": "%d years", "Plot_input": "Plot", "Color 8_input": "Color 8", "Open_line_tool_position": "Open", "Lagging Span_input": "Lagging Span", "Q_input": "Q", "roclen3_input": "roclen3", "Envelope_study": "Envelope", "Overbought_input": "Overbought", "DPO_input": "DPO", "UO_input": "UO", "%d minute_plural": "%d minutes", "Triple EMA_study": "Triple EMA", "Level_input": "Level", "Relative Vigor Index_study": "Relative Vigor Index", "Arnaud Legoux Moving Average_study": "Arnaud Legoux Moving Average", "show MA_input": "show MA", "Commodity Channel Index_study": "Commodity Channel Index", "O_in_legend": "O", "Elder's Force Index_input": "Elder's Force Index", "Color 4_input": "Color 4", "Period_input": "Period", "Trigger_input": "Trigger", "SigLen_input": "SigLen", "Color 2_input": "Color 2", "Color 5_input": "Color 5", "McGinley Dynamic_study": "McGinley Dynamic", "SMALen3_input": "SMALen3", "auto_scale": "auto", "Minutes_interval": "Minutes", "Aroon_study": "Aroon", "Tu_day_of_week": "Tu", "VWMA_input": "VWMA", "h_dates": "h", "deviation_input": "deviation", "long_input": "long", "VWMA_study": "VWMA", "ADR_B_input": "ADR_B", "Lower Deviation_input": "Lower Deviation", "Cross_chart_type": "Cross", "Displacement_input": "Displacement", "Shapes_input": "Shapes", "Fisher_input": "Fisher", "H_in_legend": "H", "ROCLen1_input": "ROCLen1", "Chaikin Money Flow_study": "Chaikin Money Flow", "M_interval_short": "M", "x_input": "x", "p_input": "p", "isCentered_input": "isCentered", "Crosses_input": "Crosses", "KST_input": "KST", "Oversold_input": "Oversold", "Williams %R_study": "Williams %R", "LowerLimit_input": "LowerLimit", "RSI_input": "RSI", "Know Sure Thing_study": "Know Sure Thing", "Historical Volatility_study": "Historical Volatility", "Increment_input": "Increment", "Days_interval": "Days", "Net Volume_study": "Net Volume", "m_dates": "m", "Aroon Up_input": "Aroon Up", "orders_up to ... orders": "orders", "length14_input": "length14", "Lead 2_input": "Lead 2", "X_input": "X", "minute_plural": "minutes", "Accumulation/Distribution_study": "Accumulation/Distribution", "Bollinger Bands Width_study": "Bollinger Bands Width", "SMALen4_input": "SMALen4", "ROCLen4_input": "ROCLen4", "Aroon Down_input": "Aroon Down", "Williams Fractal_study": "Williams Fractal", "Advance/Decline_study": "Advance/Decline", "K_input": "K", "Rate Of Change_study": "Rate Of Change"} \ No newline at end of file +{"ticks_slippage ... ticks": "ticks", "Months_interval": "Months", "Percent_input": "Percent", "in_dates": "in", "roclen1_input": "roclen1", "OSC_input": "OSC", "Volume_study": "Volume", "Lips_input": "Lips", "Base Line_input": "Base Line", "SMALen2_input": "SMALen2", "Bollinger Bands_study": "Bollinger Bands", "Upper_input": "Upper", "Sig_input": "Sig", "Count_input": "Count", "OnBalanceVolume_input": "OnBalanceVolume", "Cross_chart_type": "Cross", "H_in_legend": "H", "R_data_mode_replay_letter": "R", "Accumulation/Distribution_study": "Accumulation/Distribution", "Rate Of Change_study": "Rate Of Change", "Color 7_input": "Color 7", "Chop Zone_study": "Chop Zone", "Oscillator_input": "Oscillator", "yay Color 0_input": "yay Color 0", "CRSI_study": "CRSI", "Chande Kroll Stop_study": "Chande Kroll Stop", "Hours_interval": "Hours", "Money Flow_study": "Money Flow", "DEMA_input": "DEMA", "Linear Regression Curve_study": "Linear Regression Curve", "Symbol_input": "Symbol", "increment_input": "increment", "smoothD_input": "smoothD", "RSI Source_input": "RSI Source", "Ichimoku Cloud_study": "Ichimoku Cloud", "Mass Index_study": "Mass Index", "Smoothing_input": "Smoothing", "Color 3_input": "Color 3", "Jaw Length_input": "Jaw Length", "Keltner Channels_study": "Keltner Channels", "Bands style_input": "Bands style", "Momentum_study": "Momentum", "MF_input": "MF", "Fast length_input": "Fast length", "W_interval_short": "W", "Equality Line_input": "Equality Line", "Short_input": "Short", "Down fractals_input": "Down fractals", "smalen2_input": "smalen2", "isCentered_input": "isCentered", "Klinger Oscillator_study": "Klinger Oscillator", "SMI Ergodic Indicator/Oscillator_study": "SMI Ergodic Indicator/Oscillator", "No Overlapping Labels_scale_menu": "No Overlapping Labels", "Chande MO_input": "Chande MO", "jawLength_input": "jawLength", "TRIX_study": "TRIX", "RVGI_input": "RVGI", "signalLength_input": "signalLength", "d_dates": "d", "Source_compare": "Source", "Correlation Coefficient_study": "Correlation Coefficient", "lipsLength_input": "lipsLength", "Short Length_input": "Short Length", "teethLength_input": "teethLength", "Visible Range_study": "Visible Range", "Connors RSI_study": "Connors RSI", "MA Cross_study": "MA Cross", "Signal line period_input": "Signal line period", "Price Volume Trend_study": "Price Volume Trend", "F_data_mode_forbidden_letter": "F", "Long RoC Length_input": "Long RoC Length", "Length3_input": "Length3", "+DI_input": "+DI", "MACD_study": "MACD", "%s ago_time_range": "%s ago", "Level_input": "Level", "Commodity Channel Index_study": "Commodity Channel Index", "Elder's Force Index_input": "Elder's Force Index", "Aroon_study": "Aroon", "h_dates": "h", "SMALen1_input": "SMALen1", "P_input": "P", "SMALen3_input": "SMALen3", "Average Directional Index_study": "Average Directional Index", "Fr_day_of_week": "Fr", "D_input": "D", "p_input": "p", "orders_up to ... orders": "orders", "Dot_hotkey": "Dot", "Lead 2_input": "Lead 2", "Vortex Indicator_study": "Vortex Indicator", "Plots Background_study": "Plots Background", "Price Channel_study": "Price Channel", "R_data_mode_realtime_letter": "R", "Conversion Line_input": "Conversion Line", "Su_day_of_week": "Su", "Up fractals_input": "Up fractals", "Double EMA_study": "Double EMA", "Price Oscillator_study": "Price Oscillator", "Th_day_of_week": "Th", "Average True Range_study": "Average True Range", "Max value_input": "Max value", "MA Length_input": "MA Length", "in %s_time_range": "in %s", "UpperLimit_input": "UpperLimit", "sym_input": "sym", "DI Length_input": "DI Length", "SMI_input": "SMI", "Basis_input": "Basis", "Moving Average_study": "Moving Average", "lengthStoch_input": "lengthStoch", "Smoothed Moving Average_study": "Smoothed Moving Average", "Lower Band_input": "Lower Band", "VI +_input": "VI +", "Lead 1_input": "Lead 1", "ROCLen2_input": "ROCLen2", "Simple ma(signal line)_input": "Simple ma(signal line)", "Color 6_input": "Color 6", "Value_input": "Value", "Chaikin Oscillator_study": "Chaikin Oscillator", "ASI_study": "ASI", "Awesome Oscillator_study": "Awesome Oscillator", "Bollinger Bands Width_input": "Bollinger Bands Width", "Signal Length_input": "Signal Length", "D_interval_short": "D", "Color 1_input": "Color 1", "Moving Average Weighted_study": "Moving Average Weighted", "Short period_input": "Short period", "Fisher_input": "Fisher", "Volume Oscillator_study": "Volume Oscillator", "S_data_mode_snapshot_letter": "S", "smalen4_input": "smalen4", "CCI_input": "CCI", "Upper Deviation_input": "Upper Deviation", "Accumulative Swing Index_study": "Accumulative Swing Index", "Move_input": "Move", "NV_input": "NV", "Choppiness Index_study": "Choppiness Index", "Length MA_input": "Length MA", "percent_input": "percent", "Length_input": "Length", "Accumulation/Distribution_input": "Accumulation/Distribution", "C_in_legend": "C", "Weeks_interval": "Weeks", "smoothK_input": "smoothK", "Percentage_scale_menu": "Percentage", "MOM_input": "MOM", "h_interval_short": "h", "TRIX_input": "TRIX", "Periods_input": "Periods", "Histogram_input": "Histogram", "StdDev_input": "StdDev", "EMA Cross_study": "EMA Cross", "Relative Strength Index_study": "Relative Strength Index", "-DI_input": "-DI", "short_input": "short", "RSI_input": "RSI", "Zig Zag_study": "Zig Zag", "Detrended Price Oscillator_input": "Detrended Price Oscillator", "length_input": "length", "roclen4_input": "roclen4", "Add Symbol_compare_or_add_symbol_dialog": "Add Symbol", "Slow length_input": "Slow length", "Conversion Line Periods_input": "Conversion Line Periods", "TEMA_input": "TEMA", "q_input": "q", "Advance/Decline_study": "Advance/Decline", "Ultimate Oscillator_study": "Ultimate Oscillator", "Growing_input": "Growing", "Plot_input": "Plot", "Color 8_input": "Color 8", "Bollinger Bands Width_study": "Bollinger Bands Width", "roclen3_input": "roclen3", "Overbought_input": "Overbought", "DPO_input": "DPO", "Relative Vigor Index_study": "Relative Vigor Index", "Tu_day_of_week": "Tu", "Period_input": "Period", "Trigger_input": "Trigger", "SigLen_input": "SigLen", "Color 2_input": "Color 2", "MA/EMA Cross_study": "MA/EMA Cross", "Williams Alligator_study": "Williams Alligator", "ROCLen1_input": "ROCLen1", "M_interval_short": "M", "Chaikin Oscillator_input": "Chaikin Oscillator", "Zero Line_input": "Zero Line", "Increment_input": "Increment", "Days_interval": "Days", "Net Volume_study": "Net Volume", "m_dates": "m", "length14_input": "length14", "Color 0_input": "Color 0", "maximum_input": "maximum", "D_data_mode_delayed_letter": "D", "Sigma_input": "Sigma", "fastLength_input": "fastLength", "Historical Volatility_study": "Historical Volatility", "Use Lower Deviation_input": "Use Lower Deviation", "Falling_input": "Falling", "Divisor_input": "Divisor", "length7_input": "length7", "Window Size_input": "Window Size", "Long Length_input": "Long Length", "%R_input": "%R", "bars_margin": "bars", "Simple ma(oscillator)_input": "Simple ma(oscillator)", "Length1_input": "Length1", "x_input": "x", "Parabolic SAR_study": "Parabolic SAR", "UO_input": "UO", "Short RoC Length_input": "Short RoC Length", "Jaw_input": "Jaw", "Coppock Curve_study": "Coppock Curve", "longlen_input": "longlen", "Moving Average Exponential_study": "Moving Average Exponential", "s_dates": "s", "Balance of Power_study": "Balance of Power", "EOM_input": "EOM", "%D_input": "%D", "Offset_input": "Offset", "HV_input": "HV", "Start_input": "Start", "ROC_input": "ROC", "Color 4_input": "Color 4", "ADX Smoothing_input": "ADX Smoothing", "We_day_of_week": "We", "MA_input": "MA", "Length2_input": "Length2", "Multiplier_input": "Multiplier", "Session Volume_study": "Session Volume", "SMI Ergodic Oscillator_input": "SMI Ergodic Oscillator", "C_data_mode_connecting_letter": "C", "SMALen4_input": "SMALen4", "yay Color 1_input": "yay Color 1", "CHOP_input": "CHOP", "Middle_input": "Middle", "WMA Length_input": "WMA Length", "Stochastic_study": "Stochastic", "Closed_line_tool_position": "Closed", "On Balance Volume_study": "On Balance Volume", "Source_input": "Source", "%K_input": "%K", "Log Scale_scale_menu": "Log Scale", "len_input": "len", "RSI Length_input": "RSI Length", "Long length_input": "Long length", "Base Line Periods_input": "Base Line Periods", "siglen_input": "siglen", "Slash_hotkey": "Slash", "lengthRSI_input": "lengthRSI", "Indicator_input": "Indicator", "Q_input": "Q", "Envelope_study": "Envelope", "show MA_input": "show MA", "O_in_legend": "O", "useTrueRange_input": "useTrueRange", "Minutes_interval": "Minutes", "deviation_input": "deviation", "long_input": "long", "VWMA_study": "VWMA", "Displacement_input": "Displacement", "Chaikin Money Flow_study": "Chaikin Money Flow", "Ease Of Movement_study": "Ease Of Movement", "Oversold_input": "Oversold", "Williams %R_study": "Williams %R", "depth_input": "depth", "VWAP_study": "VWAP", "Long period_input": "Long period", "Mo_day_of_week": "Mo", "ROC Length_input": "ROC Length", "X_input": "X", "ROCLen4_input": "ROCLen4", "Aroon Down_input": "Aroon Down", "Limit_input": "Limit", "smalen1_input": "smalen1", "Color based on previous close_input": "Color based on previous close", "Price_input": "Price", "Relative Volatility Index_study": "Relative Volatility Index", "PVT_input": "PVT", "Hull Moving Average_study": "Hull Moving Average", "Zero_input": "Zero", "Stochastic Length_input": "Stochastic Length", "mult_input": "mult", "Signal smoothing_input": "Signal smoothing", "E_data_mode_end_of_day_letter": "E", "Stochastic RSI_study": "Stochastic RSI", "K_input": "K", "ROCLen3_input": "ROCLen3", "Signal_input": "Signal", "Moving Average Channel_study": "Moving Average Channel", "Lower_input": "Lower", "Elder's Force Index_study": "Elder's Force Index", "Bollinger Bands %B_study": "Bollinger Bands %B", "Donchian Channels_study": "Donchian Channels", "Upper Band_input": "Upper Band", "start_input": "start", "Short length_input": "Short length", "Triple EMA_study": "Triple EMA", "Lagging Span 2 Periods_input": "Lagging Span 2 Periods", "Teeth_input": "Teeth", "exponential_input": "exponential", "Directional Movement_study": "Directional Movement", "roclen2_input": "roclen2", "Chande Momentum Oscillator_study": "Chande Momentum Oscillator", "Bollinger Bands %B_input": "Bollinger Bands %B", "Lips Length_input": "Lips Length", "Use Upper Deviation_input": "Use Upper Deviation", "L_in_legend": "L", "shortlen_input": "shortlen", "Exponential_input": "Exponential", "Long_input": "Long", "ADR_B_input": "ADR_B", "length28_input": "length28", "Arnaud Legoux Moving Average_study": "Arnaud Legoux Moving Average", "Least Squares Moving Average_study": "Least Squares Moving Average", "Hull MA_input": "Hull MA", "Median_input": "Median", "Correlation_input": "Correlation", "UpDown Length_input": "UpDown Length", "D_data_mode_delayed_streaming_letter": "D", "VI -_input": "VI -", "slowLength_input": "slowLength", "Sa_day_of_week": "Sa", "RVI_input": "RVI", "Centered_input": "Centered", "True Strength Indicator_study": "True Strength Indicator", "smalen3_input": "smalen3", "Fisher Transform_study": "Fisher Transform", "Length EMA_input": "Length EMA", "Teeth Length_input": "Teeth Length", "MA with EMA Cross_study": "MA with EMA Cross", "ParabolicSAR_input": "ParabolicSAR", "MACD_input": "MACD", "Open_line_tool_position": "Open", "Lagging Span_input": "Lagging Span", "ADX smoothing_input": "ADX smoothing", "Detrended Price Oscillator_study": "Detrended Price Oscillator", "Color 5_input": "Color 5", "McGinley Dynamic_study": "McGinley Dynamic", "auto_scale": "auto", "VWMA_input": "VWMA", "Lower Deviation_input": "Lower Deviation", "ATR_input": "ATR", "Shapes_input": "Shapes", "ADX_input": "ADX", "Crosses_input": "Crosses", "KST_input": "KST", "LowerLimit_input": "LowerLimit", "Know Sure Thing_study": "Know Sure Thing", "Aroon Up_input": "Aroon Up", "Fixed Range_study": "Fixed Range", "Williams Fractal_study": "Williams Fractal"} \ No newline at end of file diff --git a/charting_library/static/localization/translations/es.json b/charting_library/static/localization/translations/es.json index 9c5c7ee1..90f1bf5d 100644 --- a/charting_library/static/localization/translations/es.json +++ b/charting_library/static/localization/translations/es.json @@ -1 +1 @@ -{"ticks_slippage ... ticks": "ticks", "Months_interval": "Meses", "Percent_input": "Percent", "Hide Events on Chart": "Ocultar eventos del gráfico", "RSI Length_input": "RSI Length", "month": "mes", "London": "Londres", "roclen1_input": "roclen1", "Unmerge Down": "Separar hacia abajo", "Percents": "Porcentajes", "Search Note": "Buscar nota", "Minor": "menor", "Do you really want to delete Chart Layout '{0}' ?": "¿Desea Eliminar perfil de gráfico '{0}'?", "Quotes are delayed by {0} min and updated every 30 seconds": "Los precios están retrasados {0} minutos y actualizados cada 30 segundos", "June": "Junio", "Magnet Mode": "Modo imán", "Grand Supercycle": "Gran superciclo", "OSC_input": "OSC", "Hide alert label line": "Ocultar línea de etiqueta de la alerta", "Volume_study": "Volumen", "Lips_input": "Lips", "Show real prices on price scale (instead of Heikin-Ashi price)": "Mostrar precios reales en la escala de precio (en vez de los precios Heikin-Ashi)", "Histogram": "Histograma", "Base Line_input": "Base Line", "Step": "Paso", "Elliott Wave Circle": "Ciclo de onda de Elliott", "Fib Time Zone": "Zona horaria de Fibonacci", "SMALen2_input": "SMALen2", "Bollinger Bands_study": "Bandas Bollinger", "Show/Hide": "Mostrar/ocultar", "Cancel Order": "Cancelar compra", "Sig_input": "Sig", "Move Up": "Subir", "Sigma_input": "Sigma", "This indicator cannot be applied to another indicator": "Este indicador no puede ser aplicado a otro indicador", "Gann Square": "Cuadrado de Gann", "Count_input": "Count", "Full Circles": "Círculos completos", "Industry": "Industria", "SMALen1_input": "SMALen1", "Cross_chart_type": "Cruce", "Target Color:": "Color de objetivo:", "a day": "un día", "Pitchfork": "Tridente", "Accumulation/Distribution_study": "Acumulación/distribución", "Rate Of Change_study": "Tasa de cambio (ROC por sus siglas en inglés)", "Risk/Reward short": "Riesgo/Recompensa en corto", "in_dates": "para", "Color 7_input": "Color 7", "Change Average HL value": "Cambiar media del valor HL", "Scales Properties": "Propiedades de las escalas", "Trend-Based Fib Time": "Zona de tiempo de Fibonacci basada en tendencia", "Remove All Indicators": "Quitar todos los indicadores", "Oscillator_input": "Oscillator", "Last Modified": "Ultima Modificación", "yay Color 0_input": "yay Color 0", "Labels": "Etiquetas", "Chande Kroll Stop_study": "Chande Kroll Stop", "Hours_interval": "Horas", "Scale Right": "Escala derecha", "Money Flow_study": "Flujo monetario", "siglen_input": "siglen", "Indicator Labels": "Etiquetas de indicadores", "Source Code": "Código fuente", "__specialSymbolOpen__Tomorrow at__specialSymbolClose__ __dayTime__": "__specialSymbolOpen__Mañana a las__specialSymbolClose__ __dayTime__", "Toggle Percentage": "Cambiar porcentaje", "Remove All Drawing Tools": "Quitar todas las herramientas de dibujo", "Remove all line tools for ": "Quitar todas las herramientas de líneas para", "Linear Regression Curve_study": "Linear Regression Curve", "Symbol_input": "Symbol", "Currency": "Divisa", "Upper Deviation_input": "Upper Deviation", "Rename Chart Layout": "Cambiar nombre de diseño de gráfico", "__specialSymbolOpen__Last__specialSymbolClose__ __dayName__ __specialSymbolOpen__at__specialSymbolClose__ __dayTime__": "__specialSymbolOpen__Ultimo__specialSymbolClose__\n__dayName__\n__specialSymbolOpen__a las__specialSymbolClose__\n__dayTime__", "Save Chart Layout": "Guardar diseño de gráfico", "Allow up to": "Permitir hasta", "Label": "Etiqueta", "Post Market": "Post-Mercado", "second": "segundo", "Any Number": "Cualquier número", "smoothD_input": "smoothD", "Falling_input": "Falling", "Percentage": "Porcentaje", "Donchian Channels_study": "Canales de Donchian", "Entry price:": "Precio de entrada:", "RSI Source_input": "RSI Source", "Toggle Auto Scale": "Activar/desactivar escala automática", " per contract": " por contrato", "Open Manage Drawings": "Abrir gestión de dibujos", "Ichimoku Cloud_study": "Nube Ichimoku", "jawLength_input": "jawLength", "Toggle Log Scale": "Activar/desactivar escala logarítmica", "Apply Elliot Wave Major": "Aplicar onda de Elliott mayor", "Grid": "Rejilla", "Triangle Down": "Triángulo abajo", "Mass Index_study": "Indice Mass", "Slippage": "Deslizamiento", "Smoothing_input": "Smoothing", "Color 3_input": "Color 3", "Jaw Length_input": "Jaw Length", "Inside": "Interior", "Delete all drawing for this symbol": "Eliminar todos los dibujos para este símbolo", "Quotes are delayed by 10 min and updated every 30 seconds": "Las cotizaciones se retrasarán 10 minutos y se actualizarán cada 30 segundos", "Keltner Channels_study": "Canales Keltner", "Long Position": "Posición larga", "Bands style_input": "Bands style", "Undo {0}": "Deshacer {0}", "With Markers": "Con mercados", "Momentum_study": "Momentum", "MF_input": "MF", "On Balance Volume_study": "Volumen en Balance", "Switch to the next chart": "Cambiar al siguiente gráfico", "Change Hours To": "Cambiar horas a", "charts by TradingView": "gráficos por TradingView", "Long length_input": "Long length", "Flipped": "Rotar Horizontalmente", "Disjoint Angle": "Ángulo disjunto", "Supermillennium": "Supermilenio", "W_interval_short": "S", "Color 6_input": "Color 6", "Log Scale": "Escala Log", "Line - High": "Línea - Alta", "Equality Line_input": "Equality Line", "Open": "Apertura", "Fib Wedge": "Cuña de Fibonacci", "Line": "Línea", "Session": "Sesión", "Down fractals_input": "Down fractals", "like_plural": "votos positivos", "Fib Retracement": "Retroceso de Fibonacci", "smalen2_input": "smalen2", "isCentered_input": "isCentered", "Border": "Borde", "Klinger Oscillator_study": "Oscilador Klinger", "Absolute": "Absoluto", "Style": "Estilo", "Show Left Scale": "Mostrar escala de la izquierda", "SMI Ergodic Indicator/Oscillator_study": "SMI Ergodic Indicator/Oscillator", "Istanbul": "Estambul", "Cross": "Cruce", "Last available bar": "Última barra disponible", "Manage Drawings": "Gestión de Dibujos", "Analyze Trade Setup": "Analizar configuración de las transacciones", "No drawings yet": "No dibujado todavía", "Chande MO_input": "Chande MO", "Copy link": "Copiar enlace", "TRIX_study": "Media exponencial triple (TRIX por sus siglas en inglés)", "MACD_study": "Convergencia/divergencia de medias móviles (MACD)", "RVGI_input": "RVGI", "Realtime": "En tiempo real", "Last edited ": "Editado por última vez", "signalLength_input": "signalLength", "Middle_input": "Middle", "Reset Settings": "Restablecer ajustes", "d_dates": "d", "Point & Figure": "Punto y Figura (PnF)", "August": "Agosto", "Recalculate After Order filled": "Recalcular después de finalizar la orden", "Source_compare": "Fuente", "Correlation Coefficient_study": "Coeficiente de correlación", "Delayed": "Retrasada", "Bottom Labels": "Etiquetas de la parte inferior", "Text color": "Color del texto", "Levels": "Niveles", "Short Length_input": "Short Length", "teethLength_input": "teethLength", "Failure text color": "Error de color del texto", "instrument is not allowed": "Instrumento no permitido", "FAILURE": "FALLO", "Open {{symbol}} Text Note": "Abrir {{symbol}} Nota de Texto", "October": "Octubre", "Lock All Drawing Tools": "Bloquear todas las herramientas de dibujo", "Target border color": "Color del borde del objetivo", "Right End": "Extremo derecho", "Show Symbol Last Value": "Mostrar valor del último símbolo", "Head & Shoulders": "Cabeza y hombro", "Do you really want to delete Study Template '{0}' ?": "¿Desea realmente eliminar la Plantilla de Indicador '{0}'?", "Favorite Drawings Toolbar": "Barra de herramientas de dibujo favoritas", "Properties...": "Propiedades...", "MA Cross_study": "Cruce de medias móviles", "Trend Angle": "Ángulo de tendencia", "Snapshot": "Imagen", "Crosshair": "Punto de mira", "Signal line period_input": "Signal line period", "Timezone/Sessions Properties...": "Propiedades zona horaria/sesiones", "Line Break": "Salto de línea", "Quantity": "Cantidad", "Price Volume Trend_study": "Tendencia de volumen según el precio", "Triangle Up": "Triángulo arriba", "hour": "hora", "Scales": "Escalas", "Delete chart layout": "Eliminar perfil de gráfico", "Text": "Тexto", "F_data_mode_forbidden_letter": "F", "Risk/Reward long": "Riesgo/Recompensa en largo", "Apr": "Abr", "Long RoC Length_input": "Long RoC Length", "Length3_input": "Length3", "Upper_input": "Upper", "{0} copy": "{0} copia", "Use one color": "Utilizar un color", "Chart Properties": "Propiedades del gráfico", "Exit Full Screen (ESC)": "Salir de pantalla completa (ESC)", "Show Bars Range": "Mostrar rango de barras", "Show Economic Events on Chart": "Mostrar evento económico en el gráfico", "%s ago_time_range": "hace %s", "Zoom In": "Aumentar", "Failure back color": "Error de color de fondo", "Below Bar": "Barra por debajo", "Coordinates": "Coordenadas", "Time Scale": "Escala de tiempo", "

    Only D, W, M intervals are supported for this symbol/exchange. You will be automatically switched to a D interval. Intraday intervals are not available because of exchange policies.

    ": "

    Solo los intervalos D, W, M están disponibles para este símbolo/mercado. Se activará el intervalo diario (D) en su lugar. Los intervalos intradía no se encuentran disponibles por las políticas de los mercados.

    ", "Extend Left": "Extender izquierda", "Date Range": "Rango de datos", "Min Move": "Min Movimiento", "Price format is invalid.": "Formato del Precio es inválido.", "Show Price": "Mostrar precio", "Level_input": "Level", "Interval is not applicable": "El intervalo no puede aplicarse", "Commodity Channel Index_study": "Índice de canal de mercaderías (CCI por sus siglas en inglés)", "Elder's Force Index_input": "Elder's Force Index", "Scales Properties...": "Propiedades del balance...", "Format": "Formato", "Color bars based on previous close": "Color de barras basado en el cierre anterior", "Change band background": "Cambiar el fondo de la banda", "Marketplace Add-ons": "Complementos del mercado", "Adjust Scale": "Ajustar Escala", "Anchored Text": "Тexto anclado", "Edit {0} Alert...": "Editar alerta {0}...", "Qty: {0}": "Cantidad: {0}", "Aroon_study": "Aroon", "show MA_input": "show MA", "h_dates": "h", "Short Position": "Posición corta", "Show Labels": "Mostrar etiquetas", "Change Interval...": "Cambiar intervalo...", "Apply Default": "Restaurar configuración predeterminada", "SMALen3_input": "SMALen3", "Average Directional Index_study": "Índice de movimiento direccional medio (ADX por sus siglas en inglés)", "Fr_day_of_week": "V", "Invite-only script. Contact the author for more information.": "Script Bajo Invitación. Contactar al autor para más información.", "Curve": "Curva", "a year": "un año", "H_in_legend": "H", "Bars Pattern": "Patrón de barras", "D_input": "D", "Right Labels": "Etiquetas de la parte derecha", "Change Interval": "Cambiar intervalo", "p_input": "p", "Chart layout name": "Nombre de diseño de gráfico", "Fib Circles": "Ciclos de Fibonacci", "Apply Manual Decision Point": "Aplicar punto de decisión manual", "Dot": "Punto", "Target back color": "Color del fondo del objetivo", "All": "Todo", "Show Positions": "Mostrar posiciones", "orders_up to ... orders": "pedidos", "Lead 2_input": "Lead 2", "Save image": "Guardar imagen", "Fundamentals": "Fundamentos", "Unlock": "Desbloquear", "Up Wave 2 or B": "Onda 2 o B hacia arriba", "Navigation Buttons": "Botones de navegación.", "Miniscule": "Minúscula", "Apply": "Aplicar", "Target: {0} ({1}) {2}, Amount: {3}": "Objetivo: {0} ({1}) {2}, Cantidad: {3}", "Sine Line": "Línea del seno", "{0} financials by TradingView": "{0} financiero por TradingView", "%d day": "%d día", "Hide": "Ocultar", "Bottom": "Parte inferior", "Target text color": "Color del texto del objetivo", "Scale Left": "Escala izquierda", "Elliott Wave Subminuette": "Subminuette de onda de Elliott", "Down Wave C": "Onda C hacia abajo", "Jan": "Ene", "Variance": "Varianza", "Text Alignment:": "Alinear texto:", "R_data_mode_realtime_letter": "R", "Apply Elliot Wave Minor": "Aplicar onda de Elliott menor", "Inputs": "Entrada de datos", "Conversion Line_input": "Conversion Line", "March": "Marzo", "Su_day_of_week": "Do", "Up fractals_input": "Up fractals", "Regression Trend": "Regresión de tendencia", "Auto Scale": "Auto Escala", "Symbol Description": "Descripción del símbolo", "Double EMA_study": "DEMA", "minute": "minuto", "Price Oscillator_study": "Oscilador de precio", "Sync drawings to all charts": "Sincronizar dibujos en todos los gráficos", "Chop Zone_study": "Zona de corte", "Stop Color:": "Color de Stop:", "Stay in Drawing Mode": "Permanecer en modo dibujo", "Bottom Margin": "Margen inferior", "Save Chart Layout saves not just some particular chart, it saves all charts for all symbols and intervals which you are modifying while working with this Layout": "Al guardar el diseño del gráfico también se guardan los gráficos de todos los símbolos e intervalos que esté modificando mientras esté trabajando en este diseño.", "Average True Range_study": "Rango verdadero medio (ATR por sus siglas en inglés)", "Max value_input": "Max value", "MA Length_input": "MA Length", "Invite-Only Scripts": "Scripts Bajo Invitación", "Time Interval": "Intervalo de Tiempo", "UpperLimit_input": "UpperLimit", "sym_input": "sym", "DI Length_input": "DI Length", "Script Editor...": "Editor de script...", "Extend Lines": "Extender líneas", "SMI_input": "SMI", "Change Days To": "Cambiar días a", "Square": "Cuadrado", "Basis_input": "Basis", "Moving Average_study": "Media móvil", "lengthStoch_input": "lengthStoch", "Objects Tree": "Todos los objetos", "Remove from favorites": "Eliminar de favoritos", "Copy": "Copiar", "Scale Series Only": "Solo series de escala", "Created ": "Creado", "Report a data issue": "Informar sobre un problema con los datos", "Arnaud Legoux Moving Average_study": "Media móvil Arnaud Legoux", "Technical Analysis": "Análisis técnico", "Lower Band_input": "Lower Band", "Verify Price for Limit Orders": "Verificar precio para órdenes límite", "VI +_input": "VI +", "Line Width": "Grosor de línea", "Lead 1_input": "Lead 1", "Always Show Stats": "Mostrar Estadísticas Siempre", "Down Wave 4": "Onda 4 hacia abajo", "Down Wave 5": "Onda 5 hacia abajo", "Simple ma(signal line)_input": "Simple ma(signal line)", "Ray": "Rayo", "Public Library": "Biblioteca pública", " Do you really want to delete Drawing Template '{0}' ?": " ¿Desea realmente eliminar la Plantilla de Dibujo '{0}'?", "Down Wave 3": "Onda 3 hacia abajo", "Account Size": "Tamaño de la cuenta", "Close message": "Cerrar mensaje", "long_input": "long", "Show Drawings Toolbar": "Mostrar barra de herramientas de dibujos", "Chaikin Oscillator_study": "Oscilador Chaikin", "Balloon": "Globo", "Market Open": "Mercado Abierto", "Know Sure Thing_study": "Know Sure Thing", "Color Theme": "Paleta de colores", "Centered_input": "Centered", "Bollinger Bands Width_input": "Bollinger Bands Width", "Apply Indicator on {0} ...": "Aplicar indicador en {0} ...", "Fib Speed Resistance Arcs": "Arcos de Fibonacci de resistencia de velocidad", "Error occured while publishing": "Se ha producido un error al publicar", "Fisher_input": "Fisher", "Color 1_input": "Color 1", "Moving Average Weighted_study": "Media Móvil Ponderada", "Save": "Guardar", "Type": "Tipo", "Chart Layout Name": "Nombre de diseño de gráfico", "Short period_input": "Short period", "Load Chart Layout": "Cargar diseño de gráfico", "Show Values": "Mostrar valores", "Fib Speed Resistance Fan": "Abanico de Fibonacci de resistencia de velocidad", "This chart layout has more than 1000 drawings, which is a lot! This may negatively affect performance, storage and publishing. We recommend to remove some drawings to avoid potential performance issues.": "El diseño de este gráfico tiene más de 1000 dibujos, ¡demasiados! Esto puede afectar de forma negativa al rendimiento, almacenamiento y publicación. Le recomendamos quitar algunos dibujos para evitar posibles errores de funcionamiento.", "Left End": "Final izquierdo", "%d year": "%d año", "Always Visible": "Siempre visible", "S_data_mode_snapshot_letter": "S", "post-market": "periodo de post-trading", "Flag": "Bandera", "Change Minutes To": "Cambiar minutos a", "Earnings breaks": "Informe de ganancias de la empresa", "Do not ask again": "No vuelvas a preguntar", "Extend Right End": "Extender final derecho", "Tue": "Ma", "smalen4_input": "smalen4", "CCI_input": "CCI", "Unmerge Up": "Separar hacia arriba", "increment_input": "increment", "(H + L)/2": "(Máx+Mín)/2", "Source Code...": "Código fuente...", "XABCD Pattern": "Patron XABCD", "Schiff Pitchfork": "Tridente de Schiff", "powered by {0}": "alimentado con {0}", "DEMA_input": "DEMA", "NV_input": "NV", "Choppiness Index_study": "Índice Choppiness", "Study Template '{0}' already exists. Do you really want to replace it?": "Plantilla Indicador '{0}' ya existe. ¿Desea reemplazarla?", "Merge Down": "Combinar hacia abajo", "Th_day_of_week": "J", "Studies": "Estudios", "eod delayed": "día (atrasado)", "Delete": "Eliminar", "in %s_time_range": "en %s", "percent_input": "percent", "September": "Septiembre", "Length_input": "Length", "Avg HL in minticks": "Media de HL en tics mínimos", "Accumulation/Distribution_input": "Accumulation/Distribution", "Sync": "Sincronizar", "C_in_legend": "C", "Weeks_interval": "Semanas", "smoothK_input": "smoothK", "Percentage_scale_menu": "Porcentaje", "Change Extended Hours": "Cambiar horas extendidas", "MOM_input": "MOM", "h_interval_short": "h", "Rotated Rectangle": "Rectángulo rotado", "Modified Schiff": "Schiff Modificado", "Symbol": "Símbolo", "Send Backward": "Enviar atrás", "Mexico City": "Ciudad de Mexico", "TRIX_input": "TRIX", "Show Price Range": "Mostrar rango de precios", "Elliott Major Retracement": "Retroceso mayor de Elliott", "Notification": "Notificación", "Fri": "Vi", "just now": "justo ahora", "Forecast": "Previsión", "hour_plural": "horas", "Fraction part is invalid.": "La parte de la fracción es inválida.", "Connecting": "Conectando", "Ghost Feed": "RSS fantasma", "Histogram_input": "Histogram", "The Extended Trading Hours feature is available only for intraday charts": "La función de horario de trading extendido solo se encuentra disponible para gráficos intradías.", "open": "abierto", "StdDev_input": "StdDev", "Change Minutes From": "Cambiar minutos de", "Relative Strength Index_study": "Índice de fuerza relativa (RSI por sus siglas en inglés)", "Diamond": "Diamante", "My Scripts": "Mis scripts", "Monday": "Lunes", "-DI_input": "-DI", "short_input": "short", "top": "Superior", "a month": "un mes", "Precision": "Precisión", "depth_input": "depth", "Please enter chart layout name": "Introduzca nombre de diseño de gráfico", "Arrow Down": "Flecha hacia abajo", "Date": "Fecha", "Format...": "Formato...", "__dayName__ __specialSymbolOpen__at__specialSymbolClose__ __dayTime__": "__dayName__\n__specialSymbolOpen__a las__specialSymbolClose__\n__dayTime__", "Toggle Maximize Pane": "Alternar Maximizar panel", "Periods_input": "Periods", "Zig Zag_study": "Zigzag", "Actual": "Real", "SUCCESS": "ÉXITO", "Detrended Price Oscillator_input": "Detrended Price Oscillator", "Drawings Toolbar": "Barra de herramientas de dibujos", "length_input": "length", "Close Position": "Cerrar posición", "Price Line": "Línea de precio", "Area With Breaks": "Área con rupturas", "Zoom Out": "Alejar", "Stop Level. Ticks:": "Nivel de stop. Tics:", "Economy & Symbols": "Economía y símbolos", "Above Bar": "Barra por encima", "Visual Order": "Orden de los elementos", "Warning": "Advertencia", "__specialSymbolOpen__Yesterday at__specialSymbolClose__ __dayTime__": "__specialSymbolOpen__Ayer a las__specialSymbolClose__ __dayTime__", "Stop Background Color": "Stop Background Color (?)", "Slow length_input": "Slow length", "Conversion Line Periods_input": "Conversion Line Periods", "powered by TradingView": "Desarrollado por TradingView", "Text:": "Тexto:", "Stochastic_study": "Estocástico", "Apply WPT Down Wave": "Aplicar onda WPT descendente", "Marker Color": "Color del marcador", "TEMA_input": "TEMA", "Apply WPT Up Wave": "Aplicar onda WPT ascendente", "Min Move 2": "Min Movimiento 2", "Directional Movement_study": "Movimiento direccional", "Extend Left End": "Extender final izquierdo", "Advance/Decline_study": "Advance / Decline", "New York": "Nueva York", "Flag Mark": "Marca con bandera", "Drawings": "Dibujos", "Fast length_input": "Fast length", "Cancel": "Cancelar", "Bar #": "Barra", "Median_input": "Median", "Redo": "Rehacer", "Hide Drawings Toolbar": "Ocultar barra de herramientas de dibujo", "Ultimate Oscillator_study": "Oscilador de Williams", "This chart layout has a lot of objects and can't be published! Please report to {0} for further details.": "Este diseño de gráfico tiene un montón de objetos que no pueden ser publicados. Escriba a {0} para recibir más información.", "Vert Grid Lines": "Líneas verticales de la cuadrícula", "Growing_input": "Growing", "Angle": "Ángulo", "%d year_plural": "%d años", "Plot_input": "Plot", "Color 8_input": "Color 8", "Indicators, Fundamentals, Economy and Add-ons": "Indicadores, fundamentales, economía y complementos", "Search": "Buscar", "Bollinger Bands Width_study": "Ancho de las bandas de Bollinger", "roclen3_input": "roclen3", "Overbought_input": "Overbought", "DPO_input": "DPO", "Levels Line": "Línea de niveles", "No study templates saved": "No existen plantillas de estudio guardadas", "Trend Line": "Línea de tendencia", "Relative Vigor Index_study": "Índice de vigor relativo (RVI por sus siglas en inglés)", "Your chart is being saved, please wait a moment before you leave this page.": "Se está guardando su gráfico, espere un momento antes de salir de la página.", "Circle": "Cículo", "Price Range": "Rango de precio", "Extended Hours": "Horas extendidas", "Los Angeles": "Los Ángeles", "Triangle": "Triángulo", "Line With Breaks": "Línea con Rupturas", "Period_input": "Period", "Watermark": "Marca de Agua", "Trigger_input": "Trigger", "SigLen_input": "SigLen", "Clone": "Clonar", "Color 2_input": "Color 2", "Show Prices": "Mostrar Precios", "Contracts": "Contratos", "{0} chart by TradingView": "{0} gráfico por TradingView", "Timezone/Sessions": "Zona horaria/sesiones", "Save Indicator Template As...": "Guardar plantilla de indicador como ...", "Arrow Mark Right": "Flecha hacia la derecha", "Background color 2": "Color de fondo 2", "Background color 1": "Color de fondo 1", "Circles": "Círculos", "McGinley Dynamic_study": "Indicador dinámico McGinley", "Visible on Mouse Over": "Visible al pasar el mouse", "Thu": "Ju", "Vortex Indicator_study": "Indicador de vortex", "Williams Alligator_study": "Williams Alligator", "delayed": "retrasadas", "Time Cycles": "Ciclos de tiempo", "ROCLen1_input": "ROCLen1", "M_interval_short": "M", "Change Symbol...": "Cambiar símbolo...", "Price Levels": "Nivel de precios", "Show Splits": "Mostrar acciones desdobladas", "Zero Line_input": "Zero Line", "__specialSymbolOpen__Today at__specialSymbolClose__ __dayTime__": "__specialSymbolOpen__Hoy a las__specialSymbolClose__ __dayTime__", "Increment_input": "Increment", "Days_interval": "Días", "Show Right Scale": "Mostrar escala de la derecha", "Show Alert Labels": "Mostrar etiquetas de alerta", "Net Volume_study": "Volumen neto", "Lock": "Bloquear", "length14_input": "length14", "Sa_day_of_week": "S", "High": "Máximo", "Date and Price Range": "Rango de fecha y precio", "Polyline": "Polilínea", "Reconnect": "Reconectar", "Add to favorites": "Añadir a favoritos", "Label Down": "Etiqueta abajo", "Saturday": "Sábado", "Symbol Last Value": "Símbolo de último valor", "Color 0_input": "Color 0", "maximum_input": "maximum", "Wed": "Mi", "Paris": "París", "D_data_mode_delayed_letter": "D", "Symbol Info": "Información del símbolo", "Pyramiding": "Efecto de pirámide", "fastLength_input": "fastLength", "Width": "Ancho", "Loading": "Cargando", "Historical Volatility_study": "Volatilidad histórica", "Template": "Plantilla", "Compare or Add Symbol...": "Comparar/añadir símbolo...", "Parallel Channel": "Canal paralelo", "Stop: {0} ({1}) {2}, Amount: {3}": "Stop: {0} ({1}) {2}, Cantidad: {3}", "Second fraction part is invalid.": "La segunda parte de la fracción es inválida", "Divisor_input": "Divisor", "Down Wave 1 or A": "Onda 1 o A hacia abajo", "ROC_input": "ROC", "Dec": "Dic", "Extend": "Extender", "length7_input": "length7", "Toggle Maximize Chart": "Activar/desactivar maximizar gráfico", "Send to Back": "Enviar al fondo", "Undo": "Deshacer", "Window Size_input": "Window Size", "Mon": "Lu", "Reset Scale": "Restablecer escala", "Long Length_input": "Long Length", "True Strength Indicator_study": "Índice de fuerza verdadera (TSI por sus siglas en inglés)", "%R_input": "%R", "There are no saved charts": "No hay gráficos guardados", "Instrument is not allowed": "Instrumento no permitido", "bars_margin": "Barras de margen", "Show Indicator Last Value": "Mostrar valor del último indicador", "Initial capital": "Capital inicial", "Show Angle": "Mostrar ángulo", "Indicator Last Value": "Indicador de último valor", "More features on tradingview.com": "Más funcionalidades en tradingview.com", "smalen3_input": "smalen3", "Length1_input": "Length1", "Always Invisible": "Siempre invisible", "Days": "Días", "x_input": "x", "Save As...": "Guardar como...", "Lock/Unlock": "Bloquear/Desbloquear", "Elliott Double Combo Wave (WXY)": "Onda de combo doble de Elliott (WXY)", "Parabolic SAR_study": "Parabólico SAR", "Fisher Transform_study": "Transformación de Fisher", "Show Hidden Tools": "Mostrar herramientas ocultas", "Hollow Candles": "Velas huecas", "Any Symbol": "Cualquier símbolo", "UO_input": "UO", "Stats Text Color": "Color Texto Estadísticas", "Minutes": "Minutos", "Short RoC Length_input": "Short RoC Length", "Show Orders": "Mostrar órdenes", "Countdown": "Cuenta atrás", "Jaw_input": "Jaw", "Right": "Derecha", "Help": "Ayuda", "Coppock Curve_study": "Curva de Coppock", "Reset Chart": "Restablecer gráfico", "Sunday": "Domingo", "Themes": "Temas", "Left Axis": "Eje izquierdo", "YES": "SI", "longlen_input": "longlen", "Moving Average Exponential_study": "Media móvil exponencial (EMA por sus siglas en inglés)", "Source border color": "Color del borde de la fuente", "Redo {0}": "Deshacer", "Cypher Pattern": "Cifrar patrón", "s_dates": "s", "Move Down": "Bajar", "Area": "Área", "invalid symbol": "símbolo incorrecto", "Triangle Pattern": "Patrón de triángulo", "Gann Fan": "Abanico de Gann", "Balance of Power_study": "Equilibrio de poder", "EOM_input": "EOM", "Font Size": "Tamaño Fuente", "Apply Manual Risk/Reward": "Aplicar recompensa/riesgo manual", "Market Closed": "Mercado Cerrado", "Sydney": "Sidney", "Indicators": "Indicadores", "q_input": "q", "You are notified": "Estás notificado", "%D_input": "%D", "Border Color": "Color del borde", "Offset_input": "Offset", "Risk": "Riesgo", "Price Scale": "Escala de precios", "HV_input": "HV", "Seconds": "Segundos", "(H + L + C)/3": "(Máx.+Mín.+Cierre)/3", "Start_input": "Inicio", "Hours": "Horas", "Berlin": "Berlín", "Color 4_input": "Color 4", "Angles": "Ángulos", "Prices": "Precios", "Extended Hours (Intraday Only)": "Horas extendidas (solo intradía)", "July": "Julio", "Create Horizontal Line": "Crear línea horizontal", "Minute": "Minuto", "Cycle": "Ciclo", "ADX Smoothing_input": "ADX Smoothing", "One color for all lines": "Un color para todas las líneas", "m_dates": "m", "Settings": "Opciones de configuración", "Drawing Tools": "Herramientas de dibujo", "Candles": "Velas", "We_day_of_week": "X", "Pre Market": "Pre-Mercado", "Width (% of the Box)": "Ancho (% de la caja)", "%d minute": "%d minuto", "week_plural": "semanas", "Pip Size": "Tamaño del Pip", "Wednesday": "Miércoles", "This drawing is used in alert. If you remove the drawing, the alert will be also removed. Do you want to remove the drawing anyway?": "Este dibujo se está usando en una alerta. Si quita el dibujo, también quitará la alerta. ¿Está seguro de que desea quitar el dibujo de todas formas?", "Hide All Drawing Tools": "Ocultar todas las herramientas del dibujo", "Show alert label line": "Mostrar línea de etiqueta de alerta", "Down Wave 2 or B": "Onda 2 o B hacia abajo", "MA_input": "MA", "Detrended Price Oscillator_study": "Oscilador del precio sin tendencia", "not authorized": "no autorizado", "Image URL": "URL de la imagen", "SMI Ergodic Oscillator_input": "SMI Ergodic Oscillator", "Show Objects Tree": "Mostrar árbol de objetos", "Primary": "Primario", "Price:": "Precio:", "Gann Box": "Caja de Gann", "Bring to Front": "Traer al frente", "Brush": "Pincel", "Not Now": "Ahora no", "lengthRSI_input": "lengthRSI", "Yes": "Sí", "{0} P&L: {1}": "{0} Cuenta de resultados: {1}", "Events & Alerts": "Eventos y alertas", "+DI_input": "+DI", "Apply Default Drawing Template": "Aplicar plantilla de dibujo predeterminada", "Compact": "Compacto", "Save As Default": "Guardar como predeterminado", "Invalid Symbol": "Símbolo incorrecto", "Inside Pitchfork": "Tridente interno", "yay Color 1_input": "yay Color 1", "Quandl is a huge financial database that we have connected to TradingView. Most of its data is EOD and is not updated in real-time, however the information may be extremely useful for fundamental analysis.": "Quandl es una gran base de datos financiera que hemos conectado a TradingView. La mayor parte de sus datos son EOD y no se actualizan en tiempo real, aunque la información puede ser extremadamente útil para análisis fundamentales.", "Hide Marks On Bars": "Ocultar marcadores de barra", "Note": "Nota", "Show Countdown": "Mostrar cuenta atrás", "WMA Length_input": "WMA Length", "Show Dividends on Chart": "Mostrar dividendos en el gráfico", "Show Executions": "Mostrar ejecuciones", "Borders": "Bordes", "month_plural": "meses", "loading...": "cargando...", "Closed_line_tool_position": "Cerrado", "Columns": "Columnas", "Change Resolution": "Cambiar resolución", "Indicator Arguments": "Argumentos de indicador", "Fib Spiral": "Espiral de Fibonacci", "Apply Elliot Wave": "Aplicar onda de Elliott", "%d minute_plural": "%d minutos", "Degree": "Grado", " per order": " por pedido", "Line - HL/2": "Línea - HL/2", "Up Wave 4": "Onda 4 hacia arriba", "Least Squares Moving Average_study": "Mínimos cuadrados de la media móvil", "Change Variance value": "Cambiar valor de variancia", "Overlay the main chart": "Superponer el gráfico principal", "powered by ": "Impulsado por ", "Source_input": "Source", "Change Seconds To": "Cambiar segundos a", "%K_input": "%K", "Success back color": "Color del fondo correcto", "Please enter template name": "Introduzca un nombre de plantilla", "Symbol Name": "Nombre del Símbolo", "Tokyo": "Tokio", "Events Breaks": "Descansos de evento", "Study Templates": "Plantillas de estudio", "Months": "Meses", "Symbol Info...": "Información del símbolo...", "Elliott Wave Minor": "Onda menor de Elliott", "Read our blog for more info!": "¡Lea nuestro blog para descubrir más!", "Measure (Shift + Click on the chart)": "Medir (Shift + clic en el gráfico)", "Override Min Tick": "Anular tic mínimo", "Thursday": "Jueves", "Dialog": "Diálogo", "Add To Text Notes": "Añadir a notas de texto", "Elliott Triple Combo Wave (WXYXZ)": "Onda de combo triple de Elliott (WXYXZ)", "Multiplier_input": "Multiplier", "Risk/Reward": "Riesgo/recompensa", "Base Line Periods_input": "Base Line Periods", "Show Dividends": "Mostrar dividendos", "pre-market": "periodo de pre-trading", "Top Labels": "Etiqueta Superior", "Show Earnings": "Mostrar ganancias", "Line - Open": "Línea - Abierta", "%d day_plural": "%d días", "Elliott Triangle Wave (ABCDE)": "Onda triangular de Elliott (ABCDE)", "Text Wrap": "Ajuste de texto", "Reverse Position": "Invertir posición...", "Elliott Minor Retracement": "Retroceso menor de Elliott", "Pitchfan": "Tridente abanico", "No symbols matched your criteria": "Ningún símbolo coincide con sus criterios de búsqueda.", "Icon": "Icono", "Short_input": "Short", "Tuesday": "Martes", "Indicator_input": "Indicator", "Open Interval Dialog": "Abrir diálogo de intervalo", "Athens": "Atenas", "Q_input": "Q", "Content": "Contenido", "middle": "medio", "Lock Cursor In Time": "Bloquear cursor en el tiempo", "Intermediate": "Intermediario", "Eraser": "Borrador", "TimeZone": "Zona horaria", "Envelope_study": "Sobre", "Symbol Labels": "Etiquetas de símbolo", "Active Symbol": "Símbolo Activo", "Horizontal Line": "Línea horizontal", "O_in_legend": "O", "Confirmation": "Confirmación", "HL Bars": "Barras HL", "Add Alert": "Añadir alerta", "Lines:": "Líneas", "Hide Favorite Drawings Toolbar": "Ocultar barra de herramientas de dibujos favoritos", "useTrueRange_input": "useTrueRange", "Profit Level. Ticks:": "Nivel de beneficio. Tics:", "Show Date/Time Range": "Mostrar rango de fecha/hora", "Level {0}": "Nivel {0}", "Favorites": "Favoritos", "Horz Grid Lines": "Líneas de cuadrícula horizontales", "Text Notes are available only on chart page. Please open a chart and then try again.": "Las notas de texto solo están disponibles en la página del gráfico. Abra un gráfico e inténtelo de nuevo.", "Tu_day_of_week": "M", "day": "día", "deviation_input": "deviation", "week": "semana", "Base currency": "Divisa base", "VWMA_study": "Media móvil ponderada de volumen (VWMA por sus siglas en inglés)", "Success text color": "Color del texto correcto", "ADX smoothing_input": "ADX smoothing", "%d hour": "%d hora", "Order size": "Tamaño de la orden", "Displacement_input": "Displacement", "Save Indicator Template As": "Guardar plantilla de indicador como", "ADR_B_input": "ADR_B", "Chaikin Money Flow_study": "Flujo monetario de Chaikin", "Ease Of Movement_study": "Facilidad de movimiento", "Defaults": "Predeterminados", "Oversold_input": "Oversold", "Williams %R_study": "Williams %R", "Visual settings...": "Ajustes visuales...", "RSI_input": "RSI", "Long period_input": "Long period", "Mo_day_of_week": "L", "center": "centro", "Vertical Line": "Línea vertical", "Bogota": "Bogotá", "Show Splits on Chart": "Mostrar acciones desdobladas en el gráfico", "Sorry, the Copy Link button doesn't work in your browser. Please select the link and copy it manually.": "Lo sentimos, el botón de copiado del enlace no funciona en su navegador. Por favor, seleccione el enlace y cópielo manualmente.", "X_input": "X", "C_data_mode_connecting_letter": "C", "Simple ma(oscillator)_input": "Simple ma(oscillator)", "May": "Mayo", "SMALen4_input": "SMALen4", "ROCLen4_input": "ROCLen4", "Aroon Down_input": "Aroon Down", "Add To Watchlist": "Añadir a la lista de seguimiento", "Extend Right": "Extender derecha", "left": "Izquierdo", "Lock scale": "Bloquear escala", "Time Levels": "Niveles de tiempo", "Arrow": "Flecha", "smalen1_input": "smalen1", "Drawing Template '{0}' already exists. Do you really want to replace it?": "Plantilla de Dibujo '{0}' ya existe. ¿Desea reemplazarla?", "Offset": "Compensación", "Fans": "Abanicos", "Line - Low": "Línea - Baja", "Price_input": "Price", "Close_input": "Cerrar", "Arrow Mark Down": "Flecha hacia abajo", "Weeks": "Semanas", "Modified Schiff Pitchfork": "Modificar Tridente de Schiff", "Relative Volatility Index_study": "Índice de volatilidad relativa", "Elliott Impulse Wave (12345)": "Onda de impulso de Elliott (12345)", "PVT_input": "PVT", "Show Only Future Events": "Mostrar solo eventos futuros", "Circle Lines": "Líneas circulares", "Hull Moving Average_study": "Media móvil de Hull", "Aug": "Ago", "Save Drawing Template As": "Guardar Plantilla de Dibujo Como", "Bring Forward": "Traer hacia delante", "Apply Defaults": "Restaurar configuración predeterminada", "Friday": "Viernes", "Zero_input": "Zero", "Company Comparison": "Comparación de empresas", "Stochastic Length_input": "Stochastic Length", "mult_input": "mult", "URL cannot be received": "No se pude recibir la URL", "Signal smoothing_input": "Signal smoothing", "E_data_mode_end_of_day_letter": "E", "Trend-Based Fib Extension": "Tendencia basada en extensión de Fibonacci", "Top": "Parte superior", "Double Curve": "Doble curva", "Stochastic RSI_study": "Índice de fuerza relativa (RSI) estocástica", "Horizontal Ray": "Rayo horizontal", "Ok": "Vale", "Edit Order": "Editar orden", "Trades on Chart": "Transacciones en el gráfico", "Chaikin Oscillator_input": "Chaikin Oscillator", "Listed Exchange": "Mercado Listado", "Fullscreen mode": "Modo pantalla completa", "Add Text Note For {0}": "Añadir nota de texto para {0}", "K_input": "K", "In Session": "Sesión en curso", "ROCLen3_input": "ROCLen3", "Restore Size": "Restaurar tamaño", "Text Color": "Color del texto", "Built-ins": "Incorporados", "Extend Alert Line": "Extender línea de alerta", "Oops!": "¡Vaya!", "New Zealand": "Nueva Zelanda", "CHOP_input": "CHOP", "Scale": "Escala", "Screen (No Scale)": "Pantalla (sin escala)", "Extended Alert Line": "Línea de alerta extendida", "Signal_input": "Signal", "like": "voto positivo", "Show": "Mostrar", "Exchange": "Mercado bursátil", "{0} bars": "Barras: {0}", "Lower_input": "Lower", "Arc": "Arco", "Elder's Force Index_study": "Índice de fuerza de Elder", "Show Earnings on Chart": "Mostrar ganancias en el gráfico", "ATR_input": "ATR", "Do you really want to delete Color Theme '{0}' ?": "¿Desea eliminar el color de fondo '{0}'?", "%d month_plural": "%d meses", "Low": "Mínimo", "Bollinger Bands %B_study": "Bandas de Bollinger B", "Time Zone": "Zona horaria", "right": "Derecha", "%d month": "%d mes", "Wrong value": "Valor erróneo", "Upper Band_input": "Upper Band", "Sun": "Do", "Rename...": "Renombrar...", "February": "Febrero", "start_input": "start", "No indicators matched your criteria.": "Ningún indicador coincide con sus criterios de búsqueda.", "Commission": "Comisión", "Short length_input": "Short length", "Kolkata": "Calcuta", "Submillennium": "Submilenio", "Precise Labels_scale_menu": "Etiquetas precisas", "Smoothed Moving Average_study": "Media móvil simple", "Do you really want to delete Drawing Template '{0}' ?": "¿Desea eliminar Plantilla de Dibujo '{0}'?", "Chatham Islands": "Islas Chatham - Nueva Zelanda", "Channel": "Canal", "Stop syncing drawing": "Detener sincronización del dibujo", "FXCM CFD data is available only to FXCM account holders": "Los datos FXCM CFD sólo están disponibles para usuarios de cuenta FXCM", "Lagging Span 2 Periods_input": "Lagging Span 2 Periods", "Connecting Line": "Línea de conexión", "Seoul": "Seúl", "bottom": "Inferior", "Teeth_input": "Teeth", "Moscow": "Moscú", "Save New Chart Layout": "Guardar nuevo diseño de gráfico", "Fib Channel": "Canal de Fibonacci", "Visibility": "Visibilidad", "Events": "Eventos", "Save Drawing Template As...": "Guardar plantilla de dibujo como...", "Minutes_interval": "Minutos", "Insert Study Template": "Insertar plantilla de estudio", "exponential_input": "exponential", "%d hour_plural": "%d horas", "OnBalanceVolume_input": "OnBalanceVolume", "roclen2_input": "roclen2", "Chande Momentum Oscillator_study": "Indicador Chande de momentum (CMO por sus siglas en inglés)", "Not applicable": "No aplicable", "or copy url:": "o copiar la dirección:", "Bollinger Bands %B_input": "Bollinger Bands %B", "Template name": "Nombre de la plantilla", "Indicator Values": "Valores de indicador", "Lips Length_input": "Lips Length", "Use Upper Deviation_input": "Use Upper Deviation", "L_in_legend": "L", "Remove custom interval": "Eliminar intervalo personalizado", "minute_plural": "minutos", "shortlen_input": "shortlen", "Quotes are delayed by {0} min": "Cotizaciones están retrasadas {0} min", "Copied to clipboard": "Copiado al portapapeles", "ADX_input": "ADX", "Profit Background Color": "Color de fondo del beneficio", "Bar's Style": "Estilo de barra", "Exponential_input": "Exponential", "ROCLen2_input": "ROCLen2", "Use Lower Deviation_input": "Use Lower Deviation", "Previous": "Previo", "Stay In Drawing Mode": "Permanecer en modo dibujo", "Comment": "Comentario", "Long_input": "Long", "Bars": "Barras", "Source text color": "Color del texto de la fuente", "Flat Top/Bottom": "Plano superior/inferior", "Symbol Type": "Tipo de Símbolo", "loading data": "cargando datos", "December": "Diciembre", "Lock drawings": "Bloquear dibujos", "Border color": "Color del borde", "Change Seconds From": "Cambiar segundos de", "Left Labels": "Etiquetas derechas", "Insert Indicator...": "Insertar indicador...", "P_input": "P", "Paste %s": "Pegar %s", "Timezone": "Zona horaria", "Invite-only script. You have been granted access.": "Script Bajo Invitación. El acceso ha sido autorizado.", "Sat": "Sa", "Rectangle": "Rectángulo", "Supercycle": "Superciclo", "Source back color": "Color de fondo de la fuente", "Transparency": "Transparencia", "All Indicators And Drawing Tools": "Todos los indicadores y herramientas de dibujo", "Cyclic Lines": "Líneas cíclicas", "length28_input": "length28", "ABCD Pattern": "Patrón ABCD", "closed": "mercado cerrado", "When selecting this checkbox the study template will set \"__interval__\" interval on a chart": "Cuando seleccione esta casilla de verificación la plantilla de estudio establecerá el intervalo \"__interval__\" en un gráfico", "Add": "Añadir", "OC Bars": "Barras de apertura/cierre", "Price Label": "Etiqueta de precio", "Graphics": "Gráficos", "NEW": "NUEVA", "Wick": "Mecha", "Hull MA_input": "Hull MA", "Callout": "Leyenda", "Lock Scale": "Bloquear escala", "distance: {0}": "Distancia: {0}", "Extended": "Extendido", "Three Drives Pattern": "Patrón Tres Líneas", "Create Vertical Line": "Crear línea vertical", "Arcs": "Arcos", "Top Margin": "Margen superior", "Length2_input": "Length2", "Insert Drawing Tool": "Insertar herramienta de dibujo", "OHLC Values": "Valores OHLC", "Correlation_input": "Correlation", "Scales Text": "Тexto de escala", "Session Breaks": "Descanso de sesiones", "Add {0} To Watchlist": "Agrega {0} a la lista de seguimiento", "Anchored Note": "Nota anclada", "lipsLength_input": "lipsLength", "Apply Indicator on {0}": "Aplicar indicador en {0}", "roclen4_input": "roclen4", "November": "Noviembre", "Tehran": "Teherán", "Background Color": "Color de fondo", "an hour": "una hora", "Right Axis": "Eje derecho", "D_data_mode_delayed_streaming_letter": "D", "VI -_input": "VI -", "slowLength_input": "slowLength", "Click to set a point": "Haga clic para establecer un punto de", "January": "Enero", "Arrow Up": "Flecha arriba", "n/a": "no disponible", "Indicator Titles": "Títulos de indicador", "retrying": "reconexión", "Change area background": "Cambiar el fondo del área", "Edit Position": "Editar posición", "RVI_input": "RVI", "Awesome Oscillator_study": "Oscilador impresionante", "Recalculate On Every Tick": "Recalcular con cada tic", "Left": "Izquierda", "Show Text": "Mostrar Texto", "Objects Tree...": "Árbol de objetos...", "Compare": "Comparar", "Add Symbol": "Añadir símbolo", "Projection": "Proyección", "Track time": "Sincronizar tiempo", "Enter a new chart layout name": "Introduzca nuevo nombre de diseño de gráfico", "Signal Length_input": "Signal Length", "Properties": "Propiedades", "Teeth Length_input": "Teeth Length", "Point Value": "Valor del Punto", "D_interval_short": "D", "Label Up": "Etiqueta arriba", "Close": "Cierre", "ParabolicSAR_input": "ParabolicSAR", "Log Scale_scale_menu": "Escala Log", "MACD_input": "MACD", "Do not show this message again": "No volver a mostrar este mensaje", "Precise Labels": "Etiquetas precisas", "Up Wave 3": "Onda 3 hacia arriba", "Arrow Mark Left": "Flecha hacia la izquierda", "second_plural": "segundos", "Up Wave 5": "Onda 5 hacia arriba", "Line - Close": "Línea - Cierre", "(O + H + L + C)/4": "(Máx.+Мín.+Cierre+Apertura)/4", "Confirm Inputs": "Confirmar entradas de datos", "Open_line_tool_position": "Abrir", "Lagging Span_input": "Lagging Span", "Subminuette": "Subminutte", "Mirrored": "Rotar Verticalmente", "Price": "Precio", "Triple EMA_study": "Media móvil exponencial triple (TEMA por sus siglas en inglés)", "Elliott Correction Wave (ABC)": "Onda de corrección de Elliott (ABC)", "Error while trying to create snapshot.": "Se ha producido un error mientras intentaba guardar una imagen", "Label Background": "Fondo de la etiqueta", "Templates": "Plantillas", "Please report the issue or click Reconnect.": "Informe del problema o haga clic en Reconectar.", "1. Slide your finger to select location for first anchor
    2. Tap anywhere to place the first anchor": "1. Deslice el dedo para seleccionar la ubicación para el primer anclaje.
    2. Toque en cualquier lugar para colocar la primera ancla.", "Signal Labels": "Etiquetas de señal", "compiling...": "compilando...", "Are you sure?": "Estás seguro?", "Color 5_input": "Color 5", "Up Wave 1 or A": "Onda 1 o A hacia arriba", "Scale Price Chart Only": "Solo gráfico de baremos", "Default": "Predeterminado", "auto_scale": "auto", "Background": "Fondo", "% of equity": "% de patrimonio neto", "Apply Elliot Wave Intermediate": "Aplicar onda de Elliott intermedia", "VWMA_input": "VWMA", "Lower Deviation_input": "Lower Deviation", "Save Interval": "Guardar intervalo", "Extend Lines Left": "Extender las líneas de la izquierda", "Reverse": "Invertir", "Oops, something went wrong": "Vaya, algo ha fallado", "Shapes_input": "Shapes", "Median": "Mediano", "Show Source Code": "Mostrar código fuente", "Remove": "Quitar", "len_input": "len", "Arrow Mark Up": "Flecha hacia arriba", "April": "Abril", "Crosses_input": "Crosses", "KST_input": "KST", "Sync drawing to all charts": "Sincronizar dibujo en todos los gráficos", "LowerLimit_input": "LowerLimit", "day_plural": "días", "Copy Chart Layout": "Copiar diseño de gráfico", "Compare...": "Comparar...", "1. Slide your finger to select location for next anchor
    2. Tap anywhere to place the next anchor": "1. Deslice el dedo para seleccionar la ubicación para el siguiente anclaje.
    2. Toque en cualquier lugar para colocar la siguiente ancla.", "Compare or Add Symbol": "Comparar/añadir símbolo", "Aroon Up_input": "Aroon Up", "Singapore": "Singapur", "Scales Lines": "Líneas de escala", "Type the interval number for munute charts (i.e. 5 if it is going to be a five minute chart). Or number plus letter for H (Hourly), D (Daily), W (Weekly), M (Monthly) intervals (i.e. D or 2H)": "Introduzca el número del intervalo para gráficos de minutos (por ejemplo, 5 si va a ser un gráfico de cinco minutos). O un número más una letra para intervalos de una hora (H), diarios (D), semanales (W) o mensuales (M), (Por ejemplo 1D o 2H)", "Up Wave C": "Onda C hacia arriba", "Show Distance": "Mostrar distancia", "Risk/Reward Ratio: {0}": "Relación Riego/Recompensa: {0}", "Volume Oscillator_study": "Oscilador de volumen", "Williams Fractal_study": "Fractal de Williams", "Merge Up": "Combinar hacia arriba", "Right Margin": "Margen derecho", "Ellipse": "Elipse", "Warsaw": "Varsovia"} \ No newline at end of file +{"ticks_slippage ... ticks": "ticks", "Months_interval": "Meses", "Realtime": "En tiempo real", "Callout": "Leyenda", "Sync to all charts": "Sincronizar en todos los gráficos", "month": "mes", "London": "Londres", "roclen1_input": "roclen1", "Unmerge Down": "Separar hacia abajo", "Percents": "Porcentajes", "Search Note": "Buscar nota", "Minor": "Menor", "Do you really want to delete Chart Layout '{0}' ?": "¿Está seguro de que desea eliminar el perfil del gráfico '{0}'?", "Quotes are delayed by {0} min and updated every 30 seconds": "Los precios se retrasarán {0} minutos y se actualizarán cada 30 segundos", "Magnet Mode": "Modo imán", "Grand Supercycle": "Gran superciclo", "OSC_input": "OSC", "Hide alert label line": "Ocultar línea de etiqueta de la alerta", "Volume_study": "Volumen", "Lips_input": "Labios", "Show real prices on price scale (instead of Heikin-Ashi price)": "Mostrar precios reales en la escala de precios (en vez de los precios Heikin-Ashi)", "Histogram": "Histograma", "Base Line_input": "Línea base", "Step": "Paso", "Insert Study Template": "Insertar plantilla de estudio", "Fib Time Zone": "Zona horaria de Fibonacci", "SMALen2_input": "SMALen2", "Bollinger Bands_study": "Bandas de Bollinger", "Show/Hide": "Mostrar/ocultar", "Upper_input": "Superior", "exponential_input": "exponencial", "Move Up": "Subir", "Symbol Info": "Información del símbolo", "This indicator cannot be applied to another indicator": "Este indicador no se puede aplicar a otro indicador", "Scales Properties...": "Propiedades de las escalas", "Count_input": "Cuenta", "Full Circles": "Círculos completos", "Industry": "Industria", "OnBalanceVolume_input": "OnBalanceVolume", "Cross_chart_type": "Cruce", "H_in_legend": "H", "a day": "un día", "Pitchfork": "Tridente o Pitchfork", "R_data_mode_replay_letter": "R", "Accumulation/Distribution_study": "Acumulación/distribución", "Rate Of Change_study": "Indicador de la tasa de cambio", "in_dates": "en", "Clone": "Clonar", "Color 7_input": "Color 7", "Chop Zone_study": "Zona de corte", "Bar #": "Número de barra", "Scales Properties": "Propiedades de las escalas", "Trend-Based Fib Time": "Zona temporal de Fibonacci basada en tendencias", "Remove All Indicators": "Quitar todos los indicadores", "Oscillator_input": "Oscilador", "Last Modified": "Ultima modificación", "yay Color 0_input": "yay Color 0", "Labels": "Etiquetas", "Chande Kroll Stop_study": "Chande Kroll Stop", "Hours_interval": "Horas", "Allow up to": "Permitir hasta", "Scale Right": "Escala derecha", "Money Flow_study": "Flujo monetario", "siglen_input": "siglen", "Indicator Labels": "Etiquetas de los indicadores", "__specialSymbolOpen__Tomorrow at__specialSymbolClose__ __dayTime__": "__specialSymbolOpen__Mañana a las__specialSymbolClose__ __dayTime__", "Toggle Percentage": "Alternar porcentaje", "Remove All Drawing Tools": "Quitar todas las herramientas de dibujo", "Remove all line tools for ": "Quitar todas las herramientas de líneas para", "Linear Regression Curve_study": "Curva de regresion lineal", "Symbol_input": "Símbolo", "Currency": "Divisa", "increment_input": "incremento", "Compare or Add Symbol...": "Comparar/añadir símbolo...", "__specialSymbolOpen__Last__specialSymbolClose__ __dayName__ __specialSymbolOpen__at__specialSymbolClose__ __dayTime__": "__specialSymbolOpen__Ultimo__specialSymbolClose__\n__dayName__\n__specialSymbolOpen__a las__specialSymbolClose__\n__dayTime__", "Save Chart Layout": "Guardar diseño de gráfico", "Number Of Line": "Número de la línea", "Label": "Etiqueta", "Post Market": "Período de negociación posterior al cierre de mercado", "second": "segundo", "Change Hours To": "Cambiar horas a", "smoothD_input": "smoothD", "Falling_input": "Descendente", "X_input": "X", "Risk/Reward short": "Riesgo/beneficio a corto", "Donchian Channels_study": "Canales de Donchian", "Entry price:": "Precio de entrada:", "Circles": "Círculos", "Head": "Cabeza", "Stop: {0} ({1}) {2}, Amount: {3}": "Stop: {0} ({1}) {2}, Cantidad: {3}", "Mirrored": "Rotar verticalmente", "Ichimoku Cloud_study": "Nube Ichimoku", "Signal smoothing_input": "Suavizado de señales", "Use Upper Deviation_input": "Utilizar la desviación superior", "Toggle Auto Scale": "Alternar la escala automática", "Grid": "Rejilla", "Triangle Down": "Triángulo hacia abajo", "Apply Elliot Wave Minor": "Aplicar onda de Elliott menor", "Slippage": "Deslizamiento", "Smoothing_input": "Suavizado", "Color 3_input": "Color 3", "Jaw Length_input": "Longitud de la mandíbula", "Inside": "Interior", "Delete all drawing for this symbol": "Eliminar todos los dibujos para este símbolo", "Fundamentals": "Fundamentos", "Keltner Channels_study": "Canales Keltner", "Long Position": "Posición larga", "Bands style_input": "Estilo de bandas", "Undo {0}": "Deshacer {0}", "With Markers": "Con marcadores", "Momentum_study": "Momentum", "MF_input": "MF", "Gann Box": "Cuadro de Gann", "Switch to the next chart": "Cambiar al siguiente gráfico", "charts by TradingView": "gráficos por TradingView", "Fast length_input": "Longitud rápida", "Apply Elliot Wave": "Aplicar onda de Elliott", "Disjoint Angle": "Ángulo disjunto", "Supermillennium": "Supermilenio", "W_interval_short": "S", "Show Only Future Events": "Mostrar solo eventos futuros", "Log Scale": "Escala logarítmica", "Line - High": "Línea - Alta", "Equality Line_input": "Línea de igualdad", "Short_input": "Corto", "Fib Wedge": "Cuña de Fibonacci", "Line": "Línea", "Session": "Sesión", "Down fractals_input": "Fractales bajistas", "Fib Retracement": "Retroceso de Fibonacci", "smalen2_input": "smalen2", "isCentered_input": "estáCentrado", "Border": "Borde", "Klinger Oscillator_study": "Oscilador Klinger", "Absolute": "Absoluto", "Tue": "Mar", "Style": "Estilo", "Show Left Scale": "Mostrar escala de la izquierda", "SMI Ergodic Indicator/Oscillator_study": "Indicador/oscilador ergódico SMI", "Aug": "Ago", "Last available bar": "Última barra disponible", "Manage Drawings": "Gestionar los dibujos", "Analyze Trade Setup": "Analizar configuración de las transacciones", "No drawings yet": "No hay dibujos todavía", "SMI_input": "SMI", "Chande MO_input": "Oscilador de momento de Chande", "jawLength_input": "jawLength", "TRIX_study": "TRIX (media exponencial triple)", "Show Bars Range": "Mostrar rango de barras", "RVGI_input": "RVGI", "Last edited ": "Editado por última vez", "signalLength_input": "signalLength", "%s ago_time_range": "hace %s", "Reset Settings": "Restablecer ajustes", "d_dates": "d", "Point & Figure": "Punto y Figura (PnF)", "August": "Agosto", "Recalculate After Order filled": "Recalcular después de completar la orden", "Source_compare": "Fuente", "Down bars": "Barras hacia abajo", "Correlation Coefficient_study": "Coeficiente de correlación", "Delayed": "Retrasada", "Bottom Labels": "Etiquetas de la parte inferior", "Text color": "Color del texto", "Levels": "Niveles", "Short Length_input": "Longitud corta", "teethLength_input": "teethLength", "Visible Range_study": "Visible Range", "Open {{symbol}} Text Note": "Abrir nota de texto {{symbol}}", "October": "Octubre", "Lock All Drawing Tools": "Bloquear todas las herramientas de dibujo", "Long_input": "Largo", "Right End": "Extremo derecho", "Show Symbol Last Value": "Mostrar valor del último símbolo", "Head & Shoulders": "Cabeza y hombros", "Do you really want to delete Study Template '{0}' ?": "¿Está seguro de que desea eliminar la plantilla de indicador '{0}'?", "Favorite Drawings Toolbar": "Barra de herramientas de dibujo favoritas", "Properties...": "Propiedades...", "Reset Scale": "Restablecer escala", "MA Cross_study": "Cruce de medias móviles", "Trend Angle": "Ángulo de tendencia", "Snapshot": "Imagen", "Crosshair": "Retícula", "Signal line period_input": "Período de la línea de señales", "Timezone/Sessions Properties...": "Propiedades zona horaria/sesiones", "Line Break": "Salto de línea", "Quantity": "Cantidad", "Price Volume Trend_study": "Tendencia de volumen según el precio", "Auto Scale": "Escala automática", "hour": "hora", "Delete chart layout": "Eliminar el perfil del gráfico", "Text": "Тexto", "F_data_mode_forbidden_letter": "F", "Risk/Reward long": "Riesgo/beneficio a largo", "Apr": "Abr", "Long RoC Length_input": "Longitud larga del tipo de cambio (RoC) ", "Length3_input": "Longitud3", "+DI_input": "+DI", "Length_input": "Longitud", "Use one color": "Utilizar un color", "Chart Properties": "Propiedades del gráfico", "No Overlapping Labels_scale_menu": "Sin etiquetas superpuestas", "Exit Full Screen (ESC)": "Salir de la pantalla completa (ESC)", "MACD_study": "Convergencia/divergencia de la media móvil (MACD)", "Show Economic Events on Chart": "Mostrar los eventos económicos en el gráfico", "Moving Average_study": "Media móvil", "Show Wave": "Mostrar onda", "Failure back color": "Error de color de fondo", "Below Bar": "Barra por debajo", "Time Scale": "Escala de tiempo", "

    Only D, W, M intervals are supported for this symbol/exchange. You will be automatically switched to a D interval. Intraday intervals are not available because of exchange policies.

    ": "

    Solo los intervalos D, W, M están disponibles para este símbolo/mercado. Se activará el intervalo diario (D) en su lugar. Los intervalos intradía no se encuentran disponibles por las políticas de los mercados.

    ", "Extend Left": "Ampliar a la izquierda", "Date Range": "Rango de datos", "Min Move": "Movimiento min", "Price format is invalid.": "El formato del precio es incorrecto.", "Show Price": "Mostrar precio", "Level_input": "Nivel", "Angles": "Ángulos", "Commodity Channel Index_study": "Índice de canal de mercaderías", "Elder's Force Index_input": "Índice de fuerza de Elder", "Gann Square": "Cuadrado de Gann", "Format": "Formato", "Color bars based on previous close": "Color de barras en función del cierre anterior", "Change band background": "Cambiar el fondo de la banda", "Target: {0} ({1}) {2}, Amount: {3}": "Objetivo: {0} ({1}) {2}, cantidad: {3}", "Anchored Text": "Тexto anclado", "Long length_input": "Longitud larga", "Edit {0} Alert...": "Editar alerta {0}...", "Previous Close Price Line": "Línea anterior con el precio de cierre", "Up Wave 5": "Onda 5 hacia arriba", "Qty: {0}": "Cantidad: {0}", "Aroon_study": "Aroon", "show MA_input": "mostrar MV", "Lead 1_input": "Lead 1", "Short Position": "Posición corta", "SMALen1_input": "SMALen1", "P_input": "P", "Apply Default": "Aplicar configuración predeterminada", "SMALen3_input": "SMALen3", "Average Directional Index_study": "Índice medio de movimiento direccional", "Fr_day_of_week": "V", "Invite-only script. Contact the author for more information.": "Script solo mediante Invitación. Póngase en contacto con el autor para conseguir más información.", "Curve": "Curva", "a year": "un año", "Target Color:": "Color de objetivo:", "Bars Pattern": "Patrón de barras", "D_input": "D", "Font Size": "Tamaño de la fuente", "Create Vertical Line": "Crear línea vertical", "p_input": "p", "Rotated Rectangle": "Rectángulo rotado", "Chart layout name": "Nombre de diseño del gráfico", "Fib Circles": "Ciclos de Fibonacci", "Apply Manual Decision Point": "Aplicar punto de decisión manual", "Dot": "Punto", "Target back color": "Color del fondo del objetivo", "All": "Todo", "orders_up to ... orders": "órdenes", "Dot_hotkey": "Punto", "Lead 2_input": "Lead 2", "Save image": "Guardar imagen", "Move Down": "Bajar", "Triangle Up": "Triángulo hacia arriba", "Box Size": "Tamaño de la caja", "Navigation Buttons": "Botones de navegación.", "Miniscule": "Minúsculo", "Apply": "Aplicar", "Down Wave 3": "Onda 3 hacia abajo", "Plots Background_study": "Fondo de los gráficos", "Marketplace Add-ons": "Complementos del mercado", "Sine Line": "Línea del seno", "Fill": "Rellenar", "%d day": "%d día", "Hide": "Ocultar", "Toggle Maximize Chart": "Alternar maximizar gráfico", "Target text color": "Color del texto del objetivo", "Scale Left": "Escala izquierda", "Elliott Wave Subminuette": "Subminuette de onda de Elliott", "Color based on previous close_input": "Color basado en el cierre anterior", "Down Wave C": "Onda C hacia abajo", "Countdown": "Cuenta atrás", "UO_input": "UO", "Go to Date...": "Ir a la fecha...", "Text Alignment:": "Alineación del texto:", "R_data_mode_realtime_letter": "R", "Extend Lines": "Ampliar líneas", "Conversion Line_input": "Línea de conversión", "March": "Marzo", "Su_day_of_week": "Do", "Exchange": "Mercado bursátil", "Arcs": "Arcos", "Regression Trend": "Tendencia de regresión", "Short RoC Length_input": "Longitud RoC corta", "Fib Spiral": "Espiral de Fibonacci", "Double EMA_study": "Media móvil exponencial (EMA) de doble canal", "minute": "minuto", "All Indicators And Drawing Tools": "Todos los indicadores y herramientas de dibujo", "Indicator Last Value": "Último valor de los indicadores", "Sync drawings to all charts": "Sincronizar dibujos en todos los gráficos", "Change Average HL value": "Cambiar media del valor HL", "Stop Color:": "Color de Stop:", "Stay in Drawing Mode": "Permanecer en modo dibujo", "Bottom Margin": "Margen inferior", "Save Chart Layout saves not just some particular chart, it saves all charts for all symbols and intervals which you are modifying while working with this Layout": "Al guardar el diseño del gráfico también se guardan los gráficos de todos los símbolos e intervalos que esté modificando mientras esté trabajando en este diseño.", "Average True Range_study": "Rango verdadero medio", "Max value_input": "Valor máximo", "MA Length_input": "Longitud de la MV", "Invite-Only Scripts": "Scripts solo mediante invitación", "in %s_time_range": "en %s", "UpperLimit_input": "LímiteSuperior", "sym_input": "sym", "DI Length_input": "Longitud DI", "Rome": "Roma", "Scale": "Escala", "Periods_input": "Períodos", "Arrow": "Flecha", "useTrueRange_input": "useTrueRange", "Basis_input": "Base", "Arrow Mark Down": "Marca de la flecha hacia abajo", "lengthStoch_input": "longitudStoch", "Objects Tree": "Árbol de objetos", "Remove from favorites": "Quitar de favoritos", "Show Symbol Previous Close Value": "Mostrar el símbolo con el valor de cierre anterior", "Scale Series Only": "Solo series de la escala", "Source text color": "Color del texto de la fuente", "Created ": "Creado", "Report a data issue": "Informar sobre un problema con los datos", "Arnaud Legoux Moving Average_study": "Media móvil Arnaud Legoux", "Smoothed Moving Average_study": "Media móvil suavizada", "Lower Band_input": "Band inferior", "Verify Price for Limit Orders": "Verificar precio para órdenes limitadas", "VI +_input": "VI +", "Line Width": "Grosor de línea", "Contracts": "Contratos", "Always Show Stats": "Mostrar estadísticas siempre", "Down Wave 4": "Onda 4 hacia abajo", "ROCLen2_input": "ROCLen2", "Simple ma(signal line)_input": "Media móvil simple (línea de señal)", "Change Interval...": "Cambiar intervalo...", "Public Library": "Librería pública", " Do you really want to delete Drawing Template '{0}' ?": " ¿Desea realmente eliminar la plantilla de dibujo '{0}'?", "Sat": "Sáb", "Left Shoulder": "Hombro izquierdo", "week": "semana", "CRSI_study": "CRSI", "Close message": "Cerrar mensaje", "Base currency": "Divisa base", "Show Drawings Toolbar": "Mostrar barra de herramientas de dibujos", "Chaikin Oscillator_study": "Oscilador Chaikin", "Price Source": "Fuente de precios", "Market Open": "Mercado abierto", "Color Theme": "Paleta de colores", "Projection up bars": "Proyección barras hacia arriba", "Awesome Oscillator_study": "Oscilador asombroso", "Bollinger Bands Width_input": "Ancho de las bandas de Bollinger", "long_input": "longitud", "Error occured while publishing": "Se ha producido un error al publicar", "Fisher_input": "Fisher", "Color 1_input": "Color 1", "Moving Average Weighted_study": "Media móvil ponderada", "Save": "Guardar", "Type": "Tipo", "Wick": "Mecha", "Accumulative Swing Index_study": "Accumulative Swing Index", "Load Chart Layout": "Cargar diseño de gráfico", "Show Values": "Mostrar valores", "Fib Speed Resistance Fan": "Abanico de Fibonacci de resistencia de velocidad", "Bollinger Bands Width_study": "Ancho de las bandas de Bollinger", "This chart layout has more than 1000 drawings, which is a lot! This may negatively affect performance, storage and publishing. We recommend to remove some drawings to avoid potential performance issues.": "El diseño de este gráfico tiene más de 1000 dibujos, ¡demasiados! Esto puede afectar de forma negativa al rendimiento, almacenamiento y publicación. Le recomendamos quitar algunos dibujos para evitar posibles errores de funcionamiento.", "Left End": "Extremo izquierdo", "%d year": "%d año", "Always Visible": "Siempre visible", "S_data_mode_snapshot_letter": "S", "Flag": "Bandera", "Elliott Wave Circle": "Círculo de onda de Elliott", "Earnings breaks": "Informe de ganancias de la empresa", "Change Minutes From": "Cambiar minutos de", "Do not ask again": "No vuelva a preguntar", "Displacement_input": "Desplazamiento", "smalen4_input": "smalen4", "CCI_input": "CCI", "Upper Deviation_input": "Desviación superior", "(H + L)/2": "(Máx+Mín)/2", "XABCD Pattern": "Patron XABCD", "Schiff Pitchfork": "Tridente de Schiff", "HLC Bars": "Barras con el máximo, mínimo y cierre (HLC)", "Flipped": "Invertido", "DEMA_input": "DEMA", "Move_input": "Move", "NV_input": "NV", "Choppiness Index_study": "Índice Choppiness", "Study Template '{0}' already exists. Do you really want to replace it?": "La plantilla indicador '{0}' ya existe. ¿Está seguro de que quiere reemplazarla?", "Merge Down": "Combinar hacia abajo", "Th_day_of_week": "Ju", " per contract": " por contrato", "Overlay the main chart": "Superponer el gráfico principal", "Screen (No Scale)": "Pantalla (sin escala)", "Delete": "Eliminar", "Save Indicator Template As": "Guardar plantilla de indicador como", "Length MA_input": "Longitud MA", "percent_input": "porcentaje", "September": "Septiembre", "{0} copy": "{0} copia", "Avg HL in minticks": "Promedio de HL en minticks", "Accumulation/Distribution_input": "Acumulación/distribución", "Sync": "Sincronizar", "C_in_legend": "C", "Weeks_interval": "Semanas", "smoothK_input": "smoothK", "Percentage_scale_menu": "Porcentaje", "Change Extended Hours": "Cambiar horas extendidas", "MOM_input": "MOM", "h_interval_short": "h", "Change Interval": "Cambiar intervalo", "Change area background": "Cambiar el fondo del área", "Modified Schiff": "Schiff modificado", "top": "superior", "Custom color...": "Color personalizado...", "Send Backward": "Enviar atrás", "Mexico City": "Ciudad de Mexico", "TRIX_input": "TRIX", "Show Price Range": "Mostrar rango de precios", "Elliott Major Retracement": "Retroceso mayor de Elliott", "ASI_study": "ASI", "Notification": "Notificación", "Fri": "Vi", "just now": "justo ahora", "Forecast": "Previsión", "Fraction part is invalid.": "La parte de la fracción no es correcta.", "Connecting": "Conectando", "Ghost Feed": "Fuente RSS fantasma", "Signal_input": "Señal", "Histogram_input": "Histograma", "The Extended Trading Hours feature is available only for intraday charts": "La función de horario ampliado de trading solo se encuentra disponible para gráficos intradías.", "Stop syncing": "Detener sincronización", "open": "abierto", "StdDev_input": "StdDev", "EMA Cross_study": "Cruce EMA", "Conversion Line Periods_input": "Períodos de la línea de conversión", "Diamond": "Diamante", "My Scripts": "Mis scripts", "Monday": "Lunes", "Add Symbol_compare_or_add_symbol_dialog": "Add Symbol", "Williams %R_study": "Williams %R", "Symbol": "Símbolo", "a month": "un mes", "Precision": "Precisión", "depth_input": "profundidad", "Go to": "Ir a", "Please enter chart layout name": "Introduzca el nombre de diseño del gráfico", "VWAP_study": "Precio medio ponderado por volumen (VWAP)", "Offset": "Compensación", "Date": "Fecha", "Format...": "Formato...", "__dayName__ __specialSymbolOpen__at__specialSymbolClose__ __dayTime__": "__dayName__\n__specialSymbolOpen__a las__specialSymbolClose__\n__dayTime__", "Toggle Maximize Pane": "Alternar maximizar panel", "Search": "Buscar", "Zig Zag_study": "Zigzag", "Actual": "Real", "SUCCESS": "ÉXITO", "Long period_input": "Período largo", "length_input": "longitud", "roclen4_input": "roclen4", "Price Line": "Línea de precios", "Area With Breaks": "Área con rupturas", "Zoom Out": "Alejar", "Stop Level. Ticks:": "Nivel de Stop. Tics:", "Economy & Symbols": "Economía y símbolos", "Circle Lines": "Líneas circulares", "Visual Order": "Orden visual", "__specialSymbolOpen__Yesterday at__specialSymbolClose__ __dayTime__": "__specialSymbolOpen__Ayer a las__specialSymbolClose__ __dayTime__", "Stop Background Color": "Color de fondo de Stop", "Slow length_input": "Longitud lenta", "Copied to clipboard": "Copiado al portapapeles", "powered by TradingView": "con tecnología de TradingView", "Text:": "Тexto:", "Stochastic_study": "Estocástica", "Marker Color": "Color del marcador", "TEMA_input": "TEMA", "Apply WPT Up Wave": "Aplicar onda WPT ascendente", "Min Move 2": "Movimiento min 2", "Extend Left End": "Ampliar al extremo izquierdo", "Projection down bars": "Proyección barras hacia abajo", "Advance/Decline_study": "Avance/retroceso", "New York": "Nueva York", "Flag Mark": "Marca con bandera", "Drawings": "Dibujos", "Cancel": "Cancelar", "Compare or Add Symbol": "Comparar/añadir símbolo", "Redo": "Repetir", "Hide Drawings Toolbar": "Ocultar barra de herramientas de dibujo", "Ultimate Oscillator_study": "Oscilador de Williams", "Vert Grid Lines": "Líneas verticales de la cuadrícula", "Growing_input": "Creciendo", "Angle": "Ángulo", "Plot_input": "Dibujo", "Color 8_input": "Color 8", "Indicators, Fundamentals, Economy and Add-ons": "Indicadores, fundamentos, economía y complementos", "h_dates": "h", "ROC Length_input": "ROC Length", "roclen3_input": "roclen3", "Overbought_input": "Sobrecomprado", "DPO_input": "DPO", "Change Minutes To": "Cambiar minutos a", "No study templates saved": "No existen plantillas de estudio guardadas", "Trend Line": "Línea de tendencia", "TimeZone": "Zona horaria", "Your chart is being saved, please wait a moment before you leave this page.": "Se está guardando su gráfico. Por favor, espere un momento antes de salir de la página.", "Percentage": "Porcentaje", "Tu_day_of_week": "Ma", "RSI Length_input": "Longitud RSI", "Triangle": "Triángulo", "Line With Breaks": "Línea con rupturas", "Period_input": "Período", "Watermark": "Marca de agua", "Trigger_input": "Activar", "SigLen_input": "SigLen", "Extend Right": "Ampliar a la derecha", "Color 2_input": "Color 2", "Show Prices": "Mostrar precios", "Unlock": "Desbloquear", "Copy": "Copiar", "high": "alto", "Arc": "Arco", "Edit Order": "Editar orden", "January": "Enero", "Arrow Mark Right": "Marca de la flecha hacia la derecha", "Extend Alert Line": "Ampliar línea de alertas", "Background color 1": "Color de fondo 1", "RSI Source_input": "Fuente RSI", "Close Position": "Cerrar posición", "Any Number": "Cualquier número", "Stop syncing drawing": "Detener sincronización del dibujo", "Visible on Mouse Over": "Visible al pasar el ratón", "MA/EMA Cross_study": "Cruce de media móvil (MA)/media móvil exponencial (EMA)", "Thu": "Jue", "Vortex Indicator_study": "Indicador de vortex", "view-only chart by {user}": "Gráfico de solo lectura para {user}", "ROCLen1_input": "ROCLen1", "M_interval_short": "M", "Chaikin Oscillator_input": "Oscilador de Chaikin", "Price Levels": "Nivel de precios", "Show Splits": "Mostrar acciones desdobladas", "Zero Line_input": "Línea cero", "__specialSymbolOpen__Today at__specialSymbolClose__ __dayTime__": "__specialSymbolOpen__Hoy a las__specialSymbolClose__ __dayTime__", "Increment_input": "Incremento", "Days_interval": "Días", "Show Right Scale": "Mostrar escala de la derecha", "Show Alert Labels": "Mostrar etiquetas de alerta", "Historical Volatility_study": "Volatilidad histórica", "Lock": "Bloquear", "length14_input": "longitud14", "High": "Máximo", "Q_input": "Q", "Date and Price Range": "Rango de fecha y precio", "Polyline": "Polilínea", "Reconnect": "Reconectar", "Lock/Unlock": "Bloquear/Desbloquear", "Price Channel_study": "Price Channel", "Label Down": "Etiqueta hacia abajo", "Saturday": "Sábado", "Symbol Last Value": "Último valor del símbolo", "Above Bar": "Barra por encima", "Studies": "Estudios", "Color 0_input": "Color 0", "Add Symbol": "Añadir símbolo", "maximum_input": "máximo", "Wed": "Mi", "Paris": "París", "D_data_mode_delayed_letter": "D", "Sigma_input": "Sigma", "VWMA_study": "Media móvil ponderada de volumen (VWMA)", "fastLength_input": "LongitudRápida", "Time Levels": "Niveles de tiempo", "Width": "Ancho", "Loading": "Cargando", "Template": "Plantilla", "Use Lower Deviation_input": "Utilizar la desviación inferior", "Up Wave 3": "Onda 3 hacia arriba", "Parallel Channel": "Canal paralelo", "Time Cycles": "Ciclos de tiempo", "Second fraction part is invalid.": "La segunda parte de la fracción es incorrecta", "Divisor_input": "Divisor", "Down Wave 1 or A": "Onda 1 o A hacia abajo", "ROC_input": "ROC", "Dec": "Dic", "Ray": "Rayo", "Extend": "Ampliar", "length7_input": "longitud7", "Bring Forward": "Traer hacia delante", "Bottom": "Parte inferior", "Berlin": "Berlín", "Undo": "Deshacer", "Window Size_input": "Tamaño de la ventana", "Mon": "Lu", "Right Labels": "Etiquetas de la parte derecha", "Long Length_input": "Longitud larga", "True Strength Indicator_study": "Índice de fuerza verdadera (TSI)", "%R_input": "%R", "There are no saved charts": "No hay gráficos guardados", "Instrument is not allowed": "Instrumento no permitido", "bars_margin": "barras", "Decimal Places": "Decimales", "Show Indicator Last Value": "Mostrar valor del último indicador", "Initial capital": "Capital inicial", "Show Angle": "Mostrar ángulo", "Mass Index_study": "Índice Mass", "More features on tradingview.com": "Más funciones en tradingview.com", "Objects Tree...": "Árbol de objetos...", "Remove Drawing Tools & Indicators": "Eliminar herramientas de dibujo e indicadores", "Length1_input": "Longitud1", "Always Invisible": "Siempre invisible", "Circle": "Cículo", "Days": "Días", "x_input": "x", "Save As...": "Guardar como...", "Elliott Double Combo Wave (WXY)": "Onda de Elliott de doble combinación (WXY)", "Parabolic SAR_study": "Parabólica SAR", "Any Symbol": "Cualquier símbolo", "Variance": "Varianza", "Stats Text Color": "Color del texto de las estadísticas", "Minutes": "Minutos", "Williams Alligator_study": "Alligator de Williams", "Projection": "Proyección", "Jan": "Ene", "Jaw_input": "Mandíbula", "Right": "Derecha", "Help": "Ayuda", "Coppock Curve_study": "Curva de Coppock", "Reversal Amount": "Importe de la reversión", "Reset Chart": "Restablecer gráfico", "Sunday": "Domingo", "Left Axis": "Eje izquierdo", "Open": "Abrir", "YES": "SI", "longlen_input": "longlen", "Moving Average Exponential_study": "Media móvil exponencial", "Source border color": "Color del borde de la fuente", "Redo {0}": "Repetir {0}", "Cypher Pattern": "Cifrar patrón", "s_dates": "s", "Area": "Área", "Triangle Pattern": "Patrón de triángulo", "Balance of Power_study": "Correlación de fuerzas", "EOM_input": "EOM", "Shapes_input": "Formas", "Oversold_input": "Sobrevendido", "Apply Manual Risk/Reward": "Aplicar recompensa/riesgo manual", "Market Closed": "Mercado Cerrado", "Sydney": "Sidney", "Indicators": "Indicadores", "close": "cierre", "q_input": "q", "You are notified": "Estás notificado", "Font Icons": "Iconos de fuentes", "%D_input": "%D", "Border Color": "Color del borde", "Offset_input": "Compensación", "Risk": "Riesgo", "Price Scale": "Escala de precios", "HV_input": "HV", "Seconds": "Segundos", "Settings": "Opciones de configuración", "Start_input": "Inicio", "Elliott Impulse Wave (12345)": "Onda de impulso de Elliott (12345)", "Hours": "Horas", "Send to Back": "Enviar al fondo", "Color 4_input": "Color 4", "Los Angeles": "Los Ángeles", "Prices": "Precios", "Hollow Candles": "Velas huecas", "July": "Julio", "Create Horizontal Line": "Crear línea horizontal", "Minute": "Minuto", "Cycle": "Ciclo", "ADX Smoothing_input": "ADX suavizado", "One color for all lines": "Un color para todas las líneas", "m_dates": "m", "(H + L + C)/3": "(Máx.+Mín.+Cierre)/3", "Candles": "Velas", "We_day_of_week": "X", "Width (% of the Box)": "Ancho (% del recuadro)", "%d minute": "%d minuto", "Go to...": "Ir a...", "Pip Size": "Tamaño del Pip", "Wednesday": "Miércoles", "This drawing is used in alert. If you remove the drawing, the alert will be also removed. Do you want to remove the drawing anyway?": "Este dibujo se está usando en una alerta. Si quita el dibujo, también se eliminará la alerta. ¿Está seguro de que desea quitar el dibujo de todas formas?", "Show Countdown": "Mostrar cuenta atrás", "Show alert label line": "Mostrar la línea de la etiqueta de alerta", "MA_input": "MV", "Length2_input": "Longitud2", "not authorized": "no autorizado", "Session Volume_study": "Session Volume", "Image URL": "URL de la imagen", "SMI Ergodic Oscillator_input": "Oscilador ergódico SMI", "Show Objects Tree": "Mostrar árbol de objetos", "Primary": "Primario", "Price:": "Precio:", "Bring to Front": "Traer al frente", "Brush": "Pincel", "Not Now": "Ahora no", "Yes": "Sí", "C_data_mode_connecting_letter": "C", "SMALen4_input": "SMALen4", "Apply Default Drawing Template": "Aplicar plantilla de dibujo predeterminada", "Compact": "Compacto", "Save As Default": "Guardar como predeterminado", "Target border color": "Color del borde del objetivo", "Invalid Symbol": "Símbolo incorrecto", "Inside Pitchfork": "Tridente o Pitchfork interno", "yay Color 1_input": "yay Color 1", "Quandl is a huge financial database that we have connected to TradingView. Most of its data is EOD and is not updated in real-time, however the information may be extremely useful for fundamental analysis.": "Quandl es una gran base de datos financiera que hemos conectado a TradingView. La mayor parte de sus datos son EOD y no se actualizan en tiempo real, aunque la información puede resultar extremadamente útil para análisis fundamentales.", "Hide Marks On Bars": "Ocultar marcadores de barra", "Cancel Order": "Cancelar orden", "Hide All Drawing Tools": "Ocultar todas las herramientas del dibujo", "WMA Length_input": "Longitud WMA", "Show Dividends on Chart": "Mostrar dividendos en el gráfico", "Show Executions": "Mostrar ejecuciones", "Borders": "Bordes", "Remove Indicators": "Eliminar Indicadores", "loading...": "cargando...", "Closed_line_tool_position": "Cerrado", "Rectangle": "Rectángulo", "Change Resolution": "Cambiar resolución", "Indicator Arguments": "Argumentos de los indicadores", "Symbol Description": "Descripción del símbolo", "Chande Momentum Oscillator_study": "Oscilador de momento de Chande", "Degree": "Grado", " per order": " por orden", "Line - HL/2": "Línea - HL/2", "Supercycle": "Superciclo", "Least Squares Moving Average_study": "Media móvil de los mínimos cuadrados", "Change Variance value": "Cambiar valor de variación", "powered by ": "con tecnología de ", "Source_input": "Fuente", "Change Seconds To": "Cambiar segundos a", "%K_input": "%K", "Scales Text": "Тexto de las escalas", "Please enter template name": "Introduzca un nombre de plantilla", "Symbol Name": "Nombre del símbolo", "Tokyo": "Tokio", "Events Breaks": "Descansos de evento", "Study Templates": "Plantillas de estudio", "Months": "Meses", "Symbol Info...": "Información del símbolo...", "Elliott Wave Minor": "Onda menor de Elliott", "Cross": "Cruce", "Measure (Shift + Click on the chart)": "Medir (Mayús+ clic en el gráfico)", "Override Min Tick": "Anular min tic", "Show Positions": "Mostrar posiciones", "Dialog": "Diálogo", "Add To Text Notes": "Añadir a notas de texto", "Elliott Triple Combo Wave (WXYXZ)": "Onda de Elliott de triple combinación (WXYXZ)", "Multiplier_input": "Multiplicador", "Risk/Reward": "Riesgo/Beneficio", "Base Line Periods_input": "Períodos de línea base", "Show Dividends": "Mostrar dividendos", "Relative Strength Index_study": "Índice de fuerza relativa", "Modified Schiff Pitchfork": "Modificar Tridente de Schiff", "Top Labels": "Principales etiquetas", "Show Earnings": "Mostrar ganancias", "Line - Open": "Línea - Abierta", "Elliott Triangle Wave (ABCDE)": "Onda triangular de Elliott (ABCDE)", "Text Wrap": "Ajuste de texto", "Reverse Position": "Invertir posición...", "Elliott Minor Retracement": "Retroceso menor de Elliott", "Pitchfan": "Tridente abanico o Pitchfan", "Slash_hotkey": "Barra", "No symbols matched your criteria": "Ningún símbolo coincide con sus criterios de búsqueda.", "Icon": "Icono", "lengthRSI_input": "longitudRSI", "Tuesday": "Martes", "Teeth Length_input": "Longitud de los dientes", "Indicator_input": "Indicador", "Open Interval Dialog": "Abrir diálogo de intervalo", "Athens": "Atenas", "Fib Speed Resistance Arcs": "Arcos de Fibonacci de resistencia de velocidad", "Content": "Contenido", "middle": "medio", "Lock Cursor In Time": "Bloquear cursor en el tiempo", "Intermediate": "Intermediario", "Eraser": "Borrador", "Relative Vigor Index_study": "Índice de vigor relativo (RVI)", "Envelope_study": "Sobre", "Symbol Labels": "Etiquetas de símbolo", "Pre Market": "Período de negociación previo al cierre de mercado", "Horizontal Line": "Línea horizontal", "O_in_legend": "O", "Confirmation": "Confirmación", "HL Bars": "Barras HL - máximo y mínimo", "Lines:": "Líneas", "Hide Favorite Drawings Toolbar": "Ocultar barra de herramientas de dibujos favoritos", "X Cross": "Cruz en X", "Profit Level. Ticks:": "Nivel de ganancias. Tics:", "Show Date/Time Range": "Mostrar rango de fecha/hora", "Level {0}": "Nivel {0}", "Favorites": "Favoritos", "Horz Grid Lines": "Líneas de cuadrícula horizontales", "-DI_input": "-DI", "Price Range": "Rango de precios", "day": "día", "deviation_input": "desviación", "Account Size": "Tamaño de la cuenta", "Value_input": "Value", "Time Interval": "Intervalo de tiempo", "Success text color": "Color del texto correcto", "ADX smoothing_input": "ADX suavizado", "%d hour": "%d hora", "Order size": "Tamaño de la orden", "Drawing Tools": "Herramientas de dibujo", "Save Drawing Template As": "Guardar plantilla de dibujo como", "Traditional": "Tradicional", "Chaikin Money Flow_study": "Flujo monetario de Chaikin", "Ease Of Movement_study": "Facilidad de movimiento", "Defaults": "Predeterminados", "Percent_input": "Porcentaje", "Interval is not applicable": "No puede aplicarse el intervalo", "short_input": "corto", "Visual settings...": "Ajustes visuales...", "RSI_input": "RSI", "Chatham Islands": "Islas Chatham", "Detrended Price Oscillator_input": "Oscilador del precio sin tendencia", "Mo_day_of_week": "L", "Up Wave 4": "Onda 4 hacia arriba", "center": "centro", "Vertical Line": "Línea vertical", "Bogota": "Bogotá", "Show Splits on Chart": "Mostrar acciones desdobladas en el gráfico", "Sorry, the Copy Link button doesn't work in your browser. Please select the link and copy it manually.": "Lo sentimos, el botón Copiar enlace no funciona en su navegador. Por favor, seleccione el enlace y cópielo manualmente.", "Levels Line": "Línea de niveles", "Events & Alerts": "Eventos y alertas", "May": "Mayo", "ROCLen4_input": "ROCLen4", "Aroon Down_input": "Aroon abajo (Aroon Down)", "Add To Watchlist": "Añadir a la lista de seguimiento", "Price": "Precio", "left": "izquierdo", "Lock scale": "Bloquear escala", "Limit_input": "Limit", "Change Days To": "Cambiar días a", "Price Oscillator_study": "Oscilador de precios", "smalen1_input": "smalen1", "Drawing Template '{0}' already exists. Do you really want to replace it?": "La plantilla de dibujo '{0}' ya existe. ¿Desea reemplazarla?", "Show Middle Point": "Mostrar punto medio", "KST_input": "KST", "Extend Right End": "Ampliar al extremo derecho", "Fans": "Abanicos", "Line - Low": "Línea - Baja", "Price_input": "Precio", "Gann Fan": "Abanico de Gann", "EOD": "Final del día (EOD)", "Weeks": "Semanas", "McGinley Dynamic_study": "Indicador dinámico McGinley", "Relative Volatility Index_study": "Índice de volatilidad relativa", "Source Code...": "Código fuente...", "PVT_input": "PVT", "Show Hidden Tools": "Mostrar herramientas ocultas", "Hull Moving Average_study": "Media móvil de Hull", "Symbol Prev. Close Value": "Símbolo con el valor de cierre anterior", "Istanbul": "Estambul", "{0} chart by TradingView": "{0} gráfico por TradingView", "Right Shoulder": "Hombro derecho", "Remove Drawing Tools": "Eliminar herramientas de dibujo", "Friday": "Viernes", "Zero_input": "Cero", "Company Comparison": "Comparación de empresas", "Stochastic Length_input": "Longitud estocástica", "mult_input": "mult", "URL cannot be received": "No se puede recibir la URL", "Success back color": "Color del fondo correcto", "E_data_mode_end_of_day_letter": "E", "Trend-Based Fib Extension": "Extensión de Fibonacci basada en tendencias", "Top": "Parte superior", "Double Curve": "Doble curva", "Stochastic RSI_study": "Índice de fuerza relativa (RSI) estocástica", "Oops!": "¡Vaya!", "Horizontal Ray": "Rayo horizontal", "smalen3_input": "smalen3", "Ok": "Aceptar", "Script Editor...": "Editor de script...", "Are you sure?": "¿Está seguro?", "Trades on Chart": "Transacciones en el gráfico", "Listed Exchange": "Mercado listado", "Pyramiding": "Efecto pirámide", "Fullscreen mode": "Modo pantalla completa", "Add Text Note For {0}": "Añadir nota de texto para {0}", "K_input": "K", "Do you really want to delete Drawing Template '{0}' ?": "¿Está seguro de que desea eliminar la plantilla de dibujo '{0}'?", "ROCLen3_input": "ROCLen3", "Restore Size": "Restablecer tamaño", "Text Color": "Color del texto", "Rename Chart Layout": "Cambiar el nombre del diseño del gráfico", "Built-ins": "Incorporados", "Background color 2": "Color de fondo 2", "Drawings Toolbar": "Barra de herramientas de dibujos", "Moving Average Channel_study": "Moving Average Channel", "New Zealand": "Nueva Zelanda", "CHOP_input": "CHOP", "Apply Defaults": "Aplicar configuración predeterminada", "% of equity": "% de patrimonio neto", "Extended Alert Line": "Línea de alertas ampliada", "Note": "Nota", "OK": "Aceptar", "like": "voto positivo", "Show": "Mostrar", "{0} bars": "{0} barras", "Lower_input": "Menor", "Warning": "Advertencia", "Elder's Force Index_study": "Índice de fuerza de Elder", "Show Earnings on Chart": "Mostrar ganancias en el gráfico", "ATR_input": "ATR", "Low": "Mínimo", "Bollinger Bands %B_study": "Bandas de Bollinger %B", "Time Zone": "Zona horaria", "right": "derecha", "%d month": "%d mes", "Wrong value": "Valor erróneo", "Upper Band_input": "Banda superior", "Sun": "Do", "Rename...": "Cambiar el nombre...", "start_input": "start", "No indicators matched your criteria.": "Ningún indicador coincide con sus criterios de búsqueda.", "Commission": "Comisión", "Down Color": "Color descendente", "Short length_input": "Longitud corta", "Kolkata": "Calcuta", "Submillennium": "Submilenio", "Technical Analysis": "Análisis técnico", "Show Text": "Mostrar texto", "Channel": "Canal", "FXCM CFD data is available only to FXCM account holders": "Los datos FXCM CFD sólo están disponibles para usuarios de cuenta FXCM", "Lagging Span 2 Periods_input": "Tramo de desfase de 2 períodos", "Connecting Line": "Línea de conexión", "Seoul": "Seúl", "bottom": "inferior", "Teeth_input": "Dientes", "Sig_input": "Sig", "Open Manage Drawings": "Abrir gestionar dibujos", "Save New Chart Layout": "Guardar nuevo diseño de gráfico", "Fib Channel": "Canal de Fibonacci", "Save Drawing Template As...": "Guardar plantilla de dibujo como...", "Minutes_interval": "Minutos", "Up Wave 2 or B": "Onda 2 o B hacia arriba", "Columns": "Columnas", "Directional Movement_study": "Movimiento direccional", "roclen2_input": "roclen2", "Apply WPT Down Wave": "Aplicar onda WPT descendente", "Not applicable": "No aplicable", "Bollinger Bands %B_input": "Bandas de Bollinger %B", "Default": "Predeterminado", "Singapore": "Singapur", "Template name": "Nombre de la plantilla", "Indicator Values": "Valores de los indicadores", "Lips Length_input": "Longitud de los labios", "Toggle Log Scale": "Alternar la escala logarítmica", "L_in_legend": "L", "Remove custom interval": "Quitar intervalo personalizado", "shortlen_input": "longitudcorta", "Quotes are delayed by {0} min": "Las cotizaciones se retrasarán {0} min", "Hide Events on Chart": "Ocultar eventos del gráfico", "Cash": "Efectivo", "Profit Background Color": "Color de fondo de ganancias", "Bar's Style": "Estilo de barra", "Exponential_input": "Exponencial", "Down Wave 5": "Onda 5 hacia abajo", "Previous": "Anterior", "Stay In Drawing Mode": "Permanecer en modo dibujo", "Comment": "Comentario", "Connors RSI_study": "Connors RSI", "Bars": "Barras", "Show Labels": "Mostrar etiquetas", "Flat Top/Bottom": "Plano superior/inferior", "Symbol Type": "Tipo de símbolo", "December": "Diciembre", "Lock drawings": "Bloquear dibujos", "Border color": "Color del borde", "Change Seconds From": "Cambiar segundos de", "Left Labels": "Etiquetas derechas", "Insert Indicator...": "Insertar indicador...", "ADR_B_input": "ADR_B", "Paste %s": "Pegar %s", "Change Symbol...": "Cambiar símbolo...", "Timezone": "Zona horaria", "Invite-only script. You have been granted access.": "Script solo mediante invitación. Tiene permiso para acceder.", "Color 6_input": "Color 6", "ATR Length": "Longitud ATR", "{0} financials by TradingView": "{0} financiero por TradingView", "Extend Lines Left": "Ampliar las líneas de la izquierda", "Source back color": "Color de fondo de la fuente", "Transparency": "Transparencia", "June": "Junio", "Cyclic Lines": "Líneas cíclicas", "length28_input": "longitud28", "ABCD Pattern": "Patrón ABCD", "When selecting this checkbox the study template will set \"__interval__\" interval on a chart": "Cuando seleccione esta casilla de verificación la plantilla de estudio establecerá el intervalo \"__interval__\" en un gráfico", "Add": "Añadir", "OC Bars": "Barras de OC - apertura y cierre", "On Balance Volume_study": "Balance de volúmenes", "Apply Indicator on {0} ...": "Aplicar indicador en {0} ...", "NEW": "NUEVA", "Chart Layout Name": "Nombre de diseño del gráfico", "Up bars": "Barras hacia arriba", "Hull MA_input": "MV de Hull", "Lock Scale": "Bloquear escala", "distance: {0}": "distancia: {0}", "Extended": "Ampliado", "Square": "Cuadrado", "Three Drives Pattern": "Patrón Three Drives", "Median_input": "Mediano", "Top Margin": "Margen superior", "Up fractals_input": "Fractales alcistas", "Insert Drawing Tool": "Insertar herramienta de dibujo", "OHLC Values": "Valores OHLC - abrir-alto-bajo-cierre", "Correlation_input": "Correlación", "Session Breaks": "Descansos de sesiones", "Add {0} To Watchlist": "Añadir {0} a la lista de seguimiento", "Anchored Note": "Nota anclada", "lipsLength_input": "lipsLength", "low": "bajo", "Apply Indicator on {0}": "Aplicar indicador en {0}", "UpDown Length_input": "UpDown Length", "Price Label": "Etiqueta de precio", "November": "Noviembre", "Tehran": "Teherán", "Balloon": "Globo", "Track time": "Medir el tiempo", "Background Color": "Color de fondo", "an hour": "una hora", "Right Axis": "Eje derecho", "D_data_mode_delayed_streaming_letter": "D", "VI -_input": "VI -", "slowLength_input": "slowLength", "Click to set a point": "Haga clic para establecer un punto", "Save Indicator Template As...": "Guardar plantilla de indicador como ...", "Arrow Up": "Flecha hacia rriba", "n/a": "no disponible", "Indicator Titles": "Títulos de los indicadores", "Failure text color": "Error de color del texto", "Sa_day_of_week": "Sáb", "Net Volume_study": "Volumen neto", "Edit Position": "Editar posición", "RVI_input": "RVI", "Centered_input": "Centrado", "Recalculate On Every Tick": "Recalcular con cada tic", "Left": "Izquierda", "Simple ma(oscillator)_input": "Media móvil simple (oscilador)", "Compare": "Comparar", "Fisher Transform_study": "Transformación de Fisher", "Show Orders": "Mostrar órdenes", "Zoom In": "Aumentar", "Length EMA_input": "Longitud EMA", "Enter a new chart layout name": "Introduzca un nuevo nombre para el diseño del gráfico", "Signal Length_input": "Longitud de la señal", "FAILURE": "FALLO", "Point Value": "Valor del Punto", "D_interval_short": "D", "MA with EMA Cross_study": "Cruce de media móvil (MA) con media móvil exponencial (EMA)", "Label Up": "Etiqueta hacia arriba", "Close": "Cerrar", "ParabolicSAR_input": "ParabolicSAR", "Log Scale_scale_menu": "Introducir escala", "MACD_input": "MACD", "Do not show this message again": "No volver a mostrar este mensaje", "{0} P&L: {1}": "{0} ganancias y pérdidas: {1}", "No Overlapping Labels": "Sin etiquetas superpuestas", "Arrow Mark Left": "Marca de la flecha hacia la izquierda", "Down Wave 2 or B": "Onda 2 o B hacia abajo", "Line - Close": "Línea - Cierre", "(O + H + L + C)/4": "(Máx.+Мín.+Cierre+Apertura)/4", "Confirm Inputs": "Confirmar entradas de datos", "Open_line_tool_position": "Abrir", "Lagging Span_input": "Tramo de desfase", "Subminuette": "Subminutte", "Thursday": "Jueves", "Arrow Down": "Flecha hacia abajo", "Triple EMA_study": "Media móvil exponencial triple (TEMA)", "Elliott Correction Wave (ABC)": "Onda de corrección de Elliott (ABC)", "Error while trying to create snapshot.": "Se ha producido un error mientras intentaba crear una imagen.", "Label Background": "Fondo de la etiqueta", "Templates": "Plantillas", "Please report the issue or click Reconnect.": "Informe del problema o haga clic en Reconectar.", "1. Slide your finger to select location for first anchor
    2. Tap anywhere to place the first anchor": "1. Deslice el dedo para seleccionar la ubicación del primer anclaje.
    2. Toque en cualquier lugar para colocar la primera ancla.", "Signal Labels": "Etiquetas de señal", "Delete Text Note": "Eliminar nota de texto", "compiling...": "compilando...", "Detrended Price Oscillator_study": "Oscilador del precio sin tendencia", "Color 5_input": "Color 5", "Fixed Range_study": "Fixed Range", "Up Wave 1 or A": "Onda 1 o A hacia arriba", "Scale Price Chart Only": "Solo gráfico de precios de la escala", "Unmerge Up": "Separar hacia arriba", "auto_scale": "auto", "Short period_input": "Período corto", "Background": "Fondo", "Up Color": "Color ascendente", "Apply Elliot Wave Intermediate": "Aplicar onda de Elliott intermedia", "VWMA_input": "VWMA", "Lower Deviation_input": "Desviación inferior", "Save Interval": "Guardar intervalo", "February": "Febrero", "Reverse": "Invertir", "Oops, something went wrong": "¡Vaya! Algo ha fallado", "Add to favorites": "Añadir a favoritos", "Median": "Mediano", "ADX_input": "ADX", "Remove": "Quitar", "len_input": "len", "Arrow Mark Up": "Marca de la flecha hacia arriba", "April": "Abril", "Active Symbol": "Símbolo activo", "Extended Hours": "Horario ampliado", "Crosses_input": "Cruces", "Middle_input": "Medio", "Read our blog for more info!": "¡Lea nuestro blog para obtener más información!", "Sync drawing to all charts": "Sincronizar dibujo en todos los gráficos", "LowerLimit_input": "LowerLimit", "Know Sure Thing_study": "Know Sure Thing", "Copy Chart Layout": "Copiar diseño de gráfico", "Compare...": "Comparar...", "1. Slide your finger to select location for next anchor
    2. Tap anywhere to place the next anchor": "1. Deslice el dedo para seleccionar la ubicación del siguiente anclaje.
    2. Toque en cualquier lugar para colocar la siguiente ancla.", "Text Notes are available only on chart page. Please open a chart and then try again.": "Las notas de texto solo se encuentran disponibles en la página del gráfico. Abra un gráfico y vuelva a intentarlo.", "Aroon Up_input": "Aroon arriba (Aroon Up)", "Apply Elliot Wave Major": "Aplicar onda de Elliott mayor", "Scales Lines": "Líneas de las escalas", "Type the interval number for munute charts (i.e. 5 if it is going to be a five minute chart). Or number plus letter for H (Hourly), D (Daily), W (Weekly), M (Monthly) intervals (i.e. D or 2H)": "Introduzca el número del intervalo para gráficos de minutos (por ejemplo, 5 si va a ser un gráfico de cinco minutos). También puede introducir un número más una letra para intervalos de una hora (H), diarios (D), semanales (W) o mensuales (M), (por ejemplo 1D o 2H)", "Ellipse": "Elipse", "Up Wave C": "Onda C hacia arriba", "Show Distance": "Mostrar distancia", "Risk/Reward Ratio: {0}": "Relación riesgo/beneficio: {0}", "Volume Oscillator_study": "Oscilador de volumen", "Williams Fractal_study": "Fractal de Williams", "Merge Up": "Combinar hacia arriba", "Right Margin": "Margen derecho", "Moscow": "Moscú", "Warsaw": "Varsovia"} \ No newline at end of file diff --git a/charting_library/static/localization/translations/et_EE.json b/charting_library/static/localization/translations/et_EE.json index 9862a8ed..e264d2f4 100644 --- a/charting_library/static/localization/translations/et_EE.json +++ b/charting_library/static/localization/translations/et_EE.json @@ -1 +1 @@ -{"Simple ma(oscillator)_input": "Simple ma(oscillator)", "ticks_slippage ... ticks": "ticks", "%d day": "%d days", "Months_interval": "Months", "Detrended Price Oscillator_input": "Detrended Price Oscillator", "maximum_input": "maximum", "Percent_input": "Percent", "D_data_mode_delayed_letter": "D", "smalen1_input": "smalen1", "month": "months", "roclen1_input": "roclen1", "Price_input": "Price", "Close_input": "Close", "Use Lower Deviation_input": "Use Lower Deviation", "Falling_input": "Falling", "McGinley Dynamic_study": "McGinley Dynamic", "Relative Volatility Index_study": "Relative Volatility Index", "in_dates": "in", "PVT_input": "PVT", "Conversion Line_input": "Conversion Line", "Hull Moving Average_study": "Hull Moving Average", "Su_day_of_week": "Su", "Up fractals_input": "Up fractals", "OSC_input": "OSC", "Divisor_input": "Divisor", "Volume_study": "Volume", "Lips_input": "Lips", "Window Size_input": "Window Size", "Zero_input": "Zero", "Base Line_input": "Base Line", "Double EMA_study": "Double EMA", "Signal smoothing_input": "Signal smoothing", "E_data_mode_end_of_day_letter": "E", "SMALen2_input": "SMALen2", "Bollinger Bands_study": "Bollinger Bands", "Long Length_input": "Long Length", "True Strength Indicator_study": "True Strength Indicator", "%R_input": "%R", "Upper_input": "Upper", "Stochastic RSI_study": "Stochastic RSI", "bars_margin": "bars", "Sigma_input": "Sigma", "Average True Range_study": "Average True Range", "Max value_input": "Max value", "MA Length_input": "MA Length", "Length1_input": "Length1", "SMALen1_input": "SMALen1", "UpperLimit_input": "UpperLimit", "H_in_legend": "H", "Short RoC Length_input": "Short RoC Length", "ROCLen3_input": "ROCLen3", "DI Length_input": "DI Length", "Parabolic SAR_study": "Parabolic SAR", "Sa_day_of_week": "Sa", "SMI_input": "SMI", "Lead 1_input": "Lead 1", "Basis_input": "Basis", "Moving Average_study": "Moving Average", "fastLength_input": "fastLength", "lengthStoch_input": "lengthStoch", "Color 7_input": "Color 7", "Chop Zone_study": "Chop Zone", "Signal_input": "Signal", "Jaw_input": "Jaw", "Jaw Length_input": "Jaw Length", "%d minute": "%d minutes", "like": "likes", "Coppock Curve_study": "Coppock Curve", "yay Color 0_input": "yay Color 0", "Oscillator_input": "Oscillator", "Chande Kroll Stop_study": "Chande Kroll Stop", "Hours_interval": "Hours", "StdDev_input": "StdDev", "Smoothed Moving Average_study": "Smoothed Moving Average", "Lower Band_input": "Lower Band", "VI +_input": "VI +", "Elder's Force Index_study": "Elder's Force Index", "Money Flow_study": "Money Flow", "DEMA_input": "DEMA", "ROCLen2_input": "ROCLen2", "Simple ma(signal line)_input": "Simple ma(signal line)", "longlen_input": "longlen", "Moving Average Exponential_study": "Moving Average Exponential", "Lower_input": "Lower", "Linear Regression Curve_study": "Linear Regression Curve", "Symbol_input": "Symbol", "s_dates": "s", "%d month": "%d months", "Upper Deviation_input": "Upper Deviation", "Upper Band_input": "Upper Band", "Chaikin Oscillator_study": "Chaikin Oscillator", "Chande MO_input": "Chande MO", "Balance of Power_study": "Balance of Power", "EOM_input": "EOM", "start_input": "start", "Centered_input": "Centered", "Bollinger Bands Width_input": "Bollinger Bands Width", "Signal Length_input": "Signal Length", "D_interval_short": "D", "Average Directional Index_study": "Average Directional Index", "Short length_input": "Short length", "smoothD_input": "smoothD", "Color 1_input": "Color 1", "Moving Average Weighted_study": "Moving Average Weighted", "Precise Labels_scale_menu": "Precise Labels", "ADX smoothing_input": "ADX smoothing", "Short period_input": "Short period", "smalen4_input": "smalen4", "RSI Source_input": "RSI Source", "%D_input": "%D", "signalLength_input": "signalLength", "Offset_input": "Offset", "HV_input": "HV", "Teeth_input": "Teeth", "Volume Oscillator_study": "Volume Oscillator", "h_interval_short": "h", "Ichimoku Cloud_study": "Ichimoku Cloud", "S_data_mode_snapshot_letter": "S", "jawLength_input": "jawLength", "Hull MA_input": "Hull MA", "ROC_input": "ROC", "SMALen4_input": "SMALen4", "Minutes_interval": "Minutes", "exponential_input": "exponential", "Mass Index_study": "Mass Index", "OnBalanceVolume_input": "OnBalanceVolume", "Smoothing_input": "Smoothing", "roclen2_input": "roclen2", "Color 3_input": "Color 3", "Chande Momentum Oscillator_study": "Chande Momentum Oscillator", "Fr_day_of_week": "Fr", "Bollinger Bands %B_input": "Bollinger Bands %B", "CCI_input": "CCI", "increment_input": "increment", "Keltner Channels_study": "Keltner Channels", "Lips Length_input": "Lips Length", "Use Upper Deviation_input": "Use Upper Deviation", "L_in_legend": "L", "We_day_of_week": "We", "Bands style_input": "Bands style", "shortlen_input": "shortlen", "Momentum_study": "Momentum", "ADX_input": "ADX", "MF_input": "MF", "day": "days", "short_input": "short", "NV_input": "NV", "Choppiness Index_study": "Choppiness Index", "Long length_input": "Long length", "Th_day_of_week": "Th", "Vortex Indicator_study": "Vortex Indicator", "MA_input": "MA", "Long_input": "Long", "W_interval_short": "W", "Multiplier_input": "Multiplier", "Directional Movement_study": "Directional Movement", "percent_input": "percent", "Equality Line_input": "Equality Line", "lengthRSI_input": "lengthRSI", "SMI Ergodic Oscillator_input": "SMI Ergodic Oscillator", "Accumulation/Distribution_input": "Accumulation/Distribution", "D_input": "D", "C_in_legend": "C", "Weeks_interval": "Weeks", "smoothK_input": "smoothK", "Percentage_scale_menu": "Percentage", "Down fractals_input": "Down fractals", "MOM_input": "MOM", "P_input": "P", "Source_compare": "Source", "smalen2_input": "smalen2", "Ease Of Movement_study": "Ease Of Movement", "Color 6_input": "Color 6", "C_data_mode_connecting_letter": "C", "Klinger Oscillator_study": "Klinger Oscillator", "Exponential_input": "Exponential", "TRIX_input": "TRIX", "SMI Ergodic Indicator/Oscillator_study": "SMI Ergodic Indicator/Oscillator", "Chaikin Oscillator_input": "Chaikin Oscillator", "Bollinger Bands %B_study": "Bollinger Bands %B", "Correlation_input": "Correlation", "yay Color 1_input": "yay Color 1", "length28_input": "length28", "Periods_input": "Periods", "CHOP_input": "CHOP", "Middle_input": "Middle", "TRIX_study": "TRIX", "WMA Length_input": "WMA Length", "Growing_input": "Growing", "Color 0_input": "Color 0", "On Balance Volume_study": "On Balance Volume", "RVGI_input": "RVGI", "Histogram_input": "Histogram", "Count_input": "Count", "Stochastic Length_input": "Stochastic Length", "Closed_line_tool_position": "Closed", "sym_input": "sym", "Relative Strength Index_study": "Relative Strength Index", "d_dates": "d", "in %s_time_range": "in %s", "Start_input": "Start", "%s ago_time_range": "%s ago", "mult_input": "mult", "-DI_input": "-DI", "Length2_input": "Length2", "Donchian Channels_study": "Donchian Channels", "Correlation Coefficient_study": "Correlation Coefficient", "Least Squares Moving Average_study": "Least Squares Moving Average", "depth_input": "depth", "Mo_day_of_week": "Mo", "lipsLength_input": "lipsLength", "Short Length_input": "Short Length", "teethLength_input": "teethLength", "roclen4_input": "roclen4", "length7_input": "length7", "Source_input": "Source", "%K_input": "%K", "Log Scale_scale_menu": "Log Scale", "Zig Zag_study": "Zig Zag", "D_data_mode_delayed_streaming_letter": "D", "VI -_input": "VI -", "slowLength_input": "slowLength", "Long period_input": "Long period", "length_input": "length", "ADX Smoothing_input": "ADX Smoothing", "Price Oscillator_study": "Price Oscillator", "minute": "minutes", "Detrended Price Oscillator_study": "Detrended Price Oscillator", "Median_input": "Median", "MA Cross_study": "MA Cross", "RSI Length_input": "RSI Length", "Signal line period_input": "Signal line period", "RVI_input": "RVI", "Base Line Periods_input": "Base Line Periods", "Awesome Oscillator_study": "Awesome Oscillator", "Slow length_input": "Slow length", "Conversion Line Periods_input": "Conversion Line Periods", "Price Volume Trend_study": "Price Volume Trend", "smalen3_input": "smalen3", "Fisher Transform_study": "Fisher Transform", "Stochastic_study": "Stochastic", "ATR_input": "ATR", "hour": "hours", "TEMA_input": "TEMA", "siglen_input": "siglen", "F_data_mode_forbidden_letter": "F", "second": "seconds", "MACD_input": "MACD", "q_input": "q", "Zero Line_input": "Zero Line", "Teeth Length_input": "Teeth Length", "Long RoC Length_input": "Long RoC Length", "Length3_input": "Length3", "+DI_input": "+DI", "Length_input": "Length", "Fast length_input": "Fast length", "ParabolicSAR_input": "ParabolicSAR", "Sig_input": "Sig", "Short_input": "Short", "Ultimate Oscillator_study": "Ultimate Oscillator", "MACD_study": "MACD", "Lagging Span 2 Periods_input": "Lagging Span 2 Periods", "Indicator_input": "Indicator", "Plot_input": "Plot", "Color 8_input": "Color 8", "Open_line_tool_position": "Open", "Lagging Span_input": "Lagging Span", "Q_input": "Q", "roclen3_input": "roclen3", "Envelope_study": "Envelope", "Overbought_input": "Overbought", "DPO_input": "DPO", "UO_input": "UO", "Triple EMA_study": "Triple EMA", "Level_input": "Level", "Relative Vigor Index_study": "Relative Vigor Index", "Arnaud Legoux Moving Average_study": "Arnaud Legoux Moving Average", "show MA_input": "show MA", "Commodity Channel Index_study": "Commodity Channel Index", "O_in_legend": "O", "Elder's Force Index_input": "Elder's Force Index", "Color 4_input": "Color 4", "Period_input": "Period", "Trigger_input": "Trigger", "SigLen_input": "SigLen", "Color 2_input": "Color 2", "Color 5_input": "Color 5", "useTrueRange_input": "useTrueRange", "SMALen3_input": "SMALen3", "auto_scale": "auto", "%d year": "%d years", "Aroon_study": "Aroon", "Tu_day_of_week": "Tu", "VWMA_input": "VWMA", "h_dates": "h", "deviation_input": "deviation", "week": "weeks", "long_input": "long", "VWMA_study": "VWMA", "ADR_B_input": "ADR_B", "Lower Deviation_input": "Lower Deviation", "%d hour": "%d hours", "Cross_chart_type": "Cross", "Displacement_input": "Displacement", "Shapes_input": "Shapes", "Fisher_input": "Fisher", "len_input": "len", "ROCLen1_input": "ROCLen1", "Chaikin Money Flow_study": "Chaikin Money Flow", "M_interval_short": "M", "x_input": "x", "p_input": "p", "isCentered_input": "isCentered", "Crosses_input": "Crosses", "KST_input": "KST", "Oversold_input": "Oversold", "Williams %R_study": "Williams %R", "LowerLimit_input": "LowerLimit", "RSI_input": "RSI", "Know Sure Thing_study": "Know Sure Thing", "Historical Volatility_study": "Historical Volatility", "Increment_input": "Increment", "Days_interval": "Days", "Net Volume_study": "Net Volume", "m_dates": "m", "Aroon Up_input": "Aroon Up", "orders_up to ... orders": "orders", "length14_input": "length14", "Lead 2_input": "Lead 2", "X_input": "X", "Accumulation/Distribution_study": "Accumulation/Distribution", "Bollinger Bands Width_study": "Bollinger Bands Width", "Williams Alligator_study": "Williams Alligator", "ROCLen4_input": "ROCLen4", "Aroon Down_input": "Aroon Down", "Williams Fractal_study": "Williams Fractal", "R_data_mode_realtime_letter": "R", "Advance/Decline_study": "Advance/Decline", "K_input": "K", "Rate Of Change_study": "Rate Of Change"} \ No newline at end of file +{"ticks_slippage ... ticks": "ticks", "Months_interval": "Months", "Percent_input": "Percent", "in_dates": "in", "roclen1_input": "roclen1", "OSC_input": "OSC", "Volume_study": "Volume", "Lips_input": "Lips", "Base Line_input": "Base Line", "SMALen2_input": "SMALen2", "Bollinger Bands_study": "Bollinger Bands", "Upper_input": "Upper", "Sig_input": "Sig", "Count_input": "Count", "OnBalanceVolume_input": "OnBalanceVolume", "Cross_chart_type": "Cross", "H_in_legend": "H", "R_data_mode_replay_letter": "R", "Accumulation/Distribution_study": "Accumulation/Distribution", "Rate Of Change_study": "Rate Of Change", "Color 7_input": "Color 7", "Chop Zone_study": "Chop Zone", "Oscillator_input": "Oscillator", "yay Color 0_input": "yay Color 0", "CRSI_study": "CRSI", "Chande Kroll Stop_study": "Chande Kroll Stop", "Hours_interval": "Hours", "Money Flow_study": "Money Flow", "DEMA_input": "DEMA", "Linear Regression Curve_study": "Linear Regression Curve", "Symbol_input": "Symbol", "increment_input": "increment", "smoothD_input": "smoothD", "RSI Source_input": "RSI Source", "Ichimoku Cloud_study": "Ichimoku Cloud", "Mass Index_study": "Mass Index", "Smoothing_input": "Smoothing", "Color 3_input": "Color 3", "Jaw Length_input": "Jaw Length", "Keltner Channels_study": "Keltner Channels", "Bands style_input": "Bands style", "Momentum_study": "Momentum", "MF_input": "MF", "Fast length_input": "Fast length", "W_interval_short": "W", "Equality Line_input": "Equality Line", "Short_input": "Short", "Down fractals_input": "Down fractals", "smalen2_input": "smalen2", "isCentered_input": "isCentered", "Klinger Oscillator_study": "Klinger Oscillator", "SMI Ergodic Indicator/Oscillator_study": "SMI Ergodic Indicator/Oscillator", "No Overlapping Labels_scale_menu": "No Overlapping Labels", "Chande MO_input": "Chande MO", "jawLength_input": "jawLength", "TRIX_study": "TRIX", "RVGI_input": "RVGI", "signalLength_input": "signalLength", "d_dates": "d", "Source_compare": "Source", "Correlation Coefficient_study": "Correlation Coefficient", "lipsLength_input": "lipsLength", "Short Length_input": "Short Length", "teethLength_input": "teethLength", "Visible Range_study": "Visible Range", "Connors RSI_study": "Connors RSI", "MA Cross_study": "MA Cross", "Signal line period_input": "Signal line period", "Price Volume Trend_study": "Price Volume Trend", "F_data_mode_forbidden_letter": "F", "Long RoC Length_input": "Long RoC Length", "Length3_input": "Length3", "+DI_input": "+DI", "MACD_study": "MACD", "%s ago_time_range": "%s ago", "Level_input": "Level", "Commodity Channel Index_study": "Commodity Channel Index", "Elder's Force Index_input": "Elder's Force Index", "Aroon_study": "Aroon", "h_dates": "h", "SMALen1_input": "SMALen1", "P_input": "P", "SMALen3_input": "SMALen3", "Average Directional Index_study": "Average Directional Index", "Fr_day_of_week": "Fr", "D_input": "D", "p_input": "p", "orders_up to ... orders": "orders", "Dot_hotkey": "Dot", "Lead 2_input": "Lead 2", "Vortex Indicator_study": "Vortex Indicator", "Plots Background_study": "Plots Background", "Price Channel_study": "Price Channel", "R_data_mode_realtime_letter": "R", "Conversion Line_input": "Conversion Line", "Su_day_of_week": "Su", "Up fractals_input": "Up fractals", "Double EMA_study": "Double EMA", "Price Oscillator_study": "Price Oscillator", "Th_day_of_week": "Th", "Average True Range_study": "Average True Range", "Max value_input": "Max value", "MA Length_input": "MA Length", "in %s_time_range": "in %s", "UpperLimit_input": "UpperLimit", "sym_input": "sym", "DI Length_input": "DI Length", "SMI_input": "SMI", "Basis_input": "Basis", "Moving Average_study": "Moving Average", "lengthStoch_input": "lengthStoch", "Smoothed Moving Average_study": "Smoothed Moving Average", "Lower Band_input": "Lower Band", "VI +_input": "VI +", "Lead 1_input": "Lead 1", "ROCLen2_input": "ROCLen2", "Simple ma(signal line)_input": "Simple ma(signal line)", "Color 6_input": "Color 6", "Value_input": "Value", "Chaikin Oscillator_study": "Chaikin Oscillator", "ASI_study": "ASI", "Awesome Oscillator_study": "Awesome Oscillator", "Bollinger Bands Width_input": "Bollinger Bands Width", "Signal Length_input": "Signal Length", "D_interval_short": "D", "Color 1_input": "Color 1", "Moving Average Weighted_study": "Moving Average Weighted", "Short period_input": "Short period", "Fisher_input": "Fisher", "Volume Oscillator_study": "Volume Oscillator", "S_data_mode_snapshot_letter": "S", "smalen4_input": "smalen4", "CCI_input": "CCI", "Upper Deviation_input": "Upper Deviation", "Accumulative Swing Index_study": "Accumulative Swing Index", "Move_input": "Move", "NV_input": "NV", "Choppiness Index_study": "Choppiness Index", "Length MA_input": "Length MA", "percent_input": "percent", "Length_input": "Length", "Accumulation/Distribution_input": "Accumulation/Distribution", "C_in_legend": "C", "Weeks_interval": "Weeks", "smoothK_input": "smoothK", "Percentage_scale_menu": "Percentage", "MOM_input": "MOM", "h_interval_short": "h", "TRIX_input": "TRIX", "Periods_input": "Periods", "Histogram_input": "Histogram", "StdDev_input": "StdDev", "EMA Cross_study": "EMA Cross", "Relative Strength Index_study": "Relative Strength Index", "-DI_input": "-DI", "short_input": "short", "RSI_input": "RSI", "Zig Zag_study": "Zig Zag", "Detrended Price Oscillator_input": "Detrended Price Oscillator", "length_input": "length", "roclen4_input": "roclen4", "Add Symbol_compare_or_add_symbol_dialog": "Add Symbol", "Slow length_input": "Slow length", "Conversion Line Periods_input": "Conversion Line Periods", "TEMA_input": "TEMA", "q_input": "q", "Advance/Decline_study": "Advance/Decline", "Ultimate Oscillator_study": "Ultimate Oscillator", "Growing_input": "Growing", "Plot_input": "Plot", "Color 8_input": "Color 8", "Bollinger Bands Width_study": "Bollinger Bands Width", "roclen3_input": "roclen3", "Overbought_input": "Overbought", "DPO_input": "DPO", "Relative Vigor Index_study": "Relative Vigor Index", "Tu_day_of_week": "Tu", "Period_input": "Period", "Trigger_input": "Trigger", "SigLen_input": "SigLen", "Color 2_input": "Color 2", "MA/EMA Cross_study": "MA/EMA Cross", "Williams Alligator_study": "Williams Alligator", "ROCLen1_input": "ROCLen1", "M_interval_short": "M", "Chaikin Oscillator_input": "Chaikin Oscillator", "Zero Line_input": "Zero Line", "Increment_input": "Increment", "Days_interval": "Days", "Net Volume_study": "Net Volume", "m_dates": "m", "length14_input": "length14", "Color 0_input": "Color 0", "maximum_input": "maximum", "D_data_mode_delayed_letter": "D", "Sigma_input": "Sigma", "fastLength_input": "fastLength", "Historical Volatility_study": "Historical Volatility", "Use Lower Deviation_input": "Use Lower Deviation", "Falling_input": "Falling", "Divisor_input": "Divisor", "length7_input": "length7", "Window Size_input": "Window Size", "Long Length_input": "Long Length", "%R_input": "%R", "bars_margin": "bars", "Simple ma(oscillator)_input": "Simple ma(oscillator)", "Length1_input": "Length1", "x_input": "x", "Parabolic SAR_study": "Parabolic SAR", "UO_input": "UO", "Short RoC Length_input": "Short RoC Length", "Jaw_input": "Jaw", "Coppock Curve_study": "Coppock Curve", "longlen_input": "longlen", "Moving Average Exponential_study": "Moving Average Exponential", "s_dates": "s", "Balance of Power_study": "Balance of Power", "EOM_input": "EOM", "%D_input": "%D", "Offset_input": "Offset", "HV_input": "HV", "Start_input": "Start", "ROC_input": "ROC", "Color 4_input": "Color 4", "ADX Smoothing_input": "ADX Smoothing", "We_day_of_week": "We", "MA_input": "MA", "Length2_input": "Length2", "Multiplier_input": "Multiplier", "Session Volume_study": "Session Volume", "SMI Ergodic Oscillator_input": "SMI Ergodic Oscillator", "C_data_mode_connecting_letter": "C", "SMALen4_input": "SMALen4", "yay Color 1_input": "yay Color 1", "CHOP_input": "CHOP", "Middle_input": "Middle", "WMA Length_input": "WMA Length", "Stochastic_study": "Stochastic", "Closed_line_tool_position": "Closed", "On Balance Volume_study": "On Balance Volume", "Source_input": "Source", "%K_input": "%K", "Log Scale_scale_menu": "Log Scale", "len_input": "len", "RSI Length_input": "RSI Length", "Long length_input": "Long length", "Base Line Periods_input": "Base Line Periods", "siglen_input": "siglen", "Slash_hotkey": "Slash", "lengthRSI_input": "lengthRSI", "Indicator_input": "Indicator", "Q_input": "Q", "Envelope_study": "Envelope", "show MA_input": "show MA", "O_in_legend": "O", "useTrueRange_input": "useTrueRange", "Minutes_interval": "Minutes", "deviation_input": "deviation", "long_input": "long", "VWMA_study": "VWMA", "Displacement_input": "Displacement", "Chaikin Money Flow_study": "Chaikin Money Flow", "Ease Of Movement_study": "Ease Of Movement", "Oversold_input": "Oversold", "Williams %R_study": "Williams %R", "depth_input": "depth", "VWAP_study": "VWAP", "Long period_input": "Long period", "Mo_day_of_week": "Mo", "ROC Length_input": "ROC Length", "X_input": "X", "ROCLen4_input": "ROCLen4", "Aroon Down_input": "Aroon Down", "Limit_input": "Limit", "smalen1_input": "smalen1", "Color based on previous close_input": "Color based on previous close", "Price_input": "Price", "Relative Volatility Index_study": "Relative Volatility Index", "PVT_input": "PVT", "Hull Moving Average_study": "Hull Moving Average", "Zero_input": "Zero", "Stochastic Length_input": "Stochastic Length", "mult_input": "mult", "Signal smoothing_input": "Signal smoothing", "E_data_mode_end_of_day_letter": "E", "Stochastic RSI_study": "Stochastic RSI", "K_input": "K", "ROCLen3_input": "ROCLen3", "Signal_input": "Signal", "Moving Average Channel_study": "Moving Average Channel", "Lower_input": "Lower", "Elder's Force Index_study": "Elder's Force Index", "Bollinger Bands %B_study": "Bollinger Bands %B", "Donchian Channels_study": "Donchian Channels", "Upper Band_input": "Upper Band", "start_input": "start", "Short length_input": "Short length", "Triple EMA_study": "Triple EMA", "Lagging Span 2 Periods_input": "Lagging Span 2 Periods", "Teeth_input": "Teeth", "exponential_input": "exponential", "Directional Movement_study": "Directional Movement", "roclen2_input": "roclen2", "Chande Momentum Oscillator_study": "Chande Momentum Oscillator", "Bollinger Bands %B_input": "Bollinger Bands %B", "Lips Length_input": "Lips Length", "Use Upper Deviation_input": "Use Upper Deviation", "L_in_legend": "L", "shortlen_input": "shortlen", "Exponential_input": "Exponential", "Long_input": "Long", "ADR_B_input": "ADR_B", "length28_input": "length28", "Arnaud Legoux Moving Average_study": "Arnaud Legoux Moving Average", "Least Squares Moving Average_study": "Least Squares Moving Average", "Hull MA_input": "Hull MA", "Median_input": "Median", "Correlation_input": "Correlation", "UpDown Length_input": "UpDown Length", "D_data_mode_delayed_streaming_letter": "D", "VI -_input": "VI -", "slowLength_input": "slowLength", "Sa_day_of_week": "Sa", "RVI_input": "RVI", "Centered_input": "Centered", "True Strength Indicator_study": "True Strength Indicator", "smalen3_input": "smalen3", "Fisher Transform_study": "Fisher Transform", "Length EMA_input": "Length EMA", "Teeth Length_input": "Teeth Length", "MA with EMA Cross_study": "MA with EMA Cross", "ParabolicSAR_input": "ParabolicSAR", "MACD_input": "MACD", "Open_line_tool_position": "Open", "Lagging Span_input": "Lagging Span", "ADX smoothing_input": "ADX smoothing", "Detrended Price Oscillator_study": "Detrended Price Oscillator", "Color 5_input": "Color 5", "McGinley Dynamic_study": "McGinley Dynamic", "auto_scale": "auto", "VWMA_input": "VWMA", "Lower Deviation_input": "Lower Deviation", "ATR_input": "ATR", "Shapes_input": "Shapes", "ADX_input": "ADX", "Crosses_input": "Crosses", "KST_input": "KST", "LowerLimit_input": "LowerLimit", "Know Sure Thing_study": "Know Sure Thing", "Aroon Up_input": "Aroon Up", "Fixed Range_study": "Fixed Range", "Williams Fractal_study": "Williams Fractal"} \ No newline at end of file diff --git a/charting_library/static/localization/translations/fa.json b/charting_library/static/localization/translations/fa.json index 3c28dda5..16350365 100644 --- a/charting_library/static/localization/translations/fa.json +++ b/charting_library/static/localization/translations/fa.json @@ -1 +1 @@ -{"ticks_slippage ... ticks": "ticks", "Months_interval": "Months", "Percent_input": "Percent", "month": "months", "London": "لندن", "roclen1_input": "roclen1", "Minor": "کوچک", "Top Margin": "حاشیه از بالا", "Magnet Mode": "آهنربا", "OSC_input": "OSC", "Volume_study": "حجم", "Lips_input": "Lips", "Histogram": "میله‌ای", "Base Line_input": "Base Line", "Step": "پله‌ای", "Fib Time Zone": "منطقه زمانی فیبوناچی", "SMALen2_input": "SMALen2", "Bollinger Bands_study": "نوارهای بولینگر", "Upper_input": "Upper", "Sig_input": "Sig", "Move Up": "انتقال به بالا", "Scales Properties...": "تنظیمات محورها...", "Count_input": "Count", "Anchored Text": "متن ثابت", "SMALen1_input": "SMALen1", "Cross_chart_type": "به‌علاوه", "Target Color:": "رنگ محدوده سود", "Normal": "خط", "Accumulation/Distribution_study": "Accumulation/Distribution", "Rate Of Change_study": "Rate Of Change", "in_dates": "in", "Color 7_input": "Color 7", "Chop Zone_study": "Chop Zone", "Scales Properties": "خصوصیات مقیاس ها", "Remove All Indicators": "حذف همه اندیکاتورها", "Oscillator_input": "Oscillator", "yay Color 0_input": "yay Color 0", "Labels": "برچسب‌ها", "Chande Kroll Stop_study": "Chande Kroll Stop", "Hours_interval": "Hours", "Scale Right": "مقیاس محور راست", "Bollinger Bands %B_input": "Bollinger Bands %B", "siglen_input": "siglen", "DEMA_input": "DEMA", "Remove All Drawing Tools": "حذف همه اشکال", "Linear Regression Curve_study": "Linear Regression Curve", "Symbol_input": "Symbol", "increment_input": "increment", "Use Lower Deviation_input": "Use Lower Deviation", "Label": "برچسب", "second": "seconds", "smoothD_input": "smoothD", "Percentage": "مقیاس درصدی", "Entry price:": "قیمت ورود", "RSI Source_input": "RSI Source", "Ichimoku Cloud_study": "Ichimoku Cloud", "Grid": "شبکه", "Mass Index_study": "شاخص انبوه", "Rename...": "تغییرنام...", "Smoothing_input": "Smoothing", "Color 3_input": "Color 3", "Jaw Length_input": "Jaw Length", "Keltner Channels_study": "Keltner Channels", "Long Position": "وضعیت خرید", "Bands style_input": "Bands style", "Undo {0}": "حالت قبلی", "With Markers": "نقاط قیمت", "Momentum_study": "Momentum", "MF_input": "MF", "Long length_input": "Long length", "Disjoint Angle": "قطع اتصال زاویه", "W_interval_short": "W", "Log Scale": "مقیاس لگاریتمی", "Minuette": "دقیقه", "Equality Line_input": "Equality Line", "Short_input": "Short", "Fib Wedge": "گوه فیبوناچی", "Line": "خط", "Down fractals_input": "Down fractals", "Fib Retracement": "اصلاحی فیبوناچی", "smalen2_input": "smalen2", "isCentered_input": "isCentered", "Border": "حاشیه", "Klinger Oscillator_study": "Klinger Oscillator", "Style": "نحوه نمایش", "SMI Ergodic Indicator/Oscillator_study": "SMI Ergodic Indicator/Oscillator", "Manage Drawings": "مدیریت اشکال", "No drawings yet": "شکلی رسم نشده است", "Chande MO_input": "Chande MO", "jawLength_input": "jawLength", "TRIX_study": "TRIX", "MACD_study": "MACD", "RVGI_input": "RVGI", "signalLength_input": "signalLength", "Middle_input": "Middle", "d_dates": "روز", "in %s_time_range": "in %s", "Source_compare": "منبع", "Correlation Coefficient_study": "Correlation Coefficient", "Text color": "رنگ متن", "Levels": "سطوح", "Short Length_input": "Short Length", "teethLength_input": "teethLength", "Failure text color": "رنگ متن حالت شکست", "Hong Kong": "هنگ کنگ", "FAILURE": "شکست", "Subminuette": "کمتر از دقیقه", "Lock All Drawing Tools": "قفل کردن ابزار های رسم", "Target border color": "رنگ لبه نقطه هدف", "Right End": "انتها باز", "Head & Shoulders": "سر و شانه ها", "Simple ma(oscillator)_input": "Simple ma(oscillator)", "Properties...": "تنظیمات...", "MA Cross_study": "تقاطع میانگین متحرک", "Crosshair": "نشانه‌گر", "Signal line period_input": "Signal line period", "Q_input": "Q", "Show/Hide": "نمایش/عدم نمایش", "Price Volume Trend_study": "Price Volume Trend", "Auto Scale": "تنظیم خودکار محور", "hour": "ساعت", "Scales": "محورها", "Text": "متن", "F_data_mode_forbidden_letter": "F", "Long RoC Length_input": "Long RoC Length", "Length3_input": "Length3", "+DI_input": "+DI", "Madrid": "مادرید", "Show Bars Range": "نمایش فاصله روزها", "%s ago_time_range": "%s ago", "Zoom In": "بزرگ نمایی", "Failure back color": "رنگ پس‌زمینه حالت شکست", "Extend Left": "امتداد از چپ", "Date Range": "بازه زمانی", "Show Price": "نمایش قیمت", "Level_input": "Level", "Commodity Channel Index_study": "Commodity Channel Index", "Elder's Force Index_input": "Elder's Force Index", "Format": "ویژگی‌ها", "Color bars based on previous close": "نمایش رنگ کندل‌ها بر اساس قیمت پایانی روز قبل", "Text:": "متن:", "Aroon_study": "Aroon", "h_dates": "ساعت", "ADR_B_input": "ADR_B", "SMALen3_input": "SMALen3", "Average Directional Index_study": "Average Directional Index", "Fr_day_of_week": "Fr", "H_in_legend": "بیشترین", "Bars Pattern": "الگوی داده ها", "D_input": "D", "Font Size": "اندازه قلم", "Change Interval": "تغییر بازه", "p_input": "p", "Fib Circles": "دایره های فیبوناچی", "Dot": "نقطه", "Target back color": "رنگ پس‌زمینه نقطه هدف", "orders_up to ... orders": "orders", "Lead 2_input": "Lead 2", "Save image": "ذخیره عکس", "Move Down": "انتقال به پایین", "Vortex Indicator_study": "Vortex Indicator", "Apply": "اعمال", "%d day": "%d days", "Hide": "عدم نمایش", "Target text color": "رنگ متن نقطه هدف", "Scale Left": "مقیاس محور چپ", "Jan": "ژانویه", "Source back color": "رنگ پس‌زمینه نقطه شروع", "Sao Paulo": "سائوپلو", "R_data_mode_realtime_letter": "R", "Extend Lines": "امتداد خطوط", "Inputs": "ورودی‌ها", "Conversion Line_input": "Conversion Line", "Su_day_of_week": "Su", "Up fractals_input": "Up fractals", "Regression Trend": "روند رگراسیون", "Double EMA_study": "Double EMA", "minute": "دقیقه", "Price Oscillator_study": "Price Oscillator", "Stop Color:": "رنگ محدوده زیان", "Stay in Drawing Mode": "ماندن در حالت ترسیم", "Bottom Margin": "حاشیه از پایین", "Average True Range_study": "Average True Range", "Max value_input": "Max value", "MA Length_input": "MA Length", "Time Interval": "دوره زمانی", "UpperLimit_input": "UpperLimit", "sym_input": "sym", "DI Length_input": "DI Length", "SMI_input": "SMI", "Arrow": "پیکان", "Basis_input": "Basis", "Arrow Mark Down": "پیکان رو به پایین", "lengthStoch_input": "lengthStoch", "Taipei": "چین تایپه", "Remove from favorites": "حذف از موارد مورد علاقه", "Copy": "کپی", "Scale Series Only": "تغییر مقیاس تنها برای قیمت", "Simple": "ساده", "Arnaud Legoux Moving Average_study": "Arnaud Legoux Moving Average", "Technical Analysis": "تحلیل تکنیکی", "Lower Band_input": "Lower Band", "VI +_input": "VI +", "Lead 1_input": "Lead 1", "Always Show Stats": "نمایش همیشگی آمار", "ROCLen2_input": "ROCLen2", "Simple ma(signal line)_input": "Simple ma(signal line)", "Show Labels": "نمایش برچسب‌ها", "Color 6_input": "Color 6", "Chaikin Oscillator_study": "Chaikin Oscillator", "Balloon": "بالون", "Color Theme": "شمای رنگی", "Centered_input": "Centered", "Bollinger Bands Width_input": "Bollinger Bands Width", "Signal Length_input": "Signal Length", "D_interval_short": "D", "Lock/Unlock": "قفل/باز", "Color 1_input": "Color 1", "Moving Average Weighted_study": "Moving Average Weighted", "Save": "ذخیره", "Type": "نوع", "Short period_input": "Short period", "Fisher_input": "Fisher", "Left End": "ابتدا باز", "Volume Oscillator_study": "Volume Oscillator", "S_data_mode_snapshot_letter": "S", "post-market": "پس از بسته شدن بازار", "smalen4_input": "smalen4", "CCI_input": "CCI", "Unmerge Up": "جداسازی و انتقال به بالا", "Upper Deviation_input": "Upper Deviation", "Flipped": "چرخش عمودی", "NV_input": "NV", "Choppiness Index_study": "Choppiness Index", "Merge Down": "ترکیب با ناحیه پایین", "eod delayed": "اطلاعات پایان روز تاخیری", "Delete": "حذف", "percent_input": "percent", "Apr": "آوریل", "Length_input": "Length", "Median_input": "Median", "Accumulation/Distribution_input": "Accumulation/Distribution", "C_in_legend": "پایانی", "Weeks_interval": "Weeks", "smoothK_input": "smoothK", "Percentage_scale_menu": "مقایس درصدی", "MOM_input": "MOM", "h_interval_short": "h", "Modified Schiff": "شیف تغییر داده‌شد", "top": "بالا", "Send Backward": "عقب", "TRIX_input": "TRIX", "Periods_input": "Periods", "Forecast": "پیش بینی", "Histogram_input": "Histogram", "StdDev_input": "StdDev", "Relative Strength Index_study": "Relative Strength Index", "-DI_input": "-DI", "short_input": "short", "Symbol": "نماد", "Precision": "دقت", "Offset": "فاصله", "Format...": "فرمت...", "Search": "جستجو", "Zig Zag_study": "Zig Zag", "SUCCESS": "موفقیت", "Detrended Price Oscillator_input": "Detrended Price Oscillator", "length_input": "length", "Price Line": "خط قیمت", "Area With Breaks": "ناحیه", "Zoom Out": "کوچک نمایی", "Stop Level. Ticks:": "حد زیان", "Visual Order": "ترتیب نمایش", "Slow length_input": "Slow length", "Conversion Line Periods_input": "Conversion Line Periods", "Marker Color": "رنگ نشانگر", "TEMA_input": "TEMA", "Directional Movement_study": "Directional Movement", "Extend Left End": "ابتدا باز", "Advance/Decline_study": "Advance/Decline", "New York": "نیویورک", "Flag Mark": "علامت گذاری", "Drawings": "ترسیم", "Fast length_input": "Fast length", "Cancel": "لغو", "Bar #": "شماره میله", "Redo": "حالت بعدی", "Ultimate Oscillator_study": "Ultimate Oscillator", "Growing_input": "Growing", "Plot_input": "Plot", "Chicago": "شیکاگو", "Color 8_input": "Color 8", "Indicators, Fundamentals, Economy and Add-ons": "اندیکاتورها و بنیادی ها، اقتصاد و افزودنی ها", "Bollinger Bands Width_study": "Bollinger Bands Width", "roclen3_input": "roclen3", "Overbought_input": "Overbought", "DPO_input": "DPO", "TimeZone": "منطقه زمانی", "Price Range": "محدوده قیمتی", "Extended Hours": "ساعات غیرمعاملاتی", "Line With Breaks": "خط", "Period_input": "Period", "Watermark": "رنگ نماد پس زمینه", "Trigger_input": "Trigger", "SigLen_input": "SigLen", "Clone": "تکثیر", "Color 2_input": "Color 2", "Show Prices": "نمایش قیمت‌ها", "Graphics": "نگاره سازی", "Arrow Mark Right": "پیکان رو به راست", "Background color 2": "رنگ پس‌زمینه ۲", "Background color 1": "رنگ پس‌زمینه ۱", "Circles": "دایره", "Williams Alligator_study": "Williams Alligator", "ROCLen1_input": "ROCLen1", "Border Color": "رنگ حاشیه", "M_interval_short": "M", "Change Symbol...": "تغییر نماد...", "Price Levels": "سطوح قیمت", "Source text color": "رنگ متن نقطه شروع", "Zero Line_input": "Zero Line", "Increment_input": "Increment", "Days_interval": "Days", "Net Volume_study": "حجم خالص", "m_dates": "ماه", "Lock": "قفل", "length14_input": "length14", "retrying": "در حال تلاش مجدد", "High": "بیشترین", "Add to favorites": "افزودن به موارد مورد علاقه", "Color 0_input": "Color 0", "maximum_input": "maximum", "Paris": "پاریس", "D_data_mode_delayed_letter": "D", "Sigma_input": "Sigma", "Coordinates": "مختصات", "fastLength_input": "fastLength", "Width": "عرض", "Historical Volatility_study": "Historical Volatility", "Compare or Add Symbol...": "مقایسه یا افزودن نماد...", "Falling_input": "Falling", "Divisor_input": "Divisor", "Extend": "بسط", "length7_input": "length7", "Send to Back": "آخرین", "Undo": "حالت قبلی", "Window Size_input": "Window Size", "Reset Scale": "مقیاس پیش‌فرض", "Long Length_input": "Long Length", "%R_input": "%R", "Chart Properties": "تنظیمات نمودار", "bars_margin": "میله ها", "Show Angle": "نمایش زاویه", "closed": "بسته", "smalen3_input": "smalen3", "Length1_input": "Length1", "x_input": "x", "Save As...": "ذخیره به عنوان ...", "Tehran": "تهران", "Parabolic SAR_study": "Parabolic SAR", "Fisher Transform_study": "Fisher Transform", "UO_input": "UO", "Short RoC Length_input": "Short RoC Length", "Jaw_input": "Jaw", "Help": "کمک", "Coppock Curve_study": "Coppock Curve", "Reset Chart": "تنظیمات پیش‌فرض نمودار", "YES": "بله", "longlen_input": "longlen", "Moving Average Exponential_study": "نمایی میانگین متحرک", "Source border color": "رنگ لبه نقطه شروع", "Redo {0}": "حالت بعدی", "s_dates": "s", "Area": "ناحیه", "invalid symbol": "اطلاعاتی وجود ندارد", "Balance of Power_study": "Balance of Power", "EOM_input": "EOM", "Sydney": "سیدنی", "Indicators": "اندیکاتورها", "q_input": "q", "%D_input": "%D", "Text Alignment:": "تراز سطوح", "Offset_input": "Offset", "HV_input": "HV", "Start_input": "شروع", "ROC_input": "ROC", "Berlin": "برلین", "Color 4_input": "Color 4", "Los Angeles": "لس آنجلس", "Prices": "قیمت‌ها", "Hollow Candles": "شمعی توخالی", "Minute": "دقیقه", "Cycle": "دوره", "ADX Smoothing_input": "ADX Smoothing", "Settings": "تنظیمات", "Candles": "شمعی", "We_day_of_week": "We", "%d minute": "%d minutes", "Hide All Drawing Tools": "عدم نمایش اشکال", "MA_input": "MA", "Detrended Price Oscillator_study": "Detrended Price Oscillator", "Multiplier_input": "Multiplier", "Image URL": "مسیر عکس", "SMI Ergodic Oscillator_input": "SMI Ergodic Oscillator", "Show Objects Tree": "نمایش لیست اشکال", "Primary": "اصلی", "Price:": "قیمت:", "Bring to Front": "اولین", "Brush": "قلم", "Chaikin Oscillator_input": "Chaikin Oscillator", "C_data_mode_connecting_letter": "C", "SMALen4_input": "SMALen4", "Invalid Symbol": "نماد غیر معتبر", "yay Color 1_input": "yay Color 1", "CHOP_input": "CHOP", "Note": "یادداشت", "WMA Length_input": "WMA Length", "Low": "کمترین", "Borders": "حاشیه", "loading...": "در حال بارگزاری ...", "Events": "وقایع", "Columns": "ستونی", "Jun": "ژوئن", "On Balance Volume_study": "On Balance Volume", "Overlay the main chart": "نمایش بر روی ناحیه اصلی", "Source_input": "Source", "%K_input": "%K", "Success back color": "رنگ پس‌زمینه حالت موفقیت", "Toronto": "تورنتو", "Tokyo": "توکیو", "len_input": "len", "Measure (Shift + Click on the chart)": "خطوط میزان تغییرات (شیفت + کلیک)", "Override Min Tick": "حداقل مقیاس قیمت", "RSI Length_input": "RSI Length", "Unmerge Down": "جداسازی و انتقال به پایین", "Base Line Periods_input": "Base Line Periods", "pre-market": "پیش از گشایش بازار", "Top Labels": "برچسب‌های بالا", "Level {0}": "سطح {0}", "{0} copy": "{0} کپی", "Text Wrap": "شکستن خودکار خطوط", "Th_day_of_week": "Th", "No symbols matched your criteria": "هیچ نمادی با شرط شما مطابقت ندارد", "Icon": "شمایل", "Open": "باز", "Indicator_input": "Indicator", "Shanghai": "شانگهای", "Athens": "آتن", "Timezone/Sessions Properties...": "خصوصیات موقعیت زمانی/دوره معاملاتی", "middle": "وسط", "Intermediate": "میانروز", "Eraser": "پاک‌کن", "Relative Vigor Index_study": "Relative Vigor Index", "Envelope_study": "Envelope", "show MA_input": "show MA", "Horizontal Line": "خط افقی", "O_in_legend": "باز", "Confirmation": "تاییدیه", "Lines:": "خطوط", "Buenos Aires": "بوینس آیرس", "useTrueRange_input": "useTrueRange", "Bangkok": "بانگوک", "Profit Level. Ticks:": "حد سود", "Show Date/Time Range": "نمایش فاصله تاریخی", "%d year": "%d years", "Tu_day_of_week": "Tu", "day": "days", "deviation_input": "deviation", "week": "weeks", "long_input": "long", "VWMA_study": "VWMA", "Success text color": "رنگ متن حالت موفقیت", "%d hour": "%d hours", "Displacement_input": "Displacement", "Chaikin Money Flow_study": "Chaikin Money Flow", "Ease Of Movement_study": "Ease Of Movement", "Defaults": "پیش‌فرض‌ها", "Oversold_input": "Oversold", "Williams %R_study": "Williams %R", "depth_input": "depth", "RSI_input": "RSI", "Long period_input": "Long period", "Mo_day_of_week": "Mo", "center": "وسط", "Bogota": "بوگوتا", "Minutes_interval": "Minutes", "X_input": "X", "ROCLen4_input": "ROCLen4", "Aroon Down_input": "Aroon Down", "Add To Watchlist": "اضافه کردن به دیده بان", "Extend Right": "امتداد از راست", "left": "چپ", "Lock scale": "قفل کردن محور", "Time Levels": "سطوح تاریخ", "smalen1_input": "smalen1", "Extend Right End": "انتها باز", "Fans": "بادبزن‌ها", "Price_input": "Price", "Close_input": "Close", "Moving Average_study": "میانگین متحرک", "McGinley Dynamic_study": "McGinley Dynamic", "Relative Volatility Index_study": "Relative Volatility Index", "PVT_input": "PVT", "Circle Lines": "خطوط منحنی", "Hull Moving Average_study": "Hull Moving Average", "Bring Forward": "جلو", "Zero_input": "Zero", "Company Comparison": "مقایسه شرکت", "Stochastic Length_input": "Stochastic Length", "mult_input": "mult", "Signal smoothing_input": "Signal smoothing", "E_data_mode_end_of_day_letter": "E", "Stochastic RSI_study": "Stochastic RSI", "Fullscreen mode": "حالت تمام صفحه", "K_input": "K", "ROCLen3_input": "ROCLen3", "Text Color": "رنگ متن", "Screen (No Scale)": "مقیاس صفحه", "Signal_input": "Signal", "OK": "تایید", "like": "likes", "Show": "نمایش", "{0} bars": "{0} میله", "Lower_input": "Lower", "Arc": "کمان", "Elder's Force Index_study": "Elder's Force Index", "Stochastic_study": "Stochastic", "Bollinger Bands %B_study": "نوارهای بولینگر %B", "Time Zone": "منطقه زمانی", "right": "راست", "%d month": "%d months", "Donchian Channels_study": "Donchian Channels", "Upper Band_input": "Upper Band", "start_input": "start", "No indicators matched your criteria.": "هیچ اندیکاتوری با شرط شما مطابقت ندارد.", "Short length_input": "Short length", "Kolkata": "کلکته", "Triple EMA_study": "Triple EMA", "Precise Labels_scale_menu": "Precise Labels", "Smoothed Moving Average_study": "Smoothed Moving Average", "Show Text": "نمایش متن", "Channel": "کانال", "Lagging Span 2 Periods_input": "Lagging Span 2 Periods", "Seoul": "سئول", "bottom": "پایین", "Teeth_input": "Teeth", "Moscow": "مسکو", "Fib Channel": "کانال فیبوناچی", "Closed_line_tool_position": "سود/زیان", "exponential_input": "exponential", "OnBalanceVolume_input": "OnBalanceVolume", "roclen2_input": "roclen2", "Chande Momentum Oscillator_study": "Chande Momentum Oscillator", "Not applicable": "غیر قابل قبول", "Money Flow_study": "گردش پول", "Lips Length_input": "Lips Length", "Use Upper Deviation_input": "Use Upper Deviation", "L_in_legend": "کمترین", "Inside": "داخلی", "shortlen_input": "shortlen", "Bar's Style": "نحوه نمایش", "Exponential_input": "Exponential", "Stay In Drawing Mode": "ماندن در حالت رسم", "Comment": "توضیحات", "Long_input": "Long", "Bars": "میله‌ای", "loading data": "در حال دریافت اطلاعات", "Border color": "رنگ حاشیه", "Left Labels": "برچسب‌های چپ", "Insert Indicator...": "افزودن اندیکاتور...", "P_input": "P", "Rectangle": "مستطیل", "Feb": "فوریه", "Transparency": "شفافیت", "Cyclic Lines": "خطوط دایره ای", "length28_input": "length28", "ABCD Pattern": "الگوی ABCD", "Objects Tree": "اشکال و اندیکاتورها", "NO": "خیر", "Add": "افزودن", "Least Squares Moving Average_study": "Least Squares Moving Average", "Wick": "سایه بیشترین و کمترین", "Hull MA_input": "Hull MA", "Schiff": "شیف", "Lock Scale": "قفل کردن محور", "distance: {0}": "{0} :فاصله مختصات", "Extended": "تمدید شده", "log": "لگاریتمی", "Arcs": "کمان‌ها", "Length2_input": "Length2", "Insert Drawing Tool": "افزودن شکل", "Show Price Range": "نمایش فاصله قیمتی", "Correlation_input": "Correlation", "Scales Text": "رنگ متن محورها", "Session Breaks": "تنفس معاملاتی", "Anchored Note": "یادداشت ثابت", "lipsLength_input": "lipsLength", "roclen4_input": "roclen4", "Background Color": "رنگ پس‌زمینه", "D_data_mode_delayed_streaming_letter": "D", "VI -_input": "VI -", "slowLength_input": "slowLength", "n/a": "هیچ کدام", "Sa_day_of_week": "Sa", "RVI_input": "RVI", "Awesome Oscillator_study": "Awesome Oscillator", "Original": "اصلی", "True Strength Indicator_study": "True Strength Indicator", "Objects Tree...": "لیست اشکال و اندیکاتورها...", "Compare": "مقایسه", "Add Symbol": "افزودن نماد", "Properties": "تنظیمات", "Teeth Length_input": "Teeth Length", "Close": "پایانی", "ParabolicSAR_input": "ParabolicSAR", "Log Scale_scale_menu": "مقیاس لگاریتمی", "MACD_input": "MACD", "{0} P&L: {1}": "‫", "Arrow Mark Left": "پیکان رو به چپ", "Open_line_tool_position": "سود/زیان", "Lagging Span_input": "Lagging Span", "Cross": "مکان‌نما", "Mirrored": "جرخش افقی", "Price": "قیمت", "Vancouver": "ونکوور", "Label Background": "برچسب پس‌زمینه", "ADX smoothing_input": "ADX smoothing", "Mar": "مارس", "May": "می", "Color 5_input": "Color 5", "Scale Price Chart Only": "فقط نمودار مقیاس قیمت", "Default": "پیش‌فرض", "auto_scale": "خودکار", "Background": "پس‌زمینه", "VWMA_input": "VWMA", "Lower Deviation_input": "Lower Deviation", "ATR_input": "ATR", "Reverse": "معکوس", "Shapes_input": "Shapes", "Median": "خط میانی", "ADX_input": "ADX", "Remove": "حذف", "Arrow Mark Up": "پیکان رو به بالا", "Williams Fractal_study": "Williams Fractal", "Crosses_input": "Crosses", "KST_input": "KST", "LowerLimit_input": "LowerLimit", "Know Sure Thing_study": "Know Sure Thing", "Compare...": "مقایسه...", "Compare or Add Symbol": "مقایسه یا افزودن نماد", "Color": "رنگ", "Aroon Up_input": "Aroon Up", "Singapore": "سنگاپور", "Scales Lines": "رنگ خطوط محورها", "Show Distance": "نمایش فاصله مختصات", "Risk/Reward Ratio: {0}": "‫نسبت ریسک به سود: {0}", "lengthRSI_input": "lengthRSI", "Merge Up": "ترکیب با ناحیه بالایی", "Right Margin": "حاشیه از راست", "Warsaw": "ورشو"} \ No newline at end of file +{"ticks_slippage ... ticks": "ticks", "Months_interval": "Months", "Percent_input": "Percent", "Clone": "تکثیر", "London": "لندن", "roclen1_input": "roclen1", "Minor": "کوچک", "smalen3_input": "smalen3", "Magnet Mode": "آهنربا", "OSC_input": "OSC", "Volume_study": "حجم", "Lips_input": "Lips", "Histogram": "میله‌ای", "Base Line_input": "Base Line", "Step": "پله‌ای", "Fib Time Zone": "منطقه زمانی فیبوناچی", "SMALen2_input": "SMALen2", "Bollinger Bands_study": "نوارهای بولینگر", "Upper_input": "Upper", "exponential_input": "exponential", "Move Up": "انتقال به بالا", "Scales Properties...": "تنظیمات محورها...", "Count_input": "Count", "Anchored Text": "متن ثابت", "Industry": "صنعت", "OnBalanceVolume_input": "OnBalanceVolume", "Cross_chart_type": "به‌علاوه", "H_in_legend": "بیشترین", "R_data_mode_replay_letter": "R", "Accumulation/Distribution_study": "Accumulation/Distribution", "Rate Of Change_study": "Rate Of Change", "in_dates": "in", "Color 7_input": "Color 7", "Chop Zone_study": "Chop Zone", "Scales Properties": "خصوصیات مقیاس ها", "Remove All Indicators": "حذف همه اندیکاتورها", "Oscillator_input": "Oscillator", "yay Color 0_input": "yay Color 0", "Labels": "برچسب‌ها", "Chande Kroll Stop_study": "Chande Kroll Stop", "Hours_interval": "Hours", "Scale Right": "مقیاس محور راست", "Money Flow_study": "گردش پول", "DEMA_input": "DEMA", "Remove All Drawing Tools": "حذف همه اشکال", "Linear Regression Curve_study": "Linear Regression Curve", "Symbol_input": "Symbol", "increment_input": "increment", "Compare or Add Symbol...": "مقایسه یا افزودن نماد...", "Label": "برچسب", "second": "seconds", "Any Number": "هر عددی", "smoothD_input": "smoothD", "Percentage": "مقیاس درصدی", "Entry price:": "قیمت ورود", "Circles": "دایره", "Ichimoku Cloud_study": "Ichimoku Cloud", "Signal smoothing_input": "Signal smoothing", "Grid": "شبکه", "Mass Index_study": "شاخص انبوه", "Rename...": "تغییرنام...", "Smoothing_input": "Smoothing", "Color 3_input": "Color 3", "Jaw Length_input": "Jaw Length", "Delete all drawing for this symbol": "حذف تمام ترسیمات برای این نماد", "Keltner Channels_study": "Keltner Channels", "Long Position": "وضعیت خرید", "Bands style_input": "Bands style", "Undo {0}": "حالت قبلی", "With Markers": "نقاط قیمت", "Momentum_study": "Momentum", "MF_input": "MF", "m_dates": "ماه", "Fast length_input": "Fast length", "Apply Elliot Wave": "اجرای امواج الیوت", "Disjoint Angle": "قطع اتصال زاویه", "W_interval_short": "W", "Log Scale": "مقیاس لگاریتمی", "Minuette": "دقیقه", "Equality Line_input": "Equality Line", "Short_input": "Short", "Fib Wedge": "گوه فیبوناچی", "Line": "خط", "Down fractals_input": "Down fractals", "Fib Retracement": "اصلاحی فیبوناچی", "smalen2_input": "smalen2", "isCentered_input": "isCentered", "Border": "حاشیه", "Klinger Oscillator_study": "Klinger Oscillator", "Style": "نحوه نمایش", "SMI Ergodic Indicator/Oscillator_study": "SMI Ergodic Indicator/Oscillator", "Aug": "آگوست", "No Overlapping Labels_scale_menu": "No Overlapping Labels", "Manage Drawings": "مدیریت اشکال", "No drawings yet": "شکلی رسم نشده است", "Chande MO_input": "Chande MO", "jawLength_input": "jawLength", "TRIX_study": "TRIX", "Border color": "رنگ حاشیه", "RVGI_input": "RVGI", "signalLength_input": "signalLength", "d_dates": "روز", "August": "آگوست", "Source_compare": "منبع", "Correlation Coefficient_study": "Correlation Coefficient", "Text color": "رنگ متن", "Levels": "سطوح", "Length_input": "Length", "Short Length_input": "Short Length", "teethLength_input": "teethLength", "Visible Range_study": "Visible Range", "Hong Kong": "هنگ کنگ", "Text Alignment:": "تراز سطوح", "Subminuette": "کمتر از دقیقه", "Lock All Drawing Tools": "قفل کردن ابزار های رسم", "Long_input": "Long", "Default": "پیش‌فرض", "Head & Shoulders": "سر و شانه ها", "Properties...": "تنظیمات...", "MA Cross_study": "تقاطع میانگین متحرک", "Crosshair": "نشانه‌گر", "Signal line period_input": "Signal line period", "Q_input": "Q", "Show/Hide": "نمایش/عدم نمایش", "Price Volume Trend_study": "Price Volume Trend", "Auto Scale": "تنظیم خودکار محور", "hour": "hours", "Text": "متن", "F_data_mode_forbidden_letter": "F", "Show Bars Range": "نمایش فاصله روزها", "Long RoC Length_input": "Long RoC Length", "Length3_input": "Length3", "+DI_input": "+DI", "Madrid": "مادرید", "Sig_input": "Sig", "MACD_study": "MACD", "%s ago_time_range": "%s ago", "Zoom In": "بزرگ نمایی", "Failure back color": "رنگ پس‌زمینه حالت شکست", "Extend Left": "امتداد از چپ", "Date Range": "بازه زمانی", "Show Price": "نمایش قیمت", "Level_input": "Level", "Commodity Channel Index_study": "Commodity Channel Index", "Elder's Force Index_input": "Elder's Force Index", "Format": "ویژگی‌ها", "Color bars based on previous close": "نمایش رنگ کندل‌ها بر اساس قیمت پایانی روز قبل", "Text:": "متن:", "Aroon_study": "Aroon", "Active Symbol": "نماد فعال", "Lead 1_input": "Lead 1", "SMALen1_input": "SMALen1", "P_input": "P", "SMALen3_input": "SMALen3", "Average Directional Index_study": "Average Directional Index", "Fr_day_of_week": "Fr", "Curve": "منحنی", "Target Color:": "رنگ محدوده سود", "Bars Pattern": "الگوی داده ها", "D_input": "D", "Font Size": "اندازه قلم", "Create Vertical Line": "ایجاد خط عمودی", "p_input": "p", "Chart layout name": "نام طرح نمودار", "Fib Circles": "دایره های فیبوناچی", "Dot": "نقطه", "Target back color": "رنگ پس‌زمینه نقطه هدف", "All": "همه", "orders_up to ... orders": "orders", "Dot_hotkey": "Dot", "Lead 2_input": "Lead 2", "Save image": "ذخیره عکس", "Move Down": "انتقال به پایین", "Vortex Indicator_study": "Vortex Indicator", "Apply": "اعمال", "Plots Background_study": "Plots Background", "Price Channel_study": "Price Channel", "%d day": "%d days", "Hide": "عدم نمایش", "Bottom": "پایین", "Target text color": "رنگ متن نقطه هدف", "Scale Left": "مقیاس محور چپ", "Countdown": "شمارش معکوس", "Source back color": "رنگ پس‌زمینه نقطه شروع", "Go to Date...": "برو به تاریخ...", "Sao Paulo": "سائوپلو", "R_data_mode_realtime_letter": "R", "Extend Lines": "امتداد خطوط", "Conversion Line_input": "Conversion Line", "Su_day_of_week": "Su", "Up fractals_input": "Up fractals", "Arcs": "کمان‌ها", "Regression Trend": "روند رگراسیون", "Double EMA_study": "Double EMA", "minute": "minutes", "Price Oscillator_study": "Price Oscillator", "Stop Color:": "رنگ محدوده زیان", "Stay in Drawing Mode": "ماندن در حالت ترسیم", "Bottom Margin": "حاشیه از پایین", "Average True Range_study": "Average True Range", "Max value_input": "Max value", "MA Length_input": "MA Length", "in %s_time_range": "in %s", "UpperLimit_input": "UpperLimit", "sym_input": "sym", "DI Length_input": "DI Length", "SMI_input": "SMI", "Arrow": "پیکان", "Basis_input": "Basis", "Arrow Mark Down": "پیکان رو به پایین", "lengthStoch_input": "lengthStoch", "Taipei": "چین تایپه", "Remove from favorites": "حذف از موارد مورد علاقه", "Copy": "کپی", "Scale Series Only": "تغییر مقیاس تنها برای قیمت", "Simple": "ساده", "Arnaud Legoux Moving Average_study": "Arnaud Legoux Moving Average", "Smoothed Moving Average_study": "Smoothed Moving Average", "Lower Band_input": "Lower Band", "VI +_input": "VI +", "Always Show Stats": "نمایش همیشگی آمار", "ROCLen2_input": "ROCLen2", "Simple ma(signal line)_input": "Simple ma(signal line)", "Show Labels": "نمایش برچسب‌ها", "Color 6_input": "Color 6", "Right End": "انتها باز", "CRSI_study": "CRSI", "long_input": "long", "Chaikin Oscillator_study": "Chaikin Oscillator", "Balloon": "بالون", "Color Theme": "شمای رنگی", "Awesome Oscillator_study": "Awesome Oscillator", "Bollinger Bands Width_input": "Bollinger Bands Width", "Signal Length_input": "Signal Length", "D_interval_short": "D", "Color 1_input": "Color 1", "Moving Average Weighted_study": "Moving Average Weighted", "Save": "ذخیره", "Type": "نوع", "Wick": "سایه بیشترین و کمترین", "Accumulative Swing Index_study": "Accumulative Swing Index", "Fisher_input": "Fisher", "Left End": "ابتدا باز", "%d year": "%d years", "Always Visible": "همواره آشکار", "S_data_mode_snapshot_letter": "S", "smalen4_input": "smalen4", "CCI_input": "CCI", "Upper Deviation_input": "Upper Deviation", "(H + L)/2": "‎(H + L)/2", "Flipped": "چرخش عمودی", "Move_input": "Move", "NV_input": "NV", "Choppiness Index_study": "Choppiness Index", "Merge Down": "ترکیب با ناحیه پایین", " per contract": " در هر قرارداد ", "Overlay the main chart": "نمایش بر روی ناحیه اصلی", "Delete": "حذف", "Length MA_input": "Length MA", "percent_input": "percent", "Apr": "آوریل", "{0} copy": "{0} کپی", "NO": "خیر", "Accumulation/Distribution_input": "Accumulation/Distribution", "C_in_legend": "پایانی", "Weeks_interval": "هفته ها", "smoothK_input": "smoothK", "Percentage_scale_menu": "مقایس درصدی", "MOM_input": "MOM", "h_interval_short": "h", "Change Interval": "تغییر بازه", "Modified Schiff": "شیف تغییر داده‌شد", "top": "بالا", "Send Backward": "عقب", "Custom color...": "رنگ دلخواه...", "TRIX_input": "TRIX", "Delete chart layout": "حذف طرح نمودار", "Periods_input": "Periods", "Forecast": "پیش بینی", "Histogram_input": "Histogram", "StdDev_input": "StdDev", "EMA Cross_study": "EMA Cross", "Conversion Line Periods_input": "Conversion Line Periods", "Add Symbol_compare_or_add_symbol_dialog": "Add Symbol", "Williams %R_study": "Williams %R", "Symbol": "نماد", "Precision": "دقت", "Go to": "برو به", "VWAP_study": "VWAP", "Offset": "فاصله", "Date": "تاریخ", "Format...": "فرمت...", "Search": "جستجو", "Zig Zag_study": "Zig Zag", "Actual": "واقعی", "SUCCESS": "موفقیت", "Long period_input": "Long period", "length_input": "length", "roclen4_input": "roclen4", "Price Line": "خط قیمت", "Area With Breaks": "ناحیه", "Median_input": "Median", "Stop Level. Ticks:": "حد زیان", "Above Bar": "نمودار بالا", "Visual Order": "ترتیب نمایش", "Slow length_input": "Slow length", "Marker Color": "رنگ نشانگر", "TEMA_input": "TEMA", "Extend Left End": "ابتدا باز", "Advance/Decline_study": "Advance/Decline", "New York": "نیویورک", "Flag Mark": "علامت گذاری", "Drawings": "ترسیم", "Cancel": "لغو", "Bar #": "شماره میله", "Redo": "حالت بعدی", "Ultimate Oscillator_study": "Ultimate Oscillator", "Growing_input": "Growing", "Plot_input": "Plot", "Chicago": "شیکاگو", "Color 8_input": "Color 8", "Indicators, Fundamentals, Economy and Add-ons": "اندیکاتورها و بنیادی ها، اقتصاد و افزودنی ها", "h_dates": "ساعت", "Bollinger Bands Width_study": "Bollinger Bands Width", "roclen3_input": "roclen3", "Overbought_input": "Overbought", "DPO_input": "DPO", "TimeZone": "منطقه زمانی", "Circle": "دایره", "Tu_day_of_week": "Tu", "Extended Hours": "ساعات غیرمعاملاتی", "Line With Breaks": "خط", "Period_input": "Period", "Watermark": "رنگ نماد پس زمینه", "Trigger_input": "Trigger", "SigLen_input": "SigLen", "Extend Right": "امتداد از راست", "Color 2_input": "Color 2", "Show Prices": "نمایش قیمت‌ها", "Arrow Mark Right": "پیکان رو به راست", "Background color 2": "رنگ پس‌زمینه ۲", "Background color 1": "رنگ پس‌زمینه ۱", "RSI Source_input": "RSI Source", "MA/EMA Cross_study": "MA/EMA Cross", "Williams Alligator_study": "Williams Alligator", "ROCLen1_input": "ROCLen1", "M_interval_short": "M", "Chaikin Oscillator_input": "Chaikin Oscillator", "Price Levels": "سطوح قیمت", "Source text color": "رنگ متن نقطه شروع", "Zero Line_input": "Zero Line", "Increment_input": "Increment", "Days_interval": "Days", "Net Volume_study": "حجم خالص", "Zoom Out": "کوچک نمایی", "Historical Volatility_study": "Historical Volatility", "Lock": "قفل", "length14_input": "length14", "High": "بیشترین", "Date and Price Range": "محدوده تاریخ و قیمت", "Lock/Unlock": "قفل/باز", "Color 0_input": "Color 0", "Add Symbol": "افزودن نماد", "maximum_input": "maximum", "Paris": "پاریس", "D_data_mode_delayed_letter": "D", "Sigma_input": "Sigma", "VWMA_study": "VWMA", "fastLength_input": "fastLength", "Width": "عرض", "Time Levels": "سطوح تاریخ", "Use Lower Deviation_input": "Use Lower Deviation", "Falling_input": "Falling", "Divisor_input": "Divisor", "Dec": "دسامبر", "Extend": "بسط", "length7_input": "length7", "Send to Back": "آخرین", "Undo": "حالت قبلی", "Window Size_input": "Window Size", "Reset Scale": "مقیاس پیش‌فرض", "Long Length_input": "Long Length", "%R_input": "%R", "Chart Properties": "تنظیمات نمودار", "bars_margin": "میله ها", "Show Angle": "نمایش زاویه", "Indicator Last Value": "آخرین مقدار اندیکاتور", "Objects Tree...": "لیست اشکال و اندیکاتورها...", "Length1_input": "Length1", "Always Invisible": "همواره مخفی", "x_input": "x", "Save As...": "ذخیره به عنوان ...", "Tehran": "تهران", "Parabolic SAR_study": "Parabolic SAR", "Any Symbol": "هر نمادی", "UO_input": "UO", "Short RoC Length_input": "Short RoC Length", "Jan": "ژانویه", "Jaw_input": "Jaw", "Help": "کمک", "Coppock Curve_study": "Coppock Curve", "Reset Chart": "تنظیمات پیش‌فرض نمودار", "Open": "باز", "YES": "بله", "longlen_input": "longlen", "Moving Average Exponential_study": "نمایی میانگین متحرک", "Source border color": "رنگ لبه نقطه شروع", "Redo {0}": "حالت بعدی", "Cypher Pattern": "الگوی Cypher", "s_dates": "s", "Area": "ناحیه", "Balance of Power_study": "Balance of Power", "EOM_input": "EOM", "Shapes_input": "Shapes", "Sydney": "سیدنی", "Indicators": "اندیکاتورها", "q_input": "q", "%D_input": "%D", "Border Color": "رنگ حاشیه", "Offset_input": "Offset", "HV_input": "HV", "(H + L + C)/3": "‎(H + L + C)/3", "Start_input": "شروع", "ROC_input": "ROC", "Berlin": "برلین", "Color 4_input": "Color 4", "Los Angeles": "لس آنجلس", "Prices": "قیمت‌ها", "Hollow Candles": "شمعی توخالی", "Create Horizontal Line": "ایجاد خط افقی", "Minute": "دقیقه", "Cycle": "دوره", "ADX Smoothing_input": "ADX Smoothing", "Settings": "تنظیمات", "Candles": "شمعی", "We_day_of_week": "We", "%d minute": "%d minutes", "Go to...": "برو به ...", "Hide All Drawing Tools": "عدم نمایش اشکال", "MA_input": "MA", "Length2_input": "Length2", "Multiplier_input": "Multiplier", "Session Volume_study": "Session Volume", "Image URL": "مسیر عکس", "SMI Ergodic Oscillator_input": "SMI Ergodic Oscillator", "Show Objects Tree": "نمایش لیست اشکال", "Primary": "اصلی", "Price:": "قیمت:", "Bring to Front": "اولین", "Brush": "قلم", "C_data_mode_connecting_letter": "C", "SMALen4_input": "SMALen4", "Invalid Symbol": "نماد غیر معتبر", "yay Color 1_input": "yay Color 1", "CHOP_input": "CHOP", "Note": "یادداشت", "WMA Length_input": "WMA Length", "Low": "کمترین", "Borders": "حاشیه", "loading...": "در حال بارگزاری ...", "Closed_line_tool_position": "سود/زیان", "Rectangle": "مستطیل", "Change Resolution": "تغییر رزولوشن", " per order": " در هر سفارش", "Jun": "ژوئن", "On Balance Volume_study": "On Balance Volume", "Source_input": "Source", "%K_input": "%K", "Scales Text": "رنگ متن محورها", "Toronto": "تورنتو", "Tokyo": "توکیو", "len_input": "len", "Measure (Shift + Click on the chart)": "خطوط میزان تغییرات (شیفت + کلیک)", "Override Min Tick": "حداقل مقیاس قیمت", "RSI Length_input": "RSI Length", "Long length_input": "Long length", "Unmerge Down": "جداسازی و انتقال به پایین", "Base Line Periods_input": "Base Line Periods", "Relative Strength Index_study": "Relative Strength Index", "Top Labels": "برچسب‌های بالا", "siglen_input": "siglen", "Text Wrap": "شکستن خودکار خطوط", "Th_day_of_week": "Th", "Slash_hotkey": "Slash", "No symbols matched your criteria": "هیچ نمادی با شرط شما مطابقت ندارد", "Icon": "شمایل", "lengthRSI_input": "lengthRSI", "Teeth Length_input": "Teeth Length", "Indicator_input": "Indicator", "Shanghai": "شانگهای", "Athens": "آتن", "Timezone/Sessions Properties...": "خصوصیات موقعیت زمانی/دوره معاملاتی", "middle": "وسط", "Intermediate": "میانروز", "Eraser": "پاک‌کن", "Relative Vigor Index_study": "Relative Vigor Index", "Envelope_study": "Envelope", "show MA_input": "show MA", "Horizontal Line": "خط افقی", "O_in_legend": "باز", "Confirmation": "تاییدیه", "Lines:": "خطوط", "Buenos Aires": "بوینس آیرس", "useTrueRange_input": "useTrueRange", "Bangkok": "بانگوک", "Profit Level. Ticks:": "حد سود", "Show Date/Time Range": "نمایش فاصله تاریخی", "Level {0}": "سطح {0}", "-DI_input": "-DI", "Price Range": "محدوده قیمتی", "day": "days", "deviation_input": "deviation", "Value_input": "Value", "Time Interval": "دوره زمانی", "Success text color": "رنگ متن حالت موفقیت", "%d hour": "%d hours", "Displacement_input": "Displacement", "Chaikin Money Flow_study": "Chaikin Money Flow", "Ease Of Movement_study": "Ease Of Movement", "Defaults": "پیش‌فرض‌ها", "Oversold_input": "Oversold", "short_input": "short", "depth_input": "depth", "RSI_input": "RSI", "Detrended Price Oscillator_input": "Detrended Price Oscillator", "Mo_day_of_week": "Mo", "center": "وسط", "Bogota": "بوگوتا", "ROC Length_input": "ROC Length", "X_input": "X", "ROCLen4_input": "ROCLen4", "Aroon Down_input": "Aroon Down", "Add To Watchlist": "اضافه کردن به دیده بان", "Price": "قیمت", "left": "چپ", "Lock scale": "قفل کردن محور", "Limit_input": "Limit", "smalen1_input": "smalen1", "KST_input": "KST", "Extend Right End": "انتها باز", "Fans": "بادبزن‌ها", "Color based on previous close_input": "Color based on previous close", "Price_input": "Price", "Moving Average_study": "میانگین متحرک", "McGinley Dynamic_study": "McGinley Dynamic", "Relative Volatility Index_study": "Relative Volatility Index", "PVT_input": "PVT", "Circle Lines": "خطوط منحنی", "Hull Moving Average_study": "Hull Moving Average", "Bring Forward": "جلو", "Zero_input": "Zero", "Company Comparison": "مقایسه شرکت", "Stochastic Length_input": "Stochastic Length", "mult_input": "mult", "Success back color": "رنگ پس‌زمینه حالت موفقیت", "E_data_mode_end_of_day_letter": "E", "Double Curve": "منحنی دوگانه", "Stochastic RSI_study": "Stochastic RSI", "Fullscreen mode": "حالت تمام صفحه", "K_input": "K", "ROCLen3_input": "ROCLen3", "Text Color": "رنگ متن", "Moving Average Channel_study": "Moving Average Channel", "Target border color": "رنگ لبه نقطه هدف", "Screen (No Scale)": "مقیاس صفحه", "Signal_input": "Signal", "OK": "تایید", "like": "likes", "Show": "نمایش", "{0} bars": "{0} میله", "Lower_input": "Lower", "Arc": "کمان", "Elder's Force Index_study": "Elder's Force Index", "Stochastic_study": "Stochastic", "Bollinger Bands %B_study": "نوارهای بولینگر %B", "Time Zone": "منطقه زمانی", "right": "راست", "%d month": "%d months", "Donchian Channels_study": "Donchian Channels", "Upper Band_input": "Upper Band", "start_input": "start", "No indicators matched your criteria.": "هیچ اندیکاتوری با شرط شما مطابقت ندارد.", "Short length_input": "Short length", "Kolkata": "کلکته", "Triple EMA_study": "Triple EMA", "Technical Analysis": "تحلیل تکنیکی", "Show Text": "نمایش متن", "Channel": "کانال", "Lagging Span 2 Periods_input": "Lagging Span 2 Periods", "Connecting Line": "خط ارتباطی", "Seoul": "سئول", "bottom": "پایین", "Teeth_input": "Teeth", "Moscow": "مسکو", "Fib Channel": "کانال فیبوناچی", "Columns": "ستونی", "Directional Movement_study": "Directional Movement", "roclen2_input": "roclen2", "Chande Momentum Oscillator_study": "Chande Momentum Oscillator", "Not applicable": "غیر قابل قبول", "Bollinger Bands %B_input": "Bollinger Bands %B", "Indicator Values": "مقادیر اندیکاتور", "Lips Length_input": "Lips Length", "Use Upper Deviation_input": "Use Upper Deviation", "L_in_legend": "کمترین", "Inside": "داخلی", "shortlen_input": "shortlen", "Bar's Style": "نحوه نمایش", "Exponential_input": "Exponential", "Stay In Drawing Mode": "ماندن در حالت رسم", "Comment": "توضیحات", "Connors RSI_study": "Connors RSI", "Bars": "میله‌ای", "December": "دسامبر", "Left Labels": "برچسب‌های چپ", "Insert Indicator...": "افزودن اندیکاتور...", "ADR_B_input": "ADR_B", "Change Symbol...": "تغییر نماد...", "Feb": "فوریه", "Transparency": "شفافیت", "Cyclic Lines": "خطوط دایره ای", "length28_input": "length28", "ABCD Pattern": "الگوی ABCD", "Objects Tree": "اشکال و اندیکاتورها", "Add": "افزودن", "Least Squares Moving Average_study": "Least Squares Moving Average", "Chart Layout Name": "نام طرح نمودار", "Hull MA_input": "Hull MA", "Schiff": "شیف", "Lock Scale": "قفل کردن محور", "distance: {0}": "{0} :فاصله مختصات", "Extended": "تمدید شده", "log": "لگاریتمی", "Normal": "خط", "Top Margin": "حاشیه از بالا", "Minutes_interval": "Minutes", "Insert Drawing Tool": "افزودن شکل", "Show Price Range": "نمایش فاصله قیمتی", "Correlation_input": "Correlation", "Session Breaks": "تنفس معاملاتی", "Add {0} To Watchlist": "افزودن {0} به دیده بان", "Anchored Note": "یادداشت ثابت", "lipsLength_input": "lipsLength", "UpDown Length_input": "UpDown Length", "ASI_study": "ASI", "Background Color": "رنگ پس‌زمینه", "D_data_mode_delayed_streaming_letter": "D", "VI -_input": "VI -", "slowLength_input": "slowLength", "n/a": "هیچ کدام", "Indicator Titles": "عنوان اندیکاتور", "Failure text color": "رنگ متن حالت شکست", "Sa_day_of_week": "Sa", "Error": "خطا", "RVI_input": "RVI", "Centered_input": "Centered", "Original": "اصلی", "True Strength Indicator_study": "True Strength Indicator", "Simple ma(oscillator)_input": "Simple ma(oscillator)", "Compare": "مقایسه", "Fisher Transform_study": "Fisher Transform", "Length EMA_input": "Length EMA", "FAILURE": "شکست", "MA with EMA Cross_study": "MA with EMA Cross", "Close": "پایانی", "ParabolicSAR_input": "ParabolicSAR", "Log Scale_scale_menu": "مقیاس لگاریتمی", "MACD_input": "MACD", "{0} P&L: {1}": "‫", "Arrow Mark Left": "پیکان رو به چپ", "(O + H + L + C)/4": "‎(O + H + L + C)/4", "Confirm Inputs": "تایید ورودی‏ ها", "Open_line_tool_position": "سود/زیان", "Lagging Span_input": "Lagging Span", "Cross": "مکان‌نما", "Mirrored": "جرخش افقی", "Vancouver": "ونکوور", "Label Background": "برچسب پس‌زمینه", "ADX smoothing_input": "ADX smoothing", "Mar": "مارس", "May": "می", "Detrended Price Oscillator_study": "Detrended Price Oscillator", "Color 5_input": "Color 5", "Risk/Reward Ratio: {0}": "‫نسبت ریسک به سود: {0}", "Scale Price Chart Only": "فقط نمودار مقیاس قیمت", "Unmerge Up": "جداسازی و انتقال به بالا", "auto_scale": "خودکار", "Short period_input": "Short period", "Background": "پس‌زمینه", "% of equity": "درصد از سهم", "VWMA_input": "VWMA", "Lower Deviation_input": "Lower Deviation", "ATR_input": "ATR", "Reverse": "معکوس", "Add to favorites": "افزودن به موارد مورد علاقه", "Median": "خط میانی", "ADX_input": "ADX", "Remove": "حذف", "Arrow Mark Up": "پیکان رو به بالا", "April": "آوریل", "Crosses_input": "Crosses", "Middle_input": "Middle", "LowerLimit_input": "LowerLimit", "Know Sure Thing_study": "Know Sure Thing", "Copy Chart Layout": "کپی طرح نمودار", "Compare...": "مقایسه...", "Compare or Add Symbol": "مقایسه یا افزودن نماد", "Color": "رنگ", "Aroon Up_input": "Aroon Up", "Singapore": "سنگاپور", "Scales Lines": "رنگ خطوط محورها", "Show Distance": "نمایش فاصله مختصات", "Fixed Range_study": "Fixed Range", "Volume Oscillator_study": "Volume Oscillator", "Williams Fractal_study": "Williams Fractal", "Merge Up": "ترکیب با ناحیه بالایی", "Right Margin": "حاشیه از راست", "Warsaw": "ورشو"} \ No newline at end of file diff --git a/charting_library/static/localization/translations/fr.json b/charting_library/static/localization/translations/fr.json index 1e52fd5a..53ced3e4 100644 --- a/charting_library/static/localization/translations/fr.json +++ b/charting_library/static/localization/translations/fr.json @@ -1 +1 @@ -{"ticks_slippage ... ticks": "ticks", "Months_interval": "Months", "Percent_input": "Percent", "Hide Events on Chart": "Cacher les événements sur le graphique", "RSI Length_input": "RSI Length", "month": "mois", "London": "Londres", "roclen1_input": "roclen1", "Unmerge Down": "Défusionner vers le Bas", "Percents": "Pourcents", "Search Note": "Chercher une Note", "Minor": "Mineur", "Do you really want to delete Chart Layout '{0}' ?": "Voulez-vous vraiment supprimer la configuration du graphique '{0}' ?", "Quotes are delayed by {0} min and updated every 30 seconds": "Les cotations sont différées de {0} min et mises à jour toutes les 30 secondes", "June": "Juin", "Magnet Mode": "Mode aimanté", "OSC_input": "OSC", "Hide alert label line": "Masquer la ligne de l'identifiant d'alerte", "Volume_study": "Volume", "Lips_input": "Lips", "Show real prices on price scale (instead of Heikin-Ashi price)": "Montrer les prix réel sur l'échelle de prix (au lieu du prix Heikin-Ashi)", "Histogram": "Histogramme", "Base Line_input": "Base Line", "Step": "En Marche d'Escalier", "Elliott Wave Circle": "Cercle des vagues d'Elliott", "Fib Time Zone": "Zone Temporelle de Fibonacci", "SMALen2_input": "SMALen2", "Bollinger Bands_study": "Bollinger Bands", "Show/Hide": "Montrer/Cacher", "Upper_input": "Upper", "Sig_input": "Sig", "Move Up": "Déplacer vers le Haut", "Sigma_input": "Sigma", "This indicator cannot be applied to another indicator": "Cet indicateur ne peut pas être appliqué à un autre indicateur.", "Gann Square": "Carré de Gann", "Count_input": "Count", "Full Circles": "Cercles complets", "Industry": "Industrie", "SMALen1_input": "SMALen1", "Cross_chart_type": "Croix", "Target Color:": "Couleur de l'Objectif", "a day": "un jour", "Pitchfork": "Fourchette", "Accumulation/Distribution_study": "Accumulation/Répartition", "Rate Of Change_study": "Rate Of Change", "Risk/Reward short": "Risque/Récompense Court", "in_dates": "en", "Color 7_input": "Color 7", "Change Average HL value": "Changer la valeur Haute Basse moyenne", "Scales Properties": "Propriétés d'Echelles", "Trend-Based Fib Time": "Temps de Fibonacci selon la Tendance", "Remove All Indicators": "Retirer tous les Indicateurs", "Oscillator_input": "Oscillator", "Last Modified": "Dernière modification", "yay Color 0_input": "yay Color 0", "Labels": "Étiquettes", "Chande Kroll Stop_study": "Stop Chande Kroll", "Hours_interval": "Hours", "Scale Right": "Échelle à Droite", "Money Flow_study": "Flux d'argent", "siglen_input": "siglen", "Indicator Labels": "Étiquettes d'indicateurs", "Source Code": "Code Source", "__specialSymbolOpen__Tomorrow at__specialSymbolClose__ __dayTime__": "__specialSymbolOpen__Demain à__specialSymbolClose____dayTime__", "Toggle Percentage": "Echelle en pourcentage", "Remove All Drawing Tools": "Retirer tous les Outils de Dessin", "Remove all line tools for ": "Supprimez tous les outils de ligne pour ", "Linear Regression Curve_study": "Linear Regression Curve", "Symbol_input": "Symbol", "Upper Deviation_input": "Upper Deviation", "Rename Chart Layout": "Renommer le plan graphique", "__specialSymbolOpen__Last__specialSymbolClose__ __dayName__ __specialSymbolOpen__at__specialSymbolClose__ __dayTime__": "__specialSymbolOpen__Dernier__specialSymbolClose____dayName____specialSymbolOpen__à__specialSymbolClose____dayTime__", "Save Chart Layout": "Sauvegarder la Configuration du Graphique", "Allow up to": "Attendre jusqu'à", "Label": "Étiquette", "Post Market": "Post-marché", "second": "seconds", "Any Number": "N'importe quel Nombre", "smoothD_input": "smoothD", "Falling_input": "Falling", "Percentage": "Pourcentage", "Donchian Channels_study": "Donchian Channels", "Entry price:": "Prix d'Entrée", "RSI Source_input": "RSI Source", "Toggle Auto Scale": "Mise à l'échelle automatique", " per contract": " par contrat", "Ichimoku Cloud_study": "Ichimoku Cloud", "jawLength_input": "jawLength", "Toggle Log Scale": "Mise à l'échelle logarithmique", "Apply Elliot Wave Major": "Appliquer Vague d'Elliot Majeure", "Grid": "Grille", "Mass Index_study": "Index de masse", "Up Wave 1 or A": "Vague Haussière 1 ou A", "Smoothing_input": "Smoothing", "Color 3_input": "Color 3", "Jaw Length_input": "Jaw Length", "Inside": "Interne", "Delete all drawing for this symbol": "Supprimer tout dessin relié à symbole", "Quotes are delayed by 10 min and updated every 30 seconds": "Les cotations sont retardées de 10 minutes et mises à jour toutes les 30 secondes.", "Keltner Channels_study": "Keltner Channels", "Long Position": "Position Longue", "Bands style_input": "Bands style", "Undo {0}": "Annuler {0}", "With Markers": "Avec des Points", "Momentum_study": "Momentum", "MF_input": "MF", "On Balance Volume_study": "On Balance Volume", "Switch to the next chart": "Passer au graphique suivant", "Change Hours To": "Changer les heures pour", "charts by TradingView": "graphique par TradingView", "Long length_input": "Long length", "Flipped": "Basculé", "Disjoint Angle": "Angle Séparé", "Supermillennium": "Super millénaire", "W_interval_short": "W", "Color 6_input": "Color 6", "Log Scale": "Échelle Logaritmique", "Line - High": "Ligne Haute", "Minuette": "Menuet", "Equality Line_input": "Equality Line", "Open": "Ouverture", "Fib Wedge": "Coin de Fibonacci", "Line": "Droite", "Session": "Séance", "Down fractals_input": "Down fractals", "Fib Retracement": "Retracement de Fibonacci", "smalen2_input": "smalen2", "isCentered_input": "isCentered", "Border": "Bordure", "Klinger Oscillator_study": "Klinger Oscillator", "Absolute": "Absolu", "Show Left Scale": "Montrer l'Echelle de Gauche", "SMI Ergodic Indicator/Oscillator_study": "SMI Ergodic Indicator/Oscillator", "Aug": "Août", "Cross": "Croix", "Last available bar": "Dernière barre disponible", "Manage Drawings": "Gérer les Dessins", "Top": "Haut", "No drawings yet": "Pas de Dessins pour le moment", "Chande MO_input": "Chande MO", "Copy link": "Copier le lien", "TRIX_study": "TRIX", "MACD_study": "MACD", "RVGI_input": "RVGI", "Realtime": "Temps réel", "Last edited ": "Dernière édition ", "signalLength_input": "signalLength", "Reset Settings": "Réinitialiser les paramètres", "PnF": "Point et Figure", "d_dates": "j", "in %s_time_range": "in %s", "August": "Août", "Recalculate After Order filled": "Recalculer après l'ordre rempli", "Source_compare": "Source", "Correlation Coefficient_study": "Coefficient de Corellation", "Delayed": "Différé", "Bottom Labels": "Étiquettes du bas", "Text color": "Couleur du Texte", "Levels": "Niveaux", "Short Length_input": "Short Length", "teethLength_input": "teethLength", "Failure text color": "Couleur du Texte de l'Échec", "instrument is not allowed": "l'instrument n'est pas autorisé", "FAILURE": "ÉCHEC", "Open {{symbol}} Text Note": "Ouvrir {{symbol}} Note de Texte", "October": "Octobre", "Lock All Drawing Tools": "Verrouiller tous les Outils de Dessin", "Target border color": "Couleur de Bordure de l'Objectif", "Right End": "Extrémité de Droite", "Show Symbol Last Value": "Montrer le Symbole de la Dernière Valeur", "Head & Shoulders": "Tête et Épaules", "Do you really want to delete Study Template '{0}' ?": "Voulez-vous vraiment supprimer le modèle d'étude '{0}' ?", "Favorite Drawings Toolbar": "Barre d'outils de dessin favorite", "Properties...": "Propriétés...", "MA Cross_study": "MA Cross", "Trend Angle": "Angle de la Tendance", "Snapshot": "photo instantanée", "Crosshair": "Réticule", "Signal line period_input": "Signal line period", "Timezone/Sessions Properties...": "Propriétés des Fuseaux Horaires/Sessions", "Line Break": "Saut de ligne", "Quantity": "Quantité", "Price Volume Trend_study": "Price Volume Trend", "Auto Scale": "Mise à l'Échelle automatique", "hour": "heure", "Scales": "Échelles", "Delete chart layout": "Supprimer la configuration du graphique", "Text": "Texte", "F_data_mode_forbidden_letter": "F", "Risk/Reward long": "Risque/Récompense Long", "Apr": "Avr", "Long RoC Length_input": "Long RoC Length", "Length3_input": "Length3", "Cancel Order": "Annuler Ordre", "{0} copy": "Copier {0}", "Use one color": "Utiliser une couleur", "Chart Properties": "Propriétés du graphique", "Exit Full Screen (ESC)": "Sortir du mode Plein Ecran (ESC)", "Show Bars Range": "Montrer la Plage des Barres", "Show Economic Events on Chart": "Montrer les Evénements Economiques sur le Graphique", "%s ago_time_range": "il y a %s", "Zoom In": "Grossissement", "Failure back color": "Couleur de Fond de l'Échec", "Below Bar": "Sous Barre", "Coordinates": "Coordinées", "Time Scale": "Echelle de Temps", "

    Only D, W, M intervals are supported for this symbol/exchange. You will be automatically switched to a D interval. Intraday intervals are not available because of exchange policies.

    ": "

    Seuls les intervalles J, S, Msont pris en charge pour ce symbole/échange. Vous passerez automatiquement à un intervalle J. Les intervalles intra-jour ne sont pas disponibles en raison des politiques d'échange.

    ", "Extend Left": "Prolonger à Gauche", "Date Range": "Plage de Données", "Min Move": "Mouvement Min", "Price format is invalid.": "Le format du prix n'est pas valide.", "Show Price": "Montrer le Prix", "Level_input": "Level", "Commodity Channel Index_study": "Commodity Channel Index", "Elder's Force Index_input": "Elder's Force Index", "Scales Properties...": "Propriétés des Échelles...", "Currency": "Devise", "Color bars based on previous close": "Coloriser les Barres selon la Clôture Précédente", "Change band background": "Changer le fond du bandeau", "Marketplace Add-ons": "Marché des Extensions", "Adjust Scale": "Ajuster l'échelle", "Anchored Text": "Texte ancré", "Edit {0} Alert...": "Editer {0} Alerte...", "Text:": "Texte:", "Aroon_study": "Aroon", "show MA_input": "show MA", "h_dates": "h", "Short Position": "Position Short", "Show Labels": "Montrer les Étiquettes", "Change Interval...": "Changer l'intervalle...", "Apply Default": "Appliquer paramètres par Défaut", "SMALen3_input": "SMALen3", "Average Directional Index_study": "Average Directional Index", "Fr_day_of_week": "Fr", "Invite-only script. Contact the author for more information.": "Script sur invitation uniquement. Contactez l'auteur pour plus d'informations.", "Curve": "Courbe", "a year": "un an", "H_in_legend": "H", "Bars Pattern": "Type Barres", "D_input": "D", "Font Size": "Taille de l'écriture", "Change Interval": "Changer l’intervalle", "p_input": "p", "Chart layout name": "Nom du plan graphique", "Fib Circles": "Cercle de Fibonacci", "Apply Manual Decision Point": "Appliquer Point de Décision Manuel", "Dot": "Point", "Target back color": "Couleur de Fond de l'Objectif", "All": "Tous", "Show Positions": "Montrer Postitions", "orders_up to ... orders": "orders", "Lead 2_input": "Lead 2", "Save image": "Enregistrer l'Image", "Fundamentals": "Fondamentaux", "Unlock": "Déverrouiller", "Navigation Buttons": "Boutons de Navigation", "Miniscule": "Minuscule", "Apply": "Appliquer", "Precise Labels": "Les étiquettes précises", "Sine Line": "Ligne Sinus", "%d day": "%d jour", "Hide": "Cacher", "Bottom": "Bas", "Target text color": "Couleur de Texte de l'Objectif", "Scale Left": "Échelle à Gauche", "Elliott Wave Subminuette": "Vague d'Elliott Sous Inférieure ou Subminuette", "Down Wave C": "Vague Baissière C", "Jan": "Janv", "Source back color": "Couleur de Fond de la Source", "Sao Paulo": "São Paulo", "R_data_mode_realtime_letter": "R", "Apply Elliot Wave Minor": "Appliquer Vague d'Elliot Mineure", "Inputs": "Paramètres en Entrée", "Conversion Line_input": "Conversion Line", "March": "Mars", "Su_day_of_week": "Su", "Up fractals_input": "Up fractals", "Regression Trend": "Tendance de la Régression", "Symbol Description": "Description du symbole", "Double EMA_study": "Double EMA", "minute": "minutes", "Price Oscillator_study": "Price Oscillator", "Sync drawings to all charts": "Sync tracés sur tous les graphiques", "Chop Zone_study": "Chop Zone", "Stop Color:": "Couleur du Stop", "Stay in Drawing Mode": "Rester en Mode Dessin", "Bottom Margin": "Marge inférieure", "Save Chart Layout saves not just some particular chart, it saves all charts for all symbols and intervals which you are modifying while working with this Layout": "'Enregistrer la disposition des graphiques' n'enregistre pas seulement un graphique particulier, il enregistre tous les graphiques pour tous les symboles et les intervalles que vous modifiez tout en travaillant avec cette disposition", "Average True Range_study": "Moyenne de la vraie amplitude", "Max value_input": "Max value", "MA Length_input": "MA Length", "Invite-Only Scripts": "Scripts sur invitation seulement", "Time Interval": "Intervalle de Temps", "UpperLimit_input": "UpperLimit", "sym_input": "sym", "DI Length_input": "DI Length", "Script Editor...": "Editeur de Script...", "Extend Lines": "Prolonger les Droites", "SMI_input": "SMI", "Change Days To": "Changer les jours pour", "Square": "Carré", "Basis_input": "Basis", "Moving Average_study": "Moyenne mobile", "lengthStoch_input": "lengthStoch", "Objects Tree": "Arborescence des Objets", "Remove from favorites": "Retirer des favoris", "Copy": "Copier", "Scale Series Only": "Mettre à l'Échelle la Série seulement", "Simple": "Ligne continue", "Report a data issue": "Signaler un problème de données", "Arnaud Legoux Moving Average_study": "Arnaud Legoux Moyenne Mobile", "Technical Analysis": "Analyse Technique", "Lower Band_input": "Lower Band", "Verify Price for Limit Orders": "Vérifier le Prix Pour les Ordres Limites", "VI +_input": "VI +", "Line Width": "Épaisseur de la ligne", "Lead 1_input": "Lead 1", "Always Show Stats": "Toujours montrer les statistiques", "Down Wave 4": "Vague Baissière 4", "Down Wave 5": "Vague Baissière 5", "Simple ma(signal line)_input": "Simple ma(signal line)", "Ray": "Rayon", "Public Library": "Librairie publique", " Do you really want to delete Drawing Template '{0}' ?": " Voulez-vous vraiment supprimer le Modèle de Dessin '{0}' ?", "Down Wave 3": "Vague Baissière 3", "Close message": "Fermer le message", "long_input": "long", "Show Drawings Toolbar": "Montrer la Barre d'Outils de Dessin", "Chaikin Oscillator_study": "Chaikin Oscillator", "Balloon": "Ballon", "Market Open": "Ouverture du Marché", "Know Sure Thing_study": "Know Sure Thing", "Color Theme": "Modèle de Couleurs", "Centered_input": "Centered", "Bollinger Bands Width_input": "Bollinger Bands Width", "Apply Indicator on {0} ...": "Appliquer l'indicateur sur {0} ...", "Fib Speed Resistance Arcs": "Arcs de Résistance de la vitesse de Fibonacci", "Error occured while publishing": "Une erreur est survenue pendant la publication", "Fisher_input": "Fisher", "Color 1_input": "Color 1", "Moving Average Weighted_study": "Moving Average Weighted", "Save": "Sauvegarder", "Type": "Taper", "Chart Layout Name": "Nom du Plan Graphique", "Short period_input": "Short period", "Load Chart Layout": "Charger le plan graphique", "Show Values": "Montrer les Valeurs", "Fib Speed Resistance Fan": "Éventail de Résistance de la Vitesse de Fibonacci", "This chart layout has more than 1000 drawings, which is a lot! This may negatively affect performance, storage and publishing. We recommend to remove some drawings to avoid potential performance issues.": "Cette disposition de graphique a plus de 1000 dessins, ce qui est beaucoup! \nCela peut affecter négativement les performances, le stockage et la publication. Nous vous recommandons d'enlever certains dessins afin d'éviter des problèmes de performances potentiels.", "Left End": "Extrémité Gauche", "%d year": "%d years", "Always Visible": "Toujours visible", "S_data_mode_snapshot_letter": "S", "post-market": "Après-Marché", "Change Minutes To": "Modifier les minutes pour", "Earnings breaks": "Pénalités", "Do not ask again": "Ne demander plus", "MTPredictor": "MTPrédicteur", "Tue": "Mar", "smalen4_input": "smalen4", "CCI_input": "CCI", "Unmerge Up": "Défusionner vers le Haut", "increment_input": "increment", "(H + L)/2": "(H + B)/2", "XABCD Pattern": "Figure en XABCD", "Schiff Pitchfork": "Fourchette de Schiff", "powered by {0}": "fourni par {0}", "DEMA_input": "DEMA", "NV_input": "NV", "Choppiness Index_study": "Choppiness Index", "Study Template '{0}' already exists. Do you really want to replace it?": "Le Modèle d'Etude '{0}' existe déjà. Voulez-vous vraiment le remplacer ?", "Merge Down": "Fusionner vers le bas", "Th_day_of_week": "Th", "Studies": "Etudes", "eod delayed": "Fin de Journée Retardée", "Delete": "Effacer", "percent_input": "percent", "September": "Septembre", "Length_input": "Length", "Avg HL in minticks": "Ticks minimums moyens entre les valeurs hautes et basses", "Accumulation/Distribution_input": "Accumulation/Distribution", "C_in_legend": "C", "Weeks_interval": "Weeks", "smoothK_input": "smoothK", "Percentage_scale_menu": "Pourcentage", "Change Extended Hours": "Changer les heures prolongées", "MOM_input": "MOM", "h_interval_short": "h", "Rotated Rectangle": "Rectangle pivoté", "Modified Schiff": "Schiff modifié", "Symbol": "Symbole", "Adelaide": "Adélaïde", "Send Backward": "Mettre vers l'Arrière", "TRIX_input": "TRIX", "Show Price Range": "Montrer la Plage de Prix", "Elliott Major Retracement": "Retracement Principal d'Elliott", "Fri": "Ven", "just now": "à l'instant", "Forecast": "Prévision", "hour_plural": "heures", "Fraction part is invalid.": "La partie de fraction n'est pas valide.", "Connecting": "Connexion", "Ghost Feed": "Flux fantôme d'informations", "Histogram_input": "Histogram", "The Extended Trading Hours feature is available only for intraday charts": "L'option Heures de Trading Prolongées est disponible uniquement pour les graphiques intrajournaliers", "open": "ouvert", "StdDev_input": "StdDev", "Change Minutes From": "Modifier les minutes de", "Relative Strength Index_study": "Relative Strength Index", "Interval is not applicable": "Intervalle non applicable", "My Scripts": "Mes Scripts", "Monday": "Lundi", "-DI_input": "-DI", "short_input": "short", "top": "haut", "a month": "un mois", "Precision": "Précision", "depth_input": "depth", "Please enter chart layout name": "Veuillez entrer un nouveau de plan graphique", "Mar": "Mars", "Offset": "Décalage", "Format...": "Formater...", "__dayName__ __specialSymbolOpen__at__specialSymbolClose__ __dayTime__": "__dayName____specialSymbolOpen__à__specialSymbolClose____dayTime__", "Toggle Maximize Pane": "Basculer le volet Agrandir", "Periods_input": "Periods", "Zig Zag_study": "Zig Zag", "Actual": "Actuel", "SUCCESS": "SUCCÈS", "Detrended Price Oscillator_input": "Detrended Price Oscillator", "Drawings Toolbar": "Barre d'outils de dessin", "length_input": "length", "Close Position": "Fermer la Position", "Price Line": "Ligne de Prix", "Area With Breaks": "Zone interrompue", "Zoom Out": "Réduction", "Stop Level. Ticks:": "Niveau du Stop en Ticks", "Jul": "Juill", "Above Bar": "Barre Au-dessus", "Visual Order": "Ordre de visualisation", "Warning": "Avertissement", "__specialSymbolOpen__Yesterday at__specialSymbolClose__ __dayTime__": "__specialSymbolOpen__Hier à__specialSymbolClose____dayTime__", "Stop Background Color": "Couleur de Fond du Stop", "Slow length_input": "Slow length", "Conversion Line Periods_input": "Conversion Line Periods", "Sector": "Secteur", "powered by TradingView": "fourni par TradingView", "Stochastic_study": "Stochastic", "Apply WPT Down Wave": "Appliquer Objectif - Vague vers le Bas", "Marker Color": "Couleur du marquer", "TEMA_input": "TEMA", "Apply WPT Up Wave": "Appliquer Objectif - Vague vers le Haut", "Min Move 2": "Mouvement Min 2", "Directional Movement_study": "Directional Movement", "Extend Left End": "Prolonger l'Extrémité Gauche", "Advance/Decline_study": "Advance/Decline", "Flag Mark": "Marque de Drapeau", "Drawings": "Dessins", "Fast length_input": "Fast length", "Cancel": "Annuler", "Bar #": "Numéro de Barre", "Redo": "Recommencer", "Hide Drawings Toolbar": "Cacher la barre d'outils de dessin", "Ultimate Oscillator_study": "Ultimate Oscillator", "This chart layout has a lot of objects and can't be published! Please report to {0} for further details.": "Cette disposition de graphiques a beaucoup d'objets et ne peut pas être publiée! Veuillez vous reporter à {0} pour plus  de détails", "Vert Grid Lines": "Lignes Verticales de grille", "Growing_input": "Growing", "Show Only Future Events": "Montrer Uniquement les Evénements Futurs", "Plot_input": "Plot", "Color 8_input": "Color 8", "Indicators, Fundamentals, Economy and Add-ons": "Indicateurs, Fondamentaux, Économie et Compléments", "Search": "Chercher", "Bollinger Bands Width_study": "Bollinger Bands Width", "roclen3_input": "roclen3", "Overbought_input": "Overbought", "DPO_input": "DPO", "Levels Line": "Ligne des Niveaux", "No study templates saved": "Aucun modèle d'analyse sauvegardé", "Trend Line": "Droite de Tendance", "Relative Vigor Index_study": "Relative Vigor Index", "Your chart is being saved, please wait a moment before you leave this page.": "La sauvegarde de votre graphique est en cours, veuillez attendre un moment avant de quitter la page.", "Circle": "Cercle", "Price Range": "Plage de Prix", "Extended Hours": "Horaire étendu", "Line With Breaks": "Ligne Interrompue", "Period_input": "Period", "Watermark": "Filigrane", "Trigger_input": "Trigger", "SigLen_input": "SigLen", "Clone": "Dupliquer", "Color 2_input": "Color 2", "Show Prices": "Montrer les Prix", "Contracts": "Contrats", "{0} chart by TradingView": "{0} graphique par TradingView", "Timezone/Sessions": "Fuseaux Horaires/Sessions", "Save Indicator Template As...": "Sauvegarder le Modèle d'Indicateur Sous...", "Arrow Mark Right": "Flèche vers la Droite", "Background color 2": "Couleur de Fond 2", "Background color 1": "Couleur de Fond 1", "Circles": "Cercles", "McGinley Dynamic_study": "McGinley Dynamic", "Visible on Mouse Over": "Visible avec déplacement de la souris", "Thu": "Jeu", "Vortex Indicator_study": "Vortex Indicator", "Williams Alligator_study": "Williams Alligator", "ROCLen1_input": "ROCLen1", "Border Color": "Couleur de la Bordure", "M_interval_short": "M", "Change Symbol...": "Changer le Symbole", "Price Levels": "Niveaux de Prix", "Show Splits": "Montrer les Splits", "Zero Line_input": "Zero Line", "__specialSymbolOpen__Today at__specialSymbolClose__ __dayTime__": "__specialSymbolOpen__ajourd'hui à__specialSymbolClose____dayTime__", "Increment_input": "Increment", "Days_interval": "Days", "Show Right Scale": "Montrer Echelle de Droite", "Show Alert Labels": "Afficher les Titres des Alertes", "Net Volume_study": "Volume net", "Lock": "Verrouiller", "length14_input": "length14", "Sa_day_of_week": "Sa", "High": "Haut", "Date and Price Range": "Date et étendue de prix", "Polyline": "Ensemble de Lignes", "Reconnect": "Reconnecter", "Add to favorites": "Ajouter aux favoris", "Saturday": "Samedi", "Symbol Last Value": "Dernière valeur du symbole", "Color 0_input": "Color 0", "maximum_input": "maximum", "Wed": "Mer", "D_data_mode_delayed_letter": "D", "Symbol Info": "Info du Symbole", "Pyramiding": "Pyramidage", "fastLength_input": "fastLength", "Width": "Largeur", "Loading": "en chargement", "Historical Volatility_study": "Volatilité Historique", "Template": "Espace de Travail", "Compare or Add Symbol...": "Comparer ou Ajouter un Symbole...", "Parallel Channel": "Canal parallèle", "Time Cycles": "Cycles de temps", "Second fraction part is invalid.": "La deuxième partie de fraction n'est pas valide.", "Divisor_input": "Divisor", "Down Wave 1 or A": "Vague Baissière 1 ou A", "ROC_input": "ROC", "Dec": "Déc", "Extend": "Prolonger", "length7_input": "length7", "Toggle Maximize Chart": "Agrandir le graphique", "Undo": "Annuler", "Window Size_input": "Window Size", "Mon": "Lun", "Reset Scale": "Réinitialiser l'Échelle", "Long Length_input": "Long Length", "True Strength Indicator_study": "True Strength Indicator", "%R_input": "%R", "There are no saved charts": "Aucun graphique n'est sauvegardé", "Instrument is not allowed": "instrument non permis", "bars_margin": "barres", "Show Indicator Last Value": "Montrer la Dernière Valeur de l'Indicateur", "Initial capital": "Capital initial", "Show Angle": "Afficher Angle", "Indicator Last Value": "Dernière valeur de l'indicateur", "More features on tradingview.com": "Plus de fonctionnalités sur tradingview.com", "smalen3_input": "smalen3", "Length1_input": "Length1", "Always Invisible": "Toujours invisible", "Days": "Jours", "x_input": "x", "Save As...": "Sauvegarder Sous...", "Lock/Unlock": "Verrouiller/Déverrouiller", "Elliott Double Combo Wave (WXY)": "Vague Elliott Double Combo (WXY)", "Parabolic SAR_study": "Parabolic SAR", "Fisher Transform_study": "Fisher Transform", "Show Hidden Tools": "Montrer les Outils Cachés", "Hollow Candles": "Bougies Creuses", "Any Symbol": "N'importe quel Symbole", "UO_input": "UO", "Stats Text Color": "Couleur du texte des Statistiques", "Short RoC Length_input": "Short RoC Length", "Countdown": "Compte à rebours", "Jaw_input": "Jaw", "Right": "Droite", "Help": "Aide", "Coppock Curve_study": "Coppock Curve", "Reset Chart": "Réinitialiser le Graphique", "Sep": "Sept", "Sunday": "Dimanche", "Themes": "Thèmes", "Left Axis": "Axe de gauche", "YES": "Oui", "longlen_input": "longlen", "Moving Average Exponential_study": "Moyenne mobile exponentielle", "Source border color": "Couleur de la Bordure de la Source", "Redo {0}": "Répéter", "Cypher Pattern": "Modèle Cypher", "s_dates": "s", "Move Down": "Déplacer vers le Bas", "Area": "Région", "invalid symbol": "Symbole Invalide", "Triangle Pattern": "Figure en Triangle", "Gann Fan": "Éventail de Gann", "Balance of Power_study": "Équilibre des forces", "EOM_input": "EOM", "Apply Manual Risk/Reward": "Appliquer Risque/Rendement Manuel", "Market Closed": "Marché fermé", "Indicators": "Indicateurs", "q_input": "q", "You are notified": "Vous êtes notifié", "%D_input": "%D", "Text Alignment:": "Alignement du Texte:", "Offset_input": "Offset", "Risk": "Risque", "Price Scale": "Echelle de prix", "HV_input": "HV", "Seconds": "Secondes", "(H + L + C)/3": "(H + B + C)/3", "Start_input": "Début", "Hours": "Heures", "Send to Back": "Mettre au Fond", "Color 4_input": "Color 4", "closed": "Fermé", "Prices": "Prix", "Extended Hours (Intraday Only)": "Heures étendues (Graphiques journalier seulement)", "July": "Juillet", "Create Horizontal Line": "Tracer une Ligne Horizontale", "ADX Smoothing_input": "ADX Smoothing", "One color for all lines": "Une couleur pour toutes les lignes", "m_dates": "m", "Settings": "Configurations", "Drawing Tools": "Outils de Dessin", "Candles": "Bougies", "We_day_of_week": "We", "Pre Market": "Pré-marché", "Width (% of the Box)": "Largeur (% de la boîte)", "week_plural": "semaines", "Pip Size": "Valeur du pip", "Wednesday": "Mercredi", "This drawing is used in alert. If you remove the drawing, the alert will be also removed. Do you want to remove the drawing anyway?": "Ce dessin est utilisé en alerte. Si vous supprimez le dessin, l'alerte sera également supprimée. Souhaitez-vous supprimer le dessin de toute façon?", "Hide All Drawing Tools": "Cacher tous les Outils de Dessin", "Show alert label line": "Montrer l'étiquette de la ligne d'alerte", "Down Wave 2 or B": "Vague Baissière 2 ou B", "MA_input": "MA", "Detrended Price Oscillator_study": "Detrended Price Oscillator", "not authorized": "non autorisé", "Image URL": "URL de l'image", "SMI Ergodic Oscillator_input": "SMI Ergodic Oscillator", "Show Objects Tree": "Montrer l'Arborescence des Objects", "Primary": "Vague Principale", "Price:": "Prix:", "Gann Box": "Boite de Gan", "Bring to Front": "Mettre au premier plan", "Brush": "Pinceau", "Not Now": "Pas Maintenant", "lengthRSI_input": "lengthRSI", "Yes": "Oui", "Events & Alerts": "Évènements et Alertes", "+DI_input": "+DI", "Apply Default Drawing Template": "Appliquer le modèle de dessin par défaut", "Save As Default": "Sauvegarder comme Paramètres par Défaut", "Invalid Symbol": "Symbole invalide", "Inside Pitchfork": "Fourchette Interne", "yay Color 1_input": "yay Color 1", "Quandl is a huge financial database that we have connected to TradingView. Most of its data is EOD and is not updated in real-time, however the information may be extremely useful for fundamental analysis.": "Quandl est une base de données financières énorme que nous avons reliée à TradingView. La plupart des données sont des données de fin de journée et ne sont pas mises à jour en temps réel, mais les informations peuvent être extrêmement utiles pour l'analyse fondamentale.", "Hide Marks On Bars": "Cacher les marques de la barre", "Middle_input": "Middle", "Show Countdown": "Montrer décompte", "WMA Length_input": "WMA Length", "Show Dividends on Chart": "Afficher les dividendes sur le graphique", "Show Executions": "Afficher les exécutions", "Borders": "Bordures", "month_plural": "mois", "loading...": "chargement...", "Closed_line_tool_position": "Fermé", "Columns": "Colonnes", "Change Resolution": "Changer la Résolution", "Indicator Arguments": "Arguments de l'indicateur", "Fib Spiral": "Spirale de Fibonacci", "Apply Elliot Wave": "Appliquer Vague d'Eliliot", "Degree": "Degré", " per order": " par ordre", "Line - HL/2": "Ligne - Haut et Bas Divisé par 2", "Up Wave 4": "Vague Haussière 4", "Jun": "Juin", "Least Squares Moving Average_study": "Least Squares Moving Average", "Change Variance value": "Changer la valeur de variance", "Overlay the main chart": "Superposer sur le graphique principal", "powered by ": "fourni par ", "Source_input": "Source", "Change Seconds To": "Changer les secondes pour", "%K_input": "%K", "Success back color": "Couleur de fond en cas de succès", "Please enter template name": "Veuillez entrer le nom du modèle", "Symbol Name": "Nom du symbole", "Events Breaks": "Pause entre Événements", "Study Templates": "Modèles d'étude", "Months": "Mois", "Symbol Info...": "Info du Symbole...", "Elliott Wave Minor": "Vague d'Elliott Mineure", "Read our blog for more info!": "Lisez notre blog pour plus d'infos!", "Measure (Shift + Click on the chart)": "Mesure (Majuscule+Cliquer sur le Graphique)", "Override Min Tick": "Ne pas tenir compte du Tick minimum", "Thursday": "Jeudi", "Dialog": "Dialogue", "Add To Text Notes": "Ajouter aux Notes de Texte", "Elliott Triple Combo Wave (WXYXZ)": "Vague Triple Combo Elliott (WXYXZ)", "Multiplier_input": "Multiplier", "Risk/Reward": "Risque/Récompense", "Base Line Periods_input": "Base Line Periods", "Show Dividends": "Montrer les Dividendes", "pre-market": "Pré-Marché", "Top Labels": "Étiquettes du Haut", "Show Earnings": "Montrer les Gains", "Line - Open": "Ligne - Ouvrir", "%d day_plural": "%d jours", "Elliott Triangle Wave (ABCDE)": "Vague Triangle Elliott (ABCDE)", "Text Wrap": "Retour à la ligne forcé du Texte", "Reverse Position": "Inverser la Position", "Elliott Minor Retracement": "Retracement Mineur d'Elliott", "Pitchfan": "Éventail", "No symbols matched your criteria": "Aucun symbole ne correspond à vos critères", "Icon": "Icône", "Short_input": "Short", "Tuesday": "Mardi", "Indicator_input": "Indicator", "Open Interval Dialog": "Ouvrir la fenêtre intervalle de temps", "Athens": "Athènes", "Q_input": "Q", "Content": "Contenu", "middle": "Milieu", "Lock Cursor In Time": "Verrouiller le curseur dans le temps", "Intermediate": "Intermédiaire", "Eraser": "Gomme", "TimeZone": "Fuseau Horaire", "Envelope_study": "Envelope", "Symbol Labels": "Etiquettes des Symboles", "Active Symbol": "Activer le symbole", "Horizontal Line": "Droite Horizontale", "O_in_legend": "O", "Right Labels": "Étiquettes à droite", "HL Bars": "Barres Haut-Bas", "Add Alert": "Ajouter Alerte", "Lines:": "Droites:", "Hide Favorite Drawings Toolbar": "Masquer la barre d'outils Dessins favoris", "useTrueRange_input": "useTrueRange", "Profit Level. Ticks:": "Niveau de Profit. Ticks:", "Show Date/Time Range": "Montrer la Plage de Temps", "Level {0}": "Niveau {0}", "Horz Grid Lines": "Lignes de la grille Horz", "Text Notes are available only on chart page. Please open a chart and then try again.": "Les Notes de Texte sont seulement disponibles sur la page du graphique. Veuillez ouvrir un graphiqueet réessayer.", "Tu_day_of_week": "Tu", "day": "jour", "deviation_input": "deviation", "week": "semaine", "Base currency": "Devise de base", "VWMA_study": "VWMA", "Success text color": "Couleur de Texte en cas de succès", "ADX smoothing_input": "ADX smoothing", "%d hour": "%d heure", "Order size": "Taille de l'Ordre", "Displacement_input": "Displacement", "Save Indicator Template As": "Sauvegarder le Modèle d'Indicateur Sous", "ADR_B_input": "ADR_B", "Chaikin Money Flow_study": "Chaikin Money Flow", "Ease Of Movement_study": "Ease Of Movement", "Defaults": "Configurations par Défaut", "Oversold_input": "Oversold", "Williams %R_study": "Williams %R", "Visual settings...": "Paramètres de visualisation", "RSI_input": "RSI", "Long period_input": "Long period", "Mo_day_of_week": "Mo", "center": "Centre", "Vertical Line": "Droite Verticale", "Show Splits on Chart": "Afficher les divergences sur le graphique", "Sorry, the Copy Link button doesn't work in your browser. Please select the link and copy it manually.": "Désolé, le bouton Copier le Lien ne fonctionne pas avec votre navigateur. Veuillez sélectionner le lien et le copier manuellement.", "X_input": "X", "C_data_mode_connecting_letter": "C", "Simple ma(oscillator)_input": "Simple ma(oscillator)", "May": "Mai", "SMALen4_input": "SMALen4", "ROCLen4_input": "ROCLen4", "Aroon Down_input": "Aroon Down", "Add To Watchlist": "Ajouter à la liste à Surveiller", "Extend Right": "Prolonger à Droite", "left": "restant", "Lock scale": "Verrouiller l'Échelle", "Time Levels": "Niveaux de Temps", "Arrow": "Flèche", "smalen1_input": "smalen1", "Drawing Template '{0}' already exists. Do you really want to replace it?": "Le modèle de dessin '{0}' existe déjà. Voulez-vous vraiment le remplacer ?", "Extend Right End": "Prolonger l'Extrémité Droite", "Fans": "Éventails de lignes", "Line - Low": "Ligne basse", "Price_input": "Price", "Close_input": "Close", "Arrow Mark Down": "Flèche vers le Bas", "Weeks": "Semaines", "Modified Schiff Pitchfork": "Fourchette de Schiff Modifiée", "Relative Volatility Index_study": "Relative Volatility Index", "Elliott Impulse Wave (12345)": "Vague Impulsion Elliott (12345)", "PVT_input": "PVT", "Circle Lines": "Ligne Circulaire", "Hull Moving Average_study": "Hull Moving Average", "Save Drawing Template As": "Sauvegarder le Modèle de Dessin Sous", "Bring Forward": "Mettre en avant", "Apply Defaults": "Appliquer les paramètres de base", "Friday": "Vendredi", "Zero_input": "Zero", "Company Comparison": "Comparaison de société", "Stochastic Length_input": "Stochastic Length", "mult_input": "mult", "URL cannot be received": "L'URL ne peut pas être reçue", "Signal smoothing_input": "Signal smoothing", "E_data_mode_end_of_day_letter": "E", "Trend-Based Fib Extension": "Prolongation de Fibonacci selon la Tendance", "Analyze Trade Setup": "Analyser la Configuration du Trade", "Double Curve": "Double Courbe", "Stochastic RSI_study": "Stochastic RSI", "Horizontal Ray": "Rayon Horizontal", "Ok": "D'accord", "Edit Order": "Editer l'Ordre", "Trades on Chart": "Les Trades sur le graphique", "Chaikin Oscillator_input": "Chaikin Oscillator", "Listed Exchange": "Bourse agréée", "Error:": "Erreur:", "Fullscreen mode": "Mode plein écran", "Add Text Note For {0}": "Ajouter une Note de Texte pour {0}", "K_input": "K", "In Session": "En session", "ROCLen3_input": "ROCLen3", "Restore Size": "Restaurer la Taille", "Text Color": "Couleur du Texte", "Extend Alert Line": "Prolonger la ligne d'alerte", "Oops!": "Oups!", "New Zealand": "Nouvelle Zélande", "CHOP_input": "CHOP", "Scale": "Échelle", "Screen (No Scale)": "Taille Écran (aucune mise à l'Échelle)", "Extended Alert Line": "Ligne d'Alerte étendue", "Signal_input": "Signal", "like": "likes", "Original": "Initial", "Show": "Montrer", "Exchange": "Marché", "{0} bars": "{0} barres", "Lower_input": "Lower", "Created ": "Créé ", "Up Wave 2 or B": "Vague Haussière 2 ou B", "Elder's Force Index_study": "Index de Force Elder", "Show Earnings on Chart": "Montrer les gains sur le graphique", "ATR_input": "ATR", "Do you really want to delete Color Theme '{0}' ?": "Voulez-vous vraiment supprimer lethème de couleur '{0}' ?", "Low": "Bas", "Bollinger Bands %B_study": "Bollinger Bands %B", "Time Zone": "Fuseau Horaire", "right": "Droite", "%d month": "%d months", "Wrong value": "Valeur erronée", "Upper Band_input": "Upper Band", "Sun": "Dim", "Rename...": "Renommer...", "February": "Février", "start_input": "start", "No indicators matched your criteria.": "Aucun indicateur ne correspond à vos critères", "Short length_input": "Short length", "Kolkata": "Calcuta", "Submillennium": "Sous-millenaire", "Precise Labels_scale_menu": "Precise Labels", "Smoothed Moving Average_study": "Smoothed Moving Average", "Do you really want to delete Drawing Template '{0}' ?": "Voulez-vous vraiment supprimer le modèle de dessin '{0}' ?", "Chatham Islands": "Îles Chatham", "Channel": "Canal", "Stop syncing drawing": "Arrêter la synchronisation du dessin", "FXCM CFD data is available only to FXCM account holders": "Les cotations des CFDs de FXCM ne sont disponibles qu'aux détenteurs de comptes chez FXCM.", "Lagging Span 2 Periods_input": "Lagging Span 2 Periods", "Connecting Line": "Ligne de liaison", "Seoul": "Séoul", "bottom": "Bas", "Teeth_input": "Teeth", "Moscow": "Moscou", "Save New Chart Layout": "Enregistrer le nouveau plan graphique", "Fib Channel": "Canal de Fibonacci", "Visibility": "Visibilité", "Events": "Événements", "Save Drawing Template As...": "Sauvegarder le Modèle de Dessin Sous...", "Minutes_interval": "Minutes", "Insert Study Template": "Insérer un Modèle d'Etude", "exponential_input": "exponential", "%d hour_plural": "%d heures", "OnBalanceVolume_input": "OnBalanceVolume", "roclen2_input": "roclen2", "Chande Momentum Oscillator_study": "Chande Momentum Oscillator", "Not applicable": "Non applicable", "or copy url:": "ou copier l'URL", "Bollinger Bands %B_input": "Bollinger Bands %B", "Template name": "Nom du modèle", "Indicator Values": "Valeurs de l'indicateur", "Lips Length_input": "Lips Length", "Use Upper Deviation_input": "Use Upper Deviation", "L_in_legend": "B", "Remove custom interval": "Supprimer l'intervalle personnalisé", "shortlen_input": "shortlen", "Quotes are delayed by {0} min": "Les cotations sont différées de {0} min", "Copied to clipboard": "Copié dans le presse-papier", "ADX_input": "ADX", "Profit Background Color": "Couleur de Fond des Profits", "Bar's Style": "Style de barre", "Exponential_input": "Exponential", "ROCLen2_input": "ROCLen2", "Use Lower Deviation_input": "Use Lower Deviation", "Previous": "Précédent", "Stay In Drawing Mode": "Rester en Mode Dessin", "Comment": "Commentaire", "Long_input": "Long", "Bars": "Barres", "Source text color": "Couleur du Texte de la Source", "Flat Top/Bottom": "Haut/Bas Plat", "Symbol Type": "Type de symbole", "loading data": "Données en chargement", "December": "Décembre", "Lock drawings": "Verrouiller les dessins", "Border color": "Couleur de la Bordure", "Change Seconds From": "Changer les secondes à partir de", "Left Labels": "Étiquettes de Gauche", "Insert Indicator...": "Ajouter un indicateur", "P_input": "P", "Paste %s": "Coller %s", "Timezone": "Fuseau horaire", "Invite-only script. You have been granted access.": "Script sur invitation uniquement. L’accès vous a été accordé.", "Sat": "Sam", "{0} financials by TradingView": "{0} données financières par TradingView", "Feb": "Févr", "Transparency": "Transparence", "No": "Non", "All Indicators And Drawing Tools": "Tous les Indicateurs Et Outils de Dessin", "Cyclic Lines": "Lignes Périodiques", "length28_input": "length28", "ABCD Pattern": "Figure en ABCD", "When selecting this checkbox the study template will set \"__interval__\" interval on a chart": "Lorsque vous cochez cette case, le modèle d'étude appliquera __interval__ comme Intervalle sur un graphique", "NO": "Non", "Add": "Ajouter", "OC Bars": "Barres Ouverture Fermeture", "Millennium": "Millénaire", "Price Label": "Étiquette de Prix", "Graphics": "Graphiques", "NEW": "NOUVEAU", "Wick": "Mèche", "Hull MA_input": "Hull MA", "Callout": "Bulle", "Lock Scale": "Verrouiller l'Échelle", "Extended": "Étendue", "Three Drives Pattern": "Modèle Three Drives", "Create Vertical Line": "Tracer une Ligne Verticale", "Median_input": "Median", "Top Margin": "Marge en Haut", "Length2_input": "Length2", "Insert Drawing Tool": "Insérer l'Outil de Dessin", "OHLC Values": "Valeurs OHLC", "Correlation_input": "Correlation", "Scales Text": "Texte des Échelles", "Session Breaks": "Arrêts de Session", "Add {0} To Watchlist": "Ajouter {0} à la liste de surveillance", "Anchored Note": "Note ancrée", "lipsLength_input": "lipsLength", "Apply Indicator on {0}": "Appliquer l'indicateur sur {0}", "roclen4_input": "roclen4", "November": "Novembre", "Tehran": "Téhéran", "Background Color": "Couleur de Fond", "an hour": "une heure", "Right Axis": "Axe de droite", "D_data_mode_delayed_streaming_letter": "D", "VI -_input": "VI -", "slowLength_input": "slowLength", "Click to set a point": "Cliquer pour mettre un point", "January": "Janvier", "delayed": "retardée", "n/a": "n/d", "Indicator Titles": "Titres de l'indicateur", "retrying": "Nouvelle Tentative", "Change area background": "Changer le fond de la surface", "Error": "Erreur", "Edit Position": "Editer la Position", "RVI_input": "RVI", "Awesome Oscillator_study": "Oscillateur impressionnant", "Recalculate On Every Tick": "Recalculer Sur Chaque Tick", "Left": "Gauche", "Show Text": "Montrer le Texte", "Objects Tree...": "Arborescence des Objets", "Compare": "Comparer", "Add Symbol": "Ajouter un Symbole", "Show Orders": "Voir les Ordres", "Track time": "Suivre le temps", "Enter a new chart layout name": "Entrer un nouveau nom du plan graphique", "Signal Length_input": "Signal Length", "Properties": "Propriétés", "Teeth Length_input": "Teeth Length", "Point Value": "Valeur du point", "D_interval_short": "D", "Close": "Clôture", "ParabolicSAR_input": "ParabolicSAR", "Log Scale_scale_menu": "Échelle Logarithmique", "MACD_input": "MACD", "Do not show this message again": "Ne plus montrer ce message", "{0} P&L: {1}": "{0} Gains&Pertes: {1}", "Up Wave 3": "Vague Haussière 3", "Arrow Mark Left": "Flèche vers la Gauche", "Source Code...": "Code Source...", "Up Wave 5": "Vague Haussière 5", "Line - Close": "Ligne - Fermer", "(O + H + L + C)/4": "(O + H + B + C)/4", "Confirm Inputs": "Confirmer les entrées", "Open_line_tool_position": "Ouvert", "Lagging Span_input": "Lagging Span", "Subminuette": "Sous-menuet", "Mirrored": "Reflété", "Price": "Prix", "Triple EMA_study": "Triple EMA", "Elliott Correction Wave (ABC)": "Vague de correction Elliott (ABC)", "Error while trying to create snapshot.": "Erreur lors de la création de l'instantané.", "Label Background": "Fond de l'Étiquette", "Templates": "Espaces de Travail", "Please report the issue or click Reconnect.": "Veuillez signaler le problème ou cliquez sur Reconnecter.", "1. Slide your finger to select location for first anchor
    2. Tap anywhere to place the first anchor": "1.Glisser votre doigt pour choisir l'endroit du premier ancrage
    2.Taper n'importe où pour placer le premier ancrage", "Signal Labels": "Étiquettes du signal", "compiling...": "compilation...", "Are you sure?": "Êtes-vous sûr?", "Color 5_input": "Color 5", "Scale Price Chart Only": "Mise à l’échelle des prix du graphique uniquement", "Default": "Par Défaut", "auto_scale": "automatique", "Background": "Arrière-Plan", "% of equity": "% d'équité", "Apply Elliot Wave Intermediate": "Appliquer Vague d'Elliot Intermédiaire", "VWMA_input": "VWMA", "Lower Deviation_input": "Lower Deviation", "Save Interval": "Sauvegarder l'Intervalle", "Extend Lines Left": "Etendre les lignes à gauche", "Reverse": "Inverse", "Oops, something went wrong": "Oups, quelque chose n'a pas fonctionné", "Shapes_input": "Shapes", "Median": "Médiane", "Show Source Code": "Voir le Code Source", "Remove": "Retirer ", "len_input": "len", "Arrow Mark Up": "Flèche vers le Haut", "April": "Avril", "log": "Logarithme", "Crosses_input": "Crosses", "KST_input": "KST", "Sync drawing to all charts": "Sync les tracés sur tous les graphiques", "LowerLimit_input": "LowerLimit", "day_plural": "jours", "Copy Chart Layout": "Copier le plan graphique", "Compare...": "Comparer...", "1. Slide your finger to select location for next anchor
    2. Tap anywhere to place the next anchor": "1.Glisser votre doigt pour choisir l'endroit de l'ancrage suivant
    2.Taper n'importe où pour placer l'ancrage suivant", "Compare or Add Symbol": "Comparer ou Ajouter un Symbole", "Color": "Couleur", "Aroon Up_input": "Aroon Up", "Singapore": "Singapour", "Scales Lines": "Axes", "Type the interval number for munute charts (i.e. 5 if it is going to be a five minute chart). Or number plus letter for H (Hourly), D (Daily), W (Weekly), M (Monthly) intervals (i.e. D or 2H)": "Tapez le numéro d'intervalle pour les graphiques de minute (c'est-à-dire 5 s'il s'agit d'un graphique de cinq minutes). Ou le nombre et la lettre pour les intervalles H (horaire), D (quotidien), W (hebdomadaire), M (mensuel) (c'est-à-dire D ou 2H)", "Up Wave C": "Vague Haussière C", "Show Distance": "Montrer la Distance", "Risk/Reward Ratio: {0}": "Ratio Risque/Récompense: {0}", "Volume Oscillator_study": "Volume Oscillator", "Williams Fractal_study": "Williams Fractal", "Merge Up": "Fusionner vers le Haut", "Right Margin": "Marge Droite", "Open Manage Drawings": "Ouvrir Gérer les dessins", "Warsaw": "Varsovie"} \ No newline at end of file +{"ticks_slippage ... ticks": "ticks", "Months_interval": "Mois", "Realtime": "Temps réel", "RSI Length_input": "Longueur RSI", "Sync to all charts": "Synchroniser tous les tableaux", "month": "mois", "London": "Londres", "roclen1_input": "roclen1", "Unmerge Down": "Défusionner vers le Bas", "Percents": "Pourcents", "Search Note": "Chercher une Note", "Minor": "Mineur", "Do you really want to delete Chart Layout '{0}' ?": "Voulez-vous vraiment supprimer la configuration du graphique '{0}' ?", "Quotes are delayed by {0} min and updated every 30 seconds": "Les cotations sont différées de {0} minute et mises à jour toutes les 30 secondes", "Magnet Mode": "Mode aimanté", "OSC_input": "OSC", "Hide alert label line": "Masquer la ligne de l'identifiant d'alerte", "Volume_study": "Volume", "Lips_input": "Lips", "Show real prices on price scale (instead of Heikin-Ashi price)": "Montrer les prix réels sur l'échelle de prix (au lieu du prix Heikin-Ashi)", "Histogram": "Histogramme", "Base Line_input": "Ligne de base", "Step": "En Marche d'Escalier", "Insert Study Template": "Insérer un modèle d'étude", "Fib Time Zone": "Zone Temporelle de Fibonacci", "SMALen2_input": "SMALen2", "Bollinger Bands_study": "Bollinger Bands", "Show/Hide": "Montrer/Cacher", "Upper_input": "Supérieur", "Sig_input": "Sig", "Move Up": "Déplacer vers le Haut", "Symbol Info": "Info du Symbole", "This indicator cannot be applied to another indicator": "Cet indicateur ne peut pas être appliqué à un autre indicateur.", "Scales Properties...": "Propriétés des Échelles...", "Count_input": "Compter", "Full Circles": "Cercles complets", "Industry": "Industrie", "OnBalanceVolume_input": "Volume OnBalance", "Cross_chart_type": "Cross", "H_in_legend": "H", "a day": "un jour", "Pitchfork": "Fourchette", "R_data_mode_replay_letter": "R", "Accumulation/Distribution_study": "Accumulation/Répartition", "Rate Of Change_study": "Taux de changement", "Text Font": "Police de texte", "in_dates": "en", "Clone": "Cloner", "Color 7_input": "Couleur 7", "Chop Zone_study": "Chop Zone", "Bar #": "Numéro de Barre", "Scales Properties": "Propriétés des Échelles", "Trend-Based Fib Time": "Temps de Fibonacci selon la Tendance", "Remove All Indicators": "Retirer tous les Indicateurs", "Oscillator_input": "Oscillateur", "Last Modified": "Dernière modification", "yay Color 0_input": "yay Couleur 0", "Labels": "Étiquettes", "Chande Kroll Stop_study": "Stop Chande Kroll", "Hours_interval": "Hours", "Allow up to": "Autoriser jusqu'à", "Scale Right": "Échelle à Droite", "Money Flow_study": "Flux d'argent", "siglen_input": "siglen", "Indicator Labels": "Étiquettes d'indicateurs", "__specialSymbolOpen__Tomorrow at__specialSymbolClose__ __dayTime__": "__specialSymbolOpen__Demain à__specialSymbolClose____dayTime__", "Toggle Percentage": "Echelle en pourcentage", "Remove All Drawing Tools": "Retirer tous les Outils de Dessin", "Remove all line tools for ": "Supprimer tous les outils de ligne pour ", "Linear Regression Curve_study": "Courbe de régression linéaire", "Symbol_input": "Symbole", "increment_input": "incrément", "Compare or Add Symbol...": "Comparer ou Ajouter un Symbole...", "__specialSymbolOpen__Last__specialSymbolClose__ __dayName__ __specialSymbolOpen__at__specialSymbolClose__ __dayTime__": "__specialSymbolOpen__Dernier__specialSymbolClose____dayName____specialSymbolOpen__à__specialSymbolClose____dayTime__", "Save Chart Layout": "Sauvegarder la Configuration du Graphique", "Number Of Line": "Numéro de la ligne", "Label": "Étiquette", "Post Market": "Post-marché", "second": "seconde", "Change Hours To": "Changer les heures pour", "smoothD_input": "smoothD", "Falling_input": "En chute", "X_input": "X", "Risk/Reward short": "Ration Risque/Récompense transaction de vente", "UpperLimit_input": "Limite supérieure", "Donchian Channels_study": "Donchian Channels", "Entry price:": "Prix d'Entrée", "Circles": "Cercles", "Head": "Tête", "Stop: {0} ({1}) {2}, Amount: {3}": "Stop: {0} ({1}) {2}, Montant: {3}", "Mirrored": "Reflété", "Ichimoku Cloud_study": "Nuage Ichimoku", "Signal smoothing_input": "Adoucissement du signal", "Use Upper Deviation_input": "Utiliser l'écart supérieur", "Toggle Auto Scale": "Mise à l'échelle automatique", "Grid": "Grille", "Triangle Down": "Triangle vers le bas", "Apply Elliot Wave Minor": "Appliquer Vague d'Elliot Mineure", "Rename...": "Renommer...", "Smoothing_input": "Adoucissement", "Color 3_input": "Couleur 3", "Jaw Length_input": "Longueur de Jaw", "Inside": "À l'intérieur", "Delete all drawing for this symbol": "Supprimer tout le dessin pour ce symbole", "Fundamentals": "Fondamentaux", "Keltner Channels_study": "Keltner Channels", "Long Position": "Position Longue", "Bands style_input": "Style de bandes", "Undo {0}": "Annuler {0}", "With Markers": "Avec des Points", "Momentum_study": "Momentum", "MF_input": "MF", "Gann Box": "Boite de Gan", "Switch to the next chart": "Passer au graphique suivant", "charts by TradingView": "graphique par TradingView", "Fast length_input": "Longueur rapide", "Apply Elliot Wave": "Appliquer une Vague d'Eliliot", "Disjoint Angle": "Angle disjoint", "Supermillennium": "Super millénaire", "W_interval_short": "W", "Show Only Future Events": "Montrer Uniquement les Événements Futurs", "Log Scale": "Échelle Logaritmique", "Line - High": "Ligne - Sommet", "Minuette": "Menuet", "Equality Line_input": "Ligne d'égalité", "Short_input": "Short", "Fib Wedge": "Coin de Fibonacci", "Line": "Droite", "Session": "Séance", "Down fractals_input": "Fractales inférieures", "Fib Retracement": "Retracement de Fibonacci", "smalen2_input": "smalen2", "isCentered_input": "estCentré", "Border": "Bordure", "Klinger Oscillator_study": "Klinger Oscillator", "Absolute": "Absolu", "Tue": "Mar", "Up Wave 3": "Vague Haussière 3", "Show Left Scale": "Montrer l'Échelle de Gauche", "SMI Ergodic Indicator/Oscillator_study": "SMI Ergodic Indicateur/Oscillateur", "Aug": "Août", "Last available bar": "Dernière barre disponible", "Manage Drawings": "Gérer les Dessins", "Analyze Trade Setup": "Analyser la Configuration du Trade", "No drawings yet": "Pas de Dessins pour le moment", "SMI_input": "SMI", "Chande MO_input": "Chande MO", "jawLength_input": "Longueur de Jaw", "TRIX_study": "TRIX", "Show Bars Range": "Montrer l'étendue des barres", "RVGI_input": "RVGI", "Last edited ": "Dernière édition ", "signalLength_input": "Longueur de signal", "%s ago_time_range": "il y a %s", "Reset Settings": "Réinitialiser les paramètres", "PnF": "Point et Figure", "d_dates": "j", "Point & Figure": "Point et Figure", "August": "Août", "Recalculate After Order filled": "Recalculer après l'ordre rempli", "Source_compare": "Source", "Down bars": "Barres inférieures", "Correlation Coefficient_study": "Coefficient de Corellation", "Delayed": "Retardé", "Bottom Labels": "Étiquettes du bas", "Text color": "Couleur du Texte", "Levels": "Niveaux", "Short Length_input": "Longueur du Short", "teethLength_input": "Longueurteeth", "Visible Range_study": "Gamme visible", "Delete": "Effacer", "Text Alignment:": "Alignement du Texte:", "Open {{symbol}} Text Note": "Ouvrir {{symbol}} Note de Texte", "October": "Octobre", "Lock All Drawing Tools": "Verrouiller tous les Outils de Dessin", "Long_input": "Long", "Right End": "Extrémité de Droite", "Show Symbol Last Value": "Montrer la Dernière Valeur du Symbole", "Head & Shoulders": "Tête et Épaules", "Do you really want to delete Study Template '{0}' ?": "Voulez-vous vraiment supprimer le modèle d'étude '{0}' ?", "Favorite Drawings Toolbar": "Barre d'outils de dessin favoris", "Properties...": "Propriétés...", "MA Cross_study": "Croisement MA", "Trend Angle": "Angle de la Tendance", "Snapshot": "photo instantanée", "Crosshair": "Réticule", "Signal line period_input": "Période de la ligne de signal", "Timezone/Sessions Properties...": "Propriétés des Fuseaux Horaires/Sessions", "Line Break": "Saut de ligne", "Quantity": "Quantité", "Price Volume Trend_study": "Tendance volume-prix", "Auto Scale": "Mise à l'échelle automatique", "hour": "heure", "Delete chart layout": "Supprimer la configuration du graphique", "Text": "Texte", "F_data_mode_forbidden_letter": "F", "Risk/Reward long": "Ration Risque/Récompense transaction d'achat", "Apr": "Avr", "Long RoC Length_input": "Grande longueur RoC", "Length3_input": "Longueur 3", "+DI_input": "+DI", "Length_input": "Longueur", "Use one color": "Utiliser une couleur", "Chart Properties": "Propriétés du graphique", "No Overlapping Labels_scale_menu": "Pas d'étiquettes superposées", "Exit Full Screen (ESC)": "Sortir du mode Plein Écran (ESC)", "MACD_study": "MACD", "Show Economic Events on Chart": "Montrer les événements économiques sur le graphique", "Moving Average_study": "Moyenne mobile", "Show Wave": "Montrer l'onde", "Failure back color": "Échec Couleur de Fond", "Below Bar": "Sous la barre", "Time Scale": "Echelle de Temps", "

    Only D, W, M intervals are supported for this symbol/exchange. You will be automatically switched to a D interval. Intraday intervals are not available because of exchange policies.

    ": "

    Seuls les intervalles J, S, Msont pris en charge pour ce symbole/échange. Vous passerez automatiquement à un intervalle J. Les intervalles intra-jour ne sont pas disponibles en raison des politiques d'échange.

    ", "Extend Left": "Prolonger à Gauche", "Date Range": "Étendue de dates", "Min Move": "Mouvement minimal", "Price format is invalid.": "Le format du prix n'est pas valide.", "Show Price": "Montrer le Prix", "Level_input": "Niveau", "Commodity Channel Index_study": "Commodity Channel Index", "Elder's Force Index_input": "Indice Elder's Force", "Gann Square": "Carré de Gann", "Currency": "Devise", "Color bars based on previous close": "Coloriser les Barres selon la Clôture Précédente", "Change band background": "Changer le fond du bandeau", "Target: {0} ({1}) {2}, Amount: {3}": "Cible: {0} ({1}) {2},Montant: {3}", "Zoom Out": "Réduction", "This chart layout has a lot of objects and can't be published! Please remove some drawings and/or studies from this chart layout and try to publish it again.": "Cette disposition graphique a beaucoup d'objets et ne peut pas être publiée! Supprimez certains dessins et / ou études de cette disposition graphique et essayez de la publier à nouveau.", "Anchored Text": "Texte ancré", "Long length_input": "Grande longueur", "Edit {0} Alert...": "Éditer {0} alerte...", "Previous Close Price Line": "Ligne précédente de prix de clôture", "Up Wave 5": "Vague Haussière 5", "Qty: {0}": "Qté: {0}", "Aroon_study": "Aroon", "show MA_input": "Montrer MA", "Lead 1_input": "Lead 1", "Short Position": "Position Short", "SMALen1_input": "SMALen1", "P_input": "P", "Apply Default": "Appliquer paramètres par Défaut", "SMALen3_input": "SMALen3", "Average Directional Index_study": "Average Directional Index", "Fr_day_of_week": "Ven", "Invite-only script. Contact the author for more information.": "Script sur invitation uniquement. Contactez l'auteur pour plus d'informations.", "Curve": "Courbe", "a year": "un an", "Target Color:": "Couleur de l'Objectif", "Bars Pattern": "Configuration de barres", "D_input": "D", "Font Size": "Taille de la police de caractères", "Create Vertical Line": "Créer une Ligne Verticale", "p_input": "p", "Rotated Rectangle": "Rectangle pivoté", "Chart layout name": "Nom de la configuration graphique", "Fib Circles": "Cercles de Fibonacci", "Apply Manual Decision Point": "Appliquer Point de Décision Manuel", "Dot": "Point", "Target back color": "Couleur de Fond de l'Objectif", "All": "Tous", "orders_up to ... orders": "ordres", "Dot_hotkey": "Point", "Lead 2_input": "Lead 2", "Save image": "Enregistrer l'Image", "Move Down": "Déplacer vers le Bas", "Triangle Up": "Triangle vers le haut", "Box Size": "Taille de la boîte", "Navigation Buttons": "Boutons de Navigation", "Miniscule": "Minuscule", "Apply": "Appliquer", "Down Wave 3": "Vague Baissière 3", "Plots Background_study": "Arrière-plan des graphiques", "Marketplace Add-ons": "Marché des Extensions", "Sine Line": "Ligne sinusoïdale", "Fill": "Remplir", "%d day": "%d jour", "Hide": "Cacher", "Toggle Maximize Chart": "Agrandir le graphique", "Target text color": "Couleur de Texte de l'Objectif", "Scale Left": "Échelle à Gauche", "Elliott Wave Subminuette": "Vague d'Elliott Sous Inférieure ou Subminuette", "Color based on previous close_input": "Couleur basée sur la clôture précédente", "Down Wave C": "Vague Baissière C", "Countdown": "Compte à rebours", "UO_input": "UO", "Pyramiding": "Pyramidage", "Source back color": "Couleur de Fond de la Source", "Go to Date...": "Aller à cette date...", "Sao Paulo": "São Paulo", "R_data_mode_realtime_letter": "R", "Extend Lines": "Prolonger les lignes", "Conversion Line_input": "Ligne de conversion", "March": "Mars", "Su_day_of_week": "Su", "Exchange": "Marché", "Regression Trend": "Tendance de la Régression", "Short RoC Length_input": "Longueur du Short RoC", "Fib Spiral": "Spirale de Fibonacci", "Double EMA_study": "EMA Double", "All Indicators And Drawing Tools": "Tous les Indicateurs Et Outils de Dessin", "Indicator Last Value": "Dernière valeur de l'indicateur", "Sync drawings to all charts": "Sync tracés sur tous les graphiques", "Change Average HL value": "Changer la valeur Haute Basse moyenne", "Stop Color:": "Couleur du Stop", "Stay in Drawing Mode": "Rester en Mode Dessin", "Bottom Margin": "Marge inférieure", "Dubai": "Dubaï", "Save Chart Layout saves not just some particular chart, it saves all charts for all symbols and intervals which you are modifying while working with this Layout": "'Enregistrer la disposition des graphiques' n'enregistre pas seulement un graphique particulier, il enregistre tous les graphiques pour tous les symboles et les intervalles que vous modifiez tout en travaillant avec cette disposition", "Average True Range_study": "Moyenne de la vraie amplitude", "Max value_input": "Valeur max", "MA Length_input": "Longueur MA", "Invite-Only Scripts": "Scripts sur invitation uniquement", "in %s_time_range": "in %s", "Extend Bottom": "Etendre le bas", "sym_input": "sym", "DI Length_input": "Longueur de DI", "Scale": "Échelle", "Periods_input": "Périodes", "Arrow": "Flèche", "Square": "Carré", "Basis_input": "Base", "Arrow Mark Down": "Flèche vers le Bas", "lengthStoch_input": "longueurStoch", "Objects Tree": "Arborescence des Objets", "Remove from favorites": "Retirer des favoris", "Show Symbol Previous Close Value": "Afficher le symbole précédent de valeur de fermeture", "Scale Series Only": "Mettre à l'Échelle la Série seulement", "Source text color": "Couleur du Texte de la Source", "Created ": "Créé ", "Report a data issue": "Signaler un problème de données", "Arnaud Legoux Moving Average_study": "Arnaud Legoux Moyenne Mobile", "Smoothed Moving Average_study": "Smoothed Moving Average", "Lower Band_input": "Bande inférieure", "Verify Price for Limit Orders": "Vérifier le Prix Pour les Ordres Limites", "VI +_input": "VI +", "Line Width": "Épaisseur de la ligne", "Contracts": "Contrats", "Always Show Stats": "Toujours montrer les statistiques", "Down Wave 4": "Vague Baissière 4", "ROCLen2_input": "ROCLen2", "Simple ma(signal line)_input": "Simple ma(ligne de signal)", "Change Interval...": "Changer l'intervalle...", "Public Library": "Librairie publique", " Do you really want to delete Drawing Template '{0}' ?": " Voulez-vous vraiment supprimer le Modèle de Dessin '{0}' ?", "Sat": "Sam", "Left Shoulder": "Épaule gauche", "week": "Semaine", "CRSI_study": "CRSI", "Close message": "Fermer le message", "Jul": "Juill", "Base currency": "Devise de base", "Show Drawings Toolbar": "Montrer la Barre d'Outils de Dessin", "Chaikin Oscillator_study": "Chaikin Oscillator", "Price Source": "Source de prix", "Market Open": "Ouverture du Marché", "Color Theme": "Modèle de Couleurs", "Projection up bars": "Barres de projection supérieures", "Awesome Oscillator_study": "Oscillateur impressionnant", "Bollinger Bands Width_input": "Largeur des Bandes de Bollinger", "long_input": "long", "Error occured while publishing": "Une erreur est survenue lors de la publication", "Fisher_input": "Fisher", "Color 1_input": "Couleur 1", "Moving Average Weighted_study": "Moyenne mobile pondérée", "Save": "Sauvegarder", "Are you sure?": "Êtes-vous sûr?", "Wick": "Mèche", "Accumulative Swing Index_study": "Indice d'oscillation cumulative", "Load Chart Layout": "Charger la configuration graphique", "Show Values": "Montrer les Valeurs", "Fib Speed Resistance Fan": "Éventail de Résistance de la Vitesse de Fibonacci", "Bollinger Bands Width_study": "Largeur Bollinger Bands", "This chart layout has more than 1000 drawings, which is a lot! This may negatively affect performance, storage and publishing. We recommend to remove some drawings to avoid potential performance issues.": "Cette disposition de graphique a plus de 1000 dessins, ce qui est beaucoup! \nCela peut affecter négativement les performances, le stockage et la publication. Nous vous recommandons d'enlever certains dessins afin d'éviter des problèmes de performances potentiels.", "Left End": "Extrémité Gauche", "%d year": "%d année", "Always Visible": "Toujours visible", "S_data_mode_snapshot_letter": "S", "Flag": "Drapeau", "Elliott Wave Circle": "Cercle des vagues d'Elliott", "Earnings breaks": "Pénalités", "Change Minutes From": "Modifier les minutes de", "Do not ask again": "Ne demander plus", "MTPredictor": "MTPrédicteur", "Displacement_input": "Déplacement", "smalen4_input": "smalen4", "CCI_input": "CCI", "Upper Deviation_input": "Ecart supérieur", "XABCD Pattern": "Figure en XABCD", "Schiff Pitchfork": "Fourchette de Schiff", "Copied to clipboard": "Copié dans le presse-papier", "Flipped": "Basculé", "DEMA_input": "DEMA", "Move_input": "Mouvement", "NV_input": "NV", "Choppiness Index_study": "Choppiness Index", "Study Template '{0}' already exists. Do you really want to replace it?": "Le Modèle d'Etude '{0}' existe déjà. Voulez-vous vraiment le remplacer ?", "Merge Down": "Fusionner vers le bas", "Th_day_of_week": "Th", " per contract": " par contrat", "Overlay the main chart": "Superposer sur le graphique principal", "Screen (No Scale)": "Écran (sans échelle)", "Three Drives Pattern": "Modèle Three Drives", "Save Indicator Template As": "Sauvegarder le Modèle d'Indicateur Sous", "Length MA_input": "Longueur MA", "percent_input": "pourcent", "September": "Septembre", "{0} copy": "Copier {0}", "Avg HL in minticks": "Ticks minimums moyens entre les valeurs hautes et basses", "Accumulation/Distribution_input": "Accumulation/Distribution", "C_in_legend": "C", "Weeks_interval": "Weeks", "smoothK_input": "smoothK", "Percentage_scale_menu": "Pourcentage", "Change Extended Hours": "Changer les heures prolongées", "MOM_input": "MOM", "h_interval_short": "h", "Change Interval": "Changer l’intervalle", "Change area background": "Changer le fond de la surface", "Modified Schiff": "Schiff modifié", "top": "haut", "Adelaide": "Adélaïde", "Send Backward": "Mettre vers l'Arrière", "Mexico City": "Ville de Mexico", "TRIX_input": "TRIX", "Show Price Range": "Montrer l'étendue des prix", "Elliott Major Retracement": "Elliott Retracement Principal", "ASI_study": "ASI", "Fri": "Ven", "just now": "à l'instant", "Forecast": "Prévision", "Fraction part is invalid.": "La partie fractionnelle n'est pas valide.", "Connecting": "Connexion", "Ghost Feed": "Flux fantôme d'informations", "Histogram_input": "Histogramme", "The Extended Trading Hours feature is available only for intraday charts": "L'option Heures de Trading Prolongées est disponible uniquement pour les graphiques intrajournaliers", "Stop syncing": "Ne plus synchroniser", "open": "ouvert", "StdDev_input": "StdDev", "EMA Cross_study": "EMA Cross", "Conversion Line Periods_input": "Pérodes de lignes de conversion", "Diamond": "Diamant", "My Scripts": "Mes Scripts", "Monday": "Lundi", "Add Symbol_compare_or_add_symbol_dialog": "Ajouter un symbole", "Williams %R_study": "Williams %R", "Symbol": "Symbole", "a month": "un mois", "Precision": "Précision", "depth_input": "Profondeur", "Go to": "Aller à", "Please enter chart layout name": "Veuillez entrer un nouveau de plan graphique", "Mar": "Mars", "VWAP_study": "VWAP", "Offset": "Décalage", "Format...": "Formater...", "__dayName__ __specialSymbolOpen__at__specialSymbolClose__ __dayTime__": "__dayName____specialSymbolOpen__à__specialSymbolClose____dayTime__", "Toggle Maximize Pane": "Basculer le volet Agrandir", "Search": "Chercher", "Zig Zag_study": "Zig Zag", "Actual": "Actuel", "SUCCESS": "SUCCÈS", "Long period_input": "Longue période", "length_input": "longueur", "roclen4_input": "roclen4", "Price Line": "Ligne de Prix", "Area With Breaks": "Zone avec des interruptions", "Median_input": "Médiane", "Stop Level. Ticks:": "Niveau du Stop en Ticks", "Window Size_input": "Taille de la fenêtre", "Economy & Symbols": "Economie et symboles", "Circle Lines": "Lignes Circulaires", "Visual Order": "Ordre de visualisation", "__specialSymbolOpen__Yesterday at__specialSymbolClose__ __dayTime__": "__specialSymbolOpen__Hier à__specialSymbolClose____dayTime__", "Stop Background Color": "Couleur de Fond du Stop", "Slow length_input": "Longueur lente", "Sector": "Secteur", "powered by TradingView": "fourni par TradingView", "Text:": "Texte:", "Stochastic_study": "Stochastic", "Sep": "Sept", "TEMA_input": "TEMA", "Apply WPT Up Wave": "Appliquer Vague WPT vers le Haut", "Min Move 2": "Mouvement Minimal 2", "Extend Left End": "Prolonger l'Extrémité Gauche", "Projection down bars": "Barres de projection inférieures", "Advance/Decline_study": "Advance/Decline", "Any Number": "N'importe quel Nombre", "Flag Mark": "Marque de Drapeau", "Drawings": "Dessins", "Cancel": "Annuler", "Compare or Add Symbol": "Comparer ou Ajouter un Symbole", "Redo": "Recommencer", "Hide Drawings Toolbar": "Cacher la barre d'outils de dessin", "Ultimate Oscillator_study": "Oscillateur Ultimate", "Vert Grid Lines": "Lignes Verticales de grille", "Growing_input": "En croissance", "Plot_input": "Tracé", "Color 8_input": "Couleur 8", "Indicators, Fundamentals, Economy and Add-ons": "Indicateurs, Fondamentaux, Économie et Compléments", "h_dates": "h", "ROC Length_input": "Longueur ROC", "roclen3_input": "roclen3", "Overbought_input": "Surévalué", "Extend Top": "Etendre le sommet", "Change Minutes To": "Modifier les minutes pour", "No study templates saved": "Aucun modèle d'analyse sauvegardé", "Trend Line": "Droite de Tendance", "TimeZone": "Fuseau Horaire", "Your chart is being saved, please wait a moment before you leave this page.": "La sauvegarde de votre graphique est en cours, veuillez attendre un moment avant de quitter la page.", "Percentage": "Pourcentage", "Tu_day_of_week": "Tu", "Extended Hours": "Horaire heures prolongées", "Line With Breaks": "Ligne Interrompue", "Period_input": "Période", "Watermark": "Filigrane", "Trigger_input": "Trigger", "SigLen_input": "SigLen", "Extend Right": "Prolonger à Droite", "Color 2_input": "Couleur 2", "Show Prices": "Montrer les Prix", "Unlock": "Déverrouiller", "Copy": "Copier", "high": "haut", "Edit Order": "Éditer l'ordre", "January": "Janvier", "Arrow Mark Right": "Flèche vers la Droite", "Extend Alert Line": "Prolonger la ligne d'alerte", "Background color 1": "Couleur de Fond 1", "RSI Source_input": "Source RSI", "Close Position": "Fermer la Position", "Stop syncing drawing": "Arrêter la synchronisation du dessin", "Visible on Mouse Over": "Visible avec déplacement de la souris", "MA/EMA Cross_study": "MA/EMA Cross", "Thu": "Jeu", "Vortex Indicator_study": "Indicateur Vortex", "view-only chart by {user}": "Graphique - en lecture seule- par {user}", "ROCLen1_input": "ROCLen1", "M_interval_short": "M", "Chaikin Oscillator_input": "Oscillateur de Chaikin", "Price Levels": "Niveaux de Prix", "Show Splits": "Montrer les fractionnements d'actions", "Zero Line_input": "Ligne de zéro", "Replay Mode": "Mode Replay", "__specialSymbolOpen__Today at__specialSymbolClose__ __dayTime__": "__specialSymbolOpen__ajourd'hui à__specialSymbolClose____dayTime__", "Increment_input": "Incrément", "Days_interval": "Days", "Show Right Scale": "Montrer l'Échelle de Droite", "Show Alert Labels": "Afficher les étiquettes des alertes", "Historical Volatility_study": "Volatilité Historique", "Lock": "Verrouiller", "length14_input": "longueur14", "High": "Haut", "Q_input": "Q", "Date and Price Range": "Étendue de date et de prix", "Polyline": "Ensemble de Lignes", "Reconnect": "Reconnecter", "Lock/Unlock": "Verrouiller/Déverrouiller", "Base Level": "Niveau de base", "Label Down": "Etiquette vers le bas", "Saturday": "Samedi", "Symbol Last Value": "Dernière valeur du symbole", "Above Bar": "Barre Au-dessus", "Studies": "Etudes", "Color 0_input": "Couleur 0", "Add Symbol": "Ajouter un Symbole", "maximum_input": "maximum", "Wed": "Mer", "D_data_mode_delayed_letter": "D", "Sigma_input": "Sigma", "VWMA_study": "VWMA", "fastLength_input": "LongueurRapide", "Time Levels": "Niveaux de Temps", "Width": "Largeur", "Loading": "en chargement", "Template": "Espace de Travail", "Use Lower Deviation_input": "Utiliser l'écart inférieur", "Parallel Channel": "Canal parallèle", "Time Cycles": "Cycles de temps", "Second fraction part is invalid.": "La deuxième partie de fraction n'est pas valide.", "Divisor_input": "Diviseur", "Baseline": "Ligne de base", "Down Wave 1 or A": "Vague Baissière 1 ou A", "ROC_input": "ROC", "Dec": "Déc", "Ray": "Rayon", "Extend": "Prolonger", "length7_input": "longueur7", "Bring Forward": "Mettre en avant", "Bottom": "Bas", "Apply Elliot Wave Major": "Appliquer Vague d'Elliot Majeure", "Undo": "Annuler", "Original": "Initial", "Mon": "Lun", "Reset Scale": "Réinitialiser l'Échelle", "Long Length_input": "Grande longueur", "True Strength Indicator_study": "Indicateur True Strength", "%R_input": "%R", "There are no saved charts": "Aucun graphique n'est sauvegardé", "Instrument is not allowed": "instrument non permis", "bars_margin": "barres", "Decimal Places": "Décimales", "Show Indicator Last Value": "Montrer la Dernière Valeur de l'Indicateur", "Initial capital": "Capital initial", "Show Angle": "Afficher l'angle", "Mass Index_study": "Index de masse", "More features on tradingview.com": "Plus de fonctionnalités sur tradingview.com", "Objects Tree...": "Arborescence des Objets...", "Remove Drawing Tools & Indicators": "Supprimer les outils de dessin et les indicateurs", "Length1_input": "Longueur 1", "Always Invisible": "Toujours invisible", "Circle": "Cercle", "Days": "Jours", "x_input": "x", "Save As...": "Sauvegarder Sous...", "Elliott Double Combo Wave (WXY)": "Vague Elliott Double Combo (WXY)", "Parabolic SAR_study": "Parabolique SAR", "Any Symbol": "N'importe quel Symbole", "Price Label": "Étiquette de Prix", "Stats Text Color": "Couleur du texte des Statistiques", "Williams Alligator_study": "Alligator Williams", "Custom color...": "Couleur Personnalisée...", "Jan": "Janv", "Jaw_input": "Jaw", "Right": "Droite", "Help": "Aide", "Coppock Curve_study": "Courbe Coppock", "Reversal Amount": "Montant de renversement", "Reset Chart": "Réinitialiser le Graphique", "Marker Color": "Couleur du marqueur", "Sunday": "Dimanche", "Left Axis": "Axe de gauche", "Open": "Ouverture", "YES": "Oui", "longlen_input": "longlen", "Moving Average Exponential_study": "Moyenne mobile exponentielle", "Source border color": "Couleur de la Bordure de la Source", "Redo {0}": "Répéter {0}", "Cypher Pattern": "Modèle Cypher", "s_dates": "s", "Area": "Région", "Triangle Pattern": "Figure en Triangle", "Balance of Power_study": "Équilibre des forces", "EOM_input": "EOM", "Shapes_input": "Formes", "Oversold_input": "Sous-évalué", "Apply Manual Risk/Reward": "Appliquer Risque/Rendement Manuel", "Market Closed": "Marché fermé", "Indicators": "Indicateurs", "close": "proche", "q_input": "q", "You are notified": "Vous êtes notifié", "Font Icons": "Icônes de police", "%D_input": "%D", "Border Color": "Couleur de la Bordure", "Offset_input": "Décalage", "Risk": "Risque", "Price Scale": "Échelle de prix", "HV_input": "HV", "Seconds": "Secondes", "Start_input": "Début", "Elliott Impulse Wave (12345)": "Vague Elliott d'impulsion (12345)", "Hours": "Heures", "Send to Back": "Mettre au Fond", "Color 4_input": "Couleur 4", "Prices": "Prix", "Hollow Candles": "Bougies Creuses", "July": "Juillet", "Create Horizontal Line": "Créer une Ligne Horizontale", "ADX Smoothing_input": "ADXSmoothing", "One color for all lines": "Une couleur pour toutes les lignes", "m_dates": "m", "Settings": "Configurations", "Candles": "Bougies", "We_day_of_week": "We", "Width (% of the Box)": "Largeur (% de la boîte)", "Go to...": "Aller à ...", "Pip Size": "Valeur du pip", "Wednesday": "Mercredi", "This drawing is used in alert. If you remove the drawing, the alert will be also removed. Do you want to remove the drawing anyway?": "Ce dessin est utilisé en alerte. Si vous supprimez le dessin, l'alerte sera également supprimée. Souhaitez-vous supprimer le dessin de toute façon?", "Show Countdown": "Montrer le décompte", "Show alert label line": "Montrer l'étiquette de la ligne d'alerte", "MA_input": "MA", "Length2_input": "Longueur 2", "not authorized": "non autorisé", "Session Volume_study": "Volume de la session", "Image URL": "URL de l'image", "SMI Ergodic Oscillator_input": "Oscillateur SMI Ergodic", "Show Objects Tree": "Montrer l'Arborescence des Objets", "Primary": "Primaire", "Price:": "Prix:", "Bring to Front": "Mettre au premier plan", "Brush": "Pinceau", "Not Now": "Pas Maintenant", "Yes": "Oui", "C_data_mode_connecting_letter": "C", "SMALen4_input": "SMALen4", "Apply Default Drawing Template": "Appliquer le modèle de dessin par défaut", "Save As Default": "Sauvegarder comme Paramètres par Défaut", "Target border color": "Couleur de Bordure de l'Objectif", "Invalid Symbol": "Symbole invalide", "Inside Pitchfork": "Fourchette Interne", "yay Color 1_input": "yay Couleur 1", "Quandl is a huge financial database that we have connected to TradingView. Most of its data is EOD and is not updated in real-time, however the information may be extremely useful for fundamental analysis.": "Quandl est une base de données financières énorme que nous avons reliée à TradingView. La plupart des données sont des données de fin de journée et ne sont pas mises à jour en temps réel, mais les informations peuvent être extrêmement utiles pour l'analyse fondamentale.", "Hide Marks On Bars": "Cacher les marques de la barre", "Cancel Order": "Annuler Ordre", "Hide All Drawing Tools": "Cacher tous les Outils de Dessin", "WMA Length_input": "Longueur du WMA", "Show Dividends on Chart": "Afficher les dividendes sur le graphique", "Show Executions": "Afficher les exécutions", "Borders": "Bordures", "Remove Indicators": "Supprimer les indicateurs", "loading...": "chargement...", "Closed_line_tool_position": "Fermé", "Columns": "Colonnes", "Change Resolution": "Changer la Résolution", "Indicator Arguments": "Arguments de l'indicateur", "Symbol Description": "Description du symbole", "Chande Momentum Oscillator_study": "Chande Momentum Oscillator", "Degree": "Degré", " per order": " par ordre", "Line - HL/2": "Ligne - Haut et Bas Divisé par 2", "Up Wave 4": "Vague Haussière 4", "Jun": "Juin", "Least Squares Moving Average_study": "Moyenne Mobile Least Squares", "Change Variance value": "Changer la valeur de variance", "powered by ": "fourni par ", "Source_input": "Source", "Change Seconds To": "Changer les secondes pour", "%K_input": "%K", "Scales Text": "Texte des Échelles", "Please enter template name": "Veuillez entrer le nom du modèle", "Symbol Name": "Nom du symbole", "Events Breaks": "Pause entre Événements", "Study Templates": "Modèles d'étude", "Months": "Mois", "Symbol Info...": "Info du Symbole...", "Elliott Wave Minor": "Elliott Vague Mineure", "Read our blog for more info!": "Lisez notre blog pour plus d'infos!", "Measure (Shift + Click on the chart)": "Mesure (Majuscule+Cliquer sur le Graphique)", "Override Min Tick": "Ne pas tenir compte du Tick minimum", "Show Positions": "Montrer les postitions", "Dialog": "Dialogue", "Add To Text Notes": "Ajouter aux Notes de Texte", "Elliott Triple Combo Wave (WXYXZ)": "Vague Triple Combo Elliott (WXYXZ)", "Multiplier_input": "Multiplicateur", "Risk/Reward": "Risque/Récompense", "Base Line Periods_input": "Périodes de ligne de base", "Show Dividends": "Montrer les Dividendes", "Relative Strength Index_study": "Relative Strength Index", "Modified Schiff Pitchfork": "Fourchette de Schiff Modifiée", "Top Labels": "Étiquettes du Haut", "Show Earnings": "Montrer les Gains", "Line - Open": "Ligne - Ouverture", "Elliott Triangle Wave (ABCDE)": "Vague Triangle Elliott (ABCDE)", "Text Wrap": "Retour à la ligne forcé du Texte", "Reverse Position": "Inverser la Position", "Elliott Minor Retracement": "Elliott Retracement Mineur", "DPO_input": "DPO", "Pitchfan": "Éventail", "Slash_hotkey": "Slash", "No symbols matched your criteria": "Aucuns symboles ne correspondent à vos critères", "Icon": "Icône", "lengthRSI_input": "longueurRSI", "Tuesday": "Mardi", "Teeth Length_input": "Longueur des Teeth", "Indicator_input": "Indicateur", "Box size assignment method": "Méthode d'affectation de la taille de boîte", "Open Interval Dialog": "Ouvrir la fenêtre intervalle de temps", "Athens": "Athènes", "Fib Speed Resistance Arcs": "Arcs de Résistance de la vitesse de Fibonacci", "Content": "Contenu", "middle": "Milieu", "Lock Cursor In Time": "Verrouiller le curseur dans le temps", "Intermediate": "Intermédiaire", "Eraser": "Gomme", "Relative Vigor Index_study": "Relative Vigor Index", "Envelope_study": "Enveloppe", "Symbol Labels": "Etiquettes des Symboles", "Pre Market": "Pré-marché", "Horizontal Line": "Ligne Horizontale", "O_in_legend": "O", "Right Labels": "Étiquettes à droite", "HL Bars": "Barres Haut-Bas", "Lines:": "Droites:", "Hide Favorite Drawings Toolbar": "Masquer la barre d'outils Dessins favoris", "useTrueRange_input": "UtiliserVraieGamme", "Profit Level. Ticks:": "Niveau de Profit. Ticks:", "Show Date/Time Range": "Montrer l'intervalle date/heure", "Level {0}": "Niveau {0}", "Favorites": "Favoris", "Horz Grid Lines": "Lignes horizontales de la grille", "-DI_input": "-DI", "Price Range": "Intervalle de Prix", "day": "jour", "deviation_input": "écart", "Account Size": "Taille du compte", "Value_input": "Valeur", "Time Interval": "Intervalle de Temps", "Success text color": "Couleur de Texte en cas de succès", "ADX smoothing_input": "ADXsmoothing", "%d hour": "%d heure", "Order size": "Taille de l'Ordre", "Drawing Tools": "Outils de Dessin", "Save Drawing Template As": "Sauvegarder le Modèle de Dessin Sous", "Traditional": "Traditionnel", "Chaikin Money Flow_study": "Chaikin Money Flow", "Ease Of Movement_study": "Ease Of Movement", "Defaults": "Configurations par Défaut", "Percent_input": "Pourcent", "Interval is not applicable": "Intervalle non applicable", "short_input": "short", "Visual settings...": "Paramètres de visualisation", "RSI_input": "RSI", "Chatham Islands": "Îles Chatham", "Detrended Price Oscillator_input": "Oscillateur de prix hors tendance", "Mo_day_of_week": "Mo", "center": "Centre", "Vertical Line": "Droite Verticale", "Show Splits on Chart": "Afficher les fractionnements d'actions sur le graphique", "Sorry, the Copy Link button doesn't work in your browser. Please select the link and copy it manually.": "Désolé, le bouton Copier le Lien ne fonctionne pas avec votre navigateur. Veuillez sélectionner le lien et le copier manuellement.", "Levels Line": "Ligne des Niveaux", "Events & Alerts": "Événements et Alertes", "May": "Mai", "ROCLen4_input": "ROCLen4", "Aroon Down_input": "AroonDown", "Add To Watchlist": "Ajouter à la liste à Surveiller", "Price": "Prix", "left": "restant", "Lock scale": "Verrouiller l'Échelle", "Limit_input": "Limite", "Change Days To": "Changer les jours pour", "Price Oscillator_study": "Price Oscillator", "smalen1_input": "smalen1", "Drawing Template '{0}' already exists. Do you really want to replace it?": "Le modèle de dessin '{0}' existe déjà. Voulez-vous vraiment le remplacer ?", "Show Middle Point": "Montrer point moyen", "KST_input": "KST", "Extend Right End": "Prolonger l'extrémité droite", "Fans": "Éventails de lignes", "Line - Low": "Ligne - Prix le plus bas", "Price_input": "Prix", "Gann Fan": "Éventail de Gann", "Weeks": "Semaines", "McGinley Dynamic_study": "McGinley Dynamic", "Relative Volatility Index_study": "Relative Volatility Index", "Source Code...": "Code Source...", "PVT_input": "PVT", "Show Hidden Tools": "Montrer les Outils Cachés", "Hull Moving Average_study": "Moyenne Mobile Hull", "Symbol Prev. Close Value": "Symbole précédent valeur de fermeture", "{0} chart by TradingView": "{0} graphique par TradingView", "Right Shoulder": "Bretelle droite", "Remove Drawing Tools": "Supprimer les outils de dessin", "Friday": "Vendredi", "Zero_input": "Zéro", "Company Comparison": "Comparaison de société", "Stochastic Length_input": "Longueur stochastique", "mult_input": "mult", "URL cannot be received": "L'URL ne peut pas être reçue", "Success back color": "Couleur de fond en cas de succès", "E_data_mode_end_of_day_letter": "E", "Trend-Based Fib Extension": "Prolongation de Fibonacci selon la Tendance", "Top": "Haut", "Double Curve": "Double Courbe", "Stochastic RSI_study": "Stochastic RSI", "Oops!": "Oups!", "Horizontal Ray": "Rayon Horizontal", "smalen3_input": "smalen3", "Ok": "D'accord", "Script Editor...": "Éditeur de Script...", "Trades on Chart": "Les Trades sur le graphique", "Listed Exchange": "Bourse agréée", "Error:": "Erreur:", "Fullscreen mode": "Mode plein écran", "Add Text Note For {0}": "Ajouter une Note de Texte pour {0}", "K_input": "K", "Do you really want to delete Drawing Template '{0}' ?": "Voulez-vous vraiment supprimer le modèle de dessin '{0}' ?", "ROCLen3_input": "ROCLen3", "Restore Size": "Restaurer la Taille", "Text Color": "Couleur du Texte", "Rename Chart Layout": "Renommer la configuration du graphique", "Built-ins": "Intégrés", "Background color 2": "Couleur de Fond 2", "Drawings Toolbar": "Barre d'outils de dessin", "New Zealand": "Nouvelle-Zélande", "CHOP_input": "CHOP", "Apply Defaults": "Appliquer les paramètres par défaut", "% of equity": "% d'équité", "Extended Alert Line": "Ligne d'Alerte étendue", "Signal_input": "Signal", "Moving Average Channel_study": "Canal de moyenne mobile", "Show": "Montrer", "{0} bars": "{0} barres", "Lower_input": "Inférieur", "Warning": "Avertissement", "Elder's Force Index_study": "Index de Force Elder", "Show Earnings on Chart": "Montrer les gains sur le graphique", "ATR_input": "ATR", "Low": "Bas", "Bollinger Bands %B_study": "Bollinger Bands %B", "Time Zone": "Fuseau Horaire", "right": "Droite", "%d month": "%d mois", "Wrong value": "Valeur erronée", "Upper Band_input": "Bande supérieure", "Sun": "Dim", "start_input": "start", "No indicators matched your criteria.": "Aucuns indicateurs ne correspondent à vos critères.", "Down Color": "Couleur du bas", "Short length_input": "Longueur du Short", "Kolkata": "Calcuta", "Submillennium": "Sous-millenaire", "Technical Analysis": "Analyse Technique", "Show Text": "Montrer le Texte", "Channel": "Canal", "FXCM CFD data is available only to FXCM account holders": "Les cotations des CFDs de FXCM ne sont disponibles qu'aux détenteurs de comptes chez FXCM.", "Lagging Span 2 Periods_input": "Délai de retournement 2 périodes", "Connecting Line": "Ligne de connexion", "Seoul": "Séoul", "bottom": "Bas", "Teeth_input": "Teeth", "Open Manage Drawings": "Ouvrir Gérer les dessins", "Save New Chart Layout": "Enregistrer la nouvelle configuration graphique", "Fib Channel": "Canal de Fibonacci", "Save Drawing Template As...": "Sauvegarder le Modèle de Dessin Sous...", "Minutes_interval": "Minutes", "Up Wave 2 or B": "Vague Haussière 2 ou B", "exponential_input": "exponentiel", "Directional Movement_study": "Directional Movement", "roclen2_input": "roclen2", "Apply WPT Down Wave": "Appliquer Vague WPT vers le Bas", "Not applicable": "Non applicable", "Bollinger Bands %B_input": "Bandes de Bollinger %B", "Default": "Par Défaut", "Template name": "Nom du modèle", "Indicator Values": "Valeurs de l'indicateur", "Lips Length_input": "Longueur des lips", "Toggle Log Scale": "Mise à l'échelle logarithmique", "L_in_legend": "B", "Remove custom interval": "Supprimer l'intervalle personnalisé", "shortlen_input": "shortlen", "Quotes are delayed by {0} min": "Les cotations sont différées de {0} min", "Hide Events on Chart": "Cacher les événements sur le graphique", "Cash": "cash", "Profit Background Color": "Couleur de Fond des Profits", "Bar's Style": "Style de barre", "Exponential_input": "Exponentiel", "Down Wave 5": "Vague Baissière 5", "Previous": "Précédent", "Stay In Drawing Mode": "Rester en Mode Dessin", "Comment": "Commentaire", "Connors RSI_study": "RSI de Connors", "Bars": "Barres", "Show Labels": "Montrer les Étiquettes", "Flat Top/Bottom": "Haut/Bas Plat", "Symbol Type": "Type de symbole", "December": "Décembre", "Lock drawings": "Verrouiller les dessins", "Border color": "Couleur de la Bordure", "Change Seconds From": "Changer les secondes à partir de", "Left Labels": "Étiquettes de Gauche", "Insert Indicator...": "Ajouter un indicateur...", "ADR_B_input": "ADR_B", "Paste %s": "Coller %s", "Change Symbol...": "Changer le Symbole...", "Timezone": "Fuseau horaire", "Invite-only script. You have been granted access.": "Script sur invitation uniquement. L’accès vous a été accordé.", "Color 6_input": "Couleur 6", "ATR Length": "Longueur ATR", "{0} financials by TradingView": "{0} données financières par TradingView", "Extend Lines Left": "Etendre les lignes à gauche", "Feb": "Févr", "Transparency": "Transparence", "No": "Non", "June": "Juin", "Cyclic Lines": "Lignes cycliques", "length28_input": "longueur28", "ABCD Pattern": "Figure en ABCD", "When selecting this checkbox the study template will set \"__interval__\" interval on a chart": "Lorsque vous cochez cette case, le modèle d'étude appliquera __interval__ comme Intervalle sur un graphique", "Add": "Ajouter", "OC Bars": "Barres Ouverture Fermeture", "Millennium": "Millénaire", "On Balance Volume_study": "Volume On Balance", "Apply Indicator on {0} ...": "Appliquer l'indicateur sur {0} ...", "NEW": "NOUVEAU", "Chart Layout Name": "Nom de la configuration graphique", "Up bars": "Barres supérieures", "Hull MA_input": "Hul MA", "Lock Scale": "Verrouiller l'Échelle", "Extended": "Étendu", "log": "Logarithme", "NO": "Non", "Top Margin": "Marge en Haut", "Up fractals_input": "Fractales supérieures", "Insert Drawing Tool": "Insérer l'Outil de Dessin", "OHLC Values": "Valeurs OHLC", "Correlation_input": "Corrélation", "Session Breaks": "Arrêts de Session", "Add {0} To Watchlist": "Ajouter {0} à la liste de surveillance", "Anchored Note": "Note ancrée", "lipsLength_input": "longueurLips", "low": "bas", "Apply Indicator on {0}": "Appliquer l'indicateur sur {0}", "UpDown Length_input": "Longueur Haut-Bas", "November": "Novembre", "Tehran": "Téhéran", "Balloon": "Ballon", "Track time": "Suivre le temps", "Background Color": "Couleur de Fond", "an hour": "une heure", "Right Axis": "Axe de droite", "D_data_mode_delayed_streaming_letter": "D", "VI -_input": "VI -", "slowLength_input": "Longueurlente", "Click to set a point": "Cliquer pour établir un point", "Save Indicator Template As...": "Sauvegarder le Modèle d'Indicateur Sous...", "Arrow Up": "Flèche vers le haut", "n/a": "n/d", "Indicator Titles": "Titres de l'indicateur", "Failure text color": "Échec Couleur du Texte", "Sa_day_of_week": "Sa", "Net Volume_study": "Volume net", "Error": "Erreur", "Edit Position": "Éditer la position", "RVI_input": "RVI", "Centered_input": "Centré", "Recalculate On Every Tick": "Recalculer sur chaque tick", "Left": "Gauche", "Simple ma(oscillator)_input": "Simple ma(oscillateur)", "Compare": "Comparer", "Fisher Transform_study": "Fisher Transform", "Show Orders": "Voir les Ordres", "Zoom In": "Grossissement", "Length EMA_input": "Longueur EMA", "Enter a new chart layout name": "Entrer un nouveau nom de configuration graphique", "Signal Length_input": "Longueur du signal", "FAILURE": "ÉCHEC", "Point Value": "Valeur du point", "D_interval_short": "D", "MA with EMA Cross_study": "MA avec EMA Cross", "Label Up": "Etiquette vers le haut", "Price Channel_study": "Canal de prix", "Close": "Fermeture", "ParabolicSAR_input": "SAR Parabolique", "Log Scale_scale_menu": "Échelle Logarithmique", "MACD_input": "MACD", "Do not show this message again": "Ne plus montrer ce message", "{0} P&L: {1}": "{0} Gains&Pertes: {1}", "No Overlapping Labels": "Pas d'étiquettes superposées", "Arrow Mark Left": "Flèche vers la Gauche", "Down Wave 2 or B": "Vague Baissière 2 ou B", "Line - Close": "Ligne - Fermeture", "Confirm Inputs": "Confirmer les entrées", "Open_line_tool_position": "Ouvert", "Lagging Span_input": "Délai de retournement", "Subminuette": "Sous-menuet", "Thursday": "Jeudi", "Arrow Down": "Flèche vers le bas", "Triple EMA_study": "EMA Triple", "Elliott Correction Wave (ABC)": "Vague Elliott de correction (ABC)", "Error while trying to create snapshot.": "Erreur lors de la création de l'instantané.", "Label Background": "Fond de l'Étiquette", "Templates": "Espaces de Travail", "Please report the issue or click Reconnect.": "Veuillez signaler le problème ou cliquez sur Reconnecter.", "1. Slide your finger to select location for first anchor
    2. Tap anywhere to place the first anchor": "1.Glisser votre doigt pour choisir l'endroit du premier ancrage
    2.Taper n'importe où pour placer le premier ancrage", "Signal Labels": "Étiquettes du signal", "Delete Text Note": "Supprimer la note de texte", "compiling...": "compilation...", "Detrended Price Oscillator_study": "Detrended Price Oscillator", "Color 5_input": "Couleur 5", "Fixed Range_study": "Gamme fixe", "Up Wave 1 or A": "Vague Haussière 1 ou A", "Scale Price Chart Only": "Mise à l’échelle des prix du graphique uniquement", "Unmerge Up": "Défusionner vers le Haut", "auto_scale": "automatique", "Short period_input": "Période du Short", "Background": "Arrière-Plan", "Up Color": "Couleur du haut", "Apply Elliot Wave Intermediate": "Appliquer Vague d'Elliot Intermédiaire", "VWMA_input": "VWMA", "Lower Deviation_input": "Écart inférieur", "Save Interval": "Sauvegarder l'Intervalle", "February": "Février", "Reverse": "Inverse", "Oops, something went wrong": "Oups, quelque chose n'a pas fonctionné", "Add to favorites": "Ajouter aux favoris", "Median": "Médiane", "ADX_input": "ADX", "Remove": "Retirer ", "len_input": "len", "Arrow Mark Up": "Flèche vers le Haut", "April": "Avril", "Active Symbol": "Symbole actif", "Crosses_input": "Crosses", "Middle_input": "Milieu", "Sync drawing to all charts": "Sync les tracés sur tous les graphiques", "LowerLimit_input": "Limite inférieure", "Know Sure Thing_study": "Know Sure Thing", "Copy Chart Layout": "Copier la mise en page du graphique", "Compare...": "Comparer...", "1. Slide your finger to select location for next anchor
    2. Tap anywhere to place the next anchor": "1.Glisser votre doigt pour choisir l'endroit de l'ancrage suivant
    2.Taper n'importe où pour placer l'ancrage suivant", "Text Notes are available only on chart page. Please open a chart and then try again.": "Les Notes de Texte sont seulement disponibles sur la page du graphique. Veuillez ouvrir un graphiqueet réessayer.", "Color": "Couleur", "Aroon Up_input": "Aroon Up", "Singapore": "Singapour", "Scales Lines": "Axes", "Type the interval number for munute charts (i.e. 5 if it is going to be a five minute chart). Or number plus letter for H (Hourly), D (Daily), W (Weekly), M (Monthly) intervals (i.e. D or 2H)": "Tapez le numéro d'intervalle pour les graphiques de minute (c'est-à-dire 5 s'il s'agit d'un graphique de cinq minutes). Ou le nombre et la lettre pour les intervalles H (horaire), D (quotidien), W (hebdomadaire), M (mensuel) (c'est-à-dire D ou 2H)", "HLC Bars": "Barres HLC", "Up Wave C": "Vague Haussière C", "Show Distance": "Montrer la distance", "Risk/Reward Ratio: {0}": "Ratio Risque/Récompense: {0}", "Volume Oscillator_study": "Oscillateur de volume", "Williams Fractal_study": "Fractal Williams", "Merge Up": "Fusionner vers le Haut", "Right Margin": "Marge Droite", "Moscow": "Moscou", "Warsaw": "Varsovie"} \ No newline at end of file diff --git a/charting_library/static/localization/translations/he_IL.json b/charting_library/static/localization/translations/he_IL.json index f969b890..13b72bcf 100644 --- a/charting_library/static/localization/translations/he_IL.json +++ b/charting_library/static/localization/translations/he_IL.json @@ -1 +1 @@ -{"ticks_slippage ... ticks": "ticks", "Months_interval": "Months", "Percent_input": "Percent", "Callout": "הסבר", "month": "חודש", "London": "לונדון", "roclen1_input": "roclen1", "Minor": "מינורי", "Top Margin": "שול עליון", "Magnet Mode": "מצב מגנטי", "OSC_input": "OSC", "Volume_study": "מחזור מסחר", "Lips_input": "Lips", "Histogram": "היסטוגרמה", "Base Line_input": "Base Line", "Step": "צעד", "Fib Time Zone": "אזור זמן פיבונאצ'י", "SMALen2_input": "SMALen2", "Bollinger Bands_study": "רצועות בויילינגר", "Nov": "נובמבר", "Upper_input": "Upper", "Sig_input": "Sig", "Move Up": "הזז למעלה", "Gann Square": "מרובע גאן", "Count_input": "Count", "Anchored Text": "טקסט נעוץ", "SMALen1_input": "SMALen1", "Cross_chart_type": "צלב", "Target Color:": "צבע יעד:", "Pitchfork": "מזלג", "Normal": "רגיל", "Accumulation/Distribution_study": "הצטברות / הפצה", "Rate Of Change_study": "Rate Of Change", "in_dates": "בתוך", "Color 7_input": "Color 7", "Chop Zone_study": "Chop Zone", "Scales Properties": "הגדרות קנה מידה", "Trend-Based Fib Time": "זמן פיבונאצ'י מבוסס מגמה", "Remove All Indicators": "הסר אינדיקטורים", "Oscillator_input": "Oscillator", "Last Modified": "שונה לאחרונה", "yay Color 0_input": "yay Color 0", "Labels": "תוויות", "Chande Kroll Stop_study": "צ'אנד קרול סטופ (CKS)", "Hours_interval": "Hours", "Scale Right": "קנה מידה ימני", "Bollinger Bands %B_input": "Bollinger Bands %B", "siglen_input": "siglen", "DEMA_input": "DEMA", "Toggle Percentage": "החלף אחוזים", "Remove All Drawing Tools": "הסר כלי ציור", "Linear Regression Curve_study": "Linear Regression Curve", "Symbol_input": "Symbol", "Upper Deviation_input": "Upper Deviation", "Rename Chart Layout": "בחר שם חדש לתצורת הגרף", "Label": "תווית", "second": "seconds", "smoothD_input": "smoothD", "Falling_input": "Falling", "Percentage": "אחוז", "Entry price:": "מחיר כניסה:", "RSI Source_input": "RSI Source", "Ichimoku Cloud_study": "ענן איצ'ימוקו", "Toggle Log Scale": "הפעל/כבה תפריט קנה מידה", "Grid": "רשת", "Mass Index_study": "מדד המונים", "Rename...": "בחר שם חדש", "Smoothing_input": "Smoothing", "Color 3_input": "Color 3", "Jaw Length_input": "Jaw Length", "Quotes are delayed by 10 min and updated every 30 seconds": "הנתונים מעוקבים ב-10 דקות ומעודכנים כל 30 שניות.", "Keltner Channels_study": "תעלות קלטנר", "Long Position": "עסקת לונג", "Bands style_input": "Bands style", "Undo {0}": "בטל (0)", "With Markers": "עם הדגשות", "Momentum_study": "Momentum", "MF_input": "MF", "Gann Box": "קופסת גאן", "Long length_input": "Long length", "Apply Elliot Wave": "החל גלי אליוט", "Disjoint Angle": "זוית שבורה", "W_interval_short": "W", "Log Scale": "תפריט קנה מידה", "Bar's Style": "סגנון נרות", "Equality Line_input": "Equality Line", "Short_input": "Short", "Fib Wedge": "דחיסת פיבונאצ'י", "Line": "קו", "Down fractals_input": "Down fractals", "Fib Retracement": "תיקוני פיבונאצ'י", "smalen2_input": "smalen2", "isCentered_input": "isCentered", "Border": "גבול", "Klinger Oscillator_study": "מתנד קלינגר (KO)", "Style": "סגנון", "SMI Ergodic Indicator/Oscillator_study": "SMI Ergodic Indicator/Oscillator", "Aug": "אוגוסט", "Manage Drawings": "נהל ציורים", "No drawings yet": "אין ציור עדיין", "Chande MO_input": "Chande MO", "jawLength_input": "jawLength", "TRIX_study": "טריקס (TRIX)", "MACD_study": "MACD", "RVGI_input": "RVGI", "signalLength_input": "signalLength", "Middle_input": "Middle", "Renko": "גרף ראנקו", "d_dates": "יום", "Point & Figure": "גרף Point & Figure", "%s ago_time_range": "%s ago", "Source_compare": "מקור", "Correlation Coefficient_study": "Correlation Coefficient", "Text color": "צבע טקסט", "Levels": "רמות", "Short Length_input": "Short Length", "teethLength_input": "teethLength", "Failure text color": "צבע טקסט כשלון", "Hong Kong": "הונג קונג", "FAILURE": "כישלון", "Subminuette": "סאבמינוט (Subminuette)", "Lock All Drawing Tools": "נעל כלי ציור", "Target border color": "צבע גבול יעד", "Right End": "גבול ימני", "Head & Shoulders": "ראש וכתפיים", "Simple ma(oscillator)_input": "Simple ma(oscillator)", "Properties...": "מאפיינים...", "MA Cross_study": "ממוצעים נעים חוצים", "Trend Angle": "זוית מגמה", "Crosshair": "כוונת צלב", "Signal line period_input": "Signal line period", "Q_input": "Q", "Line Break": "מקטע קו", "Show/Hide": "הצג/הסתר", "Price Volume Trend_study": "Price Volume Trend", "Auto Scale": "קנה מידה אוטומטי", "hour": "שעה", "Scales": "מרחבים", "Text": "טקסט", "F_data_mode_forbidden_letter": "F", "Risk/Reward long": "סיכון/סיכוי לונג", "Long RoC Length_input": "Long RoC Length", "Length3_input": "Length3", "+DI_input": "+DI", "Madrid": "מדריד", "Show Bars Range": "הראה מרחק נרות", "Moving Average_study": "ממוצע נע", "Zoom In": "הגדל", "Failure back color": "צבע כישלון אחורי", "Extend Left": "הרחב שמאלה", "Date Range": "טווח תאריכים", "Show Price": "הצג מחיר", "Level_input": "Level", "Commodity Channel Index_study": "מדד ערוץ סחורות ׁׁ(CCI)", "Elder's Force Index_input": "Elder's Force Index", "Scales Properties...": "הגדרות קנה מידה...", "Format": "פורמט", "Color bars based on previous close": "צבע הנר על בסיס הסגירה הקודמת", "Change band background": "שנה צבע רצועה", "Precise Labels": "תוויות מדויקות", "Text:": "טקסט:", "Aroon_study": "הרון (Aroon)", "show MA_input": "show MA", "h_dates": "שעה", "Short Position": "עסקת שורט", "Change Interval...": "שנה טווח זמן", "SMALen3_input": "SMALen3", "Average Directional Index_study": "Average Directional Index", "Fr_day_of_week": "Fr", "H_in_legend": "ג", "Bars Pattern": "תבנית נרות", "D_input": "D", "Font Size": "גודל גופן", "Change Interval": "שנה אינטרוול זמן", "p_input": "p", "Chart layout name": "שם תצורת גרף", "Fib Circles": "עיגולי פיבונאצ'י", "Dot": "נקודה", "Target back color": "צבע יעד אחורי", "orders_up to ... orders": "orders", "Lead 2_input": "Lead 2", "Save image": "שמור תמונה", "Move Down": "הזז למטה", "Vortex Indicator_study": "Vortex Indicator", "Apply": "החל", "Show Countdown": "הראה ספירה לאחור", "%d day": "%d days", "Hide": "הסתר", "Toggle Maximize Chart": "החלף מיקסום גרף", "Target text color": "צבע יעד טקסט", "Scale Left": "קנה מידה שמאלי", "Elliott Wave Subminuette": "גלי אליוט סאבמינוט (Subminuette)", "Jan": "ינואר", "Source back color": "צבע מקור אחורי", "Sao Paulo": "סאו פאולו", "Oct": "אוקטובר", "Extend Lines": "הרחב קווים", "Inputs": "תגובות", "Conversion Line_input": "Conversion Line", "Su_day_of_week": "Su", "Up fractals_input": "Up fractals", "Regression Trend": "טרנד רגריסיבי", "Fib Spiral": "ספירלת פיבונאצ'י", "Double EMA_study": "Double EMA", "minute": "דקה", "Price Oscillator_study": "מתנד מחיר (PO)", "Stop Color:": "צבע סטופ:", "Stay in Drawing Mode": "הישאר במצב ציור", "Bottom Margin": "שוליים תחתונים", "Average True Range_study": "ממוצע טווח אמיתי (ATR)", "Max value_input": "Max value", "MA Length_input": "MA Length", "Time Interval": "אינטרוול זמן", "UpperLimit_input": "UpperLimit", "sym_input": "sym", "DI Length_input": "DI Length", "SMI_input": "SMI", "Arrow": "חץ", "Basis_input": "Basis", "Arrow Mark Down": "חץ למטה", "lengthStoch_input": "lengthStoch", "Taipei": "טייפה", "Remove from favorites": "הסר ממועדפים", "Copy": "העתק", "Scale Series Only": "הגדר קנה מידה רצף בלבד", "Simple": "פשוט", "Arnaud Legoux Moving Average_study": "ממוצעים נעים ארנולד לגוקס (ALMA)", "Technical Analysis": "ניתוח טכני", "Lower Band_input": "Lower Band", "VI +_input": "VI +", "Lead 1_input": "Lead 1", "Always Show Stats": "תמיד הראה נתונים", "ROCLen2_input": "ROCLen2", "Simple ma(signal line)_input": "Simple ma(signal line)", "Show Labels": "הראה תוויות", "Ray": "קרן", "long_input": "long", "Chaikin Oscillator_study": "מתנד צ'אייקין (CO)", "Balloon": "בלון", "Color Theme": "נושא צבע", "Centered_input": "Centered", "Bollinger Bands Width_input": "Bollinger Bands Width", "Fib Speed Resistance Arcs": "קשתות התנגדות מהירות פיבונאצ'י", "D_interval_short": "D", "Lock/Unlock": "פתח/סגור", "Color 1_input": "Color 1", "Moving Average Weighted_study": "Moving Average Weighted", "Save": "שמור", "Type": "סוג", "Chart Layout Name": "שם תצורת גרף", "Short period_input": "Short period", "Load Chart Layout": "טען תצורת גרף", "Fib Speed Resistance Fan": "מניפת התנגדות פיבונאצ'י", "Left End": "קצה שמאלי", "Volume Oscillator_study": "חישוב מחזור ע\"י יחס בין ממוצעים נעים (Oscillator)", "S_data_mode_snapshot_letter": "S", "post-market": "אחרי שעות המסחר", "Elliott Wave Circle": "מעגל גלי אליוט", "Earnings breaks": "הפסקות דו\"חות רווחים", "MTPredictor": "תוכנת מסחר MTPredictor", "smalen4_input": "smalen4", "CCI_input": "CCI", "Unmerge Up": "צמצם חלק עליון", "increment_input": "increment", "(H + L)/2": "2/(ג+נ)", "XABCD Pattern": "דפוס XABCD", "Schiff Pitchfork": "מזלג שיף", "Flipped": "הפוך במאוזן", "NV_input": "NV", "Choppiness Index_study": "מדד צ'ופינס", "Merge Down": "הרחב מטה", "Th_day_of_week": "Th", "eod delayed": "מידע סוף יום מסחר מעוכב", "Delete": "מחק", "in %s_time_range": "in %s", "percent_input": "percent", "Apr": "אפריל", "Length_input": "Length", "Median_input": "Median", "Accumulation/Distribution_input": "Accumulation/Distribution", "C_in_legend": "ס", "Weeks_interval": "Weeks", "smoothK_input": "smoothK", "Percentage_scale_menu": "אחוז", "MOM_input": "MOM", "h_interval_short": "h", "Rotated Rectangle": "מלבן מסובב", "Modified Schiff": "שיף מעודכן", "Symbol": "סימול", "Send Backward": "שלח אחורה", "TRIX_input": "TRIX", "Elliott Major Retracement": "התנגדות ראשית אליוט", "Periods_input": "Periods", "Forecast": "תחזית", "hour_plural": "שעתיים", "Histogram_input": "Histogram", "The Extended Trading Hours feature is available only for intraday charts": "המסחר מחוץ לשעות המסחר הפעילות אפשרי עבור תרשימים תוך יומיים בלבד.", "StdDev_input": "StdDev", "Relative Strength Index_study": "מדד כוח יחסי (RSIׂׂׂ)", "-DI_input": "-DI", "short_input": "short", "top": "חלק עליון", "Precision": "דיוק", "Please enter chart layout name": "אנא הכנס שם לתצורת הגרף", "Offset": "מרווח", "Date": "תאריך", "Format...": "אתחול...", "Toggle Auto Scale": "הפעל/כבה קנה מידה אוטומטיות", "Search": "חפש", "Zig Zag_study": "Zig Zag", "Actual": "אמיתי", "SUCCESS": "הצלחה", "Detrended Price Oscillator_input": "Detrended Price Oscillator", "{0} copy": "העתק", "length_input": "length", "Price Line": "קו מחיר", "Area With Breaks": "אזור מקוטע", "Zoom Out": "הקטן", "Stop Level. Ticks:": "רמת סטופ. טיקים:", "Jul": "יולי", "Visual Order": "הוראה ויזואלית", "Stop Background Color": "צבע רקע סטופ", "Slow length_input": "Slow length", "Conversion Line Periods_input": "Conversion Line Periods", "Stochastic_study": "סטוכסטיק", "Marker Color": "צבע סמן", "TEMA_input": "TEMA", "Apply WPT Up Wave": "החל גל WPT כלפי מעלה", "Directional Movement_study": "Directional Movement", "Extend Left End": "הרחב גבול שמאלי", "Advance/Decline_study": "Advance/Decline", "New York": "ניו יורק", "Flag Mark": "סמן בדגל", "Drawings": "ציורים", "Fast length_input": "Fast length", "Cancel": "ביטול", "Bar #": "נר #", "Redo": "בצע שוב", "Ultimate Oscillator_study": "Ultimate Oscillator", "Growing_input": "Growing", "Angle": "זוית", "Plot_input": "Plot", "Chicago": "שיקגו", "Color 8_input": "Color 8", "Indicators, Fundamentals, Economy and Add-ons": "אינדקטורים, פונדמנטלי, כלכלה ותוספים", "Bollinger Bands Width_study": "רוחב רצועות בויילינגר", "roclen3_input": "roclen3", "Overbought_input": "Overbought", "DPO_input": "DPO", "No study templates saved": "אין תבניות מתנדים שמורות", "Trend Line": "קו מגמה", "TimeZone": "אזור זמן", "Risk/Reward short": "סיכון/סיכוי שורט", "Price Range": "טווח מחירים", "Extended Hours": "מחוץ לשעות המסחר", "Triangle": "משולש", "Line With Breaks": "קו מקוטע", "Period_input": "Period", "Watermark": "קו המים", "Trigger_input": "Trigger", "SigLen_input": "SigLen", "Clone": "שכפל", "Color 2_input": "Color 2", "Show Prices": "הצג מחירים", "Graphics": "גרפיקה", "Arrow Mark Right": "חץ ימינה", "Background color 2": "צבע רקע 2", "Background color 1": "צבע רקע 1", "Circles": "מעגלים", "McGinley Dynamic_study": "McGinley Dynamic", "Williams Alligator_study": "תנין ויליאמס", "ROCLen1_input": "ROCLen1", "Border Color": "צבע גבול", "M_interval_short": "M", "Change Symbol...": "שנה סימול...", "Price Levels": "רמות מחיר", "Source text color": "צבע טקסט מקור", "Zero Line_input": "Zero Line", "Increment_input": "Increment", "Days_interval": "Days", "Net Volume_study": "מחזור מסחר כללי", "Show Alert Labels": "הראה תוויות התראה", "m_dates": "חודש", "Lock": "נעל", "length14_input": "length14", "retrying": "מנסה מחדש", "High": "גבוה", "ext": "חיצוני", "Polyline": "קווים מחוברים", "Add to favorites": "הוסף למועדפים", "Color 0_input": "Color 0", "maximum_input": "maximum", "Paris": "פריז", "D_data_mode_delayed_letter": "D", "Sigma_input": "Sigma", "Coordinates": "קואורדינטות", "fastLength_input": "fastLength", "Width": "רוחב", "Historical Volatility_study": "Historical Volatility", "Compare or Add Symbol...": "השווה או הוסף סימול...", "Parallel Channel": "ערוץ מקביל", "Divisor_input": "Divisor", "Dec": "דצמבר", "Extend": "הרחב", "length7_input": "length7", "Send to Back": "שלח לאחור", "Undo": "בטל", "Window Size_input": "Window Size", "Reset Scale": "אתחל קנה מידה", "Long Length_input": "Long Length", "%R_input": "%R", "Chart Properties": "מאפייני גרף", "bars_margin": "נרות", "Show Angle": "הראה זווית", "closed": "סגור", "smalen3_input": "smalen3", "Length1_input": "Length1", "x_input": "x", "Save As...": "שמור בשם...", "Tehran": "טהרן", "Parabolic SAR_study": "פרבוליק SAR", "Fisher Transform_study": "Fisher Transform", "Hollow Candles": "נרות חלולים", "UO_input": "UO", "Stats Text Color": "צבע טקסט לנתונים", "Short RoC Length_input": "Short RoC Length", "Jaw_input": "Jaw", "Help": "עזרה", "Coppock Curve_study": "עקומת קופוק", "Reset Chart": "איפוס גרף", "Sep": "ספטמבר", "Themes": "נושאים", "YES": "כן", "longlen_input": "longlen", "Moving Average Exponential_study": "ממוצעים נעים אקספוננציאלית", "Source border color": "צבע גבול מקור", "Redo {0}": "בצע שוב {0}", "s_dates": "s", "Area": "אזור", "invalid symbol": "סימול לא קיים", "Triangle Pattern": "תבנית משולשת", "Balance of Power_study": "שיווי משקל כוח (BoP)", "EOM_input": "EOM", "Least Squares Moving Average_study": "ריבועי ממוצעים נעים פשוטים (LSMA)", "Sydney": "סינדי", "Indicators": "אינדיקטורים", "q_input": "q", "%D_input": "%D", "Text Alignment:": "יישור טקסט", "Offset_input": "Offset", "Price Scale": "טווח מחירים", "HV_input": "HV", "(H + L + C)/3": "3/(ג+נ+ס)", "Start_input": "התחל", "R_data_mode_realtime_letter": "R", "ROC_input": "ROC", "Berlin": "ברלין", "Color 4_input": "Color 4", "Los Angeles": "לוס אנג'לס", "Prices": "מחירים", "Extended Hours (Intraday Only)": "שעות מורחבות (תוך יומי בלבד)", "Minute": "דקה", "Cycle": "גלי אליוט מחזוריים", "ADX Smoothing_input": "ADX Smoothing", "Settings": "הגדרות", "Candles": "נרות", "We_day_of_week": "We", "%d minute": "%d minutes", "week_plural": "שבועיים", "Kagi": "גרף קאגי", "MA_input": "MA", "Detrended Price Oscillator_study": "Detrended Price Oscillator", "Multiplier_input": "Multiplier", "Image URL": "כתובת אתר של התמונה", "SMI Ergodic Oscillator_input": "SMI Ergodic Oscillator", "Show Objects Tree": "הראה את תרשים האובייקטים", "Primary": "ראשי", "Price:": "מחיר:", "Bring to Front": "הבא לחזית", "Brush": "מברשת", "Chaikin Oscillator_input": "Chaikin Oscillator", "lengthRSI_input": "lengthRSI", "Events & Alerts": "אירועים והתראות", "SMALen4_input": "SMALen4", "Invalid Symbol": "סימול לא קיים", "Inside Pitchfork": "מזלג פנימי", "yay Color 1_input": "yay Color 1", "Hide Marks On Bars": "הסתר סימנים על הנרות", "Note": "הערה", "Hide All Drawing Tools": "הסתר את כלי הציור", "WMA Length_input": "WMA Length", "Low": "נמוך", "Borders": "גבולות", "month_plural": "חודשיים", "loading...": "טוען...", "Events": "אירועים", "Columns": "עמודות", "Chande Momentum Oscillator_study": "מתנד מומנטום צ'אנד (CMO)", "Mar": "מרץ", "Jun": "יוני", "Price Label": "תווית מחיר", "Overlay the main chart": "כיסוי גרף ראשי", "Source_input": "Source", "%K_input": "%K", "Success back color": "צבע הצלחה אחורי", "Toronto": "טורונטו", "Tokyo": "טוקיו", "Elliott Wave Minor": "גל מינורי אליוט", "Measure (Shift + Click on the chart)": "מידה (מקש Shift ולחיצה על הגרף)", "Override Min Tick": "דריסת טיק מינימלי", "RSI Length_input": "RSI Length", "Unmerge Down": "צמצם חלק תחתון", "Base Line Periods_input": "Base Line Periods", "pre-market": "לפני שעות המסחר", "Top Labels": "תוויות עליונות", "Level {0}": "רמה {0}", "Minuette": "מינוט (Minuette)", "Text Wrap": "גלישת טקסט", "Elliott Minor Retracement": "התנגדות מינורית אליוט", "Pitchfan": "מניפת מחירים", "No symbols matched your criteria": "לא נמצאו התאמות לסימול", "Icon": "סמל", "Open": "פתיחה", "Indicator_input": "Indicator", "Open Interval Dialog": "פתח אפשרויות אינטרוולים", "Shanghai": "שנחאי", "Athens": "אתונה", "Timezone/Sessions Properties...": "הגדרות זמן מקומי", "middle": "אמצע", "Intermediate": "ביניים", "Eraser": "מחק", "Relative Vigor Index_study": "מדד עוצמה יחסי (RVI)", "Envelope_study": "מעטפה", "Active Symbol": "סמל פעיל", "Horizontal Line": "קו אופקי", "O_in_legend": "פ", "Confirmation": "אישור", "Add Alert": "הוסף התראה", "Lines:": "קווים", "Buenos Aires": "בואנוס איירס", "useTrueRange_input": "useTrueRange", "Bangkok": "בנגקוק", "Profit Level. Ticks:": "רמת רווח. טיקים:", "Show Date/Time Range": "הראה מידע/טווח זמן", "%d year": "%d years", "Tu_day_of_week": "Tu", "day": "יום", "deviation_input": "deviation", "week": "שבוע", "UTC": "אזור זמן", "VWMA_study": "ממוצעים נעים תלויי מחזור", "Success text color": "צבע טקסט הצלחה", "%d hour": "%d hours", "Displacement_input": "Displacement", "ADR_B_input": "ADR_B", "Chaikin Money Flow_study": "זרימת כספים צ'איקין (CMF)", "Ease Of Movement_study": "Ease Of Movement", "Defaults": "ברירות מחדל", "Oversold_input": "Oversold", "Williams %R_study": "Williams %R", "depth_input": "depth", "RSI_input": "RSI", "Long period_input": "Long period", "Mo_day_of_week": "Mo", "center": "מרכז", "Vertical Line": "קו אנכי", "Bogota": "בוגוטה", "Show Splits on Chart": "הראה חילוקי מניה על הגרף", "Minutes_interval": "Minutes", "X_input": "X", "C_data_mode_connecting_letter": "C", "ROCLen4_input": "ROCLen4", "Aroon Down_input": "Aroon Down", "Add To Watchlist": "הוסף לרשימת מעקב", "Extend Right": "הרחב ימינה", "left": "שמאל", "Lock scale": "נעילת קנה מידה", "Time Levels": "רמות זמן", "smalen1_input": "smalen1", "Extend Right End": "הרחב גבול ימני", "Fans": "מניפות", "Price_input": "Price", "Close_input": "Close", "Gann Fan": "מניפת גאן", "Modified Schiff Pitchfork": "מזלג שיף מעודכן", "Relative Volatility Index_study": "מדד תנודתיות יחסית", "PVT_input": "PVT", "Circle Lines": "קווי מעגל", "Hull Moving Average_study": "Hull Moving Average", "Bring Forward": "הצג מקדימה", "Zero_input": "Zero", "Company Comparison": "השוואת חברות", "Stochastic Length_input": "Stochastic Length", "mult_input": "mult", "Signal smoothing_input": "Signal smoothing", "E_data_mode_end_of_day_letter": "E", "Trend-Based Fib Extension": "שלוחת פיבונאצ'י מבוססת מגמה", "Stochastic RSI_study": "מדד כוח יחסי סטוכסטיק (Stochastic RSI)", "Horizontal Ray": "קרן אופקית", "Script Editor...": "עורך סקריפט...", "Fullscreen mode": "מצב מסך מלא", "K_input": "K", "In Session": "בסשן", "ROCLen3_input": "ROCLen3", "Text Color": "צבע טקסט", "Extend Alert Line": "קו התראה מורחב", "Source Code...": "קוד מקור...", "CHOP_input": "CHOP", "Apply Defaults": "החל ברירת מחדל", "Screen (No Scale)": "מסך (ללא הגדרות קנה מידה)", "Extended Alert Line": "קו התראה מורחב", "Signal_input": "Signal", "OK": "אישור", "like": "likes", "Show": "הצג", "Exchange": "בורסה", "{0} bars": "נרות {0}", "Lower_input": "Lower", "Arc": "קשת", "Elder's Force Index_study": "Elder's Force Index", "Show Earnings on Chart": "הראה דו\"חות רווחים על הגרף", "Show Dividends on Chart": "הראה דיבידנדים על הגרף", "Bollinger Bands %B_study": "רוצועות בויילינגר %", "Time Zone": "אזור זמן", "right": "ימין", "%d month": "%d months", "Donchian Channels_study": "ערוצי דונצ'יאן", "Upper Band_input": "Upper Band", "start_input": "start", "No indicators matched your criteria.": "לא נמצאו התאמות לאינדקטור", "Short length_input": "Short length", "Kolkata": "כלכותה", "Triple EMA_study": "ממוצעים נעים אקפוננציאלית פי 3 (Triple EMA)", "Precise Labels_scale_menu": "Precise Labels", "Smoothed Moving Average_study": "Smoothed Moving Average", "Show Text": "הצג טקסט", "Channel": "ערוץ", "Lagging Span 2 Periods_input": "Lagging Span 2 Periods", "Seoul": "סיאול", "bottom": "תחתית", "Teeth_input": "Teeth", "Moscow": "מוסקבה", "Save New Chart Layout": "שמור תצורת גרף חדשה", "Fib Channel": "ערוץ פיבונאצ'י", "Closed_line_tool_position": "נסגר", "exponential_input": "exponential", "OnBalanceVolume_input": "OnBalanceVolume", "roclen2_input": "roclen2", "Apply WPT Down Wave": "החל גל WPT כלפי מטה", "Not applicable": "בלתי קביל", "or copy url:": "או העתק את כתובת אתר:", "Money Flow_study": "זרימת כספים", "Lips Length_input": "Lips Length", "Use Upper Deviation_input": "Use Upper Deviation", "L_in_legend": "נ", "Inside": "בתוך", "minute_plural": "2 דקות", "shortlen_input": "shortlen", "Timezone/Sessions": "אזור זמן", "ADX_input": "ADX", "Profit Background Color": "צבע רקע לרווח", "Trading": "מסחר", "Exponential_input": "Exponential", "Use Lower Deviation_input": "Use Lower Deviation", "Stay In Drawing Mode": "הישאר במצב ציור", "Comment": "הערה", "Long_input": "Long", "Bars": "נרות", "Flat Top/Bottom": "החלק חלק עליון/תחתון", "loading data": "טוען מידע", "Border color": "צבע גבול", "Left Labels": "תוויות שמאליות", "Insert Indicator...": "הוסף אינדיקטור...", "P_input": "P", "Color 6_input": "Color 6", "Rectangle": "מלבן", "Feb": "פברואר", "Transparency": "שקיפות", "Cyclic Lines": "קווים מחזוריים", "length28_input": "length28", "ABCD Pattern": "דפוס ABCD", "Objects Tree": "תרשים האובייקטים", "NO": "לא", "Add": "הוסף", "On Balance Volume_study": "מחזור מסחר מאוזן (OBV)", "Wick": "פתיל", "Hull MA_input": "Hull MA", "Schiff": "שיף", "Lock Scale": "נעילת קנה מידה", "distance: {0}": "מרחק: {0}", "Extended": "מורחב", "log": "דוח", "Arcs": "קשתות", "Length2_input": "Length2", "Insert Drawing Tool": "הכנס כלי ציור", "Show Price Range": "הראה טווח מחירים", "Correlation_input": "Correlation", "Scales Text": "קנה מידת טקסט", "Session Breaks": "הפסקות פעילות", "Add {0} To Watchlist": "הוסף {0} לרשימת המעקב", "Anchored Note": "הערה נעוצה", "lipsLength_input": "lipsLength", "roclen4_input": "roclen4", "Know Sure Thing_study": "דע בביטחון (Know sure thing)", "Background Color": "צבע רקע", "D_data_mode_delayed_streaming_letter": "D", "VI -_input": "VI -", "slowLength_input": "slowLength", "Click to set a point": "לחץ על מנת לקבוע נקודה", "delayed": "מושהה", "n/a": "לא זמין", "Sa_day_of_week": "Sa", "Change area background": "שנה צבע אזור", "Error": "שגיאה", "RVI_input": "RVI", "Awesome Oscillator_study": "מתנד אוסום (AO)", "Original": "מקורי", "True Strength Indicator_study": "מדד כוח אמיתי ׁ(TSI)", "Objects Tree...": "תרשים האובייקטים...", "Compare": "השוואה", "Add Symbol": "הוסף סימול", "Projection": "הקרנה", "Enter a new chart layout name": "הכנס שם חדש לתצורת הגרף", "Signal Length_input": "Signal Length", "Properties": "מאפיינים", "Teeth Length_input": "Teeth Length", "Close": "סגירה", "ParabolicSAR_input": "ParabolicSAR", "Log Scale_scale_menu": "תפריט מרחב", "MACD_input": "MACD", "{0} P&L: {1}": "{0} רווח/הפסד: {1}", "Arrow Mark Left": "חץ שמאלה", "(O + H + L + C)/4": "4/(פ+ג+נ+ס)", "Open_line_tool_position": "נפתח", "Lagging Span_input": "Lagging Span", "Cross": "צלב", "Mirrored": "הפוך במאונך", "Price": "מחיר", "Vancouver": "ונקובר", "Label Background": "רקע תווית", "ADX smoothing_input": "ADX smoothing", "1. Slide your finger to select location for first anchor
    2. Tap anywhere to place the first anchor": "1. החלק את האצבע כדי לבחור מקום לעוגן הראשון,
    2\\. לחץ בכל מקום על מנת לשים עוגן", "May": "מאי", "Color 5_input": "Color 5", "Scale Price Chart Only": "מרחב גרף מחירים בלבד", "Default": "ברירת מחדל", "auto_scale": "אוטומטי", "Background": "רקע", "VWMA_input": "VWMA", "Lower Deviation_input": "Lower Deviation", "ATR_input": "ATR", "Reverse": "היפוך", "Shapes_input": "Shapes", "Median": "חציון", "Fisher_input": "Fisher", "Remove": "הסר", "len_input": "len", "Arrow Mark Up": "חץ למעלה", "Crosses_input": "Crosses", "KST_input": "KST", "LowerLimit_input": "LowerLimit", "day_plural": "יומיים", "Copy Chart Layout": "העתק תצורת גרף", "Compare...": "השוואה...", "1. Slide your finger to select location for next anchor
    2. Tap anywhere to place the next anchor": "החלק את האצבע כדי לבחור מקום לעוגן הראשון.
    2\\. לחץ בכל מקום על מנת לשים עוגן", "Compare or Add Symbol": "השווה או הוסף סימול", "Color": "צבע", "Aroon Up_input": "Aroon Up", "Singapore": "סינגפור", "Scales Lines": "קווי קנה מידה", "Show Distance": "הראה מרחק", "Risk/Reward Ratio: {0}": "יחס סיכוי/סיכון: {0}", "Williams Fractal_study": "Williams Fractal", "Merge Up": "הרחב מעלה", "Right Margin": "שול ימני", "Ellipse": "אליפסה", "Warsaw": "ורשה"} \ No newline at end of file +{"ticks_slippage ... ticks": "ticks", "Months_interval": "Months", "Percent_input": "Percent", "Callout": "הסבר", "Clone": "שכפל", "London": "לונדון", "roclen1_input": "roclen1", "Minor": "מינורי", "smalen3_input": "smalen3", "Magnet Mode": "מצב מגנטי", "OSC_input": "OSC", "Volume_study": "מחזור מסחר", "Lips_input": "Lips", "Histogram": "היסטוגרמה", "Base Line_input": "Base Line", "Step": "צעד", "Fib Time Zone": "אזור זמן פיבונאצ'י", "SMALen2_input": "SMALen2", "Bollinger Bands_study": "רצועות בויילינגר", "Nov": "נובמבר", "Upper_input": "Upper", "exponential_input": "exponential", "Move Up": "הזז למעלה", "Scales Properties...": "הגדרות קנה מידה...", "Count_input": "Count", "Anchored Text": "טקסט נעוץ", "OnBalanceVolume_input": "OnBalanceVolume", "Cross_chart_type": "צלב", "H_in_legend": "ג", "Pitchfork": "מזלג", "R_data_mode_replay_letter": "R", "Accumulation/Distribution_study": "הצטברות / הפצה", "Rate Of Change_study": "Rate Of Change", "in_dates": "בתוך", "Color 7_input": "Color 7", "Chop Zone_study": "Chop Zone", "Scales Properties": "הגדרות קנה מידה", "Trend-Based Fib Time": "זמן פיבונאצ'י מבוסס מגמה", "Remove All Indicators": "הסר אינדיקטורים", "Oscillator_input": "Oscillator", "Last Modified": "שונה לאחרונה", "yay Color 0_input": "yay Color 0", "Labels": "תוויות", "Chande Kroll Stop_study": "צ'אנד קרול סטופ (CKS)", "Hours_interval": "Hours", "Scale Right": "קנה מידה ימני", "Money Flow_study": "זרימת כספים", "DEMA_input": "DEMA", "Hide All Drawing Tools": "הסתר את כלי הציור", "Toggle Percentage": "החלף אחוזים", "Remove All Drawing Tools": "הסר כלי ציור", "Linear Regression Curve_study": "Linear Regression Curve", "Symbol_input": "Symbol", "increment_input": "increment", "Compare or Add Symbol...": "השווה או הוסף סימול...", "Label": "תווית", "smoothD_input": "smoothD", "Falling_input": "Falling", "Risk/Reward short": "סיכון/סיכוי שורט", "Entry price:": "מחיר כניסה:", "Circles": "מעגלים", "Ichimoku Cloud_study": "ענן איצ'ימוקו", "Signal smoothing_input": "Signal smoothing", "Toggle Log Scale": "הפעל/כבה תפריט קנה מידה", "Grid": "רשת", "Mass Index_study": "מדד המונים", "Rename...": "בחר שם חדש", "Smoothing_input": "Smoothing", "Color 3_input": "Color 3", "Jaw Length_input": "Jaw Length", "Keltner Channels_study": "תעלות קלטנר", "Long Position": "עסקת לונג", "Bands style_input": "Bands style", "Undo {0}": "בטל (0)", "With Markers": "עם הדגשות", "Momentum_study": "Momentum", "MF_input": "MF", "Gann Box": "קופסת גאן", "m_dates": "חודש", "Fast length_input": "Fast length", "Apply Elliot Wave": "החל גלי אליוט", "Disjoint Angle": "זוית שבורה", "W_interval_short": "W", "Log Scale": "תפריט קנה מידה", "Minuette": "מינוט (Minuette)", "Equality Line_input": "Equality Line", "Short_input": "Short", "Fib Wedge": "דחיסת פיבונאצ'י", "Line": "קו", "Down fractals_input": "Down fractals", "Fib Retracement": "תיקוני פיבונאצ'י", "smalen2_input": "smalen2", "isCentered_input": "isCentered", "Border": "גבול", "Klinger Oscillator_study": "מתנד קלינגר (KO)", "Style": "סגנון", "SMI Ergodic Indicator/Oscillator_study": "SMI Ergodic Indicator/Oscillator", "Aug": "אוגוסט", "No Overlapping Labels_scale_menu": "No Overlapping Labels", "Manage Drawings": "נהל ציורים", "No drawings yet": "אין ציור עדיין", "Chande MO_input": "Chande MO", "jawLength_input": "jawLength", "TRIX_study": "טריקס (TRIX)", "Border color": "צבע גבול", "RVGI_input": "RVGI", "signalLength_input": "signalLength", "%s ago_time_range": "%s ago", "Renko": "גרף ראנקו", "d_dates": "יום", "Point & Figure": "גרף Point & Figure", "August": "‏אוגוסט", "Source_compare": "מקור", "Correlation Coefficient_study": "Correlation Coefficient", "Text color": "צבע טקסט", "Levels": "רמות", "Length_input": "Length", "Short Length_input": "Short Length", "teethLength_input": "teethLength", "Visible Range_study": "Visible Range", "Hong Kong": "הונג קונג", "Text Alignment:": "יישור טקסט", "Subminuette": "סאבמינוט (Subminuette)", "October": "אוקטובר‏", "Lock All Drawing Tools": "נעל כלי ציור", "Long_input": "Long", "Default": "ברירת מחדל", "Head & Shoulders": "ראש וכתפיים", "Properties...": "מאפיינים...", "MA Cross_study": "ממוצעים נעים חוצים", "Trend Angle": "זוית מגמה", "Crosshair": "כוונת צלב", "Signal line period_input": "Signal line period", "Timezone/Sessions Properties...": "הגדרות זמן מקומי", "Line Break": "מקטע קו", "Show/Hide": "הצג/הסתר", "Price Volume Trend_study": "Price Volume Trend", "Auto Scale": "קנה מידה אוטומטי", "Text": "טקסט", "F_data_mode_forbidden_letter": "F", "Show Bars Range": "הראה מרחק נרות", "Risk/Reward long": "סיכון/סיכוי לונג", "Apr": "אפריל", "Long RoC Length_input": "Long RoC Length", "Length3_input": "Length3", "+DI_input": "+DI", "Madrid": "מדריד", "Sig_input": "Sig", "MACD_study": "MACD", "Moving Average_study": "ממוצע נע", "Zoom In": "הגדל", "Failure back color": "צבע כישלון אחורי", "Extend Left": "הרחב שמאלה", "Date Range": "טווח תאריכים", "Show Price": "הצג מחיר", "Level_input": "Level", "Commodity Channel Index_study": "מדד ערוץ סחורות ׁׁ(CCI)", "Elder's Force Index_input": "Elder's Force Index", "Gann Square": "מרובע גאן", "Format": "פורמט", "Color bars based on previous close": "צבע הנר על בסיס הסגירה הקודמת", "Change band background": "שנה צבע רצועה", "Text:": "טקסט:", "Aroon_study": "הרון (Aroon)", "Active Symbol": "סמל פעיל", "Lead 1_input": "Lead 1", "Short Position": "עסקת שורט", "SMALen1_input": "SMALen1", "P_input": "P", "SMALen3_input": "SMALen3", "Average Directional Index_study": "Average Directional Index", "Fr_day_of_week": "Fr", "Target Color:": "צבע יעד:", "Bars Pattern": "תבנית נרות", "D_input": "D", "Font Size": "גודל גופן", "Change Interval": "שנה אינטרוול זמן", "p_input": "p", "Chart layout name": "שם תצורת גרף", "Fib Circles": "עיגולי פיבונאצ'י", "Dot": "נקודה", "Target back color": "צבע יעד אחורי", "All": "הכל", "orders_up to ... orders": "orders", "Dot_hotkey": "Dot", "Lead 2_input": "Lead 2", "Save image": "שמור תמונה", "Move Down": "הזז למטה", "Vortex Indicator_study": "Vortex Indicator", "Apply": "החל", "Plots Background_study": "Plots Background", "Price Channel_study": "Price Channel", "Hide": "הסתר", "Toggle Maximize Chart": "החלף מיקסום גרף", "Target text color": "צבע יעד טקסט", "Scale Left": "קנה מידה שמאלי", "Elliott Wave Subminuette": "גלי אליוט סאבמינוט (Subminuette)", "Jan": "ינואר", "UO_input": "UO", "Source back color": "צבע מקור אחורי", "Sao Paulo": "סאו פאולו", "R_data_mode_realtime_letter": "R", "Extend Lines": "הרחב קווים", "Conversion Line_input": "Conversion Line", "March": "מרץ‏", "Su_day_of_week": "Su", "Exchange": "בורסה", "Arcs": "קשתות", "Regression Trend": "טרנד רגריסיבי", "Fib Spiral": "ספירלת פיבונאצ'י", "Double EMA_study": "Double EMA", "Price Oscillator_study": "מתנד מחיר (PO)", "Stop Color:": "צבע סטופ:", "Stay in Drawing Mode": "הישאר במצב ציור", "Bottom Margin": "שוליים תחתונים", "Average True Range_study": "ממוצע טווח אמיתי (ATR)", "Max value_input": "Max value", "MA Length_input": "MA Length", "in %s_time_range": "in %s", "UpperLimit_input": "UpperLimit", "sym_input": "sym", "DI Length_input": "DI Length", "SMI_input": "SMI", "Arrow": "חץ", "Basis_input": "Basis", "Arrow Mark Down": "חץ למטה", "lengthStoch_input": "lengthStoch", "Taipei": "טייפה", "Remove from favorites": "הסר ממועדפים", "Copy": "העתק", "Scale Series Only": "הגדר קנה מידה רצף בלבד", "Simple": "פשוט", "Arnaud Legoux Moving Average_study": "ממוצעים נעים ארנולד לגוקס (ALMA)", "Smoothed Moving Average_study": "Smoothed Moving Average", "Lower Band_input": "Lower Band", "VI +_input": "VI +", "Q_input": "Q", "Always Show Stats": "תמיד הראה נתונים", "ROCLen2_input": "ROCLen2", "Simple ma(signal line)_input": "Simple ma(signal line)", "Change Interval...": "שנה טווח זמן", "Color 6_input": "Color 6", "Right End": "גבול ימני", "CRSI_study": "CRSI", "UTC": "אזור זמן", "Chaikin Oscillator_study": "מתנד צ'אייקין (CO)", "Balloon": "בלון", "Color Theme": "נושא צבע", "Awesome Oscillator_study": "מתנד אוסום (AO)", "Bollinger Bands Width_input": "Bollinger Bands Width", "long_input": "long", "D_interval_short": "D", "Fisher_input": "Fisher", "Color 1_input": "Color 1", "Moving Average Weighted_study": "Moving Average Weighted", "Save": "שמור", "Type": "סוג", "Wick": "פתיל", "Accumulative Swing Index_study": "Accumulative Swing Index", "Load Chart Layout": "טען תצורת גרף", "Fib Speed Resistance Fan": "מניפת התנגדות פיבונאצ'י", "Left End": "קצה שמאלי", "Volume Oscillator_study": "חישוב מחזור ע\"י יחס בין ממוצעים נעים (Oscillator)", "S_data_mode_snapshot_letter": "S", "Elliott Wave Circle": "מעגל גלי אליוט", "Earnings breaks": "הפסקות דו\"חות רווחים", "MTPredictor": "תוכנת מסחר MTPredictor", "smalen4_input": "smalen4", "CCI_input": "CCI", "Upper Deviation_input": "Upper Deviation", "(H + L)/2": "2/(ג+נ)", "XABCD Pattern": "דפוס XABCD", "Schiff Pitchfork": "מזלג שיף", "Flipped": "הפוך במאוזן", "Move_input": "Move", "NV_input": "NV", "Choppiness Index_study": "מדד צ'ופינס", "Merge Down": "הרחב מטה", "Th_day_of_week": "Th", "Overlay the main chart": "כיסוי גרף ראשי", "Delete": "מחק", "Length MA_input": "Length MA", "percent_input": "percent", "September": "ספטמבר‏", "{0} copy": "העתק", "Median_input": "Median", "Accumulation/Distribution_input": "Accumulation/Distribution", "C_in_legend": "ס", "Weeks_interval": "Weeks", "smoothK_input": "smoothK", "Percentage_scale_menu": "אחוז", "MOM_input": "MOM", "h_interval_short": "h", "Rotated Rectangle": "מלבן מסובב", "Modified Schiff": "שיף מעודכן", "top": "חלק עליון", "Send Backward": "שלח אחורה", "Custom color...": "בחירת צבע אישית", "TRIX_input": "TRIX", "Elliott Major Retracement": "התנגדות ראשית אליוט", "Periods_input": "Periods", "Forecast": "תחזית", "Histogram_input": "Histogram", "The Extended Trading Hours feature is available only for intraday charts": "המסחר מחוץ לשעות המסחר הפעילות אפשרי עבור תרשימים תוך יומיים בלבד.", "StdDev_input": "StdDev", "EMA Cross_study": "EMA Cross", "Conversion Line Periods_input": "Conversion Line Periods", "Add Symbol_compare_or_add_symbol_dialog": "Add Symbol", "Williams %R_study": "Williams %R", "Symbol": "סימול", "Precision": "דיוק", "Please enter chart layout name": "אנא הכנס שם לתצורת הגרף", "VWAP_study": "VWAP", "Offset": "מרווח", "Date": "תאריך", "Format...": "אתחול...", "Toggle Auto Scale": "הפעל/כבה קנה מידה אוטומטיות", "Search": "חפש", "Zig Zag_study": "Zig Zag", "Actual": "אמיתי", "SUCCESS": "הצלחה", "Long period_input": "Long period", "length_input": "length", "roclen4_input": "roclen4", "Price Line": "קו מחיר", "Area With Breaks": "אזור מקוטע", "Zoom Out": "הקטן", "Stop Level. Ticks:": "רמת סטופ. טיקים:", "Jul": "יולי", "Visual Order": "הוראה ויזואלית", "Stop Background Color": "צבע רקע סטופ", "1. Slide your finger to select location for first anchor
    2. Tap anywhere to place the first anchor": "1. החלק את האצבע כדי לבחור מקום לעוגן הראשון,
    2\\. לחץ בכל מקום על מנת לשים עוגן", "Stochastic_study": "סטוכסטיק", "Sep": "ספטמבר", "TEMA_input": "TEMA", "Apply WPT Up Wave": "החל גל WPT כלפי מעלה", "Extend Left End": "הרחב גבול שמאלי", "Advance/Decline_study": "Advance/Decline", "New York": "ניו יורק", "Flag Mark": "סמן בדגל", "Drawings": "ציורים", "Cancel": "ביטול", "Bar #": "נר #", "Redo": "בצע שוב", "Ultimate Oscillator_study": "Ultimate Oscillator", "Growing_input": "Growing", "Angle": "זוית", "Plot_input": "Plot", "Chicago": "שיקגו", "Color 8_input": "Color 8", "Indicators, Fundamentals, Economy and Add-ons": "אינדקטורים, פונדמנטלי, כלכלה ותוספים", "h_dates": "שעה", "Bollinger Bands Width_study": "רוחב רצועות בויילינגר", "roclen3_input": "roclen3", "Overbought_input": "Overbought", "DPO_input": "DPO", "No study templates saved": "אין תבניות מתנדים שמורות", "Trend Line": "קו מגמה", "TimeZone": "אזור זמן", "Percentage": "אחוז", "Tu_day_of_week": "Tu", "Extended Hours": "מחוץ לשעות המסחר", "Triangle": "משולש", "Line With Breaks": "קו מקוטע", "Period_input": "Period", "Watermark": "קו המים", "Trigger_input": "Trigger", "SigLen_input": "SigLen", "Extend Right": "הרחב ימינה", "Color 2_input": "Color 2", "Show Prices": "הצג מחירים", "Arrow Mark Right": "חץ ימינה", "Extend Alert Line": "קו התראה מורחב", "Background color 1": "צבע רקע 1", "RSI Source_input": "RSI Source", "MA/EMA Cross_study": "MA/EMA Cross", "Williams Alligator_study": "תנין ויליאמס", "ROCLen1_input": "ROCLen1", "M_interval_short": "M", "Chaikin Oscillator_input": "Chaikin Oscillator", "Price Levels": "רמות מחיר", "Source text color": "צבע טקסט מקור", "Zero Line_input": "Zero Line", "Increment_input": "Increment", "Days_interval": "Days", "Net Volume_study": "מחזור מסחר כללי", "Show Alert Labels": "הראה תוויות התראה", "Historical Volatility_study": "Historical Volatility", "Lock": "נעל", "length14_input": "length14", "High": "גבוה", "ext": "חיצוני", "Polyline": "קווים מחוברים", "Lock/Unlock": "פתח/סגור", "Color 0_input": "Color 0", "Add Symbol": "הוסף סימול", "maximum_input": "maximum", "Paris": "פריז", "D_data_mode_delayed_letter": "D", "Sigma_input": "Sigma", "VWMA_study": "ממוצעים נעים תלויי מחזור", "fastLength_input": "fastLength", "Width": "רוחב", "Time Levels": "רמות זמן", "Use Lower Deviation_input": "Use Lower Deviation", "Parallel Channel": "ערוץ מקביל", "Divisor_input": "Divisor", "Dec": "דצמבר", "Extend": "הרחב", "length7_input": "length7", "Send to Back": "שלח לאחור", "Undo": "בטל", "Window Size_input": "Window Size", "Reset Scale": "אתחל קנה מידה", "Long Length_input": "Long Length", "%R_input": "%R", "Chart Properties": "מאפייני גרף", "bars_margin": "נרות", "Show Angle": "הראה זווית", "Objects Tree...": "תרשים האובייקטים...", "Length1_input": "Length1", "x_input": "x", "Save As...": "שמור בשם...", "Tehran": "טהרן", "Parabolic SAR_study": "פרבוליק SAR", "Price Label": "תווית מחיר", "Stats Text Color": "צבע טקסט לנתונים", "Short RoC Length_input": "Short RoC Length", "Jaw_input": "Jaw", "Help": "עזרה", "Coppock Curve_study": "עקומת קופוק", "Reset Chart": "איפוס גרף", "Marker Color": "צבע סמן", "Open": "פתיחה", "YES": "כן", "longlen_input": "longlen", "Moving Average Exponential_study": "ממוצעים נעים אקספוננציאלית", "Source border color": "צבע גבול מקור", "Redo {0}": "בצע שוב {0}", "s_dates": "s", "Area": "אזור", "Triangle Pattern": "תבנית משולשת", "Balance of Power_study": "שיווי משקל כוח (BoP)", "EOM_input": "EOM", "Sydney": "סינדי", "Indicators": "אינדיקטורים", "q_input": "q", "%D_input": "%D", "Border Color": "צבע גבול", "Offset_input": "Offset", "Price Scale": "טווח מחירים", "HV_input": "HV", "Settings": "הגדרות", "Start_input": "התחל", "Oct": "אוקטובר", "ROC_input": "ROC", "Berlin": "ברלין", "Color 4_input": "Color 4", "Los Angeles": "לוס אנג'לס", "Prices": "מחירים", "Hollow Candles": "נרות חלולים", "July": "יולי‏", "Minute": "דקה", "Cycle": "גלי אליוט מחזוריים", "ADX Smoothing_input": "ADX Smoothing", "(H + L + C)/3": "3/(ג+נ+ס)", "Candles": "נרות", "We_day_of_week": "We", "Show Countdown": "הראה ספירה לאחור", "MA_input": "MA", "Length2_input": "Length2", "Multiplier_input": "Multiplier", "Session Volume_study": "Session Volume", "Image URL": "כתובת אתר של התמונה", "SMI Ergodic Oscillator_input": "SMI Ergodic Oscillator", "Show Objects Tree": "הראה את תרשים האובייקטים", "Primary": "ראשי", "Price:": "מחיר:", "Bring to Front": "הבא לחזית", "Brush": "מברשת", "C_data_mode_connecting_letter": "C", "SMALen4_input": "SMALen4", "Target border color": "צבע גבול יעד", "Invalid Symbol": "סימול לא קיים", "Inside Pitchfork": "מזלג פנימי", "yay Color 1_input": "yay Color 1", "Hide Marks On Bars": "הסתר סימנים על הנרות", "Note": "הערה", "Kagi": "גרף קאגי", "WMA Length_input": "WMA Length", "Show Dividends on Chart": "הראה דיבידנדים על הגרף", "Borders": "גבולות", "loading...": "טוען...", "Closed_line_tool_position": "נסגר", "Rectangle": "מלבן", "Chande Momentum Oscillator_study": "מתנד מומנטום צ'אנד (CMO)", "Mar": "מרץ", "Jun": "יוני", "On Balance Volume_study": "מחזור מסחר מאוזן (OBV)", "Source_input": "Source", "%K_input": "%K", "Scales Text": "קנה מידת טקסט", "Toronto": "טורונטו", "Tokyo": "טוקיו", "Elliott Wave Minor": "גל מינורי אליוט", "Measure (Shift + Click on the chart)": "מידה (מקש Shift ולחיצה על הגרף)", "Override Min Tick": "דריסת טיק מינימלי", "RSI Length_input": "RSI Length", "Long length_input": "Long length", "Unmerge Down": "צמצם חלק תחתון", "Base Line Periods_input": "Base Line Periods", "Relative Strength Index_study": "מדד כוח יחסי (RSIׂׂׂ)", "Modified Schiff Pitchfork": "מזלג שיף מעודכן", "Top Labels": "תוויות עליונות", "siglen_input": "siglen", "Text Wrap": "גלישת טקסט", "Elliott Minor Retracement": "התנגדות מינורית אליוט", "Pitchfan": "מניפת מחירים", "Slash_hotkey": "Slash", "No symbols matched your criteria": "לא נמצאו התאמות לסימול", "Icon": "סמל", "lengthRSI_input": "lengthRSI", "Teeth Length_input": "Teeth Length", "Indicator_input": "Indicator", "Open Interval Dialog": "פתח אפשרויות אינטרוולים", "Shanghai": "שנחאי", "Athens": "אתונה", "Fib Speed Resistance Arcs": "קשתות התנגדות מהירות פיבונאצ'י", "middle": "אמצע", "Intermediate": "ביניים", "Eraser": "מחק", "Relative Vigor Index_study": "מדד עוצמה יחסי (RVI)", "Envelope_study": "מעטפה", "show MA_input": "show MA", "Horizontal Line": "קו אופקי", "O_in_legend": "פ", "Confirmation": "אישור", "Lines:": "קווים", "Buenos Aires": "בואנוס איירס", "useTrueRange_input": "useTrueRange", "Bangkok": "בנגקוק", "Profit Level. Ticks:": "רמת רווח. טיקים:", "Show Date/Time Range": "הראה מידע/טווח זמן", "Level {0}": "רמה {0}", "-DI_input": "-DI", "Price Range": "טווח מחירים", "deviation_input": "deviation", "Value_input": "Value", "Time Interval": "אינטרוול זמן", "Success text color": "צבע טקסט הצלחה", "Displacement_input": "Displacement", "Chaikin Money Flow_study": "זרימת כספים צ'איקין (CMF)", "Ease Of Movement_study": "Ease Of Movement", "Defaults": "ברירות מחדל", "Oversold_input": "Oversold", "short_input": "short", "depth_input": "depth", "RSI_input": "RSI", "Detrended Price Oscillator_input": "Detrended Price Oscillator", "Mo_day_of_week": "Mo", "center": "מרכז", "Vertical Line": "קו אנכי", "Bogota": "בוגוטה", "Show Splits on Chart": "הראה חילוקי מניה על הגרף", "ROC Length_input": "ROC Length", "X_input": "X", "Events & Alerts": "אירועים והתראות", "ROCLen4_input": "ROCLen4", "Aroon Down_input": "Aroon Down", "Add To Watchlist": "הוסף לרשימת מעקב", "Price": "מחיר", "left": "שמאל", "Lock scale": "נעילת קנה מידה", "Limit_input": "Limit", "smalen1_input": "smalen1", "KST_input": "KST", "Extend Right End": "הרחב גבול ימני", "Fans": "מניפות", "Color based on previous close_input": "Color based on previous close", "Price_input": "Price", "Gann Fan": "מניפת גאן", "McGinley Dynamic_study": "McGinley Dynamic", "Relative Volatility Index_study": "מדד תנודתיות יחסית", "Source Code...": "קוד מקור...", "PVT_input": "PVT", "Circle Lines": "קווי מעגל", "Hull Moving Average_study": "Hull Moving Average", "Bring Forward": "הצג מקדימה", "Zero_input": "Zero", "Company Comparison": "השוואת חברות", "Stochastic Length_input": "Stochastic Length", "mult_input": "mult", "Success back color": "צבע הצלחה אחורי", "E_data_mode_end_of_day_letter": "E", "Trend-Based Fib Extension": "שלוחת פיבונאצ'י מבוססת מגמה", "Stochastic RSI_study": "מדד כוח יחסי סטוכסטיק (Stochastic RSI)", "Horizontal Ray": "קרן אופקית", "Script Editor...": "עורך סקריפט...", "Fullscreen mode": "מצב מסך מלא", "K_input": "K", "ROCLen3_input": "ROCLen3", "Text Color": "צבע טקסט", "Rename Chart Layout": "בחר שם חדש לתצורת הגרף", "Background color 2": "צבע רקע 2", "Moving Average Channel_study": "Moving Average Channel", "New Zealand": "ניו זילנד‏", "CHOP_input": "CHOP", "Apply Defaults": "החל ברירת מחדל", "Screen (No Scale)": "מסך (ללא הגדרות קנה מידה)", "Extended Alert Line": "קו התראה מורחב", "Signal_input": "Signal", "OK": "אישור", "Show": "הצג", "{0} bars": "נרות {0}", "Lower_input": "Lower", "Arc": "קשת", "Elder's Force Index_study": "Elder's Force Index", "Show Earnings on Chart": "הראה דו\"חות רווחים על הגרף", "Low": "נמוך", "Bollinger Bands %B_study": "רוצועות בויילינגר %", "Time Zone": "אזור זמן", "right": "ימין", "Schiff": "שיף", "Donchian Channels_study": "ערוצי דונצ'יאן", "Upper Band_input": "Upper Band", "start_input": "start", "No indicators matched your criteria.": "לא נמצאו התאמות לאינדקטור", "Short length_input": "Short length", "Kolkata": "כלכותה", "Triple EMA_study": "ממוצעים נעים אקפוננציאלית פי 3 (Triple EMA)", "Technical Analysis": "ניתוח טכני", "Show Text": "הצג טקסט", "Channel": "ערוץ", "Lagging Span 2 Periods_input": "Lagging Span 2 Periods", "Seoul": "סיאול", "bottom": "תחתית", "Teeth_input": "Teeth", "Moscow": "מוסקבה", "Save New Chart Layout": "שמור תצורת גרף חדשה", "Fib Channel": "ערוץ פיבונאצ'י", "Minutes_interval": "Minutes", "Columns": "עמודות", "Directional Movement_study": "Directional Movement", "roclen2_input": "roclen2", "Apply WPT Down Wave": "החל גל WPT כלפי מטה", "Not applicable": "בלתי קביל", "Bollinger Bands %B_input": "Bollinger Bands %B", "Shapes_input": "Shapes", "Lips Length_input": "Lips Length", "Use Upper Deviation_input": "Use Upper Deviation", "L_in_legend": "נ", "Inside": "בתוך", "shortlen_input": "shortlen", "Profit Background Color": "צבע רקע לרווח", "Bar's Style": "סגנון נרות", "Exponential_input": "Exponential", "Stay In Drawing Mode": "הישאר במצב ציור", "Comment": "הערה", "Connors RSI_study": "Connors RSI", "Bars": "נרות", "Show Labels": "הראה תוויות", "Flat Top/Bottom": "החלק חלק עליון/תחתון", "December": "דצמבר‏", "Left Labels": "תוויות שמאליות", "Insert Indicator...": "הוסף אינדיקטור...", "ADR_B_input": "ADR_B", "Change Symbol...": "שנה סימול...", "Ray": "קרן", "Feb": "פברואר", "Transparency": "שקיפות", "June": "יוני‏", "Cyclic Lines": "קווים מחזוריים", "length28_input": "length28", "ABCD Pattern": "דפוס ABCD", "Objects Tree": "תרשים האובייקטים", "Add": "הוסף", "Least Squares Moving Average_study": "ריבועי ממוצעים נעים פשוטים (LSMA)", "Chart Layout Name": "שם תצורת גרף", "Hull MA_input": "Hull MA", "Lock Scale": "נעילת קנה מידה", "distance: {0}": "מרחק: {0}", "Extended": "מורחב", "log": "דוח", "NO": "לא", "Top Margin": "שול עליון", "Up fractals_input": "Up fractals", "Insert Drawing Tool": "הכנס כלי ציור", "Show Price Range": "הראה טווח מחירים", "Correlation_input": "Correlation", "Session Breaks": "הפסקות פעילות", "Add {0} To Watchlist": "הוסף {0} לרשימת המעקב", "Anchored Note": "הערה נעוצה", "lipsLength_input": "lipsLength", "UpDown Length_input": "UpDown Length", "November": "נובמבר‏", "ASI_study": "ASI", "Background Color": "צבע רקע", "D_data_mode_delayed_streaming_letter": "D", "VI -_input": "VI -", "slowLength_input": "slowLength", "Click to set a point": "לחץ על מנת לקבוע נקודה", "January": "ינואר‏", "n/a": "לא זמין", "Failure text color": "צבע טקסט כשלון", "Sa_day_of_week": "Sa", "Change area background": "שנה צבע אזור", "Error": "שגיאה", "RVI_input": "RVI", "Centered_input": "Centered", "Original": "מקורי", "True Strength Indicator_study": "מדד כוח אמיתי ׁ(TSI)", "Simple ma(oscillator)_input": "Simple ma(oscillator)", "Compare": "השוואה", "Fisher Transform_study": "Fisher Transform", "Projection": "הקרנה", "Length EMA_input": "Length EMA", "Enter a new chart layout name": "הכנס שם חדש לתצורת הגרף", "Signal Length_input": "Signal Length", "FAILURE": "כישלון", "MA with EMA Cross_study": "MA with EMA Cross", "Close": "סגירה", "ParabolicSAR_input": "ParabolicSAR", "Log Scale_scale_menu": "תפריט מרחב", "MACD_input": "MACD", "{0} P&L: {1}": "{0} רווח/הפסד: {1}", "Arrow Mark Left": "חץ שמאלה", "Slow length_input": "Slow length", "(O + H + L + C)/4": "4/(פ+ג+נ+ס)", "Open_line_tool_position": "נפתח", "Lagging Span_input": "Lagging Span", "Cross": "צלב", "Mirrored": "הפוך במאונך", "Vancouver": "ונקובר", "Label Background": "רקע תווית", "ADX smoothing_input": "ADX smoothing", "Normal": "רגיל", "May": "מאי", "Detrended Price Oscillator_study": "Detrended Price Oscillator", "Color 5_input": "Color 5", "Risk/Reward Ratio: {0}": "יחס סיכוי/סיכון: {0}", "Scale Price Chart Only": "מרחב גרף מחירים בלבד", "Unmerge Up": "צמצם חלק עליון", "auto_scale": "אוטומטי", "Short period_input": "Short period", "Background": "רקע", "VWMA_input": "VWMA", "Lower Deviation_input": "Lower Deviation", "ATR_input": "ATR", "February": "פברואר‏", "Reverse": "היפוך", "Add to favorites": "הוסף למועדפים", "Median": "חציון", "ADX_input": "ADX", "Remove": "הסר", "len_input": "len", "Arrow Mark Up": "חץ למעלה", "April": "‏אפריל", "Crosses_input": "Crosses", "Middle_input": "Middle", "LowerLimit_input": "LowerLimit", "Know Sure Thing_study": "דע בביטחון (Know sure thing)", "Copy Chart Layout": "העתק תצורת גרף", "Compare...": "השוואה...", "1. Slide your finger to select location for next anchor
    2. Tap anywhere to place the next anchor": "החלק את האצבע כדי לבחור מקום לעוגן הראשון.
    2\\. לחץ בכל מקום על מנת לשים עוגן", "Compare or Add Symbol": "השווה או הוסף סימול", "Color": "צבע", "Aroon Up_input": "Aroon Up", "Singapore": "סינגפור", "Scales Lines": "קווי קנה מידה", "Show Distance": "הראה מרחק", "Fixed Range_study": "Fixed Range", "Williams Fractal_study": "Williams Fractal", "Merge Up": "הרחב מעלה", "Right Margin": "שול ימני", "Ellipse": "אליפסה", "Warsaw": "ורשה"} \ No newline at end of file diff --git a/charting_library/static/localization/translations/hu_HU.json b/charting_library/static/localization/translations/hu_HU.json index a4dc9d95..18a93d28 100644 --- a/charting_library/static/localization/translations/hu_HU.json +++ b/charting_library/static/localization/translations/hu_HU.json @@ -1 +1 @@ -{"ticks_slippage ... ticks": "ticks", "Months_interval": "Hónapok", "Percent_input": "Percent", "Hide Events on Chart": "Események Elrejtése a Chartról", "RSI Length_input": "RSI Length", "month": "hónap", "roclen1_input": "roclen1", "Unmerge Down": "Szétválasztás Le", "Percents": "Százalékok", "Search Note": "Megjegyzés Keresése", "Minor": "Kis", "Do you really want to delete Chart Layout '{0}' ?": "Biztos, hogy törölni akarod ezt a chart elrendezést: {0}?", "Quotes are delayed by {0} min and updated every 30 seconds": "A jegyzések {0} perccel vannak késleltetve és minden 30. percben frissülnek", "June": "Június", "Magnet Mode": "Magnet Mód", "Grand Supercycle": "Nagy Szuperciklus", "OSC_input": "OSC", "Hide alert label line": "Riasztási vonal elrejtése", "Volume_study": "Volumen", "Lips_input": "Lips", "Show real prices on price scale (instead of Heikin-Ashi price)": "Valódi árak mutatása az ártáblázaton (a Heikin-Ashi árak helyett)", "Histogram": "Hisztogram", "Base Line_input": "Base Line", "Step": "Lépés", "Elliott Wave Circle": "Elliott Hullám Kör", "Fib Time Zone": "Fib Időzóna", "SMALen2_input": "SMALen2", "Bollinger Bands_study": "Bollinger Szalagok", "Show/Hide": "Mutatás/Elrejtés", "Upper_input": "Upper", "Sig_input": "Sig", "Move Up": "Mozgatás Fel", "Sigma_input": "Sigma", "This indicator cannot be applied to another indicator": "Ezt az indikátort nem lehet alkalmazni egy másik indikátorra", "Gann Square": "Gann Négyszög", "Count_input": "Count", "Full Circles": "Teljes Körök", "Industry": "Iparág", "SMALen1_input": "SMALen1", "Cross_chart_type": "Kereszt", "Target Color:": "Cél Szín:", "a day": "egy nap", "Pitchfork": "Villa", "Normal": "Normális", "Accumulation/Distribution_study": "Akkumuláció/Disztribúció", "Rate Of Change_study": "Változás Üteme", "Risk/Reward short": "Kockázat/Nyereség short", "in_dates": "-ban/ben", "Color 7_input": "Color 7", "Change Average HL value": "Átlag HL-érték módosítása", "Scales Properties": "Méretezési Tulajdonságok", "Trend-Based Fib Time": "Trendalapú Fib Idő", "Remove All Indicators": "Minden Indikátor Eltávolítása", "Oscillator_input": "Oscillator", "Last Modified": "Utoljára Módosítva", "yay Color 0_input": "yay Color 0", "Labels": "Címkék", "Chande Kroll Stop_study": "Chande Kroll Stop", "Hours_interval": "Órák", "Scale Right": "Skála Jobbra", "Money Flow_study": "Pénzáramlás", "siglen_input": "siglen", "Indicator Labels": "Indikátor Címkék", "Source Code": "Forráskód", "__specialSymbolOpen__Tomorrow at__specialSymbolClose__ __dayTime__": "__specialSymbolOpen__Holnap__specialSymbolClose__ __dayTime__", "Toggle Percentage": "Váltás Százalék", "Remove All Drawing Tools": "Összes Rajzeszköz Eltávolítása", "Remove all line tools for ": "Összes vonal eszköz eltávolítása innen: ", "Linear Regression Curve_study": "Linear Regression Curve", "Symbol_input": "Symbol", "Currency": "Valuta", "Upper Deviation_input": "Upper Deviation", "Rename Chart Layout": "Chart Elrendezés Átnevezése", "__specialSymbolOpen__Last__specialSymbolClose__ __dayName__ __specialSymbolOpen__at__specialSymbolClose__ __dayTime__": "__specialSymbolOpen__Utolsó__specialSymbolClose__ __dayName__ __specialSymbolOpen__at__specialSymbolClose__ __dayTime__", "Save Chart Layout": "Chart Elrendezés Mentése", "Allow up to": "Engedélyezés maximum eddig:", "Label": "Címke", "second": "seconds", "Any Number": "Bármely Szám", "smoothD_input": "smoothD", "Falling_input": "Falling", "Percentage": "Százalék", "Donchian Channels_study": "Donchian Csatornák", "Entry price:": "Belépési ár:", "RSI Source_input": "RSI Source", " per contract": " ügyletenként", "Open Manage Drawings": "Rajzok Kezelésének Megnyitása", "Ichimoku Cloud_study": "Ichimoku Felhő", "jawLength_input": "jawLength", "Toggle Log Scale": "Váltás Log Skála", "Apply Elliot Wave Major": "Fő Elliot Hullám Alkalmazása", "Grid": "Rács", "Mass Index_study": "Tömeg Index", "Slippage": "Csúszás", "Smoothing_input": "Smoothing", "Color 3_input": "Color 3", "Jaw Length_input": "Jaw Length", "Almaty": "Almati", "Inside": "Belső", "Delete all drawing for this symbol": "Összes rajz törlése ennél a szimbólumknál", "Quotes are delayed by 10 min and updated every 30 seconds": "A jegyzések 10 perccel vannak késleltetve és minden 30. másodpercben frissülnek.", "Keltner Channels_study": "Keltner Csatornák", "Long Position": "Long Pozíció", "Bands style_input": "Bands style", "Undo {0}": "{0} Visszavonása", "With Markers": "Jelölésekkel", "Momentum_study": "Momentum", "MF_input": "MF", "On Balance Volume_study": "Egyensúly Volumen", "Switch to the next chart": "Váltás a következő chartra", "Change Hours To": "Órák Módosítása", "charts by TradingView": "TradingView chartok", "Long length_input": "Long length", "Flipped": "Flippelt", "Disjoint Angle": "Diszjunkt Szög", "Supermillennium": "Szuperévezred", "W_interval_short": "W", "Color 6_input": "Color 6", "Log Scale": "Log Skála", "Line - High": "Vonal - High", "Zurich": "Zürich", "Equality Line_input": "Equality Line", "Open": "Nyitás", "Fib Wedge": "Fib Ék", "Line": "Vonal", "Session": "Munkamenet", "Down fractals_input": "Down fractals", "smalen2_input": "smalen2", "isCentered_input": "isCentered", "Border": "Keret", "Klinger Oscillator_study": "Klinger Oszcillátor", "Absolute": "Teljes", "Style": "Stílus", "Show Left Scale": "Bal Oldali Skála Mutatása", "SMI Ergodic Indicator/Oscillator_study": "SMI Ergodic Indicator/Oscillator", "Istanbul": "Isztambul", "Cross": "Kereszt", "Last available bar": "Utolsó elérhető oszlop", "Manage Drawings": "Rajzok Kezelése", "Top": "Felső", "No drawings yet": "Nincs még rajz", "Chande MO_input": "Chande MO", "Copy link": "Link másolása", "TRIX_study": "TRIX", "MACD_study": "MACD", "RVGI_input": "RVGI", "Realtime": "Valós Idejű", "Last edited ": "Utoljára szerkesztett ", "signalLength_input": "signalLength", "Middle_input": "Middle", "Reset Settings": "Alapbeállítások Visszaállítása", "d_dates": "n", "Point & Figure": "Pont & Ábra", "August": "Augusztus", "Recalculate After Order filled": "Újraszámolás a megbízás kitöltése után", "Source_compare": "Forrás", "Correlation Coefficient_study": "Korrelációs Koefficiens", "Delayed": "Késleltetett", "Bottom Labels": "Alsó Címkék", "Text color": "Szöveg szín", "Levels": "Szintek", "Short Length_input": "Short Length", "teethLength_input": "teethLength", "Failure text color": "Veszteség szöveg szín", "instrument is not allowed": "az eszköz nem engedélyezett", "FAILURE": "VESZTESÉG", "Open {{symbol}} Text Note": "{{symbol}} Szöveges Megjegyzés Megnyitása", "October": "Október", "Lock All Drawing Tools": "Rajzeszközök Zárolása", "Target border color": "Cél keret szín", "Right End": "Jobb Vég", "Show Symbol Last Value": "Utolsó Érték Szimbólum Mutatása", "Do you really want to delete Study Template '{0}' ?": "Biztos, hogy törölni akarod ezt a tanulmánysablont: {0}?", "Favorite Drawings Toolbar": "Kedvenc Rajzok Eszköztár", "Properties...": "Tulajdonságok...", "MA Cross_study": "MA Kereszt", "Trend Angle": "Trendszög", "Snapshot": "Pillanatkép", "Crosshair": "Szálkereszt", "Signal line period_input": "Signal line period", "Timezone/Sessions Properties...": "Időzóna/Munkamenet Tulajdonságok...", "Line Break": "Vonaltörés", "Quantity": "Mennyiség", "Price Volume Trend_study": "Árvolumen Trend", "Auto Scale": "Automata Méretezés", "hour": "óra", "Scales": "Skálák", "Delete chart layout": "Chart elrendezés törlése", "Text": "Szöveg", "F_data_mode_forbidden_letter": "F", "Risk/Reward long": "Kockázat/Nyereség long", "Apr": "Ápr", "Long RoC Length_input": "Long RoC Length", "Length3_input": "Length3", "Cancel Order": "Megbízás Törlése", "{0} copy": "{0} mentés", "Use one color": "Egyetlen szín használata", "Exit Full Screen (ESC)": "Kilépés a Teljes Képernyőből (ESC)", "Show Bars Range": "Bártartomány Mutatás", "Show Economic Events on Chart": "Gazdasági Események Mutatása a Charton", "%s ago_time_range": "ennyivel korábban: %s", "Zoom In": "Nagyítás", "Failure back color": "Veszteség vissza szín", "Below Bar": "Alsó oszlop", "Coordinates": "Koordináták", "Time Scale": "Időskála", "

    Only D, W, M intervals are supported for this symbol/exchange. You will be automatically switched to a D interval. Intraday intervals are not available because of exchange policies.

    ": "

    Csak D, W, M intervallumok érhetők el ehhez a szimbólumhoz/tőzsdéhez. Automatikusan a Napi D intervallum kerül beállításra. A napon belüli intervallumok a tőzsdei szabályozás miatt nem érhetők el.

    ", "Extend Left": "Bal Hosszabítás", "Date Range": "Időintervallum", "Min Move": "Min Változás", "Price format is invalid.": "Érvénytelen árformátum.", "Show Price": "Ár Mutatása", "Level_input": "Level", "Commodity Channel Index_study": "Árucsatorna Index", "Elder's Force Index_input": "Elder's Force Index", "Scales Properties...": "Méretezési Tulajdonságok...", "Format": "Formátum", "Color bars based on previous close": "Bárszínek az előző záró alapján", "Change band background": "Sáv háttér megváltoztatása", "Marketplace Add-ons": "Marketplace Bővítmények", "Adjust Scale": "Skála Beállítása", "Anchored Text": "Horgony Szöveg", "Edit {0} Alert...": "{0} Riasztás Szerkesztése...", "Text:": "Szöveg:", "Aroon_study": "Aroon", "show MA_input": "show MA", "Ashkhabad": "Asgábád", "h_dates": "ó", "Short Position": "Short Pozíció", "Show Labels": "Címkék Mutatása", "Change Interval...": "Időköz Változtatás...", "Apply Default": "Alapértelmezett Beállítás", "SMALen3_input": "SMALen3", "Average Directional Index_study": "Átlagos Irányított Index", "Fr_day_of_week": "P", "Invite-only script. Contact the author for more information.": "Meghívásos szkript. A további információkért vedd fel a kapcsolatot a szerzővel.", "Curve": "Görbe", "a year": "egy év", "H_in_legend": "Magas", "Bars Pattern": "Bár Minta", "D_input": "D", "Right Labels": "Jobb Címkék", "Change Interval": "Változás Időköz", "p_input": "p", "Chart layout name": "Chart elrendezés neve", "Fib Circles": "Fib Körök", "Apply Manual Decision Point": "Manuális Döntési Pont Alkalmazása", "Dot": "Pont", "Target back color": "Cél vissza szín", "All": "Összes", "Show Positions": "Pozíciók Mutatása", "orders_up to ... orders": "orders", "Lead 2_input": "Lead 2", "Save image": "Kép mentés", "Fundamentals": "Alapok", "Unlock": "Feloldás", "Up Wave 2 or B": "Hullám 2 vagy B Fel", "Navigation Buttons": "Navigációs Gombok", "Miniscule": "Apró", "Apply": "Alkalmaz", "Precise Labels": "Pontos Címkék", "Sine Line": "Szinuszvonal", "{0} financials by TradingView": "{0} TradingView pénzügyek", "%d day": "%d nap", "Hide": "Elrejtés", "Bottom": "Alsó", "Target text color": "Cél szöveg szín", "Scale Left": "Skála Balra", "Elliott Wave Subminuette": "Elliott Hullám Subminuette", "Down Wave C": "Hullám C Le", "Countdown": "Visszaszámlálás", "Variance": "Eltérés", "Sao Paulo": "São Paulo", "Oct": "Okt", "Apply Elliot Wave Minor": "Kis Elliot Hullám Alkalmazása", "Inputs": "Inputok", "Conversion Line_input": "Conversion Line", "March": "Március", "Su_day_of_week": "V", "Up fractals_input": "Up fractals", "Regression Trend": "Regresszió Trend", "Symbol Description": "Szimbólum Leírás", "Double EMA_study": "Dupla EMA", "minute": "perc", "Price Oscillator_study": "Price Oszcillátor", "Sync drawings to all charts": "Rajzok szinkronizálása minden charttal", "Chop Zone_study": "Oldalazó Zóna", "Stop Color:": "Szín Leállít:", "Stay in Drawing Mode": "Rajzmódban Marad", "Bottom Margin": "Alsó Margó", "Dubai": "Dubaj", "Save Chart Layout saves not just some particular chart, it saves all charts for all symbols and intervals which you are modifying while working with this Layout": "A Chart Elrendezés Mentése nem csak bizonyos chartokat ment el, hanem az összes olyan szimbólum és intervallum chartjait, amelyekkel az adott Elrendezésben éppen dolgozol.", "Average True Range_study": "Átlagos Valós Tartomány", "Max value_input": "Max value", "MA Length_input": "MA Length", "Invite-Only Scripts": "Meghívásos Szkriptek", "Time Interval": "Idő Intervallum", "UpperLimit_input": "UpperLimit", "sym_input": "sym", "DI Length_input": "DI Length", "Script Editor...": "Szkript Editor...", "Extend Lines": "Vonalak Hosszabítása", "SMI_input": "SMI", "Change Days To": "Napok Módosítása", "Square": "Négyzet", "Basis_input": "Basis", "Moving Average_study": "Mozgóátlag", "lengthStoch_input": "lengthStoch", "Taipei": "Tajpej", "Objects Tree": "Tárgyfa", "Remove from favorites": "Eltávolít kedvencek közül", "Copy": "Másolás", "Scale Series Only": "Csak Skálasorozatok", "Simple": "Egyszerű", "Report a data issue": "Adatprobléma jelentése", "Arnaud Legoux Moving Average_study": "Arnaud Legoux Mozgóátlag", "Technical Analysis": "Technikai Elemzés", "Lower Band_input": "Lower Band", "Verify Price for Limit Orders": "Limitáras Megbízások Árának Ellenőrzése", "VI +_input": "VI +", "Line Width": "Vonal Szélessége", "Lead 1_input": "Lead 1", "Always Show Stats": "Mindig Mutasd Statisztikát", "Down Wave 4": "Hullám 4 Le", "Down Wave 5": "Hullám 5 Le", "Simple ma(signal line)_input": "Simple ma(signal line)", "Ray": "Sugár", "Public Library": "Nyilvános Könyvtár", " Do you really want to delete Drawing Template '{0}' ?": " Biztos, hogy törölni akarod ezt a rajzsablont: {0}?", "Down Wave 3": "Hullám 3 Le", "Close message": "Üzenet bezárása", "long_input": "long", "Show Drawings Toolbar": "Rajzok Eszköztár Mutatása", "Chaikin Oscillator_study": "Chaikin Oszcillátor", "Balloon": "Ballon", "Market Open": "Piacnyitás", "Color Theme": "Szín Téma", "Centered_input": "Centered", "Bollinger Bands Width_input": "Bollinger Bands Width", "Apply Indicator on {0} ...": "Indikátor alkalmazása ezen: {0} ...", "Fib Speed Resistance Arcs": "Fib Speed Ellenállás Ívek", "Error occured while publishing": "Hiba történt közzététel közben", "Fisher_input": "Fisher", "Color 1_input": "Color 1", "Moving Average Weighted_study": "Moving Average Weighted", "Save": "Mentés", "Type": "Típus", "Chart Layout Name": "Chart Elrendezés Neve", "Short period_input": "Short period", "Load Chart Layout": "Chart Elrendezés Betöltése", "Show Values": "Értékek Mutatása", "Fib Speed Resistance Fan": "Fib Speed Ellenállás Fan", "This chart layout has more than 1000 drawings, which is a lot! This may negatively affect performance, storage and publishing. We recommend to remove some drawings to avoid potential performance issues.": "Ehhez a chart elrendezéshez több, mint 1000 rajz tartozik, ami nagyon sok. Ez negatívan befolyásolhatja a teljesítményt, a tárolást és a publikálást. Azt javasoljuk, hogy a lehetséges teljesítményproblémák kiküszöbölése érdekében távolíts el néhány rajzot.", "Left End": "Bal Vég", "%d year": "%d év", "Always Visible": "Mindig Látható", "S_data_mode_snapshot_letter": "S", "post-market": "piaci zárás utáni", "Change Minutes To": "Percek Módosítása", "Earnings breaks": "Nyereségtörés", "Do not ask again": "Ne kérdezd meg többször", "Tue": "Ke", "smalen4_input": "smalen4", "CCI_input": "CCI", "Unmerge Up": "Szétválasztás Fel", "increment_input": "increment", "(H + L)/2": "(M + A)/2", "XABCD Pattern": "XABCD Minta", "Schiff Pitchfork": "Schiff Villa", "powered by {0}": "{0} támogatásával", "DEMA_input": "DEMA", "NV_input": "NV", "Choppiness Index_study": "Szaggatottság Index", "Study Template '{0}' already exists. Do you really want to replace it?": "{0} névvel már létezik tanulmánysablon. Biztos, hogy cserélni akarod?", "Merge Down": "Összeolvasztás Le", "Studies": "Tanulmányok", "eod delayed": "eod késleltetett", "Delete": "Törlés", "in %s_time_range": "%s múlva", "percent_input": "percent", "September": "Szeptember", "Length_input": "Length", "Avg HL in minticks": "Átl HL a minticks-ben", "Accumulation/Distribution_input": "Accumulation/Distribution", "Sync": "Szinkronizálás", "C_in_legend": "Z", "Weeks_interval": "Hetek", "smoothK_input": "smoothK", "Percentage_scale_menu": "Százalék", "Change Extended Hours": "Meghosszabbított Nyitva Tartás Módosítása", "MOM_input": "MOM", "h_interval_short": "h", "Rotated Rectangle": "Elforgatott Téglalap", "Modified Schiff": "Módosított Schiff", "Send Backward": "Hátrébb Küldés", "Mexico City": "Mexikóváros", "TRIX_input": "TRIX", "Show Price Range": "Ártartomány Mutatás", "Elliott Major Retracement": "Elliott Fő Retracement", "Notification": "Értesítés", "Fri": "Pén", "just now": "épp most", "Forecast": "Előrejelzés", "Fraction part is invalid.": "Érvénytelen törtrész.", "Connecting": "Csatlakozás", "Ghost Feed": "Ghost Hírfolyam", "Histogram_input": "Histogram", "The Extended Trading Hours feature is available only for intraday charts": "A Kibővített Kereskedési Óra funkció csak napon belüli chartokhoz érhető el", "StdDev_input": "StdDev", "Change Minutes From": "Percek Módosítása", "Relative Strength Index_study": "Relatív Erő Index", "Interval is not applicable": "Az időköz nem alkalmazható", "My Scripts": "Szkriptjeim", "Monday": "Hétfő", "-DI_input": "-DI", "short_input": "short", "Symbol": "Szimbólum", "a month": "egy hónap", "Precision": "Pontosság", "depth_input": "depth", "Please enter chart layout name": "Kérjük, add meg a chart elrendezés nevét", "Mar": "Már", "Offset": "Eltolás", "Date": "Dátum", "Format...": "Formázás...", "Toggle Auto Scale": "Váltás Automata Méretezés", "Toggle Maximize Pane": "Maximalizáló Tábla Kezelése", "Periods_input": "Periods", "Zig Zag_study": "Cikk Cakk", "Actual": "Aktuális", "SUCCESS": "NYERESÉG", "Detrended Price Oscillator_input": "Detrended Price Oscillator", "Drawings Toolbar": "Rajzok Eszköztár", "length_input": "length", "Close Position": "Záró Pozíció", "Price Line": "Árvonal", "Area With Breaks": "Terület Törésekkel", "Zoom Out": "Kicsinyítés", "Stop Level. Ticks:": "Stop Szint. Tick:", "Jul": "Júl", "Above Bar": "Felső oszlop", "Visual Order": "Vizuális Elrendezés", "Warning": "Figyelmeztetés", "__specialSymbolOpen__Yesterday at__specialSymbolClose__ __dayTime__": "__specialSymbolOpen__Tegnap__specialSymbolClose__ __dayTime__", "Stop Background Color": "Háttérszín Leállítás", "Slow length_input": "Slow length", "Conversion Line Periods_input": "Conversion Line Periods", "Sector": "Szektor", "powered by TradingView": "támogatta a TradingView", "Stochastic_study": "Sztochasztikus", "Apply WPT Down Wave": "WPT Le Hullám Alkalmazása", "Marker Color": "Jelölő Színe", "TEMA_input": "TEMA", "Apply WPT Up Wave": "WPT Fel Hullám Alkalmazása", "Min Move 2": "Min Változás 2", "Directional Movement_study": "Irányított Mozgás", "Extend Left End": "Bal Vég Hosszabítás", "Advance/Decline_study": "Advance/Decline", "Flag Mark": "Zászló Jel", "Drawings": "Rajzok", "Fast length_input": "Fast length", "Cancel": "Törlés", "Bar #": "Bár #", "Median_input": "Median", "Redo": "Újra", "Hide Drawings Toolbar": "Rajz Eszköztár Elrejtése", "Ultimate Oscillator_study": "Végső Oszcillátor", "This chart layout has a lot of objects and can't be published! Please report to {0} for further details.": "A chart elrendezés túl sok tárgyat tartalmaz, ezért nem publikálható. Kérjük, hogy a további részletekért jelentsd az esetet: {0}.", "Vert Grid Lines": "Függőleges Rácsvonalak", "Growing_input": "Growing", "Angle": "Szög", "Show Only Future Events": "Csak a Jövőbeli Események Mutatása", "Plot_input": "Plot", "Color 8_input": "Color 8", "Indicators, Fundamentals, Economy and Add-ons": "Indikátorok, Alapok, Gazdaság és Bővítmények", "Search": "Keresés", "Bollinger Bands Width_study": "Bollinger Szalag Szélesség", "roclen3_input": "roclen3", "Overbought_input": "Overbought", "DPO_input": "DPO", "Levels Line": "Szintvonal", "No study templates saved": "Nincs tanulmány sablon elmentve", "Trend Line": "Trendvonal", "Relative Vigor Index_study": "Relative Vigor Index", "Your chart is being saved, please wait a moment before you leave this page.": "Folyamatban van a chartod mentése, ezért kérjük, még ne hagyd el az oldalt.", "Circle": "Kör", "Price Range": "Ártartomány", "Extended Hours": "Meghosszabbított Nyitva Tartás", "Triangle": "Háromszög", "Line With Breaks": "Vonal Törésekkel", "Period_input": "Period", "Watermark": "Vízjel", "Trigger_input": "Trigger", "SigLen_input": "SigLen", "Clone": "Klón", "Color 2_input": "Color 2", "Show Prices": "Árak Mutatása", "Contracts": "Szerződések", "{0} chart by TradingView": "{0} TradingView chart", "Timezone/Sessions": "Időzóna/Munkamenet", "Save Indicator Template As...": "Mentsd az Indikátort Sablonként Mint...", "Arrow Mark Right": "Nyíl Jobbra", "Background color 2": "Háttérszín 2", "Background color 1": "Háttérszín 1", "Circles": "Körök", "McGinley Dynamic_study": "McGinley Dinamika", "Visible on Mouse Over": "Az Egér Föléhúzásakor Látható", "Thu": "Cs", "Vortex Indicator_study": "Vortex Indikátor", "Williams Alligator_study": "Williams Alligátor", "ROCLen1_input": "ROCLen1", "Border Color": "Keret Színe", "M_interval_short": "M", "Change Symbol...": "Szimbólum Változtatás...", "Price Levels": "Árszintek", "Show Splits": "Felosztások Mutatása", "Zero Line_input": "Zero Line", "__specialSymbolOpen__Today at__specialSymbolClose__ __dayTime__": "__specialSymbolOpen__Ma__specialSymbolClose__ __dayTime__", "Increment_input": "Increment", "Days_interval": "Napok", "Show Right Scale": "Jobb Oldali Skála Mutatása", "Show Alert Labels": "Riasztás Címke Mutatása", "Net Volume_study": "Nettó Volumen", "Lock": "Zárás", "length14_input": "length14", "Sa_day_of_week": "Szo", "High": "Magas", "Date and Price Range": "Dátum és Árfolyamtartomány", "Polyline": "Sokszögvonal", "Reconnect": "Újbóli csatlakozás", "Add to favorites": "Hozzáadás kedvencekhez", "Saturday": "Szombat", "Symbol Last Value": "Szimbólum Utolsó Értéke", "Color 0_input": "Color 0", "maximum_input": "maximum", "Wed": "Szer", "Paris": "Párizs", "D_data_mode_delayed_letter": "D", "Symbol Info": "Szimbólum Infó", "Pyramiding": "Pyramid használata", "fastLength_input": "fastLength", "Width": "Szélesség", "Historical Volatility_study": "Histórikus Volatilitás", "Template": "Sablon", "Compare or Add Symbol...": "Összehasonlítás vagy Szimbólum Hozzáadása...", "Parallel Channel": "Párhuzamos Csatorna", "Time Cycles": "Ciklusidők", "Second fraction part is invalid.": "A második törtrész érvénytelen.", "Divisor_input": "Divisor", "Down Wave 1 or A": "Hullám 1 vagy A Le", "ROC_input": "ROC", "Extend": "Hosszabítás", "length7_input": "length7", "Toggle Maximize Chart": "Maximális Chat Kiterjesztése", "Undo": "Visszavonás", "Window Size_input": "Window Size", "Mon": "Hét", "Reset Scale": "Méret Visszaállítása", "Long Length_input": "Long Length", "True Strength Indicator_study": "True Strength Indikátor", "%R_input": "%R", "There are no saved charts": "Nincsenek elmentett chartok", "Chart Properties": "Chart Tulajdonságok", "bars_margin": "bárok", "Show Indicator Last Value": "Utolsó Érték Indikátor Mutatása", "Initial capital": "Indulótőke", "Show Angle": "Szög Mutatás", "Indicator Last Value": "Indikátor Utolsó Értéke", "More features on tradingview.com": "Még több funkció a tradingview.com-on", "smalen3_input": "smalen3", "Length1_input": "Length1", "Always Invisible": "Mindig Láthatatlan", "Days": "Napok", "x_input": "x", "Save As...": "Mentés Másként...", "Lock/Unlock": "Zárás/Feloldás", "Elliott Double Combo Wave (WXY)": "Elliott Dupla Kombinációs Hullám (WXY)", "Parabolic SAR_study": "Parabolikus SAR", "Fisher Transform_study": "Fisher Transzformáció", "Show Hidden Tools": "Elrejtett Eszközök Mutatása", "Hollow Candles": "Áttetsző Gyertyák", "Any Symbol": "Bármely Szimbólum", "UO_input": "UO", "Stats Text Color": "Statisztika Szöveg Szín", "Minutes": "Percek", "Short RoC Length_input": "Short RoC Length", "Show Orders": "Megbízások Mutatása", "Jaw_input": "Jaw", "Right": "Jobb", "Help": "Súgó", "Coppock Curve_study": "Coppock Görbe", "Reset Chart": "Chart Visszaállítása", "Sep": "Szep", "Sunday": "Vasárnap", "Themes": "Témák", "Left Axis": "Bal Tengely", "YES": "IGEN", "longlen_input": "longlen", "Moving Average Exponential_study": "Mozgóátlag Exponenciális", "Source border color": "Forrás keret szín", "Redo {0}": "{0} Újra", "Cypher Pattern": "Rejtjel Minta", "s_dates": "s", "Move Down": "Mozgatás Le", "Area": "Terület", "invalid symbol": "érvénytelen szimbólum", "Triangle Pattern": "Háromszög Minta", "Gann Fan": "Gann Legyező", "Balance of Power_study": "Erőegyensúly", "EOM_input": "EOM", "Font Size": "Betűméret", "Apply Manual Risk/Reward": "Manuális Kockázat/Nyereség Alkalmazása", "Indicators": "Indikátorok", "q_input": "q", "You are notified": "Értesítést kaptál", "%D_input": "%D", "Text Alignment:": "Szöveg Igazítás:", "Offset_input": "Offset", "Risk": "Kockázat", "Price Scale": "Ártáblázat", "HV_input": "HV", "Seconds": "Másodpercek", "(H + L + C)/3": "(M + A + Z)/3", "Start_input": "Kezdés", "R_data_mode_realtime_letter": "R", "Hours": "Órák", "Send to Back": "Visszaküldés", "Color 4_input": "Color 4", "Angles": "Szögek", "Prices": "Árak", "Extended Hours (Intraday Only)": "Meghosszabbított Nyitva Tartás (Csak Napon Belüli Kereskedéshez)", "July": "Július", "Create Horizontal Line": "Vízszintes Vonal Létrehozása", "Minute": "Perc", "Cycle": "Ciklus", "ADX Smoothing_input": "ADX Smoothing", "One color for all lines": "Egyetlen szín minden vonalhoz", "m_dates": "hó", "Settings": "Beállítások", "Drawing Tools": "Rajzeszközök", "Candles": "Gyertyák", "We_day_of_week": "Sze", "Width (% of the Box)": "Szélesség (a Box %-a)", "%d minute": "%d perc", "Pip Size": "Pip Méret", "Wednesday": "Szerda", "This drawing is used in alert. If you remove the drawing, the alert will be also removed. Do you want to remove the drawing anyway?": "Erre a rajzra riasztás van beállítva. Ha eltávolítod a rajzolt, a riasztás is törlődni fog. Biztos, hogy eltávolítod a rajzot?", "Hide All Drawing Tools": "Minden Rajzeszköz Elrejtése", "Show alert label line": "Riasztási vonal mutatása", "Down Wave 2 or B": "Hullám 2 vagy B Le", "MA_input": "MA", "Detrended Price Oscillator_study": "Trendmentes Ár Oszcillátor", "not authorized": "nem engedélyezett", "Bar's Style": "Bár Stílusa", "Image URL": "Kép URL", "Submicro": "Szubmikro", "SMI Ergodic Oscillator_input": "SMI Ergodic Oscillator", "Show Objects Tree": "Tárgyfa Mutatása", "Primary": "Elsődleges", "Price:": "Ár:", "Gann Box": "Gann Doboz", "Bring to Front": "Előrehozás", "Brush": "Ecset", "Not Now": "Most Nem", "lengthRSI_input": "lengthRSI", "Yes": "Igen", "Events & Alerts": "Események & Riasztások", "+DI_input": "+DI", "Apply Default Drawing Template": "Alapértelmezett Rajzsablon Alkalmazása", "Save As Default": "Mentés Alapértelmezettként", "Invalid Symbol": "Érvénytelen Szimbólum", "Inside Pitchfork": "Belső Villa", "yay Color 1_input": "yay Color 1", "Quandl is a huge financial database that we have connected to TradingView. Most of its data is EOD and is not updated in real-time, however the information may be extremely useful for fundamental analysis.": "A Quandl egy hatalmaz pénzügyi adatbázis, amelyet összekapcsoltunk a TradingView-val. A leginkább nap végi adatokkal dolgoznak és nincs valós idejű frissítés, az ott található információs mégis hasznosak lehetnek alapvető elemzésekhez.", "Hide Marks On Bars": "Jelölések Elrejtése a Bárokon", "Note": "Megjegyzés", "Show Countdown": "Visszaszámláló Mutatása", "WMA Length_input": "WMA Length", "Show Dividends on Chart": "Osztalékok Mutatása Charton", "Show Executions": "Teljesítések Mutatása", "Borders": "Határok", "loading...": "töltés...", "Closed_line_tool_position": "Záró", "Columns": "Oszlopok", "Change Resolution": "Felbontás Módosítása", "Indicator Arguments": "Indikátor Argumentumok", "Fib Spiral": "Fib Spirál", "Apply Elliot Wave": "Elliot Hullám Alkalmazása", "Degree": "Fokozat", " per order": " megbízásonként", "Line - HL/2": "Vonal - HL/2", "Up Wave 4": "Hullám 4 Fel", "Jun": "Jún", "Least Squares Moving Average_study": "Least Squares Mozgóátlag", "Change Variance value": "Szórásérték Módosítása", "Overlay the main chart": "Fő chart borítása", "powered by ": "támogatta: ", "Source_input": "Source", "Change Seconds To": "Másodpercek Módosítása Erre:", "%K_input": "%K", "Success back color": "Nyereség vissza szín", "Please enter template name": "Kérjük, írd be a sablon nevét", "Symbol Name": "Szimbólum Neve", "Tokyo": "Tokió", "Events Breaks": "Esemény Szünetek", "Study Templates": "Tanulmány Sablonok", "Months": "Hónapok", "Symbol Info...": "Szimbólum Infó...", "Elliott Wave Minor": "Elliott Hullám Kicsi", "Read our blog for more info!": "További tudnivalókért olvasd el a blogunkat!", "Measure (Shift + Click on the chart)": "Mérés (Shift + Click a charton)", "Override Min Tick": "Min. Tick Felülírása", "Thursday": "Csütörtök", "Dialog": "Dialógus", "Add To Text Notes": "Hozzáadás Szöveges Megjegyzésekhez", "Elliott Triple Combo Wave (WXYXZ)": "Elliott Tripla Kombinációs Hullám (WXYXZ)", "Multiplier_input": "Multiplier", "Risk/Reward": "Kockázat/Nyereség", "Base Line Periods_input": "Base Line Periods", "Show Dividends": "Osztalékok Mutatása", "pre-market": "piaci nyitás előtti", "Top Labels": "Top Címkék", "Show Earnings": "Nyereség Mutatása", "Line - Open": "Line - Nyitás", "Elliott Triangle Wave (ABCDE)": "Elliott Háromszög Hullám (ABCDE)", "Minuette": "Menüett", "Text Wrap": "Szöveg Csomagolás", "Reverse Position": "Fordított Pozíció", "Elliott Minor Retracement": "Elliott Kis Retracement", "Th_day_of_week": "Cs", "No symbols matched your criteria": "Egyetlen szimbólum se felel meg a kritériumoknak", "Icon": "Ikon", "Short_input": "Short", "Tuesday": "Kedd", "Indicator_input": "Indicator", "Open Interval Dialog": "Időközi Pábeszéd Dialógus", "Shanghai": "Sanghaj", "Athens": "Athén", "Q_input": "Q", "Content": "Tartalom", "middle": "közép", "Lock Cursor In Time": "Curzor Rögzítése Időhöz", "Intermediate": "Közbülső", "Eraser": "Radír", "TimeZone": "IdőZóna", "Envelope_study": "Boríték", "Symbol Labels": "Szimbólum Címkék", "Active Symbol": "Aktív Szimbólum", "Horizontal Line": "Vízszintes Vonal", "O_in_legend": "Ny", "Confirmation": "Megerősítés", "HL Bars": "HL Oszlopok", "Add Alert": "Riasztás Hozzáadása", "Lines:": "Vonalak", "Hide Favorite Drawings Toolbar": "Kedvenc Rajzok Eszköztár Elrejtése", "useTrueRange_input": "useTrueRange", "Profit Level. Ticks:": "Profitszint. Tick:", "Show Date/Time Range": "Dátum/Időintervallum Mutatás", "Level {0}": "{0} Szint", "Horz Grid Lines": "Vízszintes Rácsvonalak", "Text Notes are available only on chart page. Please open a chart and then try again.": "A szöveges megjegyzéseket csak a chart oldalról éred el. Nyisd meg a chartot és próbáld újra.", "Tu_day_of_week": "K", "day": "nap", "deviation_input": "deviation", "week": "hét", "Base currency": "Alapdeviza", "VWMA_study": "VWMA", "Success text color": "Nyereség szöveg szín", "ADX smoothing_input": "ADX smoothing", "%d hour": "%d óra", "Order size": "Megbízás mérete", "Displacement_input": "Displacement", "Save Indicator Template As": "Mentsd az Indikátort Sablonként Mint", "ADR_B_input": "ADR_B", "Chaikin Money Flow_study": "Chaikin Pénzáramlás", "Ease Of Movement_study": "Mozgás Könnyedség", "Defaults": "Alapértelmezettek", "Oversold_input": "Oversold", "Williams %R_study": "Williams %R", "Visual settings...": "Képi beállítások", "RSI_input": "RSI", "Long period_input": "Long period", "Mo_day_of_week": "H", "center": "közép", "Vertical Line": "Függőleges Vonal", "Bogota": "Bogotá", "Show Splits on Chart": "Felosztások Mutatása a Charton", "Sorry, the Copy Link button doesn't work in your browser. Please select the link and copy it manually.": "Sajnos a Link Másolása gomb nem működik a böngésződben. Kérjük, válaszd ki a linket, és másold ki manuálisan.", "X_input": "X", "C_data_mode_connecting_letter": "C", "Simple ma(oscillator)_input": "Simple ma(oscillator)", "compiling...": "összeállítás...", "SMALen4_input": "SMALen4", "ROCLen4_input": "ROCLen4", "Aroon Down_input": "Aroon Down", "Add To Watchlist": "Hozzáadás Figyelőlistához", "Total": "Összesen", "Extend Right": "Jobb Hosszabbítás", "left": "bal", "Lock scale": "Méret Zárolása", "Time Levels": "Időszintek:", "Arrow": "Nyíl", "smalen1_input": "smalen1", "Drawing Template '{0}' already exists. Do you really want to replace it?": "{0} névvel már létezik rajzsablon. Biztos, hogy cserélni akarod?", "Extend Right End": "Jobb Vég Hosszabbítás", "Fans": "Rajongók", "Line - Low": "Vonal - Low", "Price_input": "Price", "Close_input": "Zárás", "Arrow Mark Down": "Nyíl Lefelé", "Weeks": "Hetek", "Modified Schiff Pitchfork": "Módosított Schiff Villa", "Relative Volatility Index_study": "Relative Volatility Index", "Elliott Impulse Wave (12345)": "Elliott Impulzushullám (12345)", "PVT_input": "PVT", "Circle Lines": "Körvonalak", "Hull Moving Average_study": "Hull Mozgóátlag", "Save Drawing Template As": "Rajzsablon Mentése Mint", "Bring Forward": "Előterjesztés", "Apply Defaults": "Alapértelmezett Alkalmazása", "Friday": "Péntek", "Zero_input": "Zero", "Company Comparison": "Vállalat Összehasonlító", "Stochastic Length_input": "Stochastic Length", "mult_input": "mult", "URL cannot be received": "Az URL nem fogadható", "Signal smoothing_input": "Signal smoothing", "E_data_mode_end_of_day_letter": "E", "Trend-Based Fib Extension": "Trendalapú Fib Kiterjesztés", "Analyze Trade Setup": "Kereskedési Felállás Elemzése", "Double Curve": "Dupla Görbe", "Stochastic RSI_study": "Sztochasztikus RSI", "Horizontal Ray": "Vízszintes Sugár", "Ok": "Oké", "Edit Order": "Megbízás Szerkesztése", "Trades on Chart": "Ügyletek a Charton", "Chaikin Oscillator_input": "Chaikin Oscillator", "Listed Exchange": "Listázott Tőzsde", "Error:": "Hiba:", "Fullscreen mode": "Teljes Képernyő Mód", "Add Text Note For {0}": "Szöveges Megjegyzés Hozzáadása Ehhez: {0}", "K_input": "K", "In Session": "Munkamenetben", "ROCLen3_input": "ROCLen3", "Micro": "Mikro", "Text Color": "Szöveg Szín", "Extend Alert Line": "Riasztási Vonal Meghosszabbítása", "Oops!": "Hoppá!", "New Zealand": "Új-Zéland", "CHOP_input": "CHOP", "Scale": "Skála", "Screen (No Scale)": "Képernyő (Skála)", "Extended Alert Line": "Meghosszabbított Riasztási Vonal", "Signal_input": "Signal", "OK": "Rendben", "like": "likes", "Original": "Eredeti", "Show": "Mutat", "Exchange": "Tőzsde", "{0} bars": "{0} bárok", "Lower_input": "Lower", "Created ": "Létrehozva ", "Arc": "Ív", "Elder's Force Index_study": "Nemes Erő Index", "Show Earnings on Chart": "Nyereség Mutatása Charton", "ATR_input": "ATR", "Do you really want to delete Color Theme '{0}' ?": "Biztos, hogy törölni akarod ezt a színtémát: {0}?", "Low": "Alacsony", "Bollinger Bands %B_study": "Bollinger Szalagok %B", "Time Zone": "Időzóna", "right": "jobb", "%d month": "%d hónap", "Wrong value": "Hibás érték", "Upper Band_input": "Upper Band", "Sun": "Vas", "Rename...": "Átnevezés...", "February": "Február", "start_input": "start", "No indicators matched your criteria.": "Egyetlen indikátor se felel meg a kritériumoknak.", "Commission": "Jutalék", "Short length_input": "Short length", "Kolkata": "Kalkutta", "Submillennium": "Szubévezred", "Precise Labels_scale_menu": "Pontos Címkék", "Smoothed Moving Average_study": "Simított Mozgóátlag", "Do you really want to delete Drawing Template '{0}' ?": "Biztos, hogy törölni akarod ezt a rajzsablont: {0}?", "Chatham Islands": "Chatham-szigetek", "Channel": "Csatorna", "Stop syncing drawing": "Rajzolás szinkronizálásának leállítása", "FXCM CFD data is available only to FXCM account holders": "Az FXCM CFD adatait csak FXCM fiókkal rendelkező felhasználóink láthatják", "Lagging Span 2 Periods_input": "Lagging Span 2 Periods", "Connecting Line": "Összekötő Vonal", "Seoul": "Szöul", "bottom": "alsó", "Teeth_input": "Teeth", "Moscow": "Moszkva", "Save New Chart Layout": "Új Chart Elrendezés Mentése", "Fib Channel": "Fib Csatorna", "Visibility": "Láthatóság", "Events": "Események", "Save Drawing Template As...": "Rajzsablon Mentése Másként...", "Minutes_interval": "Percek", "Insert Study Template": "Tanulmánysablon Beillesztése", "exponential_input": "exponential", "OnBalanceVolume_input": "OnBalanceVolume", "roclen2_input": "roclen2", "Chande Momentum Oscillator_study": "Chande Momentum Oszcillátor", "Not applicable": "Nem alkalmazható", "or copy url:": "vagy url másolása:", "Bollinger Bands %B_input": "Bollinger Bands %B", "Template name": "Sablon neve", "Indicator Values": "Indikátor Értékek", "Lips Length_input": "Lips Length", "Use Upper Deviation_input": "Use Upper Deviation", "L_in_legend": "Alacsony", "Remove custom interval": "Egyéni időköz eltávolítása", "shortlen_input": "shortlen", "Quotes are delayed by {0} min": "Az adatok késleltetve vannak {0} perccel", "Copied to clipboard": "Vágólapra másolva", "ADX_input": "ADX", "Profit Background Color": "Profit Háttérszín", "Trading": "Kereskedés", "Exponential_input": "Exponential", "ROCLen2_input": "ROCLen2", "Use Lower Deviation_input": "Use Lower Deviation", "Previous": "Előző", "Stay In Drawing Mode": "Rajzmódban Marad", "Comment": "Komment", "Long_input": "Long", "Bars": "Bárok", "Source text color": "Forrás szöveg szín", "Flat Top/Bottom": "Lapos Felső/Alsó", "Symbol Type": "Szimbólum Típusa", "loading data": "adat betöltés", "Lock drawings": "Rajzok zárolása", "Border color": "Keret színe", "Change Seconds From": "Másodpercek Módosítása Erről:", "Left Labels": "Bal Címkék", "Insert Indicator...": "Indikátor Beillesztés...", "P_input": "P", "Paste %s": "%s Beillesztése", "Timezone": "Időzóna", "Invite-only script. You have been granted access.": "Meghívásos szkript. Hozzáférést kaptál.", "Sat": "Szom", "Rectangle": "Téglalap", "Supercycle": "Szuperciklus", "Source back color": "Forrás vissza szín", "Transparency": "Átláthatóság", "No": "Nem", "All Indicators And Drawing Tools": "Összes Indikátor és Rajzeszköz", "Cyclic Lines": "Ciklikus Vonalak", "length28_input": "length28", "ABCD Pattern": "ABCD Minta", "closed": "záró", "When selecting this checkbox the study template will set \"__interval__\" interval on a chart": "A jelölőnégyzet kiválasztásával a tanulmánysablon \"__interval__\" időközt állít be a charton", "NO": "NEM", "Add": "Hozzáad", "OC Bars": "OC Oszlopok", "Millennium": "Évezred", "Price Label": "Árcímke", "Graphics": "Grafika", "NEW": "ÚJ", "Wick": "Kanóc", "Hull MA_input": "Hull MA", "Callout": "Kiemelő", "Lock Scale": "Méret Zárolása", "distance: {0}": "távolság: {0}", "Extended": "Kiterjesztett", "Three Drives Pattern": "Három Hajtás Minta", "Create Vertical Line": "Függőleges Vonal Létrehozása", "Arcs": "Ívek", "Top Margin": "Felső Margó", "Length2_input": "Length2", "Insert Drawing Tool": "Rajzeszköz Beillesztés", "OHLC Values": "OHCL Értékek", "Correlation_input": "Correlation", "Scales Text": "Skálaszöveg", "Session Breaks": "Munkamenet Szünetek", "Add {0} To Watchlist": "{0} Hozzáadása Figyelőlistához", "Anchored Note": "Horgony Megjegyzés", "lipsLength_input": "lipsLength", "Apply Indicator on {0}": "Indikátor alkalmazása ezen: {0}", "roclen4_input": "roclen4", "Tehran": "Teherán", "Background Color": "Háttérszín", "an hour": "egy óra", "Right Axis": "Jobb Tengely", "D_data_mode_delayed_streaming_letter": "D", "VI -_input": "VI -", "slowLength_input": "slowLength", "Click to set a point": "Klikkelj a pont megadásához", "January": "Január", "delayed": "késleltetett", "Indicator Titles": "Indikátor Címkék", "retrying": "ismételt próbálkozás", "Change area background": "Terület háttér megváltoztatása", "Error": "Hiba", "Edit Position": "Pozíció Szerkesztése", "RVI_input": "RVI", "Awesome Oscillator_study": "Awesome Oszcillátor", "Recalculate On Every Tick": "Újraszámolás minden bejelölésnél", "Left": "Bal", "Show Text": "Szöveg Mutatás", "Objects Tree...": "Tárgyfa...", "Compare": "Összehasonlít", "Add Symbol": "Szimbólum Hozzáadása", "Projection": "Vetület", "Track time": "Időkövetés", "Enter a new chart layout name": "Add meg az új chart elrendezés nevét", "Signal Length_input": "Signal Length", "Properties": "Tulajdonságok", "Teeth Length_input": "Teeth Length", "Point Value": "Pontérték", "D_interval_short": "N", "Close": "Zárás", "ParabolicSAR_input": "ParabolicSAR", "Log Scale_scale_menu": "Log Skála", "MACD_input": "MACD", "Do not show this message again": "Ne mutasd többet ezt az üzenetet", "Up Wave 3": "Hullám 3 Fel", "Arrow Mark Left": "Nyíl Balra", "Source Code...": "Forráskód...", "Up Wave 5": "Hullám 5 Fel", "Line - Close": "Vonal - Zárás", "(O + H + L + C)/4": "(Ny + M + A + Z)/4", "Confirm Inputs": "Inputok Megerősítése", "Open_line_tool_position": "Nyitva", "Lagging Span_input": "Lagging Span", "Subminuette": "Szubminüett", "Mirrored": "Tükrözött", "Price": "Ár", "Triple EMA_study": "Triple EMA", "Elliott Correction Wave (ABC)": "Elliot Korrekciós Hullám (ABC)", "Error while trying to create snapshot.": "Hiba történt a snapshot készítése közben.", "Label Background": "Címke Háttér", "Templates": "Sablonok", "Please report the issue or click Reconnect.": "Jelentsd a problémát vagy kattints az Újracsatlakozás gombra", "1. Slide your finger to select location for first anchor
    2. Tap anywhere to place the first anchor": "1. Húzd el az újjad az első horgony kiválasztásához
    2. Érintsd meg akárhol az első horgony elhelyezéséhez", "Signal Labels": "Jel Címkék", "May": "Május", "Are you sure?": "Biztos vagy benne?", "Color 5_input": "Color 5", "Up Wave 1 or A": "Hullám 1 vagy A Fel", "Scale Price Chart Only": "Csak az Árskála Chart", "Default": "Alapértelmezett", "auto_scale": "auto", "Background": "Háttér", "% of equity": "% a saját tőkéből", "Apply Elliot Wave Intermediate": "Közbülső Elliot Hullám Alkalmazása", "VWMA_input": "VWMA", "Lower Deviation_input": "Lower Deviation", "Save Interval": "Mentés Időköze", "Extend Lines Left": "Vonalak Hosszabbítása Balra", "Reverse": "Fordított", "Oops, something went wrong": "Hoppá, valami hiba történt", "Shapes_input": "Shapes", "Median": "Medián", "Show Source Code": "Forráskód Mutatása", "Remove": "Eltávolítás", "len_input": "len", "Arrow Mark Up": "Nyíl Felfelé", "April": "Április", "Crosses_input": "Crosses", "KST_input": "KST", "Sync drawing to all charts": "Rajzolás szinkronizálása az összes charttal", "LowerLimit_input": "LowerLimit", "Know Sure Thing_study": "Biztosra Tudd Dolog", "Copy Chart Layout": "Chart Elrendezés Másolása", "Compare...": "Összehasonlít...", "1. Slide your finger to select location for next anchor
    2. Tap anywhere to place the next anchor": "1. Húzd el az újjad az első horgony kiválasztásához
    2. Érintsd meg akárhol az első horgony elhelyezéséhez", "Compare or Add Symbol": "Összehasonlítás vagy Szimbólum Hozzáadása", "Color": "Szín", "Aroon Up_input": "Aroon Up", "Singapore": "Szingapúr", "Scales Lines": "Skálavonalak", "Type the interval number for munute charts (i.e. 5 if it is going to be a five minute chart). Or number plus letter for H (Hourly), D (Daily), W (Weekly), M (Monthly) intervals (i.e. D or 2H)": "Írd be az időköz számot a perces charthoz (pl. 5, ha öt perces chart lesz). Vagy szám + Ó (órás), N (napi), H (heti), H (havi) időköz (pl. N vagy 2Ó)", "Up Wave C": "Hullám C Fel", "Show Distance": "Távolság Mutatás", "Risk/Reward Ratio: {0}": "Kockázat/Nyereség Arány: {0}", "Restore Size": "Méret Visszaállítása", "Volume Oscillator_study": "Volumen Oszcillátor", "Williams Fractal_study": "Williams Fraktál", "Merge Up": "Összeolvasztás Fel", "Right Margin": "Jobb Margó", "Ellipse": "Ellipszis", "Warsaw": "Varsó"} \ No newline at end of file +{"ticks_slippage ... ticks": "ticks", "Months_interval": "Hónapok", "Realtime": "Valós Idejű", "Callout": "Kiemelő", "Clone": "Klón", "roclen1_input": "roclen1", "Unmerge Down": "Szétválasztás Le", "Percents": "Százalékok", "Search Note": "Megjegyzés Keresése", "Minor": "Kis", "Do you really want to delete Chart Layout '{0}' ?": "Biztos, hogy törölni akarod ezt a chart elrendezést: {0}?", "Quotes are delayed by {0} min and updated every 30 seconds": "A jegyzések {0} perccel vannak késleltetve és minden 30. percben frissülnek", "Magnet Mode": "Magnet Mód", "Grand Supercycle": "Nagy Szuperciklus", "OSC_input": "OSC", "Hide alert label line": "Riasztási vonal elrejtése", "Volume_study": "Volumen", "Lips_input": "Lips", "Show real prices on price scale (instead of Heikin-Ashi price)": "Valódi árak mutatása az ártáblázaton (a Heikin-Ashi árak helyett)", "Histogram": "Hisztogram", "Base Line_input": "Base Line", "Step": "Lépés", "Insert Study Template": "Tanulmánysablon Beillesztése", "Fib Time Zone": "Fib Időzóna", "SMALen2_input": "SMALen2", "Bollinger Bands_study": "Bollinger Szalagok", "Show/Hide": "Mutatás/Elrejtés", "Upper_input": "Upper", "exponential_input": "exponential", "Move Up": "Mozgatás Fel", "Symbol Info": "Szimbólum Infó", "This indicator cannot be applied to another indicator": "Ezt az indikátort nem lehet alkalmazni egy másik indikátorra", "Scales Properties...": "Méretezési Tulajdonságok...", "Count_input": "Count", "Full Circles": "Teljes Körök", "Ashkhabad": "Asgábád", "OnBalanceVolume_input": "OnBalanceVolume", "Cross_chart_type": "Kereszt", "H_in_legend": "Magas", "a day": "egy nap", "Pitchfork": "Villa", "R_data_mode_replay_letter": "R", "Accumulation/Distribution_study": "Akkumuláció/Disztribúció", "Rate Of Change_study": "Változás Üteme", "in_dates": "-ban/ben", "Color 7_input": "Color 7", "Chop Zone_study": "Oldalazó Zóna", "Bar #": "Bár #", "Scales Properties": "Méretezési Tulajdonságok", "Trend-Based Fib Time": "Trendalapú Fib Idő", "Remove All Indicators": "Minden Indikátor Eltávolítása", "Oscillator_input": "Oscillator", "Last Modified": "Utoljára Módosítva", "yay Color 0_input": "yay Color 0", "Labels": "Címkék", "Chande Kroll Stop_study": "Chande Kroll Stop", "Hours_interval": "Órák", "Scale Right": "Skála Jobbra", "Money Flow_study": "Pénzáramlás", "siglen_input": "siglen", "Indicator Labels": "Indikátor Címkék", "__specialSymbolOpen__Tomorrow at__specialSymbolClose__ __dayTime__": "__specialSymbolOpen__Holnap__specialSymbolClose__ __dayTime__", "Toggle Percentage": "Váltás Százalék", "Remove All Drawing Tools": "Összes Rajzeszköz Eltávolítása", "Remove all line tools for ": "Összes vonal eszköz eltávolítása innen: ", "Linear Regression Curve_study": "Linear Regression Curve", "Symbol_input": "Symbol", "Currency": "Valuta", "increment_input": "increment", "Compare or Add Symbol...": "Összehasonlítás vagy Szimbólum Hozzáadása...", "__specialSymbolOpen__Last__specialSymbolClose__ __dayName__ __specialSymbolOpen__at__specialSymbolClose__ __dayTime__": "__specialSymbolOpen__Utolsó__specialSymbolClose__ __dayName__ __specialSymbolOpen__at__specialSymbolClose__ __dayTime__", "Save Chart Layout": "Chart Elrendezés Mentése", "Allow up to": "Engedélyezés maximum eddig:", "Label": "Címke", "second": "seconds", "Change Hours To": "Órák Módosítása", "smoothD_input": "smoothD", "Falling_input": "Falling", "X_input": "X", "Risk/Reward short": "Kockázat/Nyereség short", "Donchian Channels_study": "Donchian Csatornák", "Entry price:": "Belépési ár:", "Circles": "Körök", "Mirrored": "Tükrözött", "Ichimoku Cloud_study": "Ichimoku Felhő", "Signal smoothing_input": "Signal smoothing", "Toggle Log Scale": "Váltás Log Skála", "Apply Elliot Wave Major": "Fő Elliot Hullám Alkalmazása", "Grid": "Rács", "Apply Elliot Wave Minor": "Kis Elliot Hullám Alkalmazása", "Slippage": "Csúszás", "Smoothing_input": "Smoothing", "Color 3_input": "Color 3", "Jaw Length_input": "Jaw Length", "Almaty": "Almati", "Inside": "Belső", "Delete all drawing for this symbol": "Összes rajz törlése ennél a szimbólumknál", "Fundamentals": "Alapok", "Keltner Channels_study": "Keltner Csatornák", "Long Position": "Long Pozíció", "Bands style_input": "Bands style", "Undo {0}": "{0} Visszavonása", "With Markers": "Jelölésekkel", "Momentum_study": "Momentum", "MF_input": "MF", "Gann Box": "Gann Doboz", "Switch to the next chart": "Váltás a következő chartra", "charts by TradingView": "TradingView chartok", "Fast length_input": "Fast length", "Apply Elliot Wave": "Elliot Hullám Alkalmazása", "Disjoint Angle": "Diszjunkt Szög", "Supermillennium": "Szuperévezred", "W_interval_short": "W", "Show Only Future Events": "Csak a Jövőbeli Események Mutatása", "Log Scale": "Log Skála", "Line - High": "Vonal - High", "Zurich": "Zürich", "Equality Line_input": "Equality Line", "Short_input": "Short", "Fib Wedge": "Fib Ék", "Line": "Vonal", "Session": "Munkamenet", "Down fractals_input": "Down fractals", "smalen2_input": "smalen2", "isCentered_input": "isCentered", "Border": "Keret", "Klinger Oscillator_study": "Klinger Oszcillátor", "Absolute": "Teljes", "Tue": "Ke", "Style": "Stílus", "Show Left Scale": "Bal Oldali Skála Mutatása", "SMI Ergodic Indicator/Oscillator_study": "SMI Ergodic Indicator/Oscillator", "Istanbul": "Isztambul", "Last available bar": "Utolsó elérhető oszlop", "Manage Drawings": "Rajzok Kezelése", "Analyze Trade Setup": "Kereskedési Felállás Elemzése", "No drawings yet": "Nincs még rajz", "SMI_input": "SMI", "Chande MO_input": "Chande MO", "jawLength_input": "jawLength", "TRIX_study": "TRIX", "Show Bars Range": "Bártartomány Mutatás", "RVGI_input": "RVGI", "Last edited ": "Utoljára szerkesztett ", "signalLength_input": "signalLength", "%s ago_time_range": "ennyivel korábban: %s", "Reset Settings": "Alapbeállítások Visszaállítása", "d_dates": "n", "Point & Figure": "Pont & Ábra", "August": "Augusztus", "Recalculate After Order filled": "Újraszámolás a megbízás kitöltése után", "Source_compare": "Forrás", "Q_input": "Q", "Correlation Coefficient_study": "Korrelációs Koefficiens", "Delayed": "Késleltetett", "Bottom Labels": "Alsó Címkék", "Text color": "Szöveg szín", "Levels": "Szintek", "Short Length_input": "Short Length", "teethLength_input": "teethLength", "Visible Range_study": "Visible Range", "Text Alignment:": "Szöveg Igazítás:", "Open {{symbol}} Text Note": "{{symbol}} Szöveges Megjegyzés Megnyitása", "October": "Október", "Lock All Drawing Tools": "Rajzeszközök Zárolása", "Long_input": "Long", "Right End": "Jobb Vég", "Show Symbol Last Value": "Utolsó Érték Szimbólum Mutatása", "Do you really want to delete Study Template '{0}' ?": "Biztos, hogy törölni akarod ezt a tanulmánysablont: {0}?", "Favorite Drawings Toolbar": "Kedvenc Rajzok Eszköztár", "Properties...": "Tulajdonságok...", "Reset Scale": "Méret Visszaállítása", "MA Cross_study": "MA Kereszt", "Trend Angle": "Trendszög", "Snapshot": "Pillanatkép", "Crosshair": "Szálkereszt", "Signal line period_input": "Signal line period", "Timezone/Sessions Properties...": "Időzóna/Munkamenet Tulajdonságok...", "Line Break": "Vonaltörés", "Quantity": "Mennyiség", "Price Volume Trend_study": "Árvolumen Trend", "Auto Scale": "Automata Méretezés", "hour": "hours", "Delete chart layout": "Chart elrendezés törlése", "Text": "Szöveg", "F_data_mode_forbidden_letter": "F", "Risk/Reward long": "Kockázat/Nyereség long", "Apr": "Ápr", "Long RoC Length_input": "Long RoC Length", "Length3_input": "Length3", "+DI_input": "+DI", "Length_input": "Length", "Use one color": "Egyetlen szín használata", "Sig_input": "Sig", "No Overlapping Labels_scale_menu": "No Overlapping Labels", "Exit Full Screen (ESC)": "Kilépés a Teljes Képernyőből (ESC)", "MACD_study": "MACD", "Show Economic Events on Chart": "Gazdasági Események Mutatása a Charton", "Moving Average_study": "Mozgóátlag", "Zoom In": "Nagyítás", "Failure back color": "Veszteség vissza szín", "Below Bar": "Alsó oszlop", "Time Scale": "Időskála", "

    Only D, W, M intervals are supported for this symbol/exchange. You will be automatically switched to a D interval. Intraday intervals are not available because of exchange policies.

    ": "

    Csak D, W, M intervallumok érhetők el ehhez a szimbólumhoz/tőzsdéhez. Automatikusan a Napi D intervallum kerül beállításra. A napon belüli intervallumok a tőzsdei szabályozás miatt nem érhetők el.

    ", "Extend Left": "Bal Hosszabítás", "Date Range": "Időintervallum", "Min Move": "Min Változás", "Price format is invalid.": "Érvénytelen árformátum.", "Show Price": "Ár Mutatása", "Level_input": "Level", "Commodity Channel Index_study": "Árucsatorna Index", "Elder's Force Index_input": "Elder's Force Index", "Gann Square": "Gann Négyszög", "Format": "Formátum", "Color bars based on previous close": "Bárszínek az előző záró alapján", "Change band background": "Sáv háttér megváltoztatása", "Marketplace Add-ons": "Marketplace Bővítmények", "Zoom Out": "Kicsinyítés", "Anchored Text": "Horgony Szöveg", "Long length_input": "Long length", "Edit {0} Alert...": "{0} Riasztás Szerkesztése...", "Up Wave 5": "Hullám 5 Fel", "Text:": "Szöveg:", "Aroon_study": "Aroon", "Previous": "Előző", "Industry": "Iparág", "Lead 1_input": "Lead 1", "Short Position": "Short Pozíció", "SMALen1_input": "SMALen1", "P_input": "P", "Apply Default": "Alapértelmezett Beállítás", "SMALen3_input": "SMALen3", "Average Directional Index_study": "Átlagos Irányított Index", "Fr_day_of_week": "P", "Invite-only script. Contact the author for more information.": "Meghívásos szkript. A további információkért vedd fel a kapcsolatot a szerzővel.", "Curve": "Görbe", "a year": "egy év", "Target Color:": "Cél Szín:", "Bars Pattern": "Bár Minta", "D_input": "D", "Font Size": "Betűméret", "Create Vertical Line": "Függőleges Vonal Létrehozása", "p_input": "p", "Rotated Rectangle": "Elforgatott Téglalap", "Chart layout name": "Chart elrendezés neve", "Fib Circles": "Fib Körök", "Apply Manual Decision Point": "Manuális Döntési Pont Alkalmazása", "Dot": "Pont", "Target back color": "Cél vissza szín", "All": "Összes", "orders_up to ... orders": "orders", "Dot_hotkey": "Dot", "Lead 2_input": "Lead 2", "Save image": "Kép mentés", "Move Down": "Mozgatás Le", "Unlock": "Feloldás", "Navigation Buttons": "Navigációs Gombok", "Miniscule": "Apró", "Apply": "Alkalmaz", "Down Wave 3": "Hullám 3 Le", "Plots Background_study": "Plots Background", "Sine Line": "Szinuszvonal", "Price Channel_study": "Price Channel", "%d day": "%d days", "Hide": "Elrejtés", "Toggle Maximize Chart": "Maximális Chat Kiterjesztése", "Target text color": "Cél szöveg szín", "Scale Left": "Skála Balra", "Elliott Wave Subminuette": "Elliott Hullám Subminuette", "Color based on previous close_input": "Color based on previous close", "Down Wave C": "Hullám C Le", "Countdown": "Visszaszámlálás", "UO_input": "UO", "Pyramiding": "Pyramid használata", "Go to Date...": "Ugrás Dátumhoz:", "Sao Paulo": "São Paulo", "R_data_mode_realtime_letter": "R", "Extend Lines": "Vonalak Hosszabítása", "Conversion Line_input": "Conversion Line", "March": "Március", "Su_day_of_week": "V", "Exchange": "Tőzsde", "Arcs": "Ívek", "Regression Trend": "Regresszió Trend", "Fib Spiral": "Fib Spirál", "Double EMA_study": "Dupla EMA", "minute": "minutes", "All Indicators And Drawing Tools": "Összes Indikátor és Rajzeszköz", "Indicator Last Value": "Indikátor Utolsó Értéke", "Sync drawings to all charts": "Rajzok szinkronizálása minden charttal", "Change Average HL value": "Átlag HL-érték módosítása", "Stop Color:": "Szín Leállít:", "Stay in Drawing Mode": "Rajzmódban Marad", "Bottom Margin": "Alsó Margó", "Dubai": "Dubaj", "Save Chart Layout saves not just some particular chart, it saves all charts for all symbols and intervals which you are modifying while working with this Layout": "A Chart Elrendezés Mentése nem csak bizonyos chartokat ment el, hanem az összes olyan szimbólum és intervallum chartjait, amelyekkel az adott Elrendezésben éppen dolgozol.", "Average True Range_study": "Átlagos Valós Tartomány", "Max value_input": "Max value", "MA Length_input": "MA Length", "Invite-Only Scripts": "Meghívásos Szkriptek", "in %s_time_range": "%s múlva", "UpperLimit_input": "UpperLimit", "sym_input": "sym", "DI Length_input": "DI Length", "Scale": "Skála", "Periods_input": "Periods", "Arrow": "Nyíl", "Square": "Négyzet", "Basis_input": "Basis", "Arrow Mark Down": "Nyíl Lefelé", "lengthStoch_input": "lengthStoch", "Taipei": "Tajpej", "Objects Tree": "Tárgyfa", "Remove from favorites": "Eltávolít kedvencek közül", "Copy": "Másolás", "Scale Series Only": "Csak Skálasorozatok", "Source text color": "Forrás szöveg szín", "Simple": "Egyszerű", "Report a data issue": "Adatprobléma jelentése", "Arnaud Legoux Moving Average_study": "Arnaud Legoux Mozgóátlag", "Smoothed Moving Average_study": "Simított Mozgóátlag", "Lower Band_input": "Lower Band", "Verify Price for Limit Orders": "Limitáras Megbízások Árának Ellenőrzése", "VI +_input": "VI +", "Line Width": "Vonal Szélessége", "Contracts": "Szerződések", "Always Show Stats": "Mindig Mutasd Statisztikát", "Down Wave 4": "Hullám 4 Le", "ROCLen2_input": "ROCLen2", "Simple ma(signal line)_input": "Simple ma(signal line)", "Change Interval...": "Időköz Változtatás...", "Public Library": "Nyilvános Könyvtár", " Do you really want to delete Drawing Template '{0}' ?": " Biztos, hogy törölni akarod ezt a rajzsablont: {0}?", "Sat": "Szom", "CRSI_study": "CRSI", "Close message": "Üzenet bezárása", "Jul": "Júl", "Base currency": "Alapdeviza", "Show Drawings Toolbar": "Rajzok Eszköztár Mutatása", "Chaikin Oscillator_study": "Chaikin Oszcillátor", "Balloon": "Ballon", "Market Open": "Piacnyitás", "Color Theme": "Szín Téma", "Awesome Oscillator_study": "Awesome Oszcillátor", "Bollinger Bands Width_input": "Bollinger Bands Width", "long_input": "long", "Error occured while publishing": "Hiba történt közzététel közben", "Fisher_input": "Fisher", "Color 1_input": "Color 1", "Moving Average Weighted_study": "Moving Average Weighted", "Save": "Mentés", "Type": "Típus", "Wick": "Kanóc", "Accumulative Swing Index_study": "Accumulative Swing Index", "Load Chart Layout": "Chart Elrendezés Betöltése", "Show Values": "Értékek Mutatása", "Fib Speed Resistance Fan": "Fib Speed Ellenállás Fan", "Bollinger Bands Width_study": "Bollinger Szalag Szélesség", "This chart layout has more than 1000 drawings, which is a lot! This may negatively affect performance, storage and publishing. We recommend to remove some drawings to avoid potential performance issues.": "Ehhez a chart elrendezéshez több, mint 1000 rajz tartozik, ami nagyon sok. Ez negatívan befolyásolhatja a teljesítményt, a tárolást és a publikálást. Azt javasoljuk, hogy a lehetséges teljesítményproblémák kiküszöbölése érdekében távolíts el néhány rajzot.", "Left End": "Bal Vég", "%d year": "%d years", "Always Visible": "Mindig Látható", "S_data_mode_snapshot_letter": "S", "Elliott Wave Circle": "Elliott Hullám Kör", "Earnings breaks": "Nyereségtörés", "Change Minutes From": "Percek Módosítása", "Do not ask again": "Ne kérdezd meg többször", "Displacement_input": "Displacement", "smalen4_input": "smalen4", "CCI_input": "CCI", "Upper Deviation_input": "Upper Deviation", "(H + L)/2": "(M + A)/2", "XABCD Pattern": "XABCD Minta", "Schiff Pitchfork": "Schiff Villa", "Copied to clipboard": "Vágólapra másolva", "Flipped": "Flippelt", "DEMA_input": "DEMA", "Move_input": "Move", "NV_input": "NV", "Choppiness Index_study": "Szaggatottság Index", "Study Template '{0}' already exists. Do you really want to replace it?": "{0} névvel már létezik tanulmánysablon. Biztos, hogy cserélni akarod?", "Merge Down": "Összeolvasztás Le", " per contract": " ügyletenként", "Overlay the main chart": "Fő chart borítása", "Delete": "Törlés", "Length MA_input": "Length MA", "percent_input": "percent", "September": "Szeptember", "{0} copy": "{0} mentés", "Avg HL in minticks": "Átl HL a minticks-ben", "Accumulation/Distribution_input": "Accumulation/Distribution", "Sync": "Szinkronizálás", "C_in_legend": "Z", "Weeks_interval": "Hetek", "smoothK_input": "smoothK", "Percentage_scale_menu": "Százalék", "Change Extended Hours": "Meghosszabbított Nyitva Tartás Módosítása", "MOM_input": "MOM", "h_interval_short": "h", "Change Interval": "Változás Időköz", "Change area background": "Terület háttér megváltoztatása", "Modified Schiff": "Módosított Schiff", "Custom color...": "Tetszőleges szín...", "Send Backward": "Hátrébb Küldés", "Mexico City": "Mexikóváros", "TRIX_input": "TRIX", "Show Price Range": "Ártartomány Mutatás", "Elliott Major Retracement": "Elliott Fő Retracement", "Notification": "Értesítés", "Fri": "Pén", "just now": "épp most", "Forecast": "Előrejelzés", "Fraction part is invalid.": "Érvénytelen törtrész.", "Connecting": "Csatlakozás", "Ghost Feed": "Ghost Hírfolyam", "Signal_input": "Signal", "Histogram_input": "Histogram", "The Extended Trading Hours feature is available only for intraday charts": "A Kibővített Kereskedési Óra funkció csak napon belüli chartokhoz érhető el", "StdDev_input": "StdDev", "EMA Cross_study": "EMA Cross", "Conversion Line Periods_input": "Conversion Line Periods", "Oversold_input": "Oversold", "My Scripts": "Szkriptjeim", "Monday": "Hétfő", "Add Symbol_compare_or_add_symbol_dialog": "Add Symbol", "Williams %R_study": "Williams %R", "Symbol": "Szimbólum", "a month": "egy hónap", "Precision": "Pontosság", "depth_input": "depth", "Go to": "Ugrás ide:", "Please enter chart layout name": "Kérjük, add meg a chart elrendezés nevét", "Mar": "Már", "VWAP_study": "VWAP", "Offset": "Eltolás", "Date": "Dátum", "Format...": "Formázás...", "Toggle Auto Scale": "Váltás Automata Méretezés", "Toggle Maximize Pane": "Maximalizáló Tábla Kezelése", "Search": "Keresés", "Zig Zag_study": "Cikk Cakk", "Actual": "Aktuális", "SUCCESS": "NYERESÉG", "Long period_input": "Long period", "length_input": "length", "roclen4_input": "roclen4", "Price Line": "Árvonal", "Area With Breaks": "Terület Törésekkel", "Median_input": "Median", "Stop Level. Ticks:": "Stop Szint. Tick:", "Window Size_input": "Window Size", "Circle Lines": "Körvonalak", "Visual Order": "Vizuális Elrendezés", "__specialSymbolOpen__Yesterday at__specialSymbolClose__ __dayTime__": "__specialSymbolOpen__Tegnap__specialSymbolClose__ __dayTime__", "Stop Background Color": "Háttérszín Leállítás", "1. Slide your finger to select location for first anchor
    2. Tap anywhere to place the first anchor": "1. Húzd el az újjad az első horgony kiválasztásához
    2. Érintsd meg akárhol az első horgony elhelyezéséhez", "Sector": "Szektor", "powered by TradingView": "támogatta a TradingView", "Stochastic_study": "Sztochasztikus", "Sep": "Szep", "TEMA_input": "TEMA", "Apply WPT Up Wave": "WPT Fel Hullám Alkalmazása", "Min Move 2": "Min Változás 2", "Extend Left End": "Bal Vég Hosszabítás", "Advance/Decline_study": "Advance/Decline", "Any Number": "Bármely Szám", "Flag Mark": "Zászló Jel", "Drawings": "Rajzok", "Cancel": "Törlés", "Compare or Add Symbol": "Összehasonlítás vagy Szimbólum Hozzáadása", "Redo": "Újra", "Hide Drawings Toolbar": "Rajz Eszköztár Elrejtése", "Ultimate Oscillator_study": "Végső Oszcillátor", "Vert Grid Lines": "Függőleges Rácsvonalak", "Growing_input": "Growing", "Angle": "Szög", "Plot_input": "Plot", "Color 8_input": "Color 8", "Indicators, Fundamentals, Economy and Add-ons": "Indikátorok, Alapok, Gazdaság és Bővítmények", "h_dates": "ó", "ROC Length_input": "ROC Length", "roclen3_input": "roclen3", "Overbought_input": "Overbought", "DPO_input": "DPO", "Change Minutes To": "Percek Módosítása", "No study templates saved": "Nincs tanulmány sablon elmentve", "Trend Line": "Trendvonal", "TimeZone": "IdőZóna", "Your chart is being saved, please wait a moment before you leave this page.": "Folyamatban van a chartod mentése, ezért kérjük, még ne hagyd el az oldalt.", "Percentage": "Százalék", "Tu_day_of_week": "K", "RSI Length_input": "RSI Length", "Triangle": "Háromszög", "Line With Breaks": "Vonal Törésekkel", "Period_input": "Period", "Watermark": "Vízjel", "Trigger_input": "Trigger", "SigLen_input": "SigLen", "Extend Right": "Jobb Hosszabbítás", "Color 2_input": "Color 2", "Show Prices": "Árak Mutatása", "{0} chart by TradingView": "{0} TradingView chart", "Arc": "Ív", "Edit Order": "Megbízás Szerkesztése", "January": "Január", "Arrow Mark Right": "Nyíl Jobbra", "Extend Alert Line": "Riasztási Vonal Meghosszabbítása", "Background color 1": "Háttérszín 1", "RSI Source_input": "RSI Source", "Close Position": "Záró Pozíció", "Stop syncing drawing": "Rajzolás szinkronizálásának leállítása", "Visible on Mouse Over": "Az Egér Föléhúzásakor Látható", "MA/EMA Cross_study": "MA/EMA Cross", "Thu": "Cs", "Vortex Indicator_study": "Vortex Indikátor", "Williams Alligator_study": "Williams Alligátor", "ROCLen1_input": "ROCLen1", "M_interval_short": "M", "Chaikin Oscillator_input": "Chaikin Oscillator", "Price Levels": "Árszintek", "Show Splits": "Felosztások Mutatása", "Zero Line_input": "Zero Line", "__specialSymbolOpen__Today at__specialSymbolClose__ __dayTime__": "__specialSymbolOpen__Ma__specialSymbolClose__ __dayTime__", "Increment_input": "Increment", "Days_interval": "Napok", "Show Right Scale": "Jobb Oldali Skála Mutatása", "Show Alert Labels": "Riasztás Címke Mutatása", "Historical Volatility_study": "Histórikus Volatilitás", "Lock": "Zárás", "length14_input": "length14", "High": "Magas", "Date and Price Range": "Dátum és Árfolyamtartomány", "Polyline": "Sokszögvonal", "Reconnect": "Újbóli csatlakozás", "Lock/Unlock": "Zárás/Feloldás", "Saturday": "Szombat", "Symbol Last Value": "Szimbólum Utolsó Értéke", "Above Bar": "Felső oszlop", "Studies": "Tanulmányok", "Color 0_input": "Color 0", "Add Symbol": "Szimbólum Hozzáadása", "maximum_input": "maximum", "Wed": "Szer", "Paris": "Párizs", "D_data_mode_delayed_letter": "D", "Sigma_input": "Sigma", "VWMA_study": "VWMA", "fastLength_input": "fastLength", "Width": "Szélesség", "Time Levels": "Időszintek:", "Template": "Sablon", "Use Lower Deviation_input": "Use Lower Deviation", "Parallel Channel": "Párhuzamos Csatorna", "Time Cycles": "Ciklusidők", "Second fraction part is invalid.": "A második törtrész érvénytelen.", "Divisor_input": "Divisor", "Down Wave 1 or A": "Hullám 1 vagy A Le", "ROC_input": "ROC", "Ray": "Sugár", "Extend": "Hosszabítás", "length7_input": "length7", "Bottom": "Alsó", "Undo": "Visszavonás", "Original": "Eredeti", "Mon": "Hét", "Right Labels": "Jobb Címkék", "Long Length_input": "Long Length", "True Strength Indicator_study": "True Strength Indikátor", "%R_input": "%R", "There are no saved charts": "Nincsenek elmentett chartok", "Chart Properties": "Chart Tulajdonságok", "bars_margin": "bárok", "Show Indicator Last Value": "Utolsó Érték Indikátor Mutatása", "Initial capital": "Indulótőke", "Show Angle": "Szög Mutatás", "Mass Index_study": "Tömeg Index", "More features on tradingview.com": "Még több funkció a tradingview.com-on", "Objects Tree...": "Tárgyfa...", "Remove Drawing Tools & Indicators": "Rajzeszközök és Indikátorok Eltávolítása", "Length1_input": "Length1", "Always Invisible": "Mindig Láthatatlan", "Circle": "Kör", "Days": "Napok", "x_input": "x", "Save As...": "Mentés Másként...", "Elliott Double Combo Wave (WXY)": "Elliott Dupla Kombinációs Hullám (WXY)", "Parabolic SAR_study": "Parabolikus SAR", "Any Symbol": "Bármely Szimbólum", "Variance": "Eltérés", "Stats Text Color": "Statisztika Szöveg Szín", "Minutes": "Percek", "Short RoC Length_input": "Short RoC Length", "Projection": "Vetület", "Jaw_input": "Jaw", "Right": "Jobb", "Help": "Súgó", "Coppock Curve_study": "Coppock Görbe", "Reset Chart": "Chart Visszaállítása", "Marker Color": "Jelölő Színe", "Sunday": "Vasárnap", "Left Axis": "Bal Tengely", "Open": "Nyitás", "YES": "IGEN", "longlen_input": "longlen", "Moving Average Exponential_study": "Mozgóátlag Exponenciális", "Source border color": "Forrás keret szín", "Redo {0}": "{0} Újra", "Cypher Pattern": "Rejtjel Minta", "s_dates": "s", "Area": "Terület", "Triangle Pattern": "Háromszög Minta", "Balance of Power_study": "Erőegyensúly", "EOM_input": "EOM", "Shapes_input": "Shapes", "Apply Manual Risk/Reward": "Manuális Kockázat/Nyereség Alkalmazása", "Indicators": "Indikátorok", "q_input": "q", "You are notified": "Értesítést kaptál", "Font Icons": "Betű Ikonok", "%D_input": "%D", "Border Color": "Keret Színe", "Offset_input": "Offset", "Risk": "Kockázat", "Price Scale": "Ártáblázat", "HV_input": "HV", "Seconds": "Másodpercek", "Settings": "Beállítások", "Start_input": "Kezdés", "Elliott Impulse Wave (12345)": "Elliott Impulzushullám (12345)", "Hours": "Órák", "Send to Back": "Visszaküldés", "Color 4_input": "Color 4", "Angles": "Szögek", "Prices": "Árak", "Hollow Candles": "Áttetsző Gyertyák", "July": "Július", "Create Horizontal Line": "Vízszintes Vonal Létrehozása", "Minute": "Perc", "Cycle": "Ciklus", "ADX Smoothing_input": "ADX Smoothing", "One color for all lines": "Egyetlen szín minden vonalhoz", "m_dates": "hó", "(H + L + C)/3": "(M + A + Z)/3", "Candles": "Gyertyák", "We_day_of_week": "Sze", "Width (% of the Box)": "Szélesség (a Box %-a)", "%d minute": "%d minutes", "Go to...": "Ugrás ide...", "Pip Size": "Pip Méret", "Wednesday": "Szerda", "This drawing is used in alert. If you remove the drawing, the alert will be also removed. Do you want to remove the drawing anyway?": "Erre a rajzra riasztás van beállítva. Ha eltávolítod a rajzolt, a riasztás is törlődni fog. Biztos, hogy eltávolítod a rajzot?", "Show Countdown": "Visszaszámláló Mutatása", "Show alert label line": "Riasztási vonal mutatása", "Down Wave 2 or B": "Hullám 2 vagy B Le", "MA_input": "MA", "Length2_input": "Length2", "not authorized": "nem engedélyezett", "Session Volume_study": "Session Volume", "Image URL": "Kép URL", "Submicro": "Szubmikro", "SMI Ergodic Oscillator_input": "SMI Ergodic Oscillator", "Show Objects Tree": "Tárgyfa Mutatása", "Primary": "Elsődleges", "Price:": "Ár:", "Bring to Front": "Előrehozás", "Brush": "Ecset", "Not Now": "Most Nem", "Yes": "Igen", "C_data_mode_connecting_letter": "C", "SMALen4_input": "SMALen4", "Apply Default Drawing Template": "Alapértelmezett Rajzsablon Alkalmazása", "Save As Default": "Mentés Alapértelmezettként", "Target border color": "Cél keret szín", "Invalid Symbol": "Érvénytelen Szimbólum", "Inside Pitchfork": "Belső Villa", "yay Color 1_input": "yay Color 1", "Quandl is a huge financial database that we have connected to TradingView. Most of its data is EOD and is not updated in real-time, however the information may be extremely useful for fundamental analysis.": "A Quandl egy hatalmaz pénzügyi adatbázis, amelyet összekapcsoltunk a TradingView-val. A leginkább nap végi adatokkal dolgoznak és nincs valós idejű frissítés, az ott található információs mégis hasznosak lehetnek alapvető elemzésekhez.", "Hide Marks On Bars": "Jelölések Elrejtése a Bárokon", "Cancel Order": "Megbízás Törlése", "Hide All Drawing Tools": "Minden Rajzeszköz Elrejtése", "WMA Length_input": "WMA Length", "Show Dividends on Chart": "Osztalékok Mutatása Charton", "Show Executions": "Teljesítések Mutatása", "Borders": "Határok", "Remove Indicators": "Indikátorok Eltávolítása", "loading...": "töltés...", "Closed_line_tool_position": "Záró", "Rectangle": "Téglalap", "Change Resolution": "Felbontás Módosítása", "Indicator Arguments": "Indikátor Argumentumok", "Symbol Description": "Szimbólum Leírás", "Chande Momentum Oscillator_study": "Chande Momentum Oszcillátor", "Degree": "Fokozat", " per order": " megbízásonként", "Line - HL/2": "Vonal - HL/2", "Supercycle": "Szuperciklus", "Jun": "Jún", "Least Squares Moving Average_study": "Least Squares Mozgóátlag", "Change Variance value": "Szórásérték Módosítása", "powered by ": "támogatta: ", "Source_input": "Source", "Change Seconds To": "Másodpercek Módosítása Erre:", "%K_input": "%K", "Scales Text": "Skálaszöveg", "Please enter template name": "Kérjük, írd be a sablon nevét", "Symbol Name": "Szimbólum Neve", "Tokyo": "Tokió", "Events Breaks": "Esemény Szünetek", "Study Templates": "Tanulmány Sablonok", "Months": "Hónapok", "Symbol Info...": "Szimbólum Infó...", "Elliott Wave Minor": "Elliott Hullám Kicsi", "Cross": "Kereszt", "Measure (Shift + Click on the chart)": "Mérés (Shift + Click a charton)", "Override Min Tick": "Min. Tick Felülírása", "Show Positions": "Pozíciók Mutatása", "Dialog": "Dialógus", "Add To Text Notes": "Hozzáadás Szöveges Megjegyzésekhez", "Elliott Triple Combo Wave (WXYXZ)": "Elliott Tripla Kombinációs Hullám (WXYXZ)", "Multiplier_input": "Multiplier", "Risk/Reward": "Kockázat/Nyereség", "Base Line Periods_input": "Base Line Periods", "Show Dividends": "Osztalékok Mutatása", "Relative Strength Index_study": "Relatív Erő Index", "Modified Schiff Pitchfork": "Módosított Schiff Villa", "Top Labels": "Top Címkék", "Show Earnings": "Nyereség Mutatása", "Line - Open": "Line - Nyitás", "Elliott Triangle Wave (ABCDE)": "Elliott Háromszög Hullám (ABCDE)", "Minuette": "Menüett", "Text Wrap": "Szöveg Csomagolás", "Reverse Position": "Fordított Pozíció", "Elliott Minor Retracement": "Elliott Kis Retracement", "Th_day_of_week": "Cs", "Slash_hotkey": "Slash", "No symbols matched your criteria": "Egyetlen szimbólum se felel meg a kritériumoknak", "Icon": "Ikon", "lengthRSI_input": "lengthRSI", "Tuesday": "Kedd", "Teeth Length_input": "Teeth Length", "Indicator_input": "Indicator", "Open Interval Dialog": "Időközi Pábeszéd Dialógus", "Shanghai": "Sanghaj", "Athens": "Athén", "Fib Speed Resistance Arcs": "Fib Speed Ellenállás Ívek", "Content": "Tartalom", "middle": "közép", "Lock Cursor In Time": "Curzor Rögzítése Időhöz", "Intermediate": "Közbülső", "Eraser": "Radír", "Relative Vigor Index_study": "Relative Vigor Index", "Envelope_study": "Boríték", "Symbol Labels": "Szimbólum Címkék", "show MA_input": "show MA", "Horizontal Line": "Vízszintes Vonal", "O_in_legend": "Ny", "Confirmation": "Megerősítés", "HL Bars": "HL Oszlopok", "Lines:": "Vonalak", "Hide Favorite Drawings Toolbar": "Kedvenc Rajzok Eszköztár Elrejtése", "useTrueRange_input": "useTrueRange", "Profit Level. Ticks:": "Profitszint. Tick:", "Show Date/Time Range": "Dátum/Időintervallum Mutatás", "Level {0}": "{0} Szint", "Horz Grid Lines": "Vízszintes Rácsvonalak", "-DI_input": "-DI", "Price Range": "Ártartomány", "day": "days", "deviation_input": "deviation", "Value_input": "Value", "Time Interval": "Idő Intervallum", "Success text color": "Nyereség szöveg szín", "ADX smoothing_input": "ADX smoothing", "%d hour": "%d hours", "Order size": "Megbízás mérete", "Drawing Tools": "Rajzeszközök", "Save Indicator Template As": "Mentsd az Indikátort Sablonként Mint", "Chaikin Money Flow_study": "Chaikin Pénzáramlás", "Ease Of Movement_study": "Mozgás Könnyedség", "Defaults": "Alapértelmezettek", "Percent_input": "Percent", "Interval is not applicable": "Az időköz nem alkalmazható", "short_input": "short", "Visual settings...": "Képi beállítások", "RSI_input": "RSI", "Chatham Islands": "Chatham-szigetek", "Detrended Price Oscillator_input": "Detrended Price Oscillator", "Mo_day_of_week": "H", "Up Wave 4": "Hullám 4 Fel", "center": "közép", "Vertical Line": "Függőleges Vonal", "Bogota": "Bogotá", "Show Splits on Chart": "Felosztások Mutatása a Charton", "Sorry, the Copy Link button doesn't work in your browser. Please select the link and copy it manually.": "Sajnos a Link Másolása gomb nem működik a böngésződben. Kérjük, válaszd ki a linket, és másold ki manuálisan.", "Levels Line": "Szintvonal", "Events & Alerts": "Események & Riasztások", "May": "Május", "ROCLen4_input": "ROCLen4", "Aroon Down_input": "Aroon Down", "Add To Watchlist": "Hozzáadás Figyelőlistához", "Total": "Összesen", "Price": "Ár", "left": "bal", "Lock scale": "Méret Zárolása", "Limit_input": "Limit", "Change Days To": "Napok Módosítása", "Price Oscillator_study": "Price Oszcillátor", "smalen1_input": "smalen1", "Drawing Template '{0}' already exists. Do you really want to replace it?": "{0} névvel már létezik rajzsablon. Biztos, hogy cserélni akarod?", "Show Middle Point": "Középpont Mutatása", "KST_input": "KST", "Extend Right End": "Jobb Vég Hosszabbítás", "Fans": "Rajongók", "Line - Low": "Vonal - Low", "Price_input": "Price", "Gann Fan": "Gann Legyező", "Weeks": "Hetek", "McGinley Dynamic_study": "McGinley Dinamika", "Relative Volatility Index_study": "Relative Volatility Index", "Source Code...": "Forráskód...", "PVT_input": "PVT", "Show Hidden Tools": "Elrejtett Eszközök Mutatása", "Hull Moving Average_study": "Hull Mozgóátlag", "Save Drawing Template As": "Rajzsablon Mentése Mint", "Bring Forward": "Előterjesztés", "Remove Drawing Tools": "Rajzeszközök Eltávolítása", "Friday": "Péntek", "Zero_input": "Zero", "Company Comparison": "Vállalat Összehasonlító", "Stochastic Length_input": "Stochastic Length", "mult_input": "mult", "URL cannot be received": "Az URL nem fogadható", "Success back color": "Nyereség vissza szín", "E_data_mode_end_of_day_letter": "E", "Trend-Based Fib Extension": "Trendalapú Fib Kiterjesztés", "Top": "Felső", "Double Curve": "Dupla Görbe", "Stochastic RSI_study": "Sztochasztikus RSI", "Oops!": "Hoppá!", "Horizontal Ray": "Vízszintes Sugár", "smalen3_input": "smalen3", "Ok": "Oké", "Script Editor...": "Szkript Editor...", "Are you sure?": "Biztos vagy benne?", "Trades on Chart": "Ügyletek a Charton", "Listed Exchange": "Listázott Tőzsde", "Error:": "Hiba:", "Fullscreen mode": "Teljes Képernyő Mód", "Add Text Note For {0}": "Szöveges Megjegyzés Hozzáadása Ehhez: {0}", "K_input": "K", "Do you really want to delete Drawing Template '{0}' ?": "Biztos, hogy törölni akarod ezt a rajzsablont: {0}?", "ROCLen3_input": "ROCLen3", "Micro": "Mikro", "Text Color": "Szöveg Szín", "Rename Chart Layout": "Chart Elrendezés Átnevezése", "Background color 2": "Háttérszín 2", "Drawings Toolbar": "Rajzok Eszköztár", "Moving Average Channel_study": "Moving Average Channel", "New Zealand": "Új-Zéland", "CHOP_input": "CHOP", "Apply Defaults": "Alapértelmezett Alkalmazása", "Screen (No Scale)": "Képernyő (Skála)", "Extended Alert Line": "Meghosszabbított Riasztási Vonal", "Note": "Megjegyzés", "OK": "Rendben", "like": "likes", "Show": "Mutat", "{0} bars": "{0} bárok", "Lower_input": "Lower", "Created ": "Létrehozva ", "Warning": "Figyelmeztetés", "Elder's Force Index_study": "Nemes Erő Index", "Show Earnings on Chart": "Nyereség Mutatása Charton", "ATR_input": "ATR", "Low": "Alacsony", "Bollinger Bands %B_study": "Bollinger Szalagok %B", "Time Zone": "Időzóna", "right": "jobb", "%d month": "%d months", "Wrong value": "Hibás érték", "Upper Band_input": "Upper Band", "Sun": "Vas", "Rename...": "Átnevezés...", "start_input": "start", "No indicators matched your criteria.": "Egyetlen indikátor se felel meg a kritériumoknak.", "Commission": "Jutalék", "Short length_input": "Short length", "Kolkata": "Kalkutta", "Submillennium": "Szubévezred", "Technical Analysis": "Technikai Elemzés", "Show Text": "Szöveg Mutatás", "Channel": "Csatorna", "FXCM CFD data is available only to FXCM account holders": "Az FXCM CFD adatait csak FXCM fiókkal rendelkező felhasználóink láthatják", "Lagging Span 2 Periods_input": "Lagging Span 2 Periods", "Connecting Line": "Összekötő Vonal", "Seoul": "Szöul", "bottom": "alsó", "Teeth_input": "Teeth", "Open Manage Drawings": "Rajzok Kezelésének Megnyitása", "Save New Chart Layout": "Új Chart Elrendezés Mentése", "Fib Channel": "Fib Csatorna", "Save Drawing Template As...": "Rajzsablon Mentése Másként...", "Minutes_interval": "Percek", "Up Wave 2 or B": "Hullám 2 vagy B Fel", "Columns": "Oszlopok", "Directional Movement_study": "Irányított Mozgás", "roclen2_input": "roclen2", "Apply WPT Down Wave": "WPT Le Hullám Alkalmazása", "Not applicable": "Nem alkalmazható", "Bollinger Bands %B_input": "Bollinger Bands %B", "Default": "Alapértelmezett", "Template name": "Sablon neve", "Indicator Values": "Indikátor Értékek", "Lips Length_input": "Lips Length", "Use Upper Deviation_input": "Use Upper Deviation", "L_in_legend": "Alacsony", "Remove custom interval": "Egyéni időköz eltávolítása", "shortlen_input": "shortlen", "Quotes are delayed by {0} min": "Az adatok késleltetve vannak {0} perccel", "Hide Events on Chart": "Események Elrejtése a Chartról", "Profit Background Color": "Profit Háttérszín", "Bar's Style": "Bár Stílusa", "Exponential_input": "Exponential", "Down Wave 5": "Hullám 5 Le", "Stay In Drawing Mode": "Rajzmódban Marad", "Comment": "Komment", "Connors RSI_study": "Connors RSI", "Bars": "Bárok", "Show Labels": "Címkék Mutatása", "Flat Top/Bottom": "Lapos Felső/Alsó", "Symbol Type": "Szimbólum Típusa", "Lock drawings": "Rajzok zárolása", "Border color": "Keret színe", "Change Seconds From": "Másodpercek Módosítása Erről:", "Left Labels": "Bal Címkék", "Insert Indicator...": "Indikátor Beillesztés...", "ADR_B_input": "ADR_B", "Paste %s": "%s Beillesztése", "Change Symbol...": "Szimbólum Változtatás...", "Timezone": "Időzóna", "Invite-only script. You have been granted access.": "Meghívásos szkript. Hozzáférést kaptál.", "Color 6_input": "Color 6", "Oct": "Okt", "{0} financials by TradingView": "{0} TradingView pénzügyek", "Extend Lines Left": "Vonalak Hosszabbítása Balra", "Source back color": "Forrás vissza szín", "Transparency": "Átláthatóság", "No": "Nem", "June": "Június", "Cyclic Lines": "Ciklikus Vonalak", "length28_input": "length28", "ABCD Pattern": "ABCD Minta", "When selecting this checkbox the study template will set \"__interval__\" interval on a chart": "A jelölőnégyzet kiválasztásával a tanulmánysablon \"__interval__\" időközt állít be a charton", "Add": "Hozzáad", "OC Bars": "OC Oszlopok", "Millennium": "Évezred", "On Balance Volume_study": "Egyensúly Volumen", "Apply Indicator on {0} ...": "Indikátor alkalmazása ezen: {0} ...", "NEW": "ÚJ", "Chart Layout Name": "Chart Elrendezés Neve", "Hull MA_input": "Hull MA", "Lock Scale": "Méret Zárolása", "distance: {0}": "távolság: {0}", "Extended": "Kiterjesztett", "Three Drives Pattern": "Három Hajtás Minta", "NO": "NEM", "Top Margin": "Felső Margó", "Up fractals_input": "Up fractals", "Insert Drawing Tool": "Rajzeszköz Beillesztés", "OHLC Values": "OHCL Értékek", "Correlation_input": "Correlation", "Session Breaks": "Munkamenet Szünetek", "Add {0} To Watchlist": "{0} Hozzáadása Figyelőlistához", "Anchored Note": "Horgony Megjegyzés", "lipsLength_input": "lipsLength", "Apply Indicator on {0}": "Indikátor alkalmazása ezen: {0}", "UpDown Length_input": "UpDown Length", "Price Label": "Árcímke", "Tehran": "Teherán", "ASI_study": "ASI", "Background Color": "Háttérszín", "an hour": "egy óra", "Right Axis": "Jobb Tengely", "D_data_mode_delayed_streaming_letter": "D", "VI -_input": "VI -", "slowLength_input": "slowLength", "Click to set a point": "Klikkelj a pont megadásához", "Save Indicator Template As...": "Mentsd az Indikátort Sablonként Mint...", "Indicator Titles": "Indikátor Címkék", "Failure text color": "Veszteség szöveg szín", "Sa_day_of_week": "Szo", "Net Volume_study": "Nettó Volumen", "Error": "Hiba", "Edit Position": "Pozíció Szerkesztése", "RVI_input": "RVI", "Centered_input": "Centered", "Recalculate On Every Tick": "Újraszámolás minden bejelölésnél", "Left": "Bal", "Simple ma(oscillator)_input": "Simple ma(oscillator)", "Compare": "Összehasonlít", "Fisher Transform_study": "Fisher Transzformáció", "Show Orders": "Megbízások Mutatása", "Track time": "Időkövetés", "Length EMA_input": "Length EMA", "Enter a new chart layout name": "Add meg az új chart elrendezés nevét", "Signal Length_input": "Signal Length", "FAILURE": "VESZTESÉG", "Point Value": "Pontérték", "D_interval_short": "N", "MA with EMA Cross_study": "MA with EMA Cross", "Close": "Zárás", "ParabolicSAR_input": "ParabolicSAR", "Log Scale_scale_menu": "Log Skála", "MACD_input": "MACD", "Do not show this message again": "Ne mutasd többet ezt az üzenetet", "Up Wave 3": "Hullám 3 Fel", "Arrow Mark Left": "Nyíl Balra", "Slow length_input": "Slow length", "Line - Close": "Vonal - Zárás", "(O + H + L + C)/4": "(Ny + M + A + Z)/4", "Confirm Inputs": "Inputok Megerősítése", "Open_line_tool_position": "Nyitva", "Lagging Span_input": "Lagging Span", "Subminuette": "Szubminüett", "Thursday": "Csütörtök", "Triple EMA_study": "Triple EMA", "Elliott Correction Wave (ABC)": "Elliot Korrekciós Hullám (ABC)", "Error while trying to create snapshot.": "Hiba történt a snapshot készítése közben.", "Label Background": "Címke Háttér", "Templates": "Sablonok", "Please report the issue or click Reconnect.": "Jelentsd a problémát vagy kattints az Újracsatlakozás gombra", "Normal": "Normális", "Signal Labels": "Jel Címkék", "compiling...": "összeállítás...", "Detrended Price Oscillator_study": "Trendmentes Ár Oszcillátor", "Color 5_input": "Color 5", "Fixed Range_study": "Fixed Range", "Up Wave 1 or A": "Hullám 1 vagy A Fel", "Scale Price Chart Only": "Csak az Árskála Chart", "Unmerge Up": "Szétválasztás Fel", "auto_scale": "auto", "Short period_input": "Short period", "Background": "Háttér", "% of equity": "% a saját tőkéből", "Apply Elliot Wave Intermediate": "Közbülső Elliot Hullám Alkalmazása", "VWMA_input": "VWMA", "Lower Deviation_input": "Lower Deviation", "Save Interval": "Mentés Időköze", "February": "Február", "Reverse": "Fordított", "Oops, something went wrong": "Hoppá, valami hiba történt", "Add to favorites": "Hozzáadás kedvencekhez", "Median": "Medián", "ADX_input": "ADX", "Remove": "Eltávolítás", "len_input": "len", "Arrow Mark Up": "Nyíl Felfelé", "April": "Április", "Active Symbol": "Aktív Szimbólum", "Extended Hours": "Meghosszabbított Nyitva Tartás", "Crosses_input": "Crosses", "Middle_input": "Middle", "Read our blog for more info!": "További tudnivalókért olvasd el a blogunkat!", "Sync drawing to all charts": "Rajzolás szinkronizálása az összes charttal", "LowerLimit_input": "LowerLimit", "Know Sure Thing_study": "Biztosra Tudd Dolog", "Copy Chart Layout": "Chart Elrendezés Másolása", "Compare...": "Összehasonlít...", "1. Slide your finger to select location for next anchor
    2. Tap anywhere to place the next anchor": "1. Húzd el az újjad az első horgony kiválasztásához
    2. Érintsd meg akárhol az első horgony elhelyezéséhez", "Text Notes are available only on chart page. Please open a chart and then try again.": "A szöveges megjegyzéseket csak a chart oldalról éred el. Nyisd meg a chartot és próbáld újra.", "Color": "Szín", "Aroon Up_input": "Aroon Up", "Singapore": "Szingapúr", "Scales Lines": "Skálavonalak", "Type the interval number for munute charts (i.e. 5 if it is going to be a five minute chart). Or number plus letter for H (Hourly), D (Daily), W (Weekly), M (Monthly) intervals (i.e. D or 2H)": "Írd be az időköz számot a perces charthoz (pl. 5, ha öt perces chart lesz). Vagy szám + Ó (órás), N (napi), H (heti), H (havi) időköz (pl. N vagy 2Ó)", "Ellipse": "Ellipszis", "Up Wave C": "Hullám C Fel", "Show Distance": "Távolság Mutatás", "Risk/Reward Ratio: {0}": "Kockázat/Nyereség Arány: {0}", "Restore Size": "Méret Visszaállítása", "Volume Oscillator_study": "Volumen Oszcillátor", "Williams Fractal_study": "Williams Fraktál", "Merge Up": "Összeolvasztás Fel", "Right Margin": "Jobb Margó", "Moscow": "Moszkva", "Warsaw": "Varsó"} \ No newline at end of file diff --git a/charting_library/static/localization/translations/id_ID.json b/charting_library/static/localization/translations/id_ID.json index 41f518f7..3f9fac69 100644 --- a/charting_library/static/localization/translations/id_ID.json +++ b/charting_library/static/localization/translations/id_ID.json @@ -1 +1 @@ -{"ticks_slippage ... ticks": "ticks", "Months_interval": "Months", "Percent_input": "Percent", "Hide Events on Chart": "Sembunyikan Event di Chart", "RSI Length_input": "RSI Length", "month": "bulan", "roclen1_input": "roclen1", "Unmerge Down": "Pisahkan Ke Bawah", "Percents": "Persen", "Search Note": "Cari Catatan", "Do you really want to delete Chart Layout '{0}' ?": "Apakah benar Anda ingin menghapus Tata Letak Chart '{0}' ?", "Quotes are delayed by {0} min and updated every 30 seconds": "Kutipan tertunda {0} menit dan diperbaharui setiap 30 detik", "June": "Juni", "Magnet Mode": "Mode Magnet", "OSC_input": "OSC", "Hide alert label line": "Sembunyikan garis label peringatan", "Volume_study": "Volume", "Lips_input": "Lips", "Show real prices on price scale (instead of Heikin-Ashi price)": "Perlihatkan harga sebenarnya pada skala harga (bukan harga Heikin-Ashi)", "Base Line_input": "Base Line", "Step": "Langkah", "SMALen2_input": "SMALen2", "Bollinger Bands_study": "Bollinger Bands", "Nov": "November", "Show/Hide": "Perlihatkan/Sembunyikan", "Upper_input": "Upper", "Sig_input": "Sig", "Move Up": "Pindahkan Naik", "Sigma_input": "Sigma", "This indicator cannot be applied to another indicator": "Indikator ini tidak dapat diterapkan terhadap indikator lain", "Scales Properties...": "Kelengkapan Skala...", "Count_input": "Count", "Full Circles": "Lingkaran Penuh", "Industry": "Industri", "SMALen1_input": "SMALen1", "Cross_chart_type": "Cross", "Target Color:": "Warna Target:", "a day": "satu hari", "Accumulation/Distribution_study": "Akumulasi/Distribusi", "Rate Of Change_study": "Tingkat Perubahan", "Risk/Reward short": "Risiko/Ganjaran jual", "in_dates": "in", "Color 7_input": "Color 7", "Change Average HL value": "Ubah nilai Average HL", "Scales Properties": "Kelengkapan Skala", "Trend-Based Fib Time": "Waktu Fib Berbasis Tren", "Remove All Indicators": "Hilangkan Semua Indikator", "Oscillator_input": "Oscillator", "Last Modified": "Modifikasi Terakhir", "yay Color 0_input": "yay Color 0", "Labels": "Label", "Chande Kroll Stop_study": "Stop Chande Kroll", "Hours_interval": "Hours", "Scale Right": "Ukur Kanan", "Money Flow_study": "Arus Uang", "Indicator Labels": "Label Indikator", "Source Code": "Kode Sumber", "__specialSymbolOpen__Tomorrow at__specialSymbolClose__ __dayTime__": "__specialSymbolOpen__Besok pada__specialSymbolClose__ __dayTime__", "Toggle Percentage": "Toggle Persentase", "Remove All Drawing Tools": "Hilangkan Semua Alat Gambar", "Remove all line tools for ": "Hilangkan semua alat garis untuk ", "Linear Regression Curve_study": "Linear Regression Curve", "Symbol_input": "Symbol", "Upper Deviation_input": "Upper Deviation", "Rename Chart Layout": "Ganti Nama Tata Letak Chart", "__specialSymbolOpen__Last__specialSymbolClose__ __dayName__ __specialSymbolOpen__at__specialSymbolClose__ __dayTime__": "__specialSymbolOpen__Terakhir__specialSymbolClose__ __dayName__ __specialSymbolOpen__pada__specialSymbolClose__ __dayTime__", "Save Chart Layout": "Simpan Tata Letak Chart", "Allow up to": "Diizinkan sampai batas", "Contracts": "Kontrak", "second": "detik", "Any Number": "Angka Bebas", "smoothD_input": "smoothD", "Falling_input": "Falling", "Percentage": "Persentase", "Donchian Channels_study": "Dividend Yield", "Entry price:": "Harga masuk:", "RSI Source_input": "RSI Source", " per contract": " per kontrak", "Ichimoku Cloud_study": "Awan Ichimoku", "jawLength_input": "jawLength", "Toggle Log Scale": "Toggle Skala Log", "Apply Elliot Wave Major": "Terapkan Elliot Wave Major", "Grid": "Jalur", "Mass Index_study": "Indeks Massa", "Up Wave 1 or A": "Naik Gelombang 1 atau A", "Smoothing_input": "Smoothing", "Color 3_input": "Color 3", "Jaw Length_input": "Jaw Length", "Inside": "Di Dalam", "Delete all drawing for this symbol": "Hapus semua gambar untuk simbol ini", "Quotes are delayed by 10 min and updated every 30 seconds": "Kutipan tertunda 10 menit dan diperbaharui setiap 30 detik", "Keltner Channels_study": "Keltner Channel", "Long Position": "Posisi Beli", "Bands style_input": "Bands style", "Undo {0}": "Kembalikan {0}", "With Markers": "Dengan Penanda", "Momentum_study": "Momentum", "MF_input": "MF", "On Balance Volume_study": "Volume Keseimbangan", "Switch to the next chart": "Pindah ke chart berikutnya", "Change Hours To": "Ubah Jam Menjadi", "charts by TradingView": "chart oleh TradingView", "Long length_input": "Long length", "Flipped": "Terbalik", "Disjoint Angle": "Pisahkan Sudut", "W_interval_short": "W", "Color 6_input": "Color 6", "Log Scale": "Skala Log", "Line - High": "Garis - Tinggi", "Equality Line_input": "Equality Line", "Open": "Buka", "Tuesday": "Selasa", "Line": "Garis", "Session": "Sesi", "Down fractals_input": "Down fractals", "Fib Retracement": "Penelusuran Kembali Fib", "smalen2_input": "smalen2", "isCentered_input": "isCentered", "Border": "Batas", "Klinger Oscillator_study": "Klinger Oscillator", "Absolute": "Mutlak", "Style": "Gaya", "Show Left Scale": "Perlihatkan Skala Kiri", "SMI Ergodic Indicator/Oscillator_study": "SMI Ergodic Indicator/Oscillator", "Aug": "Agustus", "Last available bar": "Bar tersedia terakhir", "Manage Drawings": "Kelola Gambar", "Top": "Puncak", "No drawings yet": "Belum ada gambar", "Chande MO_input": "Chande MO", "Copy link": "Salin link", "TRIX_study": "TRIX", "MACD_study": "MACD", "RVGI_input": "RVGI", "Last edited ": "Suntingan Terakhir ", "signalLength_input": "signalLength", "Middle_input": "Middle", "Reset Settings": "Atur Ulang Pengaturan", "d_dates": "d", "Point & Figure": "Poin & Figur", "August": "Agustus", "Recalculate After Order filled": "Dihitung Kembali Setelah Order Terpenuhi", "Source_compare": "Source", "Correlation Coefficient_study": "Koefisien Korelasi", "Delayed": "Tertunda", "Bottom Labels": "Label Dasar", "Text color": "Warna teks", "Levels": "Level", "Short Length_input": "Short Length", "teethLength_input": "teethLength", "Failure text color": "Kerusakan warna teks", "instrument is not allowed": "peralatan tidak diizinkan", "FAILURE": "GAGAL", "Open {{symbol}} Text Note": "Buka Catatan Teks {{symbol}}", "October": "Oktober", "Lock All Drawing Tools": "Kunci Semua Alat Gambar", "Target border color": "Warna batas Target", "Right End": "Ujung Kanan", "Show Symbol Last Value": "Perlihatkan Nilai Terakhir Simbol", "Do you really want to delete Study Template '{0}' ?": "Apakah benar Anda ingin menghapus Template Studi '{0}' ?", "Favorite Drawings Toolbar": "Bilah Alat Gambar Favorit", "Properties...": "Properti...", "MA Cross_study": "Silang MA", "Trend Angle": "Sudut Tren", "Snapshot": "Foto/Snapshot", "Signal line period_input": "Signal line period", "Timezone/Sessions Properties...": "Kelengkapan Zona Waktu/Sesi", "Line Break": "Garis Jeda", "Quantity": "Kuantitas", "Price Volume Trend_study": "Tren Volume Harga", "Auto Scale": "Skala Otomatis", "hour": "Jam", "Scales": "Skala", "Text": "Teks", "F_data_mode_forbidden_letter": "F", "Risk/Reward long": "Risiko/Ganjaran beli", "Long RoC Length_input": "Long RoC Length", "Length3_input": "Length3", "Cancel Order": "Batalkan Order", "{0} copy": "{0} salin", "Use one color": "Gunakan satu warna", "Exit Full Screen (ESC)": "Keluar dari Layar Penuh (ESC)", "Show Bars Range": "Perlihatkan Rentang Bar", "Show Economic Events on Chart": "Perlihatkan Peristiwa Ekonomi pada Chart", "%s ago_time_range": "%s ago", "Zoom In": "Perbesar", "Failure back color": "Kerusakan warna belakang", "Below Bar": "Di Bawah Bar", "Coordinates": "Koordinat", "Time Scale": "Skala Waktu", "

    Only D, W, M intervals are supported for this symbol/exchange. You will be automatically switched to a D interval. Intraday intervals are not available because of exchange policies.

    ": "

    Hanya interval D, W, M yang tersedia untuk simbol/kurs ini. Anda akan dipindahkan ke interval D secara otomatis. Interval Intraday tidak tersedia karena adanya kebijakan kurs.

    ", "Extend Left": "Perpanjang Kiri", "Date Range": "Rentang Tanggal", "Price format is invalid.": "Format harga tidak valid.", "Show Price": "Perlihatkan Harga", "Level_input": "Level", "Commodity Channel Index_study": "Commodity Channel Index", "Elder's Force Index_input": "Elder's Force Index", "Currency": "Mata Uang", "Color bars based on previous close": "Bar warna berdasarkan penutupan sebelumnya", "Change band background": "Ubah latar pita", "Precise Labels": "Label Presisi", "Adjust Scale": "Atur Skala", "Anchored Text": "Teks Dasar", "Edit {0} Alert...": "Sunting Peringatan {0}...", "Text:": "Teks:", "Aroon_study": "Aroon", "show MA_input": "show MA", "h_dates": "h", "Short Position": "Posisi Jual", "Show Labels": "Perlihatkan Label", "Change Interval...": "Ubah Interval...", "Apply Default": "Terapkan Pengaturan Bawaan", "SMALen3_input": "SMALen3", "Average Directional Index_study": "Average Directional Index", "Fr_day_of_week": "Fr", "Invite-only script. Contact the author for more information.": "Naskah hanya-mengundang. Kontak penulis untuk informasi lebih lanjut.", "Curve": "Kurva", "a year": "satu tahun", "H_in_legend": "H", "Bars Pattern": "Pola Bar", "D_input": "D", "Right Labels": "Label Kanan", "Change Interval": "Ubah interval", "p_input": "p", "Chart layout name": "Nama susunan chart", "Fib Circles": "Lingkaran Fib", "Apply Manual Decision Point": "Terapkan Titik Keputusan Manual", "Dot": "Titik", "Target back color": "Warna belakang Target", "All": "Semua", "Show Positions": "Perlihatkan Posisi", "orders_up to ... orders": "orders", "Lead 2_input": "Lead 2", "Save image": "Simpan gambar", "Fundamentals": "Fundamental", "Unlock": "Buka Kunci", "Up Wave 2 or B": "Naik Gelombang 2 atau B", "Navigation Buttons": "Tombol Navigasi", "Apply": "Terapkan", "Sine Line": "Garis Sinus", "{0} financials by TradingView": "{0} finansial oleh TradingView", "%d day": "%d days", "Hide": "Sembunyikan", "Bottom": "Dasar", "Target text color": "Warna teks Target", "Scale Left": "Ukur Kiri", "in %s_time_range": "in %s", "Down Wave C": "Gelombang Turun C", "Jan": "Januari", "Variance": "Varian", "Text Alignment:": "Perataan Teks:", "Oct": "Oktober", "Apply Elliot Wave Minor": "Terapkan Elliot Wave Minor", "Inputs": "Masukan", "Conversion Line_input": "Conversion Line", "March": "Maret", "Su_day_of_week": "Su", "Up fractals_input": "Up fractals", "Regression Trend": "Tren Regresi", "Symbol Description": "Penjelasan Simbol", "Double EMA_study": "EMA Ganda", "minute": "minutes", "Price Oscillator_study": "Oscillator Harga", "Sync drawings to all charts": "Sinkronisasi gambar pada semua chart", "Chop Zone_study": "Zona Chop", "Stop Color:": "Warna Stop:", "Stay in Drawing Mode": "Tetap Dalam Mode Menggambar", "Bottom Margin": "Marjin Dasar", "Save Chart Layout saves not just some particular chart, it saves all charts for all symbols and intervals which you are modifying while working with this Layout": "Simpan Tata Letak Chart menyimpan bukan hanya beberapa chart tertentu, melainkan semua chart untuk semua simbol dan interval yang Anda modifikasi saat mengerjakan Tata Letak ini", "Average True Range_study": "Average True Range", "Max value_input": "Max value", "MA Length_input": "MA Length", "Invite-Only Scripts": "Naskah Hanya-Mengundang", "Time Interval": "Interval Waktu", "UpperLimit_input": "UpperLimit", "sym_input": "sym", "DI Length_input": "DI Length", "Script Editor...": "Penyunting Naskah...", "Extend Lines": "Perpanjang Garis", "SMI_input": "SMI", "Change Days To": "Ubah Hari Menjadi", "Square": "Persegi", "Basis_input": "Basis", "Moving Average_study": "Rata-Rata Bergerak", "lengthStoch_input": "lengthStoch", "Objects Tree": "Pohon Objek", "Remove from favorites": "Hilangkan dari favorit", "Copy": "Salin", "Scale Series Only": "Ukur Hanya Rangkaian", "Simple": "Sederhana", "Report a data issue": "Laporkan masalah data", "Arnaud Legoux Moving Average_study": "Arnaud Legoux Moving Average", "Technical Analysis": "Analisis Teknikal", "Lower Band_input": "Lower Band", "Verify Price for Limit Orders": "Verifikasi Harga untuk Limit Order", "VI +_input": "VI +", "Line Width": "Lebar Garis", "Lead 1_input": "Lead 1", "Always Show Stats": "Selalu Tampilkan Statistik", "Down Wave 4": "Gelombang Turun 4", "Down Wave 5": "Gelombang Turun 5", "Simple ma(signal line)_input": "Simple ma(signal line)", "Ray": "Sinar", "Public Library": "Kepustakaan Publik", " Do you really want to delete Drawing Template '{0}' ?": " Apakah benar Anda ingin menghapus Template Gambar '{0}'?", "Down Wave 3": "Gelombang Turun 3", "Close message": "Tutup pesan", "long_input": "long", "Show Drawings Toolbar": "Perlihatkan Bilah Alat Gambar", "Chaikin Oscillator_study": "Oscillator Chaikin", "Balloon": "Balon", "Market Open": "Market Buka", "Color Theme": "Warna Tema", "Centered_input": "Centered", "Bollinger Bands Width_input": "Bollinger Bands Width", "Apply Indicator on {0} ...": "Terapkan Indikator pada {0} ...", "Signal Length_input": "Signal Length", "Error occured while publishing": "Terjadi kesalahan saat mempublikasikan", "Lock/Unlock": "Kunci/Buka Kunci", "Color 1_input": "Color 1", "Moving Average Weighted_study": "Rata-Rata Bergerak Tertimbang", "Save": "Simpan", "Type": "Ketik", "Chart Layout Name": "Nama Susunan Chart", "Short period_input": "Short period", "Load Chart Layout": "Muat Tata Letak Chart", "Show Values": "Perlihatkan Nilai", "Fisher_input": "Fisher", "__dayName__ __specialSymbolOpen__at__specialSymbolClose__ __dayTime__": "__dayName__ __specialSymbolOpen__pada__specialSymbolClose__ __dayTime__", "This chart layout has more than 1000 drawings, which is a lot! This may negatively affect performance, storage and publishing. We recommend to remove some drawings to avoid potential performance issues.": "Tata letak chart ini berisi lebih dari 1000 gambar, jumlah yang besar! Hal ini dapat memberi pengaruh buruk pada kinerja, penyimpanan dan publikasi. Kami menganjurkan agar beberapa gambar dihilangkan untuk menghindari potensi masalah pada kinerja.", "Left End": "Ujung Kiri", "Volume Oscillator_study": "Volume Oscillator", "Always Visible": "Selalu Terlihat", "S_data_mode_snapshot_letter": "S", "post-market": "setelah market", "Change Minutes To": "Ubah Menit Menjadi", "Earnings breaks": "Jeda earnings", "Do not ask again": "Jangan tanyakan lagi", "MTPredictor": "PemrakiraMT", "Tue": "Selasa", "smalen4_input": "smalen4", "CCI_input": "CCI", "Unmerge Up": "Pisahkan Ke Atas", "increment_input": "increment", "XABCD Pattern": "Pola XABCD", "powered by {0}": "diberdayakan oleh {0}", "DEMA_input": "DEMA", "NV_input": "NV", "Choppiness Index_study": "Indeks Choppiness", "Study Template '{0}' already exists. Do you really want to replace it?": "Template Studi '{0}' sudah ada. Apakah Anda ingin menggantinya?", "Merge Down": "Gabung ke Bawah", "Studies": "Studi", "eod delayed": "tertunda eod", "Delete": "Hapus", "percent_input": "percent", "Apr": "April", "Length_input": "Length", "Avg HL in minticks": "Rata-Rata HL dalam minticks", "Accumulation/Distribution_input": "Accumulation/Distribution", "Sync": "Sinkronisasi", "C_in_legend": "C", "Weeks_interval": "Weeks", "smoothK_input": "smoothK", "Percentage_scale_menu": "Percentage", "Change Extended Hours": "Ubah Jam Perpanjangan", "MOM_input": "MOM", "h_interval_short": "h", "Rotated Rectangle": "Bujur Sangkar Berputar", "Modified Schiff": "Schiff Modifikasi", "Symbol": "Simbol", "Send Backward": "Kirim Mundur", "TRIX_input": "TRIX", "Show Price Range": "Perlihatkan Rentang Harga", "Delete chart layout": "Hapus tata letak chart", "Notification": "Pemberitahuan", "Fri": "Jumat", "just now": "baru saja", "Forecast": "Prakiraan", "Fraction part is invalid.": "Bagian pecahan tidak valid.", "Connecting": "Menyambungkan", "Histogram_input": "Histogram", "The Extended Trading Hours feature is available only for intraday charts": "Fitur Perpanjangan Jam Trading hanya tersedia untuk chart intraday", "StdDev_input": "StdDev", "Change Minutes From": "Ubah Menit Dari", "Relative Strength Index_study": "Indeks Kekuatan Relatif", "Interval is not applicable": "Interval tidak dapat diterapkan", "My Scripts": "Naskah Saya", "Monday": "Senin", "-DI_input": "-DI", "short_input": "short", "top": "teratas", "a month": "satu bulan", "Precision": "Presisi", "depth_input": "depth", "Please enter chart layout name": "Silakan masukkan nama tata letak chart", "Offset": "Cetakan", "Date": "Tanggal", "Apply WPT Up Wave": "Terapkan WPT Up Wave", "Toggle Auto Scale": "Toggle Skala Otomatis", "Toggle Maximize Pane": "Toggle Maksimalisasi Pane", "Periods_input": "Periods", "Zig Zag_study": "Zig Zag", "Actual": "Aktual", "SUCCESS": "SUKSES", "Detrended Price Oscillator_input": "Detrended Price Oscillator", "length_input": "length", "Close Position": "Tutup Posisi", "Price Line": "Garis Harga", "Area With Breaks": "Wilayah Beserta Sela", "Zoom Out": "Perkecil", "Stop Level. Ticks:": "Level Stop. Ticks:", "Jul": "Juli", "Above Bar": "Bar Atas", "Visual Order": "Perintah Visual", "Warning": "Peringatan", "__specialSymbolOpen__Yesterday at__specialSymbolClose__ __dayTime__": "__specialSymbolOpen__Kemarin pada__specialSymbolClose__ __dayTime__", "Stop Background Color": "Warna Latar Stop", "Slow length_input": "Slow length", "Conversion Line Periods_input": "Conversion Line Periods", "Sector": "Sektor", "powered by TradingView": "diberdayakan oleh TradingView", "Stochastic_study": "Stochastic", "Apply WPT Down Wave": "Terapkan WPT Down Wave", "Marker Color": "Warna Penanda", "TEMA_input": "TEMA", "Directional Movement_study": "Gerakan Terarah", "Extend Left End": "Perpanjang Ujung Kiri", "Advance/Decline_study": "Advance/Decline", "Flag Mark": "Tanda Bendera", "Drawings": "Gambar", "Fast length_input": "Fast length", "Cancel": "Batal", "Median_input": "Median", "Redo": "Ulangi", "Hide Drawings Toolbar": "Sembunyikan Bilah Alat Gambar", "Ultimate Oscillator_study": "Ultimate Oscillator", "This chart layout has a lot of objects and can't be published! Please report to {0} for further details.": "Tata letak chart ini berisi banyak objek sehingga tidak dapat dipublikasikan! Silakan laporkan ke {0} untuk penjelasan lebih lanjut.", "Vert Grid Lines": "Garis Alur Vertikal", "Growing_input": "Growing", "Angle": "Sudut", "Show Only Future Events": "Perlihatkan Hanya Event di Masa Mendatang", "Plot_input": "Plot", "Color 8_input": "Color 8", "Indicators, Fundamentals, Economy and Add-ons": "Indikator, Fundamental, Ekonomi dan Add-ons", "Search": "Cari", "Bollinger Bands Width_study": "Lebar Bollinger Bands", "roclen3_input": "roclen3", "Overbought_input": "Overbought", "DPO_input": "DPO", "Levels Line": "Garis Level", "No study templates saved": "Tidak ada template studi tersimpan", "Trend Line": "Garis Tren", "Relative Vigor Index_study": "Indeks Tenaga Relatif", "Your chart is being saved, please wait a moment before you leave this page.": "Chart Anda sedang disimpan, mohon menunggu beberapa saat sebelum meninggalkan halaman ini.", "Circle": "Lingkaran", "Price Range": "Rentang Harga", "Extended Hours": "Jam Perpanjangan", "Triangle": "Segitiga", "Line With Breaks": "Garis Dengan Jeda", "Period_input": "Period", "Watermark": "Tanda air", "Trigger_input": "Trigger", "SigLen_input": "SigLen", "Clone": "Gandakan", "Color 2_input": "Color 2", "Show Prices": "Perlihatkan Harga", "{0} chart by TradingView": "{0} chart oleh TradingView", "Timezone/Sessions": "Zona waktu/Sesi", "Save Indicator Template As...": "Simpan Template Indikator Sebagai...", "Arrow Mark Right": "Tanda Panah Kanan", "Background color 2": "Warna latar 2", "Background color 1": "Warna Latar 1", "Circles": "Lingkaran", "McGinley Dynamic_study": "McGinley Dynamic", "Visible on Mouse Over": "Terlihat di Mouse Pada", "Thu": "Kamis", "Vortex Indicator_study": "Vortex Indicator", "Williams Alligator_study": "Williams Alligator", "ROCLen1_input": "ROCLen1", "M_interval_short": "M", "Change Symbol...": "Ubah simbol...", "Price Levels": "Level Harga", "Show Splits": "Perlihatkan Pemisahan", "Zero Line_input": "Zero Line", "__specialSymbolOpen__Today at__specialSymbolClose__ __dayTime__": "__specialSymbolOpen__Hari ini pada__specialSymbolClose__ __dayTime__", "Increment_input": "Increment", "Days_interval": "Days", "Show Right Scale": "Perlihatkan Skala Kanan", "Show Alert Labels": "Perlihatkan Label Peringatan", "Net Volume_study": "Volume Bersih", "Lock": "Kunci", "length14_input": "length14", "Sa_day_of_week": "Sa", "High": "Atas", "ext": "perpanjangan", "Date and Price Range": "Rentang Tanggal dan Harga", "Reconnect": "Menyambungkan Kembali", "Add to favorites": "Tambah ke dalam daftar favorit", "Saturday": "Sabtu", "Symbol Last Value": "Nilai Terakhir Simbol", "Color 0_input": "Color 0", "maximum_input": "maximum", "Wed": "Rabu", "D_data_mode_delayed_letter": "D", "Symbol Info": "Info Simbol", "Pyramiding": "Membentuk Piramid", "fastLength_input": "fastLength", "Width": "Lebar", "Historical Volatility_study": "Volatilitas Historis", "Compare or Add Symbol...": "Bandingkan atau Tambahkan Simbol...", "Parallel Channel": "Saluran Paralel", "Time Cycles": "Siklus Waktu", "Second fraction part is invalid.": "Bagian pecahan kedua tidak valid.", "Divisor_input": "Divisor", "Down Wave 1 or A": "Gelombang Turun 1 atau A", "ROC_input": "ROC", "Dec": "Desember", "Extend": "Perpanjang", "length7_input": "length7", "Toggle Maximize Chart": "Toggle Maksimalisasi Chart", "Undo": "Kembalikan", "Window Size_input": "Window Size", "Mon": "Senin", "Reset Scale": "Atur Ulang Skala", "Long Length_input": "Long Length", "True Strength Indicator_study": "True Strength Indicator", "%R_input": "%R", "There are no saved charts": "Tidak ada chart yang tersimpan", "Chart Properties": "Kelengkapan Chart", "bars_margin": "bars", "Show Indicator Last Value": "Perlihatkan Nilai Terakhir Indikator", "Initial capital": "Modal awal", "Show Angle": "Perlihatkan Sudut", "Indicator Last Value": "Nilai Terakhir Indikator", "More features on tradingview.com": "Lebih banyak lagi fitur di tradingview.com", "smalen3_input": "smalen3", "Length1_input": "Length1", "Always Invisible": "Selalu Tidak Terlihat", "Days": "Hari", "x_input": "x", "Save As...": "Simpan Sebagai...", "Tehran": "Teheran", "Parabolic SAR_study": "SAR Parabola", "Fisher Transform_study": "Fisher Transform", "Show Hidden Tools": "Perlihatkan Alat Tersembunyi", "Hollow Candles": "Candle Kosong", "Any Symbol": "Simbol Bebas", "UO_input": "UO", "Stats Text Color": "Warna Teks Statistik", "Minutes": "Menit", "Short RoC Length_input": "Short RoC Length", "Show Orders": "Perlihatkan Order", "Countdown": "Hitung Mundur", "Jaw_input": "Jaw", "Right": "Kanan", "Help": "Bantuan", "Coppock Curve_study": "Kurva Coppock", "Reset Chart": "Atur Ulang Chart", "Sep": "September", "Sunday": "Minggu", "Themes": "Tema", "Left Axis": "Poros Kiri", "YES": "YA", "longlen_input": "longlen", "Moving Average Exponential_study": "Rata-Rata Bergerak Eksponensial", "Source border color": "Warna batas sumber", "Redo {0}": "Ulangi {0}", "Cypher Pattern": "Pola Chiper", "s_dates": "s", "Move Down": "Pindahkan Turun", "Area": "Wilayah", "invalid symbol": "simbol tidak valid", "Triangle Pattern": "Pola Segitiga", "Balance of Power_study": "Balance of Power", "EOM_input": "EOM", "Font Size": "Ukuran Font", "Apply Manual Risk/Reward": "Terapkan Risiko/Ganjaran Manual", "Indicators": "Indikator", "q_input": "q", "You are notified": "Anda mendapat notifikasi", "%D_input": "%D", "Border Color": "Warna Batas", "Offset_input": "Offset", "Risk": "Risiko", "Price Scale": "Skala Harga", "HV_input": "HV", "Seconds": "Detik", "Start_input": "Start", "R_data_mode_realtime_letter": "R", "Hours": "Jam", "Send to Back": "Kirim ke Belakang", "Color 4_input": "Color 4", "Angles": "Sudut", "Prices": "Harga", "Extended Hours (Intraday Only)": "Jam Perpanjangan (Hanya Intraday)", "July": "Juli", "Create Horizontal Line": "Buat Garis Horisontal", "Minute": "Menit", "Cycle": "Siklus", "ADX Smoothing_input": "ADX Smoothing", "One color for all lines": "Satu warna untuk semua garis", "m_dates": "m", "Settings": "Pengaturan", "Drawing Tools": "Alat Gambar", "Candles": "Candle", "We_day_of_week": "We", "Width (% of the Box)": "Lebar (% dari Kotak)", "%d minute": "%d minutes", "Pip Size": "Ukuran Pip", "This drawing is used in alert. If you remove the drawing, the alert will be also removed. Do you want to remove the drawing anyway?": "Gambar ini digunakan dalam peringatan. Jika Anda menghilangkan gambar, peringatan juga akan hilang. Apakah Anda tetap ingin menghilangkan gambar ini?", "Hide All Drawing Tools": "Sembunyikan Semua Alat Gambar", "Show alert label line": "Perlihatkan garis label peringatan", "Down Wave 2 or B": "Gelombang Turun 2 atau B", "MA_input": "MA", "Detrended Price Oscillator_study": "Detrended Price Oscillator", "not authorized": "tidak dibenarkan", "Image URL": "URL Gambar", "SMI Ergodic Oscillator_input": "SMI Ergodic Oscillator", "Show Objects Tree": "Perlihatkan Pohon Objek", "Primary": "Primer", "Price:": "Harga:", "Bring to Front": "Bawa ke Depan", "Brush": "Sikat", "Not Now": "Tidak Sekarang", "lengthRSI_input": "lengthRSI", "Yes": "Ya", "Events & Alerts": "Event & Peringatan", "+DI_input": "+DI", "Apply Default Drawing Template": "Terapkan Template Gambar Bawaan", "Save As Default": "Simpan Sebagai Bawaan", "Invalid Symbol": "Simbol Tidak Valid", "Inside Pitchfork": "Pitchfork Dalam", "yay Color 1_input": "yay Color 1", "Quandl is a huge financial database that we have connected to TradingView. Most of its data is EOD and is not updated in real-time, however the information may be extremely useful for fundamental analysis.": "Quandl adalah database finansial sangat besar yang telah kami hubungkan dengan TradingView. Sebagian besar datanya adalah EOD dan tidak diperbaharui secara real-time, namun informasi yang tersedia dapat sangat berguna untuk analisis fundamental.", "Hide Marks On Bars": "Sembunyikan Tanda-Tanda pada Bar", "Note": "Catatan", "Show Countdown": "Perlihatkan Hitung Mundur", "WMA Length_input": "WMA Length", "Show Dividends on Chart": "Perlihatkan Dividen pada Chart", "Show Executions": "Perlihatkan Eksekusi", "Borders": "Batas", "loading...": "memuat...", "Closed_line_tool_position": "Closed", "Columns": "Kolom", "Change Resolution": "Ubah Resolusi", "Indicator Arguments": "Argumentasi Indikator", "Apply Elliot Wave": "Terapkan Elliot Wave", "Degree": "Derajat", "Mar": "Maret", "Line - HL/2": "Garis - HL/2", "Up Wave 4": "Naik Gelombang 4", "Jun": "Juni", "Least Squares Moving Average_study": "Least Squares Moving Average", "Change Variance value": "Ubah nilai Varian", "Overlay the main chart": "Menutupi chart utama", "powered by ": "diberdayakan oleh ", "Source_input": "Source", "Change Seconds To": "Ubah Detik Menjadi", "%K_input": "%K", "Success back color": "Warna belakang Sukses", "Please enter template name": "Silakan masukkan nama template", "Symbol Name": "Nama Simbol", "Events Breaks": "Jeda Event", "Study Templates": "Template Studi", "Months": "Bulan", "Symbol Info...": "Info simbol...", "len_input": "len", "Read our blog for more info!": "Baca blog kami untuk informasi lebih banyak!", "Measure (Shift + Click on the chart)": "Pengukur (Shift + Klik pada chart)", "Thursday": "Kamis", "Add To Text Notes": "Tambah Ke Dalam Catatan Teks", "Multiplier_input": "Multiplier", "Risk/Reward": "Risiko/Ganjaran", "Base Line Periods_input": "Base Line Periods", "Show Dividends": "Perlihatkan Dividen", "Top Labels": "Label Teratas", "Show Earnings": "Perlihatkan Earning", "Line - Open": "Garis - Buka", "siglen_input": "siglen", "Text Wrap": "Pembungkus Teks", "Reverse Position": "Posisi Kebalikan", "Th_day_of_week": "Th", "No symbols matched your criteria": "Tidak ada simbol yang cocok dengan kriteria Anda", "Icon": "Ikon", "Short_input": "Short", "Indicator_input": "Indicator", "Open Interval Dialog": "Buka Dialog Interval", "Athens": "Atena", "Q_input": "Q", "Content": "Konten", "middle": "pertengahan", "Lock Cursor In Time": "Kunci Kursor Sewaktu-waktu", "Intermediate": "Menengah", "Eraser": "Penghapus", "TimeZone": "ZonaWaktu", "Envelope_study": "Amplop", "Active Symbol": "Simbol Aktif", "Horizontal Line": "Garis Horisontal", "O_in_legend": "O", "Confirmation": "Konfirmasi", "HL Bars": "Bar HL", "Add Alert": "Tambah Peringatan", "Lines:": "Garis:", "Hide Favorite Drawings Toolbar": "Sembunyikan Bilah Alat Gambar Favorit", "useTrueRange_input": "useTrueRange", "Profit Level. Ticks:": "Level Keuntungan. Tanda:", "Show Date/Time Range": "Perlihatkan Rentang Tanggal/Waktu", "%d year": "%d years", "Horz Grid Lines": "Garis Pola Horz", "Text Notes are available only on chart page. Please open a chart and then try again.": "Catatan Teks hanya tersedia di halaman chart. Silakan buka sebuah chart kemudian coba kembali.", "Tu_day_of_week": "Tu", "day": "days", "deviation_input": "deviation", "week": "weeks", "Base currency": "Kurs dasar", "VWMA_study": "VWMA", "Success text color": "Warna teks Sukses", "ADX smoothing_input": "ADX smoothing", "%d hour": "%d hours", "Order size": "Ukuran order", "Displacement_input": "Displacement", "Save Indicator Template As": "Simpan Template Indikator Sebagai", "ADR_B_input": "ADR_B", "Chaikin Money Flow_study": "Arus Uang Chaikin", "Ease Of Movement_study": "Ease Of Movement", "Defaults": "Bawaan", "Oversold_input": "Oversold", "Williams %R_study": "Williams %R", "Visual settings...": "Pengaturan Visual...", "RSI_input": "RSI", "Long period_input": "Long period", "Mo_day_of_week": "Mo", "center": "pusat", "Vertical Line": "Garis Vertikal", "Show Splits on Chart": "Perlihatkan Pemisahan pada Chart", "Sorry, the Copy Link button doesn't work in your browser. Please select the link and copy it manually.": "Maaf, tombol Salin Link tidak berfungsi di browser Anda. Silakan sorot link lalu salin secara manual.", "X_input": "X", "C_data_mode_connecting_letter": "C", "Simple ma(oscillator)_input": "Simple ma(oscillator)", "compiling...": "menyusun...", "SMALen4_input": "SMALen4", "ROCLen4_input": "ROCLen4", "Aroon Down_input": "Aroon Down", "Add To Watchlist": "Tambah Ke Daftar Lihat", "Extend Right": "Perpanjang Kanan", "left": "kiri", "Lock scale": "Kunci skala", "Time Levels": "Level Waktu", "Arrow": "Panah", "smalen1_input": "smalen1", "Drawing Template '{0}' already exists. Do you really want to replace it?": "Template Gambar '{0}' sudah ada. Apakah benar Anda ingin menggantinya?", "Extend Right End": "Perpanjang Ujung Kanan", "Fans": "Penggemar", "Line - Low": "Garis - Rendah", "Price_input": "Price", "Close_input": "Close", "Arrow Mark Down": "Tanda Panah Turun", "Weeks": "Minggu", "Modified Schiff Pitchfork": "Schiff Pitchfork Modifikasi", "Relative Volatility Index_study": "Indeks Volatilitas Relatif", "Source Code...": "Kode Sumber...", "PVT_input": "PVT", "Circle Lines": "Garis Lingkaran", "Hull Moving Average_study": "Hull Moving Average", "Save Drawing Template As": "Simpan Template Gambar Sebagai", "Bring Forward": "Bawa Maju", "Apply Defaults": "Terapkan Pengaturan Bawaan", "Friday": "Jumat", "Zero_input": "Zero", "Company Comparison": "Perbandingan Perusahaan", "Stochastic Length_input": "Stochastic Length", "mult_input": "mult", "URL cannot be received": "URL tidak dapat diterima", "Signal smoothing_input": "Signal smoothing", "E_data_mode_end_of_day_letter": "E", "Trend-Based Fib Extension": "Ekstensi Fib Berbasis Tren", "Analyze Trade Setup": "Analisis Pengaturan Trading", "Double Curve": "Kurva Ganda", "Stochastic RSI_study": "Stochastic RSI", "Horizontal Ray": "Cahaya Horisontal", "Symbol Labels": "Label Simbol", "Edit Order": "Sunting Perintah", "Trades on Chart": "Trading pada Chart", "Chaikin Oscillator_input": "Chaikin Oscillator", "Listed Exchange": "Bursa Terdaftar", "Error:": "Kesalahan:", "Fullscreen mode": "Mode layar penuh", "Add Text Note For {0}": "Tambah Catatan Teks Untuk {0}", "K_input": "K", "In Session": "Dalam Sesi", "ROCLen3_input": "ROCLen3", "Micro": "Mikro", "Text Color": "Warna Teks", "Extend Alert Line": "Perpanjang Garis Peringatan", "Drawings Toolbar": "Bilah Alat Gambar", "New Zealand": "Selandia Baru", "CHOP_input": "CHOP", "Scale": "Ukuran", "Screen (No Scale)": "Layar (Tanpa Skala)", "Extended Alert Line": "Garis Peringatan yang Diperpanjang", "Signal_input": "Signal", "like": "likes", "Show": "Perlihatkan", "Exchange": "Bursa", "{0} bars": "{0} bar", "Lower_input": "Lower", "Created ": "Sudah Dibuat ", "Arc": "Busur", "Elder's Force Index_study": "Elder's Force Index", "Show Earnings on Chart": "Perlihatkan Earning pada Chart", "ATR_input": "ATR", "Do you really want to delete Color Theme '{0}' ?": "Apakah benar Anda ingin menghapus Warna Tema '{0}' ?", "Low": "Rendah", "Bollinger Bands %B_study": "Bollinger Bands %B", "Time Zone": "Zona Waktu", "right": "kanan", "%d month": "%d months", "Wrong value": "Nilai salah", "Upper Band_input": "Upper Band", "Sun": "Minggu", "Rename...": "Ganti Nama...", "February": "Februari", "start_input": "start", "No indicators matched your criteria.": "Tidak ada indikator yang cocok dengan kriteria Anda.", "Commission": "Komisi", "Short length_input": "Short length", "Triple EMA_study": "Triple EMA", "Precise Labels_scale_menu": "Precise Labels", "Smoothed Moving Average_study": "Smoothed Moving Average", "Do you really want to delete Drawing Template '{0}' ?": "Apakah benar Anda ingin menghapus Template Gambar '{0}' ?", "Chatham Islands": "Kepulauan Chatham", "Channel": "Saluran", "Stop syncing drawing": "Stop sinkronisasi gambar", "FXCM CFD data is available only to FXCM account holders": "Data FXCM CFD hanya tersedia bagi pemegang akun FXCM", "Lagging Span 2 Periods_input": "Lagging Span 2 Periods", "Connecting Line": "Menghubungkan Jalur", "bottom": "dasar", "Teeth_input": "Teeth", "Open Manage Drawings": "Buka Pengaturan Gambar", "Save New Chart Layout": "Simpan Tata Letak Chart Baru", "Fib Channel": "Saluran Fib", "Visibility": "Jarak Pengelihatan", "Events": "Event", "Save Drawing Template As...": "Simpan Template Gambar Sebagai...", "Minutes_interval": "Minutes", "Insert Study Template": "Masukkan Template Studi", "exponential_input": "exponential", "OnBalanceVolume_input": "OnBalanceVolume", "roclen2_input": "roclen2", "Chande Momentum Oscillator_study": "Oscillator Momentum Chande", "Not applicable": "Tidak dapat diterapkan", "or copy url:": "atau salin url:", "Bollinger Bands %B_input": "Bollinger Bands %B", "Template name": "Nama template", "Indicator Values": "Nilai Indikator", "Lips Length_input": "Lips Length", "Use Upper Deviation_input": "Use Upper Deviation", "L_in_legend": "L", "Remove custom interval": "Hilangkan interval custom", "shortlen_input": "shortlen", "Quotes are delayed by {0} min": "Kutipan tertunda selama {0} menit", "Copied to clipboard": "Disalin ke clipboard", "ADX_input": "ADX", "Profit Background Color": "Warna Latar Belakang Keuntungan", "Bar's Style": "Model Bar", "Exponential_input": "Exponential", "ROCLen2_input": "ROCLen2", "Use Lower Deviation_input": "Use Lower Deviation", "Previous": "Sebelumnya", "Stay In Drawing Mode": "Tetap Dalam Mode Menggambar", "Comment": "Komentar", "Long_input": "Long", "Bars": "Bar", "Source text color": "Warna teks sumber", "Flat Top/Bottom": "Puncak/Dasar Datar", "Symbol Type": "Jenis Simbol", "loading data": "memuat data", "December": "Desember", "Lock drawings": "Kunci gambar", "Border color": "Warna batas", "Change Seconds From": "Ubah Detik Dari", "Left Labels": "Label Kiri", "Insert Indicator...": "Masukkan Indikator...", "P_input": "P", "Paste %s": "Pasang %s", "Timezone": "Zona waktu", "Invite-only script. You have been granted access.": "Naskah hanya-mengundang. Akses diberikan kepada Anda.", "Sat": "Sabtu", "Rectangle": "Bujur Sangkar", "Source back color": "Warna belakang sumber", "Transparency": "Transparansi", "No": "Tidak", "All Indicators And Drawing Tools": "Semua Indikator dan Alat Gambar", "Cyclic Lines": "Garis Berputar", "length28_input": "length28", "ABCD Pattern": "Pola ABCD", "When selecting this checkbox the study template will set \"__interval__\" interval on a chart": "Jika Anda memiliki checkbox ini maka template studi akan mengatur interval \"__interval__\" pada chart", "NO": "TIDAK", "Add": "TAMBAH", "OC Bars": "Bar OC", "Millennium": "Milenia", "Price Label": "Label Harga", "Graphics": "Grafik", "NEW": "BARU", "Wick": "Sumbu", "Hull MA_input": "Hull MA", "Callout": "Menyebutkan", "Lock Scale": "Kunci Skala", "distance: {0}": "jarak: {0}", "Extended": "Diperpanjang", "Create Vertical Line": "Buat Garis Vertikal", "Arcs": "Busur", "Top Margin": "Marjin Teratas", "Length2_input": "Length2", "Insert Drawing Tool": "Masukkan Alat Gambar", "OHLC Values": "Nilai OHLC", "Correlation_input": "Correlation", "Scales Text": "Skala Teks", "Session Breaks": "Jeda Sesi", "Add {0} To Watchlist": "Tambah {0} ke dalam Daftar Lihat", "Anchored Note": "Catatan Dasar", "lipsLength_input": "lipsLength", "Apply Indicator on {0}": "Terapkan Indikator pada {0}", "roclen4_input": "roclen4", "closed": "tutup", "Background Color": "Warna Latar", "an hour": "satu jam", "Right Axis": "Poros Kanan", "D_data_mode_delayed_streaming_letter": "D", "VI -_input": "VI -", "slowLength_input": "slowLength", "Click to set a point": "Klik untuk menentukan sebuah poin", "January": "Januari", "delayed": "tertunda", "Indicator Titles": "Judul Indikator", "retrying": "mencoba kembali", "Change area background": "Ubah latar wilayah", "Error": "Kesalahan", "Edit Position": "Sunting Posisi", "RVI_input": "RVI", "Awesome Oscillator_study": "Awesome Oscillator", "Recalculate On Every Tick": "Dihitung Kembali Pada Setiap Tick", "Left": "Kiri", "Show Text": "Perlihatkan Teks", "Objects Tree...": "Pohon Objek...", "Compare": "Bandingkan", "Add Symbol": "Tambah Simbol", "Projection": "Proyeksi", "Track time": "Waktu penelusuran", "Enter a new chart layout name": "Masukkan nama tata letak chart baru", "Properties": "Properti", "Teeth Length_input": "Teeth Length", "Point Value": "Nilai Poin", "D_interval_short": "D", "Close": "Tutup", "ParabolicSAR_input": "ParabolicSAR", "Log Scale_scale_menu": "Log Scale", "MACD_input": "MACD", "Do not show this message again": "Jangan tampilkan pesan ini lagi", "Up Wave 3": "Naik Gelombang 3", "Arrow Mark Left": "Tanda Panah Kiri", "Up Wave 5": "Naik Gelombang 5", "Line - Close": "Garis - Tutup", "Confirm Inputs": "Konfirmasi Masukan", "Open_line_tool_position": "Open", "Lagging Span_input": "Lagging Span", "Cross": "Persilangan", "Mirrored": "Tercermin", "Price": "Harga", "Error while trying to create snapshot.": "Terjadi kesalahan saat akan membuat foto.", "Label Background": "Latar Belakang Label", "Templates": "Template", "Please report the issue or click Reconnect.": "Silakan melaporkan permasalahan atau klik Menyambung Kembali", "1. Slide your finger to select location for first anchor
    2. Tap anywhere to place the first anchor": "1. Geser jari Anda untuk memilih lokasi anchor
    pertama 2. Ketuk di sembarang tempat untuk menempatkan anchor pertama", "Signal Labels": "Label Sinyal", "May": "Mei", "Are you sure?": "Apakah Anda yakin?", "Color 5_input": "Color 5", "Scale Price Chart Only": "Ukur Hanya Chart Harga", "Default": "Bawaan", "auto_scale": "auto", "Background": "Latar", "% of equity": "% dari ekuitas", "Apply Elliot Wave Intermediate": "Terapkan Elliot Wave Intermediate", "VWMA_input": "VWMA", "Lower Deviation_input": "Lower Deviation", "Save Interval": "Simpan Interval", "Extend Lines Left": "Perpanjang Garis Kiri", "Reverse": "Kebalikan", "Oops, something went wrong": "Oops, ada permasalahan", "Shapes_input": "Shapes", "Median": "Medium", "Show Source Code": "Perlihatkan Kode Sumber", "Remove": "Hilangkan", "Wednesday": "Rabu", "Arrow Mark Up": "Tanda Panah Naik", "Crosses_input": "Crosses", "KST_input": "KST", "Sync drawing to all charts": "Sinkronisasi gambar pada semua chart", "LowerLimit_input": "LowerLimit", "Know Sure Thing_study": "Know Sure Thing", "Copy Chart Layout": "Salin Tata Letak Chart", "Compare...": "Bandingkan...", "1. Slide your finger to select location for next anchor
    2. Tap anywhere to place the next anchor": "1. Geser jari Anda untuk memilih lokasi anchor
    berikutnya 2. Ketuk di sembarang tempat untuk menempatkan anchor berikutnya", "Compare or Add Symbol": "Bandingkan atau Tambahkan Simbol", "Color": "Warna", "Aroon Up_input": "Aroon Up", "Singapore": "Singapura", "Scales Lines": "Skala Garis", "Type the interval number for munute charts (i.e. 5 if it is going to be a five minute chart). Or number plus letter for H (Hourly), D (Daily), W (Weekly), M (Monthly) intervals (i.e. D or 2H)": "Ketik nomor interval untuk chart menit (misalnya 5 jika Anda ingin chart 5 menit). Atau nomor ditambah huruf untuk H (Jam), D (Hari), W (Minggu), M (Bulan) interval (misalnya D atau 2H)", "Up Wave C": "Naik Gelombang C", "Show Distance": "Perlihatkan Jarak", "Risk/Reward Ratio: {0}": "Rasio Risiko/Ganjaran: {0}", "Restore Size": "Kembalikan Ukuran", "Williams Fractal_study": "Williams Fractal", "Merge Up": "Gabung ke Atas", "Right Margin": "Marjin Kanan", "Ellipse": "Elips", "Warsaw": "Warsawa"} \ No newline at end of file +{"ticks_slippage ... ticks": "ticks", "Months_interval": "Bulan", "Percent_input": "Persen", "Callout": "Memanggil", "Sync to all charts": "Sinkronisasi ke seluruh chart", "month": "bulan", "roclen1_input": "pjgroc1", "Unmerge Down": "Pisahkan Ke Bawah", "Percents": "Persen", "Search Note": "Cari Catatan", "Do you really want to delete Chart Layout '{0}' ?": "Apakah benar anda ingin menghapus Tata Letak Chart '{0}' ?", "Quotes are delayed by {0} min and updated every 30 seconds": "Kutipan tertunda {0} menit dan diperbaharui setiap 30 detik", "Magnet Mode": "Mode Magnet", "Grand Supercycle": "Supercycle Besar", "OSC_input": "OSC", "Hide alert label line": "Sembunyikan garis label peringatan", "Volume_study": "Volume", "Lips_input": "Lips", "Show real prices on price scale (instead of Heikin-Ashi price)": "Perlihatkan harga sebenarnya pada skala harga (bukan harga Heikin-Ashi)", "Base Line_input": "Garis Dasar", "Step": "Langkah", "Insert Study Template": "Masukkan Template Studi", "SMALen2_input": "PjgSMA2", "Bollinger Bands_study": "Bollinger Bands", "Show/Hide": "Perlihatkan/Sembunyikan", "Upper_input": "Atas", "exponential_input": "eksponensial", "Move Up": "Pindahkan Naik", "Symbol Info": "Info Simbol", "This indicator cannot be applied to another indicator": "Indikator ini tidak dapat diterapkan pada indikator lain", "Scales Properties...": "Properti Skala...", "Count_input": "Hitung", "Full Circles": "Lingkaran Penuh", "Industry": "Industri", "OnBalanceVolume_input": "OnBalanceVolume", "Cross_chart_type": "Cross", "H_in_legend": "H", "a day": "satu hari", "R_data_mode_replay_letter": "R", "Accumulation/Distribution_study": "Akumulasi/Distribusi", "Rate Of Change_study": "Tingkat Perubahan", "Text Font": "Font Teks", "in_dates": "dalam", "Clone": "Gandakan", "Color 7_input": "Warna 7", "Chop Zone_study": "Zona Chop", "Scales Properties": "Properti Skala", "Trend-Based Fib Time": "Fib Time Berdasarkan Tren", "Remove All Indicators": "Hilangkan Semua Indikator", "Oscillator_input": "Osilator", "Last Modified": "Modifikasi Terakhir", "yay Color 0_input": "Warna yay 0", "Labels": "Label", "Chande Kroll Stop_study": "Chande Kroll Stop", "Hours_interval": "Jam", "Allow up to": "Diizinkan sampai dengan", "Scale Right": "Skala Kanan", "Money Flow_study": "Money Flow", "siglen_input": "pjgsin", "Indicator Labels": "Label Indikator", "__specialSymbolOpen__Tomorrow at__specialSymbolClose__ __dayTime__": "__specialSymbolOpen__Besok pada__specialSymbolClose__ __dayTime__", "Toggle Percentage": "Toggle Persentase", "Remove All Drawing Tools": "Hilangkan Semua Alat Gambar", "Remove all line tools for ": "Hilangkan semua alat garis untuk ", "Linear Regression Curve_study": "Kurva Regresi Linear", "Symbol_input": "Simbol", "increment_input": "kenaikan", "Compare or Add Symbol...": "Bandingkan atau Tambahkan Simbol...", "__specialSymbolOpen__Last__specialSymbolClose__ __dayName__ __specialSymbolOpen__at__specialSymbolClose__ __dayTime__": "__specialSymbolOpen__Terakhir__specialSymbolClose__ __dayName__ __specialSymbolOpen__pada__specialSymbolClose__ __dayTime__", "Save Chart Layout": "Simpan Susunan Chart", "Number Of Line": "Jumlah Dari Garis", "Contracts": "Kontrak", "Post Market": "Setelah Pasar", "second": "detik", "Change Hours To": "Ubah Jam Menjadi", "smoothD_input": "smoothD", "Falling_input": "Jatuh", "Risk/Reward short": "Risiko/Perolehan jual", "UpperLimit_input": "BatasAtas", "Donchian Channels_study": "Donchian Channels", "Entry price:": "Harga masuk:", "Circles": "Lingkaran", "Stop: {0} ({1}) {2}, Amount: {3}": "Stop: {0} ({1}) {2}, Jumlah: {3}", "Mirrored": "Tercermin", "Ichimoku Cloud_study": "Ichimoku Cloud", "Signal smoothing_input": "Smoothing sinyal", "Toggle Log Scale": "Toggle Skala Log", "Toggle Auto Scale": "Toggle Skala Otomatis", "Triangle Down": "Segitiga Turun", "Apply Elliot Wave Minor": "Terapkan Elliot Wave Minor", "Rename...": "Ganti Nama...", "Smoothing_input": "Smoothing", "Color 3_input": "Warna 3", "Jaw Length_input": "Panjang Jaw", "Inside": "Di Dalam", "Delete all drawing for this symbol": "Hapus semua gambar untuk simbol ini", "Fundamentals": "Fundamental", "Keltner Channels_study": "Keltner Channel", "Long Position": "Posisi Beli", "Bands style_input": "Bentuk Pita", "Undo {0}": "Kembalikan {0}", "With Markers": "Dengan Penanda", "Momentum_study": "Momentum", "MF_input": "MF", "Switch to the next chart": "Pindah ke chart berikutnya", "charts by TradingView": "chart oleh TradingView", "Fast length_input": "Panjang Cepat", "Apply Elliot Wave": "Terapkan Elliot Wave", "Disjoint Angle": "Pisahkan Sudut", "Supermillennium": "Supermilenium", "W_interval_short": "W", "Show Only Future Events": "Perlihatkan Hanya Peristiwa di Masa Mendatang", "Log Scale": "Skala Log", "Line - High": "Garis - High", "Equality Line_input": "Garis Kesetaraan", "Short_input": "Jual", "Tuesday": "Selasa", "Line": "Garis", "Session": "Sesi", "Down fractals_input": "Fraktal Turun", "smalen2_input": "pjgsma2", "isCentered_input": "Ditengahkan", "Border": "Batas", "Klinger Oscillator_study": "Osilator Klinger", "Absolute": "Absolut", "Tue": "Selasa", "Style": "Gaya", "Show Left Scale": "Perlihatkan Skala Kiri", "SMI Ergodic Indicator/Oscillator_study": "SMI Ergodic Indikator/Osilator", "Aug": "Agst", "Last available bar": "Bar tersedia terakhir", "Manage Drawings": "Kelola Gambar", "Analyze Trade Setup": "Analisis Persiapan Trade", "No drawings yet": "Belum ada gambar saat ini", "SMI_input": "SMI", "Chande MO_input": "Chande MO", "jawLength_input": "Panjangjaw", "TRIX_study": "TRIX", "Show Bars Range": "Perlihatkan Rentang Bar", "RVGI_input": "RVGI", "Last edited ": "Terakhir kali di edit ", "signalLength_input": "Panjangsinyal", "Reset Settings": "Atur Ulang Pengaturan", "d_dates": "d", "Point & Figure": "Poin & Figur", "August": "Agustus", "Recalculate After Order filled": "Hitung Kembali Setelah Order Terpenuhi", "Source_compare": "Sumber", "Down bars": "Bar turun", "Correlation Coefficient_study": "Koefisien Korelasi", "Delayed": "Tertunda", "Bottom Labels": "Label Dasar", "Text color": "Warna teks", "Levels": "Level", "Short Length_input": "Panjang Jual", "teethLength_input": "Panjangteeth", "Visible Range_study": "Rentang Terlihat", "Open {{symbol}} Text Note": "Buka Catatan Teks {{symbol}}", "October": "Oktober", "Lock All Drawing Tools": "Kunci Semua Alat Gambar", "Long_input": "Long", "Unmerge Up": "Pisahkan Ke Atas", "Show Symbol Last Value": "Perlihatkan Nilai Terakhir Simbol", "Do you really want to delete Study Template '{0}' ?": "Apakah benar anda ingin menghapus Template Studi '{0}' ?", "Favorite Drawings Toolbar": "Toolbar Alat Gambar Favorit", "Properties...": "Properti...", "Reset Scale": "Atur Ulang Skala", "MA Cross_study": "MA Cross", "Trend Angle": "Sudut Tren", "Snapshot": "Cuplikan", "Signal line period_input": "Periode garis sinyal", "Previous Close Price Line": "Garis Close Harga Sebelumnya", "Line Break": "Garis Jeda", "Quantity": "Kuantitas", "Price Volume Trend_study": "Price Volume Trend", "Auto Scale": "Skala Otomatis", "hour": "jam", "Text": "Teks", "F_data_mode_forbidden_letter": "F", "Risk/Reward long": "Risiko/Perolehan beli", "Long RoC Length_input": "Panjang RoC Beli", "Length3_input": "Panjang3", "+DI_input": "+DI", "Length_input": "Panjang", "Use one color": "Gunakan satu warna", "Chart Properties": "Properti Chart", "No Overlapping Labels_scale_menu": "Label Tertumpuk Tidak Diperbolehkan", "Exit Full Screen (ESC)": "Keluar dari Layar Penuh (ESC)", "MACD_study": "MACD", "Show Economic Events on Chart": "Perlihatkan Peristiwa Ekonomi pada Chart", "%s ago_time_range": "%s yang lalu", "Show Wave": "Tampilkan Wave", "Failure back color": "Kegagalan warna belakang", "Below Bar": "Bar Dibawah", "Time Scale": "Skala Waktu", "

    Only D, W, M intervals are supported for this symbol/exchange. You will be automatically switched to a D interval. Intraday intervals are not available because of exchange policies.

    ": "

    Hanya interval D, W, M yang tersedia untuk simbol/kurs ini. anda akan dipindahkan ke interval D secara otomatis. Interval intrahari tidak tersedia karena adanya kebijakan kurs.

    ", "Extend Left": "Perpanjang Kiri", "Date Range": "JarakTanggal", "Min Move": "Pergerakan Min", "Price format is invalid.": "Format harga tidak valid.", "Show Price": "Perlihatkan Harga", "Level_input": "Level", "Commodity Channel Index_study": "Commodity Channel Index", "Elder's Force Index_input": "Elder's Force Index", "Currency": "Mata Uang", "Color bars based on previous close": "Bar warna yang berdasarkan tutup sebelumnya", "Change band background": "Ubah latar belakang pita", "Target: {0} ({1}) {2}, Amount: {3}": "Target: {0} ({1}) {2}, Jumlah: {3}", "Zoom Out": "Perkecil", "This chart layout has a lot of objects and can't be published! Please remove some drawings and/or studies from this chart layout and try to publish it again.": "Susunan chart ini memiliki terlalu banyak objek sehingga tidak dapat dipublikasikan! Harap hilangkan beberapa gambar dan/atau studi dari susunan chart ini kemudian cobalah untuk mempublikasikannya kembali.", "Anchored Text": "Teks Dasar", "Edit {0} Alert...": "Edit Peringatan {0}...", "Up Wave 5": "Naik Gelombang 5", "Qty: {0}": "Kuanitas: {0}", "Aroon_study": "Aroon", "show MA_input": "tampilkan MA", "Lead 1_input": "Lead 1", "Short Position": "Posisi Jual", "SMALen1_input": "PjgSMA1", "P_input": "P", "Apply Default": "Terapkan Pengaturan Bawaan", "SMALen3_input": "PjgSMA3", "Average Directional Index_study": "Average Directional Index", "Fr_day_of_week": "Jum", "Invite-only script. Contact the author for more information.": "Skrip khusus-undangan. Kontak penulis untuk informasi lebih lanjut.", "Curve": "Kurva", "a year": "satu tahun", "Target Color:": "Warna Target:", "Bars Pattern": "Pola Bar", "D_input": "D", "Font Size": "Ukuran Font", "Create Vertical Line": "Buat Garis Vertikal", "p_input": "p", "Rotated Rectangle": "Bujur Sangkar Berputar", "Chart layout name": "Nama susunan chart", "Apply Manual Decision Point": "Terapkan Titik Keputusan Manual", "Dot": "Titik", "Target back color": "Warna belakang Target", "All": "Semua", "orders_up to ... orders": "order", "Dot_hotkey": "Titik", "Lead 2_input": "Lead 2", "Save image": "Simpan gambar", "Move Down": "Pindahkan Turun", "Triangle Up": "Segitiga Naik", "Box Size": "Ukuran kotak", "Navigation Buttons": "Tombol Navigasi", "Miniscule": "Amat kecil", "Apply": "Terapkan", "Down Wave 3": "Gelombang Turun 3", "Plots Background_study": "Latar Belakang Plots", "Marketplace Add-ons": "Add-on Marketplace", "Sine Line": "Garis Sinus", "Fill": "Penuhkan", "%d day": "%d hari", "Hide": "Sembunyikan", "Toggle Maximize Chart": "Toggle Memperbesar Chart", "Target text color": "Warna teks Target", "Scale Left": "Skala Kiri", "smalen3_input": "pjgsma3", "Down Wave C": "Gelombang Turun C", "Countdown": "Hitung Mundur", "UO_input": "UO", "Pyramiding": "Membentuk Piramid", "Go to Date...": "Masuk ke Tanggal...", "Text Alignment:": "Perataan Teks:", "R_data_mode_realtime_letter": "R", "Extend Lines": "Perpanjang Garis", "Conversion Line_input": "Garis Konversi", "March": "Maret", "Su_day_of_week": "Min", "Exchange": "Bursa", "Arcs": "Busur", "Regression Trend": "Tren Regresi", "Short RoC Length_input": "Panjang RoC Jual", "Symbol Description": "Deskripsi Simbol", "Double EMA_study": "Double EMA", "minute": "menit", "All Indicators And Drawing Tools": "Semua Indikator dan Alat Gambar", "Indicator Last Value": "Nilai Terakhir Indikator", "Sync drawings to all charts": "Sinkronisasi gambar pada semua chart", "Change Average HL value": "Ubah nilai Rata-rata HL", "Stop Color:": "Warna Stop:", "Stay in Drawing Mode": "Tetap Dalam Mode Menggambar", "Bottom Margin": "Marjin Dasar", "Save Chart Layout saves not just some particular chart, it saves all charts for all symbols and intervals which you are modifying while working with this Layout": "Simpan Susunan Chart menyimpan bukan hanya beberapa dari chart tertentu, melainkan semua chart untuk semua simbol dan interval yang telah Anda modifikasi saat mengerjakan Susunan tersebut", "Average True Range_study": "Average True Range", "Max value_input": "Nilai Max", "MA Length_input": "Panjang MA", "Invite-Only Scripts": "Skrip Khusus-Undangan", "in %s_time_range": "dalam%s", "Extend Bottom": "Perpanjang Kebawah", "sym_input": "sim", "DI Length_input": "Panjang DI", "Rome": "Roma", "Scale": "Skala", "Periods_input": "Periode", "Arrow": "Panah", "Square": "Persegi", "Basis_input": "Basis", "Arrow Mark Down": "Tanda Panah Turun", "lengthStoch_input": "panjangStoch", "Objects Tree": "Pohon Objek", "Remove from favorites": "Hilangkan dari favorit", "Show Symbol Previous Close Value": "Menampakkan Nilai Close Simbol Sebelumnya", "Scale Series Only": "Skalakan Seri Saja", "Source text color": "Warna teks sumber", "Simple": "Sederhana", "Report a data issue": "Laporkan masalah data", "Arnaud Legoux Moving Average_study": "Arnaud Legoux Moving Average", "Smoothed Moving Average_study": "Smoothed Moving Average", "Lower Band_input": "Pita Bawah", "Verify Price for Limit Orders": "Verifikasi Harga untuk Limit Order", "VI +_input": "VI +", "Line Width": "Tebal Garis", "Always Show Stats": "Selalu Tampilkan Statistik", "Down Wave 4": "Gelombang Turun 4", "ROCLen2_input": "PjgROC2", "Simple ma(signal line)_input": "Simple ma(garis sinyal)", "Change Interval...": "Ubah Interval...", "Public Library": "Kepustakaan Publik", " Do you really want to delete Drawing Template '{0}' ?": " Apakah benar anda ingin menghapus Template Gambar '{0}'?", "Sat": "Sab", "week": "minggu", "CRSI_study": "CRSI", "Close message": "Tutup pesan", "Base currency": "Mata Uang dasar", "Show Drawings Toolbar": "Perlihatkan Bilah Alat Gambar", "Chaikin Oscillator_study": "Osilator Chaikin", "Price Source": "Sumber Harga", "Market Open": "Pasar Buka", "Color Theme": "Warna Tema", "Projection up bars": "Proyeksi bar naik", "Awesome Oscillator_study": "Awesome Oscillator", "Bollinger Bands Width_input": "Lebar Bollinger Bands", "Q_input": "Q", "long_input": "beli", "Error occured while publishing": "Terjadi kesalahan saat mempublikasikan", "Color 1_input": "Warna 1", "Moving Average Weighted_study": "Moving Average Weighted", "Save": "Simpan", "Type": "Ketik", "Wick": "Sumbu", "Accumulative Swing Index_study": "Accumulative Swing Index", "Load Chart Layout": "Muat Susunan Chart", "Show Values": "Perlihatkan Nilai", "Fisher_input": "Fisher", "Bollinger Bands Width_study": "Lebar Bollinger Bands", "This chart layout has more than 1000 drawings, which is a lot! This may negatively affect performance, storage and publishing. We recommend to remove some drawings to avoid potential performance issues.": "Tata letak chart ini berisi lebih dari 1000 gambar, jumlah yang besar! Hal ini dapat memberi pengaruh buruk pada kinerja, penyimpanan dan publikasi. Kami menganjurkan agar beberapa gambar dihilangkan untuk menghindari potensi masalah pada kinerja.", "Left End": "Ujung Kiri", "Volume Oscillator_study": "Osilator Volume", "Always Visible": "Selalu Terlihat", "S_data_mode_snapshot_letter": "S", "Flag": "Bendera", "Change Minutes To": "Ubah Menit Menjadi", "Earnings breaks": "Jeda perolehan", "Change Minutes From": "Ubah Menit Dari", "Do not ask again": "Jangan tanyakan lagi", "MTPredictor": "PemrakiraMT", "Displacement_input": "Perpindahan", "smalen4_input": "pjgsma4", "CCI_input": "CCI", "Upper Deviation_input": "Deviasi Atas", "XABCD Pattern": "Pola XABCD", "Copied to clipboard": "Disalin ke clipboard", "Flipped": "Terbalik", "DEMA_input": "DEMA", "Move_input": "Pindah", "NV_input": "NV", "Choppiness Index_study": "Choppiness Index", "Study Template '{0}' already exists. Do you really want to replace it?": "Template Studi '{0}' sudah ada. Apakah anda ingin menggantinya?", "Merge Down": "Gabung ke Bawah", " per contract": " per kontrak", "Overlay the main chart": "Menimpa chart utama", "Screen (No Scale)": "Layar (Tanpa Skala)", "Delete": "Hapus", "Save Indicator Template As": "Simpan Template Indikator Sebagai", "Length MA_input": "Panjang MA", "percent_input": "persen", "{0} copy": "{0} salin", "Avg HL in minticks": "Rata-Rata HL dalam minticks", "Accumulation/Distribution_input": "Akumulasi/Distribusi", "Sync": "Sinkronisasi", "C_in_legend": "C", "Weeks_interval": "Minggu", "smoothK_input": "smoothK", "Percentage_scale_menu": "Persentase", "Change Extended Hours": "Ubah Jam Perpanjangan", "MOM_input": "MOM", "h_interval_short": "h", "Change Interval": "Ubah Interval", "Change area background": "Ubah latar belakang area", "top": "teratas", "Custom color...": "Warna custom...", "Send Backward": "Kirim Mundur", "Mexico City": "Kota Meksiko", "TRIX_input": "TRIX", "Show Price Range": "Perlihatkan Rentang Harga", "Delete chart layout": "Hapus susunan chart", "ASI_study": "ASI", "Notification": "Pemberitahuan", "Fri": "Jum", "just now": "baru saja", "Forecast": "Prakiraan", "Fraction part is invalid.": "Bagian fraksi tidak valid.", "Connecting": "Menyambungkan", "Signal_input": "Sinyal", "Histogram_input": "Histogram", "The Extended Trading Hours feature is available only for intraday charts": "Fitur Perpanjangan Jam Trading hanya tersedia untuk chart intraday", "Stop syncing": "Stop sinkronisasi", "StdDev_input": "StdDev", "EMA Cross_study": "EMA Cross", "Conversion Line Periods_input": "Periode Garis Konversi", "Oversold_input": "Oversold", "My Scripts": "Skrip Saya", "Monday": "Senin", "Add Symbol_compare_or_add_symbol_dialog": "Tambah Simbol", "Williams %R_study": "Williams %R", "Symbol": "Simbol", "a month": "satu bulan", "Precision": "Presisi", "depth_input": "kedalaman", "Go to": "Masuk ke", "Please enter chart layout name": "Silakan masukkan nama susunan chart", "VWAP_study": "VWAP", "Arrow Down": "Panah Turun", "Date": "Tanggal", "Apply WPT Up Wave": "Terapkan WPT Up Wave", "__dayName__ __specialSymbolOpen__at__specialSymbolClose__ __dayTime__": "__dayName__ __specialSymbolOpen__pada__specialSymbolClose__ __dayTime__", "Toggle Maximize Pane": "Toggle Memperbesar Pane", "Search": "Cari", "Zig Zag_study": "Zig Zag", "Actual": "Aktual", "SUCCESS": "SUKSES", "Long period_input": "Periode beli", "length_input": "panjang", "roclen4_input": "pjgroc4", "Price Line": "Garis Harga", "Area With Breaks": "Area Dengan Jeda", "Median_input": "Median", "Stop Level. Ticks:": "Level Stop. Ticks:", "Circle Lines": "Garis Lingkaran", "Visual Order": "Urutan Visual", "__specialSymbolOpen__Yesterday at__specialSymbolClose__ __dayTime__": "__specialSymbolOpen__Kemarin pada__specialSymbolClose__ __dayTime__", "Stop Background Color": "Warna Latar Stop", "Slow length_input": "Panjang lambat", "Sector": "Sektor", "powered by TradingView": "ditenagai oleh TradingView", "Text:": "Teks:", "Marker Color": "Warna Penanda", "TEMA_input": "TEMA", "Min Move 2": "Pergerakan Min 2", "Extend Left End": "Perpanjang Ujung Kiri", "Projection down bars": "Proyeksi bar turun", "Advance/Decline_study": "Advance/Decline", "Any Number": "Angka Bebas", "Flag Mark": "Tanda Bendera", "Drawings": "Gambar", "Cancel": "Batal", "Compare or Add Symbol": "Bandingkan atau Tambahkan Simbol", "Redo": "Ulangi", "Hide Drawings Toolbar": "Sembunyikan Bilah Alat Gambar", "Ultimate Oscillator_study": "Osilator Ultimate", "Vert Grid Lines": "Garis Alur Vertikal", "Growing_input": "Berkembang", "Angle": "Sudut", "Plot_input": "Plot", "Color 8_input": "Warna 8", "Indicators, Fundamentals, Economy and Add-ons": "Indikator, Fundamental, Ekonomi dan Add-ons", "h_dates": "h", "ROC Length_input": "Panjang ROC", "roclen3_input": "pjgroc3", "Overbought_input": "Overbought", "Extend Top": "Perpanjang Keatas", "X_input": "X", "No study templates saved": "Tidak ada template studi tersimpan", "Trend Line": "Garis Tren", "TimeZone": "ZonaWaktu", "Your chart is being saved, please wait a moment before you leave this page.": "Chart anda sedang disimpan, mohon menunggu beberapa saat sebelum meninggalkan halaman ini.", "Percentage": "Persentase", "Tu_day_of_week": "Sel", "RSI Length_input": "Panjang RSI", "Triangle": "Segitiga", "Line With Breaks": "Garis Dengan Jeda", "Period_input": "Periode", "Watermark": "Tanda air", "Trigger_input": "Pemicu", "SigLen_input": "PjgSig", "Extend Right": "Perpanjang Kanan", "Color 2_input": "Warna 2", "Show Prices": "Perlihatkan Harga", "Unlock": "Buka Kunci", "Copy": "Salin", "Arc": "Busur", "January": "Januari", "Arrow Mark Right": "Tanda Panah Kanan", "Extend Alert Line": "Perpanjang Garis Peringatan", "Background color 1": "Warna Latar 1", "RSI Source_input": "Sumber RSI", "Close Position": "Tutup Posisi", "Stop syncing drawing": "Stop sinkronisasi gambar", "Visible on Mouse Over": "Terlihat saat Mouse Diatas", "MA/EMA Cross_study": "MA/EMA Cross", "Thu": "Kamis", "Vortex Indicator_study": "Indikator Vortex", "view-only chart by {user}": "grafik yang hanya dapat dilihat oleh {user}", "ROCLen1_input": "PjgROC1", "M_interval_short": "M", "Chaikin Oscillator_input": "Osilator Chaikin", "Price Levels": "Level Harga", "Show Splits": "Perlihatkan Pemisahan", "Zero Line_input": "Garis Nol", "Replay Mode": "Mode Putar Ulang", "__specialSymbolOpen__Today at__specialSymbolClose__ __dayTime__": "__specialSymbolOpen__Hari ini pada__specialSymbolClose__ __dayTime__", "Increment_input": "Kenaikan", "Days_interval": "Hari", "Show Right Scale": "Perlihatkan Skala Kanan", "Show Alert Labels": "Perlihatkan Label Peringatan", "Historical Volatility_study": "Historical Volatility", "Lock": "Kunci", "length14_input": "panjang14", "ext": "perpanjangan", "Date and Price Range": "Jarak Tanggal dan Harga", "Reconnect": "Menyambungkan Kembali", "Lock/Unlock": "Kunci/Buka Kunci", "Price Channel_study": "Kanal Harga", "Label Down": "Label Turun", "Saturday": "Sabtu", "Symbol Last Value": "Nilai Terakhir Simbol", "Above Bar": "Bar Diatas", "Studies": "Studi", "Color 0_input": "Warna 0", "Add Symbol": "Tambah Simbol", "maximum_input": "maksimum", "Wed": "Rab", "D_data_mode_delayed_letter": "D", "Sigma_input": "Sigma", "VWMA_study": "VWMA", "fastLength_input": "Panjangcepat", "Time Levels": "Level Waktu", "Width": "Lebar", "Loading": "Memuat", "Use Lower Deviation_input": "Gunakan Deviasi Bawah", "Up Wave 3": "Naik Gelombang 3", "Parallel Channel": "Saluran Paralel", "Time Cycles": "Siklus Waktu", "Second fraction part is invalid.": "Bagian pecahan kedua tidak valid.", "Divisor_input": "Pembagi", "Down Wave 1 or A": "Gelombang Turun 1 atau A", "ROC_input": "ROC", "Dec": "Des", "Ray": "Sinar", "Extend": "Perpanjang", "length7_input": "panjang7", "Bottom": "Dasar", "Apply Elliot Wave Major": "Terapkan Elliot Wave Mayor", "Undo": "Kembalikan", "Window Size_input": "Besar Jendela", "Mon": "Sen", "Right Labels": "Label Kanan", "Long Length_input": "Panjang Beli", "True Strength Indicator_study": "Indikator True Strength", "%R_input": "%R", "There are no saved charts": "Tidak ada chart yang tersimpan", "Instrument is not allowed": "Instrumen ini tidak diijinkan", "bars_margin": "bars", "Decimal Places": "Tempat Desimal", "Show Indicator Last Value": "Perlihatkan Nilai Terakhir Indikator", "Initial capital": "Modal awal", "Show Angle": "Perlihatkan Sudut", "Mass Index_study": "Mass Index", "More features on tradingview.com": "Lebih banyak lagi fitur di tradingview.com", "Objects Tree...": "Pohon Objek...", "Remove Drawing Tools & Indicators": "Hilangkan Peralatan Gambar & Indikator", "Length1_input": "Panjang1", "Always Invisible": "Selalu Tidak Terlihat", "Circle": "Lingkaran", "Days": "Hari", "x_input": "x", "Save As...": "Simpan Sebagai...", "Tehran": "Teheran", "Parabolic SAR_study": "Parabolik SAR", "Any Symbol": "Simbol Bebas", "Variance": "Varian", "Stats Text Color": "Warna Teks Statistik", "Minutes": "Menit", "Williams Alligator_study": "Williams Alligator", "Projection": "Proyeksi", "Jaw_input": "Jaw", "Right": "Kanan", "Help": "Bantuan", "Coppock Curve_study": "Kurva Coppock", "Reversal Amount": "Jumlah Pembalikan", "Reset Chart": "Atur Ulang Chart", "Sunday": "Minggu", "Left Axis": "Poros Kiri", "Color based on previous close_input": "Warna berdasarkan close sebelumnya", "YES": "YA", "longlen_input": "pjgbeli", "Moving Average Exponential_study": "Moving Average Exponential", "Source border color": "Warna batas sumber", "Redo {0}": "Ulangi {0}", "Cypher Pattern": "Pola Cypher", "s_dates": "s", "Open Interval Dialog": "Buka Dialog Interval", "Triangle Pattern": "Pola Segitiga", "Balance of Power_study": "Balance of Power", "EOM_input": "EOM", "Shapes_input": "Bentuk", "Apply Manual Risk/Reward": "Terapkan Risiko/Perolehan Manual", "Market Closed": "Pasar Tutup", "Indicators": "Indikator", "q_input": "q", "You are notified": "Anda telah diberitahu", "Font Icons": "Ikon Font", "%D_input": "%D", "Border Color": "Warna Batas", "Offset_input": "Offset", "Risk": "Risiko", "Price Scale": "Skala Harga", "HV_input": "HV", "Seconds": "Detik", "Start_input": "Start", "Oct": "Okt", "Hours": "Jam", "Send to Back": "Kirim ke Belakang", "Color 4_input": "Warna 4", "Angles": "Sudut", "Prices": "Harga", "Hollow Candles": "Candle Kosong", "July": "Juli", "Create Horizontal Line": "Buat Garis Horisontal", "Minute": "Menit", "Cycle": "Siklus", "ADX Smoothing_input": "ADX Smoothing", "One color for all lines": "Satu warna untuk semua garis", "m_dates": "m", "Settings": "Pengaturan", "Candles": "Candle", "We_day_of_week": "Rab", "Width (% of the Box)": "Lebar (% dari Kotak)", "%d minute": "%d menit", "Go to...": "Masuk ke...", "Pip Size": "Ukuran Pip", "Show Countdown": "Perlihatkan Hitung Mundur", "Show alert label line": "Perlihatkan garis label peringatan", "MA_input": "MA", "Length2_input": "Panjang2", "not authorized": "tidak berwenang", "Session Volume_study": "Volume Sesi", "Image URL": "URL Gambar", "Submicro": "Submikro", "SMI Ergodic Oscillator_input": "Osilator SMI Ergodic", "Show Objects Tree": "Perlihatkan Pohon Objek", "Primary": "Primer", "Price:": "Harga:", "Bring to Front": "Bawa ke Depan", "Brush": "Sikat", "Not Now": "Tidak Sekarang", "Yes": "Ya", "C_data_mode_connecting_letter": "C", "SMALen4_input": "PjgSMA4", "Apply Default Drawing Template": "Terapkan Template Gambar Bawaan", "Compact": "Kompak", "Save As Default": "Simpan Sebagai Bawaan", "Target border color": "Warna batas Target", "Invalid Symbol": "Simbol Tidak Valid", "yay Color 1_input": "Warna yay 1", "Quandl is a huge financial database that we have connected to TradingView. Most of its data is EOD and is not updated in real-time, however the information may be extremely useful for fundamental analysis.": "Quandl adalah database finansial besar yang telah kami hubungkan dengan TradingView. Sebagian besar datanya adalah EOD dan tidak diperbaharui secara real-time, namun informasi yang tersedia dapat sangat berguna untuk melakukan analisis fundamental.", "Hide Marks On Bars": "Sembunyikan Tanda-Tanda pada Bar", "Cancel Order": "Batalkan Order", "Hide All Drawing Tools": "Sembunyikan Semua Alat Gambar", "WMA Length_input": "Panjang WMA", "Show Dividends on Chart": "Perlihatkan Dividen pada Chart", "Show Executions": "Perlihatkan Eksekusi", "Borders": "Batas-batas", "Remove Indicators": "Hilangkan Indikator", "loading...": "memuat...", "Closed_line_tool_position": "Tutup", "Rectangle": "Persegi", "Change Resolution": "Ubah Resolusi", "Indicator Arguments": "Argumentasi Indikator", "Chande Momentum Oscillator_study": "Osilator Chande Momentum", "Degree": "Derajat", "Line - HL/2": "Garis - HL/2", "Up Wave 4": "Naik Gelombang 4", "Least Squares Moving Average_study": "Least Squares Moving Average", "Change Variance value": "Ubah nilai Varian", "powered by ": "ditenagai oleh ", "Source_input": "Sumber", "Change Seconds To": "Ubah Detik Menjadi", "%K_input": "%K", "Scales Text": "Teks Skala", "Please enter template name": "Silakan masukkan nama template", "Symbol Name": "Nama Simbol", "Events Breaks": "Jeda Peristiwa", "Study Templates": "Template Studi", "Months": "Bulan", "Symbol Info...": "Info simbol...", "len_input": "pjg", "Read our blog for more info!": "Baca blog kami untuk informasi lebih banyak!", "Measure (Shift + Click on the chart)": "Pengukur (Shift + Klik pada chart)", "Override Min Tick": "Menimpa Tick Min", "Show Positions": "Perlihatkan Posisi", "Add To Text Notes": "Tambah Kedalam Catatan Teks", "Long length_input": "Panjang beli", "Multiplier_input": "Pengali", "Risk/Reward": "Risiko/Perolehan", "Base Line Periods_input": "Periode Garis Dasar", "Show Dividends": "Perlihatkan Dividen", "Relative Strength Index_study": "Relative Strength Index", "Top Labels": "Label Teratas", "Show Earnings": "Perlihatkan Perolehan", "Line - Open": "Garis - Open", "Track time": "Waktu penelusuran", "Text Wrap": "Pembungkus Teks", "Reverse Position": "Membalik Posisi", "Economy & Symbols": "Ekonomi & Simbol", "DPO_input": "DPO", "Th_day_of_week": "Kam", "Slash_hotkey": "Setrip", "No symbols matched your criteria": "Tidak ada simbol yang cocok dengan kriteria Anda", "Icon": "Ikon", "lengthRSI_input": "panjangRSI", "Teeth Length_input": "Panjang Teeth", "Indicator_input": "Indikator", "Box size assignment method": "Metode penempatan ukuran kotak", "Athens": "Athena", "Timezone/Sessions Properties...": "Properti Zona Waktu/Sesi", "Content": "Konten", "middle": "pertengahan", "Lock Cursor In Time": "Kunci Kursor Sesuai Waktu", "Intermediate": "Menengah", "Eraser": "Penghapus", "Relative Vigor Index_study": "Relative Vigor Index", "Envelope_study": "Envelope", "Pre Market": "Sebelum Pasar", "Horizontal Line": "Garis Horisontal", "O_in_legend": "O", "Confirmation": "Konfirmasi", "HL Bars": "Bar HL", "Lines:": "Garis:", "Hide Favorite Drawings Toolbar": "Sembunyikan Toolbar Alat Gambar Favorit", "useTrueRange_input": "gunakanTrueRange", "Profit Level. Ticks:": "Level Keuntungan. Tanda:", "Show Date/Time Range": "Perlihatkan Rentang Tanggal/Waktu", "%d year": "%d tahun", "Favorites": "Favorit", "Horz Grid Lines": "Garis Pola Horz", "-DI_input": "-DI", "Price Range": "Rentang Harga", "day": "hari", "deviation_input": "deviasi", "Account Size": "Besar Akun", "Value_input": "Nilai", "Time Interval": "Interval Waktu", "Success text color": "Warna teks Sukses", "ADX smoothing_input": "ADX smoothing", "%d hour": "%d jam", "Order size": "Besar order", "Drawing Tools": "Alat Gambar", "Save Drawing Template As": "Simpan Template Gambar Sebagai", "Traditional": "Tradisional", "Chaikin Money Flow_study": "Chaikin Money Flow", "Ease Of Movement_study": "Ease Of Movement", "Defaults": "Bawaan", "Interval is not applicable": "Interval tidak dapat diterapkan", "short_input": "jual", "Visual settings...": "Pengaturan Visual...", "RSI_input": "RSI", "Chatham Islands": "Kepulauan Chatham", "Detrended Price Oscillator_input": "Osilator Harga Detrended", "Mo_day_of_week": "Sen", "center": "pusat", "Vertical Line": "Garis Vertikal", "Show Splits on Chart": "Perlihatkan Pemisahan pada Chart", "Sorry, the Copy Link button doesn't work in your browser. Please select the link and copy it manually.": "Maaf, tombol Salin Link tidak berfungsi di browser anda. Silakan sorot link lalu salin secara manual.", "Levels Line": "Garis Level", "Events & Alerts": "Peristiwa & Peringatan", "May": "Mei", "ROCLen4_input": "PjgROC4", "Aroon Down_input": "Aroon Turun", "Add To Watchlist": "Tambah Ke Daftar Pengamatan", "Price": "Harga", "left": "kiri", "Lock scale": "Kunci skala", "Limit_input": "Limit", "Change Days To": "Ubah Hari Menjadi", "Price Oscillator_study": "Osilator Harga", "smalen1_input": "pjgsma1", "Drawing Template '{0}' already exists. Do you really want to replace it?": "Template Gambar '{0}' sudah ada. Apakah benar anda ingin menggantinya?", "Show Middle Point": "Tampilkan Titik Tengah", "KST_input": "KST", "Extend Right End": "Perpanjang Ujung Kanan", "Fans": "Penggemar", "Line - Low": "Garis - Low", "Price_input": "Harga", "Moving Average_study": "Moving Average", "Weeks": "Minggu", "McGinley Dynamic_study": "McGinley Dynamic", "Relative Volatility Index_study": "Relative Volatility Index", "PVT_input": "PVT", "Show Hidden Tools": "Perlihatkan Alat Tersembunyi", "Hull Moving Average_study": "Hull Moving Average", "Symbol Prev. Close Value": "Nilai Close Simbol Sebelumnya", "{0} chart by TradingView": "{0} chart oleh TradingView", "Bring Forward": "Bawa Maju", "Remove Drawing Tools": "Hilangkan Peralatan Gambar", "Friday": "Jumat", "Zero_input": "Nol", "Company Comparison": "Perbandingan Perusahaan", "Stochastic Length_input": "Panjang Stochastic", "mult_input": "mult", "URL cannot be received": "URL tidak dapat diterima", "Success back color": "Warna belakang Sukses", "E_data_mode_end_of_day_letter": "E", "Trend-Based Fib Extension": "Fib Extension Berdasarkan Tren", "Top": "Puncak", "Double Curve": "Kurva Ganda", "Stochastic RSI_study": "Stochastic RSI", "Horizontal Ray": "Sinar Horisontal", "Symbol Labels": "Label Simbol", "Script Editor...": "Editor Skrip...", "Are you sure?": "Apakah anda yakin?", "Trades on Chart": "Trade pada Chart", "Listed Exchange": "Bursa Terdaftar", "Error:": "Kesalahan:", "Fullscreen mode": "Mode layar penuh", "Add Text Note For {0}": "Tambah Catatan Teks Untuk {0}", "K_input": "K", "Do you really want to delete Drawing Template '{0}' ?": "Apakah benar anda ingin menghapus Template Gambar '{0}' ?", "ROCLen3_input": "PjgROC3", "Micro": "Mikro", "Text Color": "Warna Teks", "Rename Chart Layout": "Ganti Nama Susunan Chart", "Background color 2": "Warna latar 2", "Drawings Toolbar": "Toolbar Alat Gambar", "Source Code...": "Kode Sumber...", "CHOP_input": "CHOP", "Apply Defaults": "Terapkan Pengaturan Bawaan", "% of equity": "% dari ekuitas", "Extended Alert Line": "Garis Peringatan yang Diperpanjang", "Note": "Catatan", "Moving Average Channel_study": "Kanal Moving Average", "like": "suka", "Show": "Perlihatkan", "{0} bars": "{0} bar", "Lower_input": "Bawah", "Created ": "Sudah Dibuat ", "Warning": "Peringatan", "Elder's Force Index_study": "Elder's Force Index", "Show Earnings on Chart": "Perlihatkan Perolehan pada Chart", "ATR_input": "ATR", "Stochastic_study": "Stochastic", "Bollinger Bands %B_study": "Bollinger Bands %B", "Time Zone": "Zona Waktu", "right": "kanan", "%d month": "%d bulan", "Wrong value": "Nilai salah", "Upper Band_input": "Pita Atas", "Sun": "Min", "start_input": "mulai", "No indicators matched your criteria.": "Tidak ada indikator yang cocok dengan kriteria anda.", "Commission": "Komisi", "Down Color": "Warna Turun", "Short length_input": "Panjang jual", "Submillennium": "Submilenium", "Technical Analysis": "Analisis Teknikal", "Show Text": "Perlihatkan Teks", "Channel": "Saluran", "FXCM CFD data is available only to FXCM account holders": "Data CFD FXCM hanya tersedia bagi pemegang akun FXCM", "Lagging Span 2 Periods_input": "Periode Lagging Span 2", "Connecting Line": "Garis Penghubung", "bottom": "dasar", "Teeth_input": "Teeth", "Sig_input": "Sig", "Open Manage Drawings": "Buka Pengaturan Gambar", "Save New Chart Layout": "Simpan Susunan Chart Baru", "Save Drawing Template As...": "Simpan Template Gambar Sebagai...", "Minutes_interval": "Menit", "Up Wave 2 or B": "Naik Gelombang 2 atau B", "Columns": "Kolom", "Directional Movement_study": "Directional Movement", "roclen2_input": "pjgroc2", "Apply WPT Down Wave": "Terapkan WPT Down Wave", "Not applicable": "Tidak dapat diterapkan", "Bollinger Bands %B_input": "Bollinger Bands %B", "Default": "Bawaan", "Template name": "Nama template", "Indicator Values": "Nilai Indikator", "Lips Length_input": "Panjang Lips", "Use Upper Deviation_input": "Gunakan Deviasi Atas", "L_in_legend": "L", "Remove custom interval": "Hilangkan interval custom", "shortlen_input": "pjgjual", "Quotes are delayed by {0} min": "Kutipan tertunda selama {0} menit", "Hide Events on Chart": "Sembunyikan Event di Chart", "Cash": "Uang", "Profit Background Color": "Warna Latar Belakang Keuntungan", "Bar's Style": "Model Bar", "Exponential_input": "Eksponensial", "Down Wave 5": "Gelombang Turun 5", "Previous": "Sebelumnya", "Stay In Drawing Mode": "Tetap Dalam Mode Menggambar", "Comment": "Komentar", "Connors RSI_study": "Connors RSI", "Bars": "Bar", "Show Labels": "Perlihatkan Label", "Flat Top/Bottom": "Puncak/Dasar Datar", "Symbol Type": "Tipe Simbol", "December": "Desember", "Lock drawings": "Kunci gambar", "Border color": "Warna batas", "Change Seconds From": "Ubah Detik Dari", "Left Labels": "Label Kiri", "Insert Indicator...": "Masukkan Indikator...", "ADR_B_input": "ADR_B", "Paste %s": "Pasang %s", "Change Symbol...": "Ubah Simbol...", "Timezone": "Zona waktu", "Invite-only script. You have been granted access.": "Skrip khusus-undangan. Akses telah diberikan kepada anda.", "Color 6_input": "Warna 6", "ATR Length": "Panjang ATR", "{0} financials by TradingView": "{0} finansial oleh TradingView", "Extend Lines Left": "Perpanjang Garis Kiri", "Source back color": "Warna belakang sumber", "Transparency": "Transparansi", "No": "Tidak", "June": "Juni", "Cyclic Lines": "Garis Putaran", "length28_input": "panjang28", "ABCD Pattern": "Pola ABCD", "When selecting this checkbox the study template will set \"__interval__\" interval on a chart": "Jika anda memilih checkbox ini maka template studi akan mengatur interval \"__interval__\" pada chart", "Add": "Tambah", "OC Bars": "Bar OC", "Millennium": "Milenium", "On Balance Volume_study": "On Balance Volume", "Apply Indicator on {0} ...": "Terapkan Indikator pada {0} ...", "NEW": "BARU", "Chart Layout Name": "Nama Susunan Chart", "Up bars": "Bar naik", "Hull MA_input": "Hull MA", "Lock Scale": "Kunci Skala", "distance: {0}": "jarak: {0}", "Extended": "Diperpanjang", "NO": "TIDAK", "Top Margin": "Marjin Teratas", "Up fractals_input": "Fraktal naik", "Insert Drawing Tool": "Masukkan Alat Gambar", "OHLC Values": "Nilai OHLC", "Correlation_input": "Korelasi", "Session Breaks": "Jeda Sesi", "Add {0} To Watchlist": "Tambah {0} ke Daftar Pengamatan", "Anchored Note": "Catatan Dasar", "lipsLength_input": "panjanglips", "Apply Indicator on {0}": "Terapkan Indikator pada {0}", "UpDown Length_input": "Panjang UpDown", "Price Label": "Label Harga", "Balloon": "Balon", "Background Color": "Warna Latar", "an hour": "satu jam", "Right Axis": "Poros Kanan", "D_data_mode_delayed_streaming_letter": "D", "VI -_input": "VI -", "slowLength_input": "Panjanglambat", "Click to set a point": "Klik untuk menentukan sebuah poin", "Save Indicator Template As...": "Simpan Template Indikator Sebagai...", "Arrow Up": "Panah Naik", "Indicator Titles": "Judul Indikator", "Failure text color": "Kegagalan warna teks", "Sa_day_of_week": "Sab", "Net Volume_study": "Volume Bersih", "Error": "Kesalahan", "Edit Position": "Edit Posisi", "RVI_input": "RVI", "Centered_input": "Tengah", "Recalculate On Every Tick": "Hitung Kembali Pada Setiap Tick", "Left": "Kiri", "Simple ma(oscillator)_input": "Simple ma(osilator)", "Compare": "Bandingkan", "Fisher Transform_study": "Fisher Transform", "Show Orders": "Perlihatkan Order", "Zoom In": "Perbesar", "Length EMA_input": "Panjang EMA", "Enter a new chart layout name": "Masukkan nama susunan chart baru", "Signal Length_input": "Panjang Sinyal", "FAILURE": "KEGAGALAN", "Point Value": "Nilai Poin", "D_interval_short": "D", "MA with EMA Cross_study": "MA dengan EMA Cross", "Label Up": "Label Naik", "This drawing is used in alert. If you remove the drawing, the alert will be also removed. Do you want to remove the drawing anyway?": "Gambar ini digunakan dalam peringatan. Jika Anda menghilangkan gambar, peringatan juga akan hilang. Apakah Anda tetap ingin menghilangkan gambar ini?", "ParabolicSAR_input": "ParabolikSAR", "Log Scale_scale_menu": "Skala Log", "MACD_input": "MACD", "Do not show this message again": "Jangan tampilkan pesan ini lagi", "No Overlapping Labels": "Label Tertumpuk Tidak Diperbolehkan", "Arrow Mark Left": "Tanda Panah Kiri", "Down Wave 2 or B": "Gelombang Turun 2 atau B", "Line - Close": "Garis - Close", "Confirm Inputs": "Konfirmasi Input", "Open_line_tool_position": "Open", "Lagging Span_input": "Lagging Span", "Thursday": "Kamis", "Triple EMA_study": "Triple EMA", "Error while trying to create snapshot.": "Terjadi kesalahan saat akan membuat cuplikan.", "Label Background": "Latar Belakang Label", "Templates": "Template", "Please report the issue or click Reconnect.": "Silakan melaporkan permasalahan atau klik Menyambung Kembali", "1. Slide your finger to select location for first anchor
    2. Tap anywhere to place the first anchor": "1. Geser jari Anda untuk memilih lokasi sumbu pertama
    2. Ketuk di sembarang tempat untuk menempatkan sumbu pertama", "Signal Labels": "Label Sinyal", "Delete Text Note": "Hapus Catatan Teks", "compiling...": "menggabungkan...", "Detrended Price Oscillator_study": "Osilator Detrended Price", "Color 5_input": "Warna 5", "Fixed Range_study": "Rentang Tetap", "Up Wave 1 or A": "Naik Gelombang 1 atau A", "Scale Price Chart Only": "Skalakan Chart Harga Saja", "Right End": "Ujung Kanan", "auto_scale": "auto", "Short period_input": "Periode jual", "Background": "Latar belakang", "Up Color": "Warna Naik", "Apply Elliot Wave Intermediate": "Terapkan Elliot Wave Menengah", "VWMA_input": "VWMA", "Lower Deviation_input": "Deviasi Bawah", "Save Interval": "Simpan Interval", "February": "Februari", "Reverse": "Membalik", "Oops, something went wrong": "Oops, ada permasalahan", "Add to favorites": "Tambah ke daftar favorit", "Median": "Medium", "ADX_input": "ADX", "Remove": "Hilangkan", "Wednesday": "Rabu", "Arrow Mark Up": "Tanda Panah Naik", "Active Symbol": "Simbol Aktif", "Extended Hours": "Jam Perpanjangan", "Crosses_input": "Persilangan", "Middle_input": "Tengah", "Sync drawing to all charts": "Sinkronisasi gambar pada semua chart", "LowerLimit_input": "Limit Bawah", "Know Sure Thing_study": "Know Sure Thing", "Copy Chart Layout": "Salin Susunan Chart", "Compare...": "Bandingkan...", "1. Slide your finger to select location for next anchor
    2. Tap anywhere to place the next anchor": "1. Geser jari Anda untuk memilih lokasi sumbu berikutnya
    2. Ketuk di sembarang tempat untuk menempatkan sumbu berikutnya", "Text Notes are available only on chart page. Please open a chart and then try again.": "Catatan Teks hanya tersedia di halaman chart. Silakan buka sebuah chart kemudian coba kembali.", "Color": "Warna", "Aroon Up_input": "Aroon Naik", "Singapore": "Singapura", "Scales Lines": "Garis Skala", "Type the interval number for munute charts (i.e. 5 if it is going to be a five minute chart). Or number plus letter for H (Hourly), D (Daily), W (Weekly), M (Monthly) intervals (i.e. D or 2H)": "Ketik nomor interval untuk chart menit (misalnya 5 jika Anda ingin chart 5 menit). Atau nomor ditambah huruf untuk H (Jam), D (Hari), W (Minggu), M (Bulan) interval (misalnya D atau 2H)", "HLC Bars": "Bar HLC", "Up Wave C": "Naik Gelombang C", "Show Distance": "Perlihatkan Jarak", "Risk/Reward Ratio: {0}": "Rasio Risiko/Perolehan: {0}", "Restore Size": "Kembalikan Ukuran", "Williams Fractal_study": "Williams Fractal", "Merge Up": "Gabung ke Atas", "Right Margin": "Marjin Kanan", "Ellipse": "Elips", "Warsaw": "Warsawa"} \ No newline at end of file diff --git a/charting_library/static/localization/translations/it.json b/charting_library/static/localization/translations/it.json index bed1e4fc..4e48a6b0 100644 --- a/charting_library/static/localization/translations/it.json +++ b/charting_library/static/localization/translations/it.json @@ -1 +1 @@ -{"ticks_slippage ... ticks": "ticks", "Months_interval": "Mesi", "Percent_input": "Percent", "Hide Events on Chart": "Nascondi Eventi sul Grafico", "RSI Length_input": "RSI Length", "month": "mese", "London": "Londra", "roclen1_input": "roclen1", "Unmerge Down": "Separa verso il Basso", "Percents": "Percentuali", "Search Note": "Cerca Note", "Minor": "Minore", "Do you really want to delete Chart Layout '{0}' ?": "Vuoi davvero cancellare il Layout '{0}' ?", "Quotes are delayed by {0} min and updated every 30 seconds": "Quotazioni in ritardo di {0} minuti e aggiornate ogni 30 secondi", "June": "Giugno", "Magnet Mode": "Modalità Magnete", "Grand Supercycle": "Gran Superciclo", "OSC_input": "OSC", "Hide alert label line": "Nascondi linea etichetta alert", "Volume_study": "Volume", "Lips_input": "Lips", "Show real prices on price scale (instead of Heikin-Ashi price)": "Mostra prezzi reali sulla scala del prezzo (al posto del prezzo Heikin-Ashi)", "Histogram": "Istogramma", "Base Line_input": "Base Line", "Step": "Scaletta", "Elliott Wave Circle": "Ciclo delle onde di Elliott", "Fib Time Zone": "Zone Orarie Fib", "SMALen2_input": "SMALen2", "Bollinger Bands_study": "Bande di Bollinger", "Show/Hide": "Mostra/Nascondi", "Upper_input": "Upper", "Sig_input": "Sig", "Move Up": "Muovi in Alto", "Sigma_input": "Sigma", "This indicator cannot be applied to another indicator": "Questo indicatore non può' essere applicato ad un altro indicatore", "Gann Square": "Quadrato Gann", "Count_input": "Count", "Full Circles": "Cerchi Completi", "Industry": "Settore", "SMALen1_input": "SMALen1", "Cross_chart_type": "Croce", "Target Color:": "Colore Target", "a day": "un giorno", "Normal": "Normale", "Accumulation/Distribution_study": "Accumulazione/Distribuzione", "Rate Of Change_study": "Rate Of Change", "Risk/Reward short": "Rischio/Rendimento short", "in_dates": "in", "Color 7_input": "Color 7", "Change Average HL value": "Variazione valori Media HL", "Scales Properties": "Proprietà Scala Assi", "Trend-Based Fib Time": "Tempo Fib Trend-Based", "Remove All Indicators": "Elimina Tutti Gli Indicatori", "Oscillator_input": "Oscillator", "Last Modified": "Ultima modifica", "yay Color 0_input": "yay Color 0", "Labels": "Etichette", "Chande Kroll Stop_study": "Chande Kroll Stop", "Hours_interval": "Ore", "Scale Right": "Scala Destra", "Money Flow_study": "Money Flow", "siglen_input": "siglen", "Indicator Labels": "Etichette Indicatore", "Source Code": "Codice", "__specialSymbolOpen__Tomorrow at__specialSymbolClose__ __dayTime__": "__specialSymbolOpen__Domani a__specialSymbolClose____dayTime__", "Toggle Percentage": "Scala Percentuale", "Remove All Drawing Tools": "Elimina tutti gli Strumenti di disegno", "Remove all line tools for ": "Rimuovi tutti gli strumenti linea per ", "Linear Regression Curve_study": "Linear Regression Curve", "Symbol_input": "Symbol", "Currency": "Valuta", "Upper Deviation_input": "Upper Deviation", "Rename Chart Layout": "Rinomina Configurazione Grafico", "__specialSymbolOpen__Last__specialSymbolClose__ __dayName__ __specialSymbolOpen__at__specialSymbolClose__ __dayTime__": "__specialSymbolOpen__Ultimo__specialSymbolClose____dayName____specialSymbolOpen__a__specialSymbolClose____dayTime__", "Save Chart Layout": "Salva Configurazione Grafico", "Allow up to": "Consentito fino a", "Label": "Etichetta", "second": "secondo", "Any Number": "Qualsiasi Numero", "smoothD_input": "smoothD", "Falling_input": "Falling", "Percentage": "Percentuale", "Donchian Channels_study": "Canali Donchian", "Entry price:": "Prezzo Entrata", "RSI Source_input": "RSI Source", "Head": "Testa", "Toggle Auto Scale": "Scala Automatica", " per contract": " per contratto", "Open Manage Drawings": "Apri Gestisci Disegni", "Ichimoku Cloud_study": "Ichimoku Cloud", "jawLength_input": "jawLength", "Toggle Log Scale": "Scala Logaritmica", "Apply Elliot Wave Major": "Applica un'onda di Elliot Maggiore", "Grid": "Griglia", "Mass Index_study": "Mass Index", "Up Wave 1 or A": "Su Onda 1 o A", "Smoothing_input": "Smoothing", "Color 3_input": "Color 3", "Jaw Length_input": "Jaw Length", "Inside": "Dentro", "Delete all drawing for this symbol": "Cancella tutti i disegni per questo simbolo", "Quotes are delayed by 10 min and updated every 30 seconds": "Le quotazioni sono in ritardo di 10 min e aggiornate ogni 30 secondi", "Keltner Channels_study": "Canali Keltner", "Long Position": "Posizione Long", "Bands style_input": "Bands style", "Undo {0}": "Annulla {0}", "With Markers": "Con Contrassegni", "Momentum_study": "Momentum", "MF_input": "MF", "On Balance Volume_study": "On Balance Volume", "Switch to the next chart": "Vai al prossimo grafico", "Change Hours To": "Cambia ore in", "charts by TradingView": "grafici da TradingView", "Long length_input": "Long length", "Flipped": "Invertito", "Disjoint Angle": "Angolo Disgiunto", "Supermillennium": "Supermillenio", "W_interval_short": "S", "Color 6_input": "Color 6", "Log Scale": "Scala Logaritmica", "Line - High": "Linea - Massimo", "Zurich": "Zurigo", "Equality Line_input": "Equality Line", "Open": "Apertura", "Fib Wedge": "Cuneo Fib", "Line": "Linea", "Session": "Sessione", "Down fractals_input": "Down fractals", "like_plural": "piace", "Fib Retracement": "Ritracciamento Fib", "smalen2_input": "smalen2", "isCentered_input": "isCentered", "Border": "Bordo", "Klinger Oscillator_study": "Klinger Oscillatore", "Absolute": "Assoluto", "Style": "Stile", "Show Left Scale": "Mostra Scala Sinistra", "SMI Ergodic Indicator/Oscillator_study": "SMI Ergodic Indicator/Oscillator", "Aug": "Ago", "Cross": "Croce", "Last available bar": "Ultima barra disponibile", "Manage Drawings": "Gestisci Disegni", "Top": "Alto", "No drawings yet": "Nessun disegno disponibile", "Chande MO_input": "Chande MO", "Copy link": "Copia link", "TRIX_study": "TRIX", "MACD_study": "MACD", "RVGI_input": "RVGI", "Realtime": "Tempo reale", "Last edited ": "Ultima modifica ", "signalLength_input": "signalLength", "Middle_input": "Middle", "Reset Settings": "Reset Impostazioni", "PnF": "PeF", "d_dates": "d", "in %s_time_range": "tra %s", "August": "Agosto", "Recalculate After Order filled": "Ricalcola dopo Attivazione Ordine", "Source_compare": "Source", "Correlation Coefficient_study": "Coefficiente di Correlazione", "Delayed": "Ritardato", "Bottom Labels": "Etichetta in basso", "Text color": "Colore Testo", "Levels": "Livelli", "Short Length_input": "Short Length", "teethLength_input": "teethLength", "Failure text color": "Colore Testo Fallimento", "instrument is not allowed": "strumento non consentito", "FAILURE": "FALLIMENTO", "Open {{symbol}} Text Note": "Apri Nota {{symbol}}", "October": "Ottobre", "Lock All Drawing Tools": "Blocca tutti gli Strumenti di disegno", "Target border color": "Colore bordo Target", "Right End": "Estremita' Destra", "Show Symbol Last Value": "Visualizza Ultimo Valore Simbolo", "Head & Shoulders": "Testa & Spalle", "Do you really want to delete Study Template '{0}' ?": "Vuoi cancellare il Modello di Studio '{0}' ?", "Favorite Drawings Toolbar": "Barra Strumenti Disegno Preferiti", "Properties...": "Proprietà...", "MA Cross_study": "Incrocio Media Mobile", "Trend Angle": "Angolo di Tendenza", "Snapshot": "Istantanea", "Crosshair": "Mirino", "Signal line period_input": "Signal line period", "Timezone/Sessions Properties...": "Proprietà Fuso Orario/Sessioni", "Line Break": "Linea Discontinua", "Quantity": "Quantità", "Price Volume Trend_study": "Prezzo Volume Trend", "Auto Scale": "Scala Automatica", "hour": "ora", "Scales": "Scala Assi", "Delete chart layout": "Cancella configurazione grafico", "Text": "Testo", "F_data_mode_forbidden_letter": "F", "Risk/Reward long": "Rischio/Rendimento long", "Long RoC Length_input": "Long RoC Length", "Length3_input": "Length3", "Cancel Order": "Annulla Ordine", "{0} copy": "{0} copia", "Use one color": "Usa un colore", "Exit Full Screen (ESC)": "Esci da Schermo Intero (ESC)", "Show Bars Range": "Visualizza Estensione Barre", "Show Economic Events on Chart": "Mostra Eventi Economici sul Grafico", "%s ago_time_range": "%s fa", "Zoom In": "Ingrandisci", "Failure back color": "Colore Sfondo Fallimento", "Below Bar": "Sotto la Barra", "Coordinates": "Coordinate", "Time Scale": "Scala Tempo", "

    Only D, W, M intervals are supported for this symbol/exchange. You will be automatically switched to a D interval. Intraday intervals are not available because of exchange policies.

    ": "

    Solo D, W, M periodi sono disponibili per questo simbolo/borsa. Verra' automaticamente visualizzato il periodo Daily. Gli intervalli intraday non sono disponibili a causa della politica esercitata dalla borsa contrattazioni.

    ", "Extend Left": "Estendi a Sinistra", "Date Range": "Range Data", "Min Move": "Mov Min", "Price format is invalid.": "Il formato del prezzo è invalido.", "Show Price": "Visualizza Prezzo", "Level_input": "Level", "Commodity Channel Index_study": "Commodity Channel Index", "Elder's Force Index_input": "Elder's Force Index", "Scales Properties...": "Proprietà Scala Assi...", "Format": "Formato", "Color bars based on previous close": "Colore basato sulla chiusura precedente", "Change band background": "Cambia Sfondo Banda", "Marketplace Add-ons": "Mercatino Add-ons", "Adjust Scale": "Regola Scala", "Anchored Text": "Testo Ancorato", "Edit {0} Alert...": "Modifica l'Alert {0} ....", "Text:": "Testo:", "Aroon_study": "Aroon", "show MA_input": "show MA", "h_dates": "h", "Short Position": "Posizione Short", "Show Labels": "Visualizza Etichette", "Change Interval...": "Modifica Periodo...", "Apply Default": "Usa Predefinito", "SMALen3_input": "SMALen3", "Average Directional Index_study": "Average Directional Index", "Fr_day_of_week": "Ven", "Invite-only script. Contact the author for more information.": "Script invite-only. Contatta l'autore per maggiori informazioni.", "Curve": "Curva", "a year": "un anno", "H_in_legend": "High", "Bars Pattern": "Pattern Barre", "D_input": "D", "Right Labels": "Etichetta Destra", "Change Interval": "Modifica Periodo", "p_input": "p", "Chart layout name": "Nome configurazione grafico", "Fib Circles": "Cerchi Fib", "Apply Manual Decision Point": "Applica un Punto di Decisione Manuale", "Dot": "Punto", "Target back color": "Colore sfondo Target", "All": "Tutto", "Show Positions": "Mostra Posizioni", "orders_up to ... orders": "orders", "Lead 2_input": "Lead 2", "Save image": "Salva immagine", "Fundamentals": "Fondamentali", "Unlock": "Sblocca", "Up Wave 2 or B": "Su Onda 2 o B", "Navigation Buttons": "Controlli Navigazione", "Miniscule": "Minuscolo", "Apply": "Applica", "Precise Labels": "Etichette Precise", "Sine Line": "Curva Sinusoidale", "{0} financials by TradingView": "{0} finanziarie da TradingView", "%d day": "%d giorno", "Hide": "Nascondi", "Bottom": "Fondo", "Target text color": "Colore testo Target", "Scale Left": "Scala Sinistra", "Elliott Wave Subminuette": "Onda Elliott Sottominuetto", "Down Wave C": "GIù Onda C", "Jan": "Gen", "Variance": "Varianza", "Text Alignment:": "Allineamento Testo", "Oct": "Ott", "Apply Elliot Wave Minor": "Applica un'onda di Elliot Minore", "Inputs": "Impostazioni", "Conversion Line_input": "Conversion Line", "March": "Marzo", "Su_day_of_week": "Dom", "Up fractals_input": "Up fractals", "Regression Trend": "Retta Regressione Lineare", "Symbol Description": "Descrizione Simbolo", "Double EMA_study": "Doppia EMA", "minute": "minuto", "Price Oscillator_study": "Oscillatore Prezzo", "Sync drawings to all charts": "Sincronizza disegni su tutti i grafici", "Chop Zone_study": "Chop Zone", "Stop Color:": "Colore Stop", "Stay in Drawing Mode": "Rimani In Modalità Disegno", "Bottom Margin": "Margine Inferiore", "Save Chart Layout saves not just some particular chart, it saves all charts for all symbols and intervals which you are modifying while working with this Layout": "Salva Configurazione Grafico non salva solo un particolare grafico, ma tutti quanti i grafici, di tutti i simboli e periodi, che sono stati modificati nella Configurazione in uso", "Average True Range_study": "Average True Range", "Max value_input": "Max value", "MA Length_input": "MA Length", "Invite-Only Scripts": "Scripts Invite-Only", "Time Interval": "Periodo", "UpperLimit_input": "UpperLimit", "sym_input": "sym", "DI Length_input": "DI Length", "Script Editor...": "Editor di Formule", "Extend Lines": "Estendi Linee", "SMI_input": "SMI", "Change Days To": "Cambia Giorni in", "Square": "Quadrato", "Basis_input": "Basis", "Moving Average_study": "Media Mobile", "lengthStoch_input": "lengthStoch", "Objects Tree": "Albero Oggetti", "Remove from favorites": "Rimuovi dai Preferiti", "Copy": "Copia", "Scale Series Only": "Scala Solo Serie", "Simple": "Semplice", "Report a data issue": "Segnala errore di dati", "Arnaud Legoux Moving Average_study": "Arnaud Legoux Media Mobile", "Technical Analysis": "Analisi Tecnica", "Lower Band_input": "Lower Band", "Verify Price for Limit Orders": "Verifica Prezzo per gli Ordini", "VI +_input": "VI +", "Line Width": "Larghezza Linea", "Lead 1_input": "Lead 1", "Always Show Stats": "Visualizza sempre le statistiche", "Down Wave 4": "GIù Onda 4", "Down Wave 5": "GIù Onda 5", "Simple ma(signal line)_input": "Simple ma(signal line)", "Ray": "Raggio", "Public Library": "Libreria Pubblica", " Do you really want to delete Drawing Template '{0}' ?": " Vuoi cancellare il Modello Disegno '{0}' ?", "Down Wave 3": "GIù Onda 3", "Close message": "Chiudi messaggio", "long_input": "long", "Show Drawings Toolbar": "Mostra Barra Strumenti Disegno", "Chaikin Oscillator_study": "Chaikin Oscillatore", "Balloon": "Fumetto", "Market Open": "Mercato Aperto", "Color Theme": "Tema Colore", "Centered_input": "Centered", "Bollinger Bands Width_input": "Bollinger Bands Width", "Apply Indicator on {0} ...": "Applica Indicatore su {0} ...", "Fib Speed Resistance Arcs": "Archi Speed Resistance Fib", "Error occured while publishing": "Si e' verificato un errore durante la pubblicazione", "Fisher_input": "Fisher", "Color 1_input": "Color 1", "Moving Average Weighted_study": "Moving Average Weighted", "Save": "Salva", "Type": "Tipo", "Chart Layout Name": "Nome Configurazione Grafico", "Short period_input": "Short period", "Load Chart Layout": "Carica Configurazione Grafico", "Show Values": "Mostra Valori", "Fib Speed Resistance Fan": "Ventaglio Speed Resistance Fib", "This chart layout has more than 1000 drawings, which is a lot! This may negatively affect performance, storage and publishing. We recommend to remove some drawings to avoid potential performance issues.": "Questo grafico ha più di 1000 disegni, che sono molti! Tutto ciò potrebbe influenzare negativamente le prestazioni del servizio. Ti consigliamo di rimuovere alcuni dei tuoi disegni per evitare problema di performance.", "Left End": "Estremita' Sinistra", "%d year": "%d anno", "Always Visible": "Sempre Visibile", "S_data_mode_snapshot_letter": "S", "post-market": "post-mercato", "Change Minutes To": "Cambia Minuti a", "Earnings breaks": "Separatori Utili", "Do not ask again": "Non chiedere ancora", "Tue": "Mar", "smalen4_input": "smalen4", "CCI_input": "CCI", "Unmerge Up": "Separa verso l'Alto", "increment_input": "increment", "(H + L)/2": "(H + L + C)/3", "Source Code...": "Codice Sorgente...", "XABCD Pattern": "XABCD Configurazione", "Schiff Pitchfork": "Pitchfork Schiff", "powered by {0}": "fornito da {0}", "DEMA_input": "DEMA", "NV_input": "NV", "Choppiness Index_study": "Choppiness Index", "Study Template '{0}' already exists. Do you really want to replace it?": "Modello di Studio '{0}' gia' esistente. Vuoi sostituirlo?", "Merge Down": "Unisci in Basso", "Studies": "Studi", "eod delayed": "eod differito", "Delete": "Elimina", "percent_input": "percent", "September": "Settembre", "Length_input": "Length", "Avg HL in minticks": "Media HL in miniticks", "Accumulation/Distribution_input": "Accumulation/Distribution", "Sync": "Sincronizza", "C_in_legend": "Close", "Weeks_interval": "Settimane", "smoothK_input": "smoothK", "Percentage_scale_menu": "Percentuale", "Change Extended Hours": "Cambia Orario Prolungato", "MOM_input": "MOM", "h_interval_short": "h", "Rotated Rectangle": "Rettangolo Ruotato", "Modified Schiff": "Schiff Modificato", "Symbol": "Simbolo", "Send Backward": "Sposta Dietro", "Mexico City": "Città del Messico", "TRIX_input": "TRIX", "Show Price Range": "Visualizza Estensione Prezzo", "Elliott Major Retracement": "Ritracciamento Maggiore Elliott", "Notification": "Notifica", "Fri": "Ven", "just now": "ora", "Forecast": "Previsione", "hour_plural": "ore", "Fraction part is invalid.": "La frazione non è valida.", "Connecting": "Connettendo", "Ghost Feed": "Proiezione Fantasma", "Histogram_input": "Histogram", "The Extended Trading Hours feature is available only for intraday charts": "La funzionalità orari di negoziazione estesi è disponibile solo per i grafici intraday", "StdDev_input": "StdDev", "Change Minutes From": "Cambia Minuti Da", "Relative Strength Index_study": "Relative Strength Index", "Interval is not applicable": "Intervallo non valido", "My Scripts": "I miei Scripts", "Monday": "Lunedì", "-DI_input": "-DI", "short_input": "short", "top": "alto", "a month": "un mese", "Precision": "Precisione", "depth_input": "depth", "Please enter chart layout name": "Inserisci nome configurazione grafico", "Offset": "Centratura", "Date": "Data", "Format...": "Formato...", "__dayName__ __specialSymbolOpen__at__specialSymbolClose__ __dayTime__": "__dayName__\n__specialSymbolOpen__a__specialSymbolClose__ __dayTime__", "Toggle Maximize Pane": "Espandi Riquadro", "Periods_input": "Periods", "Zig Zag_study": "Zig Zag", "Actual": "Attuale", "SUCCESS": "SUCCESSO", "Detrended Price Oscillator_input": "Detrended Price Oscillator", "length_input": "length", "Close Position": "Chiudi Posizione", "Price Line": "Linea Prezzo", "Area With Breaks": "Area Interrotta", "Zoom Out": "Riduci", "Stop Level. Ticks:": "Livello Stop. Ticks", "Jul": "Lug", "Above Bar": "Sopra la Barra", "Visual Order": "Ordine Visualizzazione", "Warning": "Attenzione", "__specialSymbolOpen__Yesterday at__specialSymbolClose__ __dayTime__": "__specialSymbolOpen__Ieri a__specialSymbolClose____dayTime__", "Stop Background Color": "Colore Sfondo Stop", "Slow length_input": "Slow length", "Conversion Line Periods_input": "Conversion Line Periods", "Sector": "Sotto Settore", "powered by TradingView": "fornito da TradingView", "Stochastic_study": "Stocastico", "Apply WPT Down Wave": "Applica Onde Decrescenti WPT", "Marker Color": "Colore Evidenziatore", "TEMA_input": "TEMA", "Apply WPT Up Wave": "Applica Onde crescenti WPT", "Min Move 2": "Mov Min 2", "Directional Movement_study": "Movimento Direzionale", "Extend Left End": "Estendi Estremita' Sinistra", "Advance/Decline_study": "Advance/Decline", "Flag Mark": "Segno Bandiera", "Drawings": "Linea", "Fast length_input": "Fast length", "Cancel": "Annulla", "Bar #": "Barra #", "Median_input": "Median", "Redo": "Ripeti", "Hide Drawings Toolbar": "Nascondi Barra Strumenti Disegno", "Ultimate Oscillator_study": "Ultimate Oscillatore", "This chart layout has a lot of objects and can't be published! Please report to {0} for further details.": "Questo grafico ha troppi oggetti e non può essere pubblicato! Segnala a {0} per dettagli ulteriori.", "Vert Grid Lines": "Linee Vert. Griglia", "Growing_input": "Growing", "Angle": "Angolo", "%d year_plural": "%d anni", "Plot_input": "Plot", "Color 8_input": "Color 8", "Indicators, Fundamentals, Economy and Add-ons": "Indicatori, Fondamentali, Economia e Componenti Aggiuntivi", "Search": "Cerca", "Bollinger Bands Width_study": "Ampiezza Bande Bollinger", "roclen3_input": "roclen3", "Overbought_input": "Overbought", "DPO_input": "DPO", "Levels Line": "Livelli Linee", "No study templates saved": "Non ci sono modelli studi salvati", "Trend Line": "Linea di Tendenza", "Relative Vigor Index_study": "Relative Vigor Index", "Your chart is being saved, please wait a moment before you leave this page.": "Sto salvando il grafico, aspettare un momento prima di lasciare la pagina.", "Circle": "Cerchio", "Price Range": "Range Prezzo", "Extended Hours": "Orario Prolungato", "Triangle": "Triangolo", "Line With Breaks": "Linea Interrotta", "Period_input": "Period", "Watermark": "Filigrana", "Trigger_input": "Trigger", "SigLen_input": "SigLen", "Clone": "Duplica", "Color 2_input": "Color 2", "Show Prices": "Visualizza Prezzi", "Contracts": "Contratti", "{0} chart by TradingView": "{0} grafico da TradingView", "Timezone/Sessions": "Fuso Orario/Sessioni", "Save Indicator Template As...": "Salva Modello Indicatore Come..", "Arrow Mark Right": "Segno Freccia Dx", "Background color 2": "Colore Sfondo 2", "Background color 1": "Colore Sfondo 1", "Circles": "Cerchi", "McGinley Dynamic_study": "McGinley Dynamic", "Visible on Mouse Over": "Visibile al Passaggio del Mouse", "Thu": "Gio", "Vortex Indicator_study": "Vortex Indicator", "Williams Alligator_study": "Williams Alligator", "ROCLen1_input": "ROCLen1", "M_interval_short": "M", "Change Symbol...": "Cambia Simbolo...", "Price Levels": "Livelli Prezzo", "Show Splits": "Mostra Split", "Zero Line_input": "Zero Line", "__specialSymbolOpen__Today at__specialSymbolClose__ __dayTime__": "__specialSymbolOpen__Oggi a__specialSymbolClose____dayTime__", "Increment_input": "Increment", "Days_interval": "Giorni", "Show Right Scale": "Mostra Scala Destra", "Show Alert Labels": "Mostra Etichette Alert", "Net Volume_study": "Volumi Netti", "Lock": "Blocca", "length14_input": "length14", "Sa_day_of_week": "Sab", "High": "Massimo", "ext": "est", "Date and Price Range": "Range Data e Prezzo", "Polyline": "Polilinea", "Reconnect": "Riconnetti", "Add to favorites": "Aggiungi ai preferiti", "Saturday": "Sabato", "Symbol Last Value": "Ultimo Valore Simbolo", "Color 0_input": "Color 0", "maximum_input": "maximum", "Wed": "Mer", "Paris": "Parigi", "D_data_mode_delayed_letter": "D", "Symbol Info": "Informazioni Simbolo", "Pyramiding": "Piramidale", "fastLength_input": "fastLength", "Width": "Larghezza", "Historical Volatility_study": "Volatilità Storica", "Template": "Modello", "Compare or Add Symbol...": "Confronta o Aggiungi Simbolo...", "Parallel Channel": "Canale Parallelo", "Time Cycles": "Cicli Temporali", "Second fraction part is invalid.": "Seconda frazione non valida.", "Divisor_input": "Divisor", "Down Wave 1 or A": "GIù Onda 1 o A", "ROC_input": "ROC", "Dec": "Dic", "Extend": "Estendi", "length7_input": "length7", "Toggle Maximize Chart": "Espandi Grafico", "Send to Back": "Porta in Secondo Piano", "Undo": "Annulla", "Window Size_input": "Window Size", "Mon": "Lun", "Reset Scale": "Reset Scala", "Long Length_input": "Long Length", "True Strength Indicator_study": "True Strength Indicatore", "%R_input": "%R", "There are no saved charts": "Non ci sono grafici salvati", "Chart Properties": "Proprietà Grafico", "bars_margin": "barre", "Show Indicator Last Value": "Visualizza Ultimo Valore Indicatore", "Initial capital": "Capitale iniziale", "Show Angle": "Visualizza angolo", "Indicator Last Value": "Ultimo Valore Indicatore", "More features on tradingview.com": "Ulteriori caratteristiche su tradingview.com", "smalen3_input": "smalen3", "Length1_input": "Length1", "Always Invisible": "Sempre Invisibile", "Days": "Giorni", "x_input": "x", "Save As...": "Salva Come...", "Lock/Unlock": "Blocca/Sblocca", "Elliott Double Combo Wave (WXY)": "Elliott Onda Doppia Combo (WXY)", "Parabolic SAR_study": "SAR Parabolico", "Fisher Transform_study": "Fisher Transform", "Show Hidden Tools": "Mostra Strumenti Nascosti", "Hollow Candles": "Candele Vuote", "Any Symbol": "Qualsiasi Simbolo", "UO_input": "UO", "Stats Text Color": "Colore testo delle statistiche", "Minutes": "Minuti", "Short RoC Length_input": "Short RoC Length", "Show Orders": "Mostra Ordini", "Countdown": "Conto Alla Rovescia", "Jaw_input": "Jaw", "Right": "Destra", "Help": "Aiuto", "Coppock Curve_study": "Curva Coppock", "Reset Chart": "Reset Grafico", "Sep": "Set", "Sunday": "Domenica", "Themes": "Temi", "Left Axis": "Asse Sinistro", "YES": "SÌ", "longlen_input": "longlen", "Moving Average Exponential_study": "Media Mobile Esponenziale", "Source border color": "Colore bordo Fonte", "Redo {0}": "Ripeti {0}", "s_dates": "s", "Move Down": "Muovi in Basso", "Open Interval Dialog": "Periodo Personalizzato", "invalid symbol": "simbolo invalido", "Triangle Pattern": "Triangolo Pattern", "Gann Fan": "Ventaglio Gann", "Balance of Power_study": "Balance of Power", "EOM_input": "EOM", "Font Size": "Dimensione Caratteri", "Apply Manual Risk/Reward": "Applica Riscio/Premio Manuale", "Indicators": "Indicatori", "q_input": "q", "You are notified": "Hai ricevuto una notifica", "%D_input": "%D", "Border Color": "Colore Bordo", "Offset_input": "Offset", "Risk": "Rischio", "Price Scale": "Scala Prezzo", "HV_input": "HV", "Seconds": "Secondi", "Start_input": "Inizia", "R_data_mode_realtime_letter": "R", "Hours": "Ore", "Berlin": "Berlino", "Color 4_input": "Color 4", "Angles": "Angoli", "Prices": "Prezzi", "Extended Hours (Intraday Only)": "Orario Prolungato (Solo Intraday)", "July": "Luglio", "Create Horizontal Line": "Crea Retta Orizzontale", "Minute": "Minuto", "Cycle": "Ciclo", "ADX Smoothing_input": "ADX Smoothing", "One color for all lines": "Un colore per tutte le linee", "m_dates": "m", "Settings": "Impostazioni", "Drawing Tools": "Strumenti Disegno", "Candles": "Candele", "We_day_of_week": "Mer", "Width (% of the Box)": "Larghezza (% della Casella)", "%d minute": "%d minuto", "week_plural": "settimane", "Pip Size": "Dimensione Pip", "Wednesday": "Mercoledì", "This drawing is used in alert. If you remove the drawing, the alert will be also removed. Do you want to remove the drawing anyway?": "Il disegno è abbinato ad un allarme. Se rimuovi il disegno, anche l'allarme sarà rimosso. Vuoi comunque rimuovere il disegno?", "Hide All Drawing Tools": "Nascondi tutti gli Strumenti Disegno", "Show alert label line": "Mostra linea etichetta alert", "Down Wave 2 or B": "GIù Onda 2 o B", "MA_input": "MA", "Detrended Price Oscillator_study": "Detrended Price Oscillatore", "not authorized": "non autorizzato", "Image URL": "URL Immagine", "SMI Ergodic Oscillator_input": "SMI Ergodic Oscillator", "Show Objects Tree": "Mostra Albero Oggetti", "Primary": "Primario", "Price:": "Prezzo:", "Gann Box": "Scatola Gann", "Bring to Front": "Porta in Primo Piano", "Brush": "Pennello", "Not Now": "Non ora", "lengthRSI_input": "lengthRSI", "Yes": "Sì", "Events & Alerts": "Eventi & Alert", "+DI_input": "+DI", "Apply Default Drawing Template": "Applica Modello Disegno Predefinito", "Save As Default": "Salva come Default", "Invalid Symbol": "Simbolo non valido", "Inside Pitchfork": "Pitchfork Inside", "yay Color 1_input": "yay Color 1", "Quandl is a huge financial database that we have connected to TradingView. Most of its data is EOD and is not updated in real-time, however the information may be extremely useful for fundamental analysis.": "Quandl e' un enorme database finanziario che abbiamo connesso a TradingView. La maggior parte dei dati sono EOD e non e' aggiornato in tempo reale, le informazioni comunque potrebbero essere estremamente utili nell'analisi dei fondamentali.", "Hide Marks On Bars": "Nascondi Note sulle Barre", "Note": "Nota", "Show Countdown": "Mostra Conto Alla Rovescia", "WMA Length_input": "WMA Length", "Show Dividends on Chart": "Mostra Dividendi sul Grafico", "Show Executions": "Mostra Eseguiti", "Borders": "Bordi", "month_plural": "mesi", "loading...": "caricando....", "Closed_line_tool_position": "Chiuso", "Columns": "Colonne", "Change Resolution": "Cambia Risoluzione", "Indicator Arguments": "Agomenti Indicatore", "Fib Spiral": "Spirale Fib", "Apply Elliot Wave": "Applica le Onde di Elliot", "%d minute_plural": "%d minuti", "Degree": "Gradi", " per order": " per ordine", "Line - HL/2": "Linea - HL/2", "Up Wave 4": "Su Onda 4", "Jun": "Giu", "Least Squares Moving Average_study": "Least Squares Media Mobile", "Change Variance value": "Modifica valore Varianza", "Overlay the main chart": "Sovrapponi sul grafico principale", "powered by ": "fornito da ", "Source_input": "Source", "Change Seconds To": "Cambia da Secondi A", "%K_input": "%K", "Success back color": "Colore Sfondo Successo", "Please enter template name": "Inserisci il nome del modello", "Symbol Name": "Nome Simbolo", "Events Breaks": "Separatori Eventi", "Study Templates": "Modelli Studio", "Months": "Mesi", "Symbol Info...": "Informazioni Simbolo...", "Elliott Wave Minor": "Onda Elliott Minore", "Read our blog for more info!": "Leggi il nostro blog per approfondire!", "Measure (Shift + Click on the chart)": "Misura (Shift + clic sul grafico)", "Override Min Tick": "Sovrascrivi Tick Min", "Thursday": "Giovedì", "Dialog": "Discussione", "Add To Text Notes": "Aggiungi Al Blocco Note", "Elliott Triple Combo Wave (WXYXZ)": "Onda di Elliot Tripla Combo (WXYXZ)", "Multiplier_input": "Multiplier", "Risk/Reward": "Rischio/Rendimento", "Base Line Periods_input": "Base Line Periods", "Show Dividends": "Mostra Dividendi", "pre-market": "pre-mercato", "Top Labels": "Etichette in Alto", "Show Earnings": "Mostra Utili", "Line - Open": "Linea - Apertura", "%d day_plural": "%d giorni", "Elliott Triangle Wave (ABCDE)": "Onde di Elliot Triangolo (ABCDE)", "Minuette": "Minuetto", "Text Wrap": "Testo a capo", "Reverse Position": "Inverti Posizione", "Elliott Minor Retracement": "Ritracciamento Minore Elliott", "Th_day_of_week": "Gio", "No symbols matched your criteria": "Nessun simbolo corrisponde ai criteri", "Icon": "Icona", "Short_input": "Short", "Tuesday": "Martedì", "Indicator_input": "Indicator", "Athens": "Atene", "Q_input": "Q", "Content": "Contenuto", "middle": " mezzo", "Lock Cursor In Time": "Fissa Cursore Al Tempo", "Intermediate": "Intermedio", "Eraser": "Cancellino", "TimeZone": "Fuso Orario", "Envelope_study": "Envelope", "Active Symbol": "Simbolo Attivo", "Horizontal Line": "Retta Orizzontale", "O_in_legend": "Open", "Confirmation": "Conferma", "HL Bars": "HL Barre", "Add Alert": "Aggiungi Alert", "Lines:": "Linee", "Hide Favorite Drawings Toolbar": "Nascondi Barra Strumenti Disegno Preferiti", "Buenos Aires": "Buenos Aires ", "useTrueRange_input": "useTrueRange", "Profit Level. Ticks:": "Livello Profitto. Ticks", "Show Date/Time Range": "Visualizza Estensione Data/Tempo", "Level {0}": "Livello {0}", "Horz Grid Lines": "Linee Orizz. Griglia", "Text Notes are available only on chart page. Please open a chart and then try again.": "Blocco note è disponibile solo alla pagina del grafico. aprire un grafico e poi riprovare.", "Tu_day_of_week": "Mar", "day": "giorno", "deviation_input": "deviation", "week": "settimana", "Base currency": "Valuta base", "VWMA_study": "VWMA", "Success text color": "Colore Testo Successo", "ADX smoothing_input": "ADX smoothing", "%d hour": "%d ora", "Order size": "Grandezza ordine", "Displacement_input": "Displacement", "Save Indicator Template As": "Salva Modello Indicatore Come", "ADR_B_input": "ADR_B", "Chaikin Money Flow_study": "Chaikin Money Flow", "Ease Of Movement_study": "Ease Of Movement", "Defaults": "Predefiniti", "Oversold_input": "Oversold", "Williams %R_study": "Williams %R", "Visual settings...": "Impostazioni Visualizzazione...", "RSI_input": "RSI", "Long period_input": "Long period", "Mo_day_of_week": "Lun", "center": "centro", "Vertical Line": "Retta Verticale", "Show Splits on Chart": "Mostra Split sul Grafico", "Sorry, the Copy Link button doesn't work in your browser. Please select the link and copy it manually.": "Spiacenti, il tasto Copia Link non funziona con il tuo browser. Selezionare il link desiderato e copiarlo manualmente.", "X_input": "X", "C_data_mode_connecting_letter": "C", "Simple ma(oscillator)_input": "Simple ma(oscillator)", "May": "Mag", "SMALen4_input": "SMALen4", "ROCLen4_input": "ROCLen4", "Aroon Down_input": "Aroon Down", "Add To Watchlist": "Aggiungi Alla Watchlist", "Total": "Totale", "Extend Right": "Estendi a Destra", "left": "sinistra", "Lock scale": "Blocca scala", "Time Levels": "Livelli Tempo", "Arrow": "Freccia", "smalen1_input": "smalen1", "Drawing Template '{0}' already exists. Do you really want to replace it?": "Modello Disegno '{0}' gia' esistente. Vuoi sostituirlo?", "Extend Right End": "Estendi Estremita' Destra", "Fans": "Ventagli", "Line - Low": "Linea - Minimo", "Price_input": "Price", "Close_input": "Chiudi", "Arrow Mark Down": "Segno Freccia Giù", "Weeks": "Settimane", "Modified Schiff Pitchfork": "Pitchfork Schiff Modificata", "Relative Volatility Index_study": "Relative Volatility Index", "Elliott Impulse Wave (12345)": "Onda di Elliot Impulsiva (12345)", "PVT_input": "PVT", "Show Only Future Events": "Mostra Solo Eventi Futuri", "Circle Lines": "Linee Cerchi", "Hull Moving Average_study": "Hull Media Mobile", "Save Drawing Template As": "Salva Modello Disegno Come", "Bring Forward": "Sposta Avanti", "Apply Defaults": "Applica Predefiniti", "Friday": "Venerdì", "Zero_input": "Zero", "Company Comparison": "Comparazione Simboli", "Stochastic Length_input": "Stochastic Length", "mult_input": "mult", "URL cannot be received": "L'URL non può essere ricevuto", "Signal smoothing_input": "Signal smoothing", "E_data_mode_end_of_day_letter": "E", "Trend-Based Fib Extension": "Estensione Fib Trend-Based", "Analyze Trade Setup": "Impostazione Analizzatore Trade", "Double Curve": "Curva Doppia", "Stochastic RSI_study": "Stocastico RSI", "Horizontal Ray": "Raggio Orizzontale", "Symbol Labels": "Etichette Simbolo", "Edit Order": "Modifica Ordine", "Trades on Chart": "Trades sul Grafico", "Chaikin Oscillator_input": "Chaikin Oscillator", "Listed Exchange": "Titolo in Lista", "Error:": "Errore:", "Fullscreen mode": "Modalità Schermo Intero", "Add Text Note For {0}": "Aggiungi Nota Per {0}", "K_input": "K", "In Session": "In Sessione", "ROCLen3_input": "ROCLen3", "Restore Size": "Ripristina Dimensione", "Text Color": "Colore Testo", "Extend Alert Line": "Estendi Linea Alert", "Drawings Toolbar": "Strumenti Disegno", "New Zealand": "Nuova Zelanda", "CHOP_input": "CHOP", "Scale": "Scala", "Screen (No Scale)": "Schermo (Senza Scala)", "Extended Alert Line": "Linea Estesa Alert", "Signal_input": "Signal", "like": "piace", "Original": "Originale", "Show": "Mostra", "Exchange": "Borsa", "{0} bars": "{0} barre", "Lower_input": "Lower", "Created ": "Creato ", "Arc": "Arco", "Elder's Force Index_study": "Elder's Force Index", "Show Earnings on Chart": "Mostra Utili sul Grafico", "ATR_input": "ATR", "Do you really want to delete Color Theme '{0}' ?": "Vuoi davvero cancella il Tema Colore '{0}' ?", "%d month_plural": "%d mesi", "Low": "Minimo", "Bollinger Bands %B_study": "Bande di Bollinger %B", "Time Zone": "Fuso Orario", "right": "destra", "%d month": "%d mese", "Wrong value": "Valore errato", "Upper Band_input": "Upper Band", "Sun": "Dom", "Rename...": "Rinomina...", "February": "Febbraio", "start_input": "start", "No indicators matched your criteria.": "Nessun indicatore corrisponde ai criteri", "Commission": "Commissione", "Short length_input": "Short length", "Triple EMA_study": "Tripla EMA", "Precise Labels_scale_menu": "Etichette Precise", "Smoothed Moving Average_study": "Media Mobile Smussata", "Do you really want to delete Drawing Template '{0}' ?": "Vuoi cancellare il Modello Disegno '{0}' ?", "Chatham Islands": "Isole Chatham", "Channel": "Canale", "Stop syncing drawing": "Disabilita sincronia disegni", "FXCM CFD data is available only to FXCM account holders": "I dati FXCM CFD sono disponibili solo per i detentori di account FXCM", "Lagging Span 2 Periods_input": "Lagging Span 2 Periods", "Connecting Line": "Linea Giuntura", "day_plural": "giorni", "bottom": "fondo", "Teeth_input": "Teeth", "Moscow": "Mosca", "Save New Chart Layout": "Salva Nuova Configurazione Grafico", "Fib Channel": "Canale Fib", "Visibility": "Visibilita'", "Events": "Eventi", "Save Drawing Template As...": "Salva Modello Disegno Come...", "Minutes_interval": "Minuti", "Insert Study Template": "Inserisci Modello Studio", "exponential_input": "exponential", "%d hour_plural": "%d ore", "OnBalanceVolume_input": "OnBalanceVolume", "roclen2_input": "roclen2", "Chande Momentum Oscillator_study": "Chande Momentum Oscillatore", "Not applicable": "Non applicabile", "or copy url:": "o copia url:", "Bollinger Bands %B_input": "Bollinger Bands %B", "Template name": "Nome modello", "Indicator Values": "Valori Indicatore", "Lips Length_input": "Lips Length", "Use Upper Deviation_input": "Use Upper Deviation", "L_in_legend": "Low", "Remove custom interval": "Rimuovi periodo personalizzato", "minute_plural": "minuti", "shortlen_input": "shortlen", "Quotes are delayed by {0} min": "Quotazioni in ritardo di {0} min", "Copied to clipboard": "Copiato negli appunti", "ADX_input": "ADX", "Profit Background Color": "Colore Sfondo Profitto", "Bar's Style": "Grafico a Barre", "Exponential_input": "Exponential", "ROCLen2_input": "ROCLen2", "Use Lower Deviation_input": "Use Lower Deviation", "Previous": "Precedente", "Stay In Drawing Mode": "Rimani In Modalità Disegno", "Comment": "Commento", "Long_input": "Long", "Bars": "Barre", "Source text color": "Colore testo Fonte", "Flat Top/Bottom": "Cima/Fondo Piatto", "Symbol Type": "Categoria Simbolo", "loading data": "dati in caricamento", "December": "Dicembre", "Lock drawings": "Blocca disegni", "Border color": "Colore Bordo", "Change Seconds From": "Cambia in Secondi da", "Left Labels": "Etichette a Sinistra", "Insert Indicator...": "Inserisci Indicatore...", "P_input": "P", "Paste %s": "Incolla %s", "Timezone": "Fuso Orario", "Invite-only script. You have been granted access.": "Script invite-only. Ti è stato dato l'accesso.", "Sat": "Sab", "Rectangle": "Rettangolo", "Supercycle": "SuperCiclo", "Source back color": "Colore sfondo Fonte", "Transparency": "Trasparenza", "All Indicators And Drawing Tools": "Tutti Gli Indicatori E Tutti I Strumenti Disegno", "Cyclic Lines": "Linee Cicliche", "length28_input": "length28", "ABCD Pattern": "ABCD Configurazione", "When selecting this checkbox the study template will set \"__interval__\" interval on a chart": "Quando selezioni questa casella, il modello di studio verrà impostato su \"__interval__\" intervallo sul grafico", "Add": "Aggiungi", "OC Bars": "OC Barre", "Millennium": "Millenio", "Price Label": "Etichetta Prezzo", "Graphics": "Grafici", "NEW": "NUOVO", "Wick": "Ombra", "Hull MA_input": "Hull MA", "Callout": "Annuncio", "Lock Scale": "Blocca Scala", "distance: {0}": "distanza {0}", "Extended": "Estesa", "Create Vertical Line": "Crea Retta Verticale", "Arcs": "Archi", "Top Margin": "Margine Superiore", "Length2_input": "Length2", "Insert Drawing Tool": "Inserisci Strumento di disegno", "OHLC Values": "Valori OHLC", "Correlation_input": "Correlation", "Scales Text": "Testo Scala Assi", "Session Breaks": "Separatori Sessione", "Add {0} To Watchlist": "Aggiungi {0} Alla Watchlist", "Anchored Note": "Nota Ancorata", "lipsLength_input": "lipsLength", "Apply Indicator on {0}": "Applica Indicatore su {0}", "roclen4_input": "roclen4", "November": "Novembre", "closed": "chiuso", "Background Color": "Colore Sfondo", "an hour": "un'ora", "Right Axis": "Asse Destro", "D_data_mode_delayed_streaming_letter": "D", "VI -_input": "VI -", "slowLength_input": "slowLength", "Click to set a point": "Clicca per definire un punto", "January": "Gennaio", "delayed": "ritardato", "n/a": "n.d.", "Indicator Titles": "Titoli Indicatore", "retrying": "riprovando", "Change area background": "Modifica lo sfondo", "Error": "Errore", "Edit Position": "Modifica Posizione", "RVI_input": "RVI", "Awesome Oscillator_study": "Awesome Oscillatore", "Recalculate On Every Tick": "Ricalcola ad ogni Tick", "Left": "Sinistra", "Show Text": "Visualizza Testo", "Objects Tree...": "Albero Oggetti...", "Compare": "Confronta", "Add Symbol": "Aggiungi Simbolo", "Projection": "Proiezione", "Track time": "Traccia tempo", "Enter a new chart layout name": "Inserisci nome nuova configurazione grafico", "Signal Length_input": "Signal Length", "Properties": "Properieta'", "Teeth Length_input": "Teeth Length", "Point Value": "Valore Punto", "D_interval_short": "D", "Close": "Chiusura", "ParabolicSAR_input": "ParabolicSAR", "Log Scale_scale_menu": "Scala Logaritmica", "MACD_input": "MACD", "Do not show this message again": "Non mostrare piu' questo messaggio", "Up Wave 3": "Su Onda 3", "Arrow Mark Left": "Segno Freccia Sx", "second_plural": "secondi", "Up Wave 5": "Su Onda 5", "Line - Close": "Linea - Chiusura", "Confirm Inputs": "Conferma Input", "Open_line_tool_position": "Aperto", "Lagging Span_input": "Lagging Span", "Subminuette": "Sotto-Minuetto", "Mirrored": "Riflesso", "Price": "Prezzo", "Elliott Correction Wave (ABC)": "Onda di Elliot Correttiva (ABC)", "Error while trying to create snapshot.": "Errore nel creare l' istantanea", "Label Background": "Sfondo Etichetta", "Templates": "Modelli", "Please report the issue or click Reconnect.": "Per favore segnala il problema o clicca Riconnetti", "1. Slide your finger to select location for first anchor
    2. Tap anywhere to place the first anchor": "1. Trascina il dito per selezionare la posizione del primo punto di ancoraggio
    2. Tocca per stabilire il primo punto di ancoraggio", "Signal Labels": "Etichette di segnale", "compiling...": "compilando...", "Are you sure?": "Sei sicuro?", "Color 5_input": "Color 5", "Scale Price Chart Only": "Scala Solo Grafico Prezzo", "Default": "Predefinito", "auto_scale": "auto", "Background": "Sfondo", "% of equity": "% del patrimonio netto", "Apply Elliot Wave Intermediate": "Applica un'onda di Elliot Intermedia", "VWMA_input": "VWMA", "Lower Deviation_input": "Lower Deviation", "Save Interval": "Salva Periodo", "Extend Lines Left": "Estendi Linee Sinistra", "Reverse": "Inverti", "Oops, something went wrong": "Oops, qualcosa è andato storto", "Shapes_input": "Shapes", "Median": "Mediana", "Show Source Code": "Mostra Codice", "Remove": "Elimina", "len_input": "len", "Arrow Mark Up": "Segno Freccia Su", "April": "Aprile", "Crosses_input": "Crosses", "KST_input": "KST", "Sync drawing to all charts": "Sincronizza disegni di tutti i grafici", "LowerLimit_input": "LowerLimit", "Know Sure Thing_study": "Know Sure Thing", "Copy Chart Layout": "Copia Configurazione Grafico", "Compare...": "Confronta...", "1. Slide your finger to select location for next anchor
    2. Tap anywhere to place the next anchor": "1. Trascina il dito per selezionare la posizione del successivo punto di ancoraggio
    2. Tocca per stabilire il successivo punto di ancoraggio", "Compare or Add Symbol": "Confronta o Aggiungi Simbolo", "Color": "Colore", "Aroon Up_input": "Aroon Up", "Scales Lines": "Linee Scala Assi", "Type the interval number for munute charts (i.e. 5 if it is going to be a five minute chart). Or number plus letter for H (Hourly), D (Daily), W (Weekly), M (Monthly) intervals (i.e. D or 2H)": "Digita l'intervallo di minuti che desideri vedere (ad esempio se digiti 5 avrai un grafico 5-min). Oppure puoi digitare un numero seguito da una lettera tra H (Orario), D (Giornaliero), W (Settimanale), M (Mensile) per cambiare timeframe (ad esempio \"2H\" sarà un grafico 2-ore)", "Up Wave C": "Su Onda C", "Show Distance": "Visualizza Distanza", "Risk/Reward Ratio: {0}": "Rapporto Rischio/Rendimento: {0}", "Volume Oscillator_study": "Oscillatore Volumi", "Williams Fractal_study": "Williams Fractal", "Merge Up": "Unisci in Alto", "Right Margin": "Margine Destro", "Ellipse": "Ellisse", "Warsaw": "Varsavia"} \ No newline at end of file +{"ticks_slippage ... ticks": "ticks", "Months_interval": "Mesi", "Realtime": "Tempo reale", "Callout": "Annuncio", "Sync to all charts": "Sincronizza su tutti i grafici", "month": "mese", "London": "Londra", "roclen1_input": "roclen1", "Unmerge Down": "Separa verso il basso", "Percents": "Percentuali", "Search Note": "Cerca Note", "Minor": "Minori", "Do you really want to delete Chart Layout '{0}' ?": "Vuoi davvero cancellare la configurazione '{0}' ?", "Quotes are delayed by {0} min and updated every 30 seconds": "Quotazioni in ritardo di {0} minuti e aggiornate ogni 30 secondi", "Magnet Mode": "Modalità magnete", "Grand Supercycle": "Gran superciclo", "OSC_input": "OSC", "Hide alert label line": "Nascondi linea etichetta allarme", "Volume_study": "Volume", "Lips_input": "Lips", "Show real prices on price scale (instead of Heikin-Ashi price)": "Mostra prezzi reali sulla scala prezzi (al posto del prezzo Heikin-Ashi)", "Histogram": "Istogramma", "Base Line_input": "Base Line", "Step": "Scaletta", "Insert Study Template": "Inserisci modello studio", "Fib Time Zone": "Time Zone Fibonacci", "SMALen2_input": "SMALen2", "Bollinger Bands_study": "Bande di Bollinger", "Show/Hide": "Mostra/Nascondi", "Upper_input": "Upper", "exponential_input": "exponential", "Move Up": "Muovi in alto", "Symbol Info": "Informazioni simbolo", "This indicator cannot be applied to another indicator": "Questo indicatore non può' essere applicato ad un altro indicatore", "Scales Properties...": "Scala assi..", "Count_input": "Count", "Full Circles": "Cerchi completi", "Industry": "Settore", "OnBalanceVolume_input": "OnBalanceVolume", "Cross_chart_type": "Croce", "H_in_legend": "H (Massimo)", "a day": "un giorno", "R_data_mode_replay_letter": "R", "Accumulation/Distribution_study": "Accumulazione/Distribuzione", "Rate Of Change_study": "Tasso Di Variazione", "Text Font": "Font di testo", "in_dates": "in", "Clone": "Duplica", "Color 7_input": "Colore 7", "Chop Zone_study": "Chop Zone", "Bar #": "Barra #", "Scales Properties": "Scala assi", "Trend-Based Fib Time": "Tempo Fib in base al trend", "Remove All Indicators": "Elimina tutti gli Indicatori", "Oscillator_input": "Oscillatore", "Last Modified": "Ultima modifica", "yay Color 0_input": "yay Color 0", "Labels": "Etichette", "Chande Kroll Stop_study": "Chande Kroll Stop", "Hours_interval": "Ore", "Allow up to": "Consentito fino a", "Scale Right": "Scala a destra", "Money Flow_study": "Money Flow", "siglen_input": "siglen", "Indicator Labels": "Etichette indicatore", "__specialSymbolOpen__Tomorrow at__specialSymbolClose__ __dayTime__": "__specialSymbolOpen__Domani a__specialSymbolClose____dayTime__", "Toggle Percentage": "Seleziona/Deseleziona percentuale", "Remove All Drawing Tools": "Elimina tutti gli strumenti di disegno", "Remove all line tools for ": "Rimuovi tutti gli strumenti linea per ", "Linear Regression Curve_study": "Curva Regressione Lineare", "Symbol_input": "Symbol", "Currency": "Valuta", "increment_input": "increment", "Compare or Add Symbol...": "Confronta o aggiungi simbolo...", "__specialSymbolOpen__Last__specialSymbolClose__ __dayName__ __specialSymbolOpen__at__specialSymbolClose__ __dayTime__": "__specialSymbolOpen__Ultimo__specialSymbolClose____dayName____specialSymbolOpen__a__specialSymbolClose____dayTime__", "Save Chart Layout": "Salva layout grafico", "Number Of Line": "Numero di riga", "Label": "Etichetta", "Post Market": "Post Mercato", "second": "secondo", "Change Hours To": "Cambia ore in", "smoothD_input": "smoothD", "Falling_input": "Falling", "X_input": "X", "Risk/Reward short": "Rischio/rendimento short", "UpperLimit_input": "UpperLimit", "Donchian Channels_study": "Canali Donchian", "Entry price:": "Prezzo di entrata:", "Circles": "Cerchi", "Head": "Testa", "Stop: {0} ({1}) {2}, Amount: {3}": "Stop: {0} ({1}) {2}, Quantità: {3}", "Mirrored": "Riflesso", "Ichimoku Cloud_study": "Ichimoku Cloud", "Signal smoothing_input": "Signal smoothing", "Use Upper Deviation_input": "Use Upper Deviation", "Toggle Auto Scale": "Seleziona/deseleziona scala automatica", "Grid": "Griglia", "Apply Elliot Wave Minor": "Applica un'onda di Elliot minore", "Rename...": "Rinomina...", "Smoothing_input": "Smoothing", "Color 3_input": "Colore 3", "Jaw Length_input": "Jaw Length", "Inside": "Dentro", "Delete all drawing for this symbol": "Cancella tutti i disegni per questo simbolo", "Fundamentals": "Fondamentali", "Keltner Channels_study": "Canali Keltner", "Long Position": "Posizione long", "Bands style_input": "Bands style", "Undo {0}": "Annulla {0}", "With Markers": "Con contrassegni", "Momentum_study": "Momentum", "MF_input": "MF", "Gann Box": "Scatola Gann", "Switch to the next chart": "Vai al prossimo grafico", "charts by TradingView": "grafici da TradingView", "Fast length_input": "Fast length", "Apply Elliot Wave": "Applica le onde di Elliot", "Disjoint Angle": "Angolo disgiunto", "W_interval_short": "W", "Show Only Future Events": "Mostra solo eventi futuri", "Log Scale": "Scala logaritmica", "Line - High": "Linea - In alto", "Zurich": "Zurigo", "Equality Line_input": "Equality Line", "Short_input": "Short", "Fib Wedge": "Cuneo Fib", "Line": "Linea", "Session": "Sessione", "Down fractals_input": "Down fractals", "Fib Retracement": "Ritracciamento Fibonacci", "smalen2_input": "smalen2", "isCentered_input": "isCentered", "Border": "Bordo", "Klinger Oscillator_study": "Klinger Oscillatore", "Absolute": "Assoluto", "Tue": "Mar", "Style": "Stile", "Show Left Scale": "Mostra scala sinistra", "SMI Ergodic Indicator/Oscillator_study": "SMI Ergodic Indicator/Oscillator", "Aug": "Ago", "Last available bar": "Ultima barra disponibile", "Manage Drawings": "Gestisci disegni", "Analyze Trade Setup": "Impostazione analizzatore trade", "No drawings yet": "Nessun disegno disponibile", "SMI_input": "SMI", "Chande MO_input": "Chande MO", "jawLength_input": "jawLength", "TRIX_study": "TRIX", "Show Bars Range": "Visualizza intervallo barre", "RVGI_input": "RVGI", "Last edited ": "Ultima modifica ", "signalLength_input": "signalLength", "%s ago_time_range": "%s fa", "Reset Settings": "Ripristina impostazioni", "PnF": "P&F", "d_dates": "d", "Are you sure?": "Sei sicuro?", "August": "Agosto", "Recalculate After Order filled": "Ricalcola dopo Attivazione Ordine", "Source_compare": "Sorgente", "Down bars": "Barre giù", "Correlation Coefficient_study": "Coefficiente di Correlazione", "Delayed": "In differita", "Bottom Labels": "Etichette in basso", "Text color": "Colore testo", "Levels": "Livelli", "Short Length_input": "Short Length", "teethLength_input": "teethLength", "Visible Range_study": "Intervallo visibile", "Open {{symbol}} Text Note": "Apri Nota {{symbol}}", "October": "Ottobre", "Lock All Drawing Tools": "Blocca tutti gli strumenti di disegno", "Long_input": "Long", "Right End": "Estremità destra", "Show Symbol Last Value": "Visualizza ultimo valore simbolo", "Head & Shoulders": "Testa & Spalle", "Do you really want to delete Study Template '{0}' ?": "Vuoi cancellare il Modello di Studio '{0}' ?", "Favorite Drawings Toolbar": "Barra strumenti disegno preferiti", "Properties...": "Proprietà...", "Reset Scale": "Ripristina scala", "MA Cross_study": "Incrocio Media Mobile", "Trend Angle": "Angolo Trend", "Snapshot": "Istantanea", "Crosshair": "Mirino", "Signal line period_input": "Signal line period", "Timezone/Sessions Properties...": "Proprietà fuso orario/sessioni", "Quantity": "Quantità", "Price Volume Trend_study": "Volume Prezzo Trend", "Auto Scale": "Scala automatica", "hour": "ora", "Delete chart layout": "Cancella configurazione grafico", "Text": "Testo", "F_data_mode_forbidden_letter": "F", "Risk/Reward long": "Rischio/rendimento long", "Long RoC Length_input": "Long RoC Length", "Length3_input": "Periodo3", "+DI_input": "+DI", "Length_input": "Periodo", "Use one color": "Usa un colore", "Chart Properties": "Proprietà grafico", "No Overlapping Labels_scale_menu": "Nessuna etichetta sovrapposta", "Exit Full Screen (ESC)": "Esci da Schermo Intero (ESC)", "MACD_study": "MACD", "Show Economic Events on Chart": "Mostra eventi economici sul grafico", "Moving Average_study": "Media Mobile", "Show Wave": "Mostra onda", "Failure back color": "Colore sfondo non riuscito", "Below Bar": "Sotto la barra", "Time Scale": "Scala temporale", "

    Only D, W, M intervals are supported for this symbol/exchange. You will be automatically switched to a D interval. Intraday intervals are not available because of exchange policies.

    ": "

    Solo gli intervalli G, S, M sono supportati per questo simbolo/borsa. Sarai automaticamente passato a un intervallo G. Gli intervalli intraday non sono disponibili a causa delle politiche di borsa.

    ", "Extend Left": "Estendi a sinistra", "Date Range": "Range data", "Min Move": "Mov min", "Price format is invalid.": "Il formato quotazioni non è valido.", "Show Price": "Visualizza Prezzo", "Level_input": "Level", "Commodity Channel Index_study": "Commodity Channel Index", "Elder's Force Index_input": "Elder's Force Index", "Gann Square": "Quadrato Gann", "Format": "Proprietà", "Color bars based on previous close": "Colore basato sulla chiusura precedente", "Change band background": "Cambia Sfondo Banda", "Target: {0} ({1}) {2}, Amount: {3}": "Target: {0} ({1}) {2}, Quantità: {3}", "This chart layout has a lot of objects and can't be published! Please remove some drawings and/or studies from this chart layout and try to publish it again.": "Questo grafico ha troppi oggetti e non può essere pubblicato! Rimuovi alcuni strumenti di disegno e/o strategie e riprova a pubblicare.", "Anchored Text": "Testo ancorato", "Long length_input": "Long length", "Edit {0} Alert...": "Modifica allarme {0} ....", "Previous Close Price Line": "Linea Prezzo Chiusura Precedente", "Up Wave 5": "Su Onda 5", "Qty: {0}": "Q.tà: {0}", "Aroon_study": "Aroon", "show MA_input": "show MA", "Lead 1_input": "Lead 1", "Short Position": "Posizione short", "SMALen1_input": "SMALen1", "P_input": "P", "Apply Default": "Applica predefinito", "SMALen3_input": "SMALen3", "Average Directional Index_study": "Average Directional Index", "Fr_day_of_week": "Ven", "Invite-only script. Contact the author for more information.": "Script solo-su-invito. Contatta l'autore per maggiori informazioni.", "Curve": "Curva", "a year": "un anno", "Target Color:": "Colore Target:", "Bars Pattern": "Modello a barre", "D_input": "D", "Font Size": "Dimensione caratteri", "Create Vertical Line": "Crea retta verticale", "p_input": "p", "Rotated Rectangle": "Rettangolo ruotato", "Chart layout name": "Nome configurazione grafico", "Fib Circles": "Cerchi Fib", "Apply Manual Decision Point": "Applica un punto di decisione manuale", "Dot": "Punto", "Target back color": "Colore sfondo Target", "All": "Tutto", "orders_up to ... orders": "orders", "Dot_hotkey": "Punto", "Lead 2_input": "Lead 2", "Save image": "Salva immagine", "Move Down": "Muovi in basso", "Unlock": "Sblocca", "Box Size": "Grandezza box", "Navigation Buttons": "Controlli navigazione", "Miniscule": "Minuscolo", "Apply": "Applica", "Down Wave 3": "Onda giù 3", "Plots Background_study": "Plots Background", "Marketplace Add-ons": "Mercatino Add-ons", "Sine Line": "Curva Sinusoidale", "Fill": "Riempi", "%d day": "%d giorno", "Hide": "Nascondi", "Toggle Maximize Chart": "Espandi grafico", "Target text color": "Colore testo Target", "Scale Left": "Scala a sinistra", "Elliott Wave Subminuette": "Onda Elliott subminuette", "Color based on previous close_input": "Colore basato sulla chiusura precedente", "Down Wave C": "Onda giù C", "Countdown": "Conto alla rovescia", "UO_input": "UO", "Pyramiding": "Piramidale", "Go to Date...": "Vai alla data...", "Text Alignment:": "Allineamento testo:", "R_data_mode_realtime_letter": "R", "Extend Lines": "Estendi linee", "Conversion Line_input": "Conversion Line", "March": "Marzo", "Su_day_of_week": "Dom", "Exchange": "Borsa", "Arcs": "Archi", "Regression Trend": "Trend regressione", "Fib Spiral": "Spirale Fib", "Double EMA_study": "Doppia EMA", "minute": "minuto", "All Indicators And Drawing Tools": "Tutti gli indicatori e tutti i strumenti di disegno", "Indicator Last Value": "Ultimo valore indicatore", "Sync drawings to all charts": "Sincronizza il disegno a tutti i grafici", "Change Average HL value": "Variazione valori Media HL", "Stop Color:": "Colore Stop", "Stay in Drawing Mode": "Rimani in modalità disegno", "Bottom Margin": "Margine inferiore", "Save Chart Layout saves not just some particular chart, it saves all charts for all symbols and intervals which you are modifying while working with this Layout": "Salva layout grafico non salva solo un particolare grafico, ma tutti i grafici, di tutti i simboli e intervalli, che sono stati modificati con questo layout", "Average True Range_study": "Average True Range", "Max value_input": "Max value", "MA Length_input": "MA Length", "Invite-Only Scripts": "Scripts Invite-Only", "in %s_time_range": "tra %s", "Extend Bottom": "Estendi sotto", "sym_input": "sym", "DI Length_input": "DI Length", "Rome": "Roma", "Scale": "Scala", "Periods_input": "Periods", "Arrow": "Freccia", "Square": "Quadrato", "Basis_input": "Basis", "Arrow Mark Down": "Segno freccia giù", "lengthStoch_input": "lengthStoch", "Objects Tree": "Albero Oggetti", "Remove from favorites": "Rimuovi dai preferiti", "Show Symbol Previous Close Value": "Mostra Linea Prezzo Chiusura Precedente", "Scale Series Only": "Scala solo serie", "Source text color": "Colore testo Origine", "Simple": "Semplice", "Report a data issue": "Segnala errore di dati", "Arnaud Legoux Moving Average_study": "Arnaud Legoux Media Mobile", "Smoothed Moving Average_study": "Media Mobile Smussata", "Lower Band_input": "Lower Band", "Verify Price for Limit Orders": "Verifica Prezzo per gli Ordini", "VI +_input": "VI +", "Line Width": "Larghezza linea", "Contracts": "Contratti", "Always Show Stats": "Visualizza sempre le statistiche", "Down Wave 4": "Onda giù 4", "ROCLen2_input": "ROCLen2", "Simple ma(signal line)_input": "Simple ma(signal line)", "Change Interval...": "Cambia periodo...", "Public Library": "Libreria Pubblica", " Do you really want to delete Drawing Template '{0}' ?": " Vuoi cancellare il Modello disegno '{0}' ?", "Sat": "Sab", "Left Shoulder": "Spalla sinistra", "week": "settimana", "CRSI_study": "CRSI", "Close message": "Chiudi messaggio", "Jul": "Lug", "Base currency": "Valuta base", "Show Drawings Toolbar": "Mostra Barra Strumenti Disegno", "Chaikin Oscillator_study": "Chaikin Oscillatore", "Price Source": "Fonte prezzo", "Market Open": "Mercato aperto", "Color Theme": "Tema Colore", "Projection up bars": "Barre a proiezione superiore", "Awesome Oscillator_study": "Oscillatore Awesome", "Bollinger Bands Width_input": "Bollinger Bands Width", "Q_input": "Q", "long_input": "long", "Error occured while publishing": "Si è verificato un errore durante la pubblicazione", "Fisher_input": "Fisher", "Color 1_input": "Colore 1", "Moving Average Weighted_study": "Media Mobile Ponderata", "Save": "Salva", "Type": "Tipo", "Wick": "Ombra", "Accumulative Swing Index_study": "Indice Accumulative Swing", "Load Chart Layout": "Carica configurazione grafico", "Show Values": "Mostra valori", "Fib Speed Resistance Fan": "Linee a ventaglio di Fibonacci", "Bollinger Bands Width_study": "Ampiezza Bande Bollinger", "This chart layout has more than 1000 drawings, which is a lot! This may negatively affect performance, storage and publishing. We recommend to remove some drawings to avoid potential performance issues.": "Questo grafico ha più di 1000 disegni che sono molti. Un numero elevato di disegni potrebbe influire negativamente sulle performance, sull'archiviazione e sulla pubblicazione. Ti consigliamo di eliminare alcuni disegni per evitare eventuali problemi di performance.", "Left End": "Estremità sinistra", "%d year": "%d anno", "Always Visible": "Sempre visibile", "S_data_mode_snapshot_letter": "S", "Elliott Wave Circle": "Ciclo delle onde di Elliott", "Earnings breaks": "Separatori utili", "Change Minutes From": "Cambia minuti da", "Do not ask again": "Non chiedere ancora", "Displacement_input": "Displacement", "smalen4_input": "smalen4", "CCI_input": "CCI", "Upper Deviation_input": "Upper Deviation", "XABCD Pattern": "Pattern XABCD", "Schiff Pitchfork": "Pitchfork Schiff", "Copied to clipboard": "Copiato negli appunti", "HLC Bars": "Barre HLC", "Flipped": "Invertita", "DEMA_input": "DEMA", "Move_input": "Move", "NV_input": "NV", "Choppiness Index_study": "Choppiness Index", "Study Template '{0}' already exists. Do you really want to replace it?": "Modello di Studio '{0}' gia' esistente. Vuoi sostituirlo?", "Merge Down": "Unisci in basso", " per contract": " per contratto", "Overlay the main chart": "Sovrapponi sul grafico principale", "Screen (No Scale)": "Schermo (senza scala)", "Delete": "Elimina", "Save Indicator Template As": "Salva Modello Indicatore Come", "Length MA_input": "Length MA", "percent_input": "percent", "September": "Settembre", "{0} copy": "{0} copia", "Avg HL in minticks": "Media HL in miniticks", "Accumulation/Distribution_input": "Accumulazione/Distribuzione", "Sync": "Sincronizza", "C_in_legend": "C (Chiusura)", "Weeks_interval": "Settimane", "smoothK_input": "smoothK", "Percentage_scale_menu": "Percentuale", "Change Extended Hours": "Cambia orari estesi", "MOM_input": "MOM", "h_interval_short": "h", "Change Interval": "Cambia periodo", "Change area background": "Modifica lo sfondo", "Modified Schiff": "Schiff modificato", "top": "alto", "Custom color...": "Colore personalizzato...", "Send Backward": "Sposta indietro", "Mexico City": "Città del Messico", "TRIX_input": "TRIX", "Show Price Range": "Visualizza Intervallo prezzo", "Elliott Major Retracement": "Ritracciamento maggiore Elliott", "ASI_study": "ASI", "Notification": "Notifica", "Fri": "Ven", "just now": "ora", "Forecast": "Previsione", "Fraction part is invalid.": "La frazione non è valida.", "Connecting": "Connettendo", "Ghost Feed": "Proiezione fantasma", "Signal_input": "Signal", "Histogram_input": "Histogram", "The Extended Trading Hours feature is available only for intraday charts": "La funzionalità orari di negoziazione estesi è disponibile solo per i grafici intraday", "Stop syncing": "Interrompi sincronizzazione", "open": "apertura", "StdDev_input": "StdDev", "EMA Cross_study": "EMA Cross", "Conversion Line Periods_input": "Conversion Line Periods", "Oversold_input": "Ipervenduto", "My Scripts": "I miei Scripts", "Monday": "Lunedì", "Add Symbol_compare_or_add_symbol_dialog": "Aggiungi simbolo", "Williams %R_study": "Williams %R", "Symbol": "Simbolo", "a month": "un mese", "Precision": "Precisione", "depth_input": "depth", "Go to": "Vai a", "Please enter chart layout name": "Inserisci nome configurazione grafico", "VWAP_study": "VWAP", "Date": "Data", "Format...": "Proprietà...", "__dayName__ __specialSymbolOpen__at__specialSymbolClose__ __dayTime__": "__dayName__\n__specialSymbolOpen__a__specialSymbolClose__ __dayTime__", "Toggle Maximize Pane": "Espandi riquadro", "Search": "Cerca", "Zig Zag_study": "Zig Zag", "Actual": "Attuale", "SUCCESS": "OPERAZIONE RIUSCITA", "Long period_input": "Long period", "length_input": "length", "roclen4_input": "roclen4", "Price Line": "Linea quotazioni", "Area With Breaks": "Area interrotta", "Zoom Out": "Rimpicciolisci", "Stop Level. Ticks:": "Livello Stop. Ticks:", "Window Size_input": "Window Size", "Economy & Symbols": "Economia & Simboli", "Circle Lines": "Linee Cerchi", "Visual Order": "Ordine visualizzazione", "__specialSymbolOpen__Yesterday at__specialSymbolClose__ __dayTime__": "__specialSymbolOpen__Ieri a__specialSymbolClose____dayTime__", "Stop Background Color": "Colore sfondo Stop", "1. Slide your finger to select location for first anchor
    2. Tap anywhere to place the first anchor": "1. Trascina il dito per selezionare la posizione del primo punto di ancoraggio
    2. Tocca per stabilire il primo punto di ancoraggio", "Sector": "Settore", "powered by TradingView": "fornito da TradingView", "Text:": "Testo:", "Stochastic_study": "Stocastico", "Sep": "Set", "TEMA_input": "TEMA", "Apply WPT Up Wave": "Applica onde crescenti WPT", "Min Move 2": "Mov min 2", "Extend Left End": "Estendi estremità sinistra", "Projection down bars": "Barre a proiezione inferiore", "Advance/Decline_study": "Advance/Decline", "Any Number": "Qualsiasi numero", "Flag Mark": "Segno bandiera", "Drawings": "Disegni", "Cancel": "Annulla", "Compare or Add Symbol": "Confronta o aggiungi simbolo", "Redo": "Ripeti", "Hide Drawings Toolbar": "Nascondi Barra Strumenti Disegno", "Ultimate Oscillator_study": "Ultimate Oscillatore", "Vert Grid Lines": "Linee vert. griglia", "Growing_input": "Growing", "Angle": "Angolo", "Plot_input": "Plot", "Color 8_input": "Colore 8", "Indicators, Fundamentals, Economy and Add-ons": "Indicatori, fondamentali, economia e componenti aggiuntivi", "h_dates": "h", "ROC Length_input": "ROC Length", "roclen3_input": "roclen3", "Overbought_input": "Ipercomprato", "Extend Top": "Estendi sopra", "Change Minutes To": "Cambia minuti a", "No study templates saved": "Non ci sono modelli studi salvati", "Trend Line": "Linea trend", "TimeZone": "Fuso orario", "Your chart is being saved, please wait a moment before you leave this page.": "Sto salvando il grafico, aspettare un momento prima di lasciare la pagina.", "Percentage": "Percentuale", "Tu_day_of_week": "Mar", "RSI Length_input": "Periodo RSI", "Triangle": "Triangolo", "Line With Breaks": "Linea interrotta", "Period_input": "Period", "Watermark": "Filigrana", "Trigger_input": "Trigger", "SigLen_input": "SigLen", "Extend Right": "Estendi a destra", "Color 2_input": "Colore 2", "Show Prices": "Visualizza Prezzi", "Copy": "Copia", "Arc": "Arco", "Edit Order": "Modifica ordine", "January": "Gennaio", "Arrow Mark Right": "Segno freccia dx", "Extend Alert Line": "Estendi linea allarme", "Background color 1": "Colore sfondo 1", "RSI Source_input": "Fonte RSI", "Close Position": "Chiudi posizione", "Stop syncing drawing": "Disabilita sincronia disegni", "Visible on Mouse Over": "Visibile al passaggio del mouse", "MA/EMA Cross_study": "MA/EMA Cross", "Thu": "Gio", "Vortex Indicator_study": "Indicatore Vortex", "view-only chart by {user}": "guarda solo grafico di {user}", "ROCLen1_input": "ROCLen1", "M_interval_short": "M", "Chaikin Oscillator_input": "Chaikin Oscillator", "Price Levels": "Livelli prezzo", "Show Splits": "Mostra split", "Zero Line_input": "Zero Line", "Replay Mode": "Modalità Replay", "__specialSymbolOpen__Today at__specialSymbolClose__ __dayTime__": "__specialSymbolOpen__Oggi a__specialSymbolClose____dayTime__", "Increment_input": "Increment", "Days_interval": "Giorni", "Show Right Scale": "Mostra scala destra", "Show Alert Labels": "Mostra etichette alert", "Historical Volatility_study": "Volatilità Storica", "Lock": "Blocca", "length14_input": "length14", "High": "Massimo", "ext": "est", "Date and Price Range": "Range data e prezzo", "Polyline": "Polilinea", "Reconnect": "Riconnetti", "Lock/Unlock": "Blocca/Sblocca", "Base Level": "Livello base", "Saturday": "Sabato", "Symbol Last Value": "Ultimo valore simbolo", "Above Bar": "Sopra la barra", "Studies": "Studi", "Color 0_input": "Colore 0", "Add Symbol": "Aggiungi simbolo", "maximum_input": "maximum", "Wed": "Mer", "Paris": "Parigi", "D_data_mode_delayed_letter": "D", "Sigma_input": "Sigma", "VWMA_study": "VWMA", "fastLength_input": "fastLength", "Time Levels": "Livelli tempo", "Width": "Larghezza", "Loading": "Caricamento", "Template": "Modello", "Use Lower Deviation_input": "Use Lower Deviation", "Up Wave 3": "Su Onda 3", "Parallel Channel": "Canale parallelo", "Time Cycles": "Cicli temporali", "Second fraction part is invalid.": "Seconda frazione non valida.", "Divisor_input": "Divisor", "Down Wave 1 or A": "Onda giù 1 o A", "ROC_input": "ROC", "Dec": "Dic", "Ray": "Raggio", "Extend": "Estendi", "length7_input": "length7", "Bring Forward": "Sposta avanti", "Bottom": "Fondo", "Berlin": "Berlino", "Undo": "Annulla", "Original": "Originale", "Mon": "Lun", "Right Labels": "Etichette destra", "Long Length_input": "Long Length", "True Strength Indicator_study": "True Strength Indicatore", "%R_input": "%R", "There are no saved charts": "Non ci sono grafici salvati", "Instrument is not allowed": "Strumento non consentito", "bars_margin": "barre", "Decimal Places": "Posizioni decimali", "Show Indicator Last Value": "Visualizza ultimo valore indicatore", "Initial capital": "Capitale iniziale", "Show Angle": "Visualizza angolo", "Mass Index_study": "Mass Index", "More features on tradingview.com": "Ancora più funzioni su tradingview.com", "Objects Tree...": "Albero Oggetti...", "Remove Drawing Tools & Indicators": "Elimina strumenti di disegno e indicatori", "Length1_input": "Periodo1", "Always Invisible": "Sempre invisibile", "Circle": "Cerchio", "Days": "Giorni", "x_input": "x", "Save As...": "Salva con nome", "Elliott Double Combo Wave (WXY)": "Onda di Elliott doppia combo (WXY)", "Parabolic SAR_study": "SAR Parabolico", "Any Symbol": "Qualsiasi simbolo", "Variance": "Varianza", "Stats Text Color": "Colore testo Statistiche", "Minutes": "Minuti", "Short RoC Length_input": "Short RoC Length", "Projection": "Proiezione", "Jan": "Gen", "Jaw_input": "Jaw", "Right": "Destra", "Help": "Aiuto", "Coppock Curve_study": "Curva Coppock", "Reversal Amount": "Ammontare di inversione", "Reset Chart": "Ripristina grafico", "Marker Color": "Colore evidenziatore", "Sunday": "Domenica", "Left Axis": "Asse sinistro", "Open": "Apertura", "YES": "SÌ", "longlen_input": "longlen", "Moving Average Exponential_study": "Media Mobile Esponenziale", "Source border color": "Colore bordo Origine", "Redo {0}": "Ripeti {0}", "Cypher Pattern": "Cypher pattern", "s_dates": "s", "Open Interval Dialog": "Apri Finestra intervallo", "Triangle Pattern": "Pattern a triangolo", "Balance of Power_study": "Balance of Power", "EOM_input": "EOM", "Shapes_input": "Shapes", "Apply Manual Risk/Reward": "Applica rischio/rendimento manuale", "Market Closed": "Mercato Chiuso", "Indicators": "Indicatori", "q_input": "q", "You are notified": "Hai ricevuto una notifica", "Font Icons": "Font icone", "%D_input": "%D", "Border Color": "Colore bordo", "Offset_input": "Offset", "Risk": "Rischio", "Price Scale": "Scala quotazioni", "HV_input": "HV", "Seconds": "Secondi", "Start_input": "Inizia", "Elliott Impulse Wave (12345)": "Onda di Elliott impulsiva (12345)", "Hours": "Ore", "Send to Back": "Porta in secondo piano", "Color 4_input": "Colore 4", "Angles": "Angoli", "Prices": "Prezzi", "Hollow Candles": "Candele vuote", "July": "Luglio", "Create Horizontal Line": "Crea retta orizzontale", "Minute": "Minuto", "Cycle": "Ciclo", "ADX Smoothing_input": "ADX Smoothing", "One color for all lines": "Un colore per tutte le linee", "m_dates": "m", "Settings": "Impostazioni", "Candles": "Candele", "We_day_of_week": "Mer", "Width (% of the Box)": "Ampiezza (% del grafico)", "%d minute": "%d minuto", "Go to...": "Vai a...", "Pip Size": "Dimensione Pip", "Wednesday": "Mercoledì", "This drawing is used in alert. If you remove the drawing, the alert will be also removed. Do you want to remove the drawing anyway?": "Il disegno è associato a un alert. Se rimuovi il disegno, anche l'alert sarà rimosso. Vuoi comunque rimuovere il disegno?", "Show Countdown": "Mostra conto alla rovescia", "Show alert label line": "Mostra linea etichetta alert", "Down Wave 2 or B": "Onda giù 2 o B", "MA_input": "MA", "Length2_input": "Periodo2", "not authorized": "non autorizzato", "Session Volume_study": "Volume di sessione", "Image URL": "URL Immagine", "SMI Ergodic Oscillator_input": "SMI Ergodic Oscillator", "Show Objects Tree": "Mostra albero oggetti", "Primary": "Primario", "Price:": "Prezzo:", "Bring to Front": "Porta in primo piano", "Brush": "Pennello", "Not Now": "Non ora", "Yes": "Sì", "C_data_mode_connecting_letter": "C", "SMALen4_input": "SMALen4", "Apply Default Drawing Template": "Applica Modello disegno predefinito", "Compact": "Compatto", "Save As Default": "Salva come predefinito", "Target border color": "Colore bordo Target", "Invalid Symbol": "Simbolo non valido", "Inside Pitchfork": "Pitchfork Inside", "yay Color 1_input": "yay Color 1", "Quandl is a huge financial database that we have connected to TradingView. Most of its data is EOD and is not updated in real-time, however the information may be extremely useful for fundamental analysis.": "Quandl è un enorme database finanziario che abbiamo collegato a TradingView. La maggior parte dei dati sono EOD e non sono aggiornati in tempo reale, tuttavia le informazioni potrebbero comunque essere estremamente utili nell'analisi dei fondamentali.", "Hide Marks On Bars": "Nascondi note sulle barre", "Cancel Order": "Annulla ordine", "Hide All Drawing Tools": "Nascondi tutti gli strumenti di disegno", "WMA Length_input": "WMA Length", "Show Dividends on Chart": "Mostra dividendi sul grafico", "Show Executions": "Mostra esecuzioni", "Borders": "Bordi", "Remove Indicators": "Elimina Indicatori", "loading...": "caricando....", "Closed_line_tool_position": "Chiuso", "Rectangle": "Rettangolo", "Change Resolution": "Cambia risoluzione", "Indicator Arguments": "Agomenti indicatore", "Symbol Description": "Descrizione simbolo", "Chande Momentum Oscillator_study": "Chande Momentum Oscillatore", "Degree": "Gradi", " per order": " per ordine", "Line - HL/2": "Linea - HL/2", "Supercycle": "SuperCiclo", "Jun": "Giu", "Least Squares Moving Average_study": "Least Squares Media Mobile", "Change Variance value": "Modifica valore Varianza", "powered by ": "fornito da ", "Source_input": "Fonte", "Change Seconds To": "Cambia da secondi a", "%K_input": "%K", "Scales Text": "Testo Scala assi", "Please enter template name": "Inserisci il nome del modello", "Symbol Name": "Nome simbolo", "Events Breaks": "Separatori eventi", "Study Templates": "Modelli Studio", "Months": "Mesi", "Symbol Info...": "Informazioni simbolo...", "Elliott Wave Minor": "Onda Elliott minore", "Cross": "Croce", "Measure (Shift + Click on the chart)": "Misura (Shift + clic sul grafico)", "Override Min Tick": "Sovrascrivi Tick Min", "Show Positions": "Mostra posizioni", "Dialog": "Discussione", "Add To Text Notes": "Aggiungi al blocco note", "Elliott Triple Combo Wave (WXYXZ)": "Onda di Elliot tripla combo (WXYXZ)", "Multiplier_input": "Multiplier", "Risk/Reward": "Rischio/Rendimento", "Base Line Periods_input": "Base Line Periods", "Show Dividends": "Mostra dividendi", "Relative Strength Index_study": "Relative Strength Index", "Modified Schiff Pitchfork": "Pitchfork Schiff modificata", "Top Labels": "Etichette in alto", "Show Earnings": "Mostra utili", "Line - Open": "Linea - Aperta", "Elliott Triangle Wave (ABCDE)": "Onde di Elliot triangolo (ABCDE)", "Minuette": "Minuetto", "Text Wrap": "Testo a capo", "Reverse Position": "Inverti posizione", "Elliott Minor Retracement": "Ritracciamento minore Elliott", "DPO_input": "DPO", "Th_day_of_week": "Gio", "Slash_hotkey": "Slash", "No symbols matched your criteria": "Nessun simbolo corrisponde ai criteri", "Icon": "Icona", "lengthRSI_input": "lengthRSI", "Tuesday": "Martedì", "Teeth Length_input": "Teeth Length", "Indicator_input": "Indicatore", "Athens": "Atene", "Fib Speed Resistance Arcs": "Archi Fib", "Content": "Contenuto", "middle": " mezzo", "Lock Cursor In Time": "Fissa cursore al tempo", "Intermediate": "Intermedio", "Eraser": "Cancellino", "Relative Vigor Index_study": "Relative Vigor Index", "Envelope_study": "Envelope", "Pre Market": "Pre Mercato", "Horizontal Line": "Retta orizzontale", "O_in_legend": "O (Apertura)", "Confirmation": "Conferma", "HL Bars": "Barre HL", "Lines:": "Linee:", "Hide Favorite Drawings Toolbar": "Nascondi barra strumenti disegno preferiti", "Buenos Aires": "Buenos Aires ", "useTrueRange_input": "useTrueRange", "Profit Level. Ticks:": "Livello profitto. Tick:", "Show Date/Time Range": "Visualizza Intervallo data/ora", "Level {0}": "Livello {0}", "Favorites": "Preferiti", "Horz Grid Lines": "Linee orizz. griglia", "-DI_input": "-DI", "Price Range": "Range prezzo", "day": "giorno", "deviation_input": "deviation", "Account Size": "Dimensione conto", "Value_input": "Valore", "Time Interval": "Intervallo", "Success text color": "Colore Testo riuscito", "ADX smoothing_input": "ADX smoothing", "%d hour": "%d ora", "Order size": "Grandezza ordine", "Drawing Tools": "Strumenti di disegno", "Save Drawing Template As": "Salva Modello disegno come", "Traditional": "Tradizionale", "Chaikin Money Flow_study": "Chaikin Money Flow", "Ease Of Movement_study": "Ease Of Movement", "Defaults": "Predefiniti", "Percent_input": "Percent", "Interval is not applicable": "Intervallo non valido", "short_input": "short", "Visual settings...": "Impostazioni visualizzazione...", "RSI_input": "RSI", "Chatham Islands": "Isole Chatham", "Detrended Price Oscillator_input": "Detrended Price Oscillator", "Mo_day_of_week": "Lun", "Up Wave 4": "Su Onda 4", "center": "centro", "Vertical Line": "Linea verticale", "Show Splits on Chart": "Mostra split sul grafico", "Sorry, the Copy Link button doesn't work in your browser. Please select the link and copy it manually.": "Spiacenti, il tasto Copia Link non funziona con il tuo browser. Selezionare il link desiderato e copiarlo manualmente.", "Levels Line": "Linea livelli", "Events & Alerts": "Eventi & Alert", "May": "Maggio", "ROCLen4_input": "ROCLen4", "Aroon Down_input": "Aroon Down", "Add To Watchlist": "Aggiungi alla watchlist", "Total": "Totale", "Price": "Prezzo", "left": "sinistra", "Lock scale": "Blocca scala", "Limit_input": "Limit", "Change Days To": "Cambia giorni in", "Price Oscillator_study": "Oscillatore Prezzo", "smalen1_input": "smalen1", "Drawing Template '{0}' already exists. Do you really want to replace it?": "Modello disegno '{0}' già esistente. Sostituirlo?", "Show Middle Point": "Mostra punto centrale", "KST_input": "KST", "Extend Right End": "Estendi estremità destra", "Fans": "Ventagli", "Line - Low": "Linea - In basso", "Price_input": "Prezzo", "Gann Fan": "Ventaglio Gann", "Weeks": "Settimane", "McGinley Dynamic_study": "McGinley Dynamic", "Relative Volatility Index_study": "Relative Volatility Index", "Source Code...": "Codice sorgente...", "PVT_input": "PVT", "Show Hidden Tools": "Mostra strumenti nascosti", "Hull Moving Average_study": "Hull Media Mobile", "Symbol Prev. Close Value": "Valore Chiusura Precedente", "{0} chart by TradingView": "{0} grafico da TradingView", "Right Shoulder": "Spalla destra", "Remove Drawing Tools": "Elimina strumenti di disegno", "Friday": "Venerdì", "Zero_input": "Zero", "Company Comparison": "Comparazione simboli", "Stochastic Length_input": "Stochastic Length", "mult_input": "mult", "URL cannot be received": "L'URL non può essere ricevuto", "Success back color": "Colore Sfondo riuscito", "E_data_mode_end_of_day_letter": "E", "Trend-Based Fib Extension": "Estensione Fibonacci", "Top": "Alto", "Double Curve": "Curva doppia", "Stochastic RSI_study": "Stocastico RSI", "Horizontal Ray": "Semiretta orizzontale", "smalen3_input": "smalen3", "Symbol Labels": "Etichette simbolo", "Script Editor...": "Editor script", "Trades on Chart": "Trades sul Grafico", "Listed Exchange": "Quotato in borsa", "Error:": "Errore:", "Fullscreen mode": "Modalità schermo intero", "Add Text Note For {0}": "Aggiungi nota per {0}", "K_input": "K", "Do you really want to delete Drawing Template '{0}' ?": "Vuoi davvero cancellare il Modello disegno '{0}' ?", "ROCLen3_input": "ROCLen3", "Restore Size": "Ripristina dimensione", "Text Color": "Colore Testo", "Rename Chart Layout": "Rinomina Configurazione grafico", "Built-ins": "Integrati", "Background color 2": "Colore sfondo 2", "Drawings Toolbar": "Barra degli strumenti di disegno", "New Zealand": "Nuova Zelanda", "CHOP_input": "CHOP", "Apply Defaults": "Applica predefiniti", "% of equity": "% del patrimonio netto", "Extended Alert Line": "Linea estesa allarme", "Note": "Nota", "Moving Average Channel_study": "Canale media mobile", "like": "mi piace", "Show": "Mostra", "{0} bars": "{0} barre", "Lower_input": "Lower", "Created ": "Creato ", "Warning": "Avviso", "Elder's Force Index_study": "Indice Elder's Force", "Show Earnings on Chart": "Mostra utili sul grafico", "ATR_input": "ATR", "Low": "Minimo", "Bollinger Bands %B_study": "Bande di Bollinger %B", "Time Zone": "Fuso orario", "right": "destra", "%d month": "%d mese", "Wrong value": "Valore errato", "Upper Band_input": "Upper Band", "Sun": "Dom", "start_input": "start", "No indicators matched your criteria.": "Nessun indicatore corrisponde ai criteri", "Commission": "Commissione", "Down Color": "Colore giù", "Short length_input": "Short length", "Triple EMA_study": "Tripla EMA", "Technical Analysis": "Analisi tecnica", "Show Text": "Visualizza Testo", "Channel": "Canale", "FXCM CFD data is available only to FXCM account holders": "I dati FXCM CFD sono disponibili solo per i possessori di account FXCM", "Lagging Span 2 Periods_input": "Lagging Span 2 Periods", "Connecting Line": "Linea giuntura", "bottom": "basso", "Teeth_input": "Teeth", "Sig_input": "Sig", "Open Manage Drawings": "Apri Gestisci disegni", "Save New Chart Layout": "Salva nuovo layout grafico", "Fib Channel": "Canale Fib", "Save Drawing Template As...": "Salva Modello disegno come...", "Minutes_interval": "Minuti", "Up Wave 2 or B": "Su Onda 2 o B", "Columns": "Colonne", "Directional Movement_study": "Movimento Direzionale", "roclen2_input": "roclen2", "Apply WPT Down Wave": "Applica onde decrescenti WPT", "Not applicable": "Non applicabile", "Bollinger Bands %B_input": "Bollinger Bands %B", "Default": "Predefinito", "Template name": "Nome modello", "Indicator Values": "Valori indicatore", "Lips Length_input": "Lips Length", "Toggle Log Scale": "Seleziona/Deseleziona scala logaritmica", "L_in_legend": "L (Minimo)", "Remove custom interval": "Rimuovi intervallo personalizzato", "shortlen_input": "shortlen", "Quotes are delayed by {0} min": "Quotazioni in ritardo di {0} min", "Hide Events on Chart": "Nascondi eventi sul grafico", "Williams Alligator_study": "Williams Alligator", "Profit Background Color": "Colore sfondo profitto", "Bar's Style": "Tipo di grafico", "Exponential_input": "Exponential", "Down Wave 5": "Onda giù 5", "Previous": "Precedente", "Stay In Drawing Mode": "Rimani in modalità disegno", "Comment": "Commento", "Connors RSI_study": "Connors RSI", "Bars": "Barre", "Show Labels": "Visualizza etichette", "Flat Top/Bottom": "Cima/Fondo piatto", "Symbol Type": "Categoria simbolo", "December": "Dicembre", "Lock drawings": "Blocca disegni", "Border color": "Colore bordo", "Change Seconds From": "Cambia in Secondi da", "Left Labels": "Etichette sinistra", "Insert Indicator...": "Inserisci indicatore...", "ADR_B_input": "ADR_B", "Paste %s": "Incolla %s", "Change Symbol...": "Cambia simbolo...", "Timezone": "Fuso orario", "Invite-only script. You have been granted access.": "Script invite-only. Ti è stato dato l'accesso.", "Color 6_input": "Colore 6", "Oct": "Ott", "ATR Length": "Periodo ATR", "{0} financials by TradingView": "{0} dati finanziari da TradingView", "Extend Lines Left": "Estendi linee a sinistra", "Source back color": "Colore sfondo Origine", "Transparency": "Trasparenza", "June": "Giugno", "Cyclic Lines": "Linee cicliche", "length28_input": "length28", "ABCD Pattern": "Pattern ABCD", "When selecting this checkbox the study template will set \"__interval__\" interval on a chart": "Quando selezioni questa casella, il modello di studio verrà impostato su \"__interval__\" intervallo sul grafico", "Add": "Aggiungi", "OC Bars": "Barre OC", "Millennium": "Millennio", "On Balance Volume_study": "On Balance Volume", "Apply Indicator on {0} ...": "Applica indicatore su {0} ...", "NEW": "NUOVO", "Chart Layout Name": "Nome configurazione grafico", "Up bars": "Barre su", "Hull MA_input": "Hull MA", "Lock Scale": "Blocca scala", "distance: {0}": "distanza {0}", "Extended": "Esteso", "Three Drives Pattern": "Pattern Three Drives", "Median_input": "Median", "Top Margin": "Margine superiore", "Up fractals_input": "Up fractals", "Insert Drawing Tool": "Inserisci strumento di disegno", "OHLC Values": "Valori OHLC", "Correlation_input": "Correlation", "Session Breaks": "Separatori sessione", "Add {0} To Watchlist": "Aggiungi {0} alla watchlist", "Anchored Note": "Nota ancorata", "lipsLength_input": "lipsLength", "Apply Indicator on {0}": "Applica indicatore su {0}", "UpDown Length_input": "UpDown Length", "Price Label": "Etichetta quotazioni", "November": "Novembre", "Balloon": "Fumetto", "Track time": "Traccia tempo", "Background Color": "Colore sfondo", "an hour": "un'ora", "Right Axis": "Asse destro", "D_data_mode_delayed_streaming_letter": "D", "VI -_input": "VI -", "slowLength_input": "slowLength", "Click to set a point": "Clicca per definire un punto", "Save Indicator Template As...": "Salva Modello Indicatore Come..", "n/a": "n.d.", "Indicator Titles": "Titoli indicatore", "Failure text color": "Colore testo non riuscito", "Sa_day_of_week": "Sab", "Net Volume_study": "Volumi Netti", "Error": "Errore", "Edit Position": "Modifica posizione", "RVI_input": "RVI", "Centered_input": "Centered", "Recalculate On Every Tick": "Ricalcola ad ogni Tick", "Left": "Sinistra", "Simple ma(oscillator)_input": "Simple ma(oscillator)", "Compare": "Confronta", "Fisher Transform_study": "Fisher Transform", "Show Orders": "Mostra ordini", "Zoom In": "Ingrandisci", "Length EMA_input": "Length EMA", "Enter a new chart layout name": "Inserisci nome nuova configurazione grafico", "Signal Length_input": "Signal Length", "FAILURE": "OPERAZIONE NON RIUSCITA", "Point Value": "Valore punto", "D_interval_short": "D", "MA with EMA Cross_study": "MA with EMA Cross", "Price Channel_study": "Canale prezzo", "Close": "Chiusura", "ParabolicSAR_input": "ParabolicSAR", "Log Scale_scale_menu": "Scala logaritmica", "MACD_input": "MACD", "Do not show this message again": "Non mostrare più questo messaggio", "No Overlapping Labels": "Nessuna etichetta sovrapposta", "Arrow Mark Left": "Segno freccia sx", "Slow length_input": "Slow length", "Line - Close": "Linea - Chiusura", "Confirm Inputs": "Conferma input", "Open_line_tool_position": "Aperto", "Lagging Span_input": "Lagging Span", "Subminuette": "Sotto-Minuetto", "Thursday": "Giovedì", "Elliott Correction Wave (ABC)": "Onda di Elliott correttiva (ABC)", "Error while trying to create snapshot.": "Errore nel creare l' istantanea", "Label Background": "Sfondo etichetta", "Templates": "Modelli", "Please report the issue or click Reconnect.": "Per favore segnala il problema o clicca Riconnetti", "Normal": "Normale", "Signal Labels": "Etichette di segnale", "Delete Text Note": "Elimina nota di testo", "compiling...": "compilando...", "Detrended Price Oscillator_study": "Detrended Price Oscillatore", "Color 5_input": "Colore 5", "Fixed Range_study": "Intervallo fisso", "Up Wave 1 or A": "Su Onda 1 o A", "Scale Price Chart Only": "Scala solo grafico prezzo", "Unmerge Up": "Separa verso l'alto", "auto_scale": "auto", "Short period_input": "Short period", "Background": "Sfondo", "Up Color": "Colore Su", "Apply Elliot Wave Intermediate": "Applica un'onda di Elliot intermedia", "VWMA_input": "VWMA", "Lower Deviation_input": "Lower Deviation", "Save Interval": "Salva Periodo", "February": "Febbraio", "Reverse": "Inverti", "Oops, something went wrong": "Oops, qualcosa è andato storto", "Add to favorites": "Aggiungi ai preferiti", "Median": "Mediana", "ADX_input": "ADX", "Remove": "Elimina", "len_input": "len", "Arrow Mark Up": "Segno freccia su", "April": "Aprile", "Active Symbol": "Simbolo attivo", "Extended Hours": "Orari estesi", "Crosses_input": "Crosses", "Middle_input": "Middle", "Read our blog for more info!": "Leggi il nostro blog per saperne di più.", "Sync drawing to all charts": "Sincronizza disegni di tutti i grafici", "LowerLimit_input": "LowerLimit", "Know Sure Thing_study": "Know Sure Thing", "Copy Chart Layout": "Copia configurazione grafico", "Compare...": "Confronta...", "1. Slide your finger to select location for next anchor
    2. Tap anywhere to place the next anchor": "1. Trascina il dito per selezionare la posizione del successivo punto di ancoraggio
    2. Tocca per stabilire il successivo punto di ancoraggio", "Text Notes are available only on chart page. Please open a chart and then try again.": "Il blocco note è disponibile solo alla pagina del grafico. apri un grafico e poi riprova.", "Color": "Colore", "Aroon Up_input": "Aroon Up", "Apply Elliot Wave Major": "Applica un'onda di Elliot maggiore", "Scales Lines": "Linee Scala assi", "Type the interval number for munute charts (i.e. 5 if it is going to be a five minute chart). Or number plus letter for H (Hourly), D (Daily), W (Weekly), M (Monthly) intervals (i.e. D or 2H)": "Digita l'intervallo di minuti che desideri vedere (ad esempio se digiti 5 avrai un grafico 5-min). Oppure puoi digitare un numero seguito da una lettera tra H (Orario), D (Giornaliero), W (Settimanale), M (Mensile) per cambiare timeframe (ad esempio \"2H\" sarà un grafico 2-ore)", "Ellipse": "Ellisse", "Up Wave C": "Su Onda C", "Show Distance": "Visualizza distanza", "Risk/Reward Ratio: {0}": "Rapporto rischio/rendimento: {0}", "Volume Oscillator_study": "Oscillatore Volumi", "Williams Fractal_study": "Williams Fractal", "Merge Up": "Unisci in alto", "Right Margin": "Margine destro", "Moscow": "Mosca", "Warsaw": "Varsavia"} \ No newline at end of file diff --git a/charting_library/static/localization/translations/ja.json b/charting_library/static/localization/translations/ja.json index 045e2242..94db6a9f 100644 --- a/charting_library/static/localization/translations/ja.json +++ b/charting_library/static/localization/translations/ja.json @@ -1 +1 @@ -{"ticks_slippage ... ticks": "ticks", "Months_interval": "月足", "EOD": "末日", "Hide Events on Chart": "チャートのイベントを非表示にする", "RSI Length_input": "RSI Length", "month": "月足", "London": "ロンドン", "roclen1_input": "roclen1", "Unmerge Down": "重ねずに下へ移動", "Percents": "パーセント", "Search Note": "ノートを検索", "Minor": "マイナー", "Do you really want to delete Chart Layout '{0}' ?": "チャートレイアウト '{0}' を本当に消去しますか?", "Quotes are delayed by {0} min and updated every 30 seconds": "データは{0}分遅れておりリ30秒毎で更新されています。", "June": "6月", "Magnet Mode": "マグネットモード", "Grand Supercycle": "グランドスーパーサイクル", "OSC_input": "OSC", "Hide alert label line": "アラートラベルのラインを非表示", "Volume_study": "出来高", "Lips_input": "Lips", "Show real prices on price scale (instead of Heikin-Ashi price)": "平均足ではなく実際の価格スケールで表示する。", "Histogram": "ヒストグラム", "Base Line_input": "Base Line", "Step": "ステップ", "Elliott Wave Circle": "エリオット波動サークル", "Fib Time Zone": "フィボナッチ・タイムゾーン", "SMALen2_input": "SMALen2", "Bollinger Bands_study": "ボリンジャーバンド", "Nov": "11月", "Show/Hide": "表示/非表示", "Cancel Order": "注文をキャンセル", "Sig_input": "Sig", "Move Up": "上に移動", "Sigma_input": "Sigma", "This indicator cannot be applied to another indicator": "このインジケーターは他のインジケータに適用できません", "Gann Square": "ギャン・スクウェア", "Count_input": "Count", "Full Circles": "完全な円", "Industry": "業界", "SMALen1_input": "SMALen1", "Cross_chart_type": "クロス", "Target Color:": "ターゲットの色:", "a day": "日", "Pitchfork": "ピッチフォーク", "Normal": "通常", "Accumulation/Distribution_study": "累積/分配", "Rate Of Change_study": "変化率", "Risk/Reward short": "リスク/リワード・ショート", "in_dates": ":", "Color 7_input": "Color 7", "Change Average HL value": "平均 HL 値の変更", "Scales Properties": "スケールプロパティ", "Trend-Based Fib Time": "トレンドに基づくフィボナッチ時間", "Remove All Indicators": "すべてのインディケータを削除", "Oscillator_input": "オシレーター", "Last Modified": "最終更新", "yay Color 0_input": "yay Color 0", "Labels": "ラベル", "Chande Kroll Stop_study": "Chande Krollストップ", "Hours_interval": "時間足", "Scale Right": "右スケール", "Money Flow_study": "マネーフロー", "siglen_input": "siglen", "Indicator Labels": "インジケーターラベル", "Tuesday": "火曜日", "__specialSymbolOpen__Tomorrow at__specialSymbolClose__ __dayTime__": "__specialSymbolOpen__明日の__specialSymbolClose____dayTime__", "Toggle Percentage": "%トグル", "Remove All Drawing Tools": "すべての描画ツールを削除", "Remove all line tools for ": "全ラインツールを削除", "Linear Regression Curve_study": "Linear Regression Curve", "Symbol_input": "Symbol", "Currency": "通貨", "Upper Deviation_input": "Upper Deviation", "Rename Chart Layout": "チャートレイアウトの名前を変更", "Save Chart Layout": "チャートレイアウトを保存", "Number Of Line": "線の数", "Label": "ラベル", "second": "テイック", "Any Number": "数字", "smoothD_input": "smoothD", "Falling_input": "Falling", "Percentage": "%", "Donchian Channels_study": "Donchianチャネル", "Entry price:": "エントリー価格:", "RSI Source_input": "RSI Source", " per contract": "契約毎", "Open Manage Drawings": "描画の管理を開く", "Ichimoku Cloud_study": "一目雲", "jawLength_input": "jawLength", "Toggle Log Scale": "ログスケールの切り替えトグル", "Apply Elliot Wave Major": "エリオット波動メジャーの適用", "Grid": "グリッド", "Mass Index_study": "Mass インデックス", "Slippage": "スリッページ", "Smoothing_input": "Smoothing", "Color 3_input": "Color 3", "Jaw Length_input": "Jaw Length", "Almaty": "アルマトイ", "Inside": "内側", "Delete all drawing for this symbol": "このシンボル状のすべての描画を削除", "Quotes are delayed by 10 min and updated every 30 seconds": "データ配信は、10分遅延しています。30秒ごとに更新されます。", "Keltner Channels_study": "ケルトナーチャネル", "Long Position": "ロングポジション", "Bands style_input": "Bands style", "Undo {0}": "{0}をもとに戻す", "With Markers": "マーカー", "Momentum_study": "モメンタム", "MF_input": "MF", "On Balance Volume_study": "オン・バランス・ボリューム", "Switch to the next chart": "次のチャートに切り替える", "Change Hours To": "時間を変更", "charts by TradingView": "TradingViewによるチャート", "Long length_input": "Long length", "Flipped": "水平反転", "Indicator Last Value": "インジケーターの終値", "Supermillennium": "スーパーミレニウム", "W_interval_short": "週", "Color 6_input": "Color 6", "Log Scale": "ログスケール", "Line - High": "ライン - 高値", "Zurich": "チューリッヒ", "Equality Line_input": "Equality Line", "Open": "開く", "Heikin Ashi": "平均足", "Line": "ライン", "Session": "セッション", "Down fractals_input": "Down fractals", "Fib Retracement": "フィボナッチ・リトレースメント", "smalen2_input": "smalen2", "isCentered_input": "isCentered", "Border": "枠", "Klinger Oscillator_study": "Klinger オシレーター", "Absolute": "絶対値", "Style": "スタイル", "Show Left Scale": "左のスケールを表示する", "SMI Ergodic Indicator/Oscillator_study": "SMI Ergodic Indicator/Oscillator", "Istanbul": "イスタンブール", "Cross": "交差", "Last available bar": "最後のバー", "Manage Drawings": "描画アイテムの管理", "Analyze Trade Setup": "トレード解析の設定", "No drawings yet": "未描画", "Chande MO_input": "Chande MO", "Copy link": "リンクをコピー", "TRIX_study": "TRIXトリックス", "MACD_study": "MACD", "RVGI_input": "RVGI", "Realtime": "リアルタイム", "Last edited ": "最終編集", "signalLength_input": "signalLength", "Middle_input": "Middle", "Reset Settings": "設定をリセット", "PnF": "ポイントアンドフィギュア", "Renko": "練行足", "d_dates": "日", "Point & Figure": "ポイント&フィギュア", "August": "8月", "Recalculate After Order filled": "注文約定後に再計算", "Source_compare": "ソース", "Correlation Coefficient_study": "補正係数", "Delayed": "遅延", "Bottom Labels": "下ラベル", "Text color": "フォントカラー", "Levels": "レベル", "Short Length_input": "Short Length", "teethLength_input": "teethLength", "Failure text color": "失敗のテキスト色", "instrument is not allowed": "この金融商品では出来ません。", "Hong Kong": "香港", "FAILURE": "失敗", "Open {{symbol}} Text Note": "{{symbol}}メモを開く", "October": "10月", "Lock All Drawing Tools": "すべての描画ツールをロックする", "Target border color": "ターゲットの枠色", "Right End": "右端", "Show Symbol Last Value": "シンボルの最終値を表示", "Head & Shoulders": "ヘッド&ショルダー", "Do you really want to delete Study Template '{0}' ?": "学習用テンプレート{0}を消去しますか?", "Favorite Drawings Toolbar": "お気に入りの描画ツールバー", "Properties...": "プロパティ ...", "MA Cross_study": "移動平均線の交差", "Trend Angle": "トレンド角", "Snapshot": "スナップショット", "Crosshair": "クロスヘアー", "Signal line period_input": "Signal line period", "Timezone/Sessions Properties...": "タイムゾーン/セッションのプロパティ...", "Line Break": "ラインブレイク", "Quantity": "数量", "Price Volume Trend_study": "プライス出来高トレンド", "Extend Left": "左端の拡張", "hour": "時間足", "Scales": "スケール", "Delete chart layout": "チャートのレイアウトを削除する。", "Text": "テキスト", "F_data_mode_forbidden_letter": "F", "Risk/Reward long": "リスク/リワード比・ロング", "Apr": "4月", "Long RoC Length_input": "Long RoC Length", "Length3_input": "Length3", "Upper_input": "Upper", "Madrid": "マドリード", "Use one color": "一つの色を使って下さい", "Exit Full Screen (ESC)": "フルスクリーンを終了(ESC)", "Show Bars Range": "バー範囲を表示", "Show Economic Events on Chart": "チャート上に経済イベントを表示", "%s ago_time_range": "%s 前", "Zoom In": "ズームイン", "Failure back color": "失敗の場合の背景色", "Below Bar": "バーの下", "Coordinates": "座標", "Time Scale": "時間スケール", "

    Only D, W, M intervals are supported for this symbol/exchange. You will be automatically switched to a D interval. Intraday intervals are not available because of exchange policies.

    ": "

    このシンボル・取引所は、D、W、Mの時間足のみ対応しています。自動的に、日足に切り替えられます。イントラデーは、取引所のポリシーにより利用できません。

    ", "high": "高値", "Date Range": "日付範囲", "Min Move": "最小の動き", "Price format is invalid.": "値段のフォーマットが無効です。", "Show Price": "価格表示", "Level_input": "Level", "Hide Favorite Drawings Toolbar": "お気に入り描画ツールバーを非表示", "Commodity Channel Index_study": "商品チャンネル指数(CCI)", "Elder's Force Index_input": "Elder's Force Index", "Scales Properties...": "スケールプロパティ...", "Phoenix": "フェニックス", "Format": "設定", "Color bars based on previous close": "前バーの終値に基づいたバーの色", "Change band background": "背景バンドの変更", "Marketplace Add-ons": "マーケットプレイス アドオン", "Adjust Scale": "スケールを調整する", "Anchored Text": "リンク", "Edit {0} Alert...": "アラート{0}を編集...", "Text:": "テキスト:", "Aroon_study": "アーロン", "show MA_input": "show MA", "Ashkhabad": "アシュカバッド", "h_dates": "時間", "Short Position": "ショートポジション", "Show Labels": "ラベル表示", "Change Interval...": "時間足の変更 ...", "Apply Default": "デフォルト適用", "SMALen3_input": "SMALen3", "Average Directional Index_study": "ADI", "Fr_day_of_week": "金曜", "Invite-only script. Contact the author for more information.": "招待者のみへの公開スクリプト。投稿者へ連絡して下さい。", "Curve": "曲線", "a year": "一年", "H_in_legend": "高値", "Bars Pattern": "バーのパターン", "D_input": "D", "Right Labels": "右ラベル", "Change Interval": "時間足の変更", "p_input": "p", "Chart layout name": "チャートレイアウト名", "Fib Circles": "フィボナッチ・サークル", "Apply Manual Decision Point": "マニュアルの決定ポイントを設定", "Dot": "ドット", "Target back color": "ターゲットの背景色", "All": "すべて", "Show Positions": "ポジション表示", "orders_up to ... orders": "orders", "Lead 2_input": "Lead 2", "Save image": "画像の保存", "Fundamentals": "ファンダメンタル", "Unlock": "ロック解除", "Up Wave 2 or B": "上昇波 2 または B", "Box Size": "ボックスのサイズ", "Navigation Buttons": "ナビゲーションボタン", "Miniscule": "極小", "Apply": "適用", "Show Countdown": "カウントダウン表示", "Precise Labels": "詳細ラベル", "Sine Line": "サイン曲線", "{0} financials by TradingView": "{0}TradingViewによる金融", "%d day": "%d日", "Hide": "非表示", "Bottom": "下", "Target text color": "ターゲットのテキスト色", "Scale Left": "左スケール", "Elliott Wave Subminuette": "エリオット波動サブミニュエット", "Down Wave C": "下落波 C", "Jan": "1月", "Variance": "変数", "Source back color": "背景色のソース", "Sao Paulo": "サンパウロ", "Oct": "10月", "Apply Elliot Wave Minor": "エリオット波動マイナーの適用", "Inputs": "入力", "Conversion Line_input": "Conversion Line", "March": "3月", "Su_day_of_week": "日曜", "Up fractals_input": "Up fractals", "Regression Trend": "回帰トレンド", "Auto Scale": "自動スケール", "Symbol Description": "シンボル詳細", "Double EMA_study": "2重EMA", "minute": "分足", "Price Oscillator_study": "プライスオシレーター", "Sync drawings to all charts": "全てのチャートに描画を同期する", "Chop Zone_study": "Chopゾーン", "Stop Color:": "逆指値の色:", "Stay in Drawing Mode": "描画モードを維持", "Bottom Margin": "下マージン", "Dubai": "ドバイ", "Save Chart Layout saves not just some particular chart, it saves all charts for all symbols and intervals which you are modifying while working with this Layout": "「チャートレイアウトを保存」は、特定のチャートを保存することではありません。現在お使いのレイアウトでのシンボル、時間足などすべての変更を保存します。", "Average True Range_study": "平均の真の変動幅", "Max value_input": "Max value", "MA Length_input": "MA Length", "Invite-Only Scripts": "招待者のみへの公開スクリプト", "Time Interval": "時間足", "UpperLimit_input": "UpperLimit", "sym_input": "sym", "DI Length_input": "DI Length", "Script Editor...": "スクリプトエディタ", "Extend Lines": "拡張ライン", "SMI_input": "SMI", "Change Days To": "日を変更", "Square": "スクエア", "Basis_input": "Basis", "Moving Average_study": "移動平均線", "lengthStoch_input": "lengthStoch", "Taipei": "台北", "Objects Tree": "情報ツリー", "Remove from favorites": "お気に入りから削除", "Copy": "コピー", "Scale Series Only": "スケール列のみ", "Simple": "シンプル", "Report a data issue": "データの問題を報告", "Arnaud Legoux Moving Average_study": "Arnaud Legoux 移動平均", "Technical Analysis": "テクニカル解析", "Brisbane": "ブリスベン", "Verify Price for Limit Orders": "指値の価格確認", "VI +_input": "VI +", "Line Width": "ライン幅", "Lead 1_input": "Lead 1", "Always Show Stats": "常に統計表示", "Down Wave 4": "下落波 4", "Down Wave 5": "下落波 5", "Simple ma(signal line)_input": "Simple ma(signal line)", "Ray": "レイ", "Public Library": "公開ライブラリ", " Do you really want to delete Drawing Template '{0}' ?": " 図のテンプレート '{0}' を本当に消去しますか?", "Down Wave 3": "下落波 3", "Left Shoulder": "左ショルダー", "Close message": "メッセージを閉じる", "UTC": "UTC (協定世界時) ", "Show Drawings Toolbar": "描画ツールバーを表示", "Chaikin Oscillator_study": "Chaikin オシレーター", "Price Source": "価格のソース", "Market Open": "市場開始", "Color Theme": "カラーテーマ", "Projection up bars": "上昇足予測", "Centered_input": "Centered", "Bollinger Bands Width_input": "ボリンジャーバンド幅", "Apply Indicator on {0} ...": " {0} ...にインディケータを適用", "Fib Speed Resistance Arcs": "フィボナッチ・スピード抵抗円弧", "Error occured while publishing": "投稿中にエラーが発生しました", "Fisher_input": "Fisher", "Color 1_input": "Color 1", "Moving Average Weighted_study": "Moving Average Weighted", "Save": "保存", "Type": "タイプ", "Chart Layout Name": "チャートレイアウト名", "Short period_input": "Short period", "Load Chart Layout": "チャートレイアウトを読み込み", "Show Values": "価格を表示", "Fib Speed Resistance Fan": "フィボナッチ・スピード抵抗ファン", "Compare": "比較", "This chart layout has more than 1000 drawings, which is a lot! This may negatively affect performance, storage and publishing. We recommend to remove some drawings to avoid potential performance issues.": "チャートのレイアウトは1000以上あります。これはサイトのパフォーマンス、ストレージと公開されえたコンテンツに影響を与えることがあります。パフォーマンスに問題がある際はいくつかの描画を削除することを推奨します。", "Left End": "左端", "%d year": "%d年", "Always Visible": "常に非表示", "S_data_mode_snapshot_letter": "S", "post-market": "取引終了後", "Flag": "フラッグ", "Change Minutes To": "分数を変更", "Earnings breaks": "損益分岐点", "Do not ask again": "何度も聞かないで下さい", "MTPredictor": "MTPredictor ", "Extend Right End": "右端の拡張", "Tue": "火曜日", "smalen4_input": "smalen4", "CCI_input": "CCI", "Unmerge Up": "重ねずに上へ移動", "increment_input": "increment", "(H + L)/2": "(高値+ 安値)/2", "XABCD Pattern": "XABCDパターン", "Schiff Pitchfork": "シフ・ピッチフォーク", "hl2": "高値安値平均", "powered by {0}": "提供元{0}", "DEMA_input": "DEMA", "NV_input": "NV", "Choppiness Index_study": "Choppinessインデックス", "Study Template '{0}' already exists. Do you really want to replace it?": "学習用テンプレート{0}は既に存在します。本当に上書きしますか?", "Merge Down": "下へ重ねる", "Th_day_of_week": "木曜日", "Studies": "スタデイ", "eod delayed": "遅延日足データ", "Delete": "削除", "Traditional": "伝統的な", "in %s_time_range": "in %s", "percent_input": "percent", "September": "9月", "Length_input": "Length", "Avg HL in minticks": "平均高値安値のティック数", "Accumulation/Distribution_input": "Accumulation/Distribution", "Sync": "同期", "C_in_legend": "終値", "Weeks_interval": "週足", "smoothK_input": "smoothK", "Percentage_scale_menu": "パーセント", "Change Extended Hours": "時間外取引を変更する", "MOM_input": "MOM", "h_interval_short": "時間", "Rotated Rectangle": "傾斜長方形", "Modified Schiff": "変形 シッフ", "Symbol": "シンボル", "Adelaide": "アデレード", "Send Backward": "最背面へ移動", "Mexico City": "メキシコシティ", "TRIX_input": "TRIX", "Show Price Range": "価格レンジの表示", "Elliott Major Retracement": "エリオット・メジャーリトレースメント", "Notification": "通知", "Fri": "金曜日", "just now": "たった今", "Forecast": "予測", "Fraction part is invalid.": "小数部分が無効です。", "Connecting": "接続中", "Ghost Feed": "ゴースト配信", "Histogram_input": "ヒストグラム", "The Extended Trading Hours feature is available only for intraday charts": "時間外取引の機能は、イントラデーのチャートでのみ利用できます。", "StdDev_input": "StdDev", "Change Minutes From": "分に変更する", "Relative Strength Index_study": "RSI", "Interval is not applicable": "時間足を適用できません。", "My Scripts": "マイスクリプト", "Monday": "月曜日", "-DI_input": "-DI", "short_input": "short", "top": "上", "a month": "月", "Precision": "精度", "depth_input": "depth", "Please enter chart layout name": "チャートレイアウトの名前を入力してください", "Mar": "3月", "Arrow Down": "下矢印", "Date": "日付", "Format...": "設定 ...", "Toggle Auto Scale": "自動スケールトグル", "Toggle Maximize Pane": "チャート最大化トグル", "Periods_input": "期間", "Zig Zag_study": "Zig Zag", "Actual": "現在", "SUCCESS": "成功", "Detrended Price Oscillator_input": "Detrended Price Oscillator", "{0} copy": "{0}をコピー", "length_input": "length", "Close Position": "ポジション決済", "Price Line": "価格ライン", "Area With Breaks": "エリアをブレイク", "Zoom Out": "ズームアウト", "Stop Level. Ticks:": "逆指値レベル ティック:", "Jul": "7月", "Allow up to": "上へ", "Visual Order": "表示の並び順", "Warning": "警告", "__specialSymbolOpen__Yesterday at__specialSymbolClose__ __dayTime__": "__specialSymbolOpen__昨日の__specialSymbolClose____dayTime__", "Stop Background Color": "逆指値幅の背景色", "Slow length_input": "Slow length", "Conversion Line Periods_input": "Conversion Line Periods", "Sector": "業種", "powered by TradingView": "提供元 TradingView", "Stochastic_study": "ストキャスティクス", "Apply WPT Down Wave": "WPTダウンウェーブを適用", "Marker Color": "マーカーの色", "TEMA_input": "TEMA", "Apply WPT Up Wave": "WPTアップウェーブを適用", "Min Move 2": "最小の動き2", "Directional Movement_study": "方向性指数 DMI", "Extend Left End": "左端の拡張", "Projection down bars": "下降足予測", "Advance/Decline_study": "上昇/下降", "New York": "ニューヨーク", "Flag Mark": "フラッグマーク", "Drawings": "描画アイテム", "Fast length_input": "Fast length", "Cancel": "キャンセル", "Bar #": "バー番号", "Median_input": "Median", "Redo": "やり直し", "Hide Drawings Toolbar": "描画アイテムツールバーを非表示", "Ultimate Oscillator_study": "究極オシレーター", "This chart layout has a lot of objects and can't be published! Please report to {0} for further details.": "このチャートのレイアウトは、オブジェクトがありすぎて、投稿することができません。さらなる詳細は、{0}へ報告してください。", "Vert Grid Lines": "垂直線グリッドライン", "Growing_input": "Growing", "Angle": "角度", "Show Only Future Events": "将来のイベントのみを表示", "Plot_input": "Plot", "Chicago": "シカゴ", "Color 8_input": "Color 8", "San Salvador": "サンサルバドル ", "Search": "検索", "Bollinger Bands Width_study": "ボリンジャーバンド幅", "roclen3_input": "roclen3", "Overbought_input": "Overbought", "DPO_input": "DPO", "Levels Line": "レベルライン", "No study templates saved": "保存されたスタディテンプレートはありません。", "Trend Line": "トレンドライン", "Relative Vigor Index_study": "RVI 相対的活力指数", "Your chart is being saved, please wait a moment before you leave this page.": "あなたのチャートは保存されました。このページを切り替える前に、数秒待ってください。", "Circle": "円", "Price Range": "価格レンジ", "Extended Hours": "時間外取引", "Los Angeles": "ロサンジェルス", "Triangle": "三角", "Line With Breaks": "ラインをブレイク", "Period_input": "期間", "Watermark": "透かし", "Trigger_input": "Trigger", "SigLen_input": "SigLen", "Clone": "複製", "Color 2_input": "Color 2", "Show Prices": "価格表示", "Contracts": "先物契約", "{0} chart by TradingView": "{0}TradingViewによるチャート", "Timezone/Sessions": "タイムゾーン/セッション", "Save Indicator Template As...": "このインジケーターのテンプレートを名前を付けて保存...", "Arrow Mark Right": "右矢印", "Background color 2": "背景色2", "Background color 1": "背景色1", "Circles": "円", "McGinley Dynamic_study": "McGinleyダイナミクス", "Visible on Mouse Over": "マウスの移動時に表示", "Thu": "木曜日", "Vortex Indicator_study": "Vortex", "Williams Alligator_study": "Williams アリゲーター", "delayed": "遅延表示", "ROCLen1_input": "ROCLen1", "Border Color": "枠色", "M_interval_short": "月", "Change Symbol...": "シンボルの変更 ...", "Price Levels": "価格レベル", "Show Splits": "分割を表示", "Zero Line_input": "Zero Line", "__specialSymbolOpen__Today at__specialSymbolClose__ __dayTime__": "__specialSymbolOpen__今日の__specialSymbolClose____dayTime__", "Increment_input": "Increment", "Days_interval": "日足", "Show Right Scale": "右のスケールを表示する", "Show Alert Labels": "アラートラベル表示", "Net Volume_study": "ネット出来高", "Lock": "ロック", "length14_input": "length14", "Sa_day_of_week": "土曜日", "High": "高値", "ext": "時間外", "Date and Price Range": "日付と価格範囲", "Polyline": "折れ線", "Reconnect": "再接続", "Add to favorites": "お気に入りへ追加", "Saturday": "土曜日", "Symbol Last Value": "シンボルの終値", "Above Bar": "バーの上", "Color 0_input": "Color 0", "maximum_input": "maximum", "Wed": "水曜日", "Paris": "パリ", "D_data_mode_delayed_letter": "D", "Symbol Info": "シンボル情報", "Pyramiding": "ピラミッティング", "fastLength_input": "fastLength", "Width": "幅", "Historical Volatility_study": "ボラタリティ履歴", "Template": "テンプレート", "Compare or Add Symbol...": "比較、またはシンボルの追加...", "Parallel Channel": "平行チャネル", "Time Cycles": "時間サイクル", "Second fraction part is invalid.": "小数部分が無効です。", "Divisor_input": "Divisor", "Down Wave 1 or A": "下落波 1 または A", "ROC_input": "ROC", "Dec": "12月", "Extend": "拡張", "length7_input": "length7", "Toggle Maximize Chart": "チャート最大化トグル", "Send to Back": "一つ下に移動", "Undo": "取り消す", "Window Size_input": "Window Size", "Mon": "月曜日", "Reset Scale": "スケールをリセット", "Long Length_input": "Long Length", "True Strength Indicator_study": "真力指数", "%R_input": "%R", "There are no saved charts": "保存されたチャートはありません", "Chart Properties": "チャートプロパティ", "bars_margin": "バー", "Show Indicator Last Value": "インディケーターの値を表示", "Initial capital": "初期資金", "Show Angle": "角度表示", "Honolulu": "ホノルル", "More features on tradingview.com": "TradingViewの更なる特徴", "smalen3_input": "smalen3", "Length1_input": "Length1", "Always Invisible": "常に非表示", "Days": "日", "x_input": "x", "Save As...": "名前を付けて保存 ...", "Lock/Unlock": "ロック/解除", "Elliott Double Combo Wave (WXY)": "エリオット波動 複合型(WXY)", "Parabolic SAR_study": "パラボリックSAR", "Fisher Transform_study": "Fisher変換", "Show Hidden Tools": "非表示ツールを表示", "Hollow Candles": "中空ろうそく足", "Any Symbol": "シンボル", "UO_input": "UO", "Stats Text Color": "テキスト色", "Minutes": "分", "Short RoC Length_input": "Short RoC Length", "Show Orders": "注文表示", "Countdown": "カウントダウン", "Jaw_input": "Jaw", "Right": "右", "Help": "ヘルプ", "Coppock Curve_study": "Coppock 曲線", "Reversal Amount": "反転の大きさ", "Reset Chart": "チャートをリセット", "Sep": "9月", "Sunday": "日曜日", "Themes": "テーマ", "Left Axis": "左軸", "YES": "はい", "longlen_input": "longlen", "Moving Average Exponential_study": "指数移動平均", "Source border color": "枠色のソース", "Redo {0}": "{0}をやり直し", "Cypher Pattern": "サイファーパターン", "s_dates": "s", "Move Down": "下に移動", "Caracas": "カラカス", "Area": "エリア", "invalid symbol": "不明なシンボル", "Triangle Pattern": "三角パターン", "Gann Fan": "ギャン・ファン", "Balance of Power_study": "バランスオブパワー", "EOM_input": "EOM", "Font Size": "フォントサイズ", "Drawings Toolbar": "描画ツールバー", "Apply Manual Risk/Reward": "手動での損失/利益(リスク/リワード)を設定", "Sydney": "シドニー", "Indicators": "インジケーター", "close": "終値", "Callout": "呼び出し", "q_input": "q", "You are notified": "あなたは通知されました。", "%D_input": "%D", "Text Alignment:": "テキスト揃え:", "Offset_input": "オフセット", "Risk": "リスク", "Price Scale": "価格スケール", "HV_input": "HV", "Seconds": "秒", "(H + L + C)/3": "(高値+ 安値+終値)/3", "Start_input": "スタート", "R_data_mode_realtime_letter": "R", "Hours": "時間", "Berlin": "ベルリン", "Color 4_input": "Color 4", "Angles": "角度", "Prices": "価格", "Extended Hours (Intraday Only)": "時間外取引(イントラデーのみ)", "July": "7月", "Create Horizontal Line": "水平ラインを作成", "Minute": "分", "Cycle": "サイクル", "ADX Smoothing_input": "ADX Smoothing", "One color for all lines": "全てのラインを1つの色にする", "m_dates": "分", "Settings": "設定", "Drawing Tools": "描画ツール", "Candles": "ローソク足", "We_day_of_week": "水曜日", "Width (% of the Box)": "幅(箱の%)", "%d minute": "%d分", "Pip Size": "Pipサイズ", "Wednesday": "水曜日", "This drawing is used in alert. If you remove the drawing, the alert will be also removed. Do you want to remove the drawing anyway?": "この描画アイテムは、あるアラートに使われています。もし描画アイテムを削除するのであれば、アラートも削除されます。アイテムを削除しますか?", "Hide All Drawing Tools": "すべての描画ツールを非表示", "Show alert label line": "アラートラベルラインを表示", "Down Wave 2 or B": "下落波 2 または B", "MA_input": "MA", "Detrended Price Oscillator_study": "トレンド除去価格オシレーター(DPO)", "not authorized": "認証されていません", "Bar's Style": "バーのスタイル", "Image URL": "画像 URL", "Submicro": "サブミクロ", "SMI Ergodic Oscillator_input": "SMI Ergodic Oscillator", "Show Objects Tree": "情報ツリーの表示", "Primary": "プライマリー", "Price:": "価格:", "Gann Box": "ギャン・ボックス", "Bring to Front": "最上面へ移動", "Brush": "ブラシ", "Not Now": "あとで", "lengthRSI_input": "lengthRSI", "Yes": "はい", "Events & Alerts": "イベント&アラート", "+DI_input": "+DI", "Apply Default Drawing Template": "デフォルト描画テンプレートを適用", "Save As Default": "デフォルトを保存", "Invalid Symbol": "不明なシンボル", "Inside Pitchfork": "インサイド・ピッチフォーク", "yay Color 1_input": "yay Color 1", "Quandl is a huge financial database that we have connected to TradingView. Most of its data is EOD and is not updated in real-time, however the information may be extremely useful for fundamental analysis.": "QuandlはTradingViewに接続されている大きな金融データベースです。殆どのデータは終日データでありリアルタイムデータではございませんが、ファンダメンタル分析を行うにあたり大変便利な情報です。", "Hide Marks On Bars": "バーの上のマーカーを非表示", "Note": "ノート", "Kagi": "カギ足", "WMA Length_input": "WMA Length", "Show Dividends on Chart": "チャート上に配当を表示", "Show Executions": "約定を表示", "Borders": "枠", "loading...": "読み込み中 ...", "Closed_line_tool_position": "終了", "Columns": "列", "Change Resolution": "時間足を変更", "Indicator Arguments": "インジケータの引数", "Fib Spiral": "フィボナッチ・スパイラル", "Apply Elliot Wave": "エリオット波動の適用", "Degree": "角度", " per order": "注文毎", "Line - HL/2": "ライン - HL/2", "Up Wave 4": "上昇波 4", "Jun": "6月", "Least Squares Moving Average_study": "最小二乗法移動平均", "Change Variance value": "変数の変更", "Overlay the main chart": "メインチャートに重ねる", "powered by ": "提供元", "Source_input": "Source", "Disjoint Angle": "非連結の角度チャンネル", "%K_input": "%K", "Success back color": "成功の場合の背景色", "Toronto": "トロント", "Please enter template name": "テンプレート名を入力してください。", "Symbol Name": "シンボル名", "Tokyo": "東京", "Events Breaks": "ブレイクイベント", "Study Templates": "スタディテンプレート", "long_input": "long", "Months": "か月", "Symbol Info...": "シンボル情報...", "Elliott Wave Minor": "エリオット波動マイナー", "Read our blog for more info!": "ブログを読んでもっと知る!", "Measure (Shift + Click on the chart)": "測定 (Shift+チャート上をクリック)", "Override Min Tick": "小数点表示", "Thursday": "木曜日", "Dialog": "ダイアログ", "Add To Text Notes": "テキストノートへ追加", "Elliott Triple Combo Wave (WXYXZ)": "エリオットトリプルコンボ波動(WXYXZ)", "Multiplier_input": "Multiplier", "Risk/Reward": "リスク・リワード", "Base Line Periods_input": "Base Line Periods", "Show Dividends": "配当を表示", "pre-market": "取引開始前", "Top Labels": "上ラベル", "Show Earnings": "収益を表示", "Line - Open": "ライン - 開始値", "Elliott Triangle Wave (ABCDE)": "エリオットトライアングル波(ABCDE)", "Minuette": "ミニュット", "Text Wrap": "テキスト修飾", "Reverse Position": "ポジションを反転", "Elliott Minor Retracement": "エリオット・マイナーリトレースメント", "Pitchfan": "ピッチファン", "No symbols matched your criteria": "条件に合うシンボルがありません", "Icon": "アイコン", "Short_input": "Short", "Fib Wedge": "フィボナッチ・ウェッジ", "Indicator_input": "インジケータ", "Open Interval Dialog": "時間足ダイアログを開く", "Shanghai": "上海", "Athens": "アテネ", "Q_input": "Q", "Content": "内容", "middle": "中央", "Lock Cursor In Time": "カーソル位置をロック", "Intermediate": "インターミディエイト", "Eraser": "消しゴム", "TimeZone": "タイムゾーン", "Envelope_study": "エンベロープ", "Symbol Labels": "シンボルラベル", "Active Symbol": "アクティブシンボル", "Horizontal Line": "水平ライン", "O_in_legend": "始値", "Confirmation": "確認", "HL Bars": "HLバー", "Add Alert": "アラートを追加", "Lines:": "ライン", "hlc3": "高値安値終値平均", "Buenos Aires": "ブエノスアイレス", "useTrueRange_input": "useTrueRange", "Bangkok": "バンコク", "Profit Level. Ticks:": "利益幅 ティック :", "Show Date/Time Range": "日付・時間レンジを表示", "Level {0}": "レベル {0}", "Horz Grid Lines": "水平グリッドライン", "Text Notes are available only on chart page. Please open a chart and then try again.": "テキストノートは、チャートページでのみ利用可能です。チャートを開き、もう一度試してください。", "Tu_day_of_week": "火曜日", "day": "日足", "deviation_input": "deviation", "week": "週足", "Base currency": "基本通貨", "VWMA_study": "VWMA出来高加重平均", "Success text color": "成功のテキスト色", "ADX smoothing_input": "ADX smoothing", "%d hour": "%d時間", "Order size": "発注サイズ", "Displacement_input": "Displacement", "Tokelau": "トケラウ", "ohlc4": "始値高値安値終値平均", "Save Indicator Template As": "インジケーターのテンプレートを保存", "ADR_B_input": "ADR_B", "Chaikin Money Flow_study": "Chaikinマネー・フロー", "Ease Of Movement_study": "Ease ムーブメント", "Defaults": "デフォルト", "Percent_input": "Percent", "Signal Labels": "シグナルラベル", "Oversold_input": "Oversold", "Williams %R_study": "Williams %R", "Visual settings...": "表示設定...", "RSI_input": "RSI", "Long period_input": "Long period", "Mo_day_of_week": "月曜日", "center": "中央", "Vertical Line": "垂直線", "Bogota": "ボゴタ", "Show Splits on Chart": "株式分割をチャートに表示", "Sorry, the Copy Link button doesn't work in your browser. Please select the link and copy it manually.": "このブラウザではリンクをコピーするボタンが作動しません。リンクを選択してマニュアルでコピーして下さい。", "X_input": "X", "C_data_mode_connecting_letter": "C", "Simple ma(oscillator)_input": "Simple ma(oscillator)", "compiling...": "コンパイル中...", "SMALen4_input": "SMALen4", "ROCLen4_input": "ROCLen4", "Aroon Down_input": "Aroon Down", "Add To Watchlist": "ウォッチリストに追加", "Total": "合計", "Extend Right": "右端の拡張", "left": "左", "Lock scale": "スケールのロック", "Time Levels": "時間レベル", "Arrow": "矢印", "smalen1_input": "smalen1", "Drawing Template '{0}' already exists. Do you really want to replace it?": "図のテンプレート '{0}' は既に存在します。本当に置き換えますか?", "Offset": "オフセット", "Fans": "ファン", "Line - Low": "ライン - 安値", "Price_input": "Price", "Close_input": "閉じる", "Arrow Mark Down": "下矢印", "Weeks": "週", "Modified Schiff Pitchfork": "変形 シフ・ピッチフォーク", "Relative Volatility Index_study": "相対ボラテリティ指数", "Elliott Impulse Wave (12345)": "エリオットインパルス波動(12345)", "PVT_input": "PVT", "Circle Lines": "円ライン", "Hull Moving Average_study": "Hull 移動平均", "Aug": "8月", "Save Drawing Template As": "描画テンプレートを名前をつけて保存", "Bring Forward": "一つ上に移動", "Apply Defaults": "デフォルトの適用", "Friday": "金曜日", "Zero_input": "Zero", "Company Comparison": "企業比較", "Stochastic Length_input": "Stochastic Length", "mult_input": "mult", "URL cannot be received": "URLが受信できません", "Signal smoothing_input": "Signal smoothing", "E_data_mode_end_of_day_letter": "E", "Trend-Based Fib Extension": "トレンドに基づくフィボナッチ拡張", "Top": "上", "Double Curve": "2次曲線", "Stochastic RSI_study": "ストキャスティクス RSI", "Horizontal Ray": "水平レイ", "Ok": "OK", "Edit Order": "注文を編集", "Trades on Chart": "チャートから取引", "Chaikin Oscillator_input": "Chaikin Oscillator", "Listed Exchange": "上場取引所", "Error:": "エラー:", "Fullscreen mode": "フルスクリーンモード", "Add Text Note For {0}": "テキストノートを{0}に追加", "K_input": "K", "In Session": "セッション内", "ROCLen3_input": "ROCLen3", "Micro": "ミクロ", "Text Color": "フォントカラー", "Extend Alert Line": "アラートラインを延長", "Oops!": "おっと、!", "New Zealand": "ニュージーランド", "CHOP_input": "CHOP", "Scale": "スケール", "Screen (No Scale)": "スクリーン(スケールなし)", "Extended Alert Line": "時間外取引のアラート", "Signal_input": "Signal", "like": "いいね", "Original": "オリジナル", "Show": "表示", "Exchange": "取引所", "{0} bars": "{0} バー", "Lower_input": "Lower", "Created ": "作成されました", "Arc": "円弧", "Elder's Force Index_study": "Elderフォース指数", "Show Earnings on Chart": "チャート上に収益を表示", "ATR_input": "ATR", "Do you really want to delete Color Theme '{0}' ?": "色のテーマ '{0}' を本当に消去しますか?", "Low": "安値", "Bollinger Bands %B_study": "ボリンジャーバンド %B", "Time Zone": "タイムゾーン", "right": "右", "%d month": "%d月", "Wrong value": "間違った値", "Upper Band_input": "Upper Band", "Sun": "日曜日", "Rename...": "名前の変更 ...", "February": "2月", "start_input": "start", "No indicators matched your criteria.": "条件に合うインディケータがありません。", "Commission": "コミッション手数料", "Short length_input": "Short length", "Kolkata": "カルカッタ", "Submillennium": "サブミレニウム", "Precise Labels_scale_menu": "詳細ラベル", "Smoothed Moving Average_study": "スムース・移動平均線", "Do you really want to delete Drawing Template '{0}' ?": "図のテンプレート '{0}' を本当に消去しますか?", "Chatham Islands": "チャタム諸島", "Channel": "チャネル", "Stop syncing drawing": "描画の同期を停止", "FXCM CFD data is available only to FXCM account holders": "FXCMのCFDデータはFXCMの口座をお持ちの方のみ提供可能となります。", "Lagging Span 2 Periods_input": "Lagging Span 2 Periods", "Connecting Line": "ライン接続", "Seoul": "ソウル", "Lower Band_input": "Lower Band", "Teeth_input": "Teeth", "Moscow": "モスクワ", "Save New Chart Layout": "新規チャートレイアウトを保存", "Fib Channel": "フィボナッチ・チャネル", "Visibility": "可視性", "Events": "イベント", "Save Drawing Template As...": "描画テンプレートを名前をつけて保存", "Minutes_interval": "分足", "Insert Study Template": "スタディテンプレートを入れる", "exponential_input": "指数", "OnBalanceVolume_input": "OnBalanceVolume", "roclen2_input": "roclen2", "Chande Momentum Oscillator_study": "Chande モメンタムオシレーター", "Not applicable": "適用できません。", "or copy url:": "URL をコピー :", "Bollinger Bands %B_input": "ボリンジャーバンド%B", "Singapore": "シンガポール", "Template name": "テンプレート名", "Indicator Values": "インディケータの値", "Lips Length_input": "Lips Length", "Use Upper Deviation_input": "Use Upper Deviation", "L_in_legend": "安値", "Remove custom interval": "カスタム時間足を削除", "shortlen_input": "shortlen", "Quotes are delayed by {0} min": "相場は{0}分遅延しています", "Copied to clipboard": "クリップボードにコピーされました", "ADX_input": "ADX", "Profit Background Color": "利益幅の背景色", "Trading": "トレーディング", "Exponential_input": "指数", "ROCLen2_input": "ROCLen2", "Use Lower Deviation_input": "Use Lower Deviation", "Previous": "前へ", "Stay In Drawing Mode": "描画モードを維持", "Comment": "コメント", "Long_input": "Long", "Bars": "バー", "Source text color": "テキスト色のソース", "Flat Top/Bottom": "上下フラット", "Symbol Type": "シンボルタイプ", "loading data": "データの読み込み中", "December": "12月", "Lock drawings": "描画をロックする", "Border color": "枠色", "Change Seconds From": "秒から変える", "Left Labels": "左ラベル", "Insert Indicator...": "インジケーターを挿入 ...", "P_input": "P", "Paste %s": "貼り付け%s", "Timezone": "タイムゾーン", "Invite-only script. You have been granted access.": "招待者のみへの公開スクリプトへアクセスを付与されました。", "Sat": "土曜日", "Rectangle": "長方形", "Supercycle": "スーパーサイクル", "Feb": "2月", "Transparency": "透明", "No": "いいえ", "All Indicators And Drawing Tools": "すべてのインディケーター、すべての描画ツール", "Cyclic Lines": "円ライン", "length28_input": "length28", "ABCD Pattern": "ABCDパターン", "closed": "終了", "When selecting this checkbox the study template will set \"__interval__\" interval on a chart": "このチェックボックスを選択するときスタディテンプレートは、チャートの__interval__の時間足に設定されます。", "NO": "いいえ", "Add": "追加", "OC Bars": "OCOCバー", "Millennium": "ミレニアム", "Price Label": "価格ラベル", "Graphics": "グラフィック", "NEW": "新規", "Wick": "ヒゲ", "Hull MA_input": "Hull MA", "Schiff": "シッフ", "Lock Scale": "スケールのロック", "distance: {0}": "距離: {0}", "Extended": "時間外", "Three Drives Pattern": "3ドライブパターン", "Create Vertical Line": "垂直線を作成", "Arcs": "円弧", "Top Margin": "上マージン", "Length2_input": "Length2", "Insert Drawing Tool": "描画ツールを挿入する", "OHLC Values": "OHLC値", "Correlation_input": "Correlation", "Scales Text": "スケールテキスト", "Session Breaks": "セッション区切り", "Add {0} To Watchlist": "ウオッチリストに {0} を追加", "Anchored Note": "アンカーノート", "lipsLength_input": "lipsLength", "low": "安値", "Apply Indicator on {0}": " {0}にインディケータを適用", "roclen4_input": "roclen4", "November": "11月", "Tehran": "テヘラン", "Balloon": "バルーン", "Change Seconds To": "秒へ変える", "Background Color": "背景色", "an hour": "1時間", "Right Axis": "右軸", "D_data_mode_delayed_streaming_letter": "D", "VI -_input": "VI -", "slowLength_input": "slowLength", "Click to set a point": "ポイントをクリックで指定", "January": "1月", "Indicators, Fundamentals, Economy and Add-ons": "インジケーター、ファンダメンタル、経済指標、アドオン", "Arrow Up": "上矢印", "n/a": "該当なし", "Indicator Titles": "インジケーターのタイトル", "retrying": "再試行中", "Change area background": "背景エリアの変更", "Error": "エラー", "Edit Position": "ポジションを編集", "RVI_input": "RVI", "Awesome Oscillator_study": "Awesomeオシレーター", "Recalculate On Every Tick": "ティックごとに再計算", "Left": "左", "Show Text": "テキスト表示", "Objects Tree...": "情報ツリー", "Source Code": "ソースコード", "Add Symbol": "シンボルの追加", "Projection": "投影", "Track time": "トラックタイム", "Enter a new chart layout name": "新しいチャートレイアウトの名前を入力してください", "Signal Length_input": "Signal Length", "Properties": "プロパティ", "Teeth Length_input": "Teeth Length", "Point Value": "ポイント値", "D_interval_short": "日", "Close": "閉じる", "ParabolicSAR_input": "ParabolicSAR", "Log Scale_scale_menu": "ログスケール", "MACD_input": "MACD", "Do not show this message again": "このメッセージを二度と表示しない。", "{0} P&L: {1}": "{0} 利益&損失: {1}", "Up Wave 3": "上昇波 3", "Arrow Mark Left": "左矢印", "Source Code...": "ソースコード ...", "Up Wave 5": "上昇波 5", "Line - Close": "ライン - 終値", "(O + H + L + C)/4": "(始値+ 高値+ 安値+終値)/4", "Confirm Inputs": "入力を確認", "Open_line_tool_position": "開始", "Lagging Span_input": "Lagging Span", "Subminuette": "サブミニュエット", "Mirrored": "垂直反転", "Price": "価格", "Vancouver": "バンクーバー", "Triple EMA_study": "トリプル EMA", "Elliott Correction Wave (ABC)": "エリオット波動 修正波(ABC)", "Error while trying to create snapshot.": "スナップショット作成中にエラー発生", "Label Background": "ラベル背景", "Templates": "テンプレート", "Please report the issue or click Reconnect.": "この問題を報告するか、再接続をクリックしてください。", "1. Slide your finger to select location for first anchor
    2. Tap anywhere to place the first anchor": "1. 最初のアンカーの場所を選択するためにスライドさせます。
    2. 最初のアンカーを置く場所をタップします。", "%": "%", "May": "5月", "Are you sure?": "本当に宜しいですか?", "Color 5_input": "Color 5", "Up Wave 1 or A": "上昇波 1 または A", "Scale Price Chart Only": "スケール価格チャートのみ", "Default": "デフォルト", "auto_scale": "自動", "Background": "背景", "% of equity": "資産比%", "Apply Elliot Wave Intermediate": "エリオット波動インターメディエイトの適用", "VWMA_input": "VWMA", "Lower Deviation_input": "Lower Deviation", "Save Interval": "時間足の保存", "Extend Lines Left": "左端の拡張", "Reverse": "反転", "Oops, something went wrong": "申し訳ございません。不具合が起きたようです。", "Shapes_input": "Shapes", "Median": "中央値", "Show Source Code": "ソースコードを表示", "Remove": "削除", "len_input": "len", "Arrow Mark Up": "上矢印", "April": "4月", "log": "ログスケール", "Crosses_input": "Crosses", "KST_input": "KST", "Sync drawing to all charts": "描画を全てのチャートに同期", "LowerLimit_input": "LowerLimit", "Know Sure Thing_study": "ノウンシュアティング", "Copy Chart Layout": "チャートレイアウトをコピー", "Compare...": "比較 ...", "1. Slide your finger to select location for next anchor
    2. Tap anywhere to place the next anchor": "1. 次のアンカーの場所を選択するためにスライドさせます。
    2. 次のアンカーを置く場所をタップします。", "Compare or Add Symbol": "比較、またはシンボルの追加", "Color": "色", "Aroon Up_input": "Aroon Up", "bottom": "下", "Scales Lines": "スケールライン", "Type the interval number for munute charts (i.e. 5 if it is going to be a five minute chart). Or number plus letter for H (Hourly), D (Daily), W (Weekly), M (Monthly) intervals (i.e. D or 2H)": "分足チャートの、時間の間隔を入力してください。たとえば、5分足のチャートの場合は、5と入力します。その他、H (時間), D (日), W (週), M (月)などのアルファベット1文字で、時間足、日足、週足、月足を指定できます。たとえば、3D は、3日足になります。 2Hは、2時間足のチャートを表示できます。", "Up Wave C": "上昇波 C", "Show Distance": "距離の表示", "Risk/Reward Ratio: {0}": "リスク/リワード比: {0}", "Restore Size": "サイズを元に戻す", "Volume Oscillator_study": "出来高オシレーター", "Williams Fractal_study": "Williamsフラクタル", "Merge Up": "上へ重ねる", "Right Margin": "右マージン", "Ellipse": "楕円", "Warsaw": "ワルシャワ"} \ No newline at end of file +{"ticks_slippage ... ticks": "ティック", "Months_interval": "月足", "Realtime": "リアルタイム", "Callout": "呼び出し", "Sync to all charts": "全てのチャートに同期する", "month": "月", "London": "ロンドン", "roclen1_input": "変化率期間1", "Unmerge Down": "重ねずに下へ移動", "Percents": "パーセント", "Search Note": "ノートを検索", "Minor": "マイナー", "Do you really want to delete Chart Layout '{0}' ?": "チャートレイアウト '{0}' を本当に消去しますか?", "Quotes are delayed by {0} min and updated every 30 seconds": "データは{0}分遅れておりリ30秒毎で更新されています。", "Magnet Mode": "マグネットモード", "Grand Supercycle": "グランドスーパーサイクル", "OSC_input": "OSC(オシレーター)", "Hide alert label line": "アラートラベルのラインを非表示", "Volume_study": "出来高", "Lips_input": "唇", "Show real prices on price scale (instead of Heikin-Ashi price)": "平均足ではなく実際の価格スケールで表示する。", "Histogram": "ヒストグラム", "Base Line_input": "基準線", "Step": "ステップ", "Insert Study Template": "スタディテンプレートを入れる", "Fib Time Zone": "フィボナッチ・タイムゾーン", "SMALen2_input": "単純移動平均期間2", "Bollinger Bands_study": "ボリンジャーバンド", "Nov": "11月", "Show/Hide": "表示/非表示", "Upper_input": "上方", "exponential_input": "指数", "Move Up": "上に移動", "Symbol Info": "シンボル情報", "This indicator cannot be applied to another indicator": "このインジケーターは他のインジケータに適用できません", "Scales Properties...": "スケールプロパティ...", "Count_input": "カウント", "Full Circles": "完全な円", "Ashkhabad": "アシュカバッド", "OnBalanceVolume_input": "オンバランスボリューム", "Cross_chart_type": "クロス", "H_in_legend": "高値", "a day": "日", "Pitchfork": "ピッチフォーク", "R_data_mode_replay_letter": "R", "Accumulation/Distribution_study": "累積/分配", "Rate Of Change_study": "変化率", "in_dates": ":", "Clone": "複製", "Color 7_input": "色 7", "Chop Zone_study": "Chopゾーン", "Bar #": "バー番号", "Scales Properties": "スケールプロパティ", "Trend-Based Fib Time": "トレンドに基づくフィボナッチ時間", "Remove All Indicators": "すべてのインディケータを削除", "Oscillator_input": "オシレーター", "Last Modified": "最終更新", "yay Color 0_input": "yay 色0", "Labels": "ラベル", "Chande Kroll Stop_study": "Chande Krollストップ", "Hours_interval": "時間足", "Allow up to": "上へ", "Scale Right": "右スケール", "Money Flow_study": "マネーフロー", "siglen_input": "シグナルの長さ", "Indicator Labels": "インジケーターラベル", "__specialSymbolOpen__Tomorrow at__specialSymbolClose__ __dayTime__": "__specialSymbolOpen__明日の__specialSymbolClose____dayTime__", "Hide All Drawing Tools": "すべての描画ツールを非表示", "Toggle Percentage": "%トグル", "Remove All Drawing Tools": "すべての描画ツールを削除", "Remove all line tools for ": "全ラインツールを削除", "Linear Regression Curve_study": "線形回帰曲線", "Symbol_input": "シンボル", "Currency": "通貨", "increment_input": "インクリメント", "Compare or Add Symbol...": "比較、またはシンボルの追加...", "__specialSymbolOpen__Last__specialSymbolClose__ __dayName__ __specialSymbolOpen__at__specialSymbolClose__ __dayTime__": "__specialSymbolOpen__最新の__specialSymbolClose____dayTime__\n__specialSymbolOpen__の__specialSymbolClose____dayTime__", "Save Chart Layout": "チャートレイアウトを保存", "Number Of Line": "線の数", "Label": "ラベル", "Post Market": "市場終了後", "second": "秒", "Change Hours To": "時間を変更", "smoothD_input": "スムースD", "Falling_input": "下落", "X_input": "X", "Risk/Reward short": "リスク/リワード・ショート", "Donchian Channels_study": "Donchianチャネル", "Entry price:": "エントリー価格:", "Circles": "円", "Head": "ヘッド", "Stop: {0} ({1}) {2}, Amount: {3}": "逆指値:{0}{1}{2}、量:{3}", "Mirrored": "垂直反転", "Ichimoku Cloud_study": "一目雲", "Signal smoothing_input": "シグナルの平滑化", "Use Upper Deviation_input": "上方偏差を使う", "Toggle Auto Scale": "自動スケールトグル", "Grid": "グリッド", "Triangle Down": "下向き三角", "Apply Elliot Wave Minor": "エリオット波動マイナーの適用", "Slippage": "スリッページ", "Smoothing_input": "平滑化", "Color 3_input": "色 3", "Jaw Length_input": "顎長", "Almaty": "アルマトイ", "Inside": "内側", "Delete all drawing for this symbol": "このシンボル状のすべての描画を削除", "Fundamentals": "ファンダメンタル", "Keltner Channels_study": "ケルトナーチャネル", "Long Position": "ロングポジション", "Bands style_input": "バンドのスタイル", "Undo {0}": "{0}をもとに戻す", "With Markers": "マーカー", "Momentum_study": "モメンタム", "MF_input": "マネーフロー", "Gann Box": "ギャン・ボックス", "Switch to the next chart": "次のチャートに切り替える", "charts by TradingView": "TradingViewによるチャート", "Fast length_input": "高速長", "Apply Elliot Wave": "エリオット波動の適用", "Disjoint Angle": "非連結の角度チャンネル", "Supermillennium": "スーパーミレニウム", "W_interval_short": "週", "Show Only Future Events": "将来のイベントのみを表示", "Log Scale": "ログスケール", "Line - High": "ライン - 高値", "Zurich": "チューリッヒ", "Equality Line_input": "分布線", "Short_input": "ショート", "Fib Wedge": "フィボナッチ・ウェッジ", "Line": "ライン", "Session": "セッション", "Down fractals_input": "下向きフラクタル", "Fib Retracement": "フィボナッチ・リトレースメント", "smalen2_input": "単純移動平均期間2", "isCentered_input": "中心にある", "Border": "枠", "Klinger Oscillator_study": "Klinger オシレーター", "Absolute": "絶対値", "Tue": "火曜日", "Style": "スタイル", "Show Left Scale": "左のスケールを表示する", "SMI Ergodic Indicator/Oscillator_study": "SMIエルゴードインジケーター/オシレーター ", "Aug": "8月", "Last available bar": "最後のバー", "Manage Drawings": "描画アイテムの管理", "Analyze Trade Setup": "トレード解析の設定", "No drawings yet": "未描画", "SMI_input": "SMI", "Chande MO_input": "シャンデモメンタムオシレーター", "jawLength_input": "jaw長", "TRIX_study": "TRIXトリックス", "Show Bars Range": "バー範囲を表示", "RVGI_input": "RVGI(相対活力指数)", "Last edited ": "最終編集", "signalLength_input": "シグナルの長さ", "%s ago_time_range": "%s 前", "Reset Settings": "設定をリセット", "PnF": "ポイントアンドフィギュア", "Renko": "練行足", "d_dates": "日", "Point & Figure": "ポイント&フィギュア", "August": "8月", "Recalculate After Order filled": "注文約定後に再計算", "Source_compare": "ソース", "Down bars": "下降バー", "Correlation Coefficient_study": "補正係数", "Delayed": "遅延", "Bottom Labels": "下ラベル", "Text color": "フォントカラー", "Levels": "レベル", "Length_input": "長さ", "Short Length_input": "ショートの長さ", "teethLength_input": "歯長", "Visible Range_study": "Visible Range", "Delete": "削除", "Hong Kong": "香港", "Text Alignment:": "テキスト揃え:", "Open {{symbol}} Text Note": "{{symbol}}メモを開く", "October": "10月", "Lock All Drawing Tools": "すべての描画ツールをロックする", "Long_input": "ロング", "Right End": "右端", "Show Symbol Last Value": "シンボルの最終値を表示", "Head & Shoulders": "ヘッド&ショルダー", "Do you really want to delete Study Template '{0}' ?": "学習用テンプレート{0}を消去しますか?", "Favorite Drawings Toolbar": "お気に入りの描画ツールバー", "Properties...": "プロパティ ...", "Reset Scale": "スケールをリセット", "MA Cross_study": "移動平均線の交差", "Trend Angle": "トレンド角", "Snapshot": "スナップショット", "Crosshair": "クロスヘアー", "Signal line period_input": "シグナル線の期間", "Timezone/Sessions Properties...": "タイムゾーン/セッションのプロパティ...", "Line Break": "ラインブレイク", "Quantity": "数量", "Price Volume Trend_study": "プライス出来高トレンド", "Auto Scale": "自動スケール", "hour": "時間", "Delete chart layout": "チャートのレイアウトを削除する。", "Text": "テキスト", "F_data_mode_forbidden_letter": "F(禁止)", "Risk/Reward long": "リスク/リワード比・ロング", "Apr": "4月", "Long RoC Length_input": "ロングの長さ変化率", "Length3_input": "期間3", "+DI_input": "+DI", "Madrid": "マドリード", "Use one color": "一つの色を使って下さい", "Chart Properties": "チャートプロパティ", "No Overlapping Labels_scale_menu": "ラベルを重ねない", "Exit Full Screen (ESC)": "フルスクリーンを終了(ESC)", "MACD_study": "MACD", "Show Economic Events on Chart": "チャート上に経済イベントを表示", "Moving Average_study": "移動平均線", "Show Wave": "波を表示する", "Failure back color": "失敗の場合の背景色", "Below Bar": "バーの下", "Time Scale": "時間スケール", "

    Only D, W, M intervals are supported for this symbol/exchange. You will be automatically switched to a D interval. Intraday intervals are not available because of exchange policies.

    ": "

    このシンボル・取引所は、D、W、Mの時間足のみ対応しています。自動的に、日足に切り替えられます。イントラデーは、取引所のポリシーにより利用できません。

    ", "Extend Left": "左端の拡張", "Date Range": "日付範囲", "Min Move": "最小の動き", "Price format is invalid.": "値段のフォーマットが無効です。", "Show Price": "価格表示", "Level_input": "レベル", "Angles": "角度", "Hide Favorite Drawings Toolbar": "お気に入り描画ツールバーを非表示", "Commodity Channel Index_study": "商品チャンネル指数(CCI)", "Elder's Force Index_input": "エルダーフォース指数", "Gann Square": "ギャン・スクウェア", "Phoenix": "フェニックス", "Format": "設定", "Color bars based on previous close": "前バーの終値に基づいたバーの色", "Change band background": "背景バンドの変更", "Target: {0} ({1}) {2}, Amount: {3}": "ターゲット:{0}{1}{2}、量:{3}", "Zoom Out": "ズームアウト", "Anchored Text": "リンク", "Long length_input": "ロングの長さ", "Edit {0} Alert...": "アラート{0}を編集...", "Previous Close Price Line": "直前の終値ライン", "Up Wave 5": "上昇波 5", "Qty: {0}": "数量:{0}", "Heikin Ashi": "平均足", "Aroon_study": "アーロン", "show MA_input": "移動平均を表示", "Industry": "業界", "Lead 1_input": "先行1", "Short Position": "ショートポジション", "SMALen1_input": "単純移動平均期間1", "P_input": "P", "Apply Default": "デフォルト適用", "SMALen3_input": "単純移動平均期間3", "Average Directional Index_study": "ADI", "Fr_day_of_week": "金曜", "Invite-only script. Contact the author for more information.": "招待者のみへの公開スクリプト。投稿者へ連絡して下さい。", "Curve": "曲線", "a year": "一年", "Target Color:": "ターゲットの色:", "Bars Pattern": "バーのパターン", "D_input": "日", "Font Size": "フォントサイズ", "Create Vertical Line": "垂直線を作成", "p_input": "p", "Rotated Rectangle": "傾斜長方形", "Chart layout name": "チャートレイアウト名", "Fib Circles": "フィボナッチ・サークル", "Apply Manual Decision Point": "マニュアルの決定ポイントを設定", "Dot": "ドット", "Target back color": "ターゲットの背景色", "All": "すべて", "orders_up to ... orders": "注文", "Dot_hotkey": "ドット", "Lead 2_input": "先行2", "Save image": "画像の保存", "Move Down": "下に移動", "Triangle Up": "上向き三角", "Box Size": "ボックスのサイズ", "Navigation Buttons": "ナビゲーションボタン", "Miniscule": "極小", "Apply": "適用", "Down Wave 3": "下落波 3", "Plots Background_study": "線を描く根拠", "Marketplace Add-ons": "マーケットプレイス アドオン", "Sine Line": "サイン曲線", "Fill": "記入", "%d day": "%d日", "Hide": "非表示", "Toggle Maximize Chart": "チャート最大化トグル", "Target text color": "ターゲットのテキスト色", "Scale Left": "左スケール", "Elliott Wave Subminuette": "エリオット波動サブミニュエット", "Color based on previous close_input": "直前終値を基に色分け", "Down Wave C": "下落波 C", "Countdown": "カウントダウン", "UO_input": "UO(アルティメットオシレーター)", "Pyramiding": "ピラミッティング", "Source back color": "背景色のソース", "Go to Date...": "日付指定", "Sao Paulo": "サンパウロ", "R_data_mode_realtime_letter": "R(リアルタイム)", "Extend Lines": "拡張ライン", "Conversion Line_input": "転換線", "March": "3月", "Su_day_of_week": "日曜", "Exchange": "取引所", "My Scripts": "マイスクリプト", "Arcs": "円弧", "Regression Trend": "回帰トレンド", "Short RoC Length_input": "ショートの長さ変化率", "Fib Spiral": "フィボナッチ・スパイラル", "Double EMA_study": "2重EMA", "minute": "分", "All Indicators And Drawing Tools": "すべてのインディケーター、すべての描画ツール", "Indicator Last Value": "インジケーターの終値", "Sync drawings to all charts": "全てのチャートに描画を同期する", "Change Average HL value": "平均 HL 値の変更", "Stop Color:": "逆指値の色:", "Stay in Drawing Mode": "描画モードを維持", "Bottom Margin": "下マージン", "Dubai": "ドバイ", "Save Chart Layout saves not just some particular chart, it saves all charts for all symbols and intervals which you are modifying while working with this Layout": "「チャートレイアウトを保存」は、特定のチャートを保存することではありません。現在お使いのレイアウトでのシンボル、時間足などすべての変更を保存します。", "Average True Range_study": "平均の真の変動幅", "Max value_input": "最大値", "MA Length_input": "移動平均の長さ", "Invite-Only Scripts": "招待者のみ公開", "in %s_time_range": "in %s", "UpperLimit_input": "上限", "sym_input": "シンボル", "DI Length_input": "DIの長さ", "Rome": "ローマ", "Scale": "スケール", "Periods_input": "期間", "Arrow": "矢印", "useTrueRange_input": "トゥルーレンジ使用", "Basis_input": "基準", "Arrow Mark Down": "下矢印", "lengthStoch_input": "長さ", "Taipei": "台北", "Objects Tree": "情報ツリー", "Remove from favorites": "お気に入りから削除", "Show Symbol Previous Close Value": "通貨ペアの直前終値の表示", "Scale Series Only": "スケール列のみ", "Source text color": "テキスト色のソース", "Simple": "シンプル", "Report a data issue": "データの問題を報告", "Arnaud Legoux Moving Average_study": "Arnaud Legoux 移動平均", "Smoothed Moving Average_study": "スムース・移動平均線", "Lower Band_input": "下方帯", "Verify Price for Limit Orders": "指値の価格確認", "VI +_input": "ボラティリティ指数+", "Line Width": "ライン幅", "Contracts": "先物契約", "Always Show Stats": "常に統計表示", "Down Wave 4": "下落波 4", "ROCLen2_input": "変化率期間2", "Simple ma(signal line)_input": "単純移動平均(シグナル線)", "Change Interval...": "時間足の変更 ...", "Public Library": "公開ライブラリ", " Do you really want to delete Drawing Template '{0}' ?": " 図のテンプレート '{0}' を本当に消去しますか?", "Sat": "土曜日", "Left Shoulder": "左ショルダー", "week": "週", "CRSI_study": "CRSI", "Close message": "メッセージを閉じる", "Jul": "7月", "Value_input": "Value", "Show Drawings Toolbar": "描画ツールバーを表示", "Chaikin Oscillator_study": "Chaikin オシレーター", "Price Source": "価格のソース", "Market Open": "市場開始", "Color Theme": "カラーテーマ", "Projection up bars": "上昇足予測", "Awesome Oscillator_study": "Awesomeオシレーター", "Bollinger Bands Width_input": "ボリンジャーバンド幅", "Q_input": "Q", "long_input": "ロング", "Error occured while publishing": "投稿中にエラーが発生しました", "Fisher_input": "フィッシャー", "Color 1_input": "色 1", "Moving Average Weighted_study": "加重移動平均線", "Save": "保存", "Type": "タイプ", "Wick": "ヒゲ", "Accumulative Swing Index_study": "Accumulative Swing Index", "Load Chart Layout": "チャートレイアウトを読み込み", "Show Values": "価格を表示", "Fib Speed Resistance Fan": "フィボナッチ・スピード抵抗ファン", "Bollinger Bands Width_study": "ボリンジャーバンド幅", "This chart layout has more than 1000 drawings, which is a lot! This may negatively affect performance, storage and publishing. We recommend to remove some drawings to avoid potential performance issues.": "チャートのレイアウトは1000以上あります。これはサイトのパフォーマンス、ストレージと公開されえたコンテンツに影響を与えることがあります。パフォーマンスに問題がある際はいくつかの描画を削除することを推奨します。", "Left End": "左端", "%d year": "%d年", "Always Visible": "常に非表示", "S_data_mode_snapshot_letter": "S(スナップショット)", "Flag": "フラッグ", "Elliott Wave Circle": "エリオット波動サークル", "Earnings breaks": "損益分岐点", "Change Minutes From": "分に変更する", "Do not ask again": "何度も聞かないで下さい", "MTPredictor": "MTPredictor ", "Displacement_input": "置換", "smalen4_input": "単純移動平均期間4", "CCI_input": "CCI", "Upper Deviation_input": "上方偏差", "(H + L)/2": "(高値+ 安値)/2", "XABCD Pattern": "XABCDパターン", "Schiff Pitchfork": "シフ・ピッチフォーク", "Copied to clipboard": "クリップボードにコピーされました", "hl2": "高値安値平均", "Flipped": "水平反転", "DEMA_input": "日足指数平滑移動平均線", "Move_input": "Move", "NV_input": "正味価額", "Choppiness Index_study": "Choppinessインデックス", "Study Template '{0}' already exists. Do you really want to replace it?": "学習用テンプレート{0}は既に存在します。本当に上書きしますか?", "Merge Down": "下へ重ねる", "Th_day_of_week": "木曜日", " per contract": "契約毎", "Overlay the main chart": "メインチャートに重ねる", "Screen (No Scale)": "スクリーン(スケールなし)", "Three Drives Pattern": "3ドライブパターン", "Save Indicator Template As": "インジケーターのテンプレートを保存", "Length MA_input": "移動平均線の長さ", "percent_input": "パーセント", "September": "9月", "{0} copy": "{0}をコピー", "Avg HL in minticks": "平均高値安値のティック数", "Accumulation/Distribution_input": "買い集め/ 売り抜け", "Sync": "同期", "C_in_legend": "終値", "Weeks_interval": "週足", "smoothK_input": "スムースK", "Percentage_scale_menu": "パーセント", "Change Extended Hours": "時間外取引を変更する", "MOM_input": "モメンタムオシレーター", "h_interval_short": "時間", "Change Interval": "時間足の変更", "Change area background": "背景エリアの変更", "Modified Schiff": "変形 シッフ", "top": "上", "Adelaide": "アデレード", "Send Backward": "最背面へ移動", "Mexico City": "メキシコシティ", "TRIX_input": "TRIXトリックス(三重指数移動平均オシレーター)", "Show Price Range": "価格レンジの表示", "Elliott Major Retracement": "エリオット・メジャーリトレースメント", "ASI_study": "ASI", "Notification": "通知", "Fri": "金曜日", "just now": "たった今", "Forecast": "予測", "Fraction part is invalid.": "小数部分が無効です。", "Connecting": "接続中", "Ghost Feed": "ゴースト配信", "Signal_input": "シグナル", "Histogram_input": "ヒストグラム", "The Extended Trading Hours feature is available only for intraday charts": "時間外取引の機能は、イントラデーのチャートでのみ利用できます。", "Stop syncing": "同期を停止する", "open": "オープン", "StdDev_input": "標準偏差", "EMA Cross_study": "EMAの交差", "Conversion Line Periods_input": "転換線の期間", "Diamond": "ダイアモンド", "Brisbane": "ブリスベン", "Monday": "月曜日", "Add Symbol_compare_or_add_symbol_dialog": "Add Symbol", "Williams %R_study": "ウィリアムス%R", "Symbol": "シンボル", "a month": "月", "Precision": "精度", "depth_input": "深さ", "Go to": "日付指定", "Please enter chart layout name": "チャートレイアウトの名前を入力してください", "Mar": "3月", "VWAP_study": "VWAP出来高加重平均", "Offset": "オフセット", "Date": "日付", "Format...": "設定 ...", "__dayName__ __specialSymbolOpen__at__specialSymbolClose__ __dayTime__": "__dayName____dayTime____specialSymbolClose__で__specialSymbolOpen__", "Toggle Maximize Pane": "チャート最大化トグル", "Search": "検索", "Zig Zag_study": "ジグザグ", "Actual": "現在", "SUCCESS": "成功", "Long period_input": "ロングの期間", "length_input": "長さ", "roclen4_input": "変化率期間4", "Price Line": "価格ライン", "Area With Breaks": "エリアをブレイク", "Median_input": "中央値", "Stop Level. Ticks:": "逆指値レベル ティック:", "Window Size_input": "ウィンドウの大きさ", "Economy & Symbols": "簡潔性、記号", "Circle Lines": "円ライン", "Visual Order": "表示の並び順", "__specialSymbolOpen__Yesterday at__specialSymbolClose__ __dayTime__": "__specialSymbolOpen__昨日の__specialSymbolClose____dayTime__", "Stop Background Color": "逆指値幅の背景色", "1. Slide your finger to select location for first anchor
    2. Tap anywhere to place the first anchor": "1. 最初のアンカーの場所を選択するためにスライドさせます。
    2. 最初のアンカーを置く場所をタップします。", "Sector": "業種", "powered by TradingView": "提供元 TradingView", "Text:": "テキスト:", "Stochastic_study": "ストキャスティクス", "Sep": "9月", "TEMA_input": "TEMA(三重指数移動平均)", "Apply WPT Up Wave": "WPTアップウェーブを適用", "Min Move 2": "最小の動き2", "Extend Left End": "左端の拡張", "Projection down bars": "下降足予測", "Advance/Decline_study": "上昇/下降", "New York": "ニューヨーク", "Flag Mark": "フラッグマーク", "Drawings": "描画アイテム", "Cancel": "キャンセル", "Compare or Add Symbol": "比較、またはシンボルの追加", "Redo": "やり直し", "Hide Drawings Toolbar": "描画アイテムツールバーを非表示", "Ultimate Oscillator_study": "究極オシレーター", "Vert Grid Lines": "垂直線グリッドライン", "Growing_input": "増大", "Angle": "角度", "Plot_input": "プロット", "Chicago": "シカゴ", "Color 8_input": "色 8", "Indicators, Fundamentals, Economy and Add-ons": "インジケーター、ファンダメンタル、経済指標、アドオン", "h_dates": "時間", "ROC Length_input": "ROC Length", "roclen3_input": "変化率期間3", "Overbought_input": "買われ過ぎ", "DPO_input": "トレンド除去価格オシレーター", "Change Minutes To": "分数を変更", "No study templates saved": "保存されたスタディテンプレートはありません。", "Trend Line": "トレンドライン", "TimeZone": "タイムゾーン", "Your chart is being saved, please wait a moment before you leave this page.": "あなたのチャートは保存されました。このページを切り替える前に、数秒待ってください。", "Percentage": "%", "Tu_day_of_week": "火曜日", "RSI Length_input": "RSI(相対力指数)の長さ", "Triangle": "三角", "Line With Breaks": "ラインをブレイク", "Period_input": "期間", "Watermark": "透かし", "Trigger_input": "トリガー", "SigLen_input": "シグナルの長さ", "Extend Right": "右端の拡張", "Color 2_input": "色 2", "Show Prices": "価格表示", "Unlock": "ロック解除", "Copy": "コピー", "high": "高値", "Arc": "円弧", "Edit Order": "注文を編集", "January": "1月", "Arrow Mark Right": "右矢印", "Extend Alert Line": "アラートラインを延長", "Background color 1": "背景色1", "RSI Source_input": "RSI(相対力指数)ソース", "Close Position": "ポジション決済", "Any Number": "数字", "Stop syncing drawing": "描画の同期を停止", "Visible on Mouse Over": "マウスの移動時に表示", "MA/EMA Cross_study": "移動平均線とEMA(指数平滑移動平均線)の交差", "Thu": "木曜日", "Vortex Indicator_study": "Vortex", "view-only chart by {user}": "{user}による読込専用チャート", "ROCLen1_input": "変化率期間1", "M_interval_short": "月", "Chaikin Oscillator_input": "チャイキンオシレーター", "Price Levels": "価格レベル", "Show Splits": "分割を表示", "Zero Line_input": "ゼロ線", "Replay Mode": "返答モード", "__specialSymbolOpen__Today at__specialSymbolClose__ __dayTime__": "__specialSymbolOpen__今日の__specialSymbolClose____dayTime__", "Increment_input": "インクリメント", "Days_interval": "日足", "Show Right Scale": "右のスケールを表示する", "Show Alert Labels": "アラートラベル表示", "Historical Volatility_study": "ボラタリティ履歴", "Lock": "ロック", "length14_input": "長さ14", "High": "高値", "ext": "時間外", "Date and Price Range": "日付と価格範囲", "Polyline": "折れ線", "Reconnect": "再接続", "Lock/Unlock": "ロック/解除", "HLC Bars": "HCLバー", "Price Channel_study": "プライス・チャネル", "Label Down": "ラベル下", "Saturday": "土曜日", "Symbol Last Value": "シンボルの終値", "Above Bar": "バーの上", "Studies": "スタデイ", "Color 0_input": "色 0 ", "Add Symbol": "シンボルの追加", "maximum_input": "最大", "Wed": "水曜日", "Paris": "パリ", "D_data_mode_delayed_letter": "D(遅延)", "Sigma_input": "シグマ", "VWMA_study": "VWMA出来高加重平均", "fastLength_input": "短期", "Time Levels": "時間レベル", "Width": "幅", "Sunday": "日曜日", "Loading": "読み込み中", "Template": "テンプレート", "Use Lower Deviation_input": "下方偏差を使う", "Up Wave 3": "上昇波 3", "Parallel Channel": "平行チャネル", "Time Cycles": "時間サイクル", "Second fraction part is invalid.": "小数部分が無効です。", "Divisor_input": "因数", "Down Wave 1 or A": "下落波 1 または A", "ROC_input": "変化率", "Dec": "12月", "Ray": "レイ", "Extend": "拡張", "length7_input": "長さ7", "Bring Forward": "一つ上に移動", "Bottom": "下", "Berlin": "ベルリン", "Undo": "取り消す", "Original": "オリジナル", "Mon": "月曜日", "Right Labels": "右ラベル", "Long Length_input": "ロングの長さ", "True Strength Indicator_study": "真力指数", "%R_input": "%R", "There are no saved charts": "保存されたチャートはありません", "Instrument is not allowed": "この商品は出来ません", "bars_margin": "バー", "Decimal Places": "小数の桁", "Show Indicator Last Value": "インディケーターの値を表示", "Initial capital": "初期資金", "Show Angle": "角度表示", "Mass Index_study": "Mass インデックス", "More features on tradingview.com": "TradingViewの更なる特徴", "Objects Tree...": "情報ツリー", "Remove Drawing Tools & Indicators": "作図ツールとインジケーターを削除", "Length1_input": "期間1", "Always Invisible": "常に非表示", "Circle": "円", "Days": "日", "x_input": "x", "Save As...": "名前を付けて保存 ...", "Elliott Double Combo Wave (WXY)": "エリオット波動 複合型(WXY)", "Parabolic SAR_study": "パラボリックSAR", "Any Symbol": "シンボル", "Variance": "変数", "Stats Text Color": "テキスト色", "Minutes": "分", "Williams Alligator_study": "Williams アリゲーター", "Projection": "投影", "Custom color...": "色の変更 ...", "Jan": "1月", "Jaw_input": "顎", "Right": "右", "Help": "ヘルプ", "Coppock Curve_study": "Coppock 曲線", "Reversal Amount": "反転の大きさ", "Reset Chart": "チャートをリセット", "Marker Color": "マーカーの色", "Fans": "ファン", "Left Axis": "左軸", "Open": "始値", "YES": "はい", "longlen_input": "ロングの長さ", "Moving Average Exponential_study": "指数移動平均", "Source border color": "枠色のソース", "Redo {0}": "{0}をやり直し", "Cypher Pattern": "サイファーパターン", "s_dates": "s", "Caracas": "カラカス", "Area": "エリア", "Triangle Pattern": "三角パターン", "Balance of Power_study": "バランスオブパワー", "EOM_input": "イーズ オブ ムーブメント", "Shapes_input": "型", "Oversold_input": "売られ過ぎ", "Apply Manual Risk/Reward": "手動での損失/利益(リスク/リワード)を設定", "Market Closed": "市場終了", "Sydney": "シドニー", "Indicators": "インジケーター", "close": "終値", "q_input": "q", "You are notified": "あなたは通知されました。", "Font Icons": "アイコンフォント", "%D_input": "%D", "Border Color": "枠色", "Offset_input": "オフセット", "Risk": "リスク", "Price Scale": "価格スケール", "HV_input": "ヒストリカルボラティリティ", "Seconds": "秒", "Settings": "設定", "Start_input": "スタート", "Elliott Impulse Wave (12345)": "エリオットインパルス波動(12345)", "Hours": "時間", "Send to Back": "一つ下に移動", "Color 4_input": "色 4", "Los Angeles": "ロサンジェルス", "Prices": "価格", "Hollow Candles": "中空ろうそく足", "July": "7月", "Create Horizontal Line": "水平ラインを作成", "Minute": "分", "Cycle": "サイクル", "ADX Smoothing_input": "ADX平滑化", "One color for all lines": "全てのラインを1つの色にする", "m_dates": "分", "(H + L + C)/3": "(高値+ 安値+終値)/3", "Candles": "ローソク足", "We_day_of_week": "水曜日", "Width (% of the Box)": "幅(箱の%)", "%d minute": "%d分", "Go to...": "日付指定", "Pip Size": "Pipサイズ", "Wednesday": "水曜日", "This drawing is used in alert. If you remove the drawing, the alert will be also removed. Do you want to remove the drawing anyway?": "この描画アイテムは、あるアラートに使われています。もし描画アイテムを削除するのであれば、アラートも削除されます。アイテムを削除しますか?", "Show Countdown": "カウントダウン表示", "Show alert label line": "アラートラベルラインを表示", "Down Wave 2 or B": "下落波 2 または B", "MA_input": "移動平均", "Length2_input": "期間2", "not authorized": "認証されていません", "Session Volume_study": "Session Volume", "Image URL": "画像 URL", "Submicro": "サブミクロ", "SMI Ergodic Oscillator_input": "SMIエルゴディックオシレーター", "Show Objects Tree": "情報ツリーの表示", "Primary": "プライマリー", "Price:": "価格:", "Bring to Front": "最上面へ移動", "Brush": "ブラシ", "Not Now": "あとで", "Yes": "はい", "C_data_mode_connecting_letter": "C(接続中)", "SMALen4_input": "単純移動平均期間4", "Apply Default Drawing Template": "デフォルト描画テンプレートを適用", "Compact": "コンパクトな", "Save As Default": "デフォルトを保存", "Target border color": "ターゲットの枠色", "Invalid Symbol": "不明なシンボル", "Inside Pitchfork": "インサイド・ピッチフォーク", "yay Color 1_input": "yay 色1", "Quandl is a huge financial database that we have connected to TradingView. Most of its data is EOD and is not updated in real-time, however the information may be extremely useful for fundamental analysis.": "QuandlはTradingViewに接続されている大きな金融データベースです。殆どのデータは終日データでありリアルタイムデータではございませんが、ファンダメンタル分析を行うにあたり大変便利な情報です。", "Hide Marks On Bars": "バーの上のマーカーを非表示", "Cancel Order": "注文をキャンセル", "Kagi": "カギ足", "WMA Length_input": "加重移動平均の期間", "Show Dividends on Chart": "チャート上に配当を表示", "Show Executions": "約定を表示", "Borders": "枠", "Remove Indicators": "インジケーターを削除", "loading...": "読み込み中 ...", "Closed_line_tool_position": "終了", "Rectangle": "長方形", "Change Resolution": "時間足を変更", "Indicator Arguments": "インジケータの引数", "Symbol Description": "シンボル詳細", "Chande Momentum Oscillator_study": "Chande モメンタムオシレーター", "Degree": "角度", " per order": "注文毎", "Line - HL/2": "ライン - HL/2", "Supercycle": "スーパーサイクル", "Jun": "6月", "Least Squares Moving Average_study": "最小二乗法移動平均", "Change Variance value": "変数の変更", "powered by ": "提供元", "Source_input": "ソース", "Change Seconds To": "秒へ変える", "%K_input": "%K", "Scales Text": "スケールテキスト", "Toronto": "トロント", "Please enter template name": "テンプレート名を入力してください。", "Symbol Name": "シンボル名", "Tokyo": "東京", "Events Breaks": "ブレイクイベント", "San Salvador": "サンサルバドル ", "Months": "か月", "Symbol Info...": "シンボル情報...", "Elliott Wave Minor": "エリオット波動マイナー", "Cross": "交差", "Measure (Shift + Click on the chart)": "測定 (Shift+チャート上をクリック)", "Override Min Tick": "小数点表示", "Show Positions": "ポジション表示", "Dialog": "ダイアログ", "Add To Text Notes": "テキストノートへ追加", "Elliott Triple Combo Wave (WXYXZ)": "エリオットトリプルコンボ波動(WXYXZ)", "Multiplier_input": "乗数", "Risk/Reward": "リスク・リワード", "Base Line Periods_input": "基準線の期間", "Show Dividends": "配当を表示", "Relative Strength Index_study": "RSI", "Modified Schiff Pitchfork": "変形 シフ・ピッチフォーク", "Top Labels": "上ラベル", "Show Earnings": "収益を表示", "Line - Open": "ライン - 開始値", "Elliott Triangle Wave (ABCDE)": "エリオットトライアングル波(ABCDE)", "Minuette": "ミニュット", "Text Wrap": "テキスト修飾", "Reverse Position": "ポジションを反転", "Elliott Minor Retracement": "エリオット・マイナーリトレースメント", "Pitchfan": "ピッチファン", "Slash_hotkey": "スラッシュ", "No symbols matched your criteria": "条件に合うシンボルがありません", "Icon": "アイコン", "lengthRSI_input": "RSI(相対力指数)期間", "Tuesday": "火曜日", "Teeth Length_input": "歯長", "Indicator_input": "インジケータ", "Open Interval Dialog": "時間足ダイアログを開く", "Shanghai": "上海", "Athens": "アテネ", "Fib Speed Resistance Arcs": "フィボナッチ・スピード抵抗円弧", "Content": "内容", "middle": "中央", "Lock Cursor In Time": "カーソル位置をロック", "Intermediate": "インターミディエイト", "Eraser": "消しゴム", "Relative Vigor Index_study": "RVI 相対的活力指数", "Envelope_study": "エンベロープ", "Symbol Labels": "シンボルラベル", "Pre Market": "市場開始前", "Horizontal Line": "水平ライン", "O_in_legend": "始値", "Confirmation": "確認", "HL Bars": "HLバー", "Lines:": "ライン", "hlc3": "高値安値終値平均", "Buenos Aires": "ブエノスアイレス", "X Cross": "X クロス", "Bangkok": "バンコク", "Profit Level. Ticks:": "利益幅 ティック :", "Show Date/Time Range": "日付・時間レンジを表示", "Level {0}": "レベル {0}", "Favorites": "お気に入り", "Horz Grid Lines": "水平グリッドライン", "-DI_input": "-DI", "Price Range": "価格レンジ", "day": "日", "deviation_input": "偏差", "Account Size": "アカウントのサイズ", "UTC": "UTC (協定世界時) ", "Time Interval": "時間足", "Success text color": "成功のテキスト色", "ADX smoothing_input": "ADX平滑化", "%d hour": "%d時間", "Order size": "発注サイズ", "Drawing Tools": "描画ツール", "Save Drawing Template As": "描画テンプレートを名前をつけて保存", "Tokelau": "トケラウ", "ohlc4": "始値高値安値終値平均", "Traditional": "伝統的な", "Chaikin Money Flow_study": "Chaikinマネー・フロー", "Ease Of Movement_study": "Ease ムーブメント", "Defaults": "デフォルト", "Percent_input": "パーセント", "%": "%", "Interval is not applicable": "時間足を適用できません。", "short_input": "ショート", "Visual settings...": "表示設定...", "RSI_input": "RSI", "Chatham Islands": "チャタム諸島", "Detrended Price Oscillator_input": "トレンド除去価格オシレーター(DPO)", "Mo_day_of_week": "月曜日", "Up Wave 4": "上昇波 4", "center": "中央", "Vertical Line": "垂直線", "Bogota": "ボゴタ", "Show Splits on Chart": "株式分割をチャートに表示", "Sorry, the Copy Link button doesn't work in your browser. Please select the link and copy it manually.": "このブラウザではリンクをコピーするボタンが作動しません。リンクを選択してマニュアルでコピーして下さい。", "Levels Line": "レベルライン", "Events & Alerts": "イベント&アラート", "May": "5月", "ROCLen4_input": "変化率期間4", "Aroon Down_input": "アルンダウン", "Add To Watchlist": "ウォッチリストに追加", "Total": "合計", "Price": "価格", "left": "左", "Lock scale": "スケールのロック", "Limit_input": "Limit", "Change Days To": "日を変更", "Price Oscillator_study": "プライスオシレーター", "smalen1_input": "単純移動平均期間1", "Drawing Template '{0}' already exists. Do you really want to replace it?": "図のテンプレート '{0}' は既に存在します。本当に置き換えますか?", "Show Middle Point": "中間点を表示", "KST_input": "KNT(Know Sure Thing) インジケーター", "Extend Right End": "右端の拡張", "Base currency": "基本通貨", "Line - Low": "ライン - 安値", "Price_input": "価格", "Gann Fan": "ギャン・ファン", "EOD": "末日", "Weeks": "週", "McGinley Dynamic_study": "McGinleyダイナミクス", "Relative Volatility Index_study": "相対ボラテリティ指数", "Source Code...": "ソースコード ...", "PVT_input": "プライスボリュームトレンド", "Show Hidden Tools": "非表示ツールを表示", "Hull Moving Average_study": "Hull 移動平均", "Symbol Prev. Close Value": "通貨ペアの直前終値", "Istanbul": "イスタンブール", "{0} chart by TradingView": "{0}TradingViewによるチャート", "Right Shoulder": "右ショルダー", "Remove Drawing Tools": "作図ツールを削除", "Friday": "金曜日", "Zero_input": "ゼロ", "Company Comparison": "企業比較", "Stochastic Length_input": "ストキャスティクス期間", "mult_input": "マルチ", "URL cannot be received": "URLが受信できません", "Success back color": "成功の場合の背景色", "E_data_mode_end_of_day_letter": "終日", "Trend-Based Fib Extension": "トレンドに基づくフィボナッチ拡張", "Top": "上", "Double Curve": "2次曲線", "Stochastic RSI_study": "ストキャスティクス RSI", "Oops!": "おっと、!", "Horizontal Ray": "水平レイ", "smalen3_input": "単純移動平均期間3", "Ok": "OK", "Script Editor...": "スクリプトエディタ", "Are you sure?": "本当に宜しいですか?", "Trades on Chart": "チャートから取引", "Listed Exchange": "上場取引所", "Error:": "エラー:", "Fullscreen mode": "フルスクリーンモード", "Add Text Note For {0}": "テキストノートを{0}に追加", "K_input": "K", "Do you really want to delete Drawing Template '{0}' ?": "図のテンプレート '{0}' を本当に消去しますか?", "ROCLen3_input": "変化率期間3", "Micro": "ミクロ", "Text Color": "フォントカラー", "Rename Chart Layout": "チャートレイアウトの名前を変更", "Built-ins": "内蔵", "Background color 2": "背景色2", "Drawings Toolbar": "描画ツールバー", "New Zealand": "ニュージーランド", "CHOP_input": "CHOP", "Apply Defaults": "デフォルトの適用", "% of equity": "資産比%", "Extended Alert Line": "時間外取引のアラート", "Note": "ノート", "Moving Average Channel_study": "移動平均チャネル", "like": "いいね", "Show": "表示", "{0} bars": "{0} バー", "Lower_input": "下方", "Created ": "作成されました", "Warning": "警告", "Elder's Force Index_study": "Elderフォース指数", "Show Earnings on Chart": "チャート上に収益を表示", "ATR_input": "ATR", "Low": "安値", "Bollinger Bands %B_study": "ボリンジャーバンド %B", "Time Zone": "タイムゾーン", "right": "右", "%d month": "%dヶ月", "Wrong value": "間違った値", "Upper Band_input": "上方の帯", "Sun": "日曜日", "Rename...": "名前の変更 ...", "start_input": "スタート", "No indicators matched your criteria.": "条件に合うインディケータがありません。", "Commission": "コミッション手数料", "Down Color": "下降カラー", "Short length_input": "ショートの長さ", "Kolkata": "カルカッタ", "Submillennium": "サブミレニウム", "Technical Analysis": "テクニカル解析", "Show Text": "テキスト表示", "Channel": "チャネル", "FXCM CFD data is available only to FXCM account holders": "FXCMのCFDデータはFXCMの口座をお持ちの方のみ提供可能となります。", "Lagging Span 2 Periods_input": "2期遅行スパン", "Connecting Line": "ライン接続", "Seoul": "ソウル", "bottom": "下", "Teeth_input": "歯", "Sig_input": "シグナル", "Open Manage Drawings": "描画の管理を開く", "Save New Chart Layout": "新規チャートレイアウトを保存", "Fib Channel": "フィボナッチ・チャネル", "Save Drawing Template As...": "描画テンプレートを名前をつけて保存", "Minutes_interval": "分足", "Up Wave 2 or B": "上昇波 2 または B", "Columns": "列", "Directional Movement_study": "方向性指数 DMI", "roclen2_input": "変化率期間2", "Apply WPT Down Wave": "WPTダウンウェーブを適用", "Not applicable": "適用できません。", "Bollinger Bands %B_input": "ボリンジャーバンド%B", "Default": "デフォルト", "Singapore": "シンガポール", "Template name": "テンプレート名", "Indicator Values": "インディケータの値", "Lips Length_input": "唇長", "Toggle Log Scale": "ログスケールの切り替えトグル", "L_in_legend": "安値", "Remove custom interval": "カスタム時間足を削除", "shortlen_input": "ショートの長さ", "Quotes are delayed by {0} min": "相場は{0}分遅延しています", "Hide Events on Chart": "チャートのイベントを非表示にする", "Cash": "キャッシュ", "Profit Background Color": "利益幅の背景色", "Bar's Style": "バーのスタイル", "Exponential_input": "指数", "Down Wave 5": "下落波 5", "Previous": "前へ", "Stay In Drawing Mode": "描画モードを維持", "Comment": "コメント", "Connors RSI_study": "Connors RSI", "Bars": "バー", "Show Labels": "ラベル表示", "Flat Top/Bottom": "上下フラット", "Symbol Type": "シンボルタイプ", "December": "12月", "Lock drawings": "描画をロックする", "Border color": "枠色", "Change Seconds From": "秒から変える", "Left Labels": "左ラベル", "Insert Indicator...": "インジケーターを挿入 ...", "ADR_B_input": "ADR_B", "Paste %s": "貼り付け%s", "Change Symbol...": "シンボルの変更 ...", "Timezone": "タイムゾーン", "Invite-only script. You have been granted access.": "招待者のみへの公開スクリプトへアクセスを付与されました。", "Color 6_input": "色 6", "Oct": "10月", "ATR Length": "ATRの期間", "{0} financials by TradingView": "{0}TradingViewによる金融", "Extend Lines Left": "左端の拡張", "Feb": "2月", "Transparency": "透明", "No": "いいえ", "June": "6月", "Tweet": "ツイート", "Cyclic Lines": "円ライン", "length28_input": "長さ28", "ABCD Pattern": "ABCDパターン", "When selecting this checkbox the study template will set \"__interval__\" interval on a chart": "このチェックボックスを選択するときスタディテンプレートは、チャートの__interval__の時間足に設定されます。", "Add": "追加", "OC Bars": "OCOCバー", "Millennium": "ミレニアム", "On Balance Volume_study": "オン・バランス・ボリューム", "Apply Indicator on {0} ...": " {0} ...にインディケータを適用", "NEW": "新規", "Chart Layout Name": "チャートレイアウト名", "Up bars": "上昇バー", "Hull MA_input": "ハル移動平均線", "Schiff": "シッフ", "Lock Scale": "スケールのロック", "distance: {0}": "距離: {0}", "Extended": "時間外", "Square": "スクエア", "log": "ログスケール", "NO": "いいえ", "Top Margin": "上マージン", "Up fractals_input": "フラクタル上昇", "Insert Drawing Tool": "描画ツールを挿入する", "OHLC Values": "OHLC値", "Correlation_input": "相関", "Session Breaks": "セッション区切り", "Add {0} To Watchlist": "ウオッチリストに {0} を追加", "Anchored Note": "アンカーノート", "lipsLength_input": "唇長", "low": "安値", "Apply Indicator on {0}": " {0}にインディケータを適用", "UpDown Length_input": "UpDown Length", "Price Label": "価格ラベル", "November": "11月", "Tehran": "テヘラン", "Balloon": "バルーン", "Track time": "トラックタイム", "Background Color": "背景色", "an hour": "1時間", "Right Axis": "右軸", "D_data_mode_delayed_streaming_letter": "遅延中", "VI -_input": "ボラティリティ指数-", "slowLength_input": "長期", "Click to set a point": "ポイントをクリックで指定", "Save Indicator Template As...": "このインジケーターのテンプレートを名前を付けて保存...", "Arrow Up": "上矢印", "n/a": "該当なし", "Indicator Titles": "インジケーターのタイトル", "Failure text color": "失敗のテキスト色", "Sa_day_of_week": "土曜日", "Net Volume_study": "ネット出来高", "Error": "エラー", "Edit Position": "ポジションを編集", "RVI_input": "RVI(相対活力指数)", "Centered_input": "中心になる", "Recalculate On Every Tick": "ティックごとに再計算", "Left": "左", "Simple ma(oscillator)_input": "単純移動平均(オシレーター)", "Compare": "比較", "Fisher Transform_study": "Fisher変換", "Show Orders": "注文表示", "Zoom In": "ズームイン", "Length EMA_input": "EMAの長さ", "Enter a new chart layout name": "新しいチャートレイアウトの名前を入力してください", "Signal Length_input": "シグナルの長さ", "FAILURE": "失敗", "Point Value": "ポイント値", "D_interval_short": "日", "MA with EMA Cross_study": "移動平均線とEMA(指数平滑移動平均線)の交差", "Label Up": "ラベル上", "Close": "終値", "ParabolicSAR_input": "パラボリック ストップアンドリバース", "Log Scale_scale_menu": "ログスケール", "MACD_input": "MACD", "Do not show this message again": "このメッセージを二度と表示しない。", "{0} P&L: {1}": "{0} 利益&損失: {1}", "No Overlapping Labels": "ラベルを重ねない", "Arrow Mark Left": "左矢印", "Slow length_input": "スローの期間", "Line - Close": "ライン - 終値", "(O + H + L + C)/4": "(始値+ 高値+ 安値+終値)/4", "Confirm Inputs": "入力を確認", "Open_line_tool_position": "開始", "Lagging Span_input": "遅行スパン", "Subminuette": "サブミニュエット", "Thursday": "木曜日", "Arrow Down": "下矢印", "Vancouver": "バンクーバー", "Triple EMA_study": "トリプル EMA", "Elliott Correction Wave (ABC)": "エリオット波動 修正波(ABC)", "Error while trying to create snapshot.": "スナップショット作成中にエラー発生", "Label Background": "ラベル背景", "Templates": "テンプレート", "Please report the issue or click Reconnect.": "この問題を報告するか、再接続をクリックしてください。", "Normal": "通常", "Signal Labels": "シグナルラベル", "Delete Text Note": "ノートを削除する", "compiling...": "コンパイル中...", "Detrended Price Oscillator_study": "トレンド除去価格オシレーター(DPO)", "Color 5_input": "色 5", "Fixed Range_study": "Fixed Range", "Up Wave 1 or A": "上昇波 1 または A", "Scale Price Chart Only": "スケール価格チャートのみ", "Unmerge Up": "重ねずに上へ移動", "auto_scale": "自動", "Short period_input": "ショート期間", "Background": "背景", "Study Templates": "スタディテンプレート", "Up Color": "上昇カラー", "Apply Elliot Wave Intermediate": "エリオット波動インターメディエイトの適用", "VWMA_input": "VWMA(出来高加重移動平均)", "Lower Deviation_input": "下方偏差", "Save Interval": "時間足の保存", "February": "2月", "Reverse": "リバース", "Oops, something went wrong": "申し訳ございません。不具合が起きたようです。", "Add to favorites": "お気に入りへ追加", "Median": "中央値", "ADX_input": "ADX", "Remove": "削除", "len_input": "長さ", "Arrow Mark Up": "上矢印", "April": "4月", "Active Symbol": "アクティブシンボル", "Extended Hours": "時間外取引", "Crosses_input": "交差", "Middle_input": "中央", "Read our blog for more info!": "ブログを読んでもっと知る!", "Sync drawing to all charts": "描画を全てのチャートに同期", "LowerLimit_input": "下限", "Know Sure Thing_study": "ノウンシュアティング", "Copy Chart Layout": "チャートレイアウトをコピー", "Compare...": "比較 ...", "1. Slide your finger to select location for next anchor
    2. Tap anywhere to place the next anchor": "1. 次のアンカーの場所を選択するためにスライドさせます。
    2. 次のアンカーを置く場所をタップします。", "Text Notes are available only on chart page. Please open a chart and then try again.": "テキストノートは、チャートページでのみ利用可能です。チャートを開き、もう一度試してください。", "Color": "色", "Aroon Up_input": "アルンアップ", "Apply Elliot Wave Major": "エリオット波動メジャーの適用", "Scales Lines": "スケールライン", "Type the interval number for munute charts (i.e. 5 if it is going to be a five minute chart). Or number plus letter for H (Hourly), D (Daily), W (Weekly), M (Monthly) intervals (i.e. D or 2H)": "分足チャートの、時間の間隔を入力してください。たとえば、5分足のチャートの場合は、5と入力します。その他、H (時間), D (日), W (週), M (月)などのアルファベット1文字で、時間足、日足、週足、月足を指定できます。たとえば、3D は、3日足になります。 2Hは、2時間足のチャートを表示できます。", "Ellipse": "楕円", "Up Wave C": "上昇波 C", "Show Distance": "距離の表示", "Risk/Reward Ratio: {0}": "リスク/リワード比: {0}", "Restore Size": "サイズを元に戻す", "Volume Oscillator_study": "出来高オシレーター", "Honolulu": "ホノルル", "Williams Fractal_study": "Williamsフラクタル", "Merge Up": "上へ重ねる", "Right Margin": "右マージン", "Moscow": "モスクワ", "Warsaw": "ワルシャワ"} \ No newline at end of file diff --git a/charting_library/static/localization/translations/ko.json b/charting_library/static/localization/translations/ko.json index 8e18e4f9..b6b56e85 100644 --- a/charting_library/static/localization/translations/ko.json +++ b/charting_library/static/localization/translations/ko.json @@ -1 +1 @@ -{"ticks_slippage ... ticks": "틱", "Months_interval": "달", "Percent_input": "퍼센트", "Hide Events on Chart": "차트에서 이벤트 숨기기", "RSI Length_input": "RSI 길이", "month": "달", "London": "런던", "roclen1_input": "roclen1", "Unmerge Down": "아래로 떼냄", "Percents": "퍼센트", "Search Note": "노트찾기", "Minor": "마이너", "Do you really want to delete Chart Layout '{0}' ?": "정말로 차트 레이아웃 '{0}' 을 지우시겠습니까?", "Quotes are delayed by {0} min and updated every 30 seconds": "{0}분 지연호가, 매 30초 업데이트", "June": "6월", "Magnet Mode": "자석모드", "Grand Supercycle": "그랜드 수퍼사이클", "OSC_input": "OSC", "Hide alert label line": "얼러트 라벨 라인 숨기기", "Volume_study": "거래량", "Lips_input": "Lips", "Show real prices on price scale (instead of Heikin-Ashi price)": "가격 눈금에 실제 가격 보이기 (하이킨 아시 가격대신)", "Histogram": "막대그래프", "Base Line_input": "베이스 라인", "Step": "스텝", "Fib Time Zone": "피보나치 타임존", "SMALen2_input": "SMALen2", "Bollinger Bands_study": "볼린저 밴드", "Nov": "11월", "Show/Hide": "보기/숨기기", "Color 0_input": "칼라 0", "Cancel Order": "주문 취소", "Sig_input": "Sig", "Move Up": "위로옮김", "Sigma_input": "시그마", "This indicator cannot be applied to another indicator": "이 지표를 다른 지표에 적용할 수 없습니다", "Gann Square": "간바른네모", "Count_input": "카운트", "Full Circles": "동그라미", "Industry": "산업", "SMALen1_input": "SMALen1", "Cross_chart_type": "십자", "Target Color:": "타겟색:", "a day": "하루", "Pitchfork": "쇠스랑", "Normal": "정상", "Accumulation/Distribution_study": "누적/분포", "Rate Of Change_study": "Rate Of Change", "Risk/Reward short": "위험/보상 쇼트", "in_dates": "in", "Color 7_input": "칼라 7", "Change Average HL value": "평균 고저가 바꾸기", "Scales Properties": "눈금설정", "Trend-Based Fib Time": "추세기반 피보나치 시간", "Remove All Indicators": "지표 모두 없앰", "Oscillator_input": "오실레이터", "Last Modified": "마지막 고친시간", "yay Color 0_input": "yay 칼라 0", "Labels": "라벨", "Chande Kroll Stop_study": "Chande Kroll Stop", "Hours_interval": "시간", "Scale Right": "오른눈금", "Money Flow_study": "Money Flow", "siglen_input": "siglen", "Indicator Labels": "지표이름", "Tuesday": "화요일", "Toggle Percentage": "백분율토글", "Remove All Drawing Tools": "드로잉툴 모두 없앰", "Remove all line tools for ": "다음 라인 툴 모두 없애기: ", "Linear Regression Curve_study": "Linear Regression Curve", "Symbol_input": "심볼", "Currency": "통화", "Upper Deviation_input": "어퍼 디비에이션", "Rename Chart Layout": "차트 레이아웃이름 바꾸기", "Save Chart Layout": "차트레이아웃 저장", "Allow up to": "최대 허용", "Label": "라벨", "Post Market": "포스트-마켓", "second": "초", "Any Number": "아무 숫자", "smoothD_input": "smoothD", "Falling_input": "폴링", "Percentage": "퍼센트", "Donchian Channels_study": "Donchian Channels", "Entry price:": "진입가:", "RSI Source_input": "RSI 소스", "Time Cycles": "타임 사이클", " per contract": " 계약당", "Open Manage Drawings": "오픈 매니지 드로잉", "Ichimoku Cloud_study": "일목 구름", "jawLength_input": "jawLength", "Toggle Log Scale": "로그눈금토글", "Apply Elliot Wave Major": "메이저 엘리엇 파동 적용", "Grid": "격자선", "Triangle Down": "트라이앵글 다운", "Mass Index_study": "Mass Index", "Slippage": "슬리피지", "Smoothing_input": "스무딩", "Color 3_input": "칼라 3", "Jaw Length_input": "Jaw 길이", "Almaty": "알마티", "Inside": "내부", "Delete all drawing for this symbol": "이 종목에 대한 드로잉 모두 지우기", "Quotes are delayed by 10 min and updated every 30 seconds": "10분 지연호가, 매 30초 업데이트", "Keltner Channels_study": "Keltner Channels", "Long Position": "롱포지션", "Bands style_input": "밴드 스타일", "Undo {0}": "{0} 되돌리기", "With Markers": "마커도함께", "Momentum_study": "모멘텀", "MF_input": "MF", "On Balance Volume_study": "온밸런스볼륨", "Switch to the next chart": "다음 차트로 바꾸기", "charts by TradingView": "차트 제공 TradingView", "Long length_input": "Long 길이", "Flipped": "위아래대칭", "Indicator Last Value": "지표현재가", "Supermillennium": "수퍼밀레니엄", "W_interval_short": "주", "Color 6_input": "칼라 6", "Log Scale": "로그눈금", "Line - High": "라인 - 고가", "Zurich": "취리히", "Equality Line_input": "이퀄리티 라인", "Open": "열기", "Heikin Ashi": "하이킨 아시", "Line": "라인", "Session": "세션", "Down fractals_input": "다운 프랙탈", "Fib Retracement": "피보나치되돌림", "smalen2_input": "smalen2", "isCentered_input": "isCentered", "Border": "경계", "Klinger Oscillator_study": "Klinger Oscillator", "Absolute": "절대값", "Style": "모습", "Show Left Scale": "왼눈금 보기", "SMI Ergodic Indicator/Oscillator_study": "SMI Ergodic Indicator/Oscillator", "Istanbul": "이스탄불", "Cross": "십자", "Last available bar": "마지막 봉", "Manage Drawings": "그림관리", "Analyze Trade Setup": "트레이드 셋업 분석", "No drawings yet": "그림없음", "Chande MO_input": "Chande MO", "Copy link": "링크복사", "TRIX_study": "트릭스", "MACD_study": "MACD", "RVGI_input": "RVGI", "Realtime": "실시간", "Last edited ": "마지막 편집 ", "signalLength_input": "signalLength", "Middle_input": "미들", "Reset Settings": "설정초기화", "PnF": "피앤에프", "Renko": "렌코", "d_dates": "d", "Point & Figure": "포인트앤피겨", "August": "8월", "Recalculate After Order filled": "체결뒤 재계산", "Source_compare": "소스", "Down bars": "다운 바", "Correlation Coefficient_study": "Correlation Coefficient", "Delayed": "지연", "Bottom Labels": "아래 라벨", "Text color": "문자열색", "Levels": "레벨", "Short Length_input": "쇼트 렝쓰", "teethLength_input": "teethLength", "Failure text color": "실패문자색", "instrument is not allowed": "안되는 종목입니다", "Hong Kong": "홍콩", "FAILURE": "실패", "Open {{symbol}} Text Note": "{{symbol}} 텍스트노트 열기", "October": "10월", "Lock All Drawing Tools": "드로잉툴고정", "Target border color": "대상경계색", "Right End": "오른쪽끝", "Show Symbol Last Value": "종목현재가보기", "Head & Shoulders": "머리 & 어깨", "Do you really want to delete Study Template '{0}' ?": "정말로 스터디 템플릿 '{0}' 을 지우시겠습니까?", "Favorite Drawings Toolbar": "자주 쓰는 드로잉 툴바", "Properties...": "속성...", "MA Cross_study": "MA Cross", "Trend Angle": "추세각", "Snapshot": "스냅샷", "Crosshair": "십자표", "Signal line period_input": "시그널 라인 피어리어드", "Timezone/Sessions Properties...": "타임존/세션 속성...", "Line Break": "라인브레이크", "Quantity": "수량", "Price Volume Trend_study": "가격거래량트렌드", "Triangle Up": "트라이앵글 업", "hour": "시간", "Scales": "눈금", "Delete chart layout": "차트 레이아웃 지우기", "Text": "문자", "F_data_mode_forbidden_letter": "금", "Risk/Reward long": "위험/보상 롱", "Apr": "4월", "Long RoC Length_input": "Long RoC 길이", "Length3_input": "길이 3", "Upper_input": "어퍼", "Madrid": "마드리드", "Use one color": "한가지 색만 쓰기", "Chart Properties": "차트속성", "Exit Full Screen (ESC)": "전체화면 나감 (ESC)", "Show Bars Range": "봉 구간보기", "Show Economic Events on Chart": "차트에 경제이벤트 보기", "%s ago_time_range": "%s전", "Zoom In": "크게보기", "Failure back color": "실패배경색", "Below Bar": "봉아래", "Coordinates": "좌표", "Time Scale": "시간눈금", "

    Only D, W, M intervals are supported for this symbol/exchange. You will be automatically switched to a D interval. Intraday intervals are not available because of exchange policies.

    ": "

    이 종목은 D,WWM 인터벌만 지원됩니다. 저절로 D 인터벌로 바뀌게 됩니다. 일봉 미만 인터벌은 거래소 정책에 의해 제공할 수 없습니다.

    ", "Extend Left": "왼쪽확장", "Date Range": "기간", "Min Move": "최소거래단위", "Price format is invalid.": "가격 포맷이 틀립니다.", "Show Price": "가격보기", "Level_input": "레벨", "Interval is not applicable": "쓸 수 없는 인터벌", "Commodity Channel Index_study": "Commodity Channel Index", "Elder's Force Index_input": "엘더즈 포스 인덱스", "Scales Properties...": "눈금설정...", "Phoenix": "피닉스", "Format": "설정", "Color bars based on previous close": "이전종가에 따라 봉색결정", "Change band background": "밴드배경 바꾸기", "Marketplace Add-ons": "판매애드온", "Adjust Scale": "눈금 조정", "Anchored Text": "고정위치문자", "Edit {0} Alert...": "{0} 얼러트 편집...", "Qty: {0}": "수량: {0}", "Aroon_study": "Aroon", "show MA_input": "show MA", "Ashkhabad": "아슈하바트", "h_dates": "h", "Short Position": "쇼트포지션", "Show Labels": "라벨보기", "Change Interval...": "인터벌바꾸기...", "Apply Default": "디폴트적용", "SMALen3_input": "SMALen3", "Average Directional Index_study": "평균방향성지수", "Fr_day_of_week": "금", "Invite-only script. Contact the author for more information.": "초대전용 스크립트. 자세한 내용을 알려면 오써에게 연락하시기 바랍니다.", "Curve": "곡선", "a year": "1년", "H_in_legend": "고", "Bars Pattern": "봉패턴", "D_input": "일", "Right Labels": "오른 라벨", "Change Interval": "인터벌바꾸기", "p_input": "p", "Chart layout name": "차트레이아웃 이름", "Fib Circles": "피보나치원", "Apply Manual Decision Point": "매뉴얼 디시전 포인트 적용", "Dot": "점", "Target back color": "대상배경색", "All": "전체", "Show Positions": "포지션보기", "orders_up to ... orders": "오더", "Lead 2_input": "리드 2", "Save image": "이미지저장", "Fundamentals": "펀더멘털", "Unlock": "잠금풀기", "Up Wave 2 or B": "업 웨이브 2 또는 B", "Navigation Buttons": "내비게이션버튼", "Miniscule": "미니스큘", "Apply": "적용", "Show Countdown": "카운트다운보기", "Target: {0} ({1}) {2}, Amount: {3}": "타겟: {0} ({1}) {2}, 금액: {3}", "Sine Line": "사인 라인", "{0} financials by TradingView": "{0} 파이낸셜 제공 TradingView", "%d day": "%d일", "Hide": "감추기", "Bottom": "아래", "Target text color": "대상문자열색", "Scale Left": "왼눈금", "Elliott Wave Subminuette": "엘리엇파동 서브미뉴에트", "Down Wave C": "다운 웨이브 C", "Jan": "1월", "Variance": "분산", "Source back color": "소스배경색", "Sao Paulo": "상파울루", "Oct": "10월", "Apply Elliot Wave Minor": "엘리엇파동 마이너 적용", "Inputs": "인풋", "Conversion Line_input": "컨버전 라인", "March": "3월", "Su_day_of_week": "일", "Up fractals_input": "업 프랙탈", "Regression Trend": "회귀추세", "Auto Scale": "자동눈금", "Symbol Description": "종목설명", "Double EMA_study": "Double EMA", "minute": "분", "Price Oscillator_study": "Price Oscillator", "Sync drawings to all charts": "모든 차트에 드로잉 동기화", "Chop Zone_study": "Chop Zone", "Stop Color:": "스탑색:", "Stay in Drawing Mode": "그리기모드 유지", "Bottom Margin": "아래여백", "Dubai": "두바이", "Save Chart Layout saves not just some particular chart, it saves all charts for all symbols and intervals which you are modifying while working with this Layout": "차트레이아웃 저장은 귀하가 이 레이아웃으로 작업하면서 바꾼 종목 및 인터벌과 차트를 모두 저장한다.", "Average True Range_study": "평균 트루레인지", "Max value_input": "최대값", "MA Length_input": "이평 길이", "Invite-Only Scripts": "초대전용 스크립트", "Time Interval": "시간간격", "UpperLimit_input": "어퍼 리밋", "sym_input": "sym", "DI Length_input": "DI 길이", "Script Editor...": "스크립트편집기...", "Extend Lines": "확장선", "SMI_input": "SMI", "Arrow": "화살표", "Square": "네모", "Basis_input": "베이시스", "Moving Average_study": "이동 평균", "lengthStoch_input": "lengthStoch", "Taipei": "대만", "Objects Tree": "오브젝트트리", "Remove from favorites": "즐겨찾기지움", "Copy": "복사", "Scale Series Only": "종목눈금만", "Simple": "단순", "Report a data issue": "데이터이슈 리포트", "Arnaud Legoux Moving Average_study": "Arnaud Legoux Moving Average", "Technical Analysis": "기술적분석", "Brisbane": "브리즈번", "Verify Price for Limit Orders": "리밋오더가격 검증", "VI +_input": "VI +", "Line Width": "선너비", "Lead 1_input": "리드 1", "Always Show Stats": "통계 늘 보기", "Down Wave 4": "다운 웨이브 4", "Down Wave 5": "다운 웨이브 5", "Simple ma(signal line)_input": "단순 이평(시그널 라인)", "Ray": "빛", "Public Library": "퍼블릭라이브러리", " Do you really want to delete Drawing Template '{0}' ?": " 정말로 드로잉 템플릿 '{0}' 을 지우시겠습니까?", "Down Wave 3": "다운 웨이브 3", "Account Size": "어카운트 사이즈", "Close message": "메시지닫기", "UTC": "표준시", "Show Drawings Toolbar": "드로잉 툴바 보기", "Chaikin Oscillator_study": "체이킨 오실레이터", "Price Source": "프라이스 소스", "Market Open": "마켓오픈", "Color Theme": "색상테마", "Centered_input": "센터드", "Bollinger Bands Width_input": "볼린저 밴드 너비", "Apply Indicator on {0} ...": "{0}에 지표적용...", "Fib Speed Resistance Arcs": "피보나치 속도 저항 원호", "Error occured while publishing": "퍼블리슁하다 에러났음", "Fisher_input": "피셔", "Color 1_input": "칼라 1", "Moving Average Weighted_study": "가중 이동 평균", "Save": "저장", "Type": "타입", "Chart Layout Name": "차트레이아웃 이름", "Short period_input": "쇼트 피어리어드", "Load Chart Layout": "차트레이아웃 불러오기", "Show Values": "값 보기", "Fib Speed Resistance Fan": "피보나치 속도 저항 부채꼴", "Compare": "비교", "This chart layout has more than 1000 drawings, which is a lot! This may negatively affect performance, storage and publishing. We recommend to remove some drawings to avoid potential performance issues.": "이 차트레이아웃은 1000개가 넘는 드로잉이 있습니다- 너무 많습니다! 이렇게 많으면, 성능, 저장 및 퍼블리슁을 떨어뜨리게 됩니다. 잠재적인 성능이슈를 피하려면 일부 드로잉을 없애기를 추천합니다.", "Left End": "왼쪽끝", "%d year": "%d년", "Always Visible": "언제나 보임", "S_data_mode_snapshot_letter": "스", "post-market": "포스트마켓", "Flag": "플래그", "Elliott Wave Circle": "엘리엇파동원", "Earnings breaks": "기업수익 경계", "Do not ask again": "다시 묻지 않기", "Extend Right End": "오른쪽끝확장", "Tue": "화", "smalen4_input": "smalen4", "CCI_input": "CCI", "Unmerge Up": "위로 떼냄", "increment_input": "인크레먼트", "(H + L)/2": "(고 + 저)/2", "XABCD Pattern": "XABCD 패턴", "Schiff Pitchfork": "쉬프쇠스랑", "powered by {0}": "{0} 제공", "DEMA_input": "DEMA", "NV_input": "NV", "Choppiness Index_study": "Choppiness Index", "Study Template '{0}' already exists. Do you really want to replace it?": "같은 이름의 스터디 템플릿 '{0}' 가 이미 있습니다. 정말로 바꾸시겠습니까?", "Merge Down": "아래로 겹침", "Th_day_of_week": "목", "Studies": "스터디", "eod delayed": "일종가데이터(지연)", "Delete": "지움", "in %s_time_range": "in %s", "percent_input": "퍼센트", "September": "9월", "Length_input": "길이", "Avg HL in minticks": "최소틱단위 평균 고저", "Accumulation/Distribution_input": "어큐물레이션/디스트리뷰션", "Sync": "동기", "C_in_legend": "종", "Weeks_interval": "주", "smoothK_input": "smoothK", "Percentage_scale_menu": "백분율눈금", "Change Extended Hours": "확장시간바꾸기", "MOM_input": "MOM", "h_interval_short": "시간", "Rotated Rectangle": "회전네모", "Modified Schiff": "변형쉬프", "Symbol": "종목", "Adelaide": "애들레이드", "Send Backward": "한단계뒤로", "Mexico City": "멕시코 시티", "TRIX_input": "트릭스", "Show Price Range": "가격구간보기", "Elliott Major Retracement": "엘리엇 메이저 되돌림", "Notification": "알림", "Fri": "금", "just now": "방금", "Forecast": "예상", "Fraction part is invalid.": "분수 부분이 잘못 되었습니다.", "Connecting": "연결중", "Ghost Feed": "고스트피드", "Histogram_input": "히스토그램", "The Extended Trading Hours feature is available only for intraday charts": "확장거래시간은 인트라데이 차트에서만 가능합니다", "open": "오픈", "StdDev_input": "표준편차", "Relative Strength Index_study": "상대강도지수", "Diamond": "다이아몬드", "My Scripts": "내스크립트", "Monday": "월요일", "-DI_input": "-DI", "short_input": "쇼트", "top": "위", "a month": "1달", "Precision": "정밀도", "depth_input": "뎊쓰", "Please enter chart layout name": "차트레이아웃 이름을 넣으시오", "Mar": "3월", "Arrow Down": "애로우 다운", "Date": "날짜", "Format...": "설정...", "Toggle Auto Scale": "자동눈금토글", "Toggle Maximize Pane": "페인최대화 토글", "Periods_input": "피어리어드", "Zig Zag_study": "지그재그", "Actual": "실제", "SUCCESS": "성공", "Detrended Price Oscillator_input": "디트렌디드 프라이스 오실레이터", "{0} copy": "{0} 카피", "length_input": "길이", "Close Position": "포지션 닫기", "Price Line": "가격선", "Area With Breaks": "영역 브레이크", "Zoom Out": "작게보기", "Stop Level. Ticks:": "스탑레벨틱:", "Jul": "7월", "Economy & Symbols": "이코노미 & 심볼", "Above Bar": "봉위", "Visual Order": "보는차례", "Warning": "경고", "Stop Background Color": "스탑배경색", "Slow length_input": "슬로우 렝쓰", "Conversion Line Periods_input": "컨버전 라인 피어리어드", "Sector": "섹터", "powered by TradingView": "기능 제공 Tradingview", "Text:": "문자열:", "Stochastic_study": "스토캐스틱", "Apply WPT Down Wave": "WPT Down Wave 적용", "Marker Color": "마켓 색상", "TEMA_input": "TEMA", "Apply WPT Up Wave": "WPT Up Wave 적용", "Min Move 2": "최소거래단위2", "Directional Movement_study": "Directional Movement", "Extend Left End": "왼쪽끝확장", "Advance/Decline_study": "어드밴스/디클라인", "New York": "뉴욕", "Flag Mark": "깃발표시", "Drawings": "그리기", "Fast length_input": "패스트 길이", "Cancel": "취소", "Bar #": "봉 #", "Median_input": "중앙값", "Redo": "다시하기", "Hide Drawings Toolbar": "드로잉 툴바 숨기기", "Ultimate Oscillator_study": "얼티미트 오실레이터", "This chart layout has a lot of objects and can't be published! Please report to {0} for further details.": "이 차트에는 오브젝트가 너무 많아 퍼블리쉬할 수 없습니다! 자세한 상황을 {0} 에게 리포트하여 주십시오.", "Vert Grid Lines": "세로격자선", "Growing_input": "그로잉", "Angle": "각", "Show Only Future Events": "미래이벤트만 보기", "Plot_input": "플롯", "Chicago": "시카고", "Color 8_input": "칼라 8", "San Salvador": "산살바도르", "Search": "찾기", "Bollinger Bands Width_study": "볼린저밴드 너비", "roclen3_input": "roclen3", "Overbought_input": "과매수", "DPO_input": "DPO", "Levels Line": "레벨 라인", "No study templates saved": "저장된 스터디템플릿이 없음", "Trend Line": "추세줄", "Relative Vigor Index_study": "Relative Vigor Index", "Circle": "원", "Price Range": "가격범위", "Extended Hours": "확장시간", "Los Angeles": "로스엔젤레스", "Triangle": "삼각형", "Line With Breaks": "라인 브레이크", "Period_input": "피어리어드", "Watermark": "워터마크", "Trigger_input": "트리거", "SigLen_input": "SigLen", "Clone": "복제", "Color 2_input": "칼라 2", "Show Prices": "가격보기", "Contracts": "계약", "{0} chart by TradingView": "{0} 차트 제공 TradingView", "Timezone/Sessions": "타임존/세션", "Save Indicator Template As...": "다음으로 지표 템플릿 저장...", "Arrow Mark Right": "오른화살표", "Background color 2": "배경색 2", "Background color 1": "배경색 1", "Circles": "원", "McGinley Dynamic_study": "McGinley Dynamic", "Visible on Mouse Over": "...위로 마우스 오면 보임", "Thu": "목", "Vortex Indicator_study": "Vortex Indicator", "Williams Alligator_study": "Williams Alligator", "delayed": "지연", "ROCLen1_input": "ROCLen1", "Border Color": "경계색", "M_interval_short": "달", "Change Symbol...": "종목바꾸기...", "Price Levels": "가격레벨", "Show Splits": "스플릿 보기", "Zero Line_input": "제로 라인", "Increment_input": "인크레먼트", "Days_interval": "일", "Show Right Scale": "오른눈금 보기", "Show Alert Labels": "얼러트 라벨 보기", "Net Volume_study": "순거래량", "Lock": "잠금", "length14_input": "length14", "High": "고가", "ext": "확장", "Date and Price Range": "날짜 및 가격 범위", "Polyline": "다선형", "Reconnect": "다시 연결", "Add to favorites": "즐겨찾기추가", "Label Down": "레이블 다운", "Saturday": "토요일", "Symbol Last Value": "종목현재가", "roclen4_input": "roclen4", "maximum_input": "맥시멈", "Wed": "수", "Paris": "파리", "D_data_mode_delayed_letter": "지", "Symbol Info": "종목정보", "Pyramiding": "피라미딩", "fastLength_input": "패스트렝쓰", "Width": "너비", "Loading": "로딩", "Historical Volatility_study": "과거변동성", "Template": "템플릿", "Compare or Add Symbol...": "종목 비교/추가...", "Parallel Channel": "평행채널", "Stop: {0} ({1}) {2}, Amount: {3}": "스탑: {0} ({1}) {2}, 금액: {3}", "Second fraction part is invalid.": "두번째 분수 부분이 잘못 되었습니다.", "Divisor_input": "디바이저", "Down Wave 1 or A": "다운 웨이브 1 또는 A", "ROC_input": "ROC", "Dec": "12월", "Extend": "확장", "length7_input": "length7", "Toggle Maximize Chart": "차트최대화토글", "Send to Back": "맨뒤로", "Undo": "되돌리기", "Window Size_input": "윈도우 사이즈", "Mon": "월", "Reset Scale": "눈금초기화", "Long Length_input": "Long 길이", "True Strength Indicator_study": "True Strength Indicator", "%R_input": "%R", "There are no saved charts": "저장된 차트가 없습니다", "Instrument is not allowed": "쓸 수 없는 종목입니다", "bars_margin": "봉", "Show Indicator Last Value": "지표현재가보기", "Initial capital": "초기 자본금", "Show Angle": "각도 보기", "Honolulu": "호노룰루", "More features on tradingview.com": "Tradingview.com 에 있는 더욱 더 많은 기능들", "smalen3_input": "smalen3", "Length1_input": "길이 1", "Always Invisible": "언제나 안보임", "Days": "일", "x_input": "x", "Save As...": "...로 저장", "Lock/Unlock": "잠그기/풀기", "Elliott Double Combo Wave (WXY)": "엘리엇 다블콤보 파동 (WXY)", "Parabolic SAR_study": "Parabolic SAR", "Fisher Transform_study": "Fisher Transform", "Show Hidden Tools": "숨긴툴 보기", "Hollow Candles": "할로우캔들", "Any Symbol": "아무 종목", "UO_input": "UO", "Stats Text Color": "통계 문자색", "Minutes": "분", "Short RoC Length_input": "쇼트 RoC 렝쓰", "Show Orders": "주문보기", "Countdown": "카운트다운", "Jaw_input": "Jaw", "Right": "오른쪽", "Help": "도움말", "Coppock Curve_study": "Coppock Curve", "Reset Chart": "차트리셋", "Sep": "9월", "Sunday": "일요일", "Themes": "색상테마", "Left Axis": "왼축", "YES": "예", "longlen_input": "longlen", "Moving Average Exponential_study": "지수 이동 평균", "Source border color": "소스경계선색", "Redo {0}": "{0} 다시하기", "Cypher Pattern": "사이퍼 패턴", "s_dates": "s", "Move Down": "아래로옮김", "Caracas": "카라카스", "Area": "영역", "invalid symbol": "잘못된 종목", "Triangle Pattern": "삼각형패턴", "Gann Fan": "간부채꼴", "Balance of Power_study": "Balance of Power", "EOM_input": "EOM", "Font Size": "폰트 크기", "Drawings Toolbar": "드로잉 툴바", "Apply Manual Risk/Reward": "수동 위험/보상 적용", "Market Closed": "마켓 클로즈드", "Sydney": "시드니", "Indicators": "지표", "Callout": "콜아웃", "q_input": "q", "You are notified": "알림이 왔습니다", "%D_input": "%D", "Text Alignment:": "문자열맞춤:", "Offset_input": "오프셋", "Risk": "리스크", "Price Scale": "가격눈금", "HV_input": "HV", "Seconds": "초", "(H + L + C)/3": "(고 + 저 + 종)/3", "Start_input": "시작", "R_data_mode_realtime_letter": "실", "Hours": "시간", "Berlin": "베를린", "Color 4_input": "칼라 4", "Angles": "각", "Prices": "가격", "Extended Hours (Intraday Only)": "확장시간 (일중에만)", "July": "7월", "Create Horizontal Line": "가로줄 만들기", "Minute": "분", "Cycle": "사이클", "ADX Smoothing_input": "ADX 스무딩", "One color for all lines": "모든 줄에 한가지 색", "m_dates": "m", "Settings": "설정", "Drawing Tools": "드로잉툴", "Candles": "캔들", "We_day_of_week": "수", "Pre Market": "프리-마켓", "Width (% of the Box)": "너비(박스의 %)", "%d minute": "%d분", "Pip Size": "핍사이즈", "Wednesday": "수요일", "This drawing is used in alert. If you remove the drawing, the alert will be also removed. Do you want to remove the drawing anyway?": "얼러트에 드로잉이 있습니다. 드로잉을 없애면 해당 얼러트도 함께 없어집니다. 그래도 드로잉을 없애겠습니까?", "Hide All Drawing Tools": "드로잉툴숨김", "Show alert label line": "얼러트 라벨 라인 보기", "Down Wave 2 or B": "다운 웨이브 2 또는 B", "MA_input": "이평", "Detrended Price Oscillator_study": "Detrended Price Oscillator", "not authorized": "권한 없음", "Bar's Style": "봉스타일", "Image URL": "이미지 URL", "Submicro": "서브마이크로", "SMI Ergodic Oscillator_input": "SMI 에르고딕 오실레이터", "Show Objects Tree": "오브젝트트리보기", "Primary": "주요", "Price:": "가격:", "Gann Box": "간상자", "Bring to Front": "맨앞으로", "Brush": "붓", "Not Now": "지금은 아닙니다", "lengthRSI_input": "lengthRSI", "Yes": "예", "{0} P&L: {1}": "{0} 손익: {1}", "Events & Alerts": "이벤트 & 얼러트", "+DI_input": "+DI", "Apply Default Drawing Template": "디폴트 드로잉템플릿 적용", "Compact": "컴팩트", "Save As Default": "기본설정으로 사용", "Invalid Symbol": "잘못된 종목", "Inside Pitchfork": "쇠스랑안", "yay Color 1_input": "yay 칼라 1", "Quandl is a huge financial database that we have connected to TradingView. Most of its data is EOD and is not updated in real-time, however the information may be extremely useful for fundamental analysis.": "Quandl은 TradingView에 연결된 대형 데이터베이스입니다. 대부분의 데이터는 종가이며, 실시간데이터는 아니지만, 펀더멘털분석에 아주 쓸모가 있을 것입니다.", "Hide Marks On Bars": "봉의 마크 감추기", "Note": "노트", "Kagi": "카기", "WMA Length_input": "WMA Length", "Show Dividends on Chart": "차트에서 배당금보기", "Show Executions": "주문실행보기", "Borders": "경계선", "loading...": "로딩...", "Closed_line_tool_position": "포지션청산", "Columns": "컬럼", "Change Resolution": "레졸루션 바꾸기", "Indicator Arguments": "지표인자", "Fib Spiral": "피보나치 나선", "Apply Elliot Wave": "엘리엇파동적용", "Degree": "각도", " per order": " 주문당", "Line - HL/2": "라인 - HL/2", "Up Wave 4": "업 웨이브 4", "Jun": "6월", "Least Squares Moving Average_study": "Least Squares Moving Average", "Overlay the main chart": "메인차트위에 겹쳐보기", "powered by ": "기능 제공 ", "Source_input": "소스", "Disjoint Angle": "분리각", "%K_input": "%K", "Success back color": "성공배경색", "Toronto": "토론토", "Please enter template name": "템플릿 이름을 넣으세요", "Symbol Name": "종목이름", "Tokyo": "도쿄", "Events Breaks": "이벤트경계", "Study Templates": "스터디템플릿", "long_input": "롱", "Months": "달", "Symbol Info...": "종목정보...", "Elliott Wave Minor": "엘리엇파동 마이너", "Read our blog for more info!": "당사의 블로그를 통해 자세히 알아보십시오!", "Measure (Shift + Click on the chart)": "재기(Shift + Click)", "Override Min Tick": "소숫점아래 표시바꾸기", "Thursday": "목요일", "Dialog": "다이얼로그", "Add To Text Notes": "텍스트노트에 넣기", "Elliott Triple Combo Wave (WXYXZ)": "엘리엇 트리플콤보 파동 (WXYXZ)", "Multiplier_input": "멀티플라이어", "Risk/Reward": "위험/보상", "Base Line Periods_input": "베이스 라인 피어리어드", "Show Dividends": "배당보기", "pre-market": "프리마켓", "Top Labels": "탑레벨", "Show Earnings": "어닝 보기", "Line - Open": "라인 - 시가", "Elliott Triangle Wave (ABCDE)": "엘리엇 트라이앵글 웨이브 (ABCDE)", "Minuette": "서브미뉴에트", "Text Wrap": "문자열줄넘김", "Reverse Position": "리버스 포지션", "Elliott Minor Retracement": "엘리엇 마이너 되돌림", "Pitchfan": "쇠스랑부채꼴", "No symbols matched your criteria": "찾는 종목이 없습니다.", "Icon": "아이콘", "Short_input": "쇼트", "Fib Wedge": "피보나치 쐐기", "Indicator_input": "인디케이터", "Open Interval Dialog": "인터벌대화창열기", "Shanghai": "상하이", "Athens": "아테네", "Q_input": "Q", "Content": "내용", "middle": "가운데", "Lock Cursor In Time": "커서시간고정", "Intermediate": "중간", "Eraser": "지우개", "TimeZone": "타임존", "Envelope_study": "Envelope", "Symbol Labels": "종목이름", "Active Symbol": "액티브종목", "Horizontal Line": "가로줄", "O_in_legend": "시", "Confirmation": "확인", "HL Bars": "고저봉", "Add Alert": "얼러트 넣기", "Lines:": "선", "Hide Favorite Drawings Toolbar": "자주 쓰는 드로잉 툴바 숨기기", "Buenos Aires": "부에노스아이레스", "useTrueRange_input": "useTrueRange", "Bangkok": "방콕", "Profit Level. Ticks:": "수익레벨틱:", "Show Date/Time Range": "날짜/시간 구간보기", "Level {0}": "{0} 레벨", "Favorites": "즐겨찾기", "Horz Grid Lines": "가로격자선", "Text Notes are available only on chart page. Please open a chart and then try again.": "텍스트노트는 차트에서만 쓸 수 있습니다. 차트열기를 한뒤 다시 해보세요.", "Tu_day_of_week": "화", "day": "일", "deviation_input": "디비에이션", "week": "주", "Base currency": "베이스 통화", "VWMA_study": "VWMA", "Success text color": "성공문자열색", "ADX smoothing_input": "ADX 스무딩", "%d hour": "%d시간", "Order size": "오더 사이즈", "Displacement_input": "디스플레이스먼트", "Tokelau": "토켈라우", "Save Indicator Template As": "다음으로 지표 템플릿 저장:", "ADR_B_input": "ADR_B", "Chaikin Money Flow_study": "체이킨 머니 플로우", "Ease Of Movement_study": "Ease Of Movement", "Defaults": "기본설정", "Oversold_input": "과매도", "Williams %R_study": "Williams %R", "Visual settings...": "보기설정...", "RSI_input": "RSI", "Long period_input": "Long 피어리어드", "Mo_day_of_week": "월", "center": "가운데", "Vertical Line": "세로줄", "Bogota": "보고타", "Show Splits on Chart": "차트에 주식분할보기", "Sorry, the Copy Link button doesn't work in your browser. Please select the link and copy it manually.": "귀하의 브라우저에서는 카피 링크 버튼이 작동하지 않습니다. 링크를 고르고 직접 카피하시기 바랍니다.", "X_input": "X", "C_data_mode_connecting_letter": "연", "Simple ma(oscillator)_input": "단순 이평(오실레이터)", "SMALen4_input": "SMALen4", "ROCLen4_input": "ROCLen4", "Aroon Down_input": "아룬 다운", "Add To Watchlist": "왓치리스트에 넣기", "Total": "합계", "Extend Right": "오른쪽확장", "left": "왼쪽", "Lock scale": "눈금고정", "Time Levels": "시간레벨", "smalen1_input": "smalen1", "Drawing Template '{0}' already exists. Do you really want to replace it?": "같은 이름의 드로잉 템플릿 '{0}' 이 이미 있습니다. 정말로 바꾸시겠습니까?", "Offset": "오프셋", "Fans": "부채꼴", "Line - Low": "라인 - 저가", "Price_input": "프라이스", "Close_input": "종가", "Arrow Mark Down": "아래화살표", "Weeks": "주", "Modified Schiff Pitchfork": "변형쉬프쇠스랑", "Relative Volatility Index_study": "상대변동성지수", "Elliott Impulse Wave (12345)": "엘리엇 임펄스 파동 (12345)", "PVT_input": "PVT", "Circle Lines": "서클 라인", "Hull Moving Average_study": "Hull Moving Average", "Aug": "8월", "Save Drawing Template As": "드로잉 템플릿 다른 이름으로 저장", "Bring Forward": "한단계앞으로", "Apply Defaults": "기본설정", "Friday": "금요일", "Zero_input": "제로", "Company Comparison": "회사비교", "Stochastic Length_input": "스토캐스틱 렝쓰", "mult_input": "곱", "URL cannot be received": "URL 을 받을 수 없음", "Signal smoothing_input": "시그널 스무딩", "E_data_mode_end_of_day_letter": "종", "Trend-Based Fib Extension": "추세기반 피보나치 확장", "Top": "탑", "Double Curve": "더블곡선", "Stochastic RSI_study": "스토캐스틱 RSI", "Horizontal Ray": "가로빛", "Ok": "확인", "Edit Order": "주문 편집", "Trades on Chart": "차트위 트레이드", "Chaikin Oscillator_input": "체이킨 오실레이터", "Listed Exchange": "상장 거래소", "Error:": "에러", "Fullscreen mode": "전체화면모드", "Add Text Note For {0}": "{0}에 텍스트노트 넣기", "K_input": "K", "In Session": "정규 세션", "ROCLen3_input": "ROCLen3", "Micro": "마이크로", "Text Color": "문자열색", "Built-ins": "빌트인", "Extend Alert Line": "얼러트 라인 확장하기", "Oops!": "아이쿠!", "New Zealand": "뉴질랜드", "CHOP_input": "CHOP", "Scale": "눈금", "Screen (No Scale)": "화면전체", "Extended Alert Line": "확장 얼러트 라인", "Signal_input": "시그널", "OK": "확인", "like": "likes", "Original": "원본", "Show": "보기", "Exchange": "거래소", "{0} bars": "{0} 봉", "Lower_input": "로우어", "Created ": "만듬 ", "Arc": "원호", "Elder's Force Index_study": "Elder's Force Index", "Show Earnings on Chart": "차트에 기업수익 보기", "ATR_input": "ATR", "Do you really want to delete Color Theme '{0}' ?": "정말로 컬러 테마 '{0}' 을 지우시겠습니까?", "Low": "저가", "Bollinger Bands %B_study": "볼린저 밴드 %B", "Time Zone": "타임존", "right": "오른쪽", "%d month": "%d달", "Wrong value": "잘못된 값", "Upper Band_input": "어퍼 밴드", "Sun": "일", "Rename...": "...로 이름 바꾸기", "February": "2월", "start_input": "스타트", "No indicators matched your criteria.": "찾는 지표가 없습니다.", "Commission": "커미션", "Short length_input": "쇼트 렝쓰", "Kolkata": "콜카타", "Submillennium": "서브밀레니엄", "Precise Labels_scale_menu": "상세이름", "Smoothed Moving Average_study": "Smoothed Moving Average", "Do you really want to delete Drawing Template '{0}' ?": "정말로 드로잉 템플리트 '{0}' 을 지우시겠습니까?", "Chatham Islands": "채텀 제도", "Channel": "채널", "Stop syncing drawing": "드로잉 동기화 멈추기", "FXCM CFD data is available only to FXCM account holders": "FXCM CFD 데이터는 FXCM 계정을 가진 사람만 쓸 수 있습니다", "Lagging Span 2 Periods_input": "래깅 스팬 2 피어리어드", "Connecting Line": "연결선", "Seoul": "서울", "Lower Band_input": "로우어 밴드", "Teeth_input": "티쓰", "Moscow": "모스코바", "Save New Chart Layout": "새 차트레이아웃 저장", "Fib Channel": "피보나치채널", "Visibility": "보임", "Events": "이벤트", "Save Drawing Template As...": "...로 드로잉템플릿 저장", "Minutes_interval": "분", "Insert Study Template": "스터디템플릿넣기", "exponential_input": "익스포넨셜", "OnBalanceVolume_input": "온밸런스볼륨", "roclen2_input": "roclen2", "Chande Momentum Oscillator_study": "Chande Momentum Oscillator", "Not applicable": "쓸 수 없음", "or copy url:": "또는 url 복사:", "Bollinger Bands %B_input": "볼린저 밴드 %B", "Singapore": "싱가폴", "Template name": "템플릿이름", "Indicator Values": "지표값", "Lips Length_input": "Lips 길이", "Use Upper Deviation_input": "어퍼 디비에이션 쓰기", "L_in_legend": "저", "Remove custom interval": "커스텀 인터벌 없애기", "shortlen_input": "shortlen", "Quotes are delayed by {0} min": "{0} 분 지연 호가", "Copied to clipboard": "클립보드로 복사됐음", "ADX_input": "ADX", "Profit Background Color": "수익배경색", "Trading": "트레이딩", "Exponential_input": "익스포넨셜", "ROCLen2_input": "ROCLen2", "Use Lower Deviation_input": "로우어 디비에이션 쓰기", "Previous": "이전", "Stay In Drawing Mode": "계속그리기 모드", "Comment": "코멘트", "Long_input": "롱", "Bars": "봉", "Source text color": "소스문자열색", "Flat Top/Bottom": "위나 아래 수평", "Symbol Type": "종목타입", "loading data": "데이터로딩중", "December": "12월", "Lock drawings": "드로잉 잠금", "Border color": "경계색", "Left Labels": "왼쪽라벨", "Insert Indicator...": "지표넣기", "P_input": "P", "Paste %s": "%s 붙여넣기", "Timezone": "타임존", "Invite-only script. You have been granted access.": "초대전용 스크립트. 귀하에게 접근이 허락되었습니다.", "Sat": "토", "ATR Length": "ATR 렝쓰", "Rectangle": "네모", "Supercycle": "수퍼사이클", "Feb": "2월", "Transparency": "투명도", "No": "아니오", "All Indicators And Drawing Tools": "지표 및 드로잉툴 전체", "Cyclic Lines": "사이클릭 라인", "length28_input": "length28", "ABCD Pattern": "ABCD 패턴", "closed": "장마감", "When selecting this checkbox the study template will set \"__interval__\" interval on a chart": "이 체크박스를 고르면 스터디 템플릿은 차트 인터벌을 \"__interval__\"로 세팅합니다", "NO": "아니오", "Add": "추가", "OC Bars": "OC 봉", "Millennium": "밀레니엄", "Price Label": "가격라벨", "Graphics": "그래픽", "NEW": "새노트", "Wick": "윅", "Up bars": "업 바", "Hull MA_input": "Hull 이평", "Schiff": "쉬프", "Lock Scale": "눈금고정", "distance: {0}": "거리: {0}", "Extended": "확장", "Three Drives Pattern": "쓰리 드라이브 패턴", "Create Vertical Line": "세로줄 만들기", "Arcs": "원호", "Top Margin": "위여백", "Length2_input": "길이 2", "Insert Drawing Tool": "그림툴넣기", "OHLC Values": "시고저종 값", "Correlation_input": "코릴레이션", "Scales Text": "눈금문자", "Session Breaks": "세션구분", "Add {0} To Watchlist": "왓치리스트에 {0} 추가", "Anchored Note": "고정위치노트", "lipsLength_input": "lipsLength", "Apply Indicator on {0}": "{0}에 지표적용", "X Cross": "X 크로스", "November": "11월", "Tehran": "테헤란", "Balloon": "풍선", "Background Color": "배경색", "an hour": "한시간", "Right Axis": "오른축", "D_data_mode_delayed_streaming_letter": "지", "VI -_input": "VI -", "slowLength_input": "슬로우렝쓰", "Click to set a point": "그릴지점 클릭", "January": "1월", "Indicators, Fundamentals, Economy and Add-ons": "지표,펀드멘탈,경제,애드온", "Arrow Up": "애로우 업", "n/a": "없음", "Indicator Titles": "지표이름", "Sa_day_of_week": "토", "Change area background": "영역배경 바꾸기", "Error": "에러", "Edit Position": "포지션 편집", "RVI_input": "RVI", "Awesome Oscillator_study": "오썸 오실레이터", "Recalculate On Every Tick": "매틱마다 재계산", "Left": "왼쪽", "Show Text": "문자열보기", "Objects Tree...": "오브젝트 트리", "Source Code": "소스코드", "Add Symbol": "종목추가", "Projection": "프로젝션", "Track time": "시간추적", "Enter a new chart layout name": "새 차트레이아웃 이름을 넣으시오", "Signal Length_input": "시그널 렝쓰", "Properties": "속성", "Teeth Length_input": "티쓰 렝쓰", "Point Value": "포인트밸류", "D_interval_short": "일", "Label Up": "레이블 업", "Close": "종", "ParabolicSAR_input": "파라볼릭SAR", "Log Scale_scale_menu": "로그눈금", "MACD_input": "MACD", "Do not show this message again": "이 메시지 다시 보지 않기", "Precise Labels": "상세이름", "Up Wave 3": "업 웨이브 3", "Arrow Mark Left": "왼화살표", "Source Code...": "소스코드...", "Up Wave 5": "업 웨이브 5", "Line - Close": "라인 - 종가", "(O + H + L + C)/4": "(시 + 고 + 저 + 종)/3", "Confirm Inputs": "인풋 확인", "Open_line_tool_position": "포지션보유", "Lagging Span_input": "래깅 스팬", "Subminuette": "서브미뉴에트", "Mirrored": "거울대칭", "Price": "가격", "Vancouver": "밴쿠버", "Triple EMA_study": "트리플 EMA", "Elliott Correction Wave (ABC)": "엘리엇 코렉션 파동 (ABC)", "Error while trying to create snapshot.": "스냅샷 만들기 에러", "Label Background": "라벨배경색", "Templates": "템플릿", "Please report the issue or click Reconnect.": "문제를 보고하거나 다시 연결을 누르십시오.", "1. Slide your finger to select location for first anchor
    2. Tap anywhere to place the first anchor": "1. 손가락으로 밀어 첫 앵커 자리를 고르시오
    2. 아무 곳이나 톡 두들겨 첫 앵커 자리를 정하십시오", "Signal Labels": "신호라벨", "May": "5월", "Are you sure?": "맞습니까?", "Color 5_input": "칼라 5", "Up Wave 1 or A": "업 웨이브 1 또는 A", "Scale Price Chart Only": "가격차트만 스케일", "Default": "기본설정", "auto_scale": "자동", "Background": "배경", "% of equity": "에쿼티 %", "Apply Elliot Wave Intermediate": "인터미디어트 엘리엇파동 적용", "VWMA_input": "VWMA", "Lower Deviation_input": "로우어 디비에이션", "Save Interval": "인터벌 저장", "Extend Lines Left": "선왼쪽연장", "Reverse": "리버스", "Oops, something went wrong": "아이쿠, 뭔가 잘못되었네요", "Shapes_input": "셰이프", "Median": "평균값", "Show Source Code": "소스코드 보기", "Remove": "없애기", "len_input": "len", "Arrow Mark Up": "위화살표", "April": "4월", "log": "로그눈금", "Crosses_input": "크로스", "KST_input": "KST", "Sync drawing to all charts": "모든 차트에 드로잉 동기화", "LowerLimit_input": "로우어 리밋", "Know Sure Thing_study": "Know Sure Thing", "Copy Chart Layout": "차트 레이아웃 복사", "Compare...": "비교...", "1. Slide your finger to select location for next anchor
    2. Tap anywhere to place the next anchor": "1. 손가락으로 밀어 다음 앵커 자리를 고르시오
    2. 아무 곳이나 톡 두들겨 다음 앵커 자리를 정하십시오", "Compare or Add Symbol": "종목 비교/추가", "Color": "색", "Aroon Up_input": "아룬 업", "bottom": "아래", "Scales Lines": "눈금선", "Type the interval number for munute charts (i.e. 5 if it is going to be a five minute chart). Or number plus letter for H (Hourly), D (Daily), W (Weekly), M (Monthly) intervals (i.e. D or 2H)": "분차트 인터벌값 (보기, 5분차트면 5) 또는 숫자와 H (시간), D (일), W (주), M (달) 과 같은 인터벌 글자 (보기, D 또는 2H) 를 치십시오.", "Up Wave C": "업 웨이브 C", "Show Distance": "거리 보기", "Risk/Reward Ratio: {0}": "위험/보상율: {0}", "Restore Size": "원래 크기로", "Volume Oscillator_study": "거래량오실레이터", "Williams Fractal_study": "Williams Fractal", "Merge Up": "위로 겹침", "Right Margin": "오른여백", "Ellipse": "타원", "Warsaw": "바르샤바"} \ No newline at end of file +{"ticks_slippage ... ticks": "틱", "Months_interval": "달", "Realtime": "실시간", "Callout": "콜아웃", "Sync to all charts": "모든 차트에 동기화", "month": "달", "London": "런던", "roclen1_input": "roclen1", "Unmerge Down": "아래로 떼냄", "Percents": "퍼센트", "Search Note": "노트찾기", "Minor": "마이너", "Do you really want to delete Chart Layout '{0}' ?": "정말로 차트 레이아웃 '{0}' 을 지우시겠습니까?", "Quotes are delayed by {0} min and updated every 30 seconds": "{0}분 지연호가, 매 30초 업데이트", "Magnet Mode": "자석모드", "Grand Supercycle": "그랜드 수퍼사이클", "OSC_input": "OSC", "Hide alert label line": "얼러트 라벨 라인 숨기기", "Volume_study": "거래량 (Volume)", "Lips_input": "Lips", "Show real prices on price scale (instead of Heikin-Ashi price)": "가격 눈금에 실제 가격 보이기 (하이킨 아시 가격대신)", "Histogram": "막대그래프", "Base Line_input": "베이스 라인", "Step": "스텝", "Insert Study Template": "스터디템플릿넣기", "Fib Time Zone": "피보나치 타임존", "SMALen2_input": "SMALen2", "Bollinger Bands_study": "볼린저 밴드 (Bollinger Bands)", "Nov": "11월", "Show/Hide": "보기/숨기기", "Upper_input": "어퍼", "exponential_input": "익스포넨셜", "Move Up": "위로옮김", "Symbol Info": "종목정보", "This indicator cannot be applied to another indicator": "이 지표를 다른 지표에 적용할 수 없습니다", "Scales Properties...": "눈금설정...", "Count_input": "카운트", "Full Circles": "동그라미", "Ashkhabad": "아슈하바트", "OnBalanceVolume_input": "온밸런스볼륨", "Cross_chart_type": "크로스", "H_in_legend": "고", "a day": "하루", "Pitchfork": "피치포크", "R_data_mode_replay_letter": "R", "Accumulation/Distribution_study": "누적/분포 (Accumulation/Distribution)", "Rate Of Change_study": "레이트 오브 체인지 (Rate Of Change)", "Text Font": "텍스트 폰트", "in_dates": "in", "Clone": "복제", "Color 7_input": "칼라 7", "Chop Zone_study": "찹 존 (Chop Zone)", "Bar #": "봉 #", "Scales Properties": "눈금설정", "Trend-Based Fib Time": "추세기반 피보나치 시간", "Remove All Indicators": "지표 모두 없앰", "Oscillator_input": "오실레이터", "Last Modified": "마지막 고친시간", "yay Color 0_input": "yay 칼라 0", "Labels": "라벨", "Chande Kroll Stop_study": "챈드 크롤 스탑 (Chande Kroll Stop)", "Hours_interval": "시간", "Allow up to": "최대 허용", "Scale Right": "오른눈금", "Money Flow_study": "머니 플로우 (Money Flow)", "siglen_input": "siglen", "Indicator Labels": "지표이름", "Hide All Drawing Tools": "드로잉툴숨김", "Toggle Percentage": "백분율토글", "Remove All Drawing Tools": "드로잉툴 모두 없앰", "Remove all line tools for ": "다음 라인 툴 모두 없애기: ", "Linear Regression Curve_study": "리니어 리그레션 커브 (Linear Regression Curve)", "Symbol_input": "심볼", "Currency": "통화", "increment_input": "인크레먼트", "Compare or Add Symbol...": "종목 비교/추가...", "Save Chart Layout": "차트레이아웃 저장", "Number Of Line": "라인 넘버", "Label": "라벨", "Post Market": "포스트-마켓", "second": "초", "Any Number": "아무 숫자", "smoothD_input": "smoothD", "Falling_input": "폴링", "Risk/Reward short": "위험/보상 쇼트", "UpperLimit_input": "어퍼 리밋", "Donchian Channels_study": "돈치안 채널 (Donchian Channels)", "Entry price:": "진입가:", "Circles": "원", "Head": "머리", "Stop: {0} ({1}) {2}, Amount: {3}": "스탑: {0} ({1}) {2}, 금액: {3}", "Mirrored": "거울대칭", "Ichimoku Cloud_study": "일목 구름 (Ichimoku Cloud)", "Signal smoothing_input": "시그널 스무딩", "Use Upper Deviation_input": "어퍼 디비에이션 쓰기", "Apply Elliot Wave Major": "메이저 엘리엇 파동 적용", "Grid": "격자선", "Triangle Down": "트라이앵글 다운", "Apply Elliot Wave Minor": "엘리엇파동 마이너 적용", "Slippage": "슬리피지", "Smoothing_input": "스무딩", "Color 3_input": "칼라 3", "Jaw Length_input": "Jaw 길이", "Almaty": "알마티", "Inside": "내부", "Delete all drawing for this symbol": "이 종목에 대한 드로잉 모두 지우기", "Fundamentals": "펀더멘털", "Keltner Channels_study": "켈트너 채널 (Keltner Channels)", "Long Position": "롱포지션", "Bands style_input": "밴드 스타일", "Undo {0}": "{0} 되돌리기", "With Markers": "마커도함께", "Momentum_study": "모멘텀 (Momentum)", "MF_input": "MF", "Gann Box": "간 박스", "Switch to the next chart": "다음 차트로 바꾸기", "charts by TradingView": "차트 제공 TradingView", "Fast length_input": "패스트 길이", "Apply Elliot Wave": "엘리엇파동적용", "Disjoint Angle": "분리각", "Supermillennium": "수퍼밀레니엄", "W_interval_short": "주", "Show Only Future Events": "미래이벤트만 보기", "Log Scale": "로그눈금", "Line - High": "라인 - 고가", "Zurich": "취리히", "Equality Line_input": "이퀄리티 라인", "Short_input": "쇼트", "Fib Wedge": "피보나치 웻지", "Line": "라인", "Session": "세션", "Down fractals_input": "다운 프랙탈", "Fib Retracement": "피보나치 되돌림", "smalen2_input": "smalen2", "isCentered_input": "isCentered", "Border": "경계", "Klinger Oscillator_study": "클링거 오실레이터 (Klinger Oscillator)", "Absolute": "절대값", "Tue": "화", "Style": "모습", "Show Left Scale": "왼눈금 보기", "SMI Ergodic Indicator/Oscillator_study": "SMI 에르고딕 인디케이터/오실레이터 (SMI Ergodic Indicator/Oscillator)", "Aug": "8월", "Last available bar": "마지막 봉", "Manage Drawings": "그림관리", "Analyze Trade Setup": "트레이드 셋업 분석", "No drawings yet": "그림없음", "SMI_input": "SMI", "Chande MO_input": "Chande MO", "jawLength_input": "jawLength", "TRIX_study": "트릭스 (TRIX)", "Show Bars Range": "봉 구간보기", "RVGI_input": "RVGI", "Last edited ": "마지막 편집 ", "signalLength_input": "signalLength", "%s ago_time_range": "%s앞", "Reset Settings": "설정초기화", "PnF": "피앤에프", "Renko": "렌코", "d_dates": "d", "Point & Figure": "포인트앤피겨", "August": "8월", "Recalculate After Order filled": "체결뒤 재계산", "Source_compare": "소스", "Down bars": "다운 바", "Correlation Coefficient_study": "코릴레이션 코에피션트 (Correlation Coefficient)", "Delayed": "지연", "Bottom Labels": "아래 라벨", "Text color": "문자열색", "Levels": "레벨", "Length_input": "길이", "Short Length_input": "쇼트 렝쓰", "teethLength_input": "teethLength", "Visible Range_study": "비저블 레인지", "Delete": "지움", "Hong Kong": "홍콩", "Text Alignment:": "문자열맞춤:", "Open {{symbol}} Text Note": "{{symbol}} 텍스트노트 열기", "October": "10월", "Lock All Drawing Tools": "드로잉툴고정", "Long_input": "롱", "Right End": "오른쪽끝", "Show Symbol Last Value": "종목현재가보기", "Head & Shoulders": "헤드 & 쇼울더", "Do you really want to delete Study Template '{0}' ?": "정말로 스터디 템플릿 '{0}' 을 지우시겠습니까?", "Favorite Drawings Toolbar": "자주 쓰는 드로잉 툴바", "Properties...": "속성...", "Reset Scale": "눈금초기화", "MA Cross_study": "MA 크로스 (MA Cross)", "Trend Angle": "추세각", "Snapshot": "스냅샷", "Crosshair": "십자표", "Signal line period_input": "시그널 라인 피어리어드", "Timezone/Sessions Properties...": "타임존/세션 속성...", "Line Break": "라인브레이크", "Quantity": "수량", "Price Volume Trend_study": "가격 거래량 트렌드 (Price Volume Trend)", "Auto Scale": "자동눈금", "hour": "시간", "Delete chart layout": "차트 레이아웃 지우기", "Text": "문자", "F_data_mode_forbidden_letter": "금", "Risk/Reward long": "리스크/리워드 롱", "Apr": "4월", "Long RoC Length_input": "Long RoC 길이", "Length3_input": "길이 3", "+DI_input": "+DI", "Madrid": "마드리드", "Use one color": "한가지 색만 쓰기", "Chart Properties": "차트속성", "No Overlapping Labels_scale_menu": "오버래핑 라벨 없음", "Exit Full Screen (ESC)": "전체화면 나감 (ESC)", "MACD_study": "MACD", "Show Economic Events on Chart": "차트에 경제이벤트 보기", "Moving Average_study": "이동 평균(Moving Average)", "Show Wave": "웨이브 보기", "Failure back color": "실패배경색", "Below Bar": "봉아래", "Time Scale": "시간눈금", "

    Only D, W, M intervals are supported for this symbol/exchange. You will be automatically switched to a D interval. Intraday intervals are not available because of exchange policies.

    ": "

    이 종목은 D,WWM 인터벌만 지원됩니다. 저절로 D 인터벌로 바뀌게 됩니다. 일봉 미만 인터벌은 거래소 정책에 의해 제공할 수 없습니다.

    ", "Extend Left": "왼쪽확장", "Date Range": "기간", "Min Move": "최소거래단위", "Price format is invalid.": "가격 포맷이 틀립니다.", "Show Price": "가격보기", "Level_input": "레벨", "Angles": "각", "Commodity Channel Index_study": "커모디티 채널 인덱스 (Commodity Channel Index)", "Elder's Force Index_input": "엘더즈 포스 인덱스", "Gann Square": "간 스퀘어", "Phoenix": "피닉스", "Format": "설정", "Color bars based on previous close": "이전종가에 따라 봉색결정", "Change band background": "밴드배경 바꾸기", "Target: {0} ({1}) {2}, Amount: {3}": "타겟: {0} ({1}) {2}, 금액: {3}", "Zoom Out": "작게보기", "This chart layout has a lot of objects and can't be published! Please remove some drawings and/or studies from this chart layout and try to publish it again.": "이 차트 레이아웃은 너무 많은 오브젝트가 들어 있어 퍼블리쉬할 수 없습니다! 이 차트 레이아웃에서 드로잉이나 스터디 몇개를 없애고 다시 퍼블리쉬해 보시기 바랍니다.", "Anchored Text": "고정위치문자", "Long length_input": "Long 길이", "Edit {0} Alert...": "{0} 얼러트 편집...", "Previous Close Price Line": "이전 종가 라인", "Up Wave 5": "업 웨이브 5", "Qty: {0}": "수량: {0}", "Heikin Ashi": "하이킨 아시", "Aroon_study": "아룬 (Aroon)", "show MA_input": "show MA", "Industry": "산업", "Lead 1_input": "리드 1", "Short Position": "쇼트포지션", "SMALen1_input": "SMALen1", "P_input": "P", "Apply Default": "디폴트적용", "SMALen3_input": "SMALen3", "Average Directional Index_study": "평균방향성지수 (Average Directional Index)", "Fr_day_of_week": "금", "Invite-only script. Contact the author for more information.": "초대전용 스크립트. 자세한 내용을 알려면 오써에게 연락하시기 바랍니다.", "Curve": "곡선", "a year": "1해", "Target Color:": "타겟색:", "Bars Pattern": "봉패턴", "D_input": "일", "Font Size": "폰트 크기", "Create Vertical Line": "세로줄 만들기", "p_input": "p", "Rotated Rectangle": "회전네모", "Chart layout name": "차트레이아웃 이름", "Fib Circles": "피보나치 서클", "Apply Manual Decision Point": "매뉴얼 디시전 포인트 적용", "Dot": "점", "Target back color": "대상배경색", "All": "전체", "orders_up to ... orders": "오더", "Dot_hotkey": "도트", "Lead 2_input": "리드 2", "Save image": "이미지저장", "Move Down": "아래로옮김", "Triangle Up": "트라이앵글 업", "Box Size": "박스 사이즈", "Navigation Buttons": "내비게이션버튼", "Miniscule": "미니스큘", "Apply": "적용", "Down Wave 3": "다운 웨이브 3", "Plots Background_study": "플롯 백그라운드", "Marketplace Add-ons": "판매애드온", "Sine Line": "사인 라인", "Fill": "채우기", "%d day": "%d 날", "Hide": "감추기", "Toggle Maximize Chart": "차트최대화토글", "Target text color": "대상문자열색", "Scale Left": "왼눈금", "Elliott Wave Subminuette": "엘리엇파동 서브미뉴에트", "Color based on previous close_input": "이전 종가에 따른 색깔", "Down Wave C": "다운 웨이브 C", "Countdown": "카운트다운", "UO_input": "UO", "Pyramiding": "피라미딩", "Source back color": "소스배경색", "Go to Date...": "날짜바로가기...", "Sao Paulo": "상파울루", "R_data_mode_realtime_letter": "실", "Extend Lines": "확장선", "Conversion Line_input": "컨버전 라인", "March": "3월", "Su_day_of_week": "일", "Exchange": "거래소", "My Scripts": "내 스크립트", "Arcs": "원호", "Regression Trend": "회귀추세", "Short RoC Length_input": "쇼트 RoC 렝쓰", "Fib Spiral": "피보나치 나선", "Double EMA_study": "더블 EMA (Double EMA)", "minute": "분", "All Indicators And Drawing Tools": "지표 및 드로잉툴 전체", "Indicator Last Value": "지표현재가", "Sync drawings to all charts": "모든 차트에 드로잉 동기화", "Change Average HL value": "평균 고저가 바꾸기", "Stop Color:": "스탑색:", "Stay in Drawing Mode": "그리기모드 유지", "Bottom Margin": "아래여백", "Dubai": "두바이", "Save Chart Layout saves not just some particular chart, it saves all charts for all symbols and intervals which you are modifying while working with this Layout": "차트레이아웃 저장은 귀하가 이 레이아웃으로 작업하면서 바꾼 종목 및 인터벌과 차트를 모두 저장한다.", "Average True Range_study": "애버리지 트루 레인지 (Average True Range)", "Max value_input": "최대값", "MA Length_input": "이평 길이", "Invite-Only Scripts": "초대전용 스크립트", "in %s_time_range": "in %s", "Extend Bottom": "익스텐드 바텀", "sym_input": "sym", "DI Length_input": "DI 길이", "Rome": "로마", "Scale": "눈금", "Periods_input": "피어리어드", "Arrow": "화살표", "useTrueRange_input": "useTrueRange", "Basis_input": "베이시스", "Arrow Mark Down": "아래화살표", "lengthStoch_input": "lengthStoch", "Taipei": "대만", "Objects Tree": "오브젝트트리", "Remove from favorites": "즐겨찾기지움", "Show Symbol Previous Close Value": "심볼 이전 클로즈 밸류 보기", "Scale Series Only": "종목눈금만", "Source text color": "소스문자열색", "Simple": "단순", "Report a data issue": "데이터이슈 리포트", "Arnaud Legoux Moving Average_study": "아르노 르두 무빙 애버리지 (Arnaud Legoux Moving Average)", "Smoothed Moving Average_study": "스무디드 무빙 애버리지 (Smoothed Moving Average)", "Lower Band_input": "로우어 밴드", "Verify Price for Limit Orders": "리밋오더가격 검증", "VI +_input": "VI +", "Line Width": "선너비", "Contracts": "계약", "Always Show Stats": "통계 늘 보기", "Down Wave 4": "다운 웨이브 4", "ROCLen2_input": "ROCLen2", "Simple ma(signal line)_input": "단순 이평(시그널 라인)", "Change Interval...": "인터벌바꾸기...", "Public Library": "퍼블릭라이브러리", " Do you really want to delete Drawing Template '{0}' ?": " 정말로 드로잉 템플릿 '{0}' 을 지우시겠습니까?", "Sat": "토", "Left Shoulder": "왼어깨", "week": "주", "CRSI_study": "CRSI", "Close message": "메시지닫기", "Jul": "7월", "Value_input": "밸류", "Show Drawings Toolbar": "드로잉 툴바 보기", "Chaikin Oscillator_study": "체이킨 오실레이터 (Chaikin Oscillator)", "Price Source": "프라이스 소스", "Market Open": "마켓오픈", "Color Theme": "색상테마", "Projection up bars": "프로젝션 업 바", "Awesome Oscillator_study": "오썸 오실레이터 (Awesome Oscillator)", "Bollinger Bands Width_input": "볼린저 밴드 너비", "Q_input": "Q", "long_input": "롱", "Error occured while publishing": "퍼블리슁하다 에러났음", "Fisher_input": "피셔", "Color 1_input": "칼라 1", "Moving Average Weighted_study": "가중 이동 평균 (Moving Average Weighted)", "Save": "저장", "Type": "타입", "Wick": "윅", "Accumulative Swing Index_study": "어큐뮬러티브 스윙 인덱스", "Load Chart Layout": "차트레이아웃 불러오기", "Show Values": "값 보기", "Fib Speed Resistance Fan": "피보나치 속도 저항 부채꼴", "Bollinger Bands Width_study": "볼린저밴드 너비 (Bollinger Bands Width)", "This chart layout has more than 1000 drawings, which is a lot! This may negatively affect performance, storage and publishing. We recommend to remove some drawings to avoid potential performance issues.": "이 차트레이아웃은 1000개가 넘는 드로잉이 있습니다- 너무 많습니다! 이렇게 많으면, 성능, 저장 및 퍼블리슁을 떨어뜨리게 됩니다. 잠재적인 성능이슈를 피하려면 일부 드로잉을 없애기를 추천합니다.", "Left End": "왼쪽끝", "%d year": "%d 해", "Always Visible": "언제나 보임", "S_data_mode_snapshot_letter": "스", "Flag": "플래그", "Elliott Wave Circle": "엘리엇파동원", "Earnings breaks": "기업수익 경계", "Do not ask again": "다시 묻지 않기", "MTPredictor": "엠티프리딕터", "Displacement_input": "디스플레이스먼트", "smalen4_input": "smalen4", "CCI_input": "CCI", "Upper Deviation_input": "어퍼 디비에이션", "(H + L)/2": "(고 + 저)/2", "XABCD Pattern": "XABCD 패턴", "Schiff Pitchfork": "쉬프 피치포크", "Copied to clipboard": "클립보드로 복사됐음", "HLC Bars": "HLC 바", "Flipped": "위아래대칭", "DEMA_input": "DEMA", "Move_input": "무브", "NV_input": "NV", "Choppiness Index_study": "차피니스 인덱스 (Choppiness Index)", "Study Template '{0}' already exists. Do you really want to replace it?": "같은 이름의 스터디 템플릿 '{0}' 가 이미 있습니다. 정말로 바꾸시겠습니까?", "Merge Down": "아래로 겹침", "Th_day_of_week": "목", " per contract": " 계약당", "Overlay the main chart": "메인차트위에 겹쳐보기", "Screen (No Scale)": "화면전체", "Three Drives Pattern": "쓰리 드라이브 패턴", "Save Indicator Template As": "다음으로 지표 템플릿 저장:", "Length MA_input": "Length MA", "percent_input": "퍼센트", "September": "9월", "{0} copy": "{0} 카피", "Avg HL in minticks": "최소틱단위 평균 고저", "Accumulation/Distribution_input": "어큐물레이션/디스트리뷰션", "Sync": "동기", "C_in_legend": "종", "Weeks_interval": "주", "smoothK_input": "smoothK", "Percentage_scale_menu": "백분율눈금", "Change Extended Hours": "확장시간바꾸기", "MOM_input": "MOM", "h_interval_short": "시간", "Change Interval": "인터벌바꾸기", "Change area background": "영역배경 바꾸기", "Modified Schiff": "변형쉬프", "top": "위", "Adelaide": "애들레이드", "Send Backward": "한단계뒤로", "Mexico City": "멕시코 시티", "TRIX_input": "트릭스", "Show Price Range": "가격구간보기", "Elliott Major Retracement": "엘리엇 메이저 되돌림", "ASI_study": "ASI", "Notification": "알림", "Fri": "금", "just now": "방금", "Forecast": "예상", "Fraction part is invalid.": "분수 부분이 잘못 되었습니다.", "Connecting": "연결중", "Ghost Feed": "고스트피드", "Signal_input": "시그널", "Histogram_input": "히스토그램", "The Extended Trading Hours feature is available only for intraday charts": "확장거래시간은 인트라데이 차트에서만 가능합니다", "Stop syncing": "동기화 멈추기", "open": "오픈", "StdDev_input": "표준편차", "EMA Cross_study": "EMA 크로스", "Conversion Line Periods_input": "컨버전 라인 피어리어드", "Diamond": "다이아몬드", "Brisbane": "브리즈번", "Monday": "월요일", "Add Symbol_compare_or_add_symbol_dialog": "심볼 넣기", "Williams %R_study": "윌리엄스 %R (Williams %R)", "Symbol": "종목", "a month": "1달", "Precision": "정밀도", "depth_input": "뎊쓰", "Go to": "가기", "Please enter chart layout name": "차트레이아웃 이름을 넣으시오", "Mar": "3월", "VWAP_study": "브이왑 (VWAP)", "Offset": "오프셋", "Date": "날짜", "Format...": "설정...", "Toggle Auto Scale": "자동눈금토글", "Toggle Maximize Pane": "페인최대화 토글", "Search": "찾기", "Zig Zag_study": "지그재그 (Zig Zag)", "Actual": "실제", "SUCCESS": "성공", "Long period_input": "Long 피어리어드", "length_input": "길이", "roclen4_input": "roclen4", "Price Line": "가격선", "Area With Breaks": "영역 브레이크", "Median_input": "중앙값", "Stop Level. Ticks:": "스탑레벨틱:", "Window Size_input": "윈도우 사이즈", "Economy & Symbols": "이코노미 & 심볼", "Circle Lines": "서클 라인", "Visual Order": "보는차례", "Stop Background Color": "스탑배경색", "1. Slide your finger to select location for first anchor
    2. Tap anywhere to place the first anchor": "1. 손가락으로 밀어 첫 앵커 자리를 고르시오
    2. 아무 곳이나 톡 두들겨 첫 앵커 자리를 정하십시오", "Sector": "섹터", "powered by TradingView": "기능 제공 Tradingview", "Text:": "문자열:", "Stochastic_study": "스토캐스틱 (Stochastic)", "Sep": "9월", "TEMA_input": "TEMA", "Apply WPT Up Wave": "WPT Up Wave 적용", "Min Move 2": "최소거래단위2", "Extend Left End": "왼쪽끝확장", "Projection down bars": "프로젝션 다운 바", "Advance/Decline_study": "어드밴스/디클라인 (Advance/Decline)", "New York": "뉴욕", "Flag Mark": "플래그 마크", "Drawings": "그리기", "Cancel": "취소", "Compare or Add Symbol": "종목 비교/추가", "Redo": "다시하기", "Hide Drawings Toolbar": "드로잉 툴바 숨기기", "Ultimate Oscillator_study": "얼티미트 오실레이터 (Ultimate Oscillator)", "Vert Grid Lines": "세로격자선", "Growing_input": "그로잉", "Angle": "각", "Plot_input": "플롯", "Chicago": "시카고", "Color 8_input": "칼라 8", "Indicators, Fundamentals, Economy and Add-ons": "지표,펀더멘탈,경제,애드온", "h_dates": "h", "ROC Length_input": "ROC 렝쓰", "roclen3_input": "roclen3", "Overbought_input": "과매수", "Extend Top": "익스텐드 탑", "X_input": "X", "No study templates saved": "저장된 스터디템플릿이 없음", "Trend Line": "추세줄", "TimeZone": "타임존", "Percentage": "퍼센트", "Tu_day_of_week": "화", "RSI Length_input": "RSI 길이", "Triangle": "세모", "Line With Breaks": "라인 브레이크", "Period_input": "피어리어드", "Watermark": "워터마크", "Trigger_input": "트리거", "SigLen_input": "SigLen", "Extend Right": "오른쪽확장", "Color 2_input": "칼라 2", "Show Prices": "가격보기", "Unlock": "잠금풀기", "Copy": "복사", "Arc": "원호", "Edit Order": "주문 편집", "January": "1월", "Arrow Mark Right": "오른화살표", "Extend Alert Line": "얼러트 라인 확장하기", "Background color 1": "배경색 1", "RSI Source_input": "RSI 소스", "Close Position": "포지션 닫기", "Stop syncing drawing": "드로잉 동기화 멈추기", "Visible on Mouse Over": "...위로 마우스 오면 보임", "MA/EMA Cross_study": "MA/EMA 크로스", "Thu": "목", "Vortex Indicator_study": "보텍스 인디케이터 (Vortex Indicator)", "view-only chart by {user}": "뷰온리 차트 : 만든이 {user}", "ROCLen1_input": "ROCLen1", "M_interval_short": "달", "Chaikin Oscillator_input": "체이킨 오실레이터", "Price Levels": "가격레벨", "Show Splits": "스플릿 보기", "Zero Line_input": "제로 라인", "Replay Mode": "리플레이 모드", "Increment_input": "인크레먼트", "Days_interval": "일", "Show Right Scale": "오른눈금 보기", "Show Alert Labels": "얼러트 라벨 보기", "Historical Volatility_study": "과거변동성 (Historical Volatility)", "Lock": "잠금", "length14_input": "length14", "High": "고가", "ext": "확장", "Date and Price Range": "날짜 및 가격 범위", "Polyline": "다선형", "Reconnect": "다시 연결", "Lock/Unlock": "잠그기/풀기", "Base Level": "베이스 레벨", "Label Down": "레이블 다운", "Saturday": "토요일", "Symbol Last Value": "종목현재가", "Above Bar": "봉위", "Studies": "스터디", "Color 0_input": "칼라 0", "Add Symbol": "종목추가", "maximum_input": "맥시멈", "Wed": "수", "Paris": "파리", "D_data_mode_delayed_letter": "지", "Sigma_input": "시그마", "VWMA_study": "VWMA", "fastLength_input": "패스트렝쓰", "Time Levels": "시간레벨", "Width": "너비", "Sunday": "일요일", "Loading": "로딩", "Template": "템플릿", "Use Lower Deviation_input": "로우어 디비에이션 쓰기", "Up Wave 3": "업 웨이브 3", "Parallel Channel": "패러렐 채널", "Time Cycles": "타임 사이클", "Second fraction part is invalid.": "두번째 분수 부분이 잘못 되었습니다.", "Divisor_input": "디바이저", "Down Wave 1 or A": "다운 웨이브 1 또는 A", "ROC_input": "ROC", "Dec": "12월", "Ray": "빛", "Extend": "확장", "length7_input": "length7", "Bring Forward": "한단계앞으로", "Bottom": "아래", "Berlin": "베를린", "Undo": "되돌리기", "Original": "원본", "Mon": "월", "Right Labels": "오른 라벨", "Long Length_input": "Long 길이", "True Strength Indicator_study": "트루 스트렝쓰 인디케이터 (True Strength Indicator)", "%R_input": "%R", "There are no saved charts": "저장된 차트가 없습니다", "Instrument is not allowed": "쓸 수 없는 종목입니다", "bars_margin": "봉", "Decimal Places": "자릿수", "Show Indicator Last Value": "지표현재가보기", "Initial capital": "초기 자본금", "Show Angle": "각도 보기", "Mass Index_study": "매스 인덱스 (Mass Index)", "More features on tradingview.com": "Tradingview.com 에 있는 더욱 더 많은 기능들", "Objects Tree...": "오브젝트 트리", "Remove Drawing Tools & Indicators": "드로잉툴 & 인디케이터 없애기", "Length1_input": "길이 1", "Always Invisible": "언제나 안보임", "Circle": "원", "Days": "일", "x_input": "x", "Save As...": "...로 저장", "Elliott Double Combo Wave (WXY)": "엘리엇 다블콤보 파동 (WXY)", "Parabolic SAR_study": "파라볼릭 SAR (Parabolic SAR)", "Any Symbol": "아무 종목", "Variance": "분산", "Stats Text Color": "통계 문자색", "Minutes": "분", "Williams Alligator_study": "윌리엄스 앨리게이터 (Williams Alligator)", "Projection": "프로젝션", "Custom color...": "사용자색상...", "Jan": "1월", "Jaw_input": "Jaw", "Right": "오른쪽", "Help": "도움말", "Coppock Curve_study": "카포크 커브(Coppock Curve)", "Reversal Amount": "리버설 어마운트", "Reset Chart": "차트리셋", "Marker Color": "마켓 색상", "Fans": "부채꼴", "Left Axis": "왼축", "Open": "열기", "YES": "예", "longlen_input": "longlen", "Moving Average Exponential_study": "지수 이동 평균 (Moving Average Exponential)", "Source border color": "소스경계선색", "Redo {0}": "{0} 다시하기", "Cypher Pattern": "사이퍼 패턴", "s_dates": "s", "Caracas": "카라카스", "Area": "영역", "Triangle Pattern": "세모 패턴", "Balance of Power_study": "밸런스 오브 파우어 (Balance Of Power)", "EOM_input": "EOM", "Shapes_input": "셰이프", "Oversold_input": "과매도", "Apply Manual Risk/Reward": "수동 위험/보상 적용", "Market Closed": "마켓 클로즈드", "Sydney": "시드니", "Indicators": "지표", "q_input": "q", "You are notified": "알림이 왔습니다", "Font Icons": "폰트 아이콘", "%D_input": "%D", "Border Color": "경계색", "Offset_input": "오프셋", "Risk": "리스크", "Price Scale": "가격눈금", "HV_input": "HV", "Seconds": "초", "Settings": "설정", "Start_input": "시작", "Elliott Impulse Wave (12345)": "엘리엇 임펄스 파동 (12345)", "Hours": "시간", "Send to Back": "맨뒤로", "Color 4_input": "칼라 4", "Los Angeles": "로스엔젤레스", "Prices": "가격", "Hollow Candles": "할로우캔들", "July": "7월", "Create Horizontal Line": "가로줄 만들기", "Minute": "분", "Cycle": "사이클", "ADX Smoothing_input": "ADX 스무딩", "One color for all lines": "모든 줄에 한가지 색", "m_dates": "m", "(H + L + C)/3": "(고 + 저 + 종)/3", "Candles": "캔들", "We_day_of_week": "수", "Width (% of the Box)": "너비(박스의 %)", "%d minute": "%d 분", "Go to...": "...로 가기", "Pip Size": "핍사이즈", "Wednesday": "수요일", "This drawing is used in alert. If you remove the drawing, the alert will be also removed. Do you want to remove the drawing anyway?": "얼러트에 드로잉이 있습니다. 드로잉을 없애면 해당 얼러트도 함께 없어집니다. 그래도 드로잉을 없애겠습니까?", "Show Countdown": "카운트다운보기", "Show alert label line": "얼러트 라벨 라인 보기", "Down Wave 2 or B": "다운 웨이브 2 또는 B", "MA_input": "이평", "Length2_input": "길이 2", "not authorized": "권한 없음", "Session Volume_study": "세션 볼륨", "Image URL": "이미지 URL", "Submicro": "서브마이크로", "SMI Ergodic Oscillator_input": "SMI 에르고딕 오실레이터", "Show Objects Tree": "오브젝트트리보기", "Primary": "주요", "Price:": "가격:", "Bring to Front": "맨앞으로", "Brush": "붓", "Not Now": "지금은 아닙니다", "Yes": "예", "C_data_mode_connecting_letter": "연", "SMALen4_input": "SMALen4", "Apply Default Drawing Template": "디폴트 드로잉템플릿 적용", "Compact": "컴팩트", "Save As Default": "기본설정으로 사용", "Target border color": "대상경계색", "Invalid Symbol": "잘못된 종목", "Inside Pitchfork": "피치포크 안", "yay Color 1_input": "yay 칼라 1", "Quandl is a huge financial database that we have connected to TradingView. Most of its data is EOD and is not updated in real-time, however the information may be extremely useful for fundamental analysis.": "Quandl은 TradingView에 연결된 대형 데이터베이스입니다. 대부분의 데이터는 종가이며, 실시간데이터는 아니지만, 펀더멘털분석에 아주 쓸모가 있을 것입니다.", "Hide Marks On Bars": "봉의 마크 감추기", "Cancel Order": "주문 취소", "Kagi": "카기", "WMA Length_input": "WMA Length", "Show Dividends on Chart": "차트에서 배당금보기", "Show Executions": "주문실행보기", "Borders": "경계선", "Remove Indicators": "인디케이터 없애기", "loading...": "로딩...", "Closed_line_tool_position": "포지션청산", "Rectangle": "네모", "Change Resolution": "레졸루션 바꾸기", "Indicator Arguments": "지표인자", "Symbol Description": "종목설명", "Chande Momentum Oscillator_study": "챈드 모멘텀 오실레이터 (Chande Momentum Oscillator)", "Degree": "각도", " per order": " 주문당", "Line - HL/2": "라인 - HL/2", "Supercycle": "수퍼사이클", "Jun": "6월", "Least Squares Moving Average_study": "리스트 스퀘어 무빙 애버리지 (Least Squares Moving Average)", "powered by ": "기능 제공 ", "Source_input": "소스", "Change Seconds To": "초를 ...로 바꾸기", "%K_input": "%K", "Scales Text": "눈금문자", "Toronto": "토론토", "Please enter template name": "템플릿 이름을 넣으세요", "Symbol Name": "종목이름", "Tokyo": "도쿄", "Events Breaks": "이벤트경계", "San Salvador": "산살바도르", "Months": "달", "Symbol Info...": "종목정보...", "Elliott Wave Minor": "엘리엇파동 마이너", "Cross": "십자", "Measure (Shift + Click on the chart)": "재기(Shift + Click)", "Override Min Tick": "소숫점아래 표시바꾸기", "Show Positions": "포지션보기", "Dialog": "다이얼로그", "Add To Text Notes": "텍스트노트에 넣기", "Elliott Triple Combo Wave (WXYXZ)": "엘리엇 트리플콤보 파동 (WXYXZ)", "Multiplier_input": "멀티플라이어", "Risk/Reward": "위험/보상", "Base Line Periods_input": "베이스 라인 피어리어드", "Show Dividends": "배당보기", "Relative Strength Index_study": "상대강도지수 (Relative Strength Index)", "Modified Schiff Pitchfork": "변형 쉬프 피치포크", "Top Labels": "탑레벨", "Show Earnings": "어닝 보기", "Line - Open": "라인 - 시가", "Elliott Triangle Wave (ABCDE)": "엘리엇 트라이앵글 웨이브 (ABCDE)", "Minuette": "서브미뉴에트", "Text Wrap": "문자열줄넘김", "Reverse Position": "리버스 포지션", "Elliott Minor Retracement": "엘리엇 마이너 되돌림", "DPO_input": "DPO", "Pitchfan": "피치팬", "Slash_hotkey": "슬래쉬", "No symbols matched your criteria": "찾는 종목이 없습니다.", "Icon": "아이콘", "lengthRSI_input": "lengthRSI", "Tuesday": "화요일", "Teeth Length_input": "티쓰 렝쓰", "Indicator_input": "인디케이터", "Box size assignment method": "박스 사이즈 어사인먼트 메쏘드", "Open Interval Dialog": "인터벌대화창열기", "Shanghai": "상하이", "Athens": "아테네", "Fib Speed Resistance Arcs": "피보나치 속도 저항 원호", "Content": "내용", "middle": "가운데", "Lock Cursor In Time": "커서시간고정", "Intermediate": "중간", "Eraser": "지우개", "Relative Vigor Index_study": "렐러티브 비고르 인덱스 (Relative Vigor Index)", "Envelope_study": "엔빌로프 (Envelope)", "Symbol Labels": "종목이름", "Pre Market": "프리-마켓", "Horizontal Line": "가로줄", "O_in_legend": "시", "Confirmation": "확인", "HL Bars": "고저봉", "Lines:": "선", "Hide Favorite Drawings Toolbar": "자주 쓰는 드로잉 툴바 숨기기", "Buenos Aires": "부에노스아이레스", "X Cross": "X 크로스", "Bangkok": "방콕", "Profit Level. Ticks:": "수익레벨틱:", "Show Date/Time Range": "날짜/시간 구간보기", "Level {0}": "{0} 레벨", "Favorites": "즐겨찾기", "Horz Grid Lines": "가로격자선", "-DI_input": "-DI", "Price Range": "가격범위", "day": "날", "deviation_input": "디비에이션", "Account Size": "어카운트 사이즈", "UTC": "표준시", "Time Interval": "시간간격", "Success text color": "성공문자열색", "ADX smoothing_input": "ADX 스무딩", "%d hour": "%d 시간", "Order size": "오더 사이즈", "Drawing Tools": "드로잉툴", "Save Drawing Template As": "드로잉 템플릿 다른 이름으로 저장", "Tokelau": "토켈라우", "Traditional": "트래디셔널", "Chaikin Money Flow_study": "체이킨 머니 플로우 (Chaikin Money Flow)", "Ease Of Movement_study": "이즈 오브 무브먼트 (Ease Of Movement)", "Defaults": "기본설정", "Percent_input": "퍼센트", "Interval is not applicable": "쓸 수 없는 인터벌", "short_input": "쇼트", "Visual settings...": "보기설정...", "RSI_input": "RSI", "Chatham Islands": "채텀 제도", "Detrended Price Oscillator_input": "디트렌디드 프라이스 오실레이터", "Mo_day_of_week": "월", "Up Wave 4": "업 웨이브 4", "center": "가운데", "Vertical Line": "세로줄", "Bogota": "보고타", "Show Splits on Chart": "차트에 주식분할보기", "Sorry, the Copy Link button doesn't work in your browser. Please select the link and copy it manually.": "귀하의 브라우저에서는 카피 링크 버튼이 작동하지 않습니다. 링크를 고르고 직접 카피하시기 바랍니다.", "Levels Line": "레벨 라인", "Events & Alerts": "이벤트 & 얼러트", "ROCLen4_input": "ROCLen4", "Aroon Down_input": "아룬 다운", "Add To Watchlist": "왓치리스트에 넣기", "Total": "합계", "Price": "가격", "left": "왼쪽", "Lock scale": "눈금고정", "Limit_input": "리밋", "Baseline": "베이스라인", "Price Oscillator_study": "프라이스 오실레이터 (Price Oscillator)", "smalen1_input": "smalen1", "Drawing Template '{0}' already exists. Do you really want to replace it?": "같은 이름의 드로잉 템플릿 '{0}' 이 이미 있습니다. 정말로 바꾸시겠습니까?", "Show Middle Point": "미들 포인트 보기", "KST_input": "KST", "Extend Right End": "오른쪽끝확장", "Base currency": "베이스 통화", "Line - Low": "라인 - 저가", "Price_input": "프라이스", "Gann Fan": "간 팬", "Weeks": "주", "McGinley Dynamic_study": "맥긴리 다이내믹 (McGinley Dynamic)", "Relative Volatility Index_study": "상대변동성지수 (Relative Volatility Index)", "Source Code...": "소스코드...", "PVT_input": "PVT", "Show Hidden Tools": "숨긴툴 보기", "Hull Moving Average_study": "헐 무빙 애버리지 (Hull Moving Average)", "Symbol Prev. Close Value": "심볼 이전 클로즈 밸류", "Istanbul": "이스탄불", "{0} chart by TradingView": "{0} 차트 제공 TradingView", "Right Shoulder": "오른어깨", "Remove Drawing Tools": "드로잉툴 없애기", "Friday": "금요일", "Zero_input": "제로", "Company Comparison": "회사비교", "Stochastic Length_input": "스토캐스틱 렝쓰", "mult_input": "곱", "URL cannot be received": "URL 을 받을 수 없음", "Success back color": "성공배경색", "E_data_mode_end_of_day_letter": "종", "Trend-Based Fib Extension": "추세기반 피보나치 확장", "Top": "탑", "Double Curve": "더블곡선", "Stochastic RSI_study": "스토캐스틱 RSI (Stochastic RSI)", "Oops!": "아이쿠!", "Horizontal Ray": "가로빛", "smalen3_input": "smalen3", "Ok": "확인", "Script Editor...": "스크립트편집기...", "Are you sure?": "맞습니까?", "Trades on Chart": "차트위 트레이드", "Listed Exchange": "상장 거래소", "Error:": "에러", "Fullscreen mode": "전체화면모드", "Add Text Note For {0}": "{0}에 텍스트노트 넣기", "K_input": "K", "Do you really want to delete Drawing Template '{0}' ?": "정말로 드로잉 템플리트 '{0}' 을 지우시겠습니까?", "ROCLen3_input": "ROCLen3", "Micro": "마이크로", "Text Color": "문자열색", "Rename Chart Layout": "차트 레이아웃이름 바꾸기", "Built-ins": "빌트인", "Background color 2": "배경색 2", "Drawings Toolbar": "드로잉 툴바", "Moving Average Channel_study": "무빙 애버리지 채널", "New Zealand": "뉴질랜드", "CHOP_input": "CHOP", "Apply Defaults": "기본설정", "% of equity": "에쿼티 %", "Extended Alert Line": "확장 얼러트 라인", "Note": "노트", "OK": "확인", "like": "좋아요", "Show": "보기", "{0} bars": "{0} 봉", "Lower_input": "로우어", "Created ": "만듬 ", "Warning": "경고", "Elder's Force Index_study": "엘더즈 포스 인덱스 (Elder's Force Index)", "Show Earnings on Chart": "차트에 기업수익 보기", "ATR_input": "ATR", "Low": "저가", "Bollinger Bands %B_study": "볼린저 밴드 %B (Bollinger Bands %B)", "Time Zone": "타임존", "right": "오른쪽", "%d month": "%d 달", "Wrong value": "잘못된 값", "Upper Band_input": "어퍼 밴드", "Sun": "일", "Rename...": "...로 이름 바꾸기", "start_input": "스타트", "No indicators matched your criteria.": "찾는 지표가 없습니다.", "Commission": "커미션", "Down Color": "다운 칼라", "Short length_input": "쇼트 렝쓰", "Kolkata": "콜카타", "Submillennium": "서브밀레니엄", "Technical Analysis": "기술적분석", "Show Text": "문자열보기", "Channel": "채널", "FXCM CFD data is available only to FXCM account holders": "FXCM CFD 데이터는 FXCM 계정을 가진 사람만 쓸 수 있습니다", "Lagging Span 2 Periods_input": "래깅 스팬 2 피어리어드", "Connecting Line": "연결선", "Seoul": "서울", "bottom": "아래", "Teeth_input": "티쓰", "Sig_input": "Sig", "Open Manage Drawings": "드로잉 관리 열기", "Save New Chart Layout": "새 차트레이아웃 저장", "Fib Channel": "피보나치 채널", "Save Drawing Template As...": "...로 드로잉템플릿 저장", "Minutes_interval": "분", "Up Wave 2 or B": "업 웨이브 2 또는 B", "Columns": "컬럼", "Directional Movement_study": "디렉셔널 무브먼트 (Directional Movement)", "roclen2_input": "roclen2", "Apply WPT Down Wave": "WPT Down Wave 적용", "Not applicable": "쓸 수 없음", "Bollinger Bands %B_input": "볼린저 밴드 %B", "Default": "기본설정", "Template name": "템플릿이름", "Indicator Values": "지표값", "Lips Length_input": "Lips 길이", "Toggle Log Scale": "로그눈금토글", "L_in_legend": "저", "Remove custom interval": "커스텀 인터벌 없애기", "shortlen_input": "shortlen", "Quotes are delayed by {0} min": "{0} 분 지연 호가", "Hide Events on Chart": "차트에서 이벤트 숨기기", "Cash": "캐쉬", "Profit Background Color": "수익배경색", "Bar's Style": "봉스타일", "Exponential_input": "익스포넨셜", "Down Wave 5": "다운 웨이브 5", "Previous": "이전", "Stay In Drawing Mode": "계속그리기 모드", "Comment": "코멘트", "Connors RSI_study": "코너즈 RSI", "Bars": "봉", "Show Labels": "라벨보기", "Flat Top/Bottom": "위나 아래 수평", "Symbol Type": "심볼 타입", "December": "12월", "Lock drawings": "드로잉 잠금", "Border color": "경계색", "Change Seconds From": "...를 초로 바꾸기", "Left Labels": "왼쪽라벨", "Insert Indicator...": "지표넣기", "ADR_B_input": "ADR_B", "Paste %s": "%s 붙여넣기", "Change Symbol...": "종목바꾸기...", "Timezone": "타임존", "Invite-only script. You have been granted access.": "초대전용 스크립트. 귀하에게 접근이 허락되었습니다.", "Color 6_input": "칼라 6", "Oct": "10월", "ATR Length": "ATR 렝쓰", "{0} financials by TradingView": "{0} 파이낸셜 제공 TradingView", "Extend Lines Left": "선왼쪽연장", "Feb": "2월", "Transparency": "투명도", "No": "아니오", "June": "6월", "Tweet": "트윗", "Cyclic Lines": "사이클릭 라인", "length28_input": "length28", "ABCD Pattern": "ABCD 패턴", "When selecting this checkbox the study template will set \"__interval__\" interval on a chart": "이 체크박스를 고르면 스터디 템플릿은 차트 인터벌을 \"__interval__\"로 세팅합니다", "Add": "추가", "OC Bars": "OC 바", "Millennium": "밀레니엄", "On Balance Volume_study": "온밸런스볼륨 (On Balance Volume)", "Apply Indicator on {0} ...": "{0}에 지표적용...", "NEW": "새노트", "Chart Layout Name": "차트레이아웃 이름", "Up bars": "업 바", "Hull MA_input": "Hull 이평", "Schiff": "쉬프", "Lock Scale": "눈금고정", "distance: {0}": "거리: {0}", "Extended": "확장", "Square": "네모", "log": "로그눈금", "NO": "아니오", "Top Margin": "위여백", "Up fractals_input": "업 프랙탈", "Insert Drawing Tool": "그림툴넣기", "OHLC Values": "시고저종 값", "Correlation_input": "코릴레이션", "Session Breaks": "세션구분", "Add {0} To Watchlist": "왓치리스트에 {0} 추가", "Anchored Note": "고정위치노트", "lipsLength_input": "lipsLength", "Apply Indicator on {0}": "{0}에 지표적용", "UpDown Length_input": "업다운 렝쓰", "Price Label": "가격라벨", "November": "11월", "Tehran": "테헤란", "Balloon": "풍선", "Track time": "시간추적", "Background Color": "배경색", "an hour": "한시간", "Right Axis": "오른축", "D_data_mode_delayed_streaming_letter": "지", "VI -_input": "VI -", "slowLength_input": "슬로우렝쓰", "Click to set a point": "그릴지점 클릭", "Save Indicator Template As...": "다음으로 지표 템플릿 저장...", "Arrow Up": "애로우 업", "n/a": "없음", "Indicator Titles": "지표이름", "Failure text color": "실패문자색", "Sa_day_of_week": "토", "Net Volume_study": "순거래량 (Net Volume)", "Error": "에러", "Edit Position": "포지션 편집", "RVI_input": "RVI", "Centered_input": "센터드", "Recalculate On Every Tick": "매틱마다 재계산", "Left": "왼쪽", "Simple ma(oscillator)_input": "단순 이평(오실레이터)", "Compare": "비교", "Fisher Transform_study": "피셔 트랜스폼 (Fisher Transform)", "Show Orders": "주문보기", "Zoom In": "크게보기", "Length EMA_input": "Length EMA", "Enter a new chart layout name": "새 차트레이아웃 이름을 넣으시오", "Signal Length_input": "시그널 렝쓰", "FAILURE": "실패", "Point Value": "포인트밸류", "D_interval_short": "일", "MA with EMA Cross_study": "MA with EMA Cross", "Label Up": "레이블 업", "Price Channel_study": "프라이스 채널", "Close": "종", "ParabolicSAR_input": "파라볼릭SAR", "Log Scale_scale_menu": "로그눈금", "MACD_input": "MACD", "Do not show this message again": "이 메시지 다시 보지 않기", "{0} P&L: {1}": "{0} 손익: {1}", "No Overlapping Labels": "오버래핑 라벨 없음", "Arrow Mark Left": "왼화살표", "Slow length_input": "슬로우 렝쓰", "Line - Close": "라인 - 종가", "(O + H + L + C)/4": "(시 + 고 + 저 + 종)/3", "Confirm Inputs": "인풋 확인", "Open_line_tool_position": "포지션보유", "Lagging Span_input": "래깅 스팬", "Subminuette": "서브미뉴에트", "Thursday": "목요일", "Arrow Down": "애로우 다운", "Vancouver": "밴쿠버", "Triple EMA_study": "트리플 EMA (Triple EMA)", "Elliott Correction Wave (ABC)": "엘리엇 코렉션 파동 (ABC)", "Error while trying to create snapshot.": "스냅샷 만들기 에러", "Label Background": "라벨배경색", "Templates": "템플릿", "Please report the issue or click Reconnect.": "문제를 보고하거나 다시 연결을 누르십시오.", "Normal": "정상", "Signal Labels": "신호라벨", "Delete Text Note": "텍스트 노트 지우기", "May": "5월", "Detrended Price Oscillator_study": "디트렌디드 프라이스 오실레이터 (Detrended Price Oscillator)", "Color 5_input": "칼라 5", "Fixed Range_study": "픽스트 레인지", "Up Wave 1 or A": "업 웨이브 1 또는 A", "Scale Price Chart Only": "가격차트만 스케일", "Unmerge Up": "위로 떼냄", "auto_scale": "자동", "Short period_input": "쇼트 피어리어드", "Background": "배경", "Study Templates": "스터디템플릿", "Up Color": "업 칼라", "Apply Elliot Wave Intermediate": "인터미디어트 엘리엇파동 적용", "VWMA_input": "VWMA", "Lower Deviation_input": "로우어 디비에이션", "Save Interval": "인터벌 저장", "February": "2월", "Reverse": "리버스", "Oops, something went wrong": "아이쿠, 뭔가 잘못되었네요", "Add to favorites": "즐겨찾기에 넣기", "Median": "평균값", "ADX_input": "ADX", "Remove": "없애기", "len_input": "len", "Arrow Mark Up": "위화살표", "April": "4월", "Active Symbol": "액티브종목", "Extended Hours": "확장시간", "Crosses_input": "크로스", "Middle_input": "미들", "Read our blog for more info!": "당사의 블로그를 통해 자세히 알아보십시오!", "Sync drawing to all charts": "모든 차트에 드로잉 동기화", "LowerLimit_input": "로우어 리밋", "Know Sure Thing_study": "노우 슈어 씽 (Know Sure Thing)", "Copy Chart Layout": "차트 레이아웃 복사", "Compare...": "비교...", "1. Slide your finger to select location for next anchor
    2. Tap anywhere to place the next anchor": "1. 손가락으로 밀어 다음 앵커 자리를 고르시오
    2. 아무 곳이나 톡 두들겨 다음 앵커 자리를 정하십시오", "Text Notes are available only on chart page. Please open a chart and then try again.": "텍스트노트는 차트에서만 쓸 수 있습니다. 차트열기를 한뒤 다시 해보세요.", "Color": "색", "Aroon Up_input": "아룬 업", "Singapore": "싱가폴", "Scales Lines": "눈금선", "Type the interval number for munute charts (i.e. 5 if it is going to be a five minute chart). Or number plus letter for H (Hourly), D (Daily), W (Weekly), M (Monthly) intervals (i.e. D or 2H)": "분차트 인터벌값 (보기, 5분차트면 5) 또는 숫자와 H (시간), D (날), W (주), M (달) 과 같은 인터벌 글자 (보기, D 또는 2H) 를 치십시오.", "Ellipse": "타원", "Up Wave C": "업 웨이브 C", "Show Distance": "거리 보기", "Risk/Reward Ratio: {0}": "위험/보상율: {0}", "Restore Size": "원래 크기로", "Volume Oscillator_study": "볼륨 오실레이터 (Volume Oscillator)", "Honolulu": "호노룰루", "Williams Fractal_study": "윌리엄스 프랙탈 (Williams Fractal)", "Merge Up": "위로 겹침", "Right Margin": "오른여백", "Moscow": "모스코바", "Warsaw": "바르샤바"} \ No newline at end of file diff --git a/charting_library/static/localization/translations/ms_MY.json b/charting_library/static/localization/translations/ms_MY.json index bcf51350..155097e6 100644 --- a/charting_library/static/localization/translations/ms_MY.json +++ b/charting_library/static/localization/translations/ms_MY.json @@ -1 +1 @@ -{"ticks_slippage ... ticks": "ticks", "Months_interval": "Months", "Percent_input": "Percent", "month": "months", "roclen1_input": "roclen1", "OSC_input": "OSC", "Volume_study": "Volume", "Lips_input": "Lips", "Base Line_input": "Base Line", "SMALen2_input": "SMALen2", "Bollinger Bands_study": "Bollinger Bands", "Upper_input": "Upper", "Sig_input": "Sig", "Count_input": "Count", "SMALen1_input": "SMALen1", "Average Directional Index_study": "Average Directional Index", "H_in_legend": "H", "Accumulation/Distribution_study": "Accumulation/Distribution", "Rate Of Change_study": "Rate Of Change", "in_dates": "in", "Color 7_input": "Color 7", "Chop Zone_study": "Chop Zone", "Oscillator_input": "Oscillator", "yay Color 0_input": "yay Color 0", "Chande Kroll Stop_study": "Chande Kroll Stop", "Hours_interval": "Hours", "Bollinger Bands %B_input": "Bollinger Bands %B", "DEMA_input": "DEMA", "Linear Regression Curve_study": "Linear Regression Curve", "Symbol_input": "Symbol", "increment_input": "increment", "second": "seconds", "smoothD_input": "smoothD", "RSI Source_input": "RSI Source", "Ichimoku Cloud_study": "Ichimoku Cloud", "Mass Index_study": "Mass Index", "Smoothing_input": "Smoothing", "Color 3_input": "Color 3", "Jaw Length_input": "Jaw Length", "Keltner Channels_study": "Keltner Channels", "Bands style_input": "Bands style", "Momentum_study": "Momentum", "MF_input": "MF", "m_dates": "m", "Long length_input": "Long length", "W_interval_short": "W", "Equality Line_input": "Equality Line", "Short_input": "Short", "Down fractals_input": "Down fractals", "smalen2_input": "smalen2", "isCentered_input": "isCentered", "Border": "Sempadan", "Klinger Oscillator_study": "Klinger Oscillator", "SMI Ergodic Indicator/Oscillator_study": "SMI Ergodic Indicator/Oscillator", "Chande MO_input": "Chande MO", "jawLength_input": "jawLength", "TRIX_study": "TRIX", "RVGI_input": "RVGI", "signalLength_input": "signalLength", "d_dates": "d", "August": "Ogos", "Source_compare": "Source", "Correlation Coefficient_study": "Correlation Coefficient", "lipsLength_input": "lipsLength", "Short Length_input": "Short Length", "teethLength_input": "teethLength", "MA Cross_study": "MA Cross", "Signal line period_input": "Signal line period", "Price Volume Trend_study": "Price Volume Trend", "hour": "hours", "F_data_mode_forbidden_letter": "F", "Long RoC Length_input": "Long RoC Length", "Length3_input": "Length3", "+DI_input": "+DI", "MACD_study": "MACD", "%s ago_time_range": "%s ago", "Level_input": "Level", "Commodity Channel Index_study": "Commodity Channel Index", "Elder's Force Index_input": "Elder's Force Index", "Fundamentals": "Asas-asas", "Aroon_study": "Aroon", "Lead 1_input": "Lead 1", "ADR_B_input": "ADR_B", "SMALen3_input": "SMALen3", "Cross_chart_type": "Cross", "Fr_day_of_week": "Fr", "D_input": "D", "p_input": "p", "All": "Semua", "orders_up to ... orders": "orders", "Lead 2_input": "Lead 2", "Vortex Indicator_study": "Vortex Indicator", "Apply": "Memohon", "%d day": "%d days", "Hide": "Sembunyikan", "R_data_mode_realtime_letter": "R", "Conversion Line_input": "Conversion Line", "Su_day_of_week": "Su", "Up fractals_input": "Up fractals", "Double EMA_study": "Double EMA", "minute": "minutes", "Price Oscillator_study": "Price Oscillator", "Th_day_of_week": "Th", "Minutes_interval": "Minutes", "Average True Range_study": "Average True Range", "Max value_input": "Max value", "MA Length_input": "MA Length", "in %s_time_range": "in %s", "UpperLimit_input": "UpperLimit", "sym_input": "sym", "DI Length_input": "DI Length", "SMI_input": "SMI", "Basis_input": "Basis", "Moving Average_study": "Moving Average", "lengthStoch_input": "lengthStoch", "Arnaud Legoux Moving Average_study": "Arnaud Legoux Moving Average", "Smoothed Moving Average_study": "Smoothed Moving Average", "Lower Band_input": "Lower Band", "VI +_input": "VI +", "ROCLen2_input": "ROCLen2", "Simple ma(signal line)_input": "Simple ma(signal line)", "Color 6_input": "Color 6", "Account Size": "Saiz Akaun", "Chaikin Oscillator_study": "Chaikin Oscillator", "Color Theme": "Tema Warna", "Centered_input": "Centered", "Bollinger Bands Width_input": "Bollinger Bands Width", "Signal Length_input": "Signal Length", "D_interval_short": "D", "Color 1_input": "Color 1", "Moving Average Weighted_study": "Moving Average Weighted", "Short period_input": "Short period", "Fisher_input": "Fisher", "Volume Oscillator_study": "Volume Oscillator", "S_data_mode_snapshot_letter": "S", "smalen4_input": "smalen4", "CCI_input": "CCI", "Upper Deviation_input": "Upper Deviation", "NV_input": "NV", "Choppiness Index_study": "Choppiness Index", " per contract": " per kontrak", "Delete": "Padam", "percent_input": "percent", "Length_input": "Length", "Accumulation/Distribution_input": "Accumulation/Distribution", "C_in_legend": "C", "Weeks_interval": "Weeks", "smoothK_input": "smoothK", "Percentage_scale_menu": "Percentage", "MOM_input": "MOM", "h_interval_short": "h", "TRIX_input": "TRIX", "Periods_input": "Periods", "Histogram_input": "Histogram", "StdDev_input": "StdDev", "Relative Strength Index_study": "Relative Strength Index", "-DI_input": "-DI", "Williams %R_study": "Williams %R", "Date": "Tarikh", "Zig Zag_study": "Zig Zag", "Long period_input": "Long period", "length_input": "length", "Slow length_input": "Slow length", "Conversion Line Periods_input": "Conversion Line Periods", "TEMA_input": "TEMA", "Directional Movement_study": "Directional Movement", "q_input": "q", "Advance/Decline_study": "Advance/Decline", "Fast length_input": "Fast length", "Cancel": "Batal", "Ultimate Oscillator_study": "Ultimate Oscillator", "Growing_input": "Growing", "Plot_input": "Plot", "Color 8_input": "Color 8", "h_dates": "h", "Bollinger Bands Width_study": "Bollinger Bands Width", "roclen3_input": "roclen3", "Overbought_input": "Overbought", "DPO_input": "DPO", "Relative Vigor Index_study": "Relative Vigor Index", "Tu_day_of_week": "Tu", "Period_input": "Period", "Trigger_input": "Trigger", "SigLen_input": "SigLen", "Color 2_input": "Color 2", "Williams Alligator_study": "Williams Alligator", "ROCLen1_input": "ROCLen1", "M_interval_short": "M", "Chaikin Oscillator_input": "Chaikin Oscillator", "Zero Line_input": "Zero Line", "Increment_input": "Increment", "Days_interval": "Days", "Net Volume_study": "Net Volume", "Historical Volatility_study": "Historical Volatility", "length14_input": "length14", "High": "Tinggi", "Color 0_input": "Color 0", "maximum_input": "maximum", "D_data_mode_delayed_letter": "D", "Sigma_input": "Sigma", "fastLength_input": "fastLength", "Use Lower Deviation_input": "Use Lower Deviation", "Falling_input": "Falling", "Divisor_input": "Divisor", "length7_input": "length7", "Window Size_input": "Window Size", "Long Length_input": "Long Length", "%R_input": "%R", "bars_margin": "bars", "smalen3_input": "smalen3", "Length1_input": "Length1", "x_input": "x", "Parabolic SAR_study": "Parabolic SAR", "UO_input": "UO", "Short RoC Length_input": "Short RoC Length", "Jaw_input": "Jaw", "Coppock Curve_study": "Coppock Curve", "longlen_input": "longlen", "Moving Average Exponential_study": "Moving Average Exponential", "s_dates": "s", "Area": "Kawasan", "Balance of Power_study": "Balance of Power", "EOM_input": "EOM", "%D_input": "%D", "Offset_input": "Offset", "HV_input": "HV", "Start_input": "Start", "ROC_input": "ROC", "Color 4_input": "Color 4", "Hollow Candles": "Candle berongga", "ADX Smoothing_input": "ADX Smoothing", "Candles": "Candle", "We_day_of_week": "We", "%d minute": "%d minutes", "MA_input": "MA", "Detrended Price Oscillator_study": "Detrended Price Oscillator", "Multiplier_input": "Multiplier", "Exchange": "Pertukaran", "C_data_mode_connecting_letter": "C", "SMALen4_input": "SMALen4", "yay Color 1_input": "yay Color 1", "CHOP_input": "CHOP", "WMA Length_input": "WMA Length", "Stochastic_study": "Stochastic", "Stochastic Length_input": "Stochastic Length", "Closed_line_tool_position": "Closed", "On Balance Volume_study": "On Balance Volume", "Source_input": "Source", "%K_input": "%K", "Log Scale_scale_menu": "Log Scale", "Length2_input": "Length2", "RSI Length_input": "RSI Length", "Base Line Periods_input": "Base Line Periods", "siglen_input": "siglen", "lengthRSI_input": "lengthRSI", "SMI Ergodic Oscillator_input": "SMI Ergodic Oscillator", "Indicator_input": "Indicator", "Q_input": "Q", "Envelope_study": "Envelope", "show MA_input": "show MA", "O_in_legend": "O", "useTrueRange_input": "useTrueRange", "%d year": "%d years", "deviation_input": "deviation", "week": "weeks", "long_input": "long", "VWMA_study": "VWMA", "%d hour": "%d hours", "Displacement_input": "Displacement", "Chaikin Money Flow_study": "Chaikin Money Flow", "Ease Of Movement_study": "Ease Of Movement", "Oversold_input": "Oversold", "short_input": "short", "depth_input": "depth", "RSI_input": "RSI", "Detrended Price Oscillator_input": "Detrended Price Oscillator", "Mo_day_of_week": "Mo", "X_input": "X", "ROCLen4_input": "ROCLen4", "Aroon Down_input": "Aroon Down", "smalen1_input": "smalen1", "KST_input": "KST", "Price_input": "Price", "Close_input": "Close", "Relative Volatility Index_study": "Relative Volatility Index", "PVT_input": "PVT", "Hull Moving Average_study": "Hull Moving Average", "Zero_input": "Zero", "day": "days", "mult_input": "mult", "Signal smoothing_input": "Signal smoothing", "E_data_mode_end_of_day_letter": "E", "Stochastic RSI_study": "Stochastic RSI", "K_input": "K", "ROCLen3_input": "ROCLen3", "Signal_input": "Signal", "like": "likes", "Lower_input": "Lower", "Elder's Force Index_study": "Elder's Force Index", "Bollinger Bands %B_study": "Bollinger Bands %B", "%d month": "%d months", "Donchian Channels_study": "Donchian Channels", "Upper Band_input": "Upper Band", "start_input": "start", "Short length_input": "Short length", "Triple EMA_study": "Triple EMA", "Precise Labels_scale_menu": "Precise Labels", "Lagging Span 2 Periods_input": "Lagging Span 2 Periods", "Teeth_input": "Teeth", "exponential_input": "exponential", "OnBalanceVolume_input": "OnBalanceVolume", "roclen2_input": "roclen2", "Chande Momentum Oscillator_study": "Chande Momentum Oscillator", "Money Flow_study": "Money Flow", "Lips Length_input": "Lips Length", "Use Upper Deviation_input": "Use Upper Deviation", "L_in_legend": "L", "shortlen_input": "shortlen", "Exponential_input": "Exponential", "Comment": "Komen", "Long_input": "Long", "Bars": "Bar", "December": "Disember", "P_input": "P", "length28_input": "length28", "Add": "Tambah", "Least Squares Moving Average_study": "Least Squares Moving Average", "Hull MA_input": "Hull MA", "Median_input": "Median", "Correlation_input": "Correlation", "roclen4_input": "roclen4", "D_data_mode_delayed_streaming_letter": "D", "VI -_input": "VI -", "slowLength_input": "slowLength", "Sa_day_of_week": "Sa", "Error": "Kesilapan", "RVI_input": "RVI", "Awesome Oscillator_study": "Awesome Oscillator", "True Strength Indicator_study": "True Strength Indicator", "Simple ma(oscillator)_input": "Simple ma(oscillator)", "Fisher Transform_study": "Fisher Transform", "Teeth Length_input": "Teeth Length", "ParabolicSAR_input": "ParabolicSAR", "MACD_input": "MACD", "Open_line_tool_position": "Open", "Lagging Span_input": "Lagging Span", "ADX smoothing_input": "ADX smoothing", "Color 5_input": "Color 5", "McGinley Dynamic_study": "McGinley Dynamic", "auto_scale": "auto", "Background": "Latar belakang", "VWMA_input": "VWMA", "Lower Deviation_input": "Lower Deviation", "ATR_input": "ATR", "February": "Februari", "Shapes_input": "Shapes", "ADX_input": "ADX", "len_input": "len", "Crosses_input": "Crosses", "Middle_input": "Middle", "LowerLimit_input": "LowerLimit", "Know Sure Thing_study": "Know Sure Thing", "Aroon Up_input": "Aroon Up", "Williams Fractal_study": "Williams Fractal"} \ No newline at end of file +{"ticks_slippage ... ticks": "Tanda", "Months_interval": "Bulan", "Realtime": "Masa Nyata", "Callout": "Petak bual", "Sync to all charts": "Segerakkan semua carta", "month": "bulan", "roclen1_input": "Panjangroc1", "Unmerge Down": "Nyahgabung Ke Bawah", "Percents": "Peratus", "Search Note": "Nota Carian", "Do you really want to delete Chart Layout '{0}' ?": "Anda benar-benar ingin memadam Susunatur Carta '{0}' ?", "Quotes are delayed by {0} min and updated every 30 seconds": "Sebut Harga ditangguh selama {0} minit dan dikemas kini setiap 30 saat", "Magnet Mode": "Mod Magnet", "OSC_input": "OSC", "Hide alert label line": "Sembunyikan garis label makluman", "Volume_study": "Volume", "Lips_input": "Bibir", "Show real prices on price scale (instead of Heikin-Ashi price)": "Tunjuk harga benar atas skala harga (bukannya harga Heikin-Ashi)", "Base Line_input": "Garis Dasar", "Step": "Langkah", "Insert Study Template": "Masukkan Templat Kajian", "SMALen2_input": "PanjangSMA2", "Bollinger Bands_study": "Bollinger Bands", "Show/Hide": "Tunjuk/Sembunyi", "Upper_input": "Atas", "exponential_input": "Eksponen", "Move Up": "Gerak Ke Atas", "Symbol Info": "Maklumat Simbol", "This indicator cannot be applied to another indicator": "Indikator ini tidak boleh digunapakai pada indikator lain", "Scales Properties...": "Sifat Skala...", "Count_input": "Bilangan", "Full Circles": "bulatan penuh", "Industry": "Industri", "OnBalanceVolume_input": "BakiVolum", "Cross_chart_type": "Silang", "H_in_legend": "H", "a day": "satu hari", "R_data_mode_replay_letter": "R", "Accumulation/Distribution_study": "Accumulation/Distribution", "Rate Of Change_study": "Rate Of Change", "Text Font": "Font Teks", "in_dates": "dalam", "Clone": "Klon", "Color 7_input": "Warna 7", "Chop Zone_study": "Chop Zone", "Scales Properties": "Sifat Skala", "Trend-Based Fib Time": "Fib Time Berdasarkan Trend", "Remove All Indicators": "Keluarkan Semua Penunjuk", "Oscillator_input": "Oscillator", "Last Modified": "Diubah Suai Kali Terakhir", "yay Color 0_input": "yay Warna 0", "Labels": "Label", "Chande Kroll Stop_study": "Chande Kroll Stop", "Hours_interval": "Jam", "Allow up to": "Dibenarkan sehingga", "Scale Right": "Skala Kanan", "Money Flow_study": "Money Flow", "siglen_input": "jaraksig", "Indicator Labels": "Label Indikator", "__specialSymbolOpen__Tomorrow at__specialSymbolClose__ __dayTime__": "__specialSymbolOpen__Esok pada__specialSymbolClose____dayTime__", "Toggle Percentage": "Togol Peratus", "Remove All Drawing Tools": "Keluarkan Semua Alat Lukisan", "Remove all line tools for ": "Keluarkan semua alat garisan untuk ", "Linear Regression Curve_study": "Linear Regression Curve", "Symbol_input": "Simbol", "increment_input": "kenaikan", "Compare or Add Symbol...": "Bandingkan atau Tambah Simbol...", "__specialSymbolOpen__Last__specialSymbolClose__ __dayName__ __specialSymbolOpen__at__specialSymbolClose__ __dayTime__": "__specialSymbolOpen__Terakhir__specialSymbolClose____dayName____specialSymbolOpen__di__specialSymbolClose__ __dayTime__", "Save Chart Layout": "Simpan Susun Atur Carta", "Number Of Line": "Nombor Garisan", "Label": "label", "Post Market": "Lepas-Pasaran", "second": "saat", "Change Hours To": "Tukar Jam Kepada", "smoothD_input": "lincirD", "Falling_input": "Jatuh", "X_input": "X", "Risk/Reward short": "Singkat risiko/ganjaran", "Donchian Channels_study": "Donchian Channels", "Entry price:": "entri harga", "Circles": "Bulatan", "Head": "Kepala", "Stop: {0} ({1}) {2}, Amount: {3}": "Berhenti: {0} ({1}) {2}, Jumlah: {3}", "Mirrored": "Cermin", "Ichimoku Cloud_study": "Ichimoku Cloud", "Signal smoothing_input": "Pelicinan Isyarat", "Toggle Log Scale": "Togol Skala Log", "Toggle Auto Scale": "Togol Skala Auto", "Triangle Down": "Segitiga Menurun", "Apply Elliot Wave Minor": "Gunapakai Gelombang Elliot Kecil", "Slippage": "Gelinciran", "Smoothing_input": "Pelicinan", "Color 3_input": "Warna 3", "Jaw Length_input": "Panjang Rahang", "Inside": "dalam", "Delete all drawing for this symbol": "Padamkan semua lukisan untuk simbol ini", "Fundamentals": "Asas", "Keltner Channels_study": "Keltner Channels", "Long Position": "Kedudukan Panjang", "Bands style_input": "Gaya Bands", "Undo {0}": "Buat asal {0}", "With Markers": "Dengan Penanda", "Momentum_study": "Momentum", "MF_input": "MF", "Switch to the next chart": "Alih ke carta seterusnya", "charts by TradingView": "carta oleh TradingView", "Fast length_input": "Jarak Laju", "Apply Elliot Wave": "Gunapakai Gelombang Elliot", "Disjoint Angle": "Sudut Tak Berkait", "W_interval_short": "W", "Show Only Future Events": "Hanya Tunjuk Peristiwa Masa Depan", "Log Scale": "Skala Log", "Line - High": "garisan tinggi", "Minuette": "Minuet", "Equality Line_input": "Garis Kesamarataan", "Short_input": "Pendek", "Tuesday": "Selasa", "Line": "Garisan", "Session": "Sesi", "Down fractals_input": "Fraktal Menurun", "smalen2_input": "jaraksma2", "isCentered_input": "Tertumpu", "Border": "Sempadan", "Klinger Oscillator_study": "Klinger Oscillator", "Absolute": "mutlak", "Tue": "Selasa", "Style": "Gaya", "Show Left Scale": "Tunjuk Skala Kiri", "SMI Ergodic Indicator/Oscillator_study": "SMI Ergodic Indicator/Oscillatordic", "Aug": "Ogos", "Last available bar": "Bar terakhir tersedia", "Manage Drawings": "Urus Lukisan", "Analyze Trade Setup": "Analisa Setup Dagangan", "No drawings yet": "Belum ada lukisan", "SMI_input": "SMI", "Chande MO_input": "Chande MO", "jawLength_input": "PanjangRahang", "TRIX_study": "TRIX", "Show Bars Range": "Tunjukkan Julat Bar", "RVGI_input": "RVGI", "Last edited ": "Suntingan terakhir ", "signalLength_input": "PanjangSignal", "Reset Settings": "Tetapkan Semula Pengesetan", "d_dates": "d", "Point & Figure": "Titik & Angka", "August": "Ogos", "Recalculate After Order filled": "Kira semula selepas pesanan dipenuhi", "Source_compare": "Sumber", "Down bars": "Bar turun", "Correlation Coefficient_study": "Correlation Coefficient", "Delayed": "Tertangguh", "Bottom Labels": "Label Bawah", "Text color": "Warna teks", "Levels": "tahap", "Short Length_input": "Jarak Singkat", "teethLength_input": "Panjanggigi", "Visible Range_study": "Julat yang boleh dilihat", "Open {{symbol}} Text Note": "Buka {{symbol}} Nota Teks", "October": "Oktober", "Lock All Drawing Tools": "Kuncikan Semua Alat Lukisan", "Long_input": "Panjang", "Right End": "Hujung Kanan", "Show Symbol Last Value": "Tunjuk Nilai Akhir Simbol", "Head & Shoulders": "Kepala dan Bahu", "Do you really want to delete Study Template '{0}' ?": "Anda benar-benar mahu memadamkan Templat Kajian '{0}'?", "Favorite Drawings Toolbar": "Bar Alat Lukisan Kegemaran", "Properties...": "Sifat...", "Reset Scale": "Tetapkan Semula Skala", "MA Cross_study": "MA Cross", "Trend Angle": "Sudut Trend", "Crosshair": "Rerambut Silang", "Signal line period_input": "Jangkamasa Garis Isyarat", "Previous Close Price Line": "Garisan Harga Tutup Sebelumnya", "Line Break": "Garisan Pecah", "Quantity": "Kuantiti", "Price Volume Trend_study": "Price Volume Trend", "Auto Scale": "Skala Auto", "hour": "jam", "Delete chart layout": "Padamkan susun atur carta", "Text": "Teks", "F_data_mode_forbidden_letter": "F", "Risk/Reward long": "Panjang risiko/ganjaran", "Long RoC Length_input": "Jarak Panjang RoC", "Length3_input": "Panjang3", "+DI_input": "+DI", "Length_input": "Panjang", "Use one color": "Guna satu warna", "Chart Properties": "Ciri-ciri Carta", "No Overlapping Labels_scale_menu": "Tiada Label Bertindih", "Exit Full Screen (ESC)": "Keluar Dari Skrin Penuh (ESC)", "MACD_study": "MACD", "Show Economic Events on Chart": "Tunjuk Perisitwa Ekonomi atas Carta", "%s ago_time_range": "%s yang lalu", "Zoom In": "Zum Masuk", "Failure back color": "Kegagalan warna belakang", "Below Bar": "Di bawah Bar", "Time Scale": "Skala Masa", "

    Only D, W, M intervals are supported for this symbol/exchange. You will be automatically switched to a D interval. Intraday intervals are not available because of exchange policies.

    ": "

    hanya tempoh D,W,M disokong untuk simbol ini/ pertukaran. Anda akan ditukar ke tempoh D secara automatik. Berdasarkan polisi pertukaran, selang intraday adalah tidak boleh didapati.

    ", "Extend Left": "Lanjut Kiri", "Date Range": "Julat tarikh", "Min Move": "Gerak Minima", "Price format is invalid.": "Format harga tidak sah.", "Show Price": "Tunjuk Harga", "Level_input": "Aras", "Commodity Channel Index_study": "Commodity Channel Index", "Elder's Force Index_input": "Elder's Force Index", "Currency": "Mata wang", "Color bars based on previous close": "Warnakan bar-bar berdasarkan harga tutup sebelumnya", "Change band background": "Tukar band latar", "Target: {0} ({1}) {2}, Amount: {3}": "Sasaran: {0} ({1}) {2}, Jumlah: {3}", "Zoom Out": "Zum Keluar", "This chart layout has a lot of objects and can't be published! Please remove some drawings and/or studies from this chart layout and try to publish it again.": "Carta ini mempunyai terlalu banyak objek dan tidak dapat diterbitkan! Sila buangkan beberapa lukisan atau/dan kajian dari carta ini dan cuba untuk terbitkan lagi.", "Anchored Text": "Teks Tetap", "Edit {0} Alert...": "Edit Makluman {0}", "Up Wave 5": "Gelombang Naik 5", "Qty: {0}": "Kuantiti: {0}", "Aroon_study": "Aroon", "show MA_input": "tunjukMA", "Lead 1_input": "Pendulu 1", "Short Position": "Kedudukan Singkat", "SMALen1_input": "PanjangSMA1", "P_input": "P", "Apply Default": "Gunapakai Sediakala", "SMALen3_input": "PanjangSMA3", "Average Directional Index_study": "Average Directional Index", "Fr_day_of_week": "Fr", "Invite-only script. Contact the author for more information.": "Skrip Jemputan Sahaja. Hubungi empunya untuk keterangan lanjut.", "Curve": "Lengkung", "a year": "satu tahun", "Target Color:": "Warna sasaran:", "Bars Pattern": "Corak Bar", "D_input": "D", "Font Size": "saiz huruf", "Create Vertical Line": "Cipta Garisan Menegak", "p_input": "p", "Rotated Rectangle": "Segi Empat Tepat Berputar", "Chart layout name": "Nama susun atur carta", "Apply Manual Decision Point": "Gunapakai Titik Keputusan Manual", "Dot": "Titik", "Target back color": "Warna sasaran belakang", "All": "Semua", "orders_up to ... orders": "pesanan", "Dot_hotkey": "Titik", "Lead 2_input": "Pendulu 2", "Save image": "Simpan imej", "Move Down": "Gerak Ke Bawah", "Triangle Up": "Segitiga Menaik", "Box Size": "Saiz Kotak", "Navigation Buttons": "Butang Navigasi", "Apply": "Memohon", "Down Wave 3": "Gelombang Ke Bawah 3", "Plots Background_study": "Latar Belakang Plot", "Marketplace Add-ons": "Tambahan Pasaran", "Sine Line": "Garis Sinus", "Fill": "Isi", "%d day": "%d hari", "Hide": "Sembunyikan", "Toggle Maximize Chart": "Togol Carta Maksima", "Target text color": "Warna teks sasaran", "Scale Left": "Skala Kiri", "Elliott Wave Subminuette": "Subminit Gelombang Elliott ", "Color based on previous close_input": "Color based on previous close", "Down Wave C": "Gelombang Ke Bawah C", "Countdown": "Kira detik", "UO_input": "UO", "Pyramiding": "Membina piramid", "Go to Date...": "Pergi ke Tarikh...", "Text Alignment:": "Jajaran Teks:", "R_data_mode_realtime_letter": "R", "Extend Lines": "melanjutkan baris", "Conversion Line_input": "Garis Pertukaran", "March": "Mac", "Su_day_of_week": "Su", "Exchange": "Pertukaran", "Arcs": "Lengkuk-lengkuk", "Regression Trend": "Trend Regresi", "Symbol Description": "Huraian Simbol", "Double EMA_study": "Double EMA", "minute": "minit", "All Indicators And Drawing Tools": "Semua Indikator Dan Alatan Lukis", "Indicator Last Value": "Nilai Akhir Indikator", "Sync drawings to all charts": "Segerakkan lukisan kepada semua carta", "Change Average HL value": "tukar nilai purata HL", "Stop Color:": "Warna Renti:", "Stay in Drawing Mode": "Tinggal Di Mod Lukisan", "Bottom Margin": "Margin Bawah", "Save Chart Layout saves not just some particular chart, it saves all charts for all symbols and intervals which you are modifying while working with this Layout": "Simpan Susun Atur Carta bukan sahaja menyimpan beberapa carta yang tertentu, ia menyimpan semua carta bagi semua symbol dan selang yang anda sedang mengubah suai ketika menggunakan Susun Atur ini.", "Average True Range_study": "Average True Range", "Max value_input": "Nilai Maksima", "MA Length_input": "Panjang MA", "Invite-Only Scripts": "Skrip Jemputan Sahaja", "in %s_time_range": "dalam %s", "UpperLimit_input": "Had Atas", "sym_input": "sym", "DI Length_input": "Panjang DI", "Scale": "Skala", "Periods_input": "Tempoh", "Arrow": "Anak Panah", "useTrueRange_input": "gunakan JulatBenar", "Basis_input": "Asas", "Arrow Mark Down": "Anak Panah Tunjuk Bawah", "lengthStoch_input": "PanjangStoch", "Objects Tree": "Pepohon Objek", "Remove from favorites": "Sisihkan daripada Kegemaran", "Show Symbol Previous Close Value": "Tunjuk Nilai Tutup Simbol Sebelumnya", "Scale Series Only": "Skalakan Siri Sahaja", "Source text color": "Warna teks sumber", "Simple": "Mudah", "Report a data issue": "Laporkan isu data", "Arnaud Legoux Moving Average_study": "Arnaud Legoux Moving Average", "Smoothed Moving Average_study": "Smoothed Moving Average", "Lower Band_input": "Jalur Bawah", "Verify Price for Limit Orders": "Harga pengesahan untuk Pesanan Had", "VI +_input": "VI +", "Line Width": "Lebar Garis", "Contracts": "Kontrak-kontrak", "Always Show Stats": "Sentiasa Tunjuk Statistik", "Down Wave 4": "Gelombang Ke Bawah 4", "ROCLen2_input": "PanjangROC2", "Simple ma(signal line)_input": "MA Mudah(Garis Isyarat)", "Change Interval...": "Tukar selang masa...", "Public Library": "Perpustakaan Awam", " Do you really want to delete Drawing Template '{0}' ?": " Betulkah anda hendak padam Templat Lakaran '{0}' ?", "Sat": "Sabtu", "Left Shoulder": "Bahu Kiri", "week": "minggu", "CRSI_study": "CRSI", "Close message": "Tutup mesej", "Base currency": "Matawang asas", "Show Drawings Toolbar": "Tunjuk Bar Alat Lukisan", "Chaikin Oscillator_study": "Chaikin Oscillator", "Price Source": "Sumber Harga", "Market Open": "Pasaran Dibuka", "Color Theme": "Tema Warna", "Projection up bars": "Unjuran bar ke atas", "Awesome Oscillator_study": "Awesome Oscillator", "Bollinger Bands Width_input": "Bollinger Bands Width", "long_input": "Panjang", "Error occured while publishing": "Kesilapan berlaku semasa menerbitkan", "Long length_input": "Jarak Panjang", "Color 1_input": "Warna 1", "Moving Average Weighted_study": "Moving Average Weighted", "Save": "Simpan", "Type": "Jenis", "Wick": "Sumbu", "Accumulative Swing Index_study": "Accumulative Swing Index", "Load Chart Layout": "Muatkan Susun Atur Carta", "Show Values": "Tunjuk Nilai", "Fisher_input": "Fisher", "Bollinger Bands Width_study": "Bollinger Bands Width", "This chart layout has more than 1000 drawings, which is a lot! This may negatively affect performance, storage and publishing. We recommend to remove some drawings to avoid potential performance issues.": "Susun atur carta ini mempunyai lebih daripada 1000 lukisan, iaitu terlalu banyak! Ini mungkin akan menjejaskan prestasi, penyimpanan, dan penerbitan dengan cara yang negatif. Kami mencadangkan bahawa beberapa lukisan dikeluarkan untuk mengelakkan berlakunya isu-isu prestasi.", "Left End": "Hujung Kiri", "%d year": "%d tahun", "Always Visible": "Sentiasa Kelihatan", "S_data_mode_snapshot_letter": "S", "Flag": "Maklum", "Elliott Wave Circle": "Bulatan Gelombang Elliott", "Earnings breaks": "Pendapatan Lampauhad", "Change Minutes From": "Tukar Minit Daripada", "Do not ask again": "Jangan tanya lagi", "Displacement_input": "Anjakan", "smalen4_input": "jaraksma4", "CCI_input": "CCI", "Upper Deviation_input": "Sisihan Atas", "XABCD Pattern": "Corak XABCD", "Copied to clipboard": "Telah disalin ke clipboard", "Flipped": "Terbalik", "DEMA_input": "DEMA", "Move_input": "Move", "NV_input": "NV", "Choppiness Index_study": "Choppiness Index", "Study Template '{0}' already exists. Do you really want to replace it?": "Template Kajian '{0}' sedia ada. Adakah anda mahu menukarnya?", "Merge Down": "Gabung Ke Bawah", " per contract": " per kontrak", "Overlay the main chart": "Tindih atas carta utama", "Screen (No Scale)": "Paparan (Tiada Skala)", "Delete": "Padam", "Save Indicator Template As": "Simpan Template Indikator Sebagai..", "Length MA_input": "Panjang MA", "percent_input": "peratus", "{0} copy": "{0} salin", "Avg HL in minticks": "Purata HL dalam tik minima", "Accumulation/Distribution_input": "Accumulation/Distribution", "Sync": "Segerak", "C_in_legend": "C", "Weeks_interval": "Minggu", "smoothK_input": "lincirK", "Percentage_scale_menu": "Peratus", "Change Extended Hours": "Tukar Masa Lanjutan", "MOM_input": "MOM", "h_interval_short": "h", "Change Interval": "Tukar selang masa", "Change area background": "Tukar kawasan latar", "Modified Schiff": "Schiff diubahsuai", "top": "atas", "Custom color...": "Warna langganan...", "Send Backward": "Hantar Ke Belakang", "Mexico City": "Bandar Mexico", "TRIX_input": "TRIX", "Show Price Range": "Tunjukkan Julat Harga", "Elliott Major Retracement": "Anjakan Kembali Utama Elliott", "ASI_study": "ASI", "Notification": "Pemberitahuan", "Fri": "Jumaat", "just now": "sebentar tadi", "Forecast": "Ramalan", "Fraction part is invalid.": "Bahagian pecahan adalah tidak sah.", "Connecting": "Sedang disambung", "Ghost Feed": "Suapan Hantu", "Signal_input": "Isyarat", "Histogram_input": "Histogram", "The Extended Trading Hours feature is available only for intraday charts": "Ciri -ciri Masa Lanjutan Perdagangan hanya didapati untuk carta intrahari", "Stop syncing": "Hentikan penyegerakan", "open": "Buka", "StdDev_input": "Sisihan Piawai", "EMA Cross_study": "EMA Cross", "Conversion Line Periods_input": "Tempoh Garis Pertukaran", "Diamond": "Berlian", "My Scripts": "Skrip Saya", "Monday": "Isnin", "Add Symbol_compare_or_add_symbol_dialog": "Tambah Simbol", "Williams %R_study": "Williams %R", "Symbol": "Simbol", "a month": "satu bulan", "Precision": "Ketepatan", "depth_input": "Kedalaman", "Go to": "Pergi ke", "Please enter chart layout name": "Sila masukkan nama susun atur carta", "Mar": "Mac", "VWAP_study": "VWAP", "Offset": "Imbangan", "Date": "Tarikh", "Apply WPT Up Wave": "Gunapakai Gelombang Menaik WPT", "__dayName__ __specialSymbolOpen__at__specialSymbolClose__ __dayTime__": "__dayName____specialSymbolOpen__di__specialSymbolClose__ __dayTime__", "Toggle Maximize Pane": "Togol Anak Tetingkap Maksima", "Search": "Cari", "Zig Zag_study": "Zig Zag", "Actual": "Sebenar", "SUCCESS": "BERJAYA", "Long period_input": "Tempoh Panjang", "length_input": "Panjang", "roclen4_input": "Panjangroc4", "Price Line": "Garis Harga", "Area With Breaks": "Kawasan Terputus", "Median_input": "Median", "Stop Level. Ticks:": "Tahap Henti. Ticks:", "Window Size_input": "Saiz Tetingkap", "Economy & Symbols": "Simbol & Ekonomi", "Circle Lines": "Garisan bulatan", "Visual Order": "Pesanan Visual", "__specialSymbolOpen__Yesterday at__specialSymbolClose__ __dayTime__": "__specialSymbolOpen__Kelmarin pada__specialSymbolClose____dayTime__", "Stop Background Color": "Warna Latar Belakang Renti", "1. Slide your finger to select location for first anchor
    2. Tap anywhere to place the first anchor": "1. Gelongsor jari anda untuk memilih lokasi untuk sauh pertama
    2. Tekan mana-mana sahaja untuk meletakkan sauh pertama", "Sector": "sektor", "powered by TradingView": "dikuasakan oleh TradingView", "Text:": "Teks:", "Stochastic_study": "Stochastic", "Marker Color": "Warna Penanda", "TEMA_input": "TEMA", "Min Move 2": "Gerak Minima 2", "Extend Left End": "Lanjut Hujung Kiri", "Projection down bars": "Unjuran bar ke bawah", "Advance/Decline_study": "Advance/Decline", "Any Number": "Sebarang Nombor", "Flag Mark": "Tanda Bendera", "Drawings": "Lukisan", "Cancel": "Batal", "Compare or Add Symbol": "Bandingkan atau Tambah Simbol", "Redo": "Buat Semula", "Hide Drawings Toolbar": "Sembunyikan Bar Alat Lukisan", "Ultimate Oscillator_study": "Ultimate Oscillator", "Vert Grid Lines": "Garisan Grid Menegak", "Growing_input": "Pertumbuhan", "Angle": "Sudut", "Plot_input": "Plot", "Color 8_input": "Warna 8", "Indicators, Fundamentals, Economy and Add-ons": "Indikator, Asas, Ekonomi dan Tambahan", "h_dates": "h", "ROC Length_input": "Panjang ROC", "roclen3_input": "Panjangroc3", "Overbought_input": "Terlebih Beli", "DPO_input": "DPO", "Change Minutes To": "Tukar Minit Kepada", "No study templates saved": "Tiada templat kajian disimpan", "Trend Line": "Garis Trend", "TimeZone": "Zon Masa", "Your chart is being saved, please wait a moment before you leave this page.": "Carta anda sedang disimpan, sila tunggu sebentar sebelum anda meninggalkan halaman ini.", "Percentage": "Peratus", "Tu_day_of_week": "Tu", "RSI Length_input": "Panjang RSI", "Triangle": "Segitiga", "Line With Breaks": "Garis Dengan Pisahan", "Period_input": "Tempoh", "Watermark": "Tera Air", "Trigger_input": "Picu", "SigLen_input": "SigLen", "Extend Right": "Lanjut Kanan", "Color 2_input": "Warna 2", "Show Prices": "Tunjuk Harga", "Unlock": "Nyahkunci", "Copy": "Salin", "high": "Tinggi", "Arc": "Lengkuk", "Edit Order": "mengedit perintah", "January": "Januari", "Arrow Mark Right": "Anak Panah Tunjuk Kanan", "Extend Alert Line": "Lanjutkan Garis Makluman", "Background color 1": "Warna latar 1", "RSI Source_input": "Sumber RSI", "Close Position": "menutup kedudukan", "Stop syncing drawing": "Berhenti menyegerakkan lukisan", "Visible on Mouse Over": "Boleh dilihat pada Mouse Over", "MA/EMA Cross_study": "MA/EMA Cross", "Thu": "Khamis", "Vortex Indicator_study": "Vortex Indicator", "view-only chart by {user}": "Carta pandang sahaja oleh {user}", "ROCLen1_input": "PanjangROC1", "M_interval_short": "M", "Chaikin Oscillator_input": "Chaikin Oscillator", "Price Levels": "Tahap Harga", "Show Splits": "Tunjuk Pecahan", "Zero Line_input": "Garis Sifar", "Replay Mode": "Mod Ulangan", "__specialSymbolOpen__Today at__specialSymbolClose__ __dayTime__": "__specialSymbolOpen__Hari ini pada__specialSymbolClose____dayTime__", "Increment_input": "Tambahan", "Days_interval": "Hari", "Show Right Scale": "Tunjuk Skala Kanan", "Show Alert Labels": "Tunjuk Label Makluman", "Historical Volatility_study": "Historical Volatility", "Lock": "Kunci", "length14_input": "Panjang14", "High": "Atas", "Q_input": "Q", "Date and Price Range": "Julat Tarikh dan Masa", "Polyline": "Poligaris", "Reconnect": "Sambung semula", "Lock/Unlock": "Kunci/Buka Kunci", "Base Level": "Paras Asas", "Label Down": "Label ke Bawah", "Saturday": "Sabtu", "Symbol Last Value": "Nilai Akhir Simbol", "Above Bar": "Bar Atas", "Studies": "Kajian", "Color 0_input": "Warna 0", "Add Symbol": "Tambah Simbol", "maximum_input": "maksima", "Wed": "Rabu", "D_data_mode_delayed_letter": "D", "Sigma_input": "Sigma", "VWMA_study": "VWMA", "fastLength_input": "Panjanglaju", "Time Levels": "Tahap Masa", "Width": "Lebar", "Loading": "Pemuatan", "Template": "Templat", "Use Lower Deviation_input": "Gunakan Sisishan Bawah", "Up Wave 3": "Gelombang Naik 3", "Parallel Channel": "Saluran Selari", "Time Cycles": "Kitaran Masa", "Second fraction part is invalid.": "Bahagian pecahan kedua tidak sah", "Divisor_input": "Pembahagi", "Baseline": "Garis Dasar", "Down Wave 1 or A": "Gelombang Ke Bawah 1 atau A", "ROC_input": "ROC", "Dec": "Dis", "Ray": "Sinar", "Extend": "melanjutkan", "length7_input": "Panjang7", "Bring Forward": "Bawa Ke Hadapan", "Bottom": "Bawah", "Apply Elliot Wave Major": "Gunapakai Gelombang Elliot Utama", "Undo": "Buat asal", "Original": "Asal", "Mon": "Isnin", "Right Labels": "Label Kanan", "Long Length_input": "Jarak Panjang", "True Strength Indicator_study": "True Strength Indicator", "%R_input": "%R", "There are no saved charts": "Tiada carta disimpan", "Instrument is not allowed": "Instrumen tidak dibenarkan", "bars_margin": "bar", "Decimal Places": "Tempat Perpuluhan", "Show Indicator Last Value": "Tunjuk Nilai Akhir Penunjuk", "Initial capital": "Modal Permulaan", "Show Angle": "Tunjuk Sudut", "Mass Index_study": "Mass Index", "More features on tradingview.com": "Ciri selebihnya di tradingview.com", "Objects Tree...": "Pepohon Objek...", "Remove Drawing Tools & Indicators": "Buang Alatan Lukis & Indikator", "Length1_input": "Panjang1", "Always Invisible": "Sentiasa Tidak Kelihatan", "Circle": "Bulatan", "Days": "Hari", "x_input": "x", "Save As...": "Simpan Sebagai...", "Elliott Double Combo Wave (WXY)": "Gelombang Kombo Ganda Dua Elliott (WXY)", "Parabolic SAR_study": "Parabolic SAR", "Any Symbol": "Sebarang Simbol", "Variance": "Varians", "Stats Text Color": "Warna teks statistik", "Minutes": "Minit", "Short RoC Length_input": "Jarak RoC Singkat", "Projection": "Unjuran", "Jaw_input": "Rahang", "Right": "Kanan", "Help": "Pertolongan", "Coppock Curve_study": "Coppock Curve", "Reversal Amount": "Amaun Kembalik", "Reset Chart": "Tetapkan Semula Carta", "Sunday": "Ahad", "Left Axis": "Paksi Kiri", "Open": "Buka", "YES": "YA", "longlen_input": "JarakPanjang", "Moving Average Exponential_study": "Moving Average Exponential", "Source border color": "Warna sumber sempadan", "Redo {0}": "Buat Semula {0}", "Cypher Pattern": "Corak Cypher", "s_dates": "s", "Area": "Kawasan", "Triangle Pattern": "Corak Segitiga", "Balance of Power_study": "Balance of Power", "EOM_input": "EOM", "Shapes_input": "Bentuk", "Oversold_input": "Terlebih Jual", "Apply Manual Risk/Reward": "Gunapakai Risiko/Ganjaran Manual", "Market Closed": "Pasaran Ditutup", "Indicators": "Indikator", "close": "Tutup", "q_input": "q", "You are notified": "Anda telah dimaklumkan", "Font Icons": "Ikon Fon", "%D_input": "%D", "Border Color": "Warna Sempadan", "Offset_input": "Ofset", "Risk": "Risiko", "Price Scale": "Skala Harga", "HV_input": "HV", "Seconds": "saat", "Start_input": "Mula", "Oct": "Okt", "Hours": "Jam", "Send to Back": "Hantar ke Belakang", "Color 4_input": "Warna 4", "Angles": "Sudut-sudut", "Prices": "Harga", "Hollow Candles": "Lilin Berongga", "July": "Julai", "Create Horizontal Line": "Cipta Garisan Mendatar", "Minute": "Minit", "Cycle": "KItaran", "ADX Smoothing_input": "Pelicinan ADX", "One color for all lines": "Satu warna untuk semua baris", "m_dates": "m", "Settings": "Tetapan", "Candles": "Lilin", "We_day_of_week": "We", "Width (% of the Box)": "Lebar (% dari kotak)", "%d minute": "%d minit", "Go to...": "Pergi ke...", "Pip Size": "Saiz Pip", "Wednesday": "Rabu", "This drawing is used in alert. If you remove the drawing, the alert will be also removed. Do you want to remove the drawing anyway?": "Lukisan ini digunakan dalam makluman. Jika anda mengeluarkan lukisan, makluman juga akan dikeluarkan sekali dengan lukisan tersebut . Adakah anda ingin mengeluarkan lukisan?", "Show Countdown": "Tunjuk Pemasa Undur", "Show alert label line": "Tunjuk garis label makluman", "Down Wave 2 or B": "Gelombang Ke Bawah 2 atau B", "MA_input": "MA", "Length2_input": "Panjang2", "not authorized": "tidak dibenarkan", "Session Volume_study": "Volume Sesi", "Image URL": "URL imej", "Submicro": "Submikro", "SMI Ergodic Oscillator_input": "SMI Ergodic Oscillator", "Show Objects Tree": "Tunjuk Pepohon Objek", "Primary": "Utama", "Price:": "Harga:", "Bring to Front": "Bawa Ke Depan", "Brush": "Berus", "Not Now": "Bukan Sekarang", "Yes": "Ya", "C_data_mode_connecting_letter": "C", "SMALen4_input": "PanjangSMA4", "Apply Default Drawing Template": "Gunapakai Templat Lukisan Sediakala", "Compact": "Padat", "Save As Default": "Simpan Sebagai Lalai", "Target border color": "Warna sasaran sempadan", "Invalid Symbol": "Simbol Tidak Sah", "Inside Pitchfork": "Dalam Pitchfork", "yay Color 1_input": "yay Warna 1", "Quandl is a huge financial database that we have connected to TradingView. Most of its data is EOD and is not updated in real-time, however the information may be extremely useful for fundamental analysis.": "Quandl merupakan pangkalan data kewangan yang besar yang kita telah menyambung ke TradingView. Kebanyakan datanya adalah EOD dan tidak dikemaskini dalam masa nyata, walaubagaimanapun, maklumat tersebut mungkin amat berguna untuk analisis asas.", "Hide Marks On Bars": "Sembunyikan tanda-tanda atas bar", "Cancel Order": "Batalkan Pesanan", "Hide All Drawing Tools": "Sembunyikan semua alat lukisan", "WMA Length_input": "Panjang WMA", "Show Dividends on Chart": "Tunjuk Dividen atas Carta", "Show Executions": "Tunjuk Pelaksanaan", "Borders": "Sempadan", "Remove Indicators": "Buang Indikator", "loading...": "Muatan ...", "Closed_line_tool_position": "tutup", "Rectangle": "Segi Empat Tepat", "Change Resolution": "Tukar resolusi", "Indicator Arguments": "Argumen Indikator", "Chande Momentum Oscillator_study": "Chande Momentum Oscillator", "Degree": "Darjah", " per order": "per order", "Line - HL/2": "Garis - HL/2", "Supercycle": "Kitaran Super", "Least Squares Moving Average_study": "Least Squares Moving Average", "Change Variance value": "Tukar nilai varians", "powered by ": "dikuasakan oleh ", "Source_input": "Sumber", "Change Seconds To": "tukar saat kepada", "%K_input": "%K", "Scales Text": "Teks Skala", "Please enter template name": "Masukkan nama template", "Symbol Name": "Nama Simbol", "Events Breaks": "Peristiwa", "Study Templates": "Template Kajian", "Months": "Bulan", "Symbol Info...": "Maklumat Simbol...", "Elliott Wave Minor": "Gelombang Elliott Kecil", "Read our blog for more info!": "Baca blog kami untuk maklumat lanjut!", "Measure (Shift + Click on the chart)": "Ukur (Shift + Klik atas carta)", "Override Min Tick": "Override tik minima", "Show Positions": "Tunjuk Kedudukan", "Add To Text Notes": "Tambah Catatan Teks", "Elliott Triple Combo Wave (WXYXZ)": "Gelombang Kombo Ganda Tiga Elliott (WXYXZ)", "Multiplier_input": "Pengganda", "Risk/Reward": "Risiko/Ganjaran", "Base Line Periods_input": "Tempoh Garis Dasar", "Show Dividends": "Tunjuk Dividen", "Relative Strength Index_study": "Relative Strength Index", "Top Labels": "Label Atas", "Show Earnings": "Tunjuk Pendapatan", "Line - Open": "garis- buka", "Elliott Triangle Wave (ABCDE)": "Gelombang Segitiga Elliott (ABCDE)", "Text Wrap": "Balut Teks", "Reverse Position": "Posisi terbalik", "Elliott Minor Retracement": "Anjakan Kembali Kecil Elliott", "Th_day_of_week": "Th", "Slash_hotkey": "Slash", "No symbols matched your criteria": "Tiada simbol dipadankan untuk kriteria anda", "Icon": "Ikon", "lengthRSI_input": "PanjangRSI", "Heikin Ashi": "Heiken Aishi", "Teeth Length_input": "Panjang Gigi", "Indicator_input": "Indikator", "Box size assignment method": "Kaedah tugasan saiz kotak", "Open Interval Dialog": "Bukan Dialog Selangan", "Timezone/Sessions Properties...": "Sifat Zon Masa/Sesi", "Content": "kandungan", "middle": "tengah", "Lock Cursor In Time": "Kuncikan Kursor Dalam Masa", "Intermediate": "perantaraan", "Eraser": "Pemadam", "Relative Vigor Index_study": "Relative Vigor Index", "Envelope_study": "Envelope", "Pre Market": "Pra-Pasaran", "Horizontal Line": "Garisan Mendatar", "O_in_legend": "O", "Confirmation": "pengesahan", "HL Bars": "Batang HL", "Lines:": "Garis:", "Hide Favorite Drawings Toolbar": "Sembunyikan Bar Alat Lukisan Kegemaran", "X Cross": "Silang X", "Profit Level. Ticks:": "Tahap Keuntungan. Ticks:", "Show Date/Time Range": "Tunjukkan Julat Tarikh/Masa", "Level {0}": "Tahap {0}", "Favorites": "Sukaan", "Horz Grid Lines": "Garisan Grid Melintang", "-DI_input": "-DI", "Price Range": "Julat Harga", "day": "hari", "deviation_input": "Sisihan", "Account Size": "Saiz Akaun", "Value_input": "Nilai", "Time Interval": "Selang Masa", "Success text color": "Warna teks kejayaan", "ADX smoothing_input": "Pelicinan ADX", "%d hour": "%d jam", "Order size": "Saiz pesanan", "Drawing Tools": "Alat lukisan", "Save Drawing Template As": "Simpan Templat Lakaran Sebagai", "Traditional": "Tradisional", "Chaikin Money Flow_study": "Chaikin Money Flow", "Ease Of Movement_study": "Ease Of Movement", "Defaults": "tetapan asal", "Percent_input": "Peratus", "Interval is not applicable": "selang yang tidak berkenaan", "short_input": "pendek", "Visual settings...": "Pengesetan visual", "RSI_input": "RSI", "Chatham Islands": "Kepulauan Chatham", "Detrended Price Oscillator_input": "Detrended Price Oscillator", "Mo_day_of_week": "Mo", "Up Wave 4": "Gelombang Naik 4", "center": "pusat", "Vertical Line": "Garis Menegak", "Show Splits on Chart": "Tunjuk Pecahan atas Carta", "Sorry, the Copy Link button doesn't work in your browser. Please select the link and copy it manually.": "Maaf, butang CopyLink tidak berfungsi di pelayar web anda. Sila pilih pautan dan salin secara manual.", "Levels Line": "garis tahap", "Events & Alerts": "Peristiwa & Makluman", "May": "Mei", "ROCLen4_input": "PanjangROC4", "Aroon Down_input": "Aroon Turun", "Add To Watchlist": "Tambah Ke Daftar Lihat", "Total": "Jumlah", "Price": "Harga", "left": "kiri", "Lock scale": "Kuncikan Skala", "Limit_input": "Had", "Change Days To": "tukar hari kepada", "Price Oscillator_study": "Price Oscillator", "smalen1_input": "jaraksma1", "Drawing Template '{0}' already exists. Do you really want to replace it?": "Template Lukisan '{0}' sudah wujud. Pastikah anda hendak menggantikannya?", "Show Middle Point": "Papar Titik Tengah", "KST_input": "KST", "Extend Right End": "Lanjut Hujung Kanan", "Fans": "kipas", "Line - Low": "garisan rendah", "Price_input": "Harga", "Moving Average_study": "Moving Average", "Weeks": "Minggu", "McGinley Dynamic_study": "McGinley Dynamic", "Relative Volatility Index_study": "Relative Volatility Index", "Elliott Impulse Wave (12345)": "Gelombang Impuls Elliott (12345)", "PVT_input": "PVT", "Show Hidden Tools": "Tunjuk Alat Tersembunyi", "Hull Moving Average_study": "Hull Moving Average", "Symbol Prev. Close Value": "Nilai Tutup Simbol Sebelumnya", "{0} chart by TradingView": "Carta {0} oleh TradingView", "Right Shoulder": "Bahu Kanan", "Remove Drawing Tools": "Buang Alatan Lukis", "Friday": "Jumaat", "Zero_input": "Sifar", "Company Comparison": "Perbandingan Syarikat", "Stochastic Length_input": "Panjang Stochastic", "mult_input": "Pelbagai", "URL cannot be received": "URL tidak dapat diterima", "Success back color": "Warna kejayaan belakang", "E_data_mode_end_of_day_letter": "E", "Trend-Based Fib Extension": "Fib Extension Berdasarkan Trend", "Top": "Atas", "Double Curve": "Lengkung Kembar", "Stochastic RSI_study": "Stochastic RSI", "Horizontal Ray": "Sinaran Mendatar", "smalen3_input": "jaraksma3", "Symbol Labels": "Label Simbol", "Script Editor...": "Editor Skrip...", "Are you sure?": "Adakah anda pasti?", "Trades on Chart": "Jualbeli di Carta", "Listed Exchange": "Bursa Tersenarai", "Error:": "kesilapan", "Fullscreen mode": "Mod skrin penuh", "Add Text Note For {0}": "Tambah Catalan Teks untuk{0}", "K_input": "K", "Do you really want to delete Drawing Template '{0}' ?": "Pastikah anda hendak memadam Templat Lakaran '{0}'?", "ROCLen3_input": "PanjangROC3", "Micro": "Mikro", "Text Color": "Warna Teks", "Rename Chart Layout": "Namakan Semula Susun Atur Carta", "Built-ins": "Bina dalam", "Background color 2": "Warna latar 2", "Drawings Toolbar": "Bar Alat Lukisan", "Source Code...": "Kod Sumber...", "CHOP_input": "CHOP", "Apply Defaults": "Gunapakai Sediakala", "% of equity": "% ekuiti", "Extended Alert Line": "Garis Makluman Dilanjutkan", "Note": "Nota", "Moving Average Channel_study": "Saluran Moving Average", "like": "suka", "Show": "Tunjuk", "Lower_input": "Bawah", "Created ": "Telah dibuat ", "Warning": "Amaran", "Elder's Force Index_study": "Elder's Force Index", "Show Earnings on Chart": "Tunjuk Pendapatan atas Carta", "ATR_input": "ATR", "Low": "Rendah", "Bollinger Bands %B_study": "Bollinger Bands %B", "Time Zone": "Zon Masa", "right": "kanan", "%d month": "%d bulan", "Wrong value": "Nilai yang salah", "Upper Band_input": "Jalur Atas", "Sun": "Ahad", "Rename...": "Nama semula", "start_input": "Mula", "No indicators matched your criteria.": "Tiada indikator yang memenuhi kriteria anda.", "Commission": "Komisen", "Down Color": "Warna Bawah", "Short length_input": "Jarak Singkat", "Submillennium": "Submillenium", "Technical Analysis": "Analisa Teknikal", "Show Text": "Tunjuk Teks", "Channel": "saluran", "FXCM CFD data is available only to FXCM account holders": "Data FXCM CFD hanya disediakan kepada pemegang akaun FXCM", "Lagging Span 2 Periods_input": "Rentasan Pelambanan 2 Jangkamasa", "Connecting Line": "Garis Sambungan", "bottom": "bawah", "Teeth_input": "Gigi", "Sig_input": "Sig", "Open Manage Drawings": "Buka Urus Lukisan", "Save New Chart Layout": "Simpan Susun Atur Carta Baru", "Save Drawing Template As...": "Simpan Templat Lakaran Sebagai..", "Minutes_interval": "Minit", "Up Wave 2 or B": "Gelombang Naik 2 atau B", "Columns": "Kolum", "Directional Movement_study": "Directional Movement", "roclen2_input": "Panjangroc2", "Apply WPT Down Wave": "Gunapakai Gelombang Menurun WPT", "Not applicable": "Tidak berkaitan", "Bollinger Bands %B_input": "Bollinger Bands %B", "Default": "Lalai", "Template name": "Nama template", "Indicator Values": "Nilai Penunjuk", "Lips Length_input": "Panjang Muncung", "Use Upper Deviation_input": "Gunakan Sisishan Atas", "L_in_legend": "L", "Remove custom interval": "Keluarkan selangan suai langgan", "shortlen_input": "jarakpendek", "Quotes are delayed by {0} min": "Sebut Harga ditangguh selama {0} minit", "Hide Events on Chart": "Sembunyikan Peristiwa atas Carta", "Cash": "Tunai", "Profit Background Color": "Warna Latar Belakang Keuntungan", "Williams Alligator_study": "Williams Alligator", "Exponential_input": "Eksponen", "Down Wave 5": "Gelombang Ke Bawah 5", "Previous": "Sebelum", "Stay In Drawing Mode": "Tinggal Di Mod Lukisan", "Comment": "Komen", "Connors RSI_study": "Connors RSI", "Bars": "Bar", "Show Labels": "Tunjuk Label", "Flat Top/Bottom": "Atas/Bawah Rata", "Symbol Type": "jenis simbol", "December": "Disember", "Lock drawings": "Kuncikan lukisan", "Border color": "Warna sempadan", "Change Seconds From": "tukar saat dari", "Left Labels": "Label Kiri", "Insert Indicator...": "Masukkan Indikator...", "ADR_B_input": "ADR_B", "Paste %s": "Tampal %s", "Change Symbol...": "Tukar simbol...", "Timezone": "Zone Masa", "Invite-only script. You have been granted access.": "Skrip Jemputan Sahaja. Anda telah diberikan akses.", "Color 6_input": "Warna 6", "ATR Length": "Panjang ATR", "{0} financials by TradingView": "Kewangan {0} oleh TradingView", "Extend Lines Left": "Lanjutkan Garis Ke Kiri", "Source back color": "Warna sumber belakang", "Transparency": "Ketelusan", "No": "Tidak", "June": "Jun", "Cyclic Lines": "Garis Kitaran", "length28_input": "Panjang28", "ABCD Pattern": "Corak ABCD", "When selecting this checkbox the study template will set \"__interval__\" interval on a chart": "Apabila memilih kotak semak ini, template kajian akan menetapkan selang \"__interval__\" pada carta", "Add": "Tambah", "OC Bars": "Batang OC", "On Balance Volume_study": "On Balance Volume", "Apply Indicator on {0} ...": "Guna Indikator pada {0} ...", "NEW": "BARU", "Chart Layout Name": "Nama Susun Atur Carta", "Up bars": "Bar naik", "Hull MA_input": "Hull MA", "Lock Scale": "Kuncikan Skala", "distance: {0}": "jarak: {0}", "Extended": "Dilanjutkan", "Square": "Empat Segi Sama", "Three Drives Pattern": "Corak Tiga Pemacu", "NO": "TIDAK", "Top Margin": "Margin Teratas", "Up fractals_input": "Fraktal Menaik", "Insert Drawing Tool": "Masukkan Alat Lukisan", "OHLC Values": "Nilai OHLC", "Correlation_input": "Korelasi", "Session Breaks": "Perpisahan Sesi", "Add {0} To Watchlist": "Tambah {0} Daftar Lihat", "Anchored Note": "Nota Tetap", "lipsLength_input": "Panjangbibir", "low": "Rendah", "Apply Indicator on {0}": "Guna Indikator pada {0}", "UpDown Length_input": "Panjang NaikTurun", "Price Label": "Label Harga", "Balloon": "Belon", "Background Color": "Warna Latar", "an hour": "satu jam", "Right Axis": "Paksi Kanan", "D_data_mode_delayed_streaming_letter": "D", "VI -_input": "VI -", "slowLength_input": "Jarakperlahan", "Click to set a point": "Klik untuk menetapkan titik", "Save Indicator Template As...": "Simpan Template Indikator Sebagai..", "Arrow Up": "Panah ke Atas", "Indicator Titles": "Tajuk Indikator", "Failure text color": "Kegagalan warna teks", "Sa_day_of_week": "Sa", "Net Volume_study": "Net Volume", "Error": "Kesilapan", "Edit Position": "mengedit kedudukan", "RVI_input": "RVI", "Centered_input": "Terpusat", "Recalculate On Every Tick": "Kira semula disetiap tik", "Left": "Kiri", "Simple ma(oscillator)_input": "Simple ma(oscillator)", "Compare": "Bandingkan", "Fisher Transform_study": "Fisher Transform", "Show Orders": "Tunjuk Order", "Track time": "Jejak masa", "Length EMA_input": "Panjang EMA", "Enter a new chart layout name": "Masukkan nama baru susun atur carta", "Signal Length_input": "Panjang Isyarat", "FAILURE": "kegagalan", "Point Value": "Nilai Mata", "D_interval_short": "D", "MA with EMA Cross_study": "MA with EMA Cross", "Label Up": "Label ke Atas", "Price Channel_study": "Saluran Harga", "Close": "Tutup", "ParabolicSAR_input": "ParabolicSAR", "Log Scale_scale_menu": "Skala Log", "MACD_input": "MACD", "Do not show this message again": "Jangan menunjukkan mesej ini lagi", "No Overlapping Labels": "Tiada Label Bertindih", "Arrow Mark Left": "Anak Panah Tunjuk Kiri", "Slow length_input": "Jarak Perlahan", "Line - Close": "garisan tutup", "Confirm Inputs": "Sahkan input", "Open_line_tool_position": "Buka", "Lagging Span_input": "Jarak Mundur", "Cross": "Silang", "Thursday": "Khamis", "Arrow Down": "Panah ke Bawah", "Triple EMA_study": "Triple EMA", "Elliott Correction Wave (ABC)": "Gelombang Pembetulan Elliott (ABC)", "Error while trying to create snapshot.": "Kesilapan semasa cuba mencipta gambar foto.", "Label Background": "Label Latarbelakang", "Templates": "Templat-templat", "Please report the issue or click Reconnect.": "Sila laporkan isu ini atau klik Sambung Semula.", "Normal": "Biasa", "Signal Labels": "Label Isyarat", "Delete Text Note": "Padam Nota Teks", "compiling...": "menyusun ....", "Detrended Price Oscillator_study": "Detrended Price Oscillator", "Color 5_input": "Warna 5", "Fixed Range_study": "Julat Tetap", "Up Wave 1 or A": "Gelombang Naik 1 atau A", "Scale Price Chart Only": "Skalakan Carta Harga Sahaja", "Unmerge Up": "Nyahgabung Ke Atas", "auto_scale": "auto", "Short period_input": "Jangkamasa Pendek", "Background": "Latar belakang", "Up Color": "Warna Atas", "Apply Elliot Wave Intermediate": "Gunapakai Gelombang Elliot Perantaraan", "VWMA_input": "VWMA", "Lower Deviation_input": "Sisihan Bawah", "Save Interval": "Simpan Selang", "February": "Februari", "Reverse": "Songsang", "Oops, something went wrong": "Oops, terdapat sesuatu kesilapan", "Add to favorites": "Tambah ke senarai pilihan", "ADX_input": "ADX", "Remove": "Padam", "len_input": "len", "Arrow Mark Up": "Anak Panah Tunjuk Atas", "Active Symbol": "Simbol Aktif", "Extended Hours": "Masa Lanjutan", "Crosses_input": "Silangan", "Middle_input": "Pertengahan", "Sync drawing to all charts": "Segerakkan lukisan kepada semua carta", "LowerLimit_input": "Had Bawah", "Know Sure Thing_study": "Know Sure Thing", "Copy Chart Layout": "Salin Susun Atur Carta", "Compare...": "Bandingkan...", "1. Slide your finger to select location for next anchor
    2. Tap anywhere to place the next anchor": "1. Gelongsor jari anda untuk memilih lokasi untuk sauh seterusnya
    2. Tekan mana-mana sahaja untuk meletakkan sauh seterusnya", "Text Notes are available only on chart page. Please open a chart and then try again.": "Nota teks hanya terdapat pada halaman carta. Sila membuka satu carta dan kemudian cuba lagi.", "Color": "Warna", "Aroon Up_input": "Aroon Naik", "Singapore": "Singapura", "Scales Lines": "Garis Skala", "Type the interval number for munute charts (i.e. 5 if it is going to be a five minute chart). Or number plus letter for H (Hourly), D (Daily), W (Weekly), M (Monthly) intervals (i.e. D or 2H)": "Taipkan nombor selang untuk carta minit (i.e. 5 jika ia merupakan carta lima minit). Atau kombinasi nombor dengan huruf bagi jarak waktu J (Jam), H (Harian), M (Mingguan) dan B (bulanan) (i.e. H atau 2J)", "HLC Bars": "Bar HLC", "Up Wave C": "Gelombang Naik C", "Show Distance": "Tunjuk Jarak", "Risk/Reward Ratio: {0}": "Nisbah risiko / ganjaran: {0}", "Restore Size": "Pulihkan Saiz", "Volume Oscillator_study": "Volume Oscillator", "Williams Fractal_study": "Williams Fractal", "Merge Up": "Gabung Ke Atas", "Right Margin": "Margin Kanan", "Ellipse": "Elips"} \ No newline at end of file diff --git a/charting_library/static/localization/translations/nl_NL.json b/charting_library/static/localization/translations/nl_NL.json index 289510ef..99696dbc 100644 --- a/charting_library/static/localization/translations/nl_NL.json +++ b/charting_library/static/localization/translations/nl_NL.json @@ -1 +1 @@ -{"ticks_slippage ... ticks": "ticks", "Months_interval": "Months", "Percent_input": "Percent", "Callout": "Aanroepen", "month": "not used for this language", "London": "Londen", "roclen1_input": "roclen1", "Minor": "Beperkt", "Top Margin": "Bovenste marge", "Magnet Mode": "Magneet modus", "OSC_input": "OSC", "Volume_study": "Volume", "Lips_input": "Lips", "Base Line_input": "Base Line", "Step": "Stap", "Fib Time Zone": "Fib tijdszone", "SMALen2_input": "SMALen2", "Bollinger Bands_study": "Bollinger Bands", "Nov": "nov", "Show/Hide": "Laat zien/verbergen", "Upper_input": "Upper", "Sig_input": "Sig", "Move Up": "Verplaats omhoog", "Gann Square": "Gann vierkant", "Count_input": "Count", "Anchored Text": "Geankerde tekst", "SMALen1_input": "SMALen1", "Cross_chart_type": "Cross", "Target Color:": "Doel kleur:", "Pitchfork": "Hooivork", "Normal": "Normaal", "Accumulation/Distribution_study": "Accumulatie/distributie", "Rate Of Change_study": "Rate Of Change", "in_dates": "in", "Color 7_input": "Color 7", "Chop Zone_study": "Chop Zone", "Scales Properties": "Schaal eigenschappen", "Trend-Based Fib Time": "Trend gebaseerde Fib tijd", "Remove All Indicators": "Verwijder alle indicatoren", "Oscillator_input": "Oscillator", "Last Modified": "Laatst aangepast", "yay Color 0_input": "yay Color 0", "Chande Kroll Stop_study": "Chande Kroll Stop", "Hours_interval": "Hours", "Scale Right": "Schaal rechts", "Bollinger Bands %B_input": "Bollinger Bands %B", "DEMA_input": "DEMA", "Toggle Percentage": "Schakel percentage", "Remove All Drawing Tools": "Verwijder alle tekenhulpmiddelen", "Linear Regression Curve_study": "Linear Regression Curve", "Symbol_input": "Symbol", "increment_input": "increment", "Rename Chart Layout": "Hernoem grafiek lay-out", "second": "seconds", "smoothD_input": "smoothD", "Falling_input": "Falling", "Risk/Reward short": "Risico/opbrengst short", "Entry price:": "Openingsprijs:", "RSI Source_input": "RSI Source", "Ichimoku Cloud_study": "Ichimoku Cloud", "Toggle Log Scale": "Schakel log schaal", "Grid": "Rooster", "Mass Index_study": "Mass Index", "Rename...": "Hernoem...", "Smoothing_input": "Smoothing", "Color 3_input": "Color 3", "Jaw Length_input": "Jaw Length", "Quotes are delayed by 10 min and updated every 30 seconds": "Koersen zijn vertraagd met 10 minuten en worden elke 30 seconden vernieuwd", "Keltner Channels_study": "Keltner Channels", "Long Position": "Long positie", "Bands style_input": "Bands style", "Undo {0}": "Ongedaan maken", "With Markers": "Met markeringen", "Momentum_study": "Momentum", "MF_input": "MF", "Gann Box": "Gann box", "Long length_input": "Long length", "Disjoint Angle": "Ontwrichte hoek", "W_interval_short": "W", "Log Scale": "Logaritmische schaal", "Equality Line_input": "Equality Line", "Short_input": "Short", "Fib Wedge": "Fib wig", "Line": "Lijn", "Down fractals_input": "Down fractals", "Fib Retracement": "Fib teruggang", "smalen2_input": "smalen2", "isCentered_input": "isCentered", "Border": "Rand", "Klinger Oscillator_study": "Klinger Oscillator", "Absolute": "Absoluut", "Style": "Stijl", "SMI Ergodic Indicator/Oscillator_study": "SMI Ergodic Indicator/Oscillator", "Aug": "aug", "Manage Drawings": "Beheer tekeningen", "No drawings yet": "Nog geen tekeningen", "Chande MO_input": "Chande MO", "jawLength_input": "jawLength", "TRIX_study": "TRIX", "MACD_study": "MACD", "RVGI_input": "RVGI", "signalLength_input": "signalLength", "Middle_input": "Middle", "d_dates": "d", "in %s_time_range": "in %s", "%s ago_time_range": "%s ago", "Source_compare": "Source", "Correlation Coefficient_study": "Correlation Coefficient", "Bottom Labels": "Onderste labels", "Text color": "Tekstkleur", "lipsLength_input": "lipsLength", "Short Length_input": "Short Length", "teethLength_input": "teethLength", "Failure text color": "Standaardkleur tekst", "FAILURE": "Mislukt!", "Subminuette": "Subminuten", "Lock All Drawing Tools": "Vergrendel alle tekenhulpmiddelen", "Target border color": "Doel randkleur", "Right End": "Rechter einde", "Head & Shoulders": "Hoofd & schouders", "Simple ma(oscillator)_input": "Simple ma(oscillator)", "Properties...": "Eigenschappen...", "MA Cross_study": "MA Cross", "Trend Angle": "Trend hoek", "Crosshair": "Vizier", "Signal line period_input": "Signal line period", "Q_input": "Q", "Line Break": "Line break", "Quantity": "Hoeveelheid", "Price Volume Trend_study": "Price Volume Trend", "Auto Scale": "Autoschalen", "hour": "not used for this language", "Scales": "Schalen", "Text": "Tekst", "F_data_mode_forbidden_letter": "F", "Risk/Reward long": "Risico/opbrengst long", "Long RoC Length_input": "Long RoC Length", "Length3_input": "Length3", "+DI_input": "+DI", "{0} copy": "{0} kopiëren", "Show Bars Range": "Toon bar bereik", "Moving Average_study": "Moving Average", "Zoom In": "Inzoomen", "Failure back color": "Standaardkleur", "Extend Left": "Rek uit naar links", "Date Range": "Datum reikwijdte", "Show Price": "Toon prijs", "Level_input": "Level", "Commodity Channel Index_study": "Commodity Channel Index", "Elder's Force Index_input": "Elder's Force Index", "Scales Properties...": "Schaal eigenschappen...", "Format": "Formaat", "Color bars based on previous close": "Kleur bars gebaseerd op voorgaand slot", "Precise Labels": "Precieze labels", "Text:": "Tekst:", "Aroon_study": "Aroon", "show MA_input": "show MA", "h_dates": "h", "Short Position": "Short positie", "Change Interval...": "Verander interval...", "SMALen3_input": "SMALen3", "Average Directional Index_study": "Average Directional Index", "Fr_day_of_week": "Fr", "H_in_legend": "H", "Bars Pattern": "Bars patroon", "D_input": "D", "Right Labels": "Rechter labels", "Change Interval": "Verander interval", "p_input": "p", "Chart layout name": "Grafiek lay-out naam", "Fib Circles": "Fib cirkels", "Dot": "Punt", "Target back color": "Doel achtergrondkleur", "orders_up to ... orders": "orders", "Lead 2_input": "Lead 2", "Save image": "Sla afbeelding op", "Move Down": "Verplaats omlaag", "Vortex Indicator_study": "Vortex Indicator", "Apply": "Toepassen", "%d day": "%d days", "Hide": "Verbergen", "Target text color": "Doel tekstkleur", "Scale Left": "Schaal links", "Elliott Wave Subminuette": "Elliot subminuette golf", "Jan": "jan", "Source back color": "Bron achtergrondkleur", "Sao Paulo": "São Paulo", "Oct": "Okt", "Extend Lines": "Rek lijnen uit", "Inputs": "Invoer", "Conversion Line_input": "Conversion Line", "Su_day_of_week": "Su", "Up fractals_input": "Up fractals", "Regression Trend": "Regressie trend", "Fib Spiral": "Fib spiraal", "Double EMA_study": "Double EMA", "minute": "not used for this language", "Price Oscillator_study": "Price Oscillator", "Stop Color:": "Stop kleur:", "Stay in Drawing Mode": "Blijf in teken modus", "Bottom Margin": "Onderste marge", "Average True Range_study": "Average True Range", "Max value_input": "Max value", "MA Length_input": "MA Length", "Time Interval": "Tijdinterval", "UpperLimit_input": "UpperLimit", "sym_input": "sym", "DI Length_input": "DI Length", "SMI_input": "SMI", "Arrow": "Pijl", "Basis_input": "Basis", "Arrow Mark Down": "Pijl teken beneden", "lengthStoch_input": "lengthStoch", "Remove from favorites": "Verwijder van favorieten", "Copy": "Kopiëren", "Scale Series Only": "Schaal alleen data series", "Simple": "Eenvoudig", "Arnaud Legoux Moving Average_study": "Arnaud Legoux Moving Average", "Technical Analysis": "Technische Analyse", "Lower Band_input": "Lower Band", "VI +_input": "VI +", "Lead 1_input": "Lead 1", "Always Show Stats": "Toon statistieken altijd", "ROCLen2_input": "ROCLen2", "Simple ma(signal line)_input": "Simple ma(signal line)", "Show Labels": "Toon labels", "Ray": "Straal", "long_input": "long", "Chaikin Oscillator_study": "Chaikin Oscillator", "Balloon": "Ballon", "Color Theme": "Kleuren Thema", "Centered_input": "Centered", "Bollinger Bands Width_input": "Bollinger Bands Width", "Fib Speed Resistance Arcs": "Fib snelheid weerstandsbogen", "D_interval_short": "D", "Lock/Unlock": "Vergrendel/ontgrendel", "Color 1_input": "Color 1", "Moving Average Weighted_study": "Moving Average Weighted", "Save": "Opslaan", "Chart Layout Name": "Grafiek lay-out naam", "Short period_input": "Short period", "Load Chart Layout": "Laad grafiek lay-out", "Fib Speed Resistance Fan": "Fib snelheid weerstandswaaier", "Left End": "Linker einde", "Volume Oscillator_study": "Volume Oscillator", "S_data_mode_snapshot_letter": "S", "post-market": "nabeurs", "Elliott Wave Circle": "Elliott golfcyclus", "smalen4_input": "smalen4", "CCI_input": "CCI", "Unmerge Up": "Omhoog losmaken", "Upper Deviation_input": "Upper Deviation", "XABCD Pattern": "XABC patroon", "Schiff Pitchfork": "Schiff hooivork", "Flipped": "Omgedraaid", "NV_input": "NV", "Choppiness Index_study": "Choppiness Index", "Merge Down": "Omlaag samenvoegen", "Th_day_of_week": "Th", "eod delayed": "eod vertraagd", "Delete": "Verwijderen", "percent_input": "percent", "Apr": "apr", "Length_input": "Length", "Median_input": "Median", "Accumulation/Distribution_input": "Accumulation/Distribution", "C_in_legend": "C", "Weeks_interval": "Weeks", "smoothK_input": "smoothK", "Percentage_scale_menu": "Percentage", "Font Size": "Lettertype grootte", "MOM_input": "MOM", "h_interval_short": "h", "Rotated Rectangle": "Gedraaide rechthoek", "Modified Schiff": "Aangepaste Schiff", "Send Backward": "Stuur naar achteren", "TRIX_input": "TRIX", "Elliott Major Retracement": "Elliott sterke teruggang", "Periods_input": "Periods", "Forecast": "Voorspelling", "hour_plural": "not used for this language", "Histogram_input": "Histogram", "The Extended Trading Hours feature is available only for intraday charts": "De 'Extended Trading Hours' optie is alleen beschikbaar voor intra-day grafieken", "StdDev_input": "StdDev", "Relative Strength Index_study": "Relative Strength Index", "-DI_input": "-DI", "short_input": "short", "Symbol": "Symbool", "Precision": "Precisie", "Please enter chart layout name": "Voer een grafiek lay-out naam in", "Offset": "Afstand", "Date": "Datum", "Format...": "Instellen...", "Toggle Auto Scale": "Schakel autoschaal", "Search": "Zoeken", "Zig Zag_study": "Zig Zag", "Actual": "Daadwerkelijk", "SUCCESS": "Succes!", "Detrended Price Oscillator_input": "Detrended Price Oscillator", "length_input": "length", "Price Line": "Prijs lijn", "Zoom Out": "Uitzoomen", "Stop Level. Ticks:": "Stop level. Ticks:", "Jul": "jul", "Above Bar": "Boven bar", "Visual Order": "Visuele volgorde", "Stop Background Color": "Stop achtergrondkleur", "Slow length_input": "Slow length", "Conversion Line Periods_input": "Conversion Line Periods", "Marker Color": "Markeer kleur", "TEMA_input": "TEMA", "Directional Movement_study": "Directional Movement", "Extend Left End": "Rek einde uit naar links", "Advance/Decline_study": "Advance/Decline", "Flag Mark": "Vlag markering", "Drawings": "Tekeningen", "Fast length_input": "Fast length", "Cancel": "Annuleren", "Redo": "Opnieuw", "Hide Drawings Toolbar": "Verberg tekeningen werkbalk", "Ultimate Oscillator_study": "Ultimate Oscillator", "Growing_input": "Growing", "Angle": "Hoek", "Plot_input": "Plot", "Color 8_input": "Color 8", "Indicators, Fundamentals, Economy and Add-ons": "Indicatoren, fundamenten, economie en add-ons", "Bollinger Bands Width_study": "Bollinger Bands Width", "roclen3_input": "roclen3", "Overbought_input": "Overbought", "DPO_input": "DPO", "Trend Line": "Trendlijn", "TimeZone": "Tijdszone", "Price Range": "Prijs gebied", "Extended Hours": "Verlengde uren", "Triangle": "Driehoek", "Period_input": "Period", "Watermark": "Watermerk", "Trigger_input": "Trigger", "SigLen_input": "SigLen", "Clone": "Kloon", "Color 2_input": "Color 2", "Show Prices": "Toon prijzen", "Graphics": "Afbeeldingen", "Arrow Mark Right": "Pijl teken rechts", "Background color 2": "Achtergrond kleur 2", "Background color 1": "Achtergrond kleur 1", "Circles": "Cirkels", "McGinley Dynamic_study": "McGinley Dynamic", "Williams Alligator_study": "Williams Alligator", "ROCLen1_input": "ROCLen1", "Border Color": "Randkleur", "M_interval_short": "M", "Change Symbol...": "Verander Symbool...", "Price Levels": "Prijs levels", "Source text color": "Bron tekstkleur", "Zero Line_input": "Zero Line", "Increment_input": "Increment", "Days_interval": "Days", "Net Volume_study": "Net Volume", "Enter a new chart layout name": "Voer een nieuwe grafiek lay-out naam in", "m_dates": "m", "Lock": "Op slot", "length14_input": "length14", "retrying": "opnieuw proberen", "High": "Hoog", "Polyline": "Polygoon", "Add to favorites": "Voeg toe aan favorieten", "Color 0_input": "Color 0", "maximum_input": "maximum", "Paris": "Parijs", "D_data_mode_delayed_letter": "D", "Sigma_input": "Sigma", "Coordinates": "Coördinaten", "fastLength_input": "fastLength", "Width": "Breedte", "Historical Volatility_study": "Historical Volatility", "Compare or Add Symbol...": "Vergelijk of voeg een symbool toe...", "Parallel Channel": "Parallel kanaal", "Divisor_input": "Divisor", "Dec": "dec", "Extend": "Rek uit", "length7_input": "length7", "Send to Back": "Stuur naar achteren", "Undo": "Ongedaan maken", "Window Size_input": "Window Size", "Reset Scale": "Herstel schaal", "Long Length_input": "Long Length", "%R_input": "%R", "Chart Properties": "Grafiek eigenschappen", "bars_margin": "bars", "Show Angle": "Toon hoek", "smalen3_input": "smalen3", "Length1_input": "Length1", "x_input": "x", "Save As...": "Opslaan als...", "Tehran": "Teheran", "Parabolic SAR_study": "Parabolic SAR", "Fisher Transform_study": "Fisher Transform", "UO_input": "UO", "Stats Text Color": "Statistieken tekst kleur", "Short RoC Length_input": "Short RoC Length", "Jaw_input": "Jaw", "Coppock Curve_study": "Coppock Curve", "Reset Chart": "Herstel grafiek", "Sep": "sep", "YES": "JA", "longlen_input": "longlen", "Moving Average Exponential_study": "Moving Average Exponential", "Source border color": "Bron randkleur", "Redo {0}": "Herhalen {0}", "s_dates": "s", "Area": "Gebied", "invalid symbol": "foutief symbool", "Triangle Pattern": "Driehoek patroon", "Balance of Power_study": "Balance of Power", "EOM_input": "EOM", "Least Squares Moving Average_study": "Least Squares Moving Average", "Indicators": "Indicatoren", "q_input": "q", "%D_input": "%D", "Text Alignment:": "Tekst uitlijning", "Offset_input": "Offset", "HV_input": "HV", "Start_input": "Start", "R_data_mode_realtime_letter": "R", "ROC_input": "ROC", "Berlin": "Berlijn", "Color 4_input": "Color 4", "closed": "gesloten", "Prices": "Prijzen", "Hollow Candles": "Lege candles", "ADX Smoothing_input": "ADX Smoothing", "Settings": "Instellingen", "We_day_of_week": "We", "%d minute": "%d minutes", "week_plural": "not used for this language", "Hide All Drawing Tools": "Verberg alle tekenhulpmiddelen", "MA_input": "MA", "Detrended Price Oscillator_study": "Detrended Price Oscillator", "Multiplier_input": "Multiplier", "Image URL": "Afbeelding URL", "SMI Ergodic Oscillator_input": "SMI Ergodic Oscillator", "Show Objects Tree": "Toon objecten boom", "Primary": "Primair", "Price:": "Prijs:", "Bring to Front": "Breng naar voren", "Brush": "Borstel", "Chaikin Oscillator_input": "Chaikin Oscillator", "lengthRSI_input": "lengthRSI", "C_data_mode_connecting_letter": "C", "SMALen4_input": "SMALen4", "Invalid Symbol": "Onjuist symbool", "Inside Pitchfork": "Interne hooivork", "yay Color 1_input": "yay Color 1", "Hide Marks On Bars": "Verberg markeringen op bars", "Note": "Notitie", "Show Countdown": "Toon aftellen", "WMA Length_input": "WMA Length", "Low": "Laag", "Borders": "Randen", "month_plural": "not used for this language", "loading...": "laden...", "Events": "Gebeurtenissen", "Columns": "Kolommen", "Jun": "jun", "On Balance Volume_study": "On Balance Volume", "Overlay the main chart": "Plaats over de primaire grafiek", "Source_input": "Source", "%K_input": "%K", "Success back color": "Succes achtergrondkleur", "Tokyo": "Tokio", "len_input": "len", "Measure (Shift + Click on the chart)": "Meten (Shift + klik op de grafiek)", "Override Min Tick": "Overschrijven minimale tick", "RSI Length_input": "RSI Length", "Unmerge Down": "Omlaag losmaken", "Base Line Periods_input": "Base Line Periods", "pre-market": "voorbeurs", "Top Labels": "Bovenste labels", "siglen_input": "siglen", "Elliott Minor Retracement": "Elliot kleine teruggang", "Pitchfan": "Pitch waaier", "No symbols matched your criteria": "Geen symbool voldeed aan je criteria", "Icon": "Icoon", "Open": "Openen", "Indicator_input": "Indicator", "Open Interval Dialog": "Open interval dialoog", "Athens": "Athene", "Timezone/Sessions Properties...": "Tijdszone/sessie instellingen...", "middle": "midden", "Eraser": "Gum", "Relative Vigor Index_study": "Relative Vigor Index", "Envelope_study": "Envelope", "Active Symbol": "Actief symbool", "Horizontal Line": "Horizontale lijn", "O_in_legend": "O", "Confirmation": "Bevestig", "Add Alert": "Voeg alarm toe", "Lines:": "Lijnen", "useTrueRange_input": "useTrueRange", "Profit Level. Ticks:": "Winstlevel. Ticks:", "Show Date/Time Range": "Toon datum/tijd bereik", "%d year": "%d years", "Tu_day_of_week": "Tu", "day": "not used for this language", "deviation_input": "deviation", "week": "not used for this language", "UTC": "UTC+0", "VWMA_study": "VWMA", "Success text color": "Succes tekstkleur", "%d hour": "%d hours", "Displacement_input": "Displacement", "ADR_B_input": "ADR_B", "Chaikin Money Flow_study": "Chaikin Money Flow", "Ease Of Movement_study": "Ease Of Movement", "Defaults": "Standaard", "Oversold_input": "Oversold", "Williams %R_study": "Williams %R", "depth_input": "depth", "RSI_input": "RSI", "Long period_input": "Long period", "Mo_day_of_week": "Mo", "center": "middelpunt", "Vertical Line": "Verticale Lijn", "Minutes_interval": "Minutes", "X_input": "X", "ROCLen4_input": "ROCLen4", "Aroon Down_input": "Aroon Down", "Add To Watchlist": "Voeg toe aan volglijst", "Extend Right": "Rek uit naar rechts", "left": "links", "Lock scale": "Vergrendel schaal", "smalen1_input": "smalen1", "Extend Right End": "Rek einde uit naar rechts", "Fans": "Waaiers", "Price_input": "Price", "Close_input": "Close", "Gann Fan": "Gann waaier", "Modified Schiff Pitchfork": "Aangepaste Schiff hooivork", "Relative Volatility Index_study": "Relative Volatility Index", "PVT_input": "PVT", "Circle Lines": "Cirkel lijnen", "Hull Moving Average_study": "Hull Moving Average", "Bring Forward": "Breng naar voren", "Zero_input": "Zero", "Company Comparison": "Vergelijk ondernemingen", "Stochastic Length_input": "Stochastic Length", "mult_input": "mult", "Signal smoothing_input": "Signal smoothing", "E_data_mode_end_of_day_letter": "E", "Trend-Based Fib Extension": "Trend gebaseerde Fib extensie", "Stochastic RSI_study": "Stochastic RSI", "Horizontal Ray": "Horizontale straal", "Script Editor...": "Script bewerker...", "Trades on Chart": "Trades op de grafiek", "Fullscreen mode": "Volledig scherm modus", "K_input": "K", "In Session": "Tijdens sessie", "ROCLen3_input": "ROCLen3", "Text Color": "Tekstkleur", "Source Code...": "Bron code...", "CHOP_input": "CHOP", "Screen (No Scale)": "Scherm (geen schaal)", "Signal_input": "Signal", "OK": "Oké", "like": "likes", "Show": "Toon", "Exchange": "Beurs", "Lower_input": "Lower", "Arc": "Boog", "Elder's Force Index_study": "Elder's Force Index", "Stochastic_study": "Stochastic", "Bollinger Bands %B_study": "Bollinger Bands %B", "Time Zone": "Tijdszone", "right": "rechts", "%d month": "%d months", "Donchian Channels_study": "Donchian Channels", "Upper Band_input": "Upper Band", "start_input": "start", "No indicators matched your criteria.": "Geen indicator voldeed aan je criteria", "Short length_input": "Short length", "Triple EMA_study": "Triple EMA", "Precise Labels_scale_menu": "Precise Labels", "Smoothed Moving Average_study": "Smoothed Moving Average", "Show Text": "Laat Tekst zien", "Channel": "Kanaal", "Lagging Span 2 Periods_input": "Lagging Span 2 Periods", "day_plural": "not used for this language", "bottom": "onderzijde", "Teeth_input": "Teeth", "Moscow": "Moskou", "Save New Chart Layout": "Sla nieuwe grafiek lay-out op", "Fib Channel": "Fib kanaal", "Closed_line_tool_position": "Gesloten", "exponential_input": "exponential", "OnBalanceVolume_input": "OnBalanceVolume", "roclen2_input": "roclen2", "Chande Momentum Oscillator_study": "Chande Momentum Oscillator", "Not applicable": "Niet van toepassingen", "or copy url:": "of kopieer url:", "Money Flow_study": "Money Flow", "Lips Length_input": "Lips Length", "Use Upper Deviation_input": "Use Upper Deviation", "L_in_legend": "L", "Inside": "Binnen", "minute_plural": "not used for this language", "shortlen_input": "shortlen", "Timezone/Sessions": "Tijdzone/Sessies", "ADX_input": "ADX", "Profit Background Color": "Winst achtergrondkleur", "Bar's Style": "Bar's stijl", "Exponential_input": "Exponential", "Use Lower Deviation_input": "Use Lower Deviation", "Stay In Drawing Mode": "Blijf in tekenmodus", "Comment": "Reactie", "Long_input": "Long", "Flat Top/Bottom": "Vlakke top/bodem", "loading data": "data laden", "Border color": "Randkleur", "Left Labels": "Linker labels", "Insert Indicator...": "Voeg indicator toe...", "P_input": "P", "Color 6_input": "Color 6", "Rectangle": "Vierkant", "Feb": "feb", "Transparency": "Transparantie", "Cyclic Lines": "Cyclische lijnen", "length28_input": "length28", "ABCD Pattern": "ABCD patroon", "Objects Tree": "Objecten boom", "NO": "NEE", "Add": "Toevoegen", "Price Label": "Prijs label", "Wick": "Lont", "Hull MA_input": "Hull MA", "Lock Scale": "Vergrendel schaal", "distance: {0}": "afstand: {0}", "Extended": "Uitgerekt", "log": "Logaritmisch", "Arcs": "Bogen", "Length2_input": "Length2", "Insert Drawing Tool": "Voeg tekenhulpmiddel toe", "Show Price Range": "Toon prijs bereik", "Correlation_input": "Correlation", "Scales Text": "Schaal tekst", "Session Breaks": "Sessie onderbrekingen", "Add {0} To Watchlist": "Voeg {0} toe aan volglijst", "Anchored Note": "Geankerde notitie", "roclen4_input": "roclen4", "Background Color": "Achtergrond Kleur", "D_data_mode_delayed_streaming_letter": "D", "VI -_input": "VI -", "slowLength_input": "slowLength", "delayed": "vertraagd", "Sa_day_of_week": "Sa", "Error": "Fout", "RVI_input": "RVI", "Awesome Oscillator_study": "Awesome Oscillator", "Original": "Origineel", "True Strength Indicator_study": "True Strength Indicator", "Objects Tree...": "Objecten boom...", "Compare": "Vergelijken", "Add Symbol": "Voeg symbool toe", "Projection": "Projectie", "Signal Length_input": "Signal Length", "Properties": "Eigenschappen", "Teeth Length_input": "Teeth Length", "Close": "Slot", "ParabolicSAR_input": "ParabolicSAR", "Log Scale_scale_menu": "Log Scale", "MACD_input": "MACD", "{0} P&L: {1}": "{0} winst & verlies: {1}", "Arrow Mark Left": "Pijl teken links", "Open_line_tool_position": "Opened", "Lagging Span_input": "Lagging Span", "Cross": "Kruis", "Mirrored": "Gespiegeld", "Price": "Prijs", "Label Background": "Label achtergrond", "ADX smoothing_input": "ADX smoothing", "Mar": "mrt", "Signal Labels": "Signaal labels", "May": "Mei", "Color 5_input": "Color 5", "Scale Price Chart Only": "Schaal alleen prijsgrafiek", "Default": "Standaard", "auto_scale": "auto", "Background": "Achtergrond", "VWMA_input": "VWMA", "Lower Deviation_input": "Lower Deviation", "ATR_input": "ATR", "Reverse": "Keer om", "Shapes_input": "Shapes", "Median": "Mediaan", "Fisher_input": "Fisher", "Remove": "Verwijder", "Elliott Wave Minor": "Elliot kleine golf", "Arrow Mark Up": "Pijl teken omhoog", "Crosses_input": "Crosses", "KST_input": "KST", "LowerLimit_input": "LowerLimit", "Know Sure Thing_study": "Know Sure Thing", "Copy Chart Layout": "Kopieer grafiek lay-out", "Compare...": "Vergelijken..", "Compare or Add Symbol": "Vergelijk of voeg een symbool toe", "Color": "Kleur", "Aroon Up_input": "Aroon Up", "Scales Lines": "Schaal lijnen", "Show Distance": "Toon afstand", "Risk/Reward Ratio: {0}": "Risico/opbrengst ratio: {0}", "Williams Fractal_study": "Williams Fractal", "Merge Up": "Omhoog samenvoegen", "Right Margin": "Rechter marge", "Ellipse": "Ovaal", "Warsaw": "Warschau"} \ No newline at end of file +{"ticks_slippage ... ticks": "ticks", "Months_interval": "Months", "Percent_input": "Percent", "Callout": "Aanroepen", "Clone": "Kloon", "London": "Londen", "roclen1_input": "roclen1", "Minor": "Beperkt", "smalen3_input": "smalen3", "Magnet Mode": "Magneet modus", "OSC_input": "OSC", "Volume_study": "Volume", "Lips_input": "Lips", "Base Line_input": "Base Line", "Step": "Stap", "Fib Time Zone": "Fib tijdszone", "SMALen2_input": "SMALen2", "Bollinger Bands_study": "Bollinger Bands", "Nov": "nov", "Show/Hide": "Laat zien/verbergen", "Upper_input": "Upper", "exponential_input": "exponential", "Move Up": "Verplaats omhoog", "Scales Properties...": "Schaal eigenschappen...", "Count_input": "Count", "Anchored Text": "Geankerde tekst", "OnBalanceVolume_input": "OnBalanceVolume", "Cross_chart_type": "Cross", "H_in_legend": "H", "Pitchfork": "Hooivork", "R_data_mode_replay_letter": "R", "Accumulation/Distribution_study": "Accumulatie/distributie", "Rate Of Change_study": "Rate Of Change", "in_dates": "in", "Color 7_input": "Color 7", "Chop Zone_study": "Chop Zone", "Scales Properties": "Schaal eigenschappen", "Trend-Based Fib Time": "Trend gebaseerde Fib tijd", "Remove All Indicators": "Verwijder alle indicatoren", "Oscillator_input": "Oscillator", "Last Modified": "Laatst aangepast", "yay Color 0_input": "yay Color 0", "CRSI_study": "CRSI", "Chande Kroll Stop_study": "Chande Kroll Stop", "Hours_interval": "Hours", "Scale Right": "Schaal rechts", "Money Flow_study": "Money Flow", "DEMA_input": "DEMA", "Toggle Percentage": "Schakel percentage", "Remove All Drawing Tools": "Verwijder alle tekenhulpmiddelen", "Linear Regression Curve_study": "Linear Regression Curve", "Symbol_input": "Symbol", "increment_input": "increment", "Compare or Add Symbol...": "Vergelijk of voeg een symbool toe...", "smoothD_input": "smoothD", "Falling_input": "Falling", "Risk/Reward short": "Risico/opbrengst short", "Entry price:": "Openingsprijs:", "Circles": "Cirkels", "Ichimoku Cloud_study": "Ichimoku Cloud", "Signal smoothing_input": "Signal smoothing", "Toggle Log Scale": "Schakel log schaal", "Grid": "Rooster", "Mass Index_study": "Mass Index", "Rename...": "Hernoem...", "Smoothing_input": "Smoothing", "Color 3_input": "Color 3", "Jaw Length_input": "Jaw Length", "Keltner Channels_study": "Keltner Channels", "Long Position": "Long positie", "Bands style_input": "Bands style", "Undo {0}": "Ongedaan maken", "With Markers": "Met markeringen", "Momentum_study": "Momentum", "MF_input": "MF", "Gann Box": "Gann box", "m_dates": "m", "Fast length_input": "Fast length", "Accumulative Swing Index_study": "Accumulative Swing Index", "Disjoint Angle": "Ontwrichte hoek", "W_interval_short": "W", "Log Scale": "Logaritmische schaal", "Equality Line_input": "Equality Line", "Short_input": "Short", "Fib Wedge": "Fib wig", "Line": "Lijn", "Down fractals_input": "Down fractals", "Fib Retracement": "Fib teruggang", "smalen2_input": "smalen2", "isCentered_input": "isCentered", "Border": "Rand", "Klinger Oscillator_study": "Klinger Oscillator", "Absolute": "Absoluut", "Style": "Stijl", "SMI Ergodic Indicator/Oscillator_study": "SMI Ergodic Indicator/Oscillator", "Aug": "aug", "No Overlapping Labels_scale_menu": "No Overlapping Labels", "Manage Drawings": "Beheer tekeningen", "No drawings yet": "Nog geen tekeningen", "Chande MO_input": "Chande MO", "jawLength_input": "jawLength", "TRIX_study": "TRIX", "Border color": "Randkleur", "RVGI_input": "RVGI", "signalLength_input": "signalLength", "d_dates": "d", "%s ago_time_range": "%s ago", "Source_compare": "Source", "Correlation Coefficient_study": "Correlation Coefficient", "Bottom Labels": "Onderste labels", "Text color": "Tekstkleur", "lipsLength_input": "lipsLength", "Short Length_input": "Short Length", "teethLength_input": "teethLength", "Visible Range_study": "Visible Range", "Text Alignment:": "Tekst uitlijning", "Subminuette": "Subminuten", "Lock All Drawing Tools": "Vergrendel alle tekenhulpmiddelen", "Long_input": "Long", "Default": "Standaard", "Head & Shoulders": "Hoofd & schouders", "Properties...": "Eigenschappen...", "MA Cross_study": "MA Cross", "Trend Angle": "Trend hoek", "Crosshair": "Vizier", "Signal line period_input": "Signal line period", "Timezone/Sessions Properties...": "Tijdszone/sessie instellingen...", "Line Break": "Line break", "Quantity": "Hoeveelheid", "Price Volume Trend_study": "Price Volume Trend", "Auto Scale": "Autoschalen", "Text": "Tekst", "F_data_mode_forbidden_letter": "F", "Show Bars Range": "Toon bar bereik", "Risk/Reward long": "Risico/opbrengst long", "Long RoC Length_input": "Long RoC Length", "Length3_input": "Length3", "+DI_input": "+DI", "Length_input": "Length", "Sig_input": "Sig", "MACD_study": "MACD", "Moving Average_study": "Moving Average", "Zoom In": "Inzoomen", "Failure back color": "Standaardkleur", "Extend Left": "Rek uit naar links", "Date Range": "Datum reikwijdte", "Show Price": "Toon prijs", "Level_input": "Level", "Commodity Channel Index_study": "Commodity Channel Index", "Elder's Force Index_input": "Elder's Force Index", "Gann Square": "Gann vierkant", "Format": "Formaat", "Color bars based on previous close": "Kleur bars gebaseerd op voorgaand slot", "Text:": "Tekst:", "Aroon_study": "Aroon", "Active Symbol": "Actief symbool", "Lead 1_input": "Lead 1", "Short Position": "Short positie", "SMALen1_input": "SMALen1", "P_input": "P", "SMALen3_input": "SMALen3", "Average Directional Index_study": "Average Directional Index", "Fr_day_of_week": "Fr", "Target Color:": "Doel kleur:", "Bars Pattern": "Bars patroon", "D_input": "D", "Font Size": "Lettertype grootte", "Change Interval": "Verander interval", "p_input": "p", "Chart layout name": "Grafiek lay-out naam", "Fib Circles": "Fib cirkels", "Dot": "Punt", "Target back color": "Doel achtergrondkleur", "orders_up to ... orders": "orders", "Dot_hotkey": "Dot", "Lead 2_input": "Lead 2", "Save image": "Sla afbeelding op", "Move Down": "Verplaats omlaag", "Vortex Indicator_study": "Vortex Indicator", "Apply": "Toepassen", "Plots Background_study": "Plots Background", "Price Channel_study": "Price Channel", "Hide": "Verbergen", "Target text color": "Doel tekstkleur", "Scale Left": "Schaal links", "Elliott Wave Subminuette": "Elliot subminuette golf", "Jan": "jan", "UO_input": "UO", "Source back color": "Bron achtergrondkleur", "Sao Paulo": "São Paulo", "R_data_mode_realtime_letter": "R", "Extend Lines": "Rek lijnen uit", "Conversion Line_input": "Conversion Line", "Su_day_of_week": "Su", "Exchange": "Beurs", "Arcs": "Bogen", "Regression Trend": "Regressie trend", "Fib Spiral": "Fib spiraal", "Double EMA_study": "Double EMA", "Price Oscillator_study": "Price Oscillator", "Stop Color:": "Stop kleur:", "Stay in Drawing Mode": "Blijf in teken modus", "Bottom Margin": "Onderste marge", "Average True Range_study": "Average True Range", "Max value_input": "Max value", "MA Length_input": "MA Length", "Right Labels": "Rechter labels", "in %s_time_range": "in %s", "UpperLimit_input": "UpperLimit", "sym_input": "sym", "DI Length_input": "DI Length", "SMI_input": "SMI", "Arrow": "Pijl", "Basis_input": "Basis", "Arrow Mark Down": "Pijl teken beneden", "lengthStoch_input": "lengthStoch", "Remove from favorites": "Verwijder van favorieten", "Copy": "Kopiëren", "Scale Series Only": "Schaal alleen data series", "Simple": "Eenvoudig", "Arnaud Legoux Moving Average_study": "Arnaud Legoux Moving Average", "Smoothed Moving Average_study": "Smoothed Moving Average", "Lower Band_input": "Lower Band", "VI +_input": "VI +", "Q_input": "Q", "Always Show Stats": "Toon statistieken altijd", "ROCLen2_input": "ROCLen2", "Simple ma(signal line)_input": "Simple ma(signal line)", "Change Interval...": "Verander interval...", "Color 6_input": "Color 6", "Right End": "Rechter einde", "UTC": "UTC+0", "Chaikin Oscillator_study": "Chaikin Oscillator", "Balloon": "Ballon", "Color Theme": "Kleuren Thema", "Awesome Oscillator_study": "Awesome Oscillator", "Bollinger Bands Width_input": "Bollinger Bands Width", "long_input": "long", "D_interval_short": "D", "Fisher_input": "Fisher", "Color 1_input": "Color 1", "Moving Average Weighted_study": "Moving Average Weighted", "Save": "Opslaan", "Wick": "Lont", "Short period_input": "Short period", "Load Chart Layout": "Laad grafiek lay-out", "Fib Speed Resistance Fan": "Fib snelheid weerstandswaaier", "Left End": "Linker einde", "Volume Oscillator_study": "Volume Oscillator", "S_data_mode_snapshot_letter": "S", "Elliott Wave Circle": "Elliott golfcyclus", "smalen4_input": "smalen4", "CCI_input": "CCI", "Upper Deviation_input": "Upper Deviation", "XABCD Pattern": "XABC patroon", "Schiff Pitchfork": "Schiff hooivork", "Flipped": "Omgedraaid", "Move_input": "Move", "NV_input": "NV", "Choppiness Index_study": "Choppiness Index", "Merge Down": "Omlaag samenvoegen", "Th_day_of_week": "Th", "Overlay the main chart": "Plaats over de primaire grafiek", "Delete": "Verwijderen", "Length MA_input": "Length MA", "percent_input": "percent", "Apr": "apr", "{0} copy": "{0} kopiëren", "Median_input": "Median", "Accumulation/Distribution_input": "Accumulation/Distribution", "C_in_legend": "C", "Weeks_interval": "Weeks", "smoothK_input": "smoothK", "Percentage_scale_menu": "Percentage", "MOM_input": "MOM", "h_interval_short": "h", "Rotated Rectangle": "Gedraaide rechthoek", "Modified Schiff": "Aangepaste Schiff", "Send Backward": "Stuur naar achteren", "Custom color...": "Aangepaste kleur...", "TRIX_input": "TRIX", "Elliott Major Retracement": "Elliott sterke teruggang", "Periods_input": "Periods", "Forecast": "Voorspelling", "Histogram_input": "Histogram", "The Extended Trading Hours feature is available only for intraday charts": "De 'Extended Trading Hours' optie is alleen beschikbaar voor intra-day grafieken", "StdDev_input": "StdDev", "EMA Cross_study": "EMA Cross", "Conversion Line Periods_input": "Conversion Line Periods", "Add Symbol_compare_or_add_symbol_dialog": "Add Symbol", "Williams %R_study": "Williams %R", "Symbol": "Symbool", "Precision": "Precisie", "Please enter chart layout name": "Voer een grafiek lay-out naam in", "VWAP_study": "VWAP", "Offset": "Afstand", "Date": "Datum", "Format...": "Instellen...", "Toggle Auto Scale": "Schakel autoschaal", "Search": "Zoeken", "Zig Zag_study": "Zig Zag", "Actual": "Daadwerkelijk", "SUCCESS": "Succes!", "Long period_input": "Long period", "length_input": "length", "roclen4_input": "roclen4", "Price Line": "Prijs lijn", "Zoom Out": "Uitzoomen", "Stop Level. Ticks:": "Stop level. Ticks:", "Jul": "jul", "Above Bar": "Boven bar", "Visual Order": "Visuele volgorde", "Stop Background Color": "Stop achtergrondkleur", "Slow length_input": "Slow length", "Sep": "sep", "TEMA_input": "TEMA", "Extend Left End": "Rek einde uit naar links", "Advance/Decline_study": "Advance/Decline", "Flag Mark": "Vlag markering", "Drawings": "Tekeningen", "Cancel": "Annuleren", "Redo": "Opnieuw", "Hide Drawings Toolbar": "Verberg tekeningen werkbalk", "Ultimate Oscillator_study": "Ultimate Oscillator", "Growing_input": "Growing", "Angle": "Hoek", "Plot_input": "Plot", "Color 8_input": "Color 8", "Indicators, Fundamentals, Economy and Add-ons": "Indicatoren, fundamenten, economie en add-ons", "h_dates": "h", "Bollinger Bands Width_study": "Bollinger Bands Width", "roclen3_input": "roclen3", "Overbought_input": "Overbought", "DPO_input": "DPO", "Trend Line": "Trendlijn", "TimeZone": "Tijdszone", "Tu_day_of_week": "Tu", "Extended Hours": "Verlengde uren", "Triangle": "Driehoek", "Period_input": "Period", "Watermark": "Watermerk", "Trigger_input": "Trigger", "SigLen_input": "SigLen", "Extend Right": "Rek uit naar rechts", "Color 2_input": "Color 2", "Show Prices": "Toon prijzen", "Arrow Mark Right": "Pijl teken rechts", "Background color 2": "Achtergrond kleur 2", "Background color 1": "Achtergrond kleur 1", "RSI Source_input": "RSI Source", "MA/EMA Cross_study": "MA/EMA Cross", "Williams Alligator_study": "Williams Alligator", "ROCLen1_input": "ROCLen1", "M_interval_short": "M", "Chaikin Oscillator_input": "Chaikin Oscillator", "Price Levels": "Prijs levels", "Source text color": "Bron tekstkleur", "Zero Line_input": "Zero Line", "Increment_input": "Increment", "Days_interval": "Days", "Net Volume_study": "Net Volume", "Enter a new chart layout name": "Voer een nieuwe grafiek lay-out naam in", "Historical Volatility_study": "Historical Volatility", "Lock": "Op slot", "length14_input": "length14", "High": "Hoog", "Polyline": "Polygoon", "Lock/Unlock": "Vergrendel/ontgrendel", "Color 0_input": "Color 0", "Add Symbol": "Voeg symbool toe", "maximum_input": "maximum", "Paris": "Parijs", "D_data_mode_delayed_letter": "D", "Sigma_input": "Sigma", "VWMA_study": "VWMA", "fastLength_input": "fastLength", "Width": "Breedte", "Use Lower Deviation_input": "Use Lower Deviation", "Parallel Channel": "Parallel kanaal", "Divisor_input": "Divisor", "Dec": "dec", "Extend": "Rek uit", "length7_input": "length7", "Send to Back": "Stuur naar achteren", "Undo": "Ongedaan maken", "Window Size_input": "Window Size", "Reset Scale": "Herstel schaal", "Long Length_input": "Long Length", "%R_input": "%R", "Chart Properties": "Grafiek eigenschappen", "bars_margin": "bars", "Show Angle": "Toon hoek", "Objects Tree...": "Objecten boom...", "Length1_input": "Length1", "x_input": "x", "Save As...": "Opslaan als...", "Tehran": "Teheran", "Parabolic SAR_study": "Parabolic SAR", "Price Label": "Prijs label", "Stats Text Color": "Statistieken tekst kleur", "Short RoC Length_input": "Short RoC Length", "Jaw_input": "Jaw", "Coppock Curve_study": "Coppock Curve", "Reset Chart": "Herstel grafiek", "Marker Color": "Markeer kleur", "Open": "Openen", "YES": "JA", "longlen_input": "longlen", "Moving Average Exponential_study": "Moving Average Exponential", "Source border color": "Bron randkleur", "Redo {0}": "Herhalen {0}", "s_dates": "s", "Area": "Gebied", "Triangle Pattern": "Driehoek patroon", "Balance of Power_study": "Balance of Power", "EOM_input": "EOM", "Indicators": "Indicatoren", "q_input": "q", "%D_input": "%D", "Border Color": "Randkleur", "Offset_input": "Offset", "HV_input": "HV", "Start_input": "Start", "Oct": "Okt", "ROC_input": "ROC", "Berlin": "Berlijn", "Color 4_input": "Color 4", "Prices": "Prijzen", "Hollow Candles": "Lege candles", "ADX Smoothing_input": "ADX Smoothing", "Settings": "Instellingen", "We_day_of_week": "We", "Show Countdown": "Toon aftellen", "MA_input": "MA", "Length2_input": "Length2", "Multiplier_input": "Multiplier", "Session Volume_study": "Session Volume", "Image URL": "Afbeelding URL", "SMI Ergodic Oscillator_input": "SMI Ergodic Oscillator", "Show Objects Tree": "Toon objecten boom", "Primary": "Primair", "Price:": "Prijs:", "Bring to Front": "Breng naar voren", "Brush": "Borstel", "C_data_mode_connecting_letter": "C", "SMALen4_input": "SMALen4", "Target border color": "Doel randkleur", "Invalid Symbol": "Onjuist symbool", "Inside Pitchfork": "Interne hooivork", "yay Color 1_input": "yay Color 1", "Hide Marks On Bars": "Verberg markeringen op bars", "Note": "Notitie", "Hide All Drawing Tools": "Verberg alle tekenhulpmiddelen", "WMA Length_input": "WMA Length", "Low": "Laag", "Borders": "Randen", "loading...": "laden...", "Closed_line_tool_position": "Gesloten", "Rectangle": "Vierkant", "Mar": "mrt", "Jun": "jun", "On Balance Volume_study": "On Balance Volume", "Source_input": "Source", "%K_input": "%K", "Scales Text": "Schaal tekst", "Tokyo": "Tokio", "Elliott Wave Minor": "Elliot kleine golf", "Measure (Shift + Click on the chart)": "Meten (Shift + klik op de grafiek)", "Override Min Tick": "Overschrijven minimale tick", "RSI Length_input": "RSI Length", "Long length_input": "Long length", "Unmerge Down": "Omlaag losmaken", "Base Line Periods_input": "Base Line Periods", "Relative Strength Index_study": "Relative Strength Index", "Modified Schiff Pitchfork": "Aangepaste Schiff hooivork", "Top Labels": "Bovenste labels", "siglen_input": "siglen", "Elliott Minor Retracement": "Elliot kleine teruggang", "Pitchfan": "Pitch waaier", "Slash_hotkey": "Slash", "No symbols matched your criteria": "Geen symbool voldeed aan je criteria", "Icon": "Icoon", "lengthRSI_input": "lengthRSI", "Teeth Length_input": "Teeth Length", "Indicator_input": "Indicator", "Open Interval Dialog": "Open interval dialoog", "Athens": "Athene", "Fib Speed Resistance Arcs": "Fib snelheid weerstandsbogen", "middle": "midden", "Eraser": "Gum", "Relative Vigor Index_study": "Relative Vigor Index", "Envelope_study": "Envelope", "show MA_input": "show MA", "Horizontal Line": "Horizontale lijn", "O_in_legend": "O", "Confirmation": "Bevestig", "Lines:": "Lijnen", "useTrueRange_input": "useTrueRange", "Profit Level. Ticks:": "Winstlevel. Ticks:", "Show Date/Time Range": "Toon datum/tijd bereik", "Minutes_interval": "Minutes", "-DI_input": "-DI", "Price Range": "Prijs gebied", "deviation_input": "deviation", "Value_input": "Value", "Time Interval": "Tijdinterval", "Success text color": "Succes tekstkleur", "Displacement_input": "Displacement", "Chaikin Money Flow_study": "Chaikin Money Flow", "Ease Of Movement_study": "Ease Of Movement", "Defaults": "Standaard", "Oversold_input": "Oversold", "short_input": "short", "depth_input": "depth", "RSI_input": "RSI", "Detrended Price Oscillator_input": "Detrended Price Oscillator", "Mo_day_of_week": "Mo", "center": "middelpunt", "Vertical Line": "Verticale Lijn", "ROC Length_input": "ROC Length", "X_input": "X", "ROCLen4_input": "ROCLen4", "Aroon Down_input": "Aroon Down", "Add To Watchlist": "Voeg toe aan volglijst", "Price": "Prijs", "left": "links", "Lock scale": "Vergrendel schaal", "Limit_input": "Limit", "smalen1_input": "smalen1", "KST_input": "KST", "Extend Right End": "Rek einde uit naar rechts", "Fans": "Waaiers", "Color based on previous close_input": "Color based on previous close", "Price_input": "Price", "Gann Fan": "Gann waaier", "McGinley Dynamic_study": "McGinley Dynamic", "Relative Volatility Index_study": "Relative Volatility Index", "PVT_input": "PVT", "Circle Lines": "Cirkel lijnen", "Hull Moving Average_study": "Hull Moving Average", "Bring Forward": "Breng naar voren", "Zero_input": "Zero", "Company Comparison": "Vergelijk ondernemingen", "Stochastic Length_input": "Stochastic Length", "mult_input": "mult", "Success back color": "Succes achtergrondkleur", "E_data_mode_end_of_day_letter": "E", "Trend-Based Fib Extension": "Trend gebaseerde Fib extensie", "Stochastic RSI_study": "Stochastic RSI", "Horizontal Ray": "Horizontale straal", "Script Editor...": "Script bewerker...", "Trades on Chart": "Trades op de grafiek", "Fullscreen mode": "Volledig scherm modus", "K_input": "K", "ROCLen3_input": "ROCLen3", "Text Color": "Tekstkleur", "Rename Chart Layout": "Hernoem grafiek lay-out", "Moving Average Channel_study": "Moving Average Channel", "Source Code...": "Bron code...", "CHOP_input": "CHOP", "Screen (No Scale)": "Scherm (geen schaal)", "Signal_input": "Signal", "OK": "Oké", "Show": "Toon", "Lower_input": "Lower", "Arc": "Boog", "Elder's Force Index_study": "Elder's Force Index", "Stochastic_study": "Stochastic", "Bollinger Bands %B_study": "Bollinger Bands %B", "Time Zone": "Tijdszone", "right": "rechts", "Donchian Channels_study": "Donchian Channels", "Upper Band_input": "Upper Band", "start_input": "start", "No indicators matched your criteria.": "Geen indicator voldeed aan je criteria", "Short length_input": "Short length", "Triple EMA_study": "Triple EMA", "Technical Analysis": "Technische Analyse", "Show Text": "Laat Tekst zien", "Channel": "Kanaal", "Lagging Span 2 Periods_input": "Lagging Span 2 Periods", "bottom": "onderzijde", "Teeth_input": "Teeth", "Moscow": "Moskou", "Save New Chart Layout": "Sla nieuwe grafiek lay-out op", "Fib Channel": "Fib kanaal", "Columns": "Kolommen", "Directional Movement_study": "Directional Movement", "roclen2_input": "roclen2", "Chande Momentum Oscillator_study": "Chande Momentum Oscillator", "Not applicable": "Niet van toepassingen", "Bollinger Bands %B_input": "Bollinger Bands %B", "Shapes_input": "Shapes", "Lips Length_input": "Lips Length", "Use Upper Deviation_input": "Use Upper Deviation", "L_in_legend": "L", "Inside": "Binnen", "shortlen_input": "shortlen", "Profit Background Color": "Winst achtergrondkleur", "Bar's Style": "Bar's stijl", "Exponential_input": "Exponential", "Stay In Drawing Mode": "Blijf in tekenmodus", "Comment": "Reactie", "Connors RSI_study": "Connors RSI", "Show Labels": "Toon labels", "Flat Top/Bottom": "Vlakke top/bodem", "Left Labels": "Linker labels", "Insert Indicator...": "Voeg indicator toe...", "ADR_B_input": "ADR_B", "Change Symbol...": "Verander Symbool...", "Ray": "Straal", "Feb": "feb", "Transparency": "Transparantie", "Cyclic Lines": "Cyclische lijnen", "length28_input": "length28", "ABCD Pattern": "ABCD patroon", "Objects Tree": "Objecten boom", "Add": "Toevoegen", "Least Squares Moving Average_study": "Least Squares Moving Average", "Chart Layout Name": "Grafiek lay-out naam", "Hull MA_input": "Hull MA", "Lock Scale": "Vergrendel schaal", "distance: {0}": "afstand: {0}", "Extended": "Uitgerekt", "log": "Logaritmisch", "NO": "NEE", "Top Margin": "Bovenste marge", "Up fractals_input": "Up fractals", "Insert Drawing Tool": "Voeg tekenhulpmiddel toe", "Show Price Range": "Toon prijs bereik", "Correlation_input": "Correlation", "Session Breaks": "Sessie onderbrekingen", "Add {0} To Watchlist": "Voeg {0} toe aan volglijst", "Anchored Note": "Geankerde notitie", "UpDown Length_input": "UpDown Length", "ASI_study": "ASI", "Background Color": "Achtergrond Kleur", "D_data_mode_delayed_streaming_letter": "D", "VI -_input": "VI -", "slowLength_input": "slowLength", "Failure text color": "Standaardkleur tekst", "Sa_day_of_week": "Sa", "Error": "Fout", "RVI_input": "RVI", "Centered_input": "Centered", "Original": "Origineel", "True Strength Indicator_study": "True Strength Indicator", "Simple ma(oscillator)_input": "Simple ma(oscillator)", "Compare": "Vergelijken", "Fisher Transform_study": "Fisher Transform", "Projection": "Projectie", "Length EMA_input": "Length EMA", "Signal Length_input": "Signal Length", "FAILURE": "Mislukt!", "MA with EMA Cross_study": "MA with EMA Cross", "Close": "Slot", "ParabolicSAR_input": "ParabolicSAR", "Log Scale_scale_menu": "Log Scale", "MACD_input": "MACD", "{0} P&L: {1}": "{0} winst & verlies: {1}", "Arrow Mark Left": "Pijl teken links", "Open_line_tool_position": "Opened", "Lagging Span_input": "Lagging Span", "Cross": "Kruis", "Mirrored": "Gespiegeld", "Label Background": "Label achtergrond", "ADX smoothing_input": "ADX smoothing", "Normal": "Normaal", "Signal Labels": "Signaal labels", "May": "Mei", "Detrended Price Oscillator_study": "Detrended Price Oscillator", "Color 5_input": "Color 5", "Risk/Reward Ratio: {0}": "Risico/opbrengst ratio: {0}", "Scale Price Chart Only": "Schaal alleen prijsgrafiek", "Unmerge Up": "Omhoog losmaken", "auto_scale": "auto", "Background": "Achtergrond", "VWMA_input": "VWMA", "Lower Deviation_input": "Lower Deviation", "ATR_input": "ATR", "Reverse": "Keer om", "Add to favorites": "Voeg toe aan favorieten", "Median": "Mediaan", "ADX_input": "ADX", "Remove": "Verwijder", "len_input": "len", "Arrow Mark Up": "Pijl teken omhoog", "Crosses_input": "Crosses", "Middle_input": "Middle", "LowerLimit_input": "LowerLimit", "Know Sure Thing_study": "Know Sure Thing", "Copy Chart Layout": "Kopieer grafiek lay-out", "Compare...": "Vergelijken..", "Compare or Add Symbol": "Vergelijk of voeg een symbool toe", "Color": "Kleur", "Aroon Up_input": "Aroon Up", "Scales Lines": "Schaal lijnen", "Show Distance": "Toon afstand", "Fixed Range_study": "Fixed Range", "Williams Fractal_study": "Williams Fractal", "Merge Up": "Omhoog samenvoegen", "Right Margin": "Rechter marge", "Ellipse": "Ovaal", "Warsaw": "Warschau"} \ No newline at end of file diff --git a/charting_library/static/localization/translations/no.json b/charting_library/static/localization/translations/no.json new file mode 100644 index 00000000..e264d2f4 --- /dev/null +++ b/charting_library/static/localization/translations/no.json @@ -0,0 +1 @@ +{"ticks_slippage ... ticks": "ticks", "Months_interval": "Months", "Percent_input": "Percent", "in_dates": "in", "roclen1_input": "roclen1", "OSC_input": "OSC", "Volume_study": "Volume", "Lips_input": "Lips", "Base Line_input": "Base Line", "SMALen2_input": "SMALen2", "Bollinger Bands_study": "Bollinger Bands", "Upper_input": "Upper", "Sig_input": "Sig", "Count_input": "Count", "OnBalanceVolume_input": "OnBalanceVolume", "Cross_chart_type": "Cross", "H_in_legend": "H", "R_data_mode_replay_letter": "R", "Accumulation/Distribution_study": "Accumulation/Distribution", "Rate Of Change_study": "Rate Of Change", "Color 7_input": "Color 7", "Chop Zone_study": "Chop Zone", "Oscillator_input": "Oscillator", "yay Color 0_input": "yay Color 0", "CRSI_study": "CRSI", "Chande Kroll Stop_study": "Chande Kroll Stop", "Hours_interval": "Hours", "Money Flow_study": "Money Flow", "DEMA_input": "DEMA", "Linear Regression Curve_study": "Linear Regression Curve", "Symbol_input": "Symbol", "increment_input": "increment", "smoothD_input": "smoothD", "RSI Source_input": "RSI Source", "Ichimoku Cloud_study": "Ichimoku Cloud", "Mass Index_study": "Mass Index", "Smoothing_input": "Smoothing", "Color 3_input": "Color 3", "Jaw Length_input": "Jaw Length", "Keltner Channels_study": "Keltner Channels", "Bands style_input": "Bands style", "Momentum_study": "Momentum", "MF_input": "MF", "Fast length_input": "Fast length", "W_interval_short": "W", "Equality Line_input": "Equality Line", "Short_input": "Short", "Down fractals_input": "Down fractals", "smalen2_input": "smalen2", "isCentered_input": "isCentered", "Klinger Oscillator_study": "Klinger Oscillator", "SMI Ergodic Indicator/Oscillator_study": "SMI Ergodic Indicator/Oscillator", "No Overlapping Labels_scale_menu": "No Overlapping Labels", "Chande MO_input": "Chande MO", "jawLength_input": "jawLength", "TRIX_study": "TRIX", "RVGI_input": "RVGI", "signalLength_input": "signalLength", "d_dates": "d", "Source_compare": "Source", "Correlation Coefficient_study": "Correlation Coefficient", "lipsLength_input": "lipsLength", "Short Length_input": "Short Length", "teethLength_input": "teethLength", "Visible Range_study": "Visible Range", "Connors RSI_study": "Connors RSI", "MA Cross_study": "MA Cross", "Signal line period_input": "Signal line period", "Price Volume Trend_study": "Price Volume Trend", "F_data_mode_forbidden_letter": "F", "Long RoC Length_input": "Long RoC Length", "Length3_input": "Length3", "+DI_input": "+DI", "MACD_study": "MACD", "%s ago_time_range": "%s ago", "Level_input": "Level", "Commodity Channel Index_study": "Commodity Channel Index", "Elder's Force Index_input": "Elder's Force Index", "Aroon_study": "Aroon", "h_dates": "h", "SMALen1_input": "SMALen1", "P_input": "P", "SMALen3_input": "SMALen3", "Average Directional Index_study": "Average Directional Index", "Fr_day_of_week": "Fr", "D_input": "D", "p_input": "p", "orders_up to ... orders": "orders", "Dot_hotkey": "Dot", "Lead 2_input": "Lead 2", "Vortex Indicator_study": "Vortex Indicator", "Plots Background_study": "Plots Background", "Price Channel_study": "Price Channel", "R_data_mode_realtime_letter": "R", "Conversion Line_input": "Conversion Line", "Su_day_of_week": "Su", "Up fractals_input": "Up fractals", "Double EMA_study": "Double EMA", "Price Oscillator_study": "Price Oscillator", "Th_day_of_week": "Th", "Average True Range_study": "Average True Range", "Max value_input": "Max value", "MA Length_input": "MA Length", "in %s_time_range": "in %s", "UpperLimit_input": "UpperLimit", "sym_input": "sym", "DI Length_input": "DI Length", "SMI_input": "SMI", "Basis_input": "Basis", "Moving Average_study": "Moving Average", "lengthStoch_input": "lengthStoch", "Smoothed Moving Average_study": "Smoothed Moving Average", "Lower Band_input": "Lower Band", "VI +_input": "VI +", "Lead 1_input": "Lead 1", "ROCLen2_input": "ROCLen2", "Simple ma(signal line)_input": "Simple ma(signal line)", "Color 6_input": "Color 6", "Value_input": "Value", "Chaikin Oscillator_study": "Chaikin Oscillator", "ASI_study": "ASI", "Awesome Oscillator_study": "Awesome Oscillator", "Bollinger Bands Width_input": "Bollinger Bands Width", "Signal Length_input": "Signal Length", "D_interval_short": "D", "Color 1_input": "Color 1", "Moving Average Weighted_study": "Moving Average Weighted", "Short period_input": "Short period", "Fisher_input": "Fisher", "Volume Oscillator_study": "Volume Oscillator", "S_data_mode_snapshot_letter": "S", "smalen4_input": "smalen4", "CCI_input": "CCI", "Upper Deviation_input": "Upper Deviation", "Accumulative Swing Index_study": "Accumulative Swing Index", "Move_input": "Move", "NV_input": "NV", "Choppiness Index_study": "Choppiness Index", "Length MA_input": "Length MA", "percent_input": "percent", "Length_input": "Length", "Accumulation/Distribution_input": "Accumulation/Distribution", "C_in_legend": "C", "Weeks_interval": "Weeks", "smoothK_input": "smoothK", "Percentage_scale_menu": "Percentage", "MOM_input": "MOM", "h_interval_short": "h", "TRIX_input": "TRIX", "Periods_input": "Periods", "Histogram_input": "Histogram", "StdDev_input": "StdDev", "EMA Cross_study": "EMA Cross", "Relative Strength Index_study": "Relative Strength Index", "-DI_input": "-DI", "short_input": "short", "RSI_input": "RSI", "Zig Zag_study": "Zig Zag", "Detrended Price Oscillator_input": "Detrended Price Oscillator", "length_input": "length", "roclen4_input": "roclen4", "Add Symbol_compare_or_add_symbol_dialog": "Add Symbol", "Slow length_input": "Slow length", "Conversion Line Periods_input": "Conversion Line Periods", "TEMA_input": "TEMA", "q_input": "q", "Advance/Decline_study": "Advance/Decline", "Ultimate Oscillator_study": "Ultimate Oscillator", "Growing_input": "Growing", "Plot_input": "Plot", "Color 8_input": "Color 8", "Bollinger Bands Width_study": "Bollinger Bands Width", "roclen3_input": "roclen3", "Overbought_input": "Overbought", "DPO_input": "DPO", "Relative Vigor Index_study": "Relative Vigor Index", "Tu_day_of_week": "Tu", "Period_input": "Period", "Trigger_input": "Trigger", "SigLen_input": "SigLen", "Color 2_input": "Color 2", "MA/EMA Cross_study": "MA/EMA Cross", "Williams Alligator_study": "Williams Alligator", "ROCLen1_input": "ROCLen1", "M_interval_short": "M", "Chaikin Oscillator_input": "Chaikin Oscillator", "Zero Line_input": "Zero Line", "Increment_input": "Increment", "Days_interval": "Days", "Net Volume_study": "Net Volume", "m_dates": "m", "length14_input": "length14", "Color 0_input": "Color 0", "maximum_input": "maximum", "D_data_mode_delayed_letter": "D", "Sigma_input": "Sigma", "fastLength_input": "fastLength", "Historical Volatility_study": "Historical Volatility", "Use Lower Deviation_input": "Use Lower Deviation", "Falling_input": "Falling", "Divisor_input": "Divisor", "length7_input": "length7", "Window Size_input": "Window Size", "Long Length_input": "Long Length", "%R_input": "%R", "bars_margin": "bars", "Simple ma(oscillator)_input": "Simple ma(oscillator)", "Length1_input": "Length1", "x_input": "x", "Parabolic SAR_study": "Parabolic SAR", "UO_input": "UO", "Short RoC Length_input": "Short RoC Length", "Jaw_input": "Jaw", "Coppock Curve_study": "Coppock Curve", "longlen_input": "longlen", "Moving Average Exponential_study": "Moving Average Exponential", "s_dates": "s", "Balance of Power_study": "Balance of Power", "EOM_input": "EOM", "%D_input": "%D", "Offset_input": "Offset", "HV_input": "HV", "Start_input": "Start", "ROC_input": "ROC", "Color 4_input": "Color 4", "ADX Smoothing_input": "ADX Smoothing", "We_day_of_week": "We", "MA_input": "MA", "Length2_input": "Length2", "Multiplier_input": "Multiplier", "Session Volume_study": "Session Volume", "SMI Ergodic Oscillator_input": "SMI Ergodic Oscillator", "C_data_mode_connecting_letter": "C", "SMALen4_input": "SMALen4", "yay Color 1_input": "yay Color 1", "CHOP_input": "CHOP", "Middle_input": "Middle", "WMA Length_input": "WMA Length", "Stochastic_study": "Stochastic", "Closed_line_tool_position": "Closed", "On Balance Volume_study": "On Balance Volume", "Source_input": "Source", "%K_input": "%K", "Log Scale_scale_menu": "Log Scale", "len_input": "len", "RSI Length_input": "RSI Length", "Long length_input": "Long length", "Base Line Periods_input": "Base Line Periods", "siglen_input": "siglen", "Slash_hotkey": "Slash", "lengthRSI_input": "lengthRSI", "Indicator_input": "Indicator", "Q_input": "Q", "Envelope_study": "Envelope", "show MA_input": "show MA", "O_in_legend": "O", "useTrueRange_input": "useTrueRange", "Minutes_interval": "Minutes", "deviation_input": "deviation", "long_input": "long", "VWMA_study": "VWMA", "Displacement_input": "Displacement", "Chaikin Money Flow_study": "Chaikin Money Flow", "Ease Of Movement_study": "Ease Of Movement", "Oversold_input": "Oversold", "Williams %R_study": "Williams %R", "depth_input": "depth", "VWAP_study": "VWAP", "Long period_input": "Long period", "Mo_day_of_week": "Mo", "ROC Length_input": "ROC Length", "X_input": "X", "ROCLen4_input": "ROCLen4", "Aroon Down_input": "Aroon Down", "Limit_input": "Limit", "smalen1_input": "smalen1", "Color based on previous close_input": "Color based on previous close", "Price_input": "Price", "Relative Volatility Index_study": "Relative Volatility Index", "PVT_input": "PVT", "Hull Moving Average_study": "Hull Moving Average", "Zero_input": "Zero", "Stochastic Length_input": "Stochastic Length", "mult_input": "mult", "Signal smoothing_input": "Signal smoothing", "E_data_mode_end_of_day_letter": "E", "Stochastic RSI_study": "Stochastic RSI", "K_input": "K", "ROCLen3_input": "ROCLen3", "Signal_input": "Signal", "Moving Average Channel_study": "Moving Average Channel", "Lower_input": "Lower", "Elder's Force Index_study": "Elder's Force Index", "Bollinger Bands %B_study": "Bollinger Bands %B", "Donchian Channels_study": "Donchian Channels", "Upper Band_input": "Upper Band", "start_input": "start", "Short length_input": "Short length", "Triple EMA_study": "Triple EMA", "Lagging Span 2 Periods_input": "Lagging Span 2 Periods", "Teeth_input": "Teeth", "exponential_input": "exponential", "Directional Movement_study": "Directional Movement", "roclen2_input": "roclen2", "Chande Momentum Oscillator_study": "Chande Momentum Oscillator", "Bollinger Bands %B_input": "Bollinger Bands %B", "Lips Length_input": "Lips Length", "Use Upper Deviation_input": "Use Upper Deviation", "L_in_legend": "L", "shortlen_input": "shortlen", "Exponential_input": "Exponential", "Long_input": "Long", "ADR_B_input": "ADR_B", "length28_input": "length28", "Arnaud Legoux Moving Average_study": "Arnaud Legoux Moving Average", "Least Squares Moving Average_study": "Least Squares Moving Average", "Hull MA_input": "Hull MA", "Median_input": "Median", "Correlation_input": "Correlation", "UpDown Length_input": "UpDown Length", "D_data_mode_delayed_streaming_letter": "D", "VI -_input": "VI -", "slowLength_input": "slowLength", "Sa_day_of_week": "Sa", "RVI_input": "RVI", "Centered_input": "Centered", "True Strength Indicator_study": "True Strength Indicator", "smalen3_input": "smalen3", "Fisher Transform_study": "Fisher Transform", "Length EMA_input": "Length EMA", "Teeth Length_input": "Teeth Length", "MA with EMA Cross_study": "MA with EMA Cross", "ParabolicSAR_input": "ParabolicSAR", "MACD_input": "MACD", "Open_line_tool_position": "Open", "Lagging Span_input": "Lagging Span", "ADX smoothing_input": "ADX smoothing", "Detrended Price Oscillator_study": "Detrended Price Oscillator", "Color 5_input": "Color 5", "McGinley Dynamic_study": "McGinley Dynamic", "auto_scale": "auto", "VWMA_input": "VWMA", "Lower Deviation_input": "Lower Deviation", "ATR_input": "ATR", "Shapes_input": "Shapes", "ADX_input": "ADX", "Crosses_input": "Crosses", "KST_input": "KST", "LowerLimit_input": "LowerLimit", "Know Sure Thing_study": "Know Sure Thing", "Aroon Up_input": "Aroon Up", "Fixed Range_study": "Fixed Range", "Williams Fractal_study": "Williams Fractal"} \ No newline at end of file diff --git a/charting_library/static/localization/translations/pl.json b/charting_library/static/localization/translations/pl.json index 0b8fc033..74baac0a 100644 --- a/charting_library/static/localization/translations/pl.json +++ b/charting_library/static/localization/translations/pl.json @@ -1 +1 @@ -{"ticks_slippage ... ticks": "Oznaczenia", "Months_interval": "Months", "Percent_input": "Procent", "Hide Events on Chart": "Ukryj zdarzenia na wykresie", "RSI Length_input": "Długość RSI", "in_dates": "in", "London": "Londyn", "roclen1_input": "roclen1", "Unmerge Down": "Cofnij Złączenie W Dół", "Percents": "Procenty", "Search Note": "Szukaj notatki", "Minor": "Mniejszy", "Do you really want to delete Chart Layout '{0}' ?": "Czy na pewno chcesz usunąć układ graficzny '{0}'?", "Quotes are delayed by {0} min and updated every 30 seconds": "Cytowanie jest opóźnione o {0} min i uaktualniane co 30 sekund.", "June": "Czerwiec", "Magnet Mode": "Magnes", "Grand Supercycle": "Wielki supercykl", "OSC_input": "OSC", "Hide alert label line": "Ukryj zakładkę z alertami", "Volume_study": "Wolumen", "Lips_input": "Lips", "Show real prices on price scale (instead of Heikin-Ashi price)": "Pokaż rzeczywiste ceny w skali ceny (zamiast ceny Heikin-Ashi)", "Base Line_input": "Linia Bazowa", "Step": "Krok", "Elliott Wave Circle": "Okrąg fal Eliotta", "Fib Time Zone": "Strefa czasowa Fibonacciego", "SMALen2_input": "SMALen2", "Bollinger Bands_study": "Pasma Bollingera", "Nov": "LIs", "Show/Hide": "Pokaż/Ukryj", "Color 0_input": "Kolor 0", "Cancel Order": "Anuluj zlecenie", "Sig_input": "Sig", "Move Up": "Przenieś w Górę", "Sigma_input": "Sigma", "This indicator cannot be applied to another indicator": "Ten wskaźnik nie może być zastosowany do innego wskaźnika", "Gann Square": "Kwadrat Ganna", "Count_input": "Liczyć", "Full Circles": "Pełne kręgi", "Industry": "Branża", "SMALen1_input": "SMALen1", "Cross_chart_type": "Krzyżyk", "Target Color:": "Docelowy Kolor", "a day": "dzień", "Normal": "Normalny", "Accumulation/Distribution_study": "Akumulacja / dystrybucja", "Rate Of Change_study": "Tempo zmian", "Risk/Reward short": "krótkie Ryzyko/Nagroda", "Color 7_input": "Kolor 7", "Change Average HL value": "Zmień średnią wartość HL", "Scales Properties": "Właściwości skali", "Trend-Based Fib Time": "Czas Fib w oparciu o trendy", "Remove All Indicators": "Usuń Wszystkie Wskaźniki", "Oscillator_input": "Oscylator", "Last Modified": "Ostatnio zmieniane", "yay Color 0_input": "yay Kolor 0", "Labels": "Etykiety", "Chande Kroll Stop_study": "Chande Kroll Stop", "Hours_interval": "Hours", "Scale Right": "Skaluj w prawo", "Money Flow_study": "Przepływ pieniędzy", "siglen_input": "siglen", "Indicator Labels": "Etykiety wskaźników", "Source Code": "Kod źródłowy", "__specialSymbolOpen__Tomorrow at__specialSymbolClose__ __dayTime__": "__specialSymbolOpen__jutro o__specialSymbolClose____dayTime__", "Toggle Percentage": "Zmień na Procenty", "Remove All Drawing Tools": "Usuń Narzędzia Rysowania", "Remove all line tools for ": "Usuń wszystkie narzędzia linii ", "Linear Regression Curve_study": "Krzywa regresji liniowej", "Symbol_input": "Symbol", "Upper Deviation_input": "Odchylenie górne", "Rename Chart Layout": "Usuń Układ Wykresu", "__specialSymbolOpen__Last__specialSymbolClose__ __dayName__ __specialSymbolOpen__at__specialSymbolClose__ __dayTime__": "__specialSymbolOpen__ostatnio__specialSymbolClose__ __dayName__ __specialSymbolOpen__o__specialSymbolClose__ __dayTime__", "Save Chart Layout": "Zachowaj Wygląd Wykresu", "Number Of Line": "Liczba linii", "Label": "Etykieta", "Post Market": "Wprowadzenie do obrotu", "Any Number": "Dowolna liczba", "smoothD_input": "smoothD", "Falling_input": "Spadajacy", "Percentage": "Procentowo", "Donchian Channels_study": "Kanały Donchian", "Entry price:": "Cena wejścia", "RSI Source_input": "Źródło RSI", "Head": "Głowa", "Toggle Auto Scale": "Przełącz na skalę automatyczną", " per contract": " na kontrakt", "Open Manage Drawings": "Otwarte Zarządzanie Rysunkami", "Ichimoku Cloud_study": "Chmura Ichimoku", "jawLength_input": "jawLength", "Toggle Log Scale": "Przełącz na skalę logarytmiczną", "Apply Elliot Wave Major": "Zastosuj falę Elliota - cykl podstawowy", "Grid": "Siatka", "Triangle Down": "Trójkąt w dół", "Mass Index_study": "Wskaźnik Masy", "Slippage": "Poślizg", "Smoothing_input": "Wygładzanie", "Color 3_input": "Kolor 3", "Jaw Length_input": "Długość Jaw", "Almaty": "Ałmaty", "Inside": "W środku", "Delete all drawing for this symbol": "Usuń cały rysunek dla tego symbolu", "Quotes are delayed by 10 min and updated every 30 seconds": "Cytowanie jest opóźnione o 10min i uaktualniane co 30 sekund.", "Keltner Channels_study": "Kanały Keltner'a", "Long Position": "Pozycja Długa", "Bands style_input": "Styl muzyki", "Undo {0}": "Cofnij {0}", "With Markers": "Ze znacznikami", "Momentum_study": "Momentum", "MF_input": "MF", "On Balance Volume_study": "Waga woluminu", "Switch to the next chart": "Przełącz się do następnego wykresu", "Change Hours To": "Zmień godziny na", "charts by TradingView": "wykresy TradingView", "Long length_input": "Długa Długość", "Flipped": "Odwrócone", "Disjoint Angle": "Kąt rozłączenia", "W_interval_short": "W", "Color 6_input": "Kolor 6", "Log Scale": "Skala logarytmiczna", "Line - High": "Linia - Maksimum", "Zurich": "Zurych", "Equality Line_input": "Linia Równości", "Open": "Otwarcie", "Fib Wedge": "Klin Fibonacciego", "Line": "Linia", "Session": "Sesja", "Down fractals_input": "Dolne fraktale", "Fib Retracement": "Korekta Fibonacci", "smalen2_input": "smalen2", "isCentered_input": "Jest wyśrodkowany", "Border": "Obramowanie", "Klinger Oscillator_study": "Oscylator Klingera", "Absolute": "Absolutny", "Style": "Styl", "Show Left Scale": "Pokaż lewą skalę", "SMI Ergodic Indicator/Oscillator_study": "Wskaźnik/Oscylator SMI Ergodic", "Aug": "Sie", "Last available bar": "Ostatnia dostępna świeczka", "Manage Drawings": "Zarządzaj Rysunkami", "Top": "Szczyt", "No drawings yet": "Brak rysunków", "Chande MO_input": "Chande MO", "Copy link": "Kopiuj link", "TRIX_study": "TRIX", "MACD_study": "MACD", "RVGI_input": "RVGI", "Realtime": "Czas rzeczywisty", "Last edited ": "Ostatnio edytowane ", "signalLength_input": "signalLength", "Middle_input": "Środek", "Reset Settings": "Resetuj ustawienia", "d_dates": "d", "Point & Figure": "Kropki i znaki", "August": "Sierpień", "Recalculate After Order filled": "Ponownie przelicz po zamówieniu", "Source_compare": "Źródło", "Down bars": "Słupki w dół", "Correlation Coefficient_study": "Współczynnik korelacji", "Delayed": "Opóźnienie", "Bottom Labels": "Dolne etykiety", "Text color": "Kolor tekstu", "Levels": "Poziomy", "Short Length_input": "Krótka długość", "teethLength_input": "teethLength", "Failure text color": "Błędny kolor tekstu", "instrument is not allowed": "Instrument nie jest dozwolony", "FAILURE": "PORAŻKA", "Open {{symbol}} Text Note": "Otwórz {{symbol}} Opis", "October": "Październik", "Lock All Drawing Tools": "Zablokuj Narzędzia Rysowania", "Target border color": "Docelowy kolor obramowania", "Right End": "Prawy Koniec", "Show Symbol Last Value": "Pokaż ostatnią wartość symbolu", "Head & Shoulders": "Glowa i ramiona", "Do you really want to delete Study Template '{0}' ?": "Czy na pewno chcesz usunąć szablon testowy '{0}'?", "Favorite Drawings Toolbar": "Pasek ulubionych narzędzi rysujących", "Properties...": "Właściwości...", "MA Cross_study": "Przekroczenie MA", "Trend Angle": "Kąt trendu", "Snapshot": "Miniatura", "Crosshair": "Krzyżyk", "Signal line period_input": "Okres linii sygnału", "Timezone/Sessions Properties...": "Właściwości Strefy Czasowej/Sesji", "Line Break": "Przełamanie linii", "Quantity": "Ilość", "Price Volume Trend_study": "Trend wzrostu cen", "Triangle Up": "Trójkąt w górę", "Scales": "Skale", "Delete chart layout": "Usuń układ wykresu", "Text": "Tekst", "F_data_mode_forbidden_letter": "F", "Risk/Reward long": "długie Ryzyko/Nagroda", "Apr": "Kwi", "Long RoC Length_input": "Długa Długość RoC", "Length3_input": "Długość3", "Upper_input": "Górna", "Madrid": "Madryt", "Use one color": "Użyj jednego koloru", "Chart Properties": "Właściwości Wykresu", "Exit Full Screen (ESC)": "Opuść tryb pełnoekranowy (ESC)", "Show Bars Range": "Pokaż Zasięg Słupków", "Show Economic Events on Chart": "Pokaż Wydarzenia Ekonomiczne na Wykresie", "%s ago_time_range": "%s ago", "Zoom In": "Przybliż", "Failure back color": "Błędny kolor tła", "Below Bar": "Poniżej świeczki", "Coordinates": "Koordynaty", "Time Scale": "Skala Czasu", "

    Only D, W, M intervals are supported for this symbol/exchange. You will be automatically switched to a D interval. Intraday intervals are not available because of exchange policies.

    ": "

    Tylko D, W, M interwały są wspierane dla tego symbolu/gieldy. Będziesz automatycznie przełączony na dzienny interwał. Dane intraday nie są dostępne z powody polityki giełdy.

    ", "Extend Left": "Rozciągnij w lewo", "Date Range": "Zakres Dat", "Min Move": "Minimalnie Przenieś", "Price format is invalid.": "Format ceny jest niepoprawny", "Show Price": "Pokaż Cenę", "Level_input": "Poziom", "Interval is not applicable": "Interwał nie ma zastosowania", "Commodity Channel Index_study": "Indeks kanału towarowego", "Elder's Force Index_input": "Starszy Force Index", "Scales Properties...": "Właściwości skali", "Currency": "Waluta", "Color bars based on previous close": "Kolor słupków na podstawie poprzedniego zamknięcia", "Change band background": "Zmień tło", "Marketplace Add-ons": "Dodatki dla Rynku", "Adjust Scale": "Dostosuj skalę", "Anchored Text": "Zakotwiczony Tekst", "Edit {0} Alert...": "Edytuj {0} Alert...", "Text:": "Tekst:", "Aroon_study": "Aroon", "show MA_input": "Pokaż MA", "Ashkhabad": "Aszchabad", "h_dates": "h", "Short Position": "Pozycja Krótka", "HLC Bars": "Słupki HLC", "Change Interval...": "Zmień interwał", "Apply Default": "Zastosuj domyślne", "SMALen3_input": "SMALen3", "Average Directional Index_study": "Średni indeks kierunkowy", "Fr_day_of_week": "Fr", "Invite-only script. Contact the author for more information.": "Skrypt Prywatny. Skontaktuj się z autorem aby uzyskać więcej informacji", "Curve": "Krzywa", "a year": "rok", "H_in_legend": "Najwyzszy punkt", "Bars Pattern": "Formacja Słupków", "D_input": "D", "Right Labels": "Prawe etykiety", "Change Interval": "Zmień interwał", "p_input": "p", "Chart layout name": "Nazwa układu wykresu", "Fib Circles": "Kręgi Fibonacciego", "Apply Manual Decision Point": "Zastosuj wybrany punkt decyzyjny", "Dot": "Kropka", "Target back color": "Docelowy kolor tła", "All": "Wszystkie", "Show Positions": "Pokaż Pozycje", "orders_up to ... orders": "zlecenia", "Lead 2_input": "Prowadzący 2", "Save image": "Zapisz obrazek", "Fundamentals": "Dane makroekonomiczne", "Unlock": "Odblokuj", "Up Wave 2 or B": "Maksymalny rzut 2 lub B", "Box Size": "Rozmiar pudełka", "Navigation Buttons": "Klawisze Nawigacyjne", "Miniscule": "Malutkie", "Apply": "Zastosuj", "Show Countdown": "Pokaż czas do końca", "Precise Labels": "Dokładne etykiety", "Sine Line": "Linia Sine", "Fill": "Wypełniać", "{0} financials by TradingView": "{0} dane finansowe TradingView", "Hide": "Ukryj", "Bottom": "Dno", "Target text color": "Docelowy kolor teksty", "Scale Left": "Skaluj w lewo", "Elliott Wave Subminuette": "Fala Elliotta - mikrocykl", "Down Wave C": "Fala spadkowa C", "Jan": "Sty", "Variance": "wariancja", "Source back color": "Źródło koloru tła", "Text Alignment:": "Wyrównanie Tekstu:", "Oct": "Paź", "Apply Elliot Wave Minor": "Zastosuj falę Elliota - cykl mniejszy", "Inputs": "Wejścia", "Conversion Line_input": "Linia konwersji", "March": "Marzec", "Su_day_of_week": "Su", "Up fractals_input": "Górne fraktale", "Regression Trend": "Trend regresji", "Auto Scale": "Autoskalowanie", "Symbol Description": "Opis Symbolu", "Double EMA_study": "Podwójne EMA", "Price Oscillator_study": "Oscylator cenowy", "Sync drawings to all charts": "Synchronizuj rysunki na wszystkich wykresach", "Chop Zone_study": "Strefa Chop", "Stop Color:": "Ogranicz kolor", "Stay in Drawing Mode": "Pozostań w Trybie Rysowania", "Bottom Margin": "Margines Dolny", "Save Chart Layout saves not just some particular chart, it saves all charts for all symbols and intervals which you are modifying while working with this Layout": "Save Chart Layout zapisuje nie tylko konkretny wykres, zapisuje wszystkie wykresy dla wszystkich symboli i interwałów, które modyfikujesz podczas pracy z tym układem", "Average True Range_study": "Średnia prawdziwego zakresu", "Max value_input": "Maksymalna wartość", "MA Length_input": "Długość MA", "Invite-Only Scripts": "Skrypty Prywatne", "Time Interval": "Interwał czasowy", "UpperLimit_input": "Górna granica", "sym_input": "sym", "DI Length_input": "Długość DI", "Script Editor...": "Edytor skryptów", "Extend Lines": "Rozszerz Linie", "SMI_input": "SMI", "Change Days To": "Zmień dni na", "Square": "Kwadrat", "Basis_input": "Podstawa", "Moving Average_study": "Średnia krocząca", "lengthStoch_input": "długośćStoch", "Objects Tree": "Drzewo Obiektów", "Remove from favorites": "Usuń z ulubionych", "Copy": "Kopiuj", "Scale Series Only": "Skaluj Tylko Serie", "Simple": "Prosty", "Report a data issue": "Zgłoś problem z danymi", "Arnaud Legoux Moving Average_study": "Średnia krocząca Arnaud Legoux", "Technical Analysis": "Analiza Techniczna", "Lower Band_input": "Dolna część", "Verify Price for Limit Orders": "Zweryfikuj cenę za zlecenie limitowe", "VI +_input": "VI +", "Line Width": "Szerokość Linii", "Lead 1_input": "Prowadzący 1", "Always Show Stats": "Zawsze pokazuj statystyki", "Down Wave 4": "Fala spadkowa 4", "Down Wave 5": "Fala spadkowa 5", "Simple ma(signal line)_input": "Simple ma (linia sygnału)", "Ray": "Promień", "Public Library": "Biblioteka Publiczna", " Do you really want to delete Drawing Template '{0}' ?": " Czy naprawdę chcesz usunąć szablon rysowania '{0}' ?", "Down Wave 3": "Fala spadkowa 3", "Left Shoulder": "Lewe ramię", "Close message": "Zamknij wiadomość", "long_input": "długi", "Show Drawings Toolbar": "Pokaż Pasek Rysowania", "Chaikin Oscillator_study": "Oscylator Chaikin", "Price Source": "Źródło cen", "Market Open": "Rynek Otwarty", "Color Theme": "Kolory", "Projection up bars": "Projekcja słupków w górę", "Centered_input": "Wyśrodkowany", "Bollinger Bands Width_input": "Szerokość pasma Bollingera", "Apply Indicator on {0} ...": "Wstaw wskaźnik na {0}", "Fib Speed Resistance Arcs": "Łuki Fibonacciego - prędkość i opór", "Error occured while publishing": "Wystąpił błąd podczas publikacji", "Fisher_input": "Fisher", "Color 1_input": "Kolor 1", "Moving Average Weighted_study": "Ważona Średnia Krocząca", "Save": "Zapisz", "Type": "Typ", "Chart Layout Name": "Nazwa układu wykresu", "Short period_input": "Krótki okres", "Load Chart Layout": "Załaduj Wygląd Wykresu", "Show Values": "Pokaż Wartości", "Fib Speed Resistance Fan": "Wachlarz Fibonacciego - prędkość i opór", "This chart layout has more than 1000 drawings, which is a lot! This may negatively affect performance, storage and publishing. We recommend to remove some drawings to avoid potential performance issues.": "Ten układ wykresów zawiera ponad 1000 rysunków, a jest to dużo! Może to negatywnie wpłynąć na wydajność, przechowywanie i publikowanie. Zalecamy usunąć niektóre rysunki, aby uniknąć potencjalnych problemów z wydajnością.", "Left End": "Lewy Koniec", "%d year": "%d years", "Always Visible": "Zawsze widoczne", "S_data_mode_snapshot_letter": "S", "post-market": "post-marked", "Flag": "Flaga", "Change Minutes To": "Zmień minuty do", "Earnings breaks": "Przerwa w zarobkach", "Do not ask again": "Nie pytaj ponownie", "Extend Right End": "Wydłuż prawy koniec", "Tue": "Wto", "smalen4_input": "smalen4", "CCI_input": "CCI", "Unmerge Up": "Cofnij Złączenie W Górę", "increment_input": "przyrost", "XABCD Pattern": "Wzorzec XABCD", "powered by {0}": "Przygotowane przez {0}", "DEMA_input": "DEMA", "NV_input": "NV", "Choppiness Index_study": "Indeks Choppiness", "Study Template '{0}' already exists. Do you really want to replace it?": "Szablon badania '{0}' już istnieje. Naprawdę chcesz go zastąpić?", "Merge Down": "Połącz w Dół", "Studies": "Analizy", "eod delayed": "Eod opóźniony", "Screen (No Scale)": "Screen (Bez Skali )", "Delete": "Usuń", "Traditional": "Tradycyjny", "in %s_time_range": "in %s", "percent_input": "procent", "September": "Wrzesień", "Length_input": "Długość", "Avg HL in minticks": "Avg HL w minticks", "Accumulation/Distribution_input": "Akumulacja / dystrybucja", "Sync": "Synchronizuj", "C_in_legend": "zamkniecie", "Weeks_interval": "Weeks", "smoothK_input": "smoothK", "Percentage_scale_menu": "Procentowo", "Change Extended Hours": "Zmień godziny rozszerzone", "MOM_input": "MOM", "h_interval_short": "h", "Rotated Rectangle": "Obracający się Prostokąt", "Modified Schiff": "Zmodyfikowany Schiff", "Adelaide": "Adelajda", "Send Backward": "Cofnij wysyłanie", "Mexico City": "Meksyk", "TRIX_input": "TRIX", "Show Price Range": "Pokaż Zakres Cen", "Elliott Major Retracement": "Nadrzędna korekta Elliota", "Notification": "Powiadomienie", "Fri": "Pią", "just now": "właśnie teraz", "Forecast": "Prognoza", "Fraction part is invalid.": "Część frakcji jest nieprawidłowa.", "Connecting": "Podłączanie", "Ghost Feed": "Kanał Ghost", "Histogram_input": "Histogram", "The Extended Trading Hours feature is available only for intraday charts": "Funkcja Extended Trading Hours jest dostępna tylko dla wykresów", "open": "otwarte", "StdDev_input": "StdDev", "Change Minutes From": "Zmień minuty od", "Relative Strength Index_study": "Indeks siły względnej", "Diamond": "Diament", "My Scripts": "Moje Skrypty", "Monday": "Poniedziałek", "-DI_input": "-DI", "short_input": "krótki", "top": "góra", "a month": "miesiąc", "Precision": "Precyzja", "depth_input": "głębokość", "Please enter chart layout name": "Wstaw nazwę układu wykresu.", "Arrow Down": "Strzałka w dół", "Date": "Data", "Format...": "Format", "__dayName__ __specialSymbolOpen__at__specialSymbolClose__ __dayTime__": "__dayName____specialSymbolOpen__ o __specialSymbolClose____dayTime__", "Toggle Maximize Pane": "Maksymalizuj Okienko", "Periods_input": "Okresy", "Zig Zag_study": "Zig Zag", "Actual": "Aktualne", "SUCCESS": "SUKCES", "Detrended Price Oscillator_input": "Detektor oscylatora cenowego", "{0} copy": "{0} kopia", "length_input": "długość", "Close Position": "Zamknij pozycję", "Price Line": "Linia Ceny", "Area With Breaks": "Obszar z przerwami", "Zoom Out": "Oddal", "Stop Level. Ticks:": "Ogranicz poziom. Oznaczenie:", "Jul": "Lip", "Economy & Symbols": "Ekonomia i symbole", "Allow up to": "Pozwala na", "Visual Order": "Zamowienie wizualne", "Warning": "Ostrzeżenie", "__specialSymbolOpen__Yesterday at__specialSymbolClose__ __dayTime__": "__specialSymbolOpen__jutro o__specialSymbolClose____dayTime__", "Stop Background Color": "Ogranicz kolor tła", "Slow length_input": "Powolna długość", "Conversion Line Periods_input": "Okresy linii konwersji", "Sector": "Sektor", "powered by TradingView": "Powered by TradingView.com", "Stochastic_study": "Stochastic", "Apply WPT Down Wave": "Zastosuj zasięg cenowy dla fali spadkowej", "Marker Color": "Kolor markera", "TEMA_input": "TEMA", "Apply WPT Up Wave": "Zastosuj zasięg cenowy dla fali wzrostowej", "Min Move 2": "Minimalnie Przenieś 2", "Directional Movement_study": "Ruch kierunkowy", "Extend Left End": "Wydłuż lewą stronę", "Projection down bars": "Projekcja słupków w dół", "Advance/Decline_study": "Postęp/Spadek", "New York": "Nowy Jork", "Flag Mark": "Oznaczenie flagą", "Drawings": "Rysunki", "Fast length_input": "Szybka długość", "Cancel": "Anuluj", "Bar #": "Swieca", "Median_input": "Mediana", "Redo": "Ponów", "Hide Drawings Toolbar": "Ukryj pasek z narzędziami do rysowania", "Ultimate Oscillator_study": "Ostateczny oscylator", "This chart layout has a lot of objects and can't be published! Please report to {0} for further details.": "Ten układ wykresu ma wiele obiektów i nie może być opublikowany! Aby uzyskać więcej szczegóły, skontaktuj się z {0}.", "Vert Grid Lines": "Linie Siatki Vert", "Growing_input": "Rosnąca", "Angle": "Kąt", "Show Only Future Events": "Pokaż Tylko Przyszłe Wydarzenia", "Plot_input": "Wykres", "Color 8_input": "Kolor 8", "Indicators, Fundamentals, Economy and Add-ons": "Wskaźniki, Fundamenty, Ekonomia i Dodatki", "Search": "Szukaj", "Bollinger Bands Width_study": "Szerokość pasma Bollingera", "roclen3_input": "roclen3", "Overbought_input": "Przesycony", "DPO_input": "DPO", "Levels Line": "Linia poziomów", "No study templates saved": "Nie zapisano wzorów szablonów", "Trend Line": "Linia Trendu", "Relative Vigor Index_study": "Względny indeks wigoru", "Your chart is being saved, please wait a moment before you leave this page.": "Twój wykres został utworzony, poczekaj teraz chwilę zanim opuścisz stronę.", "Circle": "Okrąg", "Price Range": "Zakres Cen", "Extended Hours": "Rozszerzone godziny", "Triangle": "Trójkąt", "Line With Breaks": "Linia z Przerwami", "Period_input": "Okres", "Watermark": "Znak Wodny", "Trigger_input": "Trigger", "SigLen_input": "SigLen", "Clone": "Klonuj", "Color 2_input": "Kolor 2", "Show Prices": "Pokaż Ceny", "Contracts": "Kontrakty", "{0} chart by TradingView": "{0} wykres wykonany przez TradingView", "Timezone/Sessions": "Strefa Czasu/Sesje", "Save Indicator Template As...": "Zapisz Szablon Wskaźnika Jako...", "Arrow Mark Right": "Strzałka w prawo", "Background color 2": "Kolor tła 2", "Background color 1": "Kolor tła 1", "Circles": "Koła", "McGinley Dynamic_study": "McGinley Dynamic", "Visible on Mouse Over": "Widoczne na myszce", "Thu": "Czw", "Vortex Indicator_study": "Wskaźnik Vortex", "Williams Alligator_study": "Williams Alligator", "delayed": "opóźniony", "ROCLen1_input": "ROCLen1", "M_interval_short": "M", "Change Symbol...": "Zmień Symbol...", "Price Levels": "Poziomy Ceny", "Show Splits": "Pokaż podziały", "Zero Line_input": "Linia Zerowa", "__specialSymbolOpen__Today at__specialSymbolClose__ __dayTime__": "__specialSymbolOpen__dzisiaj o__specialSymbolClose____dayTime__", "Increment_input": "Przyrost", "Days_interval": "Days", "Show Right Scale": "Pokaż Prawą Skalę", "Show Alert Labels": "Pokaż etykiety alertu", "Net Volume_study": "Wolumen netto", "Lock": "Zablokuj", "length14_input": "długość14", "Sa_day_of_week": "Sa", "High": "Maksimum", "Date and Price Range": "Data i przedział cenowy", "Polyline": "Polilinia", "Reconnect": "Połącz ponownie", "Add to favorites": "Dodaj do ulubionych", "Label Down": "Etykieta w dół", "Saturday": "Sobota", "Symbol Last Value": "Ostatnia Wartość Symbolu", "Above Bar": "Ponad belką", "roclen4_input": "roclen4", "maximum_input": "maksymalny", "Wed": "Śro", "Paris": "Paryż", "D_data_mode_delayed_letter": "D", "Symbol Info": "Informacje o Symbolu", "Pyramiding": "Pyramid", "fastLength_input": "fastLength", "Width": "Szerokość", "Loading": "Ładowanie", "Historical Volatility_study": "Zmienność historyczna", "Template": "Szablon", "Compare or Add Symbol...": "Porównaj lub Dodaj Symbol...", "Parallel Channel": "Kanał równoległy", "Time Cycles": "Cykle Czasu", "Second fraction part is invalid.": "Druga część frakcji jest nieważna.", "Divisor_input": "Dzielnik", "Down Wave 1 or A": "Fala spadkowa 1 lub A", "ROC_input": "ROC", "Dec": "Gru", "Extend": "Rozszerz", "length7_input": "długość7", "Bring Forward": "Przenieś poziom wyżej", "Toggle Maximize Chart": "Maksymalizuj wykres", "Undo": "Cofnij", "Window Size_input": "Rozmiar okna", "Mon": "Pon", "Reset Scale": "Resetuj Skalę", "Long Length_input": "Długa Długość", "True Strength Indicator_study": "Prawdziwy wskaźnik siły", "%R_input": "%R", "There are no saved charts": "Brak zapisanych wykresów", "Instrument is not allowed": "Instrumenty nie są dostępne.", "bars_margin": "słupki", "Show Indicator Last Value": "Pokaż ostatnią wartość wskaźnika", "Initial capital": "Kapitał początkowy", "Show Angle": "Pokaż kąt", "Indicator Last Value": "Ostatnia wartość wskaźnika", "More features on tradingview.com": "Więcej funkcji na tradingview.com", "smalen3_input": "smalen3", "Length1_input": "Długość1", "Always Invisible": "Zawsze niewidoczne", "Days": "Dni", "x_input": "x", "Save As...": "Zapisz Jako...", "Lock/Unlock": "Zablokuj/Odblokuj", "Elliott Double Combo Wave (WXY)": "Kombinacja podwójna fal Elliotta (WXY)", "Parabolic SAR_study": "Paraboliczny SAR", "Fisher Transform_study": "Transformacja Fishera", "Show Hidden Tools": "Pokaż ukryte narzędzia", "Hollow Candles": "Puste Świece", "Any Symbol": "Dowolny symbol", "UO_input": "UO", "Stats Text Color": "Statystyki Kolor tekstu", "Minutes": "Minuty", "Short RoC Length_input": "Krótka długość RoC", "Show Orders": "Pokaż zlecenia", "Countdown": "Odliczanie", "Jaw_input": "Jaw", "Right": "Prawy", "Help": "Pomoc", "Coppock Curve_study": "Krzywa Coppocka", "Reversal Amount": "Kwota odwrócenia.", "Reset Chart": "Resetuj Wykres", "Sep": "Wrz", "Sunday": "Niedziela", "Themes": "Motywy", "Left Axis": "Oś lewa", "YES": "TAK", "longlen_input": "longlen", "Moving Average Exponential_study": "Wykładnicza średnia krocząca", "Source border color": "Źródło koloru obramowania", "Redo {0}": "Ponów {0}", "Cypher Pattern": "Formacja Cypher", "s_dates": "s", "Move Down": "Przenieś w Dół", "Area": "Obszar", "invalid symbol": "nieprawidłowy symbol", "Triangle Pattern": "Wzorzec Trójkąta", "Gann Fan": "Wachlarz Ganna", "Balance of Power_study": "Balans mocy", "EOM_input": "EOM", "Font Size": "Rozmiar tekstu", "Drawings Toolbar": "Pasek z narzędziami do rysowania", "Apply Manual Risk/Reward": "Ręcznie dostosuj Ryzyko/Zysk", "Market Closed": "Rynek zamknięty", "Indicators": "Wskaźniki", "close": "Close", "q_input": "q", "You are notified": "Zostaniesz powiadomiony", "%D_input": "%D", "Border Color": "Kolor obramowania", "Offset_input": "Wynagrodzenie", "Risk": "Ryzyko", "Price Scale": "Skala cen", "HV_input": "HV", "Seconds": "Sekund", "Start_input": "Start", "R_data_mode_realtime_letter": "R", "Hours": "Godziny", "Send to Back": "Cofnij", "Color 4_input": "Kolor 4", "Angles": "Kąty", "Prices": "Ceny", "Extended Hours (Intraday Only)": "Godziny otwarte (tylko w ciągu dnia)", "July": "Lipiec", "Create Horizontal Line": "Wstaw linię poziomą", "Minute": "Minuta", "Cycle": "Cykl", "ADX Smoothing_input": "Wygładzanie ADX", "One color for all lines": "Jeden kolor dla wszystkich linii", "m_dates": "m", "Settings": "Ustawienia", "Drawing Tools": "Narzędzia Rysowania", "Candles": "Świece", "We_day_of_week": "We", "Pre Market": "Przed wprowadzeniem do obrotu", "Width (% of the Box)": "Szerokość (% ramki)", "%d minute": "%d minutes", "Pip Size": "Rozmiar Pip", "Wednesday": "Środa", "This drawing is used in alert. If you remove the drawing, the alert will be also removed. Do you want to remove the drawing anyway?": "Ten rysunek jest używany w ostrzeżeniu. Jeśli usuniesz rysunek, alert zostanie również usunięty. Czy pomimo to chcesz usunąć ten rysunek?", "Hide All Drawing Tools": "Ukryj narzędzia do rysowania", "Show alert label line": "Pokaż linię etykiet ostrzegawczych", "Down Wave 2 or B": "Fala spadkowa 2 lub B", "MA_input": "MA", "Detrended Price Oscillator_study": "Detektor oscylatora cenowego", "not authorized": "brak autoryzacji", "Image URL": "URL Obrazka", "SMI Ergodic Oscillator_input": "Oscylator SMI Ergodic", "Show Objects Tree": "Pokaż Drzewo Obiektów", "Primary": "Główny", "Price:": "Cena:", "Gann Box": "Pudełko Ganna", "Bring to Front": "Przenieś na pierwszy plan", "Brush": "Pędzel", "Not Now": "Nie teraz", "lengthRSI_input": "długośćRSI", "Yes": "Tak", "Events & Alerts": "Zdarzenia i alerty", "+DI_input": "+DI", "Apply Default Drawing Template": "Zastosuj domyślny szablon rysowania", "Save As Default": "Zapisz jako domyślny", "Invalid Symbol": "Nieprawidłowy Symbol", "Inside Pitchfork": "Wewnątrz wskaźnika Pitchfork", "yay Color 1_input": "yay Kolor 1", "Quandl is a huge financial database that we have connected to TradingView. Most of its data is EOD and is not updated in real-time, however the information may be extremely useful for fundamental analysis.": "Quandl to ogromna baza danych finansowych, która jest połaczona z TradingView. Większość jej danych to EOD i nie jest aktualizowana w czasie rzeczywistym, jednak informacje mogą być niezwykle użyteczne dla podstawowej analizy.", "Hide Marks On Bars": "Ukryj znaki na świeczkach", "Note": "Uwaga", "Kagi": "Wykres Kagi", "WMA Length_input": "Długość WMA", "Show Dividends on Chart": "Pokaż Dywidendy na wykresie", "Show Executions": "Pokaż egzekucje", "Borders": "Granice", "loading...": "ładowanie...", "Closed_line_tool_position": "Closed", "Columns": "Kolumny", "Change Resolution": "Zmień rozdzielczość", "Indicator Arguments": "Argumenty wskaźników", "Fib Spiral": "Spirala Fibonacci", "Apply Elliot Wave": "Zastosuj fale Elliota", "Degree": "Stopień", " per order": " na zamówienie", "Line - HL/2": "Linia - HL/2", "Up Wave 4": "Maksymalny rzut 4", "Jun": "Cze", "Least Squares Moving Average_study": "Średnia krocząca najmniejszych kwadratów", "Change Variance value": "Zmień wariancję", "Overlay the main chart": "Nałóż na główny wykres", "powered by ": "Przygotowane przez ", "Source_input": "Źródło", "Change Seconds To": "Zmień sekundy do", "%K_input": "%K", "Success back color": "Kolor tła w przypadku sukcesu", "Please enter template name": "Wstaw nazwę szablonu", "Symbol Name": "Nazwa Symbolu", "Tokyo": "Tokio", "Events Breaks": "Przerwy na wydarzenia", "Study Templates": "Szablony badania", "Show Labels": "Pokaż Etykiety", "Months": "Miesiące", "Symbol Info...": "Informacje o Symbolu...", "Elliott Wave Minor": "Fala Elliotta - cykl mniejszy", "Read our blog for more info!": "Przeczytaj nasz blog aby zdobyć więcej informacji!", "Measure (Shift + Click on the chart)": "Pomiar (Shift + Kliknij na wykres)", "Override Min Tick": "Zastąpienie Min Tick", "Thursday": "Czwartek", "Dialog": "Komunikat", "Add To Text Notes": "Dodaj notatkę", "Elliott Triple Combo Wave (WXYXZ)": "Kombinacja potrójna fal Elliotta (WXYXZ)", "Multiplier_input": "Mnożnik", "Risk/Reward": "Ryzyko/Nagroda", "Base Line Periods_input": "Okresy linii bazowych", "Show Dividends": "Pokaż Dywidendy", "pre-market": "przed wprowadzeniem", "Top Labels": "Górne Etykiety", "Show Earnings": "Pokaż zyski", "Line - Open": "Linia - Otwarte", "Elliott Triangle Wave (ABCDE)": "Trójkątna fala Elliotta (ABCDE)", "Minuette": "Menuet", "Text Wrap": "Zawijanie tekstu", "Reverse Position": "Odwróć pozycje", "Elliott Minor Retracement": "Podrzędna korekta Elliota", "Th_day_of_week": "Th", "No symbols matched your criteria": "Brak symboli spełniających twoje kryteria", "Icon": "Ikona", "Short_input": "Krótki", "Tuesday": "Wtorek", "Indicator_input": "Wskaźnik", "Open Interval Dialog": "Otwarte okno dialogowe przedziału", "Athens": "Ateny", "Q_input": "Q", "Content": "Treść", "middle": "środek", "Lock Cursor In Time": "Zablokuj kursor w osi czasu", "Intermediate": "Pośredni", "Eraser": "Gumka", "TimeZone": "Strefa Czasowa", "Envelope_study": "Koperta", "Active Symbol": "Aktywny Symbol", "Horizontal Line": "Pozioma Linia", "O_in_legend": "Otwarcie", "Confirmation": "Potwierdzenie", "Add Alert": "Dodaj Alert", "Lines:": "Linie", "Hide Favorite Drawings Toolbar": "Ukryj pasek ulubionych narzędzi rysowania na wykresach", "useTrueRange_input": "useTrueRange", "Profit Level. Ticks:": "Poziom zysku. Zaznaczone:", "Show Date/Time Range": "Pokaż Zasięg Daty/Czasu", "Level {0}": "Poziom {0}", "Favorites": "Ulubione", "Horz Grid Lines": "Poziome linie siatki", "Text Notes are available only on chart page. Please open a chart and then try again.": "Notatki tekstowe są dostępne tylko na stronie wykresu. Otwórz wykres i spróbuj podobnie.", "Tu_day_of_week": "Tu", "deviation_input": "odchylenie", "Base currency": "Waluta bazowa", "VWMA_study": "VWMA", "Success text color": "Kolor tekstu w przypadku sukcesu", "ADX smoothing_input": "Wygładzanie ADX", "%d hour": "%d hours", "Order size": "Wielkość zamówienia", "Displacement_input": "Przemieszczenie", "Save Indicator Template As": "Zapisz Szablon Wskaźnika Jako", "ADR_B_input": "ADR_B", "Chaikin Money Flow_study": "Przepływ pieniędzy Chaikin", "Ease Of Movement_study": "Łatwość Ruchu", "Defaults": "Domyślne", "Oversold_input": "Wyprzedany", "Williams %R_study": "Williams %R", "Visual settings...": "Ustawienia wizualne ...", "RSI_input": "RSI", "Long period_input": "Długi okres", "Mo_day_of_week": "Mo", "center": "środek", "Vertical Line": "Linia Pionowa", "Show Splits on Chart": "Pokaż podziały na wykresie", "Sorry, the Copy Link button doesn't work in your browser. Please select the link and copy it manually.": "Przepraszamy, przycisk Kopiuj Link nie działa w Twojej przeglądarce. Proszę zaznaczyć link i skopiować go ręcznie.", "X_input": "X", "C_data_mode_connecting_letter": "C", "Simple ma(oscillator)_input": "Simple ma (oscylator)", "compiling...": "kompilacja...", "SMALen4_input": "SMALen4", "ROCLen4_input": "ROCLen4", "Aroon Down_input": "Aroon Dolny", "Add To Watchlist": "Dodaj do Listy Obserwowanych", "Total": "Suma", "Extend Right": "Rozszerz w prawo", "left": "do lewej", "Lock scale": "Zablokuj skalę", "Time Levels": "Poziomy czasowe", "Arrow": "Strzałka", "smalen1_input": "smalen1", "Drawing Template '{0}' already exists. Do you really want to replace it?": "Szablon rysunku \"{0}\" już istnieje. Czy chcesz go zastąpić?", "Offset": "Wynagrodzenie", "Fans": "Fani", "Line - Low": "Linia - Minimum", "Price_input": "Cena", "Close_input": "Close", "Arrow Mark Down": "Strzałka w dół", "Weeks": "Tygodnie", "Modified Schiff Pitchfork": "Zmodyfikowany Schiff Pitchfork", "Relative Volatility Index_study": "Względny wskaźnik płynności", "Elliott Impulse Wave (12345)": "Fala Elliotta - fala impulsu (12345)", "PVT_input": "PVT", "Circle Lines": "Okrąg", "Hull Moving Average_study": "Średnia krocząca Hull'a", "Save Drawing Template As": "Zachowaj Szablon Rysowania Jako", "Right Shoulder": "Prawe ramię", "Apply Defaults": "Zastosuj domyślne", "Friday": "Piątek", "Zero_input": "Zero", "Company Comparison": "Porównanie Spółek", "Stochastic Length_input": "Długość Stochastic", "mult_input": "mult", "URL cannot be received": "Adres nieosiągalny", "Signal smoothing_input": "Wygładzanie sygnału", "E_data_mode_end_of_day_letter": "E", "Trend-Based Fib Extension": "Rozszerzenie Fib na podstawie trendów", "Analyze Trade Setup": "Analizuj setup", "Double Curve": "Podwójna krzywa", "Stochastic RSI_study": "Stochastic RSI", "Horizontal Ray": "Promień poziomy", "Symbol Labels": "Etykiety Symbolu", "Edit Order": "Edytuj zlecenie", "Trades on Chart": "Transakcje na wykresie", "Chaikin Oscillator_input": "Oscylator Chaikin", "Listed Exchange": "Wymieniona Giełda", "Error:": "Błąd:", "Fullscreen mode": "Tryb pełnoekranowy", "Add Text Note For {0}": "Dodaj notatkę tekstową dla {0}", "K_input": "K", "In Session": "W sesji", "ROCLen3_input": "ROCLen3", "Micro": "Mikro", "Text Color": "Kolor Tekstu", "Built-ins": "Wbudowane", "Extend Alert Line": "Przeciągnij linie alertu", "Oops!": "Ups!", "New Zealand": "Nowa Zelandia", "CHOP_input": "CHOP", "Scale": "Skala", "% of equity": "% kapitału", "Extended Alert Line": "Linia alertu powiększona", "Signal_input": "Sygnał", "like": "likes", "Original": "Oryginał", "Show": "Pokaż", "Exchange": "Giełda", "{0} bars": "{0} słupki", "Lower_input": "Dolny", "Created ": "Stwórz ", "Arc": "Łuk", "Elder's Force Index_study": "Starszy Force Index", "Show Earnings on Chart": "Pokaż Zarobki na Wykresie", "ATR_input": "ATR", "Do you really want to delete Color Theme '{0}' ?": "Czy na pewno chcesz usunąć kolorowy motyw '{0}'?", "Low": "Minimum", "Bollinger Bands %B_study": "Pasma Bollingera% B", "Time Zone": "Strefa Czasowa", "right": "prawy", "Wrong value": "Nieprawidłowa wartość", "Upper Band_input": "Górna część", "Sun": "Nie", "Rename...": "Zmień nazwę", "February": "Luty", "start_input": "start", "No indicators matched your criteria.": "Brak wskaźników spełniających twoje kryteria", "Commission": "Prowizja", "Down Color": "Kolor w dół", "Short length_input": "Krótka długość", "Kolkata": "Kalkuta", "Triple EMA_study": "Potrójne EMA", "Precise Labels_scale_menu": "Precise Labels", "Smoothed Moving Average_study": "Wygładzona Średnia Krocząca", "Do you really want to delete Drawing Template '{0}' ?": "Czy na pewno chcesz usunąć szablon rysunku '{0}'?", "Chatham Islands": "Wyspy Chatham", "Channel": "Kanał", "Stop syncing drawing": "Zatrzymaj synchronizację rysowania", "FXCM CFD data is available only to FXCM account holders": "Kwotowania FXCM CFD są dostępne tylko dla posiadaczy kont w FXCM", "Lagging Span 2 Periods_input": "Okresy spowolnienia długości 2", "Connecting Line": "Linia łącząca", "Seoul": "Seul", "bottom": "dół", "Teeth_input": "Teeth", "Moscow": "Moskwa", "Save New Chart Layout": "Zachowaj Nowy Wygląd Wykresu", "Fib Channel": "Kanał Fibonacciego", "Visibility": "Widoczność", "Events": "Zdarzenia", "Save Drawing Template As...": "Zachowaj Szablon Rysowania Jako...", "Minutes_interval": "Minutes", "Insert Study Template": "Wstaw szablon testowy", "exponential_input": "wykładniczy", "OnBalanceVolume_input": "OnBalanceVolume", "roclen2_input": "roclen2", "Chande Momentum Oscillator_study": "Oscylator Momentum Chande", "Not applicable": "Nie dotyczy", "or copy url:": "lub skopiuj url:", "Bollinger Bands %B_input": "Pasma Bollingera% B", "Template name": "Nazwa Szablonu", "Indicator Values": "Wartość wskaźnika", "Lips Length_input": "Długość Lips", "Use Upper Deviation_input": "Użyj górnego odchylenia", "L_in_legend": "najnizszy punkt", "Remove custom interval": "Usuń niestandardowy interwał", "shortlen_input": "shortlen", "Quotes are delayed by {0} min": "Cytowanie jest opóźnione o {0} min.", "Copied to clipboard": "Skopiowano do schowka", "ADX_input": "ADX", "Profit Background Color": "Kolor Tła Zysku", "Bar's Style": "Styl Słupków", "Exponential_input": "Wykładniczy", "ROCLen2_input": "ROCLen2", "Use Lower Deviation_input": "Użyj niższego odchylenia", "Previous": "Poprzednie", "Stay In Drawing Mode": "Pozostań w Trybie Rysowania", "Comment": "Komentarz", "Long_input": "Długi", "Bars": "Słupki", "Source text color": "Źródło koloru tekstu", "Symbol Type": "Typ Symbolu", "loading data": "ładowanie danych", "December": "Grudzień", "Lock drawings": "Zablokuj możliwość rysowania", "Border color": "Kolor obramowania", "Change Seconds From": "Zmień sekundy od", "Left Labels": "Lewe Etykiety", "Insert Indicator...": "Wstaw Wskaźnik...", "P_input": "P", "Paste %s": "Wklej %s", "Timezone": "Strefa czasowa", "Invite-only script. You have been granted access.": "Otrzymałeś dostęp do skryptu prywatnego", "Sat": "Sob", "ATR Length": "Długość ATR", "Rectangle": "Prostokąt", "Supercycle": "Supercykl", "Feb": "Lut", "Transparency": "Przezroczystość", "No": "Nie", "All Indicators And Drawing Tools": "Wszystkie wskaźniki i narzędzia graficzne", "Cyclic Lines": "Linie cyklu.", "length28_input": "długość28", "ABCD Pattern": "Formacja ABCD", "closed": "zamknięty", "When selecting this checkbox the study template will set \"__interval__\" interval on a chart": "Zaznaczając to pole wyboru, szablon testu ustawi interwał \"__interval__\" na wykresie", "NO": "NIE", "Add": "Dodaj", "OC Bars": "Słupki OC", "Millennium": "Milenium", "Price Label": "Etykieta Ceny", "Graphics": "Grafiki", "NEW": "Nowy", "Wick": "Cień", "Up bars": "Słupki w górę", "Hull MA_input": "Hull MA", "Callout": "Objaśnienie", "Lock Scale": "Zablokuj Skalę", "distance: {0}": "dystans: {0}", "Extended": "Rozszerzone", "Three Drives Pattern": "Trzy wzory dysków", "Create Vertical Line": "Wstaw linię pionową", "Arcs": "Łuki", "Top Margin": "Margines Górny", "Length2_input": "Długość2", "Insert Drawing Tool": "Wstaw Narzędzie Rysowania", "OHLC Values": "Wartości OHLC", "Correlation_input": "Korelacja", "Scales Text": "Skaluj Tekst", "Session Breaks": "Przerwy w sesji", "Add {0} To Watchlist": "Dodaj {0} do obserwowanych", "Anchored Note": "Przyczepiona notatka", "lipsLength_input": "lipsLength", "low": "niski", "Apply Indicator on {0}": "Wstaw wskaźnik na {0}", "X Cross": "Krzyżyk X", "November": "Listopad", "Tehran": "Teheran", "Balloon": "Balon", "Background Color": "Kolor Tła", "an hour": "godzina", "Right Axis": "Prawa oś", "D_data_mode_delayed_streaming_letter": "D", "VI -_input": "VI -", "slowLength_input": "slowLength", "Click to set a point": "Kliknij, aby ustawić punkt", "January": "Styczeń", "Arrow Up": "Strzałka w górę", "n/a": "n.d.", "Indicator Titles": "Nazwa wskaźnika", "retrying": "ponawiam", "Change area background": "Zmień tło obszaru", "Error": "Błąd", "Edit Position": "Edytuj pozycję", "RVI_input": "RVI", "Awesome Oscillator_study": "Niesamowity Oscylator", "Recalculate On Every Tick": "Ponownie przelicz po każdym zaznaczeniu", "Left": "Lewo", "Show Text": "Pokaż Tekst", "Objects Tree...": "Drzewo Obiektów...", "Compare": "Porównaj", "Add Symbol": "Dodaj Symbol", "Projection": "Projekcja", "Track time": "Czas utworu", "Enter a new chart layout name": "Wprowadź nową nazwę dla tego układu wykresów", "Signal Length_input": "Długość sygnału", "Properties": "Właściwości", "Teeth Length_input": "Długość Teeth", "Point Value": "Wartość punktowa", "D_interval_short": "D", "Label Up": "Etykieta w górę", "Close": "Zamknięcie", "ParabolicSAR_input": "ParabolicSAR", "Log Scale_scale_menu": "Skala Logarytmiczna", "MACD_input": "MACD", "Do not show this message again": "Nie pokazuj ponownie tego komunikatu", "Up Wave 3": "Maksymalny rzut 3", "Arrow Mark Left": "Strzałka w lewo", "Source Code...": "Kod źródłowy", "Up Wave 5": "Maksymalny rzut 5", "Line - Close": "Linia - zamknięcia", "Confirm Inputs": "Potwierdź wprowadzone", "Open_line_tool_position": "Otwarte", "Lagging Span_input": "Spowolnienie długości", "Cross": "Krzyżyk", "Mirrored": "Lustrzane Odbicie", "Price": "Cena", "Elliott Correction Wave (ABC)": "Korekcyjna fala Elliotta (ABC)", "Error while trying to create snapshot.": "Podczas próby utworzenia zrzutu wystąpił błąd.", "Label Background": "Tło Etykiety", "Templates": "Szablony", "Please report the issue or click Reconnect.": "Proszę zgłosić problem lub kliknąć Połącz ponownie.", "1. Slide your finger to select location for first anchor
    2. Tap anywhere to place the first anchor": "1. Przesuń palcem, żeby wybrać lokalizację dla pierwszej kotwicy
    2. Stuknij w dowolnym miejscu, aby umieścić pierwszą kotwicę", "Signal Labels": "Etykiety sygnału", "May": "Maj", "Are you sure?": "Jesteś pewien?", "Color 5_input": "Kolor 5", "Up Wave 1 or A": "Maksymalny rzut 1 lub A", "Scale Price Chart Only": "Tylko wykres skali ceny", "Default": "Domyślnie", "auto_scale": "auto", "Background": "Tło", "Up Color": "Kolor w górę", "Apply Elliot Wave Intermediate": "Zastosuj falę Elliota - cykl średni", "VWMA_input": "VWMA", "Lower Deviation_input": "Dolne odchylenie", "Save Interval": "Zapisz interwał", "Extend Lines Left": "Rozciągnij linie w lewo", "Reverse": "Odwróć", "Oops, something went wrong": "Oops, coś poszło nie tak", "Shapes_input": "Kształty", "Median": "Mediana", "Show Source Code": "Pokaż kod źródłowy", "Remove": "Usuń", "len_input": "len", "Arrow Mark Up": "Strzałka w górę", "April": "Kwiecień", "Crosses_input": "Krzyże", "KST_input": "KST", "Sync drawing to all charts": "Synchronizuj rysunek z wszystkimi wykresami", "LowerLimit_input": "Dolny limit", "Know Sure Thing_study": "Zyskaj pewność", "Copy Chart Layout": "Kopiuj Wygląd Wykresu", "Compare...": "Porównaj...", "1. Slide your finger to select location for next anchor
    2. Tap anywhere to place the next anchor": "1. Przesuń palcem, żeby wybrać lokalizację dla następnej kotwicy
    2. Stuknij w dowolnym miejscu, aby umieścić następną kotwicę", "Compare or Add Symbol": "Porównaj lub Dodaj Symbol", "Color": "Kolor", "Aroon Up_input": "Aroon Górny", "Singapore": "Singapur", "Scales Lines": "Skaluj Linie", "Type the interval number for munute charts (i.e. 5 if it is going to be a five minute chart). Or number plus letter for H (Hourly), D (Daily), W (Weekly), M (Monthly) intervals (i.e. D or 2H)": "Wpisz numer interwału dla wykresów minut (tj. 5, jeśli ma to być wykres pięciu minut). Lub numer plus litera dla H (Godzinowo), D (dziennie), W (co tydzień), M (co miesiąc) (tzn. D lub 2H)", "Up Wave C": "Maksymalny rzut C", "Show Distance": "Pokaż dystans", "Risk/Reward Ratio: {0}": "Współczynnik ryzyka do zysku {0}", "Restore Size": "Przywróć Rozmiar", "Volume Oscillator_study": "Zamknij strategię Volty Expan", "Williams Fractal_study": "Williams Fractal", "Merge Up": "Połącz w Górę", "Right Margin": "Prawy Margines", "Ellipse": "Elipsa", "Warsaw": "Warszawa"} \ No newline at end of file +{"ticks_slippage ... ticks": "Oznaczenia", "Months_interval": "Miesiące", "Realtime": "Czas rzeczywisty", "Callout": "Objaśnienie", "Sync to all charts": "Synchronizuj wszystkie wykresy", "month": "miesiąc", "London": "Londyn", "roclen1_input": "roclen1", "Unmerge Down": "Cofnij Złączenie W Dół", "Percents": "Procenty", "Search Note": "Szukaj notatki", "Do you really want to delete Chart Layout '{0}' ?": "Czy na pewno chcesz usunąć układ graficzny '{0}'?", "Quotes are delayed by {0} min and updated every 30 seconds": "Notowania są opóźnione o {0} min i uaktualniane co 30 sekund.", "Magnet Mode": "Magnes", "Grand Supercycle": "Wielki supercykl", "OSC_input": "OSC", "Hide alert label line": "Ukryj zakładkę z alertami", "Volume_study": "Wolumen", "Lips_input": "Lips", "Show real prices on price scale (instead of Heikin-Ashi price)": "Pokaż rzeczywiste ceny w skali ceny (zamiast ceny Heikin-Ashi)", "Base Line_input": "Linia Bazowa", "Step": "Krok", "Insert Study Template": "Wstaw szablon testowy", "Fib Time Zone": "Strefa czasowa Fibonacciego", "SMALen2_input": "SMALen2", "Bollinger Bands_study": "Wstęgi Bollingera", "Nov": "LIs", "Show/Hide": "Pokaż/Ukryj", "Upper_input": "Górna", "exponential_input": "wykładniczy", "Move Up": "Przenieś w Górę", "Symbol Info": "Informacje o Symbolu", "This indicator cannot be applied to another indicator": "Ten wskaźnik nie może być zastosowany do innego wskaźnika", "Scales Properties...": "Właściwości skali...", "Count_input": "Liczyć", "Full Circles": "Pełne kręgi", "Ashkhabad": "Aszchabad", "OnBalanceVolume_input": "OnBalanceVolume", "Cross_chart_type": "Krzyżyk", "H_in_legend": "Najwyzszy punkt", "a day": "dzień", "R_data_mode_replay_letter": "R", "Accumulation/Distribution_study": "Akumulacja / dystrybucja", "Rate Of Change_study": "Tempo zmian", "in_dates": "w", "Clone": "Klonuj", "Color 7_input": "Kolor 7", "Chop Zone_study": "Strefa Chop", "Bar #": "Świeca #", "Scales Properties": "Właściwości skali", "Trend-Based Fib Time": "Czas Fib w oparciu o trendy", "Remove All Indicators": "Usuń Wszystkie Wskaźniki", "Oscillator_input": "Oscylator", "Last Modified": "Ostatnio zmieniane", "yay Color 0_input": "yay Kolor 0", "Labels": "Etykiety", "Chande Kroll Stop_study": "Chande Kroll Stop", "Hours_interval": "Godziny", "Allow up to": "Pozwala na", "Scale Right": "Skaluj w prawo", "Money Flow_study": "Przepływ pieniędzy", "siglen_input": "siglen", "Indicator Labels": "Etykiety wskaźników", "__specialSymbolOpen__Tomorrow at__specialSymbolClose__ __dayTime__": "__specialSymbolOpen__jutro o__specialSymbolClose____dayTime__", "Toggle Percentage": "Zmień na Procenty", "Remove All Drawing Tools": "Usuń Narzędzia Rysowania", "Remove all line tools for ": "Usuń wszystkie narzędzia linii ", "Linear Regression Curve_study": "Krzywa regresji liniowej", "Symbol_input": "Symbol", "increment_input": "przyrost", "Compare or Add Symbol...": "Porównaj lub Dodaj Symbol...", "__specialSymbolOpen__Last__specialSymbolClose__ __dayName__ __specialSymbolOpen__at__specialSymbolClose__ __dayTime__": "__specialSymbolOpen__ostatnio__specialSymbolClose__ __dayName__ __specialSymbolOpen__o__specialSymbolClose__ __dayTime__", "Save Chart Layout": "Zachowaj Wygląd Wykresu", "Number Of Line": "Liczba linii", "Label": "Etykieta", "Post Market": "Wprowadzenie do obrotu", "Change Hours To": "Zmień godziny na", "smoothD_input": "smoothD", "Falling_input": "Spadajacy", "X_input": "X", "Risk/Reward short": "krótkie Ryzyko/Zysk", "Donchian Channels_study": "Kanały Donchian", "Entry price:": "Cena wejścia", "Circles": "Koła", "Head": "Głowa", "Stop: {0} ({1}) {2}, Amount: {3}": "Stop: {0} ({1}) {2}, Kwota: {3}", "Mirrored": "Lustrzane Odbicie", "Ichimoku Cloud_study": "Chmura Ichimoku", "Signal smoothing_input": "Wygładzanie sygnału", "Toggle Log Scale": "Przełącz na skalę logarytmiczną", "Toggle Auto Scale": "Przełącz na skalę automatyczną", "Grid": "Siatka", "Triangle Down": "Trójkąt w dół", "Apply Elliot Wave Minor": "Zastosuj falę Elliota - cykl mniejszy", "Slippage": "Poślizg", "Smoothing_input": "Wygładzanie", "Color 3_input": "Kolor 3", "Jaw Length_input": "Długość Jaw", "Almaty": "Ałmaty", "Inside": "W środku", "Delete all drawing for this symbol": "Usuń cały rysunek dla tego symbolu", "Fundamentals": "Dane makroekonomiczne", "Keltner Channels_study": "Kanały Keltner'a", "Long Position": "Pozycja Długa", "Bands style_input": "Styl muzyki", "Undo {0}": "Cofnij {0}", "With Markers": "Ze znacznikami", "Momentum_study": "Momentum", "MF_input": "MF", "Gann Box": "Pudełko Ganna", "Switch to the next chart": "Przełącz się do następnego wykresu", "charts by TradingView": "wykresy TradingView", "Fast length_input": "Szybka długość", "Apply Elliot Wave": "Zastosuj fale Elliota", "Disjoint Angle": "Kąt rozłączenia", "W_interval_short": "W", "Show Only Future Events": "Pokaż Tylko Przyszłe Wydarzenia", "Log Scale": "Skala logarytmiczna", "Line - High": "Linia - Maksimum", "Zurich": "Zurych", "Equality Line_input": "Linia Równości", "Short_input": "Krótki", "Fib Wedge": "Klin Fibonacciego", "Line": "Linia", "Session": "Sesja", "Down fractals_input": "Dolne fraktale", "Fib Retracement": "Zniesienia Fibonacciego", "smalen2_input": "smalen2", "isCentered_input": "Jest wyśrodkowany", "Border": "Obramowanie", "Klinger Oscillator_study": "Oscylator Klingera", "Absolute": "Absolutny", "Tue": "Wto", "Style": "Styl", "Show Left Scale": "Pokaż lewą skalę", "SMI Ergodic Indicator/Oscillator_study": "Wskaźnik/Oscylator SMI Ergodic", "Aug": "Sie", "Last available bar": "Ostatnia dostępna świeczka", "Manage Drawings": "Zarządzaj Rysunkami", "Analyze Trade Setup": "Analizuj setup", "No drawings yet": "Brak rysunków", "SMI_input": "SMI", "Chande MO_input": "Chande MO", "jawLength_input": "jawLength", "TRIX_study": "TRIX", "Show Bars Range": "Pokaż Zasięg Słupków", "RVGI_input": "RVGI", "Last edited ": "Ostatnio edytowane ", "signalLength_input": "signalLength", "%s ago_time_range": "%s temu", "Reset Settings": "Resetuj ustawienia", "d_dates": "d", "Point & Figure": "Kropki i znaki", "August": "Sierpień", "Recalculate After Order filled": "Ponownie przelicz po zamówieniu", "Source_compare": "Źródło", "Down bars": "Słupki w dół", "Correlation Coefficient_study": "Współczynnik korelacji", "Delayed": "Opóźnienie", "Bottom Labels": "Dolne etykiety", "Text color": "Kolor tekstu", "Levels": "Poziomy", "Length_input": "Długość", "Short Length_input": "Krótka długość", "teethLength_input": "teethLength", "Visible Range_study": "Visible Range", "Open {{symbol}} Text Note": "Otwórz {{symbol}} Opis", "October": "Październik", "Lock All Drawing Tools": "Zablokuj Narzędzia Rysowania", "Long_input": "Długi", "Right End": "Prawy Koniec", "Show Symbol Last Value": "Pokaż ostatnią wartość symbolu", "Head & Shoulders": "Glowa i ramiona", "Do you really want to delete Study Template '{0}' ?": "Czy na pewno chcesz usunąć szablon testowy '{0}'?", "Favorite Drawings Toolbar": "Pasek ulubionych narzędzi rysujących", "Properties...": "Właściwości...", "Reset Scale": "Resetuj Skalę", "MA Cross_study": "Przekroczenie MA", "Trend Angle": "Kąt trendu", "Snapshot": "Miniatura", "Crosshair": "Krzyżyk", "Signal line period_input": "Okres linii sygnału", "Timezone/Sessions Properties...": "Właściwości Strefy Czasowej/Sesji", "Line Break": "Przełamanie linii", "Quantity": "Ilość", "Price Volume Trend_study": "Price Volume Trend", "Auto Scale": "Autoskalowanie", "Delete chart layout": "Usuń układ wykresu", "Text": "Tekst", "F_data_mode_forbidden_letter": "F", "Risk/Reward long": "długie Ryzyko/Zysk", "Apr": "Kwi", "Long RoC Length_input": "Długa Długość RoC", "Length3_input": "Długość3", "+DI_input": "+DI", "Madrid": "Madryt", "Use one color": "Użyj innego koloru", "Chart Properties": "Właściwości Wykresu", "No Overlapping Labels_scale_menu": "Brak nakładających się etykiet", "Exit Full Screen (ESC)": "Opuść tryb pełnoekranowy (ESC)", "MACD_study": "MACD", "Show Economic Events on Chart": "Pokaż Wydarzenia Ekonomiczne na Wykresie", "Moving Average_study": "Średnia krocząca", "Show Wave": "Pokarz Falę", "Failure back color": "Błędny kolor tła", "Below Bar": "Poniżej świeczki", "Time Scale": "Skala Czasu", "

    Only D, W, M intervals are supported for this symbol/exchange. You will be automatically switched to a D interval. Intraday intervals are not available because of exchange policies.

    ": "

    Tylko D, T, M interwały są wspierane dla tego symbolu/giełdy. Będziesz automatycznie przełączony na dzienny interwał. Dane intraday nie są dostępne z powody polityki giełdy.

    ", "Extend Left": "Rozciągnij w lewo", "Date Range": "Zakres Dat", "Min Move": "Minimalnie Przenieś", "Price format is invalid.": "Format ceny jest niepoprawny", "Show Price": "Pokaż Cenę", "Level_input": "Poziom", "Commodity Channel Index_study": "Indeks kanału towarowego", "Elder's Force Index_input": "Starszy Force Index", "Gann Square": "Kwadrat Ganna", "Currency": "Waluta", "Color bars based on previous close": "Kolor słupków na podstawie poprzedniego zamknięcia", "Change band background": "Zmień tło", "Target: {0} ({1}) {2}, Amount: {3}": "Cel: {0} ({1}) {2}, Kwota: {3}", "Zoom Out": "Oddal", "Anchored Text": "Zakotwiczony Tekst", "Long length_input": "Długa Długość", "Edit {0} Alert...": "Edytuj {0} Alert...", "Previous Close Price Line": "Linia Poprzedniej Ceny Zamknięcia", "Up Wave 5": "Maksymalny rzut 5", "Qty: {0}": "Ilość: {0}", "Aroon_study": "Aroon", "show MA_input": "Pokaż MA", "Industry": "Branża", "Lead 1_input": "Prowadzący 1", "Short Position": "Pozycja Krótka", "SMALen1_input": "SMALen1", "P_input": "P", "Apply Default": "Zastosuj domyślne", "SMALen3_input": "SMALen3", "Average Directional Index_study": "Wskaźnik ruchu kierunkowego", "Fr_day_of_week": "Pt", "Invite-only script. Contact the author for more information.": "Skrypt Prywatny. Skontaktuj się z autorem aby uzyskać więcej informacji", "Curve": "Krzywa", "a year": "rok", "Target Color:": "Docelowy Kolor:", "Bars Pattern": "Formacja Słupków", "D_input": "D", "Font Size": "Rozmiar tekstu", "Create Vertical Line": "Wstaw linię pionową", "p_input": "p", "Rotated Rectangle": "Obracający się Prostokąt", "Chart layout name": "Nazwa układu wykresu", "Fib Circles": "Kręgi Fibonacciego", "Apply Manual Decision Point": "Zastosuj wybrany punkt decyzyjny", "Dot": "Kropka", "Target back color": "Docelowy kolor tła", "All": "Wszystkie", "orders_up to ... orders": "zlecenia", "Dot_hotkey": "kropka", "Lead 2_input": "Prowadzący 2", "Save image": "Zapisz obrazek", "Move Down": "Przenieś w Dół", "Triangle Up": "Trójkąt w górę", "Box Size": "Rozmiar pudełka", "Navigation Buttons": "Klawisze Nawigacyjne", "Miniscule": "Malutkie", "Apply": "Zastosuj", "Down Wave 3": "Fala spadkowa 3", "Plots Background_study": "Tło wykresów", "Marketplace Add-ons": "Dodatki dla Rynku", "Sine Line": "Linia Sine", "Fill": "Wypełniać", "Hide": "Ukryj", "Toggle Maximize Chart": "Maksymalizuj wykres", "Target text color": "Docelowy kolor teksty", "Scale Left": "Skaluj w lewo", "Elliott Wave Subminuette": "Fala Elliotta - mikrocykl", "Color based on previous close_input": "Kolor na podstawie poprzedniego zamknięcia", "Down Wave C": "Fala spadkowa C", "Countdown": "Odliczanie", "UO_input": "UO", "Pyramiding": "Pyramid", "Source back color": "Źródło koloru tła", "Go to Date...": "Idź do daty...", "Text Alignment:": "Wyrównanie Tekstu:", "R_data_mode_realtime_letter": "R", "Extend Lines": "Rozszerz Linie", "Conversion Line_input": "Linia konwersji", "March": "Marzec", "Su_day_of_week": "Nd", "Exchange": "Giełda", "Arcs": "Łuki", "Regression Trend": "Trend regresji", "Short RoC Length_input": "Krótka długość RoC", "Fib Spiral": "Spirala Fibonacci", "Double EMA_study": "DEMA", "All Indicators And Drawing Tools": "Wszystkie wskaźniki i narzędzia graficzne", "Indicator Last Value": "Ostatnia wartość wskaźnika", "Sync drawings to all charts": "Synchronizuj rysunki na wszystkich wykresach", "Change Average HL value": "Zmień średnią wartość HL", "Stop Color:": "Ogranicz kolor:", "Stay in Drawing Mode": "Pozostań w Trybie Rysowania", "Bottom Margin": "Margines Dolny", "Save Chart Layout saves not just some particular chart, it saves all charts for all symbols and intervals which you are modifying while working with this Layout": "Save Chart Layout zapisuje nie tylko konkretny wykres, zapisuje wszystkie wykresy dla wszystkich symboli i interwałów, które modyfikujesz podczas pracy z tym układem", "Average True Range_study": "Średnia prawdziwego zakresu", "Max value_input": "Maksymalna wartość", "MA Length_input": "Długość MA", "Invite-Only Scripts": "Skrypty Prywatne", "in %s_time_range": "w %s", "UpperLimit_input": "Górna granica", "sym_input": "sym", "DI Length_input": "Długość DI", "Rome": "Rzym", "Scale": "Skala", "Periods_input": "Okresy", "Arrow": "Strzałka", "useTrueRange_input": "useTrueRange", "Basis_input": "Podstawa", "Arrow Mark Down": "Strzałka w dół", "lengthStoch_input": "długośćStoch", "Objects Tree": "Drzewo Obiektów", "Remove from favorites": "Usuń z ulubionych", "Show Symbol Previous Close Value": "Pokaż Poprzednią Wartość Zamknięcia dla Symbolu", "Scale Series Only": "Skaluj Tylko Serie", "Source text color": "Źródło koloru tekstu", "Simple": "Prosty", "Report a data issue": "Zgłoś problem z danymi", "Arnaud Legoux Moving Average_study": "Średnia krocząca Arnaud Legoux", "Smoothed Moving Average_study": "Wygładzona Średnia Krocząca", "Lower Band_input": "Dolna część", "Verify Price for Limit Orders": "Zweryfikuj cenę za zlecenie limitowe", "VI +_input": "VI +", "Line Width": "Szerokość Linii", "Contracts": "Kontrakty", "Always Show Stats": "Zawsze pokazuj statystyki", "Down Wave 4": "Fala spadkowa 4", "ROCLen2_input": "ROCLen2", "Simple ma(signal line)_input": "Simple ma (linia sygnału)", "Change Interval...": "Zmień interwał...", "Public Library": "Biblioteka Publiczna", " Do you really want to delete Drawing Template '{0}' ?": " Czy naprawdę chcesz usunąć szablon rysowania '{0}' ?", "Sat": "Sob", "Left Shoulder": "Lewe ramię", "week": "tydzień", "CRSI_study": "CRSI", "Close message": "Zamknij wiadomość", "Jul": "Lip", "Base currency": "Waluta bazowa", "Show Drawings Toolbar": "Pokaż Pasek Rysowania", "Chaikin Oscillator_study": "Oscylator Chaikin", "Price Source": "Źródło cen", "Market Open": "Rynek Otwarty", "Color Theme": "Kolory motywu", "Projection up bars": "Projekcja słupków w górę", "Awesome Oscillator_study": "Niesamowity Oscylator", "Bollinger Bands Width_input": "Szerokość Wstęg Bollingera", "long_input": "długi", "Error occured while publishing": "Wystąpił błąd podczas publikacji", "Fisher_input": "Fisher", "Color 1_input": "Kolor 1", "Moving Average Weighted_study": "Ważona Średnia Krocząca", "Save": "Zapisz", "Type": "Typ", "Wick": "Cień", "Accumulative Swing Index_study": "Accumulative Swing Index", "Load Chart Layout": "Załaduj Wygląd Wykresu", "Show Values": "Pokaż Wartości", "Fib Speed Resistance Fan": "Wachlarz Fibonacciego - prędkość i opór", "Bollinger Bands Width_study": "Szerokość Wstęgi Bollingera", "This chart layout has more than 1000 drawings, which is a lot! This may negatively affect performance, storage and publishing. We recommend to remove some drawings to avoid potential performance issues.": "Ten układ wykresów zawiera ponad 1000 rysunków, a jest to dużo! Może to negatywnie wpłynąć na wydajność, przechowywanie i publikowanie. Zalecamy usunąć niektóre rysunki, aby uniknąć potencjalnych problemów z wydajnością.", "Left End": "Lewy Koniec", "Volume Oscillator_study": "Oscylator Volumenowy", "Always Visible": "Zawsze widoczne", "S_data_mode_snapshot_letter": "S", "Flag": "Flaga", "Elliott Wave Circle": "Okrąg fal Eliotta", "Earnings breaks": "Przerwa w zarobkach", "Change Minutes From": "Zmień minuty od", "Do not ask again": "Nie pytaj ponownie", "Displacement_input": "Przemieszczenie", "smalen4_input": "smalen4", "CCI_input": "CCI", "Upper Deviation_input": "Odchylenie górne", "XABCD Pattern": "Wzorzec XABCD", "Copied to clipboard": "Skopiowano do schowka", "HLC Bars": "Słupki HLC", "Flipped": "Odwrócone", "DEMA_input": "DEMA", "Move_input": "Ruch", "NV_input": "NV", "Choppiness Index_study": "Indeks Choppiness", "Study Template '{0}' already exists. Do you really want to replace it?": "Szablon badania '{0}' już istnieje. Naprawdę chcesz go zastąpić?", "Merge Down": "Połącz w Dół", " per contract": " na kontrakt", "Overlay the main chart": "Nałóż na główny wykres", "Screen (No Scale)": "Screen (Bez Skali )", "Delete": "Usuń", "Save Indicator Template As": "Zapisz Szablon Wskaźnika Jako", "Length MA_input": "Długość MA", "percent_input": "procent", "September": "Wrzesień", "{0} copy": "{0} kopia", "Avg HL in minticks": "Avg HL w minticks", "Accumulation/Distribution_input": "Akumulacja / dystrybucja", "Sync": "Synchronizuj", "C_in_legend": "zamkniecie", "Weeks_interval": "Tygodnie", "smoothK_input": "smoothK", "Percentage_scale_menu": "Procentowo", "Change Extended Hours": "Zmień godziny rozszerzone", "MOM_input": "MOM", "h_interval_short": "h", "Change Interval": "Zmień interwał", "Change area background": "Zmień tło obszaru", "Modified Schiff": "Zmodyfikowany Schiff", "Adelaide": "Adelajda", "Send Backward": "Cofnij wysyłanie", "Mexico City": "Meksyk", "TRIX_input": "TRIX", "Show Price Range": "Pokaż Zakres Cen", "Elliott Major Retracement": "Nadrzędna korekta Elliota", "ASI_study": "ASI", "Notification": "Powiadomienie", "Fri": "Pią", "just now": "właśnie teraz", "Forecast": "Prognoza", "Fraction part is invalid.": "Część frakcji jest nieprawidłowa.", "Connecting": "Podłączanie", "Ghost Feed": "Kanał Ghost", "Signal_input": "Sygnał", "Histogram_input": "Histogram", "The Extended Trading Hours feature is available only for intraday charts": "Funkcja Extended Trading Hours jest dostępna tylko dla wykresów", "Stop syncing": "Zatrzymaj synchronizację", "open": "otwarte", "StdDev_input": "StdDev", "EMA Cross_study": "Przecięcie EMA", "Conversion Line Periods_input": "Okresy linii konwersji", "Diamond": "Diament", "My Scripts": "Moje Skrypty", "Monday": "Poniedziałek", "Add Symbol_compare_or_add_symbol_dialog": "Add Symbol", "Williams %R_study": "Williams %R", "top": "góra", "a month": "miesiąc", "Precision": "Precyzja", "depth_input": "głębokość", "Go to": "Idź do...", "Please enter chart layout name": "Wstaw nazwę układu wykresu.", "VWAP_study": "VWAP", "Offset": "Wyprzedzenie", "Date": "Data", "Apply WPT Up Wave": "Zastosuj zasięg cenowy dla fali wzrostowej", "__dayName__ __specialSymbolOpen__at__specialSymbolClose__ __dayTime__": "__dayName____specialSymbolOpen__ o __specialSymbolClose____dayTime__", "Toggle Maximize Pane": "Maksymalizuj Okienko", "Search": "Szukaj", "Zig Zag_study": "Zig Zag", "Actual": "Aktualne", "SUCCESS": "SUKCES", "Long period_input": "Długi okres", "length_input": "długość", "roclen4_input": "roclen4", "Price Line": "Linia Ceny", "Area With Breaks": "Obszar z przerwami", "Median_input": "Mediana", "Stop Level. Ticks:": "Ogranicz poziom. Oznaczenie:", "Window Size_input": "Rozmiar okna", "Economy & Symbols": "Ekonomia i symbole", "Circle Lines": "Okrąg", "Visual Order": "Zlecenie wizualne", "__specialSymbolOpen__Yesterday at__specialSymbolClose__ __dayTime__": "__specialSymbolOpen__jutro o__specialSymbolClose____dayTime__", "Stop Background Color": "Ogranicz kolor tła", "1. Slide your finger to select location for first anchor
    2. Tap anywhere to place the first anchor": "1. Przesuń palcem, żeby wybrać lokalizację dla pierwszej kotwicy
    2. Stuknij w dowolnym miejscu, aby umieścić pierwszą kotwicę", "Sector": "Sektor", "powered by TradingView": "Powered by TradingView.com", "Text:": "Tekst:", "Stochastic_study": "Stochastic", "Sep": "Wrz", "TEMA_input": "TEMA", "Min Move 2": "Minimalnie Przenieś 2", "Extend Left End": "Wydłuż lewą stronę", "Projection down bars": "Projekcja słupków w dół", "Advance/Decline_study": "Postęp/Spadek", "New York": "Nowy Jork", "Flag Mark": "Oznaczenie flagą", "Drawings": "Rysunki", "Cancel": "Anuluj", "Compare or Add Symbol": "Porównaj lub Dodaj Symbol", "Redo": "Ponów", "Hide Drawings Toolbar": "Ukryj pasek z narzędziami do rysowania", "Ultimate Oscillator_study": "Ostateczny oscylator", "Vert Grid Lines": "Pionowe Linie Siatki", "Growing_input": "Rosnąca", "Angle": "Kąt", "Plot_input": "Wykres", "Color 8_input": "Kolor 8", "Indicators, Fundamentals, Economy and Add-ons": "Wskaźniki, Dane Makroekonomincze, Ekonomia i Dodatki", "h_dates": "h", "ROC Length_input": "Zakres wskaźnika ROC", "roclen3_input": "roclen3", "Overbought_input": "Przesycony", "DPO_input": "DPO", "Change Minutes To": "Zmień minuty do", "No study templates saved": "Nie zapisano wzorów szablonów", "Trend Line": "Linia Trendu", "TimeZone": "Strefa Czasowa", "Your chart is being saved, please wait a moment before you leave this page.": "Twój wykres został utworzony, poczekaj teraz chwilę zanim opuścisz stronę.", "Percentage": "Procentowo", "Tu_day_of_week": "Wt", "RSI Length_input": "Długość RSI", "Triangle": "Trójkąt", "Line With Breaks": "Linia z Przerwami", "Period_input": "Okres", "Watermark": "Znak Wodny", "Trigger_input": "Trigger", "SigLen_input": "SigLen", "Extend Right": "Rozszerz w prawo", "Color 2_input": "Kolor 2", "Show Prices": "Pokaż Ceny", "Unlock": "Odblokuj", "Copy": "Kopiuj", "Arc": "Łuk", "Edit Order": "Edytuj zlecenie", "January": "Styczeń", "Arrow Mark Right": "Strzałka w prawo", "Extend Alert Line": "Przeciągnij linie alertu", "Background color 1": "Kolor tła 1", "RSI Source_input": "Źródło RSI", "Close Position": "Zamknij pozycję", "Any Number": "Dowolna liczba", "Stop syncing drawing": "Zatrzymaj synchronizację rysowania", "Visible on Mouse Over": "Widoczne na myszce", "MA/EMA Cross_study": "Przecięcie MA/EMA", "Thu": "Czw", "Vortex Indicator_study": "Wskaźnik Vortex", "view-only chart by {user}": "Wykresy tylko do wglądu użytkownika {user}", "ROCLen1_input": "ROCLen1", "M_interval_short": "M", "Chaikin Oscillator_input": "Oscylator Chaikin", "Price Levels": "Poziomy Ceny", "Show Splits": "Pokaż podziały", "Zero Line_input": "Linia Zerowa", "__specialSymbolOpen__Today at__specialSymbolClose__ __dayTime__": "__specialSymbolOpen__dzisiaj o__specialSymbolClose____dayTime__", "Increment_input": "Przyrost", "Days_interval": "Dni", "Show Right Scale": "Pokaż Prawą Skalę", "Show Alert Labels": "Pokaż etykiety alertu", "Historical Volatility_study": "Zmienność historyczna", "Lock": "Zablokuj", "length14_input": "długość14", "High": "Maksimum", "Q_input": "Q", "Date and Price Range": "Data i przedział cenowy", "Polyline": "Polilinia", "Reconnect": "Połącz ponownie", "Lock/Unlock": "Zablokuj/Odblokuj", "Price Channel_study": "Kanał cenowy", "Label Down": "Etykieta w dół", "Saturday": "Sobota", "Symbol Last Value": "Ostatnia Wartość Symbolu", "Above Bar": "Ponad świeczką", "Studies": "Analizy", "Color 0_input": "Kolor 0", "Add Symbol": "Dodaj Symbol", "maximum_input": "maksymalny", "Wed": "Śro", "Paris": "Paryż", "D_data_mode_delayed_letter": "D", "Sigma_input": "Sigma", "VWMA_study": "VWMA", "fastLength_input": "fastLength", "Time Levels": "Poziomy czasowe", "Width": "Szerokość", "Loading": "Ładowanie", "Template": "Szablon", "Use Lower Deviation_input": "Użyj niższego odchylenia", "Up Wave 3": "Maksymalny rzut 3", "Parallel Channel": "Kanał równoległy", "Time Cycles": "Cykle Czasu", "Second fraction part is invalid.": "Druga część frakcji jest nieważna.", "Divisor_input": "Dzielnik", "Down Wave 1 or A": "Fala spadkowa 1 lub A", "ROC_input": "ROC", "Dec": "Gru", "Ray": "Promień", "Extend": "Rozszerz", "length7_input": "długość7", "Bring Forward": "Przenieś poziom wyżej", "Bottom": "Dno", "Apply Elliot Wave Major": "Zastosuj falę Elliota - cykl podstawowy", "Undo": "Cofnij", "Original": "Oryginał", "Mon": "Pon", "Right Labels": "Prawe etykiety", "Long Length_input": "Długa Długość", "True Strength Indicator_study": "Prawdziwy wskaźnik siły", "%R_input": "%R", "There are no saved charts": "Brak zapisanych wykresów", "Instrument is not allowed": "Instrumenty nie są dostępne.", "bars_margin": "słupki", "Decimal Places": "Miejsca Dziesiętne", "Show Indicator Last Value": "Pokaż ostatnią wartość wskaźnika", "Initial capital": "Kapitał początkowy", "Show Angle": "Pokaż kąt", "Mass Index_study": "Wskaźnik Masy", "More features on tradingview.com": "Więcej funkcji na pl.tradingview.com", "Objects Tree...": "Drzewo Obiektów...", "Remove Drawing Tools & Indicators": "Usuń Narzędzia Rysowania i Wskaźniki", "Length1_input": "Długość1", "Always Invisible": "Zawsze niewidoczne", "Circle": "Okrąg", "Days": "Dni", "x_input": "x", "Save As...": "Zapisz Jako...", "Elliott Double Combo Wave (WXY)": "Kombinacja podwójna fal Elliotta (WXY)", "Parabolic SAR_study": "Paraboliczny SAR", "Any Symbol": "Dowolny symbol", "Variance": "Wariancja", "Stats Text Color": "Statystyki Kolor tekstu", "Minutes": "Minuty", "Williams Alligator_study": "Williams Alligator", "Projection": "Projekcja", "Custom color...": "Wybierz kolor...", "Jan": "Sty", "Jaw_input": "Jaw", "Right": "Prawy", "Help": "Pomoc", "Coppock Curve_study": "Krzywa Coppocka", "Reversal Amount": "Kwota odwrócenia.", "Reset Chart": "Resetuj Wykres", "Marker Color": "Kolor markera", "Sunday": "Niedziela", "Left Axis": "Oś lewa", "Open": "Otwarcie", "YES": "TAK", "longlen_input": "longlen", "Moving Average Exponential_study": "Wykładnicza średnia krocząca", "Source border color": "Źródło koloru obramowania", "Redo {0}": "Ponów {0}", "Cypher Pattern": "Formacja Cypher", "s_dates": "s", "Area": "Obszar", "Triangle Pattern": "Formacja Trójkąta", "Balance of Power_study": "Balans mocy", "EOM_input": "EOM", "Shapes_input": "Kształty", "Oversold_input": "Wyprzedany", "Apply Manual Risk/Reward": "Ręcznie dostosuj Ryzyko/Zysk", "Market Closed": "Rynek zamknięty", "Indicators": "Wskaźniki", "close": "Close", "q_input": "q", "You are notified": "Zostaniesz powiadomiony", "Font Icons": "Ikony Czcionek", "%D_input": "%D", "Border Color": "Kolor obramowania", "Offset_input": "Wyprzedzenie", "Risk": "Ryzyko", "Price Scale": "Skala cen", "HV_input": "HV", "Seconds": "Sekundy", "Start_input": "Start", "Elliott Impulse Wave (12345)": "Fala Elliotta - fala impulsu (12345)", "Hours": "Godziny", "Send to Back": "Cofnij", "Color 4_input": "Kolor 4", "Angles": "Kąty", "Prices": "Ceny", "Hollow Candles": "Puste Świece", "July": "Lipiec", "Create Horizontal Line": "Wstaw linię poziomą", "Minute": "Minuta", "Cycle": "Cykl", "ADX Smoothing_input": "Wygładzanie ADX", "One color for all lines": "Jeden kolor dla wszystkich linii", "m_dates": "m", "Settings": "Ustawienia", "Candles": "Świece", "We_day_of_week": "Śr", "Width (% of the Box)": "Szerokość (% ramki)", "Go to...": "Idź do...", "Pip Size": "Rozmiar Pip", "Wednesday": "Środa", "This drawing is used in alert. If you remove the drawing, the alert will be also removed. Do you want to remove the drawing anyway?": "Ten rysunek jest używany w ostrzeżeniu. Jeśli usuniesz rysunek, alert zostanie również usunięty. Czy pomimo to chcesz usunąć ten rysunek?", "Show Countdown": "Pokaż czas do końca", "Show alert label line": "Pokaż linię etykiet ostrzegawczych", "Down Wave 2 or B": "Fala spadkowa 2 lub B", "MA_input": "MA", "Length2_input": "Długość2", "not authorized": "brak autoryzacji", "Session Volume_study": "Session Volume", "Image URL": "URL Obrazka", "SMI Ergodic Oscillator_input": "Oscylator SMI Ergodic", "Show Objects Tree": "Pokaż Drzewo Obiektów", "Primary": "Główny", "Price:": "Cena:", "Bring to Front": "Przenieś na pierwszy plan", "Brush": "Pędzel", "Not Now": "Nie teraz", "Yes": "Tak", "C_data_mode_connecting_letter": "C", "SMALen4_input": "SMALen4", "Apply Default Drawing Template": "Zastosuj domyślny szablon rysowania", "Compact": "Kompaktowy", "Save As Default": "Zapisz jako domyślny", "Target border color": "Docelowy kolor obramowania", "Invalid Symbol": "Nieprawidłowy Symbol", "Inside Pitchfork": "Wewnątrz wskaźnika Pitchfork", "yay Color 1_input": "yay Kolor 1", "Quandl is a huge financial database that we have connected to TradingView. Most of its data is EOD and is not updated in real-time, however the information may be extremely useful for fundamental analysis.": "Quandl to ogromna baza danych finansowych, która jest połaczona z TradingView. Większość jej danych to EOD i nie jest aktualizowana w czasie rzeczywistym, jednak informacje mogą być niezwykle użyteczne dla podstawowej analizy.", "Hide Marks On Bars": "Ukryj znaki na świeczkach", "Cancel Order": "Anuluj zlecenie", "Hide All Drawing Tools": "Ukryj narzędzia do rysowania", "WMA Length_input": "Długość WMA", "Show Dividends on Chart": "Pokaż Dywidendy na wykresie", "Show Executions": "Pokaż egzekucje", "Borders": "Granice", "Remove Indicators": "Usuń Wskaźniki", "loading...": "ładowanie...", "Closed_line_tool_position": "Zamknięte", "Rectangle": "Prostokąt", "Change Resolution": "Zmień rozdzielczość", "Indicator Arguments": "Argumenty wskaźników", "Symbol Description": "Opis Symbolu", "Chande Momentum Oscillator_study": "Oscylator Momentum Chande", "Degree": "Stopień", " per order": " na transakcję", "Line - HL/2": "Linia - HL/2", "Supercycle": "Supercykl", "Jun": "Cze", "Least Squares Moving Average_study": "Średnia krocząca najmniejszych kwadratów", "Change Variance value": "Zmień wariancję", "powered by ": "Przygotowane przez ", "Source_input": "Źródło", "Change Seconds To": "Zmień sekundy do", "%K_input": "%K", "Scales Text": "Skaluj Tekst", "Please enter template name": "Wstaw nazwę szablonu", "Symbol Name": "Nazwa Symbolu", "Tokyo": "Tokio", "Events Breaks": "Przerwy na wydarzenia", "Study Templates": "Szablony badania", "Months": "Miesiące", "Symbol Info...": "Informacje o Symbolu...", "Elliott Wave Minor": "Fala Elliotta - cykl mniejszy", "Read our blog for more info!": "Przeczytaj nasz blog aby zdobyć więcej informacji!", "Measure (Shift + Click on the chart)": "Pomiar (Shift + Kliknij na wykres)", "Override Min Tick": "Zastąpienie Min Tick", "Show Positions": "Pokaż Pozycje", "Dialog": "Komunikat", "Add To Text Notes": "Dodaj notatkę", "Elliott Triple Combo Wave (WXYXZ)": "Kombinacja potrójna fal Elliotta (WXYXZ)", "Multiplier_input": "Mnożnik", "Risk/Reward": "Ryzyko/Nagroda", "Base Line Periods_input": "Okresy linii bazowych", "Show Dividends": "Pokaż Dywidendy", "Relative Strength Index_study": "(RSI) Wskaźnik Względnej Siły", "Modified Schiff Pitchfork": "Zmodyfikowany Schiff Pitchfork", "Top Labels": "Górne Etykiety", "Show Earnings": "Pokaż zyski", "Line - Open": "Linia - Otwarte", "Elliott Triangle Wave (ABCDE)": "Trójkątna fala Elliotta (ABCDE)", "Minuette": "Menuet", "Text Wrap": "Zawijanie tekstu", "Reverse Position": "Odwróć pozycje", "Elliott Minor Retracement": "Podrzędna korekta Elliota", "Th_day_of_week": "Czw", "Slash_hotkey": "ukośnik", "No symbols matched your criteria": "Brak symboli spełniających twoje kryteria", "Icon": "Ikona", "lengthRSI_input": "długośćRSI", "Tuesday": "Wtorek", "Teeth Length_input": "Długość Teeth", "Indicator_input": "Wskaźnik", "Open Interval Dialog": "Otwarte okno dialogowe przedziału", "Athens": "Ateny", "Fib Speed Resistance Arcs": "Łuki Fibonacciego - prędkość i opór", "Content": "Treść", "middle": "środek", "Lock Cursor In Time": "Zablokuj kursor w osi czasu", "Intermediate": "Pośredni", "Eraser": "Gumka", "Relative Vigor Index_study": "Relative Vigor Index", "Envelope_study": "Koperta", "Pre Market": "Pre-Market", "Horizontal Line": "Pozioma Linia", "O_in_legend": "Otwarcie", "Confirmation": "Potwierdzenie", "Lines:": "Linie:", "Hide Favorite Drawings Toolbar": "Ukryj pasek ulubionych narzędzi rysowania", "X Cross": "Krzyżyk X", "Profit Level. Ticks:": "Poziom zysku. Zaznaczone:", "Show Date/Time Range": "Pokaż Zasięg Daty/Czasu", "Level {0}": "Poziom {0}", "Favorites": "Ulubione", "Horz Grid Lines": "Poziome linie siatki", "-DI_input": "-DI", "Price Range": "Zakres Cen", "deviation_input": "odchylenie", "Account Size": "Rozmiar konta", "Value_input": "Wartość", "Time Interval": "Interwał czasowy", "Success text color": "Kolor tekstu w przypadku sukcesu", "ADX smoothing_input": "Wygładzanie ADX", "Order size": "Wielkość zamówienia", "Drawing Tools": "Narzędzia Rysowania", "Save Drawing Template As": "Zachowaj Szablon Rysowania Jako", "Traditional": "Tradycyjny", "Chaikin Money Flow_study": "Wskaźnik przepływów pieniężnych Chaikina", "Ease Of Movement_study": "Łatwość Ruchu", "Defaults": "Domyślne", "Percent_input": "Procent", "Interval is not applicable": "Interwał nie ma zastosowania", "short_input": "krótki", "Visual settings...": "Ustawienia wizualne ...", "RSI_input": "RSI", "Chatham Islands": "Wyspy Chatham", "Detrended Price Oscillator_input": "Detektor oscylatora cenowego", "Mo_day_of_week": "Pn", "Up Wave 4": "Maksymalny rzut 4", "center": "środek", "Vertical Line": "Linia Pionowa", "Show Splits on Chart": "Pokaż podziały na wykresie", "Sorry, the Copy Link button doesn't work in your browser. Please select the link and copy it manually.": "Przepraszamy, przycisk Kopiuj Link nie działa w Twojej przeglądarce. Proszę zaznaczyć link i skopiować go ręcznie.", "Levels Line": "Linia poziomów", "Events & Alerts": "Zdarzenia i alerty", "May": "Maj", "ROCLen4_input": "ROCLen4", "Aroon Down_input": "Aroon Dolny", "Add To Watchlist": "Dodaj do Ulubionych", "Total": "Razem", "Price": "Cena", "left": "lewo", "Lock scale": "Zablokuj skalę", "Limit_input": "Limit", "Change Days To": "Zmień dni na", "Price Oscillator_study": "Oscylator cenowy", "smalen1_input": "smalen1", "Drawing Template '{0}' already exists. Do you really want to replace it?": "Szablon rysunku \"{0}\" już istnieje. Czy chcesz go zastąpić?", "Show Middle Point": "Pokaż Punkt Środkowy", "KST_input": "KST", "Extend Right End": "Wydłuż prawy koniec", "Fans": "Fani", "Line - Low": "Linia - Minimum", "Price_input": "Cena", "Gann Fan": "Wachlarz Ganna", "Weeks": "Tygodnie", "McGinley Dynamic_study": "McGinley Dynamic", "Relative Volatility Index_study": "Względny wskaźnik płynności", "Source Code...": "Kod źródłowy", "PVT_input": "PVT", "Show Hidden Tools": "Pokaż ukryte narzędzia", "Hull Moving Average_study": "Średnia krocząca Hull'a", "Symbol Prev. Close Value": "Poprz.Wartość Zamknięcia Symbolu", "{0} chart by TradingView": "{0} wykres od TradingView", "Right Shoulder": "Prawe ramię", "Remove Drawing Tools": "Usuń Narzędzia Rysowania", "Friday": "Piątek", "Zero_input": "Zero", "Company Comparison": "Porównanie Spółek", "Stochastic Length_input": "Długość Stochastic", "mult_input": "mult", "URL cannot be received": "Adres nieosiągalny", "Success back color": "Kolor tła w przypadku sukcesu", "E_data_mode_end_of_day_letter": "E", "Trend-Based Fib Extension": "Rozszerzenie Fib na podstawie trendów", "Top": "Szczyt", "Double Curve": "Podwójna krzywa", "Stochastic RSI_study": "Stochastic RSI", "Oops!": "Ups!", "Horizontal Ray": "Promień poziomy", "smalen3_input": "smalen3", "Symbol Labels": "Etykiety Symbolu", "Script Editor...": "Edytor skryptów...", "Are you sure?": "Jesteś pewien?", "Trades on Chart": "Transakcje na wykresie", "Listed Exchange": "Wymieniona Giełda", "Error:": "Błąd:", "Fullscreen mode": "Tryb pełnoekranowy", "Add Text Note For {0}": "Dodaj notatkę tekstową dla {0}", "K_input": "K", "Do you really want to delete Drawing Template '{0}' ?": "Czy na pewno chcesz usunąć szablon rysunku '{0}'?", "ROCLen3_input": "ROCLen3", "Micro": "Mikro", "Text Color": "Kolor Tekstu", "Rename Chart Layout": "Usuń Układ Wykresu", "Built-ins": "Wbudowane", "Background color 2": "Kolor tła 2", "Drawings Toolbar": "Pasek z narzędziami do rysowania", "New Zealand": "Nowa Zelandia", "CHOP_input": "CHOP", "Apply Defaults": "Zastosuj domyślne", "% of equity": "% kapitału", "Extended Alert Line": "Linia alertu powiększona", "Note": "Uwaga", "Moving Average Channel_study": "Kanał średnich kroczących", "Show": "Pokaż", "{0} bars": "{0} słupki", "Lower_input": "Dolny", "Created ": "Stworzone ", "Warning": "Ostrzeżenie", "Elder's Force Index_study": "Starszy Force Index", "Show Earnings on Chart": "Pokaż Zarobki na Wykresie", "ATR_input": "ATR", "Low": "Minimum", "Bollinger Bands %B_study": "Wstęgi Bollingera %B", "Time Zone": "Strefa Czasowa", "right": "prawo", "Wrong value": "Nieprawidłowa wartość", "Upper Band_input": "Górna część", "Sun": "Nie", "Rename...": "Zmień nazwę", "start_input": "start", "No indicators matched your criteria.": "Brak wskaźników spełniających twoje kryteria", "Commission": "Prowizja", "Down Color": "Kolor w dół", "Short length_input": "Krótka długość", "Kolkata": "Kalkuta", "Triple EMA_study": "Potrójne EMA", "Technical Analysis": "Analiza Techniczna", "Show Text": "Pokaż Tekst", "Channel": "Kanał", "FXCM CFD data is available only to FXCM account holders": "Dane FXCM CFD są dostępne tylko dla posiadaczy kont w FXCM", "Lagging Span 2 Periods_input": "Okresy spowolnienia długości 2", "Connecting Line": "Linia łącząca", "Seoul": "Seul", "bottom": "dół", "Teeth_input": "Teeth", "Sig_input": "Sig", "Open Manage Drawings": "Otwarte Zarządzanie Rysunkami", "Save New Chart Layout": "Zachowaj Nowy Wygląd Wykresu", "Fib Channel": "Kanał Fibonacciego", "Save Drawing Template As...": "Zachowaj Szablon Rysowania Jako...", "Minutes_interval": "Minuty", "Up Wave 2 or B": "Maksymalny rzut 2 lub B", "Columns": "Kolumny", "Directional Movement_study": "Ruch kierunkowy", "roclen2_input": "roclen2", "Apply WPT Down Wave": "Zastosuj zasięg cenowy dla fali spadkowej", "Not applicable": "Nie dotyczy", "Bollinger Bands %B_input": "Wstęgi Bollingera %B", "Default": "Domyślnie", "Template name": "Nazwa Szablonu", "Indicator Values": "Wartość wskaźnika", "Lips Length_input": "Długość Lips", "Use Upper Deviation_input": "Użyj górnego odchylenia", "L_in_legend": "najnizszy punkt", "Remove custom interval": "Usuń niestandardowy interwał", "shortlen_input": "shortlen", "Quotes are delayed by {0} min": "Cytowanie jest opóźnione o {0} min.", "Hide Events on Chart": "Ukryj zdarzenia na wykresie", "Cash": "Gotówka", "Profit Background Color": "Kolor Tła Zysku", "Bar's Style": "Styl Słupków", "Exponential_input": "Wykładniczy", "Down Wave 5": "Fala spadkowa 5", "Previous": "Poprzednie", "Stay In Drawing Mode": "Pozostań w Trybie Rysowania", "Comment": "Komentarz", "Connors RSI_study": "Connors RSI", "Bars": "Słupki", "Show Labels": "Pokaż Etykiety", "Flat Top/Bottom": "", "Symbol Type": "Typ Symbolu", "December": "Grudzień", "Lock drawings": "Zablokuj możliwość rysowania", "Border color": "Kolor obramowania", "Change Seconds From": "Zmień sekundy od", "Left Labels": "Lewe Etykiety", "Insert Indicator...": "Wstaw Wskaźnik...", "ADR_B_input": "ADR_B", "Paste %s": "Wklej %s", "Change Symbol...": "Zmień Symbol...", "Timezone": "Strefa czasowa", "Invite-only script. You have been granted access.": "Otrzymałeś dostęp do skryptu prywatnego", "Color 6_input": "Kolor 6", "Oct": "Paź", "ATR Length": "Długość ATR", "{0} financials by TradingView": "{0} dane finansowe TradingView", "Extend Lines Left": "Rozciągnij linie w lewo", "Feb": "Lut", "Transparency": "Przezroczystość", "No": "Nie", "June": "Czerwiec", "Cyclic Lines": "Linie cyklu.", "length28_input": "długość28", "ABCD Pattern": "Formacja ABCD", "When selecting this checkbox the study template will set \"__interval__\" interval on a chart": "Zaznaczając to pole wyboru, szablon testu ustawi interwał \"__interval__\" na wykresie", "Add": "Dodaj", "OC Bars": "Słupki OC", "Millennium": "Milenium", "On Balance Volume_study": "Waga woluminu", "Apply Indicator on {0} ...": "Wstaw wskaźnik na {0} ...", "NEW": "Nowy", "Chart Layout Name": "Nazwa układu wykresu", "Up bars": "Słupki w górę", "Hull MA_input": "Hull MA", "Lock Scale": "Zablokuj Skalę", "distance: {0}": "dystans: {0}", "Extended": "Rozszerzone", "Square": "Kwadrat", "Three Drives Pattern": "Formacja Trzech Indian", "NO": "NIE", "Top Margin": "Margines Górny", "Up fractals_input": "Górne fraktale", "Insert Drawing Tool": "Wstaw Narzędzie Rysowania", "OHLC Values": "Wartości OHLC", "Correlation_input": "Korelacja", "Session Breaks": "Przerwy w sesji", "Add {0} To Watchlist": "Dodaj {0} do Ulubionych", "Anchored Note": "Przyczepiona notatka", "lipsLength_input": "lipsLength", "low": "niski", "Apply Indicator on {0}": "Wstaw wskaźnik na {0}", "UpDown Length_input": "Zakres w dół", "Price Label": "Etykieta Ceny", "November": "Listopad", "Tehran": "Teheran", "Balloon": "Balon", "Track time": "Czas utworu", "Background Color": "Kolor Tła", "an hour": "godzina", "Right Axis": "Prawa oś", "D_data_mode_delayed_streaming_letter": "D", "VI -_input": "VI -", "slowLength_input": "slowLength", "Click to set a point": "Kliknij, aby ustawić punkt", "Save Indicator Template As...": "Zapisz Szablon Wskaźnika Jako...", "Arrow Up": "Strzałka w górę", "n/a": "n.d.", "Indicator Titles": "Nazwa wskaźnika", "Failure text color": "Błędny kolor tekstu", "Sa_day_of_week": "So", "Net Volume_study": "Wolumen netto", "Error": "Błąd", "Edit Position": "Edytuj pozycję", "RVI_input": "RVI", "Centered_input": "Wyśrodkowany", "Recalculate On Every Tick": "Ponownie przelicz po każdym zaznaczeniu", "Left": "Lewo", "Simple ma(oscillator)_input": "Simple ma (oscylator)", "Compare": "Porównaj", "Fisher Transform_study": "Transformacja Fishera", "Show Orders": "Pokaż Zlecenia", "Zoom In": "Przybliż", "Length EMA_input": "Długość EMA", "Enter a new chart layout name": "Wprowadź nową nazwę dla tego układu wykresów", "Signal Length_input": "Długość sygnału", "FAILURE": "PORAŻKA", "Point Value": "Wartość punktowa", "D_interval_short": "D", "MA with EMA Cross_study": "Przecięcie MA z EMA", "Label Up": "Etykieta w górę", "Close": "Zamknięcie", "ParabolicSAR_input": "ParabolicSAR", "Log Scale_scale_menu": "Skala Logarytmiczna", "MACD_input": "MACD", "Do not show this message again": "Nie pokazuj ponownie tego komunikatu", "No Overlapping Labels": "Brak nakładających się etykiet", "Arrow Mark Left": "Strzałka w lewo", "Slow length_input": "Powolna długość", "Line - Close": "Linia - zamknięcia", "Confirm Inputs": "Potwierdź wprowadzone", "Open_line_tool_position": "Otwarte", "Lagging Span_input": "Spowolnienie długości", "Cross": "Krzyżyk", "Thursday": "Czwartek", "Arrow Down": "Strzałka w dół", "Elliott Correction Wave (ABC)": "Korekcyjna fala Elliotta (ABC)", "Error while trying to create snapshot.": "Podczas próby utworzenia zrzutu wystąpił błąd.", "Label Background": "Tło Etykiety", "Templates": "Szablony", "Please report the issue or click Reconnect.": "Proszę zgłosić problem lub kliknąć Połącz ponownie.", "Normal": "Normalny", "Signal Labels": "Etykiety sygnału", "Delete Text Note": "Usuń notatkę tekstową", "compiling...": "kompilacja...", "Detrended Price Oscillator_study": "Detektor oscylatora cenowego", "Color 5_input": "Kolor 5", "Fixed Range_study": "Fixed Range", "Up Wave 1 or A": "Maksymalny rzut 1 lub A", "Scale Price Chart Only": "Tylko wykres skali ceny", "Unmerge Up": "Cofnij Złączenie W Górę", "auto_scale": "auto", "Short period_input": "Krótki okres", "Background": "Tło", "Up Color": "Kolor w górę", "Apply Elliot Wave Intermediate": "Zastosuj falę Elliota - cykl średni", "VWMA_input": "VWMA", "Lower Deviation_input": "Dolne odchylenie", "Save Interval": "Zapisz interwał", "February": "Luty", "Reverse": "Odwróć", "Oops, something went wrong": "Oops, coś poszło nie tak", "Add to favorites": "Dodaj do ulubionych", "Median": "Mediana", "ADX_input": "ADX", "Remove": "Usuń", "len_input": "len", "Arrow Mark Up": "Strzałka w górę", "April": "Kwiecień", "Active Symbol": "Aktywny Symbol", "Extended Hours": "Rozszerzone godziny", "Crosses_input": "Krzyże", "Middle_input": "Środek", "Sync drawing to all charts": "Synchronizuj rysunek z wszystkimi wykresami", "LowerLimit_input": "Dolny limit", "Know Sure Thing_study": "Zyskaj pewność", "Copy Chart Layout": "Kopiuj Wygląd Wykresu", "Compare...": "Porównaj...", "1. Slide your finger to select location for next anchor
    2. Tap anywhere to place the next anchor": "1. Przesuń palcem, żeby wybrać lokalizację dla następnej kotwicy
    2. Stuknij w dowolnym miejscu, aby umieścić następną kotwicę", "Text Notes are available only on chart page. Please open a chart and then try again.": "Notatki tekstowe są dostępne tylko na stronie wykresu. Otwórz wykres i spróbuj podobnie.", "Color": "Kolor", "Aroon Up_input": "Aroon Górny", "Singapore": "Singapur", "Scales Lines": "Skaluj Linie", "Type the interval number for munute charts (i.e. 5 if it is going to be a five minute chart). Or number plus letter for H (Hourly), D (Daily), W (Weekly), M (Monthly) intervals (i.e. D or 2H)": "Wpisz numer interwału dla wykresów minut (tj. 5, jeśli ma to być wykres pięciu minut). Lub numer plus litera dla H (Godzinowo), D (dziennie), W (co tydzień), M (co miesiąc) (tzn. D lub 2H)", "Ellipse": "Elipsa", "Up Wave C": "Maksymalny rzut C", "Show Distance": "Pokaż dystans", "Risk/Reward Ratio: {0}": "Współczynnik Ryzyko/Zysk: {0}", "Restore Size": "Przywróć Rozmiar", "Williams Fractal_study": "Williams Fractal", "Merge Up": "Połącz w Górę", "Right Margin": "Prawy Margines", "Moscow": "Moskwa", "Warsaw": "Warszawa"} \ No newline at end of file diff --git a/charting_library/static/localization/translations/pt.json b/charting_library/static/localization/translations/pt.json index 40b3ab74..4d63fb73 100644 --- a/charting_library/static/localization/translations/pt.json +++ b/charting_library/static/localization/translations/pt.json @@ -1 +1 @@ -{"ticks_slippage ... ticks": "ticks", "Months_interval": "Meses", "Percent_input": "Percent", "Hide Events on Chart": "Ocular Eventos no Gráfico", "RSI Length_input": "RSI Length", "month": "mês", "London": "Londres", "roclen1_input": "roclen1", "Unmerge Down": "desmesclar para baixo", "Percents": "Percentuais", "Search Note": "Procurar Nota", "Minor": "Menor", "Do you really want to delete Chart Layout '{0}' ?": "Você quer realmente deletar o Leiaute de Gráfico '{0}'?", "Quotes are delayed by {0} min and updated every 30 seconds": "Cotações estão atrasadas {0} min e atualizadas em tempo real", "June": "Junho", "Magnet Mode": "Modo Magnético", "Grand Supercycle": "Grand Superciclo", "OSC_input": "OSC", "Hide alert label line": "Esconder linha de descrição do alerta", "Volume_study": "Volume", "Lips_input": "Lips", "Show real prices on price scale (instead of Heikin-Ashi price)": "Mostrar preços reais na escala de preços (em vez de preço de Heikin-Ashi)", "Histogram": "Histograma", "Base Line_input": "Base Line", "Step": "Degraus", "Elliott Wave Circle": "Ciclo de Ondas de Elliot", "Fib Time Zone": "Zonas Temporais de Fibonacci", "SMALen2_input": "SMALen2", "Bollinger Bands_study": "Bandas de Bollinger", "Show/Hide": "Visualizar/Esconder", "Cancel Order": "Cancelar Ordem", "Sig_input": "Sig", "Move Up": "Mover para Cima", "Sigma_input": "Sigma", "This indicator cannot be applied to another indicator": "Este indicador não pode ser aplicado a outro indicador", "Gann Square": "Quadrado de Gann", "Count_input": "Count", "Full Circles": "Círculos Completos", "Industry": "Indústria", "SMALen1_input": "SMALen1", "Cross_chart_type": "Cruz", "Target Color:": "Cor do Objetivo:", "a day": "um dia", "Pitchfork": "Garfo", "Accumulation/Distribution_study": "Acúmulo/Distribuição", "Rate Of Change_study": "Taxa de Variação (ROC)", "Risk/Reward short": "Risco/Retorno Vendedor", "in_dates": "em", "Color 7_input": "Cor 7", "Change Average HL value": "Mudança no Valor Médio de HL", "Show Labels": "Visualizar Legendas", "Scales Properties": "Configurações da Escala...", "Trend-Based Fib Time": "Tempo de Fibonacci Baseado na Tendência", "Remove All Indicators": "Remover todos os Indicadores", "Oscillator_input": "Oscilador", "Last Modified": "Última Modificação", "yay Color 0_input": "yay Color 0", "Labels": "Legendas", "Chande Kroll Stop_study": "Parada de Chande Kroll", "Hours_interval": "Horas", "Scale Right": "Escala Direita", "Money Flow_study": "Fluxo Monetário", "siglen_input": "siglen", "Indicator Labels": "Legendas do Indicador", "Tuesday": "Terça", "__specialSymbolOpen__Tomorrow at__specialSymbolClose__ __dayTime__": "__specialSymbolOpen__Amanhã em__specialSymbolClose____dayTime__", "Toggle Percentage": "Percentagem", "Remove All Drawing Tools": "Remover todas as ferramentas de desenho", "Remove all line tools for ": "Remover todas as ferramentas de linhas para ", "Linear Regression Curve_study": "Curva de Regressão Linear", "Symbol_input": "Símbolo", "Currency": "Moeda", "Upper Deviation_input": "Upper Deviation", "Rename Chart Layout": "Renomear Gráfico", "__specialSymbolOpen__Last__specialSymbolClose__ __dayName__ __specialSymbolOpen__at__specialSymbolClose__ __dayTime__": "__specialSymbolOpen__Último__specialSymbolClose____dayName____specialSymbolOpen__em__specialSymbolClose____dayTime__", "Save Chart Layout": "Salvar Layout do Gráfico", "Number Of Line": "Número da Linha", "Label": "Legenda", "Post Market": "After-Market", "second": "segundo", "Any Number": "Qualquer Número", "smoothD_input": "smoothD", "Falling_input": "Falling", "Percentage": "Porcentagem", "Donchian Channels_study": "Canais Donchian", "Entry price:": "Preço de Entrada:", "RSI Source_input": "RSI Source", "Head": "Cabeça", "Toggle Auto Scale": "Escala Automática", " per contract": "  por contrato", "Open Manage Drawings": "Abrir Gerenciamento de Desenhos", "Ichimoku Cloud_study": "Nuvem Ichimoku", "jawLength_input": "jawLength", "Toggle Log Scale": "Escala Logarítmica", "Apply Elliot Wave Major": "Aplicar Onda de Elliott Maior", "Grid": "Grelha", "Mass Index_study": "Mass Index", "Slippage": "Derrapagem", "Smoothing_input": "Smoothing", "Color 3_input": "Cor 3", "Jaw Length_input": "Jaw Length", "Almaty": "Almtay", "Inside": "Interior", "Delete all drawing for this symbol": "Remover todos os desenhos para este símbolo", "Quotes are delayed by 10 min and updated every 30 seconds": "Cotações estão atrasadas 15 min e atualizadas a cada 30 segundos", "Keltner Channels_study": "Canais Keltner", "Long Position": "Posição Compradora", "Bands style_input": "Bands style", "Undo {0}": "Desfazer", "With Markers": "Com Marcadores", "Momentum_study": "Momentum", "MF_input": "MF", "On Balance Volume_study": "On Balance Volume", "Switch to the next chart": "Mudar para o próximo gráfico", "Change Hours To": "Mudar Horas Para", "charts by TradingView": "gráficos por TradingView", "Long length_input": "Long length", "Flipped": "Virar", "Disjoint Angle": "Deslocamento de Ângulo", "Supermillennium": "Supermilênio", "W_interval_short": "S", "Color 6_input": "Cor 6", "Log Scale": "Escala Logarítmica", "Line - High": "Linha - Max", "Zurich": "Zurique", "Equality Line_input": "Equality Line", "Open": "Abertura", "Heikin Ashi": "Heiken Ashi", "Line": "Linha", "Session": "Sessão", "Down fractals_input": "Down fractals", "like_plural": "curtidas", "Fib Retracement": "Retração de Fibonacci", "smalen2_input": "smalen2", "isCentered_input": "isCentered", "Border": "Contorno", "Klinger Oscillator_study": "Oscilador de Klinger", "Absolute": "Absoluto", "Style": "Estilo", "Show Left Scale": "Mostrar Escala à Esquerda", "SMI Ergodic Indicator/Oscillator_study": "SMI Ergodic Indicator/Oscillator", "Istanbul": "Istambul", "Cross": "Cruz", "Last available bar": "Última barra disponível", "Manage Drawings": "Organizar Desenhos", "Analyze Trade Setup": "Analisar Sistema de Trade", "No drawings yet": "Sem Desenhos", "Chande MO_input": "Chande MO", "Copy link": "Copiar link", "TRIX_study": "Média Móvel Tripla (TRIX)", "MACD_study": "MACD", "RVGI_input": "RVGI", "Realtime": "Tempo real", "Last edited ": "Editado por último ", "signalLength_input": "signalLength", "Middle_input": "Middle", "Reset Settings": "Reinicializar configurações", "PnF": "P&F", "d_dates": "d", "Point & Figure": "Ponto & Figura", "August": "Agosto", "Recalculate After Order filled": "Recalcular Após Preenchimento de Ordem", "Source_compare": "Fonte", "Correlation Coefficient_study": "Coeficiente de Correlação", "Delayed": "Com atraso", "Bottom Labels": "Legendas Inferiores", "Text color": "Cor do texto", "Levels": "Níveis", "Short Length_input": "Short Length", "teethLength_input": "teethLength", "Failure text color": "Cor do Texto (FRACASSO)", "instrument is not allowed": "instrumento não permitido", "FAILURE": "FRACASSO", "Open {{symbol}} Text Note": "Abrir anotações sobre {{symbol}}", "October": "Outubro", "Lock All Drawing Tools": "Bloquear todos os Desenhos", "Target border color": "Cor do contorno do objetivo", "Right End": "Extrema Direita", "Show Symbol Last Value": "Mostrar Último Valor do Símbolo", "Head & Shoulders": "Ombro Cabeça Ombro", "Do you really want to delete Study Template '{0}' ?": "Você quer realmente deletar o Modelo de Estudo '{0}'?", "Favorite Drawings Toolbar": "Barra de ferramentas dos desenhos favoritos", "Properties...": "Configurações...", "MA Cross_study": "Cruzamento de MM", "Trend Angle": "Ângulo de Tendência", "Snapshot": "Captura", "Crosshair": "Mira", "Signal line period_input": "Signal line period", "Timezone/Sessions Properties...": "Fuso Horário/Sessão", "Line Break": "Quebra de linha", "Quantity": "Quantidade", "Price Volume Trend_study": "Tendência de Preço Volume (PVT)", "Extend Left": "Estender para a Esquerda", "hour": "hora", "Scales": "Escalas", "Delete chart layout": "Deletar layout de gráfico", "Text": "Texto", "F_data_mode_forbidden_letter": "F", "Risk/Reward long": "Risco/Retorno Comprador", "Apr": "Аbr", "Long RoC Length_input": "Long RoC Length", "Length3_input": "Length3", "Upper_input": "Upper", "Madrid": "Маdrid", "Use one color": "Usar uma cor", "Chart Properties": "Configurações do Gráfico", "Exit Full Screen (ESC)": "Sair do Modo Tela Cheia (ESC)", "Show Bars Range": "Visualizar Intervalo de Barras", "Show Economic Events on Chart": "Mostrar Eventos Econômicos no Gráfico", "%s ago_time_range": "%s atrás", "Zoom In": "Aumentar Zoom", "Failure back color": "Cor do Fundo (FRACASSO)", "Below Bar": "Abaixo da Barra", "Coordinates": "Coordenadas", "Time Scale": "Escala de tempo", "

    Only D, W, M intervals are supported for this symbol/exchange. You will be automatically switched to a D interval. Intraday intervals are not available because of exchange policies.

    ": "

    Apenas os intervalos D, S, M são suportados para este símbolo / bolsa. Você será automaticamente levado para o intervalo D. Intervalos intradiários não estão disponíveis por causa de políticas da bolsa.", "high": "máxima", "Date Range": "Intervalo de Tempo", "Min Move": "Mov. Mínimo", "Price format is invalid.": "O formato do preço não é válido.", "Show Price": "Visualizar Preço", "Level_input": "Nível", "Commodity Channel Index_study": "Índice de Canal de Commodities (CCI)", "Elder's Force Index_input": "Elder's Force Index", "Scales Properties...": "Configurações da Escala...", "Format": "Configurar", "Color bars based on previous close": "Colorir barra de acordo com o fecho anterior", "Change band background": "Mudar fundo da faixa", "Marketplace Add-ons": "Complementos do Marketplace", "Adjust Scale": "Ajustar Escala", "Anchored Text": "Texto Bloqueado", "Edit {0} Alert...": "Editar Alerta {0}...", "Text:": "Texto:", "Aroon_study": "Aroon", "show MA_input": "show MA", "h_dates": "H", "Short Position": "Posição Vendedora", "HLC Bars": "Barras HLC", "Change Interval...": "Alterar Intervalo...", "Apply Default": "Aplicar Padrão", "SMALen3_input": "SMALen3", "Average Directional Index_study": "Average Directional Index", "Fr_day_of_week": "Sexta", "Invite-only script. Contact the author for more information.": "Script sob convite.Contate o autor para mais informações.", "Curve": "Curva", "a year": "um ano", "H_in_legend": "Max", "Bars Pattern": "Padrão de Barras", "D_input": "D", "Right Labels": "Legendas à Direita", "Change Interval": "Alterar Intervalo", "p_input": "p", "Chart layout name": "Nome do layout do gráfico", "Fib Circles": "Círculos de Fibonacci", "Apply Manual Decision Point": "Aplicar Ponto de Decisão Manual", "Dot": "Ponto", "Target back color": "Cor do fundo do objetivo", "All": "Tudo", "Show Positions": "Mostrar Posições", "orders_up to ... orders": "orders", "Lead 2_input": "Lead 2", "Save image": "Salvar Imagem", "Fundamentals": "Fundamentos", "Unlock": "Desbloquear", "Up Wave 2 or B": "Onda de alta 2 ou B", "Box Size": "Tamanho da caixa", "Navigation Buttons": "Botões de Navegação", "Miniscule": "Minúsculo", "Apply": "Aplicar", "Precise Labels": "Etiquetas Precisas", "Sine Line": "Senóide", "{0} financials by TradingView": "{0} Finanças por TradingView", "%d day": "%d dia", "Hide": "Esconder", "Bottom": "Rodapé", "Target text color": "Cor do texto do objetivo", "Scale Left": "Escala à Esquerda", "Elliott Wave Subminuette": "Onda de Elliot de Sub-Minueto", "Down Wave C": "Onda de baixa C", "Countdown": "Contagem regressiva", "Variance": "Variação", "Source back color": "Cor do fundo da base", "Sao Paulo": "São Paulo", "Oct": "Оut", "Apply Elliot Wave Minor": "Aplicar Onda de Elliott Menor", "Inputs": "Entrada", "Conversion Line_input": "Linha de Conversão", "March": "Março", "Su_day_of_week": "Dom", "Up fractals_input": "Up fractals", "Regression Trend": "Regressão de Tendência", "Auto Scale": "Escala Automática", "Symbol Description": "Descrição do instrumento", "Double EMA_study": "Média Móvel Exponencial Dupla (Double EMA)", "minute": "minuto", "Price Oscillator_study": "Oscilador de Preço", "Sync drawings to all charts": "Sincronizar desenhos em todos os gráficos", "Chop Zone_study": "Chop Zone", "Stop Color:": "Cor do Stop:", "Stay in Drawing Mode": "Manter em Modo de Desenho", "Bottom Margin": "Margem Inferior", "Save Chart Layout saves not just some particular chart, it saves all charts for all symbols and intervals which you are modifying while working with this Layout": "Salvar Layout do Gráfico não salva apenas algum gráfico em particular, salva todos os gráficos para todos os símbolos e intervalos que você está modificando enquanto trabalha com este Layout.", "Average True Range_study": "Média da Amplitude de Variação (ATR)", "Max value_input": "Valor máximo", "MA Length_input": "MA Length", "Invite-Only Scripts": "Script sob convite", "Time Interval": "Intervalo de Tempo", "UpperLimit_input": "UpperLimit", "sym_input": "sym", "DI Length_input": "DI Length", "Script Editor...": "Editor de Script...", "Extend Lines": "Estender Linhas", "SMI_input": "SMI", "Change Days To": "Mudar Dias Para", "Square": "Quadrado", "Basis_input": "Basis", "Moving Average_study": "Média Móvel", "lengthStoch_input": "lengthStoch", "Taipei": "Тaipé", "Objects Tree": "Lista de Objetos", "Remove from favorites": "Remover dos favoritos", "Copy": "Copiar", "Scale Series Only": "Apenas Escala de Preços", "Simple": "Simples", "Report a data issue": "Reportar um erro com os dados", "Arnaud Legoux Moving Average_study": "Arnaud Legoux Média Móvel", "Technical Analysis": "Análise Técnica", "Lower Band_input": "Lower Band", "Verify Price for Limit Orders": "Verificar Preços para Ordens Limite", "VI +_input": "VI +", "Line Width": "Comprimento da linha", "Lead 1_input": "Lead 1", "Always Show Stats": "Sempre Mostrar Estatísticas", "Down Wave 4": "Onda de baixa 4", "Down Wave 5": "Onda de baixa 5", "Simple ma(signal line)_input": "Simple ma(signal line)", "Ray": "Raio", "Public Library": "Biblioteca Pública", " Do you really want to delete Drawing Template '{0}' ?": " Você quer realmente deletar o Modelo de Desenho '{0}'?", "Down Wave 3": "Onda de baixa 3", "Left Shoulder": "Ombro Esquerdo.", "Close message": "Fechar mensagem", "UTC": "Horario Universal(UTC)", "Show Drawings Toolbar": "Mostrar Ferramentas de Desenho", "Chaikin Oscillator_study": "Oscilador Chaikin", "Balloon": "Balão", "Market Open": "Mercado aberto", "Know Sure Thing_study": "Know Sure Thing (KST)", "Color Theme": "Padrão de Cor", "Centered_input": "Centered", "Bollinger Bands Width_input": "Bollinger Bands Width", "Apply Indicator on {0} ...": "Aplicar Indicador em {0} ...", "Fib Speed Resistance Arcs": "Arcos de Fibonacci", "Error occured while publishing": "Erro ao publicar", "Fisher_input": "Fisher", "Color 1_input": "Cor 1", "Moving Average Weighted_study": "Média Móvel Ponderada", "Save": "Salvar", "Type": "Tipo", "Chart Layout Name": "Nome do Layout do Gráfico", "Short period_input": "Short period", "Load Chart Layout": "Carregar Layout do Gráfico", "Show Values": "Mostrar Valores", "Fib Speed Resistance Fan": "Leque de Fibonacci", "Compare": "Comparar", "This chart layout has more than 1000 drawings, which is a lot! This may negatively affect performance, storage and publishing. We recommend to remove some drawings to avoid potential performance issues.": "Este layout gráfico tem mais de 1000 desenhos, o que é muito! Isso pode afetar negativamente o desempenho, armazenamento e publicação. Recomendamos remover alguns desenhos para evitar potenciais problemas de desempenho.", "Left End": "Extrema Esquerda", "%d year": "%d ano", "Always Visible": "Sempre Visível", "S_data_mode_snapshot_letter": "S", "post-market": "pos-mercado", "Change Minutes To": "Mudar Minutos Para", "Earnings breaks": "Anúncio de Receita", "Do not ask again": "Não pergunte novamente", "Tue": "Terça", "smalen4_input": "smalen4", "CCI_input": "CCI", "Unmerge Up": "desmesclar para cima", "increment_input": "increment", "(H + L)/2": "(Max+Min)/2", "Source Code...": "Código Fonte...", "XABCD Pattern": "Padrão XABCD", "Schiff Pitchfork": "Garfo de Schiff", "powered by {0}": "patrocinado por {0}", "DEMA_input": "DEMA", "NV_input": "NV", "Choppiness Index_study": "Índice de Choppiness", "Study Template '{0}' already exists. Do you really want to replace it?": "Modelo de Estudo '{0}' já existe. Você deseja substituí-lo?", "Merge Down": "Agrupar para baixo", "Th_day_of_week": "Quinta", "Studies": "Estudos", "eod delayed": "Ao fechamento do dia com atraso", "Delete": "Apagar", "Traditional": "Tradicional", "in %s_time_range": "em %s", "percent_input": "percent", "September": "Setembro", "Length_input": "Período", "Avg HL in minticks": "HL médio em minticks", "Accumulation/Distribution_input": "Accumulation/Distribution", "Sync": "Sincronizar", "C_in_legend": "Fch", "Weeks_interval": "Semanas", "smoothK_input": "smoothK", "Percentage_scale_menu": "Percentagem", "Change Extended Hours": "Mudar Horas Estendidas", "MOM_input": "MOM", "h_interval_short": "h", "Rotated Rectangle": "Retângulo Rotativo", "Modified Schiff": "Schiff Modificado", "Symbol": "Símbolo", "Send Backward": "Enviar a Trás", "Mexico City": "Cidade do México", "TRIX_input": "TRIX", "Show Price Range": "Visualizar Intervalo de Preços", "Elliott Major Retracement": "Correção Maior de Elliot", "Notification": "Notificação", "Fri": "Sexta", "just now": "agora mesmo", "Forecast": "Previsão", "hour_plural": "horas", "Fraction part is invalid.": "Fração inválida.", "Connecting": "Conectando", "Ghost Feed": "Candles Fatasma", "Histogram_input": "Histograma", "The Extended Trading Hours feature is available only for intraday charts": "A ferramenta de operação em horários estendidos está disponível somente em gráficos intraday.", "open": "abertura", "StdDev_input": "StdDev", "Change Minutes From": "Mudar Minutos De", "Relative Strength Index_study": "Indice de Força Relativa", "Interval is not applicable": "Intervalo não pode ser aplicado", "My Scripts": "Meus Scripts", "Monday": "Segunda", "-DI_input": "-DI", "short_input": "short", "top": "topo", "a month": "por mês", "Precision": "Precisão", "depth_input": "profundidade", "Please enter chart layout name": "Por favor coloque o nome do layout do gráfico", "Mar": "Маr", "Offset": "Desvio", "Date": "Data", "Format...": "Configurar...", "__dayName__ __specialSymbolOpen__at__specialSymbolClose__ __dayTime__": "__dayName____specialSymbolOpen__em__specialSymbolClose____dayTime__", "Toggle Maximize Pane": "Habilitar Painel de Maximização", "Periods_input": "Periods", "Zig Zag_study": "Indicador Zig Zag", "Actual": "Atual", "SUCCESS": "SUCESSO", "Detrended Price Oscillator_input": "Detrended Price Oscillator", "{0} copy": "{0} copiar", "length_input": "período", "Close Position": "Fechar Posição", "Price Line": "Linha de Preço", "Area With Breaks": "Área com Quebras", "Zoom Out": "Diminuir Zoom", "Stop Level. Ticks:": "Distância do Stop. Ticks:", "Allow up to": "Permite até", "Visual Order": "Ordem Visual", "Warning": "Aviso", "__specialSymbolOpen__Yesterday at__specialSymbolClose__ __dayTime__": "__specialSymbolOpen__Ontem em__specialSymbolClose____dayTime__", "Stop Background Color": "Cor do fundo do stop", "Slow length_input": "Slow length", "Conversion Line Periods_input": "Conversion Line Periods", "Sector": "Setor", "powered by TradingView": "patrocinado por TradingView", "Stochastic_study": "Oscilador Estocástico", "Apply WPT Down Wave": "Aplicar Onda WPT de Baixa", "Marker Color": "Cor do Marcador", "TEMA_input": "TEMA", "Apply WPT Up Wave": "Aplicar Onda WPT de Alta", "Min Move 2": "Mov. Mínimo 2", "Directional Movement_study": "Movimento Direcional", "Extend Left End": "Estender para a Extrema Esquerda", "Advance/Decline_study": "Avanço/Declínio", "New York": "Nova York", "Flag Mark": "Bandeira", "Drawings": "Desenhos", "Fast length_input": "Fast length", "Cancel": "Cancelar", "Bar #": "Barra nº", "Median_input": "Mediana", "Redo": "Refazer", "Hide Drawings Toolbar": "Ocultar barra de ferramentas de desenhos", "Ultimate Oscillator_study": "Ultimate Oscillator", "This chart layout has a lot of objects and can't be published! Please report to {0} for further details.": "Esse layout gráfico possui um número excessivo de objetivos e não pode ser publicada! Por favor relate para {0} para saber mais detalhes.", "Vert Grid Lines": "Linhas de Grade Verticais", "Growing_input": "Growing", "Angle": "Ângulo", "%d year_plural": "%d anos", "Plot_input": "Plot", "Color 8_input": "Cor 8", "San Salvador": "São Salvador", "Search": "Procurar", "Bollinger Bands Width_study": "Largura das Bandas de Bollinger", "roclen3_input": "roclen3", "Overbought_input": "Sobrecomprado", "DPO_input": "DPO", "Levels Line": "Linhas de nível", "No study templates saved": "Nenhum modelo de estudo salvo", "Trend Line": "Linha de Tendência", "Relative Vigor Index_study": "Índice de Vigor Relativo (RVI)", "Your chart is being saved, please wait a moment before you leave this page.": "Seu gráfico está sendo salvo, por favor espere um momento antes de sair desta página.", "Circle": "Círculo", "Price Range": "Intervalo de Preços", "Extended Hours": "Fora do Horário Regular", "Triangle": "Triângulo", "Line With Breaks": "Linha com Quebras", "Period_input": "Period", "Watermark": "Marca d'Água", "Trigger_input": "Trigger", "SigLen_input": "SigLen", "Clone": "Duplicar", "Color 2_input": "Cor 2", "Show Prices": "Visualizar Preços", "Contracts": "Contatos", "{0} chart by TradingView": "Gráfico de {0} por TradingView", "Timezone/Sessions": "Fuso Horário/Sessões", "Save Indicator Template As...": "Salvar o Arranjo de Indicadores Como...", "Arrow Mark Right": "Seta para a Direita", "Background color 2": "Cor do Fundo №2", "Background color 1": "Cor do Fundo №1", "Circles": "Pontos", "McGinley Dynamic_study": "McGinley Dinâmico", "Visible on Mouse Over": "Visível quando Mouse por Cima", "Thu": "Quinta", "Vortex Indicator_study": "Indicador Vortex", "Williams Alligator_study": "Indicador Alligator de Williams", "ROCLen1_input": "ROCLen1", "Border Color": "Cor do contorno", "M_interval_short": "M", "Change Symbol...": "Alterar Símbolo...", "Price Levels": "Níveis de Preços", "Show Splits": "Mostrar Splits", "Zero Line_input": "Zero Line", "__specialSymbolOpen__Today at__specialSymbolClose__ __dayTime__": "__specialSymbolOpen__Hoje em__specialSymbolClose____dayTime__", "Increment_input": "Incremento", "Days_interval": "Dias", "Show Right Scale": "Mostrar Escala à Direita", "Show Alert Labels": "Exibir Etiquetas dos Alertas", "Net Volume_study": "Volume Líquido", "Lock": "Bloquear", "length14_input": "length14", "Sa_day_of_week": "Sab", "High": "Мáximo", "Date and Price Range": "Data e Faixa de Preço", "Polyline": "Linha Segmentada", "Reconnect": "Reconectar", "Add to favorites": "Adicionar aos favoritos", "Saturday": "Sábado", "Symbol Last Value": "Último Valor do Símbolo", "Above Bar": "Barra Acima", "Color 0_input": "Cor 0", "maximum_input": "maximum", "Wed": "Quarta", "D_data_mode_delayed_letter": "D", "Symbol Info": "Sobre o instrumento", "Pyramiding": "Pirâmide", "fastLength_input": "fastLength", "Width": "Largura", "Loading": "Carregando", "Historical Volatility_study": "Volatilidade Histórica", "Template": "Modelo", "Compare or Add Symbol...": "Comparar/Adicionar Símbolo...", "Parallel Channel": "Canal Paralelo", "Time Cycles": "Ciclos Temporais", "Second fraction part is invalid.": "A segunda parte de fração não é válida.", "Divisor_input": "Divisor", "Down Wave 1 or A": "Onda de baixa 1 ou A", "ROC_input": "ROC", "Dec": "Dez", "Extend": "Estender", "length7_input": "length7", "Bring Forward": "Trazer à frente", "Toggle Maximize Chart": "Alternar para Gráfico Maximizado", "Send to Back": "Enviar para Trás", "Undo": "Desfazer", "Window Size_input": "Window Size", "Mon": "Seg", "Reset Scale": "Centrar Escala", "Long Length_input": "Long Length", "True Strength Indicator_study": "True Strength Indicator", "%R_input": "%R", "There are no saved charts": "Não existem gráficos salvos", "Instrument is not allowed": "Instrumento não permitido", "bars_margin": "barras", "Show Indicator Last Value": "Mostrar Último Valor do Indicador", "Initial capital": "Capital Inicial", "Show Angle": "Mostrar Ângulo", "Indicator Last Value": "Último Valor do Indicador", "More features on tradingview.com": "Mais funções em tradingview.com", "smalen3_input": "smalen3", "Length1_input": "Length1", "Always Invisible": "Sempre Invisível", "Days": "Dias", "x_input": "x", "Save As...": "Salvar como...", "Lock/Unlock": "Bloquear/Desbloquear", "Elliott Double Combo Wave (WXY)": "Elliot - Onda Double Combo (WXY)", "Parabolic SAR_study": "SAR Parabólico", "Fisher Transform_study": "Transformada de Fisher", "Show Hidden Tools": "Mostrar Ferramentas Ocultas", "Hollow Candles": "Candles Vazios", "Any Symbol": "Qualquer Símbolo", "UO_input": "UO", "Stats Text Color": "Cor do Texto de Estatísticas", "Minutes": "Minutos", "Short RoC Length_input": "Short RoC Length", "Show Orders": "Mostrar Ordens", "Jaw_input": "Jaw", "Right": "Direita", "Help": "Ajuda", "Coppock Curve_study": "Curva Coppock", "Reversal Amount": "Quantidade de Reversão", "Reset Chart": "Centrar Gráfico", "Sep": "Set", "Sunday": "Domingo", "Themes": "Temas", "Left Axis": "Escala à Esquerda", "YES": "SIM", "longlen_input": "longlen", "Moving Average Exponential_study": "Média Móvel Exponencial", "Source border color": "Cor do contorno da base", "Redo {0}": "Refazer", "Cypher Pattern": "Padrão Cypher", "s_dates": "s", "Move Down": "Mover para Baixo", "Area": "Área", "invalid symbol": "instrumento invalido", "Triangle Pattern": "Padrão Triangular", "Gann Fan": "Leque de Gann", "Balance of Power_study": "Equilíbrio de Poder", "EOM_input": "EOM", "Font Size": "Tamanho da Fonte", "Drawings Toolbar": "Barra de ferramentas de desenhos", "Apply Manual Risk/Reward": "Aplicar Rico/Ganho Manual", "Market Closed": "Mercado Fechado", "Sydney": "Sidney", "Indicators": "Indicadores", "close": "fechamento", "q_input": "q", "You are notified": "Você foi advertido", "%D_input": "%D", "Text Alignment:": "Alinhamento do Texto:", "Offset_input": "Deslocamento", "Risk": "Risco", "Price Scale": "Escala de Preço", "HV_input": "HV", "Seconds": "Segundos", "(H + L + C)/3": "(Max+Min+Fch)/3", "Start_input": "Início", "R_data_mode_realtime_letter": "R", "Hours": "Horas", "Berlin": "Bеrlim", "Color 4_input": "Cor 4", "Angles": "Ângulos", "Prices": "Preços", "Extended Hours (Intraday Only)": "Fora do Horário Regular (somente intradiário)", "July": "Julho", "Create Horizontal Line": "Criar Linha Horizontal", "Minute": "Minuto", "Cycle": "Ciclo", "ADX Smoothing_input": "ADX Smoothing", "One color for all lines": "Uma cor para todas as linhas", "m_dates": "Mês", "Settings": "Configurações", "Drawing Tools": "Ferramentas de Desenho", "We_day_of_week": "Quarta", "Pre Market": "Pré-Mercado", "Width (% of the Box)": "Largura (% da Caixa)", "%d minute": "%d minuto", "week_plural": "semanas", "Pip Size": "Tamanho do Pip", "Wednesday": "Quarta", "This drawing is used in alert. If you remove the drawing, the alert will be also removed. Do you want to remove the drawing anyway?": "O desenho está sendo utilizado em um alerta. Se você remover o desenho, o alerta também será removido. Você quer remover o desenho assim mesmo?", "Hide All Drawing Tools": "Esconder todas as ferramentas de desenho", "Show alert label line": "Mostrar linha de descrição do alerta", "Down Wave 2 or B": "Onda de baixa 2 ou B", "MA_input": "MA", "Detrended Price Oscillator_study": "Oscilador de Preço sem Tendência", "not authorized": "não autorizado", "Bar's Style": "Estilos de Barra", "Image URL": "URL da Imagem", "SMI Ergodic Oscillator_input": "SMI Ergodic Oscillator", "Show Objects Tree": "Visualizar Lista de Objetos", "Primary": "Primária", "Price:": "Preço:", "Gann Box": "Caixa de Gann", "Bring to Front": "Puxar para a Frente", "Brush": "Pincel", "Not Now": "Não Agora", "lengthRSI_input": "lengthRSI", "Yes": "Sim", "Events & Alerts": "Eventos & Alertas", "+DI_input": "+DI", "Apply Default Drawing Template": "Aplicar template padrão de desenho", "Save As Default": "Salvar como default", "Invalid Symbol": "Símbolo Inválido", "Inside Pitchfork": "Dentro do Garfo", "yay Color 1_input": "yay Color 1", "Quandl is a huge financial database that we have connected to TradingView. Most of its data is EOD and is not updated in real-time, however the information may be extremely useful for fundamental analysis.": "Quandl é um enorme banco de dados financeiro que temos conectado ao TradingView. A maioria dos seus dados é FDD e não é atualizada em tempo real, embora a informação pode ser extremamente útil para a análise fundamental.", "Hide Marks On Bars": "Esconder Marcas Nas Barras", "Note": "Nota", "Show Countdown": "Visualizar Contagem", "WMA Length_input": "WMA Length", "Show Dividends on Chart": "Mostrar dividendos no gráfico", "Show Executions": "Mostrar Execuções", "Borders": "Contorno", "month_plural": "meses", "loading...": "carregando...", "Closed_line_tool_position": "Fechado", "Columns": "Colunas", "Change Resolution": "Mudar Resolução", "Indicator Arguments": "Argumentos do indicador", "Fib Spiral": "Espiral de Fibonacci", "Apply Elliot Wave": "Aplicar Ondas de Elliot", "%d minute_plural": "%d minutos", "Degree": "Grau", " per order": " por ordem", "Line - HL/2": "Linha - MaxMin/2", "Up Wave 4": "Onda de alta 4", "Least Squares Moving Average_study": "Least Squares Moving Average", "Change Variance value": "Mudar Valor de Variância", "Overlay the main chart": "Sobrepor gráfico principal", "powered by ": "Patrocinado por ", "Source_input": "Source", "Change Seconds To": "Mudar Segundos Para", "%K_input": "%K", "Success back color": "Cor do fundo (SUCESSO)", "Toronto": "Тоronto", "Please enter template name": "Por favor entre com o nome do modelo", "Symbol Name": "Nome do Símbolo", "Tokyo": "Тóquio", "Events Breaks": "Anúncio do Evento", "Study Templates": "Modelos de Estudo", "long_input": "long", "Months": "Meses", "Symbol Info...": "Sobre o instrumento...", "Elliott Wave Minor": "Onda Menor de Elliot", "Read our blog for more info!": "Leia nosso blog para maiores informações!", "Measure (Shift + Click on the chart)": "Medição (Shift + Clique no gráfico)", "Override Min Tick": "Alterar Resolução Min", "Thursday": "Quinta", "Dialog": "Diálogo", "Add To Text Notes": "Adicionar às Notas", "Elliott Triple Combo Wave (WXYXZ)": "Elliot - Onda Triple Combo (WXYXZ)", "Multiplier_input": "Multiplicador", "Risk/Reward": "Risco/Retorno", "Base Line Periods_input": "Base Line Periods", "Show Dividends": "Mostrar Dividendos", "pre-market": "pré-abertura", "Top Labels": "Legendas Superiores", "Show Earnings": "Mostrar Balanços", "Line - Open": "Linha - Abr", "%d day_plural": "%d dias", "Elliott Triangle Wave (ABCDE)": "Elliot - Onda Triangular (ABCDE)", "Minuette": "Minueto", "Text Wrap": "Quebrar Texto", "Reverse Position": "Reverter Posição", "Elliott Minor Retracement": "Correção Menor de Elliot", "Pitchfan": "Leque de Linhas", "No symbols matched your criteria": "Não foram encontrados símbolos que correspondam à escolha selecionada", "Icon": "Ícone", "Short_input": "Short", "Fib Wedge": "Cunha de Fibonacci", "Indicator_input": "Indicador", "Open Interval Dialog": "Abrir janela de intervalo", "Shanghai": "Shangai", "Athens": "Аtenas", "Q_input": "Q", "Content": "Conteúdo", "middle": "centro", "Lock Cursor In Time": "Fixar Cursos no Tempo", "Intermediate": "Intermediária", "Eraser": "Borracha", "TimeZone": "Fuso Horário", "Envelope_study": "Médias Móveis Envelope", "Active Symbol": "Símbolo Ativo", "Horizontal Line": "Linha Horizontal", "O_in_legend": "Abr", "Confirmation": "Confirmação", "HL Bars": "Barras Max/Min", "Add Alert": "Adicionar alerta", "Lines:": "Linhas", "Hide Favorite Drawings Toolbar": "Esconder Ferramentas Favoritas de Desenho", "useTrueRange_input": "useTrueRange", "Bangkok": "Banguecoque", "Profit Level. Ticks:": "Distância do Objetivo. Ticks:", "Show Date/Time Range": "Visualizar Intervalo de Dia/Tempo", "Level {0}": "Nível {0}", "Horz Grid Lines": "Linhas de Grade Horizontais", "Text Notes are available only on chart page. Please open a chart and then try again.": "Notas estão disponíveis apenas na página de gráficos. Por favor abre um gráfico e tente novamente.", "Tu_day_of_week": "Terça", "day": "dia", "deviation_input": "desvio", "week": "semana", "Base currency": "Moeda de base", "VWMA_study": "VWMA", "Success text color": "Cor do texto (SUCESSO)", "ADX smoothing_input": "ADX smoothing", "%d hour": "%d hora", "Order size": "Tamanho da Ordem", "Displacement_input": "Deslocamento", "Save Indicator Template As": "Salvar o Arranjo de Indicadores Como", "ADR_B_input": "ADR_B", "Chaikin Money Flow_study": "Fluxo Monetário de Chaikin", "Ease Of Movement_study": "Ease of Movement", "Defaults": "Definições padrão", "Oversold_input": "Sobrevendido", "Williams %R_study": "Williams %R", "Visual settings...": "Configurações Visuais...", "RSI_input": "RSI", "Long period_input": "Long period", "Mo_day_of_week": "Seg", "center": "centro", "Vertical Line": "Linha Vertical", "Bogota": "Bogotá", "Show Splits on Chart": "Mostrar divisões no gráfico", "Sorry, the Copy Link button doesn't work in your browser. Please select the link and copy it manually.": "Desculpe, o botão Copiar link não funciona no seu navegador. Selecione o link e copie-o manualmente.", "X_input": "X", "C_data_mode_connecting_letter": "C", "Simple ma(oscillator)_input": "Simple ma(oscillator)", "May": "Мai", "SMALen4_input": "SMALen4", "ROCLen4_input": "ROCLen4", "Aroon Down_input": "Aroon Down", "Add To Watchlist": "Adicionar à Lista", "Extend Right": "Estender para a Direita", "left": "restantes", "Lock scale": "Bloquear escala", "Time Levels": "Níveis de Tempo", "Arrow": "Seta", "smalen1_input": "smalen1", "Drawing Template '{0}' already exists. Do you really want to replace it?": "Modelo de Desenho '{0}' já existe. Você quer realmente substituí-lo?", "Extend Right End": "Estender para a Extrema Direita", "Fans": "Leques", "Line - Low": "Linha - Min", "Price_input": "Preço", "Close_input": "Fechar", "Arrow Mark Down": "Seta Para Baixo", "Weeks": "Semanas", "Modified Schiff Pitchfork": "Garfo de Shiff Modificado", "Relative Volatility Index_study": "Índice de Volatilidade Relativa", "Elliott Impulse Wave (12345)": "Elliot - Onda de Impulso (12345)", "PVT_input": "PVT", "Show Only Future Events": "Mostrar Somente Eventos Futuros", "Circle Lines": "Linhas Circulares", "Hull Moving Average_study": "Média Móvel de Hull", "Aug": "Аgo", "Save Drawing Template As": "Salvar Modelo de Desenho Como", "Right Shoulder": "Ombro Direito.", "Apply Defaults": "Aplicar Padrão", "Friday": "Sexta", "Zero_input": "Zero", "Company Comparison": "Comparar Símbolo", "Stochastic Length_input": "Stochastic Length", "mult_input": "mult", "URL cannot be received": "A URL não pode ser recebida", "Signal smoothing_input": "Signal smoothing", "E_data_mode_end_of_day_letter": "E", "Trend-Based Fib Extension": "Extensão de Fibonacci Baseado na Tendência", "Top": "Topo", "Double Curve": "Curva Dupla", "Stochastic RSI_study": "RSI Estocástico", "Horizontal Ray": "Raio Horizontal", "Symbol Labels": "Legendas dos Símbolo", "Edit Order": "Editar Ordem", "Trades on Chart": "Negociações no gráfico", "Chaikin Oscillator_input": "Chaikin Oscillator", "Listed Exchange": "Bolsa Listada", "Error:": "Erro:", "Fullscreen mode": "Modo tela cheia", "Add Text Note For {0}": "Adicionar Nota Para {0}", "K_input": "K", "In Session": "Horário Regular", "ROCLen3_input": "ROCLen3", "Restore Size": "Restaurar Área", "Text Color": "Cor do Texto", "Extend Alert Line": "Estender Linha de Alerta", "Oops!": "Ops!", "New Zealand": "Nova Zelândia", "CHOP_input": "CHOP", "Scale": "Escala", "Screen (No Scale)": "Área Total (sem escala)", "Extended Alert Line": "Linha de Alerta Extendida", "Signal_input": "Signal", "like": "curtida", "Show": "Visualizar", "Exchange": "Mercado", "{0} bars": "barras: {0}", "Lower_input": "Lower", "Created ": "Criado ", "Arc": "Arco", "Elder's Force Index_study": "Índice de Força de Elders", "Show Earnings on Chart": "Mostrar ganhos no gráfico", "ATR_input": "ATR", "Do you really want to delete Color Theme '{0}' ?": "Você quer realmente deletar o Tema de Cor '{0}'?", "%d month_plural": "%d meses", "Low": "Мínima", "Bollinger Bands %B_study": "Bandas de Bollinger %B", "Time Zone": "Fuso Horário", "right": "direita", "%d month": "%d mês", "Wrong value": "Valor inválido", "Upper Band_input": "Upper Band", "Sun": "Dom", "Rename...": "Renomear...", "February": "Fevereiro", "start_input": "start", "No indicators matched your criteria.": "Não foram encontrados indicadores que correspondam à escolha selecionada.", "Commission": "Comissão", "Short length_input": "Short length", "Kolkata": "Calcuta", "Submillennium": "Sucmilênio", "Precise Labels_scale_menu": "Descrições Precisas", "Smoothed Moving Average_study": "Média Móvel Suavizada", "Do you really want to delete Drawing Template '{0}' ?": "Você quer realmente deletar o Modelo de Desenho '{0}'?", "Chatham Islands": "Ilhas Chatham", "Channel": "Canal", "Stop syncing drawing": "Para de sincronizar o gráfico", "FXCM CFD data is available only to FXCM account holders": "Dados CFD da FXCM só são disponíveis para clientes dessa corretora.", "Lagging Span 2 Periods_input": "Lagging Span 2 Periods", "Connecting Line": "Linha Conectora", "Seoul": "Seul", "bottom": "fundo", "Teeth_input": "Teeth", "Moscow": "Моscovo", "Save New Chart Layout": "Salvar Novo Layout de Gráfico", "Fib Channel": "Canal de Fibonacci", "Visibility": "Visibilidade", "Events": "Eventos", "Save Drawing Template As...": "Salvar template do desenho como...", "Minutes_interval": "Minutos", "Insert Study Template": "Inserir Modelo de Estudo", "exponential_input": "exponencial", "%d hour_plural": "%d horas", "OnBalanceVolume_input": "OnBalanceVolume", "roclen2_input": "roclen2", "Chande Momentum Oscillator_study": "Oscilador de Momento de Chande", "Not applicable": "Não aplicável", "or copy url:": "ou copiar url:", "Bollinger Bands %B_input": "Bollinger Bands %B", "Template name": "Nome do modelo", "Indicator Values": "Valores do indicador", "Lips Length_input": "Lips Length", "Use Upper Deviation_input": "Use Upper Deviation", "L_in_legend": "Min", "Remove custom interval": "Remover Intervalo Customizado", "minute_plural": "minutos", "shortlen_input": "shortlen", "Quotes are delayed by {0} min": "As cotações são atrasadas em {0} min", "Copied to clipboard": "Copiado para a área de transferência", "ADX_input": "ADX", "Profit Background Color": "Cor do Fundo do Objetivo", "Trading": "Trade", "Exponential_input": "Exponencial", "ROCLen2_input": "ROCLen2", "Use Lower Deviation_input": "Use Lower Deviation", "Previous": "Anterior", "Stay In Drawing Mode": "Manter em Modo de Desenho", "Comment": "Comentário", "Long_input": "Long", "Bars": "Barras", "Source text color": "Cor do texto da base", "Flat Top/Bottom": "Topo/Fundo Plano", "Symbol Type": "Tipo de Símbolo", "loading data": "carregar dados", "December": "Dezembro", "Lock drawings": "Bloquear desenhos", "Border color": "Cor do contorno", "Change Seconds From": "Mudar Segundos De", "Left Labels": "Legendas à Esquerda", "Insert Indicator...": "Inserir Indicador...", "P_input": "P", "Paste %s": "Colar %s", "Timezone": "Fuso horário", "Invite-only script. You have been granted access.": "Script sob convite. Você recebeu acesso.", "Sat": "Sab", "ATR Length": "Período do ATR", "Rectangle": "Retângulo", "Supercycle": "Superciclo", "Feb": "Fev", "Transparency": "Transparência", "No": "Não", "All Indicators And Drawing Tools": "Todos Indicadores e Ferramentas Gráficas", "Cyclic Lines": "Linhas Cíclicas", "length28_input": "length28", "ABCD Pattern": "Padrão ABCD", "closed": "fechado", "When selecting this checkbox the study template will set \"__interval__\" interval on a chart": "Ao selecionar esta caixa de seleção, o modelo de estudo definirá o intervalo \"__interval__\" em um gráfico", "NO": "NÃO", "Add": "Adicionar", "OC Bars": "Barras Abr/Fec", "Millennium": "Milênio", "Price Label": "Legenda de Preço", "Graphics": "Gráficos", "NEW": "NOVO", "Wick": "Pavio", "Hull MA_input": "Hull MA", "Callout": "Comentário", "Lock Scale": "Bloquear Escala", "distance: {0}": "distância: {0}", "Extended": "Estendida", "Three Drives Pattern": "Padrão 3 Voltas", "Create Vertical Line": "Criar Linha Vertical", "Arcs": "Arcos", "Top Margin": "Margem Superior", "Length2_input": "Length2", "Insert Drawing Tool": "Inserir Desenho", "OHLC Values": "Valores Abertura/Alta/Baixa/Fechamento", "Correlation_input": "Correlação", "Scales Text": "Теxto da Escala", "Session Breaks": "Divisão de Dias", "Add {0} To Watchlist": "Adicionar {0} à Lista", "Anchored Note": "Nota Ancorada", "lipsLength_input": "lipsLength", "low": "minima", "Apply Indicator on {0}": "Aplicar Indicador em {0}", "roclen4_input": "roclen4", "November": "Novembro", "Tehran": "Teerã", "Background Color": "Cor do Fundo", "an hour": "uma hora", "Right Axis": "Escala à Direita", "D_data_mode_delayed_streaming_letter": "D", "VI -_input": "VI -", "slowLength_input": "slowLength", "Click to set a point": "Clique para marcar um ponto", "January": "Janeiro", "Indicators, Fundamentals, Economy and Add-ons": "Indicadores/Fundamentos/Economia/Extras", "delayed": "com atraso", "n/a": "n/d", "Indicator Titles": "Títulos do indicador", "retrying": "tentar novamente", "Change area background": "Alterar fundo da área", "Error": "Erro", "Edit Position": "Editar Posição", "RVI_input": "RVI", "Awesome Oscillator_study": "Oscilador Awesome", "Recalculate On Every Tick": "Recalcular Em Cada Tick", "Left": "Esquerda", "Show Text": "Visualizar Texto", "Objects Tree...": "Lista de Objetos...", "Source Code": "Código-fonte", "Add Symbol": "Adicionar Símbolo", "Projection": "Projeção", "Track time": "Sincronizar Tempo", "Enter a new chart layout name": "Coloque um nome de layout gráfico novo", "Signal Length_input": "Signal Length", "Properties": "Configurações", "Teeth Length_input": "Teeth Length", "Point Value": "Valor do Ponto", "D_interval_short": "D", "Close": "Fechar", "ParabolicSAR_input": "ParabolicSAR", "Log Scale_scale_menu": "Escala Logarítmica", "MACD_input": "MACD", "Do not show this message again": "Não mostre essa mensagem novamente", "{0} P&L: {1}": "{0} L&P: {1}", "Up Wave 3": "Onda de alta 3", "Arrow Mark Left": "Seta para a Esquerda", "second_plural": "segundos", "Up Wave 5": "Onda de alta 5", "Line - Close": "Linha - Fec", "(O + H + L + C)/4": "(Abr+Max+Min+Fch)/4", "Confirm Inputs": "Confirmar Entradas", "Open_line_tool_position": "Aberto", "Lagging Span_input": "Lagging Span", "Subminuette": "Sub-Minueto", "Mirrored": "Refletir", "Price": "Preço", "Triple EMA_study": "Média Móvel Exponencial Tripla", "Elliott Correction Wave (ABC)": "Elliot - Onda Corretiva (ABC)", "Error while trying to create snapshot.": "Erro ao capturar a tela.", "Label Background": "Fundo da Legenda", "Templates": "Modelos", "Please report the issue or click Reconnect.": "Por favor reporte o problema ou clique em Reconectar.", "1. Slide your finger to select location for first anchor
    2. Tap anywhere to place the first anchor": "1. Defina o primeiro ponto arrastando a cruz com o dedo.
    2. Toque em qualquer lugar para colocar o primeiro ponto.", "Signal Labels": "Legendas de Sinal", "compiling...": "compilando...", "Are you sure?": "Você tem certeza?", "Color 5_input": "Cor 5", "Up Wave 1 or A": "Onda de alta 1 ou A", "Scale Price Chart Only": "Apenas Gráfico de Escala de Preço", "Default": "Padrão", "auto_scale": "auto", "Background": "Fundo", "% of equity": "% do Capital", "Apply Elliot Wave Intermediate": "Aplicar Intermediário de Onda Elliot", "VWMA_input": "VWMA", "Lower Deviation_input": "Lower Deviation", "Save Interval": "Salvar Intervalo", "Extend Lines Left": "Estender Linhas para a Esquerda", "Reverse": "Inverter", "Oops, something went wrong": "Ops, algo deu errado", "Shapes_input": "Shapes", "Median": "Média", "Show Source Code": "Mostrar Código-Fonte", "Remove": "Remover", "len_input": "len", "Arrow Mark Up": "Seta para Cima", "April": "Abril", "log": "Logarítmica", "Crosses_input": "Cruzamentos", "KST_input": "KST", "Sync drawing to all charts": "Sincronizar desenhos em todos os gráficos", "LowerLimit_input": "LowerLimit", "day_plural": "dias", "Copy Chart Layout": "Copiar Layout do Gráfico", "Compare...": "Comparar...", "1. Slide your finger to select location for next anchor
    2. Tap anywhere to place the next anchor": "1. Deslize o dedo para selecionar o local para o próximo ponto.
    2. Toque em qualquer lugar para colocar o próximo ponto.", "Compare or Add Symbol": "Comparar/Adicionar Símbolo", "Color": "Cor", "Aroon Up_input": "Aroon Up", "Singapore": "Singapura", "Scales Lines": "Linhas da Escala", "Type the interval number for munute charts (i.e. 5 if it is going to be a five minute chart). Or number plus letter for H (Hourly), D (Daily), W (Weekly), M (Monthly) intervals (i.e. D or 2H)": "Digite o número de intervalo para gráficos minute (ou seja, 5 se ele vai ser um gráfico de cinco minutos). Ou número mais letra para os intervalos H (Horário), D (Diário), S (Semanal), M (Mensal) (isto é, D ou 2H)", "Up Wave C": "Onda de alta C", "Show Distance": "Visualizar Distância", "Risk/Reward Ratio: {0}": "Razão Risco/Retorno: {0}", "Volume Oscillator_study": "Oscilador de Volume", "Williams Fractal_study": "Indicador Fractal de Williams", "Merge Up": "Agrupar para cima", "Right Margin": "Margem Direita", "Ellipse": "Elipse", "Warsaw": "Varsóvia"} \ No newline at end of file +{"ticks_slippage ... ticks": "mínima variação de preço", "Months_interval": "Meses", "Realtime": "Tempo real", "Callout": "Comentário", "Sync to all charts": "Sincronizar com todos os gráficos", "month": "mês", "London": "Londres", "roclen1_input": "roclen1", "Unmerge Down": "desmesclar para baixo", "Percents": "Porcentuais", "Search Note": "Procurar nota", "Minor": "Secundário", "Do you really want to delete Chart Layout '{0}' ?": "Você quer realmente deletar o leiaute do gráfico '{0}'?", "Quotes are delayed by {0} min and updated every 30 seconds": "As cotações são atrasadas {0} min e atualizadas em tempo real", "Magnet Mode": "Modo magnético", "OSC_input": "OSC", "Hide alert label line": "Ocultar a linha de descrição do alerta", "Volume_study": "Volume", "Lips_input": "Lábios", "Show real prices on price scale (instead of Heikin-Ashi price)": "Mostrar preços reais na escala de preços (em vez de preço de Heikin-Ashi)", "Histogram": "Histograma", "Base Line_input": "Linha de base", "Step": "Degraus", "Insert Study Template": "Inserir modelo de estudo", "Fib Time Zone": "Zona temporal de Fibonacci", "SMALen2_input": "SMALen2", "Bollinger Bands_study": "Bandas de Bollinger", "Show/Hide": "Visualizar/Esconder", "Upper_input": "Superior", "exponential_input": "exponencial", "Move Up": "Mover para cima", "Symbol Info": "Sobre o instrumento", "This indicator cannot be applied to another indicator": "Este indicador não pode ser aplicado a outro indicador", "Scales Properties...": "Configurações da escala...", "Count_input": "Contagem", "Full Circles": "Círculos completos", "Industry": "Indústria", "OnBalanceVolume_input": "BalançodeVolume", "Cross_chart_type": "Cruz", "H_in_legend": "Máx.", "a day": "um dia", "Pitchfork": "Garfo", "R_data_mode_replay_letter": "R", "Accumulation/Distribution_study": "Acúmulo/Distribuição", "Rate Of Change_study": "Taxa de Variação (ROC)", "in_dates": "em", "Clone": "Duplicar", "Color 7_input": "Cor 7", "Chop Zone_study": "Zona Lateralizada", "Bar #": "Barra nº", "Scales Properties": "Configurações da escala...", "Trend-Based Fib Time": "Tempo de Fibonacci Baseado na Tendência", "Remove All Indicators": "Remover todos os Indicadores", "Oscillator_input": "Oscilador", "Last Modified": "Última modificação", "yay Color 0_input": "yay Cor 0", "Labels": "Legendas", "Chande Kroll Stop_study": "Parada de Chande Kroll", "Hours_interval": "Horas", "Allow up to": "Permite até", "Scale Right": "Escala direita", "Money Flow_study": "Fluxo Monetário", "siglen_input": "siglen", "Indicator Labels": "Legendas do indicador", "__specialSymbolOpen__Tomorrow at__specialSymbolClose__ __dayTime__": "__specialSymbolOpen__Amanhã em__specialSymbolClose____dayTime__", "Toggle Percentage": "Percentagem", "Remove All Drawing Tools": "Remover todas as ferramentas de desenho", "Remove all line tools for ": "Remover todas as ferramentas de linhas para ", "Linear Regression Curve_study": "Curva de Regressão Linear", "Symbol_input": "Símbolo", "Currency": "Moeda", "increment_input": "incremento", "Compare or Add Symbol...": "Comparar ou adicionar símbolo...", "__specialSymbolOpen__Last__specialSymbolClose__ __dayName__ __specialSymbolOpen__at__specialSymbolClose__ __dayTime__": "__specialSymbolOpen__Último__specialSymbolClose____dayName____specialSymbolOpen__em__specialSymbolClose____dayTime__", "Save Chart Layout": "Salvar Layout do Gráfico", "Number Of Line": "Número da Linha", "Label": "Legenda", "Post Market": "Pós-Mercado", "second": "segundo", "Change Hours To": "Mudar horas para", "smoothD_input": "suaveD", "Falling_input": "Queda", "X_input": "X", "Risk/Reward short": "Risco/recompensa vendedor", "Donchian Channels_study": "Canais Donchian", "Entry price:": "Preço de entrada:", "Circles": "Círculos", "Head": "Cabeça", "Stop: {0} ({1}) {2}, Amount: {3}": "Stop: {0} ({1}) {2}, Quantidade: {3}", "Mirrored": "Refletido", "Ichimoku Cloud_study": "Nuvem Ichimoku", "Signal smoothing_input": "Suavização do sinal", "Use Upper Deviation_input": "Use o Desvio Superior", "Toggle Auto Scale": "Escala Automática", "Grid": "Grade", "Triangle Down": "Triângulo de Baixa", "Apply Elliot Wave Minor": "Aplicar a onda de Elliott menor", "Slippage": "Derrapagem", "Smoothing_input": "Suavização", "Color 3_input": "Cor 3", "Jaw Length_input": "Comprimento do maxilar", "Inside": "Interior", "Delete all drawing for this symbol": "Remover todos os desenhos para este símbolo", "Fundamentals": "Fundamentos", "Keltner Channels_study": "Canais Keltner", "Long Position": "Posição compradora", "Bands style_input": "Estilo de bandas", "Undo {0}": "Desfazer", "With Markers": "Com Marcadores", "Momentum_study": "Momentum", "MF_input": "MF", "Gann Box": "Caixa de Gann", "Switch to the next chart": "Mudar para o próximo gráfico", "charts by TradingView": "gráficos por TradingView", "Fast length_input": "Comprimento rápido", "Apply Elliot Wave": "Aplicar onda de Elliot", "Disjoint Angle": "Deslocamento de ângulo", "Supermillennium": "Supermilênio", "W_interval_short": "S", "Show Only Future Events": "Mostrar Somente Eventos Futuros", "Log Scale": "Escala logarítmica", "Line - High": "Linha - Máximo", "Zurich": "Zurique", "Equality Line_input": "Linha de Igualdade", "Short_input": "Venda", "Fib Wedge": "Cunha de Fibonacci", "Line": "Linha", "Session": "Sessão", "Down fractals_input": "Fractais Abaixo", "Fib Retracement": "Retração de Fibonacci", "smalen2_input": "smalen2", "isCentered_input": "Está centrado", "Border": "Contorno", "Klinger Oscillator_study": "Oscilador de Klinger", "Absolute": "Absoluto", "Tue": "Terça", "Style": "Estilo", "Show Left Scale": "Mostrar Escala à Esquerda", "SMI Ergodic Indicator/Oscillator_study": "Indicador/Oscilador SMI Ergodic", "Aug": "Аgo", "Last available bar": "Última barra disponível", "Manage Drawings": "Gerenciar desenhos", "Analyze Trade Setup": "Analisar configuração de negociação", "No drawings yet": "Ainda sem desenhos", "SMI_input": "SMI", "Chande MO_input": "Chande MO", "jawLength_input": "Largura da Mandíbula", "TRIX_study": "Média Móvel Tripla (TRIX)", "Show Bars Range": "Visualizar Intervalo de Barras", "RVGI_input": "RVGI", "Last edited ": "Editado por último ", "signalLength_input": "Período", "%s ago_time_range": "%s atrás", "Reset Settings": "Resetar as configurações", "PnF": "P&F", "d_dates": "d", "Point & Figure": "Ponto e Figura", "August": "Agosto", "Recalculate After Order filled": "Recalcular após preenchimento de ordem", "Source_compare": "Fonte", "Down bars": "Barras de baixo", "Correlation Coefficient_study": "Coeficiente de Correlação", "Delayed": "Com atraso", "Bottom Labels": "Legendas inferiores", "Text color": "Cor do texto", "Levels": "Níveis", "Length_input": "Período", "Short Length_input": "Comprimento curto", "teethLength_input": "comprimento do dente", "Visible Range_study": "Range Visível", "Delete": "Remover", "Text Alignment:": "Alinhamento do Texto:", "Open {{symbol}} Text Note": "Abrir anotações sobre {{symbol}}", "October": "Outubro", "Lock All Drawing Tools": "Bloquear todas as ferramentas gráficas", "Long_input": "COMPRA", "Right End": "Extremidade direita", "Show Symbol Last Value": "Mostrar Último Valor do Símbolo", "Head & Shoulders": "Cabeça e ombros", "Do you really want to delete Study Template '{0}' ?": "Você quer realmente deletar o modelo de estudo '{0}'?", "Favorite Drawings Toolbar": "Barra de ferramentas dos desenhos favoritos", "Properties...": "Propriedades...", "Reset Scale": "Resetar a escala", "MA Cross_study": "Cruzamento de MM", "Trend Angle": "Ângulo de Tendência", "Snapshot": "Captura", "Crosshair": "Mira", "Signal line period_input": "Período de linha de sinal", "Timezone/Sessions Properties...": "Fuso Horário/Sessão", "Line Break": "Quebra de linha", "Quantity": "Quantidade", "Price Volume Trend_study": "Tendência de Preço Volume (PVT)", "Auto Scale": "Escala automática", "hour": "hora", "Delete chart layout": "Remover layout de gráfico", "Text": "Texto", "F_data_mode_forbidden_letter": "F", "Risk/Reward long": "Risco/recompensa comprador", "Apr": "Аbr", "Long RoC Length_input": "RoC Comprimento Longo", "Length3_input": "Comprimento 3", "+DI_input": "+DI", "Madrid": "Маdrid", "Use one color": "Usar uma cor", "Chart Properties": "Propriedades do gráfico", "No Overlapping Labels_scale_menu": "Não há etiquetas sobrepostas", "Exit Full Screen (ESC)": "Sair do modo tela cheia (ESC)", "MACD_study": "MACD", "Show Economic Events on Chart": "Mostrar Eventos Econômicos no Gráfico", "Moving Average_study": "Média Móvel", "Show Wave": "Mostrar Onda", "Failure back color": "Falha de cor de fundo", "Below Bar": "Abaixo da barra", "Time Scale": "Escala de tempo", "

    Only D, W, M intervals are supported for this symbol/exchange. You will be automatically switched to a D interval. Intraday intervals are not available because of exchange policies.

    ": "

    Apenas os intervalos D, S, M são suportados para este símbolo / bolsa. Você será levado automaticamente para o intervalo D. Intervalos intradiários não estão disponíveis devido a políticas da bolsa.

    ", "Extend Left": "Estender para a esquerda", "Date Range": "Intervalo de tempo", "Min Move": "Mov. mínimo", "Price format is invalid.": "O formato do preço não é válido.", "Show Price": "Visualizar Preço", "Level_input": "Nível", "Commodity Channel Index_study": "Índice de Canal de Commodities (CCI)", "Elder's Force Index_input": "Índice de força antigo", "Gann Square": "Quadrado de Gann", "Format": "Formatar", "Color bars based on previous close": "Colorir barra de acordo com o fechamento anterior", "Change band background": "Mudar fundo da faixa", "Target: {0} ({1}) {2}, Amount: {3}": "Alvos: {0} ({1}) {2}, Quantidade: {3}", "Zoom Out": "Diminuir Zoom", "This chart layout has a lot of objects and can't be published! Please remove some drawings and/or studies from this chart layout and try to publish it again.": "Esse gráfico possui objetos demais e não pode ser publicado! Por favor remove alguns desenhos e/ou estudos desse gráfico e tente novamente.", "Anchored Text": "Texto ancorado", "Long length_input": "Comprimento longo", "Edit {0} Alert...": "Editar alerta {0}...", "Previous Close Price Line": "Linha de Preço do Fechamento Anterior", "Up Wave 5": "Onda de alta 5", "Qty: {0}": "Qtde: {0}", "Heikin Ashi": "Heiken Ashi", "Aroon_study": "Aroon", "show MA_input": "mostrar MA", "Lead 1_input": "Conduzir 1", "Short Position": "Posição Vendedora", "SMALen1_input": "SMALen1", "P_input": "P", "Apply Default": "Aplicar padrão", "SMALen3_input": "SMALen3", "Average Directional Index_study": "Índice Direcional Médio", "Fr_day_of_week": "Sexta", "Invite-only script. Contact the author for more information.": "Script sob convite.Contate o autor para mais informações.", "Curve": "Curva", "a year": "um ano", "Target Color:": "Cor do Objetivo:", "Bars Pattern": "Padrão de barras", "D_input": "D", "Font Size": "Tamanho da fonte", "Create Vertical Line": "Criar linha vertical", "p_input": "p", "Rotated Rectangle": "Retângulo girado", "Chart layout name": "Nome do layout do gráfico", "Fib Circles": "Círculos de Fibonacci", "Apply Manual Decision Point": "Aplicar ponto de decisão manual", "Dot": "Ponto", "Target back color": "Cor do fundo do objetivo", "All": "Todos", "orders_up to ... orders": "Ordens", "Dot_hotkey": "Ponto", "Lead 2_input": "Conduzir 2", "Save image": "Salvar Imagem", "Move Down": "Mover para baixo", "Triangle Up": "Triângulo de Alta", "Box Size": "Tamanho da caixa", "Navigation Buttons": "Botões de navegação", "Miniscule": "Minúsculo", "Apply": "Aplicar", "Down Wave 3": "Onda de baixa 3", "Plots Background_study": "Fundo", "Marketplace Add-ons": "Complementos do Marketplace", "Sine Line": "Senóide", "Fill": "Encher", "%d day": "%d dia", "Hide": "Ocultar", "Toggle Maximize Chart": "Alternar para Gráfico Maximizado", "Target text color": "Cor do texto do objetivo", "Scale Left": "Escala a esquerda", "Elliott Wave Subminuette": "Onda de Elliot de subminueto", "Color based on previous close_input": "Cor baseado no fechamento anterior", "Down Wave C": "Onda de baixa C", "Countdown": "Contagem regressiva", "UO_input": "UO", "Pyramiding": "Pirâmide", "Source back color": "Cor do fundo da base", "Go to Date...": "Ir para data...", "Sao Paulo": "São Paulo", "R_data_mode_realtime_letter": "R", "Extend Lines": "Estender linhas", "Conversion Line_input": "Linha de Conversão", "March": "Março", "Su_day_of_week": "Dom", "Exchange": "Bolsa", "Arcs": "Arcos", "Regression Trend": "Tendência de regressão", "Short RoC Length_input": "Comprimento RoC curto", "Fib Spiral": "Espiral de Fibonacci", "Double EMA_study": "Média Móvel Exponencial Dupla (Double EMA)", "minute": "minuto", "All Indicators And Drawing Tools": "Todos os indicadores e ferramentas gráficas", "Indicator Last Value": "Último valor do indicador", "Sync drawings to all charts": "Sincronizar desenhos em todos os gráficos", "Change Average HL value": "Mudança no valor médio de HL", "Stop Color:": "Cor do Stop:", "Stay in Drawing Mode": "Manter em Modo de Desenho", "Bottom Margin": "Margem Inferior", "Save Chart Layout saves not just some particular chart, it saves all charts for all symbols and intervals which you are modifying while working with this Layout": "Salvar Layout do Gráfico não salva apenas um gráfico em particular, salva todos os gráficos para todos os símbolos e intervalos que você esteja modificando enquanto trabalha com esse layout.", "Average True Range_study": "Média da Amplitude de Variação (ATR)", "Max value_input": "Valor máximo", "MA Length_input": "Comprimento MA", "Invite-Only Scripts": "Script sob convite", "in %s_time_range": "em %s", "UpperLimit_input": "Limite superior", "sym_input": "sym", "DI Length_input": "Comprimento DI", "Rome": "Roma", "Scale": "Escala", "Periods_input": "Períodos", "Arrow": "Seta", "useTrueRange_input": "UseFaixaVerdadeira", "Basis_input": "Base", "Arrow Mark Down": "Marca da seta para baixo", "lengthStoch_input": "EstocásticoComprimento", "Taipei": "Тaipé", "Objects Tree": "Lista de Objetos", "Remove from favorites": "Remover dos favoritos", "Show Symbol Previous Close Value": "Mostrar Valor de Fechamento anterior do Símbolo", "Scale Series Only": "Apenas a escala de preços", "Source text color": "Cor do texto da base", "Simple": "Simples", "Report a data issue": "Reportar um erro com os dados", "Arnaud Legoux Moving Average_study": "Arnaud Legoux Média Móvel", "Smoothed Moving Average_study": "Média Móvel Suavizada", "Lower Band_input": "Faixa mais baixa", "Verify Price for Limit Orders": "Verificar Preços para Ordens Limite", "VI +_input": "VI +", "Line Width": "Abrangênia da linha", "Contracts": "Contratos", "Always Show Stats": "Sempre mostrar estatísticas", "Down Wave 4": "Onda de baixa 4", "ROCLen2_input": "ROCLen2", "Simple ma(signal line)_input": "MM Simples (linha de sinal)", "Change Interval...": "Alterar Intervalo...", "Public Library": "Biblioteca pública", " Do you really want to delete Drawing Template '{0}' ?": " Você quer realmente deletar o Modelo de Desenho '{0}'?", "Sat": "Sáb.", "Left Shoulder": "Ombro Esquerdo.", "week": "semana", "CRSI_study": "CRSI", "Close message": "Fechar mensagem", "Value_input": "Valor", "Show Drawings Toolbar": "Mostrar Ferramentas de Desenho", "Chaikin Oscillator_study": "Oscilador Chaikin", "Price Source": "Fonte de preço", "Market Open": "Mercado aberto", "Color Theme": "Padrão de cor", "Projection up bars": "Barras de projeção", "Awesome Oscillator_study": "Oscilador Awesome", "Bollinger Bands Width_input": "Largura das Bandas Bollinger", "long_input": "compra", "Error occured while publishing": "Ocorreu um erro ao publicar", "Fisher_input": "Fisher", "Color 1_input": "Cor 1", "Moving Average Weighted_study": "Média Móvel Ponderada", "Save": "Salvar", "Type": "Tipo", "Wick": "Pavio", "Accumulative Swing Index_study": "Índice Acumulativo de Swing", "Load Chart Layout": "Carregar o layout do gráfico", "Show Values": "Mostrar Valores", "Fib Speed Resistance Fan": "Leque de resistência a velocidade de Fibonacci", "Bollinger Bands Width_study": "Largura das Bandas de Bollinger", "This chart layout has more than 1000 drawings, which is a lot! This may negatively affect performance, storage and publishing. We recommend to remove some drawings to avoid potential performance issues.": "Este layout gráfico tem mais de 1000 desenhos, o que é muito! Isso pode afetar negativamente o desempenho, armazenamento e publicação. Recomendamos remover alguns desenhos para evitar potenciais problemas de desempenho.", "Left End": "Extrema esquerda", "%d year": "%d ano", "Always Visible": "Sempre visível", "S_data_mode_snapshot_letter": "S", "Flag": "Bandeira", "Elliott Wave Circle": "Ciclo de ondas de Elliot", "Earnings breaks": "Anúncios de rendimentos", "Change Minutes From": "Mudar minutos de", "Do not ask again": "Não pergunte novamente", "Displacement_input": "Deslocamento", "smalen4_input": "smalen4", "CCI_input": "CCI", "Upper Deviation_input": "Desvio superior", "(H + L)/2": "(Máx.+Mín.)/2", "XABCD Pattern": "Padrão XABCD", "Schiff Pitchfork": "Garfo de Schiff", "Copied to clipboard": "Copiado para a área de transferência", "HLC Bars": "Barras HLC", "Flipped": "Virado", "DEMA_input": "DEMA", "Move_input": "Movimento", "NV_input": "NV", "Choppiness Index_study": "Índice de Choppiness", "Study Template '{0}' already exists. Do you really want to replace it?": "Modelo de Estudo '{0}' já existe. Você deseja substituí-lo?", "Merge Down": "Agrupar para baixo", "Th_day_of_week": "Quinta", " per contract": "  conforme o contrato", "Overlay the main chart": "Sobrepor o gráfico principal", "Screen (No Scale)": "Tela (sem escala)", "Three Drives Pattern": "Padrão 3 Voltas", "Save Indicator Template As": "Salvar modelo de indicador como", "Length MA_input": "Período MM", "percent_input": "percentagem", "September": "Setembro", "{0} copy": "{0} copiar", "Avg HL in minticks": "HL médio em minticks", "Accumulation/Distribution_input": "Acumulação / Distribuição", "Sync": "Sincronizar", "C_in_legend": "Fch", "Weeks_interval": "Semanas", "smoothK_input": "suaveK", "Percentage_scale_menu": "Porcentagem", "Change Extended Hours": "Mudar horas estendidas", "MOM_input": "MOM", "h_interval_short": "h", "Change Interval": "Alterar Intervalo", "Change area background": "Mudar fundo da área", "Modified Schiff": "Schiff modificado", "top": "topo", "Custom color...": "Personalizar a cor...", "Send Backward": "Enviar a Trás", "Mexico City": "Cidade do México", "TRIX_input": "TRIX", "Show Price Range": "Visualizar Intervalo de Preços", "Elliott Major Retracement": "Correção de Elliot maior", "ASI_study": "IAS (ASI)", "Notification": "Notificação", "Fri": "Sexta", "just now": "agora mesmo", "Forecast": "Previsão", "Fraction part is invalid.": "Fração inválida.", "Connecting": "Conectando", "Ghost Feed": "Informações fantasma", "Signal_input": "sinal", "Histogram_input": "Histograma", "The Extended Trading Hours feature is available only for intraday charts": "A ferramenta de operação em horários estendidos está disponível somente em gráficos intraday.", "Stop syncing": "Parar sincronização", "open": "abertura", "StdDev_input": "StdDev", "EMA Cross_study": "Cruzamento de MME", "Conversion Line Periods_input": "Períodos da linha de conversão", "Diamond": "Diamante", "My Scripts": "Meus Scripts", "Monday": "Segunda", "Add Symbol_compare_or_add_symbol_dialog": "Adicionar Símbolo", "Williams %R_study": "Williams %R", "Symbol": "Símbolo", "a month": "por mês", "Precision": "Precisão", "depth_input": "profundidade", "Go to": "Ir para", "Please enter chart layout name": "Por favor, coloque o nome do layout do gráfico", "Mar": "Маr", "VWAP_study": "VWAP", "Offset": "Desvio", "Date": "Data", "Format...": "Formatar...", "__dayName__ __specialSymbolOpen__at__specialSymbolClose__ __dayTime__": "__dayName____specialSymbolOpen__em__specialSymbolClose____dayTime__", "Toggle Maximize Pane": "Habilitar Painel de Maximização", "Search": "Procurar", "Zig Zag_study": "Indicador Zig Zag", "Actual": "Real", "SUCCESS": "SUCESSO", "Long period_input": "Longo período", "length_input": "período", "roclen4_input": "roclen4", "Price Line": "Linha de preços", "Area With Breaks": "Área com quebras", "Median_input": "Mediana", "Stop Level. Ticks:": "Distância do Stop. Ticks:", "Economy & Symbols": "Economia e símbolos", "Circle Lines": "Linhas circulares", "Visual Order": "Ordem Visual", "__specialSymbolOpen__Yesterday at__specialSymbolClose__ __dayTime__": "__specialSymbolOpen__Ontem em__specialSymbolClose____dayTime__", "Stop Background Color": "Cor do fundo do stop", "Slow length_input": "Comprimento lento", "Sector": "Setor", "powered by TradingView": "patrocinado por TradingView", "Text:": "Texto:", "Stochastic_study": "Oscilador Estocástico", "Sep": "Set", "TEMA_input": "TEMA", "Apply WPT Up Wave": "Aplicar onda WPT de alta", "Min Move 2": "Mov. mínimo 2", "Extend Left End": "Estender para a extremidade esquerda", "Projection down bars": "Projeção de barras para baixo", "Advance/Decline_study": "Avanço/Declínio", "New York": "Nova York", "Flag Mark": "Bandeira", "Drawings": "Desenhos", "Cancel": "Cancelar", "Compare or Add Symbol": "Comparar ou adicionar símbolo", "Redo": "Refazer", "Hide Drawings Toolbar": "Ocultar a barra de ferramentas de desenho", "Ultimate Oscillator_study": "Oscilador Final", "Vert Grid Lines": "Linhas de Grade Verticais", "Growing_input": "Crescendo", "Angle": "Ângulo", "Plot_input": "traçar mapa", "Color 8_input": "Cor 8", "Indicators, Fundamentals, Economy and Add-ons": "Indicadores, fundamentos, economia e extras", "h_dates": "H", "ROC Length_input": "Período ROC", "roclen3_input": "roclen3", "Overbought_input": "Sobrecomprado", "DPO_input": "DPO", "Change Minutes To": "Mudar minutos para", "No study templates saved": "Nenhum modelo de estudo salvo", "Trend Line": "Linha de Tendência", "TimeZone": "Fuso Horário", "Your chart is being saved, please wait a moment before you leave this page.": "Seu gráfico está sendo salvo, por favor espere um momento antes de sair desta página.", "Percentage": "Porcentagem", "Tu_day_of_week": "Terça", "RSI Length_input": "Comprimento do IFR", "Triangle": "Triângulo", "Line With Breaks": "Linha com quebras", "Period_input": "Período", "Watermark": "Marca d'Água", "Trigger_input": "Gatilho", "SigLen_input": "SigLen", "Extend Right": "Estender para a direita", "Color 2_input": "Cor 2", "Show Prices": "Visualizar Preços", "Unlock": "Desbloquear", "Copy": "Copiar", "high": "máxima", "Arc": "Arco", "Edit Order": "Editar ordem", "January": "Janeiro", "Arrow Mark Right": "Marca da seta para a direita", "Extend Alert Line": "Estender linha de alerta", "Background color 1": "Cor de fundo nº 1", "RSI Source_input": "Fonte do IFR", "Close Position": "Fechar posição", "Any Number": "Qualquer número", "Stop syncing drawing": "Para de sincronizar o gráfico", "Visible on Mouse Over": "Visível quando Mouse por Cima", "MA/EMA Cross_study": "Cruzamento MM/MME", "Thu": "Quinta", "Vortex Indicator_study": "Indicador Vortex", "view-only chart by {user}": "Ver apenas gráficos de {user}", "ROCLen1_input": "ROCLen1", "M_interval_short": "M", "Chaikin Oscillator_input": "Oscilador Chaikin", "Price Levels": "Níveis de preços", "Show Splits": "Mostrar Splits", "Zero Line_input": "Linha Zero", "Replay Mode": "Modo Replay", "__specialSymbolOpen__Today at__specialSymbolClose__ __dayTime__": "__specialSymbolOpen__Hoje em__specialSymbolClose____dayTime__", "Increment_input": "Incremento", "Days_interval": "Dias", "Show Right Scale": "Mostrar Escala à Direita", "Show Alert Labels": "Exibir Etiquetas dos Alertas", "Historical Volatility_study": "Volatilidade Histórica", "Lock": "Bloquear", "length14_input": "Comprimento14", "High": "Мáxima", "Q_input": "Q", "Date and Price Range": "Variação de data e preço", "Polyline": "Linha segmentada", "Reconnect": "Reconectar", "Lock/Unlock": "Bloquear/Desbloquear", "Base Level": "Nível Base", "Label Down": "Rótulo para Baixo", "Saturday": "Sábado", "Symbol Last Value": "Último Valor do Símbolo", "Above Bar": "Acima da barra", "Studies": "Estudos", "Color 0_input": "Cor 0", "Add Symbol": "Adicionar Símbolo", "maximum_input": "máximo", "Wed": "Quarta", "D_data_mode_delayed_letter": "D", "Sigma_input": "Sigma", "VWMA_study": "VWMA", "fastLength_input": "Período Rápido", "Time Levels": "Níveis de Tempo", "Width": "Largura", "Sunday": "Domingo", "Loading": "Carregando", "Template": "Modelo", "Use Lower Deviation_input": "Usar desvio inferior", "Up Wave 3": "Onda de alta 3", "Parallel Channel": "Canal paralelo", "Time Cycles": "Ciclos Temporais", "Second fraction part is invalid.": "A segunda parte da fração não é válida.", "Divisor_input": "Divisor", "Baseline": "Linha base", "Down Wave 1 or A": "Onda de baixa 1 ou A", "ROC_input": "ROC", "Dec": "Dez", "Ray": "Raio", "Extend": "Estender", "length7_input": "Comprimento7", "Bring Forward": "Trazer à frente", "Bottom": "Rodapé", "Berlin": "Bеrlim", "Undo": "Desfazer", "Window Size_input": "Tamanho da janela", "Mon": "Seg", "Right Labels": "Legendas a direita", "Long Length_input": "Comprimento longo", "True Strength Indicator_study": "Indicador de Força Real", "%R_input": "%R", "There are no saved charts": "Não existem gráficos salvos", "Instrument is not allowed": "Instrumento não permitido", "bars_margin": "barras", "Decimal Places": "Casas Decimais", "Show Indicator Last Value": "Mostrar Último Valor do Indicador", "Initial capital": "Capital inicial", "Show Angle": "Mostrar Ângulo", "Mass Index_study": "Índice de Massa", "More features on tradingview.com": "Mais funções no tradingview.com", "Objects Tree...": "Lista de Objetos...", "Remove Drawing Tools & Indicators": "Remover Desenhos e Indicadores", "Length1_input": "Comprimento 1", "Always Invisible": "Sempre invisível", "Circle": "Círculo", "Days": "Dias", "x_input": "x", "Save As...": "Salvar como...", "Elliott Double Combo Wave (WXY)": "Onda de Elliot combo dupla (WXY)", "Parabolic SAR_study": "SAR Parabólico", "Any Symbol": "Qualquer símbolo", "Variance": "Variação", "Stats Text Color": "Cor do Texto de Estatísticas", "Minutes": "Minutos", "Williams Alligator_study": "Indicador Alligator de Williams", "Projection": "Projeção", "Jaw_input": "Jaw", "Right": "Direito", "Help": "Ajuda", "Coppock Curve_study": "Curva Coppock", "Reversal Amount": "Quantidade de Reversão", "Reset Chart": "Resetar o gráfico", "Marker Color": "Cor do marcador", "Fans": "Leques", "Left Axis": "Escala à esquerda", "Open": "Abertura", "YES": "SIM", "longlen_input": "período longo", "Moving Average Exponential_study": "Média Móvel Exponencial", "Source border color": "Cor do contorno da base", "Redo {0}": "Refazer", "Cypher Pattern": "Padrão Cypher", "s_dates": "s", "Area": "Área", "Triangle Pattern": "Padrão Triangular", "Balance of Power_study": "Equilíbrio de Poder", "EOM_input": "EOM", "Shapes_input": "Formas", "Oversold_input": "Sobrevendido", "Apply Manual Risk/Reward": "Aplicar risco/ganho manual", "Market Closed": "Mercado Fechado", "Sydney": "Sidney", "Indicators": "Indicadores", "close": "fechamento", "q_input": "q", "You are notified": "Você foi advertido", "Font Icons": "Ícones de Fonte", "%D_input": "%D", "Border Color": "Cor do contorno", "Offset_input": "Deslocamento", "Risk": "Risco", "Price Scale": "Escala de preços", "HV_input": "HV", "Seconds": "Segundos", "Settings": "Configurações", "Start_input": "Início", "Elliott Impulse Wave (12345)": "Onda de impulso de Elliot (12345)", "Hours": "Horas", "Send to Back": "Enviar para Trás", "Color 4_input": "Cor 4", "Angles": "Ângulos", "Prices": "Preços", "Hollow Candles": "Candles Vazios", "July": "Julho", "Create Horizontal Line": "Criar linha horizontal", "Minute": "Minuto", "Cycle": "Ciclo", "ADX Smoothing_input": "ADX Suavizado", "One color for all lines": "Uma cor para todas as linhas", "m_dates": "Mês", "(H + L + C)/3": "(Máx.+Mín.+Fch.)/3", "Candles": "Velas", "We_day_of_week": "Quarta", "Width (% of the Box)": "Largura (% da Caixa)", "%d minute": "%d minuto", "Go to...": "Ir para...", "Pip Size": "Tamanho do Pip", "Wednesday": "Quarta", "This drawing is used in alert. If you remove the drawing, the alert will be also removed. Do you want to remove the drawing anyway?": "O desenho está sendo utilizado em um alerta. Se você remover o desenho, o alerta também será removido. Você quer remover o desenho assim mesmo?", "Show Countdown": "Visualizar Contagem", "Show alert label line": "Mostrar linha de descrição do alerta", "MA_input": "MA", "Length2_input": "Comprimento 2", "not authorized": "não autorizado", "Session Volume_study": "Volume da Sessão", "Image URL": "URL da imagem", "SMI Ergodic Oscillator_input": "Oscildaor SMI Ergodic", "Show Objects Tree": "Visualizar Lista de Objetos", "Primary": "Primária", "Price:": "Preço:", "Bring to Front": "Puxar para a frente", "Brush": "Pincel", "Not Now": "Agora não", "Yes": "Sim", "C_data_mode_connecting_letter": "C", "SMALen4_input": "SMALen4", "Apply Default Drawing Template": "Aplicar modelo gráfico padrão", "Compact": "Compacto", "Save As Default": "Salvar como padrão", "Target border color": "Cor do contorno do objetivo", "Invalid Symbol": "Símbolo inválido", "Inside Pitchfork": "Dentro do garfo", "yay Color 1_input": "yay Cor 1", "Quandl is a huge financial database that we have connected to TradingView. Most of its data is EOD and is not updated in real-time, however the information may be extremely useful for fundamental analysis.": "Quandl é um enorme banco de dados financeiro que temos conectado ao TradingView. A maioria dos seus dados é FDD e não é atualizada em tempo real, embora a informação possa ser extremamente útil para a análise fundamental.", "Hide Marks On Bars": "Ocultar marcas nas barras", "Cancel Order": "Cancelar ordem", "Hide All Drawing Tools": "Ocultar todas as ferramentas de desenho", "WMA Length_input": "Comprimento WMA", "Show Dividends on Chart": "Mostrar dividendos no gráfico", "Show Executions": "Mostrar Execuções", "Borders": "Contorno", "Remove Indicators": "Remover Indicadores", "loading...": "carregando...", "Closed_line_tool_position": "Fechado", "Rectangle": "Retângulo", "Change Resolution": "Mudar resolução", "Indicator Arguments": "Argumentos do indicador", "Symbol Description": "Descrição do instrumento", "Chande Momentum Oscillator_study": "Oscilador de Momento de Chande", "Degree": "Grau", " per order": " conforme a ordem", "Line - HL/2": "Linha - MáxMín/2", "Supercycle": "Superciclo", "Least Squares Moving Average_study": "Média Móvel de Mínimos Quadrados", "Change Variance value": "Mudar valor de variância", "powered by ": "Patrocinado por ", "Source_input": "Fonte", "Change Seconds To": "Mudar segundos para", "%K_input": "%K", "Scales Text": "Теxto da escala", "Toronto": "Тоronto", "Please enter template name": "Por favor, digite o nome do modelo", "Symbol Name": "Nome do Símbolo", "Tokyo": "Тóquio", "Events Breaks": "Anúncios de eventos", "San Salvador": "São Salvador", "Months": "Meses", "Symbol Info...": "Sobre o instrumento...", "Elliott Wave Minor": "Onda de Elliot menor", "Cross": "Cruz", "Measure (Shift + Click on the chart)": "Medição (Shift + clique no gráfico)", "Override Min Tick": "Alterar resolução mín.", "Show Positions": "Mostrar Posições", "Dialog": "Diálogo", "Add To Text Notes": "Adicionar às notas de texto", "Elliott Triple Combo Wave (WXYXZ)": "Onda de Elliot combo tripla (WXYXZ)", "Multiplier_input": "Multiplicador", "Risk/Reward": "Risco/Recompensa", "Base Line Periods_input": "Períodos da linha base", "Show Dividends": "Mostrar Dividendos", "Relative Strength Index_study": "Indice de Força Relativa", "Modified Schiff Pitchfork": "Garfo de Shiff modificado", "Top Labels": "Legendas Superiores", "Show Earnings": "Mostrar Balanços", "Line - Open": "Linha - Abertura", "Elliott Triangle Wave (ABCDE)": "Onda de Elliot triangular (ABCDE)", "Minuette": "Minueto", "Text Wrap": "Quebrar Texto", "Reverse Position": "Reverter posição", "Elliott Minor Retracement": "Correção de Elliot menor", "Pitchfan": "Leque de linhas", "Slash_hotkey": "Barra", "No symbols matched your criteria": "Não foram encontrados símbolos que correspondam à escolha selecionada", "Icon": "Ícone", "lengthRSI_input": "ComprimentoIFR", "Tuesday": "Terça", "Teeth Length_input": "Comprimento dos dentes", "Indicator_input": "Indicador", "Box size assignment method": "Método de Caixa", "Open Interval Dialog": "Abrir janela de intervalo", "Shanghai": "Shangai", "Athens": "Аtenas", "Fib Speed Resistance Arcs": "Arcos de resistência a velocidade de Fibonacci", "Content": "Conteúdo", "middle": "centro", "Lock Cursor In Time": "Fixar o cursor no tempo", "Intermediate": "Intermediária", "Eraser": "Borracha", "Relative Vigor Index_study": "Índice de Vigor Relativo (RVI)", "Envelope_study": "Médias Móveis Envelope", "Pre Market": "Pré-Mercado", "Horizontal Line": "Linha horizontal", "O_in_legend": "Abr", "Confirmation": "Confirmação", "HL Bars": "Barras máx./mín.", "Lines:": "Linhas", "Hide Favorite Drawings Toolbar": "Ocultar a barra de ferramentas de desenho favoritas", "X Cross": "X Cruz", "Profit Level. Ticks:": "Nível de lucros. ticks:", "Show Date/Time Range": "Visualizar Intervalo de Dia/Tempo", "Level {0}": "Nível {0}", "Favorites": "Favoritos", "Horz Grid Lines": "Linhas de grade horizontais", "-DI_input": "-DI", "Price Range": "Intervalo de preços", "day": "dia", "deviation_input": "desvio", "Account Size": "Tamanho da Conta", "UTC": "Horario Universal(UTC)", "Time Interval": "Intervalo de Tempo", "Success text color": "Cor do texto (SUCESSO)", "ADX smoothing_input": "ADX Suavizado", "%d hour": "%d hora", "Order size": "Tamanho da ordem", "Drawing Tools": "Ferramentas de desenho", "Save Drawing Template As": "Salvar modelo de desenho como", "Traditional": "Tradicional", "Chaikin Money Flow_study": "Fluxo Monetário de Chaikin", "Ease Of Movement_study": "Ease of Movement", "Defaults": "Padrões", "Percent_input": "percentagem", "Interval is not applicable": "O intervalo não pode ser aplicado", "short_input": "Venda", "Visual settings...": "Configurações Visuais...", "RSI_input": "IFR", "Chatham Islands": "Ilhas Chatham", "Detrended Price Oscillator_input": "Oscilador de Preço Ratificado", "Mo_day_of_week": "Seg", "Up Wave 4": "Onda de alta 4", "center": "centro", "Vertical Line": "Linha Vertical", "Bogota": "Bogotá", "Show Splits on Chart": "Mostrar divisões no gráfico", "Sorry, the Copy Link button doesn't work in your browser. Please select the link and copy it manually.": "Desculpe, o botão Copiar link não funciona no seu navegador. Selecione o link e copie-o manualmente.", "Levels Line": "Linhas de nível", "Events & Alerts": "Eventos e alertas", "May": "Мaio", "ROCLen4_input": "ROCLen4", "Aroon Down_input": "Arron Abaixo", "Add To Watchlist": "Adicionar à lista de observação", "Price": "Preço", "left": "restantes", "Lock scale": "Bloquear escala", "Limit_input": "Limite", "Change Days To": "Mudar dias para", "Price Oscillator_study": "Oscilador de Preço", "smalen1_input": "smalen1", "Drawing Template '{0}' already exists. Do you really want to replace it?": "O modelo de desenho '{0}' já existe. Você quer realmente substituí-lo?", "Show Middle Point": "Mostrar Ponto Médio", "KST_input": "KST", "Extend Right End": "Estender para a extremidade direita", "Base currency": "Moeda de base", "Line - Low": "Linha - Mínimo", "Price_input": "Preço", "Gann Fan": "Leque de Gann", "Weeks": "Semanas", "McGinley Dynamic_study": "McGinley Dinâmico", "Relative Volatility Index_study": "Índice de Volatilidade Relativa", "Source Code...": "Código Fonte...", "PVT_input": "PVT", "Show Hidden Tools": "Mostrar Ferramentas Ocultas", "Hull Moving Average_study": "Média Móvel de Hull", "Symbol Prev. Close Value": "Valor de Fech. Anterior do Símbolo", "Istanbul": "Istambul", "{0} chart by TradingView": "Gráfico de {0} por TradingView", "Right Shoulder": "Ombro Direito.", "Remove Drawing Tools": "Remover Desenhos", "Friday": "Sexta", "Zero_input": "Zero", "Company Comparison": "Comparação da empresa", "Stochastic Length_input": "Comprimento estocástico", "mult_input": "mult", "URL cannot be received": "A URL não pode ser recebida", "Success back color": "Cor do fundo (SUCESSO)", "E_data_mode_end_of_day_letter": "E", "Trend-Based Fib Extension": "Extensão de Fibonacci Baseado na Tendência", "Top": "Topo", "Double Curve": "Curva dupla", "Stochastic RSI_study": "RSI Estocástico", "Oops!": "Ops!", "Horizontal Ray": "Raio horizontal", "smalen3_input": "smalen3", "Symbol Labels": "Legendas dos Símbolo", "Script Editor...": "Editor de scripts...", "Are you sure?": "Tem certeza?", "Trades on Chart": "Negociações no gráfico", "Listed Exchange": "Bolsa listada", "Error:": "Erro:", "Fullscreen mode": "Modo tela cheia", "Add Text Note For {0}": "Adicionar nota para {0}", "K_input": "K", "Do you really want to delete Drawing Template '{0}' ?": "Você quer realmente deletar o modelo de desenho '{0}'?", "ROCLen3_input": "ROCLen3", "Restore Size": "Restaurar tamanho", "Text Color": "Cor do Texto", "Rename Chart Layout": "Renomear gráfico", "Built-ins": "Incorporados", "Background color 2": "Cor de fundo nº 2", "Drawings Toolbar": "Barra de ferramentas de desenho", "New Zealand": "Nova Zelândia", "CHOP_input": "CHOP", "Apply Defaults": "Aplicar padrões", "% of equity": "% do capital", "Extended Alert Line": "Linha de alerta estendida", "Note": "Nota", "Moving Average Channel_study": "Canal de Média Móvel", "like": "Curtida", "Show": "Visualizar", "{0} bars": "barras: {0}", "Lower_input": "Mais baixo", "Created ": "Criado ", "Warning": "Aviso", "Elder's Force Index_study": "Índice de Força de Elders", "Show Earnings on Chart": "Mostrar ganhos no gráfico", "ATR_input": "ATR", "Low": "Мínima", "Bollinger Bands %B_study": "Bandas de Bollinger %B", "Time Zone": "Fuso Horário", "right": "direita", "%d month": "%d mês", "Wrong value": "Valor inválido", "Upper Band_input": "Banda superior", "Sun": "Dom", "Rename...": "Renomear...", "start_input": "Início", "No indicators matched your criteria.": "Não foram encontrados indicadores que correspondam à escolha selecionada.", "Commission": "Comissão", "Down Color": "Cor Abaixo", "Short length_input": "Comprimento curto", "Kolkata": "Calcuta", "Submillennium": "Sucmilênio", "Technical Analysis": "Análise Técnica", "Show Text": "Visualizar Texto", "Channel": "Canal", "FXCM CFD data is available only to FXCM account holders": "Dados CFD da FXCM só estão disponíveis para clientes da FXCM.", "Lagging Span 2 Periods_input": "2 Períodos de intervalo de atraso", "Connecting Line": "Linha conectora", "Seoul": "Seul", "bottom": "fundo", "Teeth_input": "Dentes", "Sig_input": "Sig", "Open Manage Drawings": "Abrir gerenciamento de desenhos", "Save New Chart Layout": "Salvar novo layout de gráfico", "Fib Channel": "Canal de Fibonacci", "Save Drawing Template As...": "Salvar modelo de desenho como...", "Minutes_interval": "Minutos", "Up Wave 2 or B": "Onda de alta 2 ou B", "Columns": "Colunas", "Directional Movement_study": "Movimento Direcional", "roclen2_input": "roclen2", "Apply WPT Down Wave": "Aplicar onda WPT de baixa", "Not applicable": "Não aplicável", "Bollinger Bands %B_input": "Bandas de Bollinger % B", "Default": "Padrão", "Singapore": "Singapura", "Template name": "Nome do modelo", "Indicator Values": "Valores do indicador", "Lips Length_input": "Comprimento dos lábios", "Toggle Log Scale": "Escala Logarítmica", "L_in_legend": "Min", "Remove custom interval": "Remover intervalo personalizado", "shortlen_input": "período curto", "Quotes are delayed by {0} min": "As cotações são atrasadas em {0} min", "Hide Events on Chart": "Ocultar eventos no gráfico", "Cash": "Dinheiro", "Profit Background Color": "Cor de fundo do lucro", "Bar's Style": "Estilos de Barra", "Exponential_input": "Exponencial", "Down Wave 5": "Onda de baixa 5", "Previous": "Anterior", "Stay In Drawing Mode": "Manter em Modo de Desenho", "Comment": "Comentário", "Connors RSI_study": "IFR de Connors", "Bars": "Barras", "Show Labels": "Visualizar Legendas", "Flat Top/Bottom": "Topo/Fundo plano", "Symbol Type": "Tipo de Símbolo", "December": "Dezembro", "Lock drawings": "Bloquear desenhos", "Border color": "Cor do contorno", "Change Seconds From": "Mudar segundos de", "Left Labels": "Legendas à esquerda", "Insert Indicator...": "Inserir indicador...", "ADR_B_input": "ADR_B", "Paste %s": "Colar %s", "Change Symbol...": "Mudar símbolo...", "Timezone": "Fuso horário", "Invite-only script. You have been granted access.": "Script sob convite. Você recebeu acesso.", "Color 6_input": "Cor 6", "Oct": "Оut", "ATR Length": "Período do ATR", "{0} financials by TradingView": "{0} Finanças por TradingView", "Extend Lines Left": "Estender linhas para a esquerda", "Feb": "Fev", "Transparency": "Transparência", "No": "Não", "June": "Junho", "Cyclic Lines": "Linhas cíclicas", "length28_input": "Comprimento28", "ABCD Pattern": "Padrão ABCD", "When selecting this checkbox the study template will set \"__interval__\" interval on a chart": "Ao selecionar esta caixa de seleção, o modelo de estudo definirá o intervalo \"__interval__\" em um gráfico", "Add": "Adicionar", "OC Bars": "Barras Abr/Fec", "Millennium": "Milênio", "On Balance Volume_study": "Saldo de Volume - On Balance Volume", "Apply Indicator on {0} ...": "Aplicar indicador em {0} ...", "NEW": "NOVO", "Chart Layout Name": "Nome do layout do gráfico", "Up bars": "Barras altas", "Hull MA_input": "MM de HULL", "Lock Scale": "Bloquear escala", "distance: {0}": "distância: {0}", "Extended": "Estendida", "Square": "Quadrado", "log": "Logarítmica", "NO": "NÃO", "Top Margin": "Margem Superior", "Up fractals_input": "Fractais acima", "Insert Drawing Tool": "Inserir desenho", "OHLC Values": "Valores Abertura/Alta/Baixa/Fechamento", "Correlation_input": "Correlação", "Session Breaks": "Divisão de Dias", "Add {0} To Watchlist": "Adicionar {0} à lista de observação", "Anchored Note": "Nota ancorada", "lipsLength_input": "ComprimentoLábios", "low": "minima", "Apply Indicator on {0}": "Aplicar indicador em {0}", "UpDown Length_input": "Largura de AltaBaixa", "Price Label": "Legenda de preços", "November": "Novembro", "Tehran": "Teerã", "Balloon": "Balão", "Track time": "Sincronizar Tempo", "Background Color": "Cor de fundo", "an hour": "uma hora", "Right Axis": "Eixo direito", "D_data_mode_delayed_streaming_letter": "D", "VI -_input": "VI -", "slowLength_input": "Período Lento", "Click to set a point": "Clique para marcar um ponto", "Save Indicator Template As...": "Salvar modelo de indicador como...", "Arrow Up": "Seta para Cima", "n/a": "n/d", "Indicator Titles": "Títulos do indicador", "Failure text color": "Falha de cor do texto", "Sa_day_of_week": "Sáb.", "Net Volume_study": "Volume Líquido", "Error": "Erro", "Edit Position": "Editar posição", "RVI_input": "RVI", "Centered_input": "Centrado", "Recalculate On Every Tick": "Recalcular em cada tick", "Left": "Esquerda", "Simple ma(oscillator)_input": "MM Simples (oscilador)", "Compare": "Comparar", "Fisher Transform_study": "Transformada de Fisher", "Show Orders": "Mostrar Ordens", "Zoom In": "Aumentar Zoom", "Length EMA_input": "Período da MME", "Enter a new chart layout name": "Digite um novo nome de layout gráfico", "Signal Length_input": "Comprimento do sinal", "FAILURE": "FALHA", "Point Value": "Valor do Ponto", "D_interval_short": "D", "MA with EMA Cross_study": "Cruzamento de Média Móvel Simples e Exponencial", "Label Up": "Rótulo para Cima", "Price Channel_study": "Canal de Preço", "Close": "Fechar", "ParabolicSAR_input": "Parabólico SAR", "Log Scale_scale_menu": "Escala logarítmica", "MACD_input": "MACD", "Do not show this message again": "Não mostre essa mensagem novamente", "{0} P&L: {1}": "{0} L&P: {1}", "No Overlapping Labels": "Não há etiquetas sobrepostas", "Arrow Mark Left": "Marca da seta para a esquerda", "Down Wave 2 or B": "Onda de baixa 2 ou B", "Line - Close": "Linha - Fechamento", "(O + H + L + C)/4": "(Abr.+Máx.+Mín.+Fch.)/4", "Confirm Inputs": "Confirmar entradas", "Open_line_tool_position": "Aberto", "Lagging Span_input": "Intervalo de atraso", "Subminuette": "Sub-Minueto", "Thursday": "Quinta", "Arrow Down": "Seta para Baixo", "Triple EMA_study": "Média Móvel Exponencial Tripla", "Elliott Correction Wave (ABC)": "Onda de Elliot corretiva (ABC)", "Error while trying to create snapshot.": "Erro ao tentar criar uma captura de tela.", "Label Background": "Fundo da legenda", "Templates": "Modelos", "Please report the issue or click Reconnect.": "Por favor, informe o problema ou clique em Reconectar.", "1. Slide your finger to select location for first anchor
    2. Tap anywhere to place the first anchor": "1. Defina o primeiro ponto arrastando a cruz com o dedo.
    2. Toque em qualquer lugar para colocar o primeiro ponto.", "Signal Labels": "Legendas de Sinal", "Delete Text Note": "Deletar Nota de Texto", "compiling...": "compilando...", "Detrended Price Oscillator_study": "Oscilador de Preço sem Tendência", "Color 5_input": "Cor 5", "Fixed Range_study": "Range Fixo", "Up Wave 1 or A": "Onda de alta 1 ou A", "Scale Price Chart Only": "Apenas o gráfico de escala de preços", "Unmerge Up": "desmesclar para cima", "auto_scale": "auto", "Short period_input": "Período curto", "Background": "Fundo", "Study Templates": "Modelos de Estudo", "Up Color": "Cor Acima", "Apply Elliot Wave Intermediate": "Aplicar intermediário de onda de Elliot", "VWMA_input": "VWMA", "Lower Deviation_input": "Desvio Inferior", "Save Interval": "Salvar intervalo", "February": "Fevereiro", "Reverse": "Reverter", "Oops, something went wrong": "Ops, algo deu errado", "Add to favorites": "Adicionar aos favoritos", "Median": "Média", "ADX_input": "ADX", "Remove": "Remover", "len_input": "len", "Arrow Mark Up": "Marca da seta para cima", "April": "Abril", "Active Symbol": "Símbolo ativo", "Extended Hours": "Fora do horário regular", "Crosses_input": "Cruzamentos", "Middle_input": "centro", "Read our blog for more info!": "Leia nosso blog para maiores informações!", "Sync drawing to all charts": "Sincronizar desenhos em todos os gráficos", "LowerLimit_input": "Limite inferior", "Know Sure Thing_study": "Know Sure Thing (KST)", "Copy Chart Layout": "Copiar o layout do gráfico", "Compare...": "Comparar...", "1. Slide your finger to select location for next anchor
    2. Tap anywhere to place the next anchor": "1. Deslize o dedo para selecionar o local para o próximo ponto.
    2. Toque em qualquer lugar para colocar o próximo ponto.", "Text Notes are available only on chart page. Please open a chart and then try again.": "Notas estão disponíveis apenas na página de gráficos. Por favor abre um gráfico e tente novamente.", "Color": "Cor", "Aroon Up_input": "Arron Acima", "Apply Elliot Wave Major": "Aplicar a onda de Elliott maior", "Scales Lines": "Linhas da escala", "Type the interval number for munute charts (i.e. 5 if it is going to be a five minute chart). Or number plus letter for H (Hourly), D (Daily), W (Weekly), M (Monthly) intervals (i.e. D or 2H)": "Digite o número de intervalo para gráficos minute (ou seja, 5 se ele vai ser um gráfico de cinco minutos). Ou número mais letra para os intervalos H (Horário), D (Diário), S (Semanal), M (Mensal) (isto é, D ou 2H)", "Ellipse": "Elipse", "Up Wave C": "Onda de alta C", "Show Distance": "Visualizar Distância", "Risk/Reward Ratio: {0}": "Razão risco/recompensa: {0}", "Volume Oscillator_study": "Oscilador de Volume", "Williams Fractal_study": "Indicador Fractal de Williams", "Merge Up": "Agrupar para cima", "Right Margin": "Margem direita", "Moscow": "Моscou", "Warsaw": "Varsóvia"} \ No newline at end of file diff --git a/charting_library/static/localization/translations/ro.json b/charting_library/static/localization/translations/ro.json index 9862a8ed..e264d2f4 100644 --- a/charting_library/static/localization/translations/ro.json +++ b/charting_library/static/localization/translations/ro.json @@ -1 +1 @@ -{"Simple ma(oscillator)_input": "Simple ma(oscillator)", "ticks_slippage ... ticks": "ticks", "%d day": "%d days", "Months_interval": "Months", "Detrended Price Oscillator_input": "Detrended Price Oscillator", "maximum_input": "maximum", "Percent_input": "Percent", "D_data_mode_delayed_letter": "D", "smalen1_input": "smalen1", "month": "months", "roclen1_input": "roclen1", "Price_input": "Price", "Close_input": "Close", "Use Lower Deviation_input": "Use Lower Deviation", "Falling_input": "Falling", "McGinley Dynamic_study": "McGinley Dynamic", "Relative Volatility Index_study": "Relative Volatility Index", "in_dates": "in", "PVT_input": "PVT", "Conversion Line_input": "Conversion Line", "Hull Moving Average_study": "Hull Moving Average", "Su_day_of_week": "Su", "Up fractals_input": "Up fractals", "OSC_input": "OSC", "Divisor_input": "Divisor", "Volume_study": "Volume", "Lips_input": "Lips", "Window Size_input": "Window Size", "Zero_input": "Zero", "Base Line_input": "Base Line", "Double EMA_study": "Double EMA", "Signal smoothing_input": "Signal smoothing", "E_data_mode_end_of_day_letter": "E", "SMALen2_input": "SMALen2", "Bollinger Bands_study": "Bollinger Bands", "Long Length_input": "Long Length", "True Strength Indicator_study": "True Strength Indicator", "%R_input": "%R", "Upper_input": "Upper", "Stochastic RSI_study": "Stochastic RSI", "bars_margin": "bars", "Sigma_input": "Sigma", "Average True Range_study": "Average True Range", "Max value_input": "Max value", "MA Length_input": "MA Length", "Length1_input": "Length1", "SMALen1_input": "SMALen1", "UpperLimit_input": "UpperLimit", "H_in_legend": "H", "Short RoC Length_input": "Short RoC Length", "ROCLen3_input": "ROCLen3", "DI Length_input": "DI Length", "Parabolic SAR_study": "Parabolic SAR", "Sa_day_of_week": "Sa", "SMI_input": "SMI", "Lead 1_input": "Lead 1", "Basis_input": "Basis", "Moving Average_study": "Moving Average", "fastLength_input": "fastLength", "lengthStoch_input": "lengthStoch", "Color 7_input": "Color 7", "Chop Zone_study": "Chop Zone", "Signal_input": "Signal", "Jaw_input": "Jaw", "Jaw Length_input": "Jaw Length", "%d minute": "%d minutes", "like": "likes", "Coppock Curve_study": "Coppock Curve", "yay Color 0_input": "yay Color 0", "Oscillator_input": "Oscillator", "Chande Kroll Stop_study": "Chande Kroll Stop", "Hours_interval": "Hours", "StdDev_input": "StdDev", "Smoothed Moving Average_study": "Smoothed Moving Average", "Lower Band_input": "Lower Band", "VI +_input": "VI +", "Elder's Force Index_study": "Elder's Force Index", "Money Flow_study": "Money Flow", "DEMA_input": "DEMA", "ROCLen2_input": "ROCLen2", "Simple ma(signal line)_input": "Simple ma(signal line)", "longlen_input": "longlen", "Moving Average Exponential_study": "Moving Average Exponential", "Lower_input": "Lower", "Linear Regression Curve_study": "Linear Regression Curve", "Symbol_input": "Symbol", "s_dates": "s", "%d month": "%d months", "Upper Deviation_input": "Upper Deviation", "Upper Band_input": "Upper Band", "Chaikin Oscillator_study": "Chaikin Oscillator", "Chande MO_input": "Chande MO", "Balance of Power_study": "Balance of Power", "EOM_input": "EOM", "start_input": "start", "Centered_input": "Centered", "Bollinger Bands Width_input": "Bollinger Bands Width", "Signal Length_input": "Signal Length", "D_interval_short": "D", "Average Directional Index_study": "Average Directional Index", "Short length_input": "Short length", "smoothD_input": "smoothD", "Color 1_input": "Color 1", "Moving Average Weighted_study": "Moving Average Weighted", "Precise Labels_scale_menu": "Precise Labels", "ADX smoothing_input": "ADX smoothing", "Short period_input": "Short period", "smalen4_input": "smalen4", "RSI Source_input": "RSI Source", "%D_input": "%D", "signalLength_input": "signalLength", "Offset_input": "Offset", "HV_input": "HV", "Teeth_input": "Teeth", "Volume Oscillator_study": "Volume Oscillator", "h_interval_short": "h", "Ichimoku Cloud_study": "Ichimoku Cloud", "S_data_mode_snapshot_letter": "S", "jawLength_input": "jawLength", "Hull MA_input": "Hull MA", "ROC_input": "ROC", "SMALen4_input": "SMALen4", "Minutes_interval": "Minutes", "exponential_input": "exponential", "Mass Index_study": "Mass Index", "OnBalanceVolume_input": "OnBalanceVolume", "Smoothing_input": "Smoothing", "roclen2_input": "roclen2", "Color 3_input": "Color 3", "Chande Momentum Oscillator_study": "Chande Momentum Oscillator", "Fr_day_of_week": "Fr", "Bollinger Bands %B_input": "Bollinger Bands %B", "CCI_input": "CCI", "increment_input": "increment", "Keltner Channels_study": "Keltner Channels", "Lips Length_input": "Lips Length", "Use Upper Deviation_input": "Use Upper Deviation", "L_in_legend": "L", "We_day_of_week": "We", "Bands style_input": "Bands style", "shortlen_input": "shortlen", "Momentum_study": "Momentum", "ADX_input": "ADX", "MF_input": "MF", "day": "days", "short_input": "short", "NV_input": "NV", "Choppiness Index_study": "Choppiness Index", "Long length_input": "Long length", "Th_day_of_week": "Th", "Vortex Indicator_study": "Vortex Indicator", "MA_input": "MA", "Long_input": "Long", "W_interval_short": "W", "Multiplier_input": "Multiplier", "Directional Movement_study": "Directional Movement", "percent_input": "percent", "Equality Line_input": "Equality Line", "lengthRSI_input": "lengthRSI", "SMI Ergodic Oscillator_input": "SMI Ergodic Oscillator", "Accumulation/Distribution_input": "Accumulation/Distribution", "D_input": "D", "C_in_legend": "C", "Weeks_interval": "Weeks", "smoothK_input": "smoothK", "Percentage_scale_menu": "Percentage", "Down fractals_input": "Down fractals", "MOM_input": "MOM", "P_input": "P", "Source_compare": "Source", "smalen2_input": "smalen2", "Ease Of Movement_study": "Ease Of Movement", "Color 6_input": "Color 6", "C_data_mode_connecting_letter": "C", "Klinger Oscillator_study": "Klinger Oscillator", "Exponential_input": "Exponential", "TRIX_input": "TRIX", "SMI Ergodic Indicator/Oscillator_study": "SMI Ergodic Indicator/Oscillator", "Chaikin Oscillator_input": "Chaikin Oscillator", "Bollinger Bands %B_study": "Bollinger Bands %B", "Correlation_input": "Correlation", "yay Color 1_input": "yay Color 1", "length28_input": "length28", "Periods_input": "Periods", "CHOP_input": "CHOP", "Middle_input": "Middle", "TRIX_study": "TRIX", "WMA Length_input": "WMA Length", "Growing_input": "Growing", "Color 0_input": "Color 0", "On Balance Volume_study": "On Balance Volume", "RVGI_input": "RVGI", "Histogram_input": "Histogram", "Count_input": "Count", "Stochastic Length_input": "Stochastic Length", "Closed_line_tool_position": "Closed", "sym_input": "sym", "Relative Strength Index_study": "Relative Strength Index", "d_dates": "d", "in %s_time_range": "in %s", "Start_input": "Start", "%s ago_time_range": "%s ago", "mult_input": "mult", "-DI_input": "-DI", "Length2_input": "Length2", "Donchian Channels_study": "Donchian Channels", "Correlation Coefficient_study": "Correlation Coefficient", "Least Squares Moving Average_study": "Least Squares Moving Average", "depth_input": "depth", "Mo_day_of_week": "Mo", "lipsLength_input": "lipsLength", "Short Length_input": "Short Length", "teethLength_input": "teethLength", "roclen4_input": "roclen4", "length7_input": "length7", "Source_input": "Source", "%K_input": "%K", "Log Scale_scale_menu": "Log Scale", "Zig Zag_study": "Zig Zag", "D_data_mode_delayed_streaming_letter": "D", "VI -_input": "VI -", "slowLength_input": "slowLength", "Long period_input": "Long period", "length_input": "length", "ADX Smoothing_input": "ADX Smoothing", "Price Oscillator_study": "Price Oscillator", "minute": "minutes", "Detrended Price Oscillator_study": "Detrended Price Oscillator", "Median_input": "Median", "MA Cross_study": "MA Cross", "RSI Length_input": "RSI Length", "Signal line period_input": "Signal line period", "RVI_input": "RVI", "Base Line Periods_input": "Base Line Periods", "Awesome Oscillator_study": "Awesome Oscillator", "Slow length_input": "Slow length", "Conversion Line Periods_input": "Conversion Line Periods", "Price Volume Trend_study": "Price Volume Trend", "smalen3_input": "smalen3", "Fisher Transform_study": "Fisher Transform", "Stochastic_study": "Stochastic", "ATR_input": "ATR", "hour": "hours", "TEMA_input": "TEMA", "siglen_input": "siglen", "F_data_mode_forbidden_letter": "F", "second": "seconds", "MACD_input": "MACD", "q_input": "q", "Zero Line_input": "Zero Line", "Teeth Length_input": "Teeth Length", "Long RoC Length_input": "Long RoC Length", "Length3_input": "Length3", "+DI_input": "+DI", "Length_input": "Length", "Fast length_input": "Fast length", "ParabolicSAR_input": "ParabolicSAR", "Sig_input": "Sig", "Short_input": "Short", "Ultimate Oscillator_study": "Ultimate Oscillator", "MACD_study": "MACD", "Lagging Span 2 Periods_input": "Lagging Span 2 Periods", "Indicator_input": "Indicator", "Plot_input": "Plot", "Color 8_input": "Color 8", "Open_line_tool_position": "Open", "Lagging Span_input": "Lagging Span", "Q_input": "Q", "roclen3_input": "roclen3", "Envelope_study": "Envelope", "Overbought_input": "Overbought", "DPO_input": "DPO", "UO_input": "UO", "Triple EMA_study": "Triple EMA", "Level_input": "Level", "Relative Vigor Index_study": "Relative Vigor Index", "Arnaud Legoux Moving Average_study": "Arnaud Legoux Moving Average", "show MA_input": "show MA", "Commodity Channel Index_study": "Commodity Channel Index", "O_in_legend": "O", "Elder's Force Index_input": "Elder's Force Index", "Color 4_input": "Color 4", "Period_input": "Period", "Trigger_input": "Trigger", "SigLen_input": "SigLen", "Color 2_input": "Color 2", "Color 5_input": "Color 5", "useTrueRange_input": "useTrueRange", "SMALen3_input": "SMALen3", "auto_scale": "auto", "%d year": "%d years", "Aroon_study": "Aroon", "Tu_day_of_week": "Tu", "VWMA_input": "VWMA", "h_dates": "h", "deviation_input": "deviation", "week": "weeks", "long_input": "long", "VWMA_study": "VWMA", "ADR_B_input": "ADR_B", "Lower Deviation_input": "Lower Deviation", "%d hour": "%d hours", "Cross_chart_type": "Cross", "Displacement_input": "Displacement", "Shapes_input": "Shapes", "Fisher_input": "Fisher", "len_input": "len", "ROCLen1_input": "ROCLen1", "Chaikin Money Flow_study": "Chaikin Money Flow", "M_interval_short": "M", "x_input": "x", "p_input": "p", "isCentered_input": "isCentered", "Crosses_input": "Crosses", "KST_input": "KST", "Oversold_input": "Oversold", "Williams %R_study": "Williams %R", "LowerLimit_input": "LowerLimit", "RSI_input": "RSI", "Know Sure Thing_study": "Know Sure Thing", "Historical Volatility_study": "Historical Volatility", "Increment_input": "Increment", "Days_interval": "Days", "Net Volume_study": "Net Volume", "m_dates": "m", "Aroon Up_input": "Aroon Up", "orders_up to ... orders": "orders", "length14_input": "length14", "Lead 2_input": "Lead 2", "X_input": "X", "Accumulation/Distribution_study": "Accumulation/Distribution", "Bollinger Bands Width_study": "Bollinger Bands Width", "Williams Alligator_study": "Williams Alligator", "ROCLen4_input": "ROCLen4", "Aroon Down_input": "Aroon Down", "Williams Fractal_study": "Williams Fractal", "R_data_mode_realtime_letter": "R", "Advance/Decline_study": "Advance/Decline", "K_input": "K", "Rate Of Change_study": "Rate Of Change"} \ No newline at end of file +{"ticks_slippage ... ticks": "ticks", "Months_interval": "Months", "Percent_input": "Percent", "in_dates": "in", "roclen1_input": "roclen1", "OSC_input": "OSC", "Volume_study": "Volume", "Lips_input": "Lips", "Base Line_input": "Base Line", "SMALen2_input": "SMALen2", "Bollinger Bands_study": "Bollinger Bands", "Upper_input": "Upper", "Sig_input": "Sig", "Count_input": "Count", "OnBalanceVolume_input": "OnBalanceVolume", "Cross_chart_type": "Cross", "H_in_legend": "H", "R_data_mode_replay_letter": "R", "Accumulation/Distribution_study": "Accumulation/Distribution", "Rate Of Change_study": "Rate Of Change", "Color 7_input": "Color 7", "Chop Zone_study": "Chop Zone", "Oscillator_input": "Oscillator", "yay Color 0_input": "yay Color 0", "CRSI_study": "CRSI", "Chande Kroll Stop_study": "Chande Kroll Stop", "Hours_interval": "Hours", "Money Flow_study": "Money Flow", "DEMA_input": "DEMA", "Linear Regression Curve_study": "Linear Regression Curve", "Symbol_input": "Symbol", "increment_input": "increment", "smoothD_input": "smoothD", "RSI Source_input": "RSI Source", "Ichimoku Cloud_study": "Ichimoku Cloud", "Mass Index_study": "Mass Index", "Smoothing_input": "Smoothing", "Color 3_input": "Color 3", "Jaw Length_input": "Jaw Length", "Keltner Channels_study": "Keltner Channels", "Bands style_input": "Bands style", "Momentum_study": "Momentum", "MF_input": "MF", "Fast length_input": "Fast length", "W_interval_short": "W", "Equality Line_input": "Equality Line", "Short_input": "Short", "Down fractals_input": "Down fractals", "smalen2_input": "smalen2", "isCentered_input": "isCentered", "Klinger Oscillator_study": "Klinger Oscillator", "SMI Ergodic Indicator/Oscillator_study": "SMI Ergodic Indicator/Oscillator", "No Overlapping Labels_scale_menu": "No Overlapping Labels", "Chande MO_input": "Chande MO", "jawLength_input": "jawLength", "TRIX_study": "TRIX", "RVGI_input": "RVGI", "signalLength_input": "signalLength", "d_dates": "d", "Source_compare": "Source", "Correlation Coefficient_study": "Correlation Coefficient", "lipsLength_input": "lipsLength", "Short Length_input": "Short Length", "teethLength_input": "teethLength", "Visible Range_study": "Visible Range", "Connors RSI_study": "Connors RSI", "MA Cross_study": "MA Cross", "Signal line period_input": "Signal line period", "Price Volume Trend_study": "Price Volume Trend", "F_data_mode_forbidden_letter": "F", "Long RoC Length_input": "Long RoC Length", "Length3_input": "Length3", "+DI_input": "+DI", "MACD_study": "MACD", "%s ago_time_range": "%s ago", "Level_input": "Level", "Commodity Channel Index_study": "Commodity Channel Index", "Elder's Force Index_input": "Elder's Force Index", "Aroon_study": "Aroon", "h_dates": "h", "SMALen1_input": "SMALen1", "P_input": "P", "SMALen3_input": "SMALen3", "Average Directional Index_study": "Average Directional Index", "Fr_day_of_week": "Fr", "D_input": "D", "p_input": "p", "orders_up to ... orders": "orders", "Dot_hotkey": "Dot", "Lead 2_input": "Lead 2", "Vortex Indicator_study": "Vortex Indicator", "Plots Background_study": "Plots Background", "Price Channel_study": "Price Channel", "R_data_mode_realtime_letter": "R", "Conversion Line_input": "Conversion Line", "Su_day_of_week": "Su", "Up fractals_input": "Up fractals", "Double EMA_study": "Double EMA", "Price Oscillator_study": "Price Oscillator", "Th_day_of_week": "Th", "Average True Range_study": "Average True Range", "Max value_input": "Max value", "MA Length_input": "MA Length", "in %s_time_range": "in %s", "UpperLimit_input": "UpperLimit", "sym_input": "sym", "DI Length_input": "DI Length", "SMI_input": "SMI", "Basis_input": "Basis", "Moving Average_study": "Moving Average", "lengthStoch_input": "lengthStoch", "Smoothed Moving Average_study": "Smoothed Moving Average", "Lower Band_input": "Lower Band", "VI +_input": "VI +", "Lead 1_input": "Lead 1", "ROCLen2_input": "ROCLen2", "Simple ma(signal line)_input": "Simple ma(signal line)", "Color 6_input": "Color 6", "Value_input": "Value", "Chaikin Oscillator_study": "Chaikin Oscillator", "ASI_study": "ASI", "Awesome Oscillator_study": "Awesome Oscillator", "Bollinger Bands Width_input": "Bollinger Bands Width", "Signal Length_input": "Signal Length", "D_interval_short": "D", "Color 1_input": "Color 1", "Moving Average Weighted_study": "Moving Average Weighted", "Short period_input": "Short period", "Fisher_input": "Fisher", "Volume Oscillator_study": "Volume Oscillator", "S_data_mode_snapshot_letter": "S", "smalen4_input": "smalen4", "CCI_input": "CCI", "Upper Deviation_input": "Upper Deviation", "Accumulative Swing Index_study": "Accumulative Swing Index", "Move_input": "Move", "NV_input": "NV", "Choppiness Index_study": "Choppiness Index", "Length MA_input": "Length MA", "percent_input": "percent", "Length_input": "Length", "Accumulation/Distribution_input": "Accumulation/Distribution", "C_in_legend": "C", "Weeks_interval": "Weeks", "smoothK_input": "smoothK", "Percentage_scale_menu": "Percentage", "MOM_input": "MOM", "h_interval_short": "h", "TRIX_input": "TRIX", "Periods_input": "Periods", "Histogram_input": "Histogram", "StdDev_input": "StdDev", "EMA Cross_study": "EMA Cross", "Relative Strength Index_study": "Relative Strength Index", "-DI_input": "-DI", "short_input": "short", "RSI_input": "RSI", "Zig Zag_study": "Zig Zag", "Detrended Price Oscillator_input": "Detrended Price Oscillator", "length_input": "length", "roclen4_input": "roclen4", "Add Symbol_compare_or_add_symbol_dialog": "Add Symbol", "Slow length_input": "Slow length", "Conversion Line Periods_input": "Conversion Line Periods", "TEMA_input": "TEMA", "q_input": "q", "Advance/Decline_study": "Advance/Decline", "Ultimate Oscillator_study": "Ultimate Oscillator", "Growing_input": "Growing", "Plot_input": "Plot", "Color 8_input": "Color 8", "Bollinger Bands Width_study": "Bollinger Bands Width", "roclen3_input": "roclen3", "Overbought_input": "Overbought", "DPO_input": "DPO", "Relative Vigor Index_study": "Relative Vigor Index", "Tu_day_of_week": "Tu", "Period_input": "Period", "Trigger_input": "Trigger", "SigLen_input": "SigLen", "Color 2_input": "Color 2", "MA/EMA Cross_study": "MA/EMA Cross", "Williams Alligator_study": "Williams Alligator", "ROCLen1_input": "ROCLen1", "M_interval_short": "M", "Chaikin Oscillator_input": "Chaikin Oscillator", "Zero Line_input": "Zero Line", "Increment_input": "Increment", "Days_interval": "Days", "Net Volume_study": "Net Volume", "m_dates": "m", "length14_input": "length14", "Color 0_input": "Color 0", "maximum_input": "maximum", "D_data_mode_delayed_letter": "D", "Sigma_input": "Sigma", "fastLength_input": "fastLength", "Historical Volatility_study": "Historical Volatility", "Use Lower Deviation_input": "Use Lower Deviation", "Falling_input": "Falling", "Divisor_input": "Divisor", "length7_input": "length7", "Window Size_input": "Window Size", "Long Length_input": "Long Length", "%R_input": "%R", "bars_margin": "bars", "Simple ma(oscillator)_input": "Simple ma(oscillator)", "Length1_input": "Length1", "x_input": "x", "Parabolic SAR_study": "Parabolic SAR", "UO_input": "UO", "Short RoC Length_input": "Short RoC Length", "Jaw_input": "Jaw", "Coppock Curve_study": "Coppock Curve", "longlen_input": "longlen", "Moving Average Exponential_study": "Moving Average Exponential", "s_dates": "s", "Balance of Power_study": "Balance of Power", "EOM_input": "EOM", "%D_input": "%D", "Offset_input": "Offset", "HV_input": "HV", "Start_input": "Start", "ROC_input": "ROC", "Color 4_input": "Color 4", "ADX Smoothing_input": "ADX Smoothing", "We_day_of_week": "We", "MA_input": "MA", "Length2_input": "Length2", "Multiplier_input": "Multiplier", "Session Volume_study": "Session Volume", "SMI Ergodic Oscillator_input": "SMI Ergodic Oscillator", "C_data_mode_connecting_letter": "C", "SMALen4_input": "SMALen4", "yay Color 1_input": "yay Color 1", "CHOP_input": "CHOP", "Middle_input": "Middle", "WMA Length_input": "WMA Length", "Stochastic_study": "Stochastic", "Closed_line_tool_position": "Closed", "On Balance Volume_study": "On Balance Volume", "Source_input": "Source", "%K_input": "%K", "Log Scale_scale_menu": "Log Scale", "len_input": "len", "RSI Length_input": "RSI Length", "Long length_input": "Long length", "Base Line Periods_input": "Base Line Periods", "siglen_input": "siglen", "Slash_hotkey": "Slash", "lengthRSI_input": "lengthRSI", "Indicator_input": "Indicator", "Q_input": "Q", "Envelope_study": "Envelope", "show MA_input": "show MA", "O_in_legend": "O", "useTrueRange_input": "useTrueRange", "Minutes_interval": "Minutes", "deviation_input": "deviation", "long_input": "long", "VWMA_study": "VWMA", "Displacement_input": "Displacement", "Chaikin Money Flow_study": "Chaikin Money Flow", "Ease Of Movement_study": "Ease Of Movement", "Oversold_input": "Oversold", "Williams %R_study": "Williams %R", "depth_input": "depth", "VWAP_study": "VWAP", "Long period_input": "Long period", "Mo_day_of_week": "Mo", "ROC Length_input": "ROC Length", "X_input": "X", "ROCLen4_input": "ROCLen4", "Aroon Down_input": "Aroon Down", "Limit_input": "Limit", "smalen1_input": "smalen1", "Color based on previous close_input": "Color based on previous close", "Price_input": "Price", "Relative Volatility Index_study": "Relative Volatility Index", "PVT_input": "PVT", "Hull Moving Average_study": "Hull Moving Average", "Zero_input": "Zero", "Stochastic Length_input": "Stochastic Length", "mult_input": "mult", "Signal smoothing_input": "Signal smoothing", "E_data_mode_end_of_day_letter": "E", "Stochastic RSI_study": "Stochastic RSI", "K_input": "K", "ROCLen3_input": "ROCLen3", "Signal_input": "Signal", "Moving Average Channel_study": "Moving Average Channel", "Lower_input": "Lower", "Elder's Force Index_study": "Elder's Force Index", "Bollinger Bands %B_study": "Bollinger Bands %B", "Donchian Channels_study": "Donchian Channels", "Upper Band_input": "Upper Band", "start_input": "start", "Short length_input": "Short length", "Triple EMA_study": "Triple EMA", "Lagging Span 2 Periods_input": "Lagging Span 2 Periods", "Teeth_input": "Teeth", "exponential_input": "exponential", "Directional Movement_study": "Directional Movement", "roclen2_input": "roclen2", "Chande Momentum Oscillator_study": "Chande Momentum Oscillator", "Bollinger Bands %B_input": "Bollinger Bands %B", "Lips Length_input": "Lips Length", "Use Upper Deviation_input": "Use Upper Deviation", "L_in_legend": "L", "shortlen_input": "shortlen", "Exponential_input": "Exponential", "Long_input": "Long", "ADR_B_input": "ADR_B", "length28_input": "length28", "Arnaud Legoux Moving Average_study": "Arnaud Legoux Moving Average", "Least Squares Moving Average_study": "Least Squares Moving Average", "Hull MA_input": "Hull MA", "Median_input": "Median", "Correlation_input": "Correlation", "UpDown Length_input": "UpDown Length", "D_data_mode_delayed_streaming_letter": "D", "VI -_input": "VI -", "slowLength_input": "slowLength", "Sa_day_of_week": "Sa", "RVI_input": "RVI", "Centered_input": "Centered", "True Strength Indicator_study": "True Strength Indicator", "smalen3_input": "smalen3", "Fisher Transform_study": "Fisher Transform", "Length EMA_input": "Length EMA", "Teeth Length_input": "Teeth Length", "MA with EMA Cross_study": "MA with EMA Cross", "ParabolicSAR_input": "ParabolicSAR", "MACD_input": "MACD", "Open_line_tool_position": "Open", "Lagging Span_input": "Lagging Span", "ADX smoothing_input": "ADX smoothing", "Detrended Price Oscillator_study": "Detrended Price Oscillator", "Color 5_input": "Color 5", "McGinley Dynamic_study": "McGinley Dynamic", "auto_scale": "auto", "VWMA_input": "VWMA", "Lower Deviation_input": "Lower Deviation", "ATR_input": "ATR", "Shapes_input": "Shapes", "ADX_input": "ADX", "Crosses_input": "Crosses", "KST_input": "KST", "LowerLimit_input": "LowerLimit", "Know Sure Thing_study": "Know Sure Thing", "Aroon Up_input": "Aroon Up", "Fixed Range_study": "Fixed Range", "Williams Fractal_study": "Williams Fractal"} \ No newline at end of file diff --git a/charting_library/static/localization/translations/ru.json b/charting_library/static/localization/translations/ru.json index fbcf541c..d2fac499 100644 --- a/charting_library/static/localization/translations/ru.json +++ b/charting_library/static/localization/translations/ru.json @@ -1 +1 @@ -{"ticks_slippage ... ticks": "ticks", "Months_interval": "МЕС", "Percent_input": "Percent", "Hide Events on Chart": "Скрыть события на графике", "RSI Length_input": "RSI Length", "in_dates": "за", "London": "Лондон", "roclen1_input": "roclen1", "Unmerge Down": "Отсоединить вниз", "Percents": "Проценты", "Search Note": "Искать заметку", "Minor": "Побочная волна", "Do you really want to delete Chart Layout '{0}' ?": "Вы действительно хотите удалить сохранённый график '{0}'?", "Quotes are delayed by {0} min and updated every 30 seconds": "Котировки с задержкой {0} минут, обновляются каждые 30 секунд", "June": "Июнь", "Magnet Mode": "Магнит", "Grand Supercycle": "Большой цикл", "OSC_input": "OSC", "Realtime": "Данные в реальном времени", "Volume_study": "Объём", "Lips_input": "Lips", "Show real prices on price scale (instead of Heikin-Ashi price)": "Показывать реальные цены на ценовой шкале (вместо значений Хейкин Аши)", "Histogram": "Гистограмма", "Base Line_input": "Base Line", "Step": "Ступенчатая", "Change Minutes To": "Изменить минуты на", "Fib Time Zone": "Временные периоды по Фибоначчи", "SMALen2_input": "SMALen2", "Bollinger Bands_study": "Полосы Боллинджера", "Nov": "Ноя", "Show/Hide": "Показать/Скрыть", "Upper_input": "Upper", "Sig_input": "Sig", "Move Up": "Переместить вверх", "Sigma_input": "Sigma", "This indicator cannot be applied to another indicator": "Данный индикатор нельзя применить к другому индикатору", "Gann Square": "Квадрат Ганна", "Count_input": "Count", "Full Circles": "Полные круги", "Industry": "Отрасль", "SMALen1_input": "SMALen1", "Cross_chart_type": "Перекрестия", "Target Color:": "Цвет цели:", "a day": "день", "Pitchfork": "Вилы", "Normal": "Обычный", "Accumulation/Distribution_study": "Накопление/Распределение", "Rate Of Change_study": "Изменение %", "Risk/Reward short": "Короткая позиция", "Color 7_input": "Color 7", "Chop Zone_study": "Chop Zone", "Scales Properties": "Свойства шкал", "Trend-Based Fib Time": "Периоды Фибоначчи, основанные на тренде", "Remove All Indicators": "Удалить все индикаторы", "Oscillator_input": "Oscillator", "Last Modified": "Изменен", "yay Color 0_input": "yay Color 0", "Labels": "Метки", "Chande Kroll Stop_study": "Chande Kroll Stop", "Hours_interval": "Ч", "Scale Right": "Правая шкала", "Money Flow_study": "Денежный поток", "siglen_input": "siglen", "Indicator Labels": "Отображать имя индикатора на шкале", "Tuesday": "Вторник", "__specialSymbolOpen__Tomorrow at__specialSymbolClose__ __dayTime__": "__specialSymbolOpen__Завтра на__specialSymbolClose__ __dayTime__", "Toggle Percentage": "Процентная шкала вкл/выкл", "Remove All Drawing Tools": "Удалить все инструменты рисования", "Remove all line tools for ": "Убрать все инструменты рисования для ", "Linear Regression Curve_study": "Linear Regression Curve", "Symbol_input": "Symbol", "Currency": "Валюта", "Upper Deviation_input": "Upper Deviation", "Rename Chart Layout": "Переименовать график", "Save Chart Layout": "Сохранить график", "Allow up to": "Разрешить размещение до", "Label": "Метка", "Post Market": "Вечерняя торговая сессия", "Any Number": "Любое число", "smoothD_input": "smoothD", "Falling_input": "Falling", "Percentage": "Проценты", "Donchian Channels_study": "Канал Дончана", "Entry price:": "Открытие позиции:", "RSI Source_input": "RSI Source", " per contract": " на контракт", "Ichimoku Cloud_study": "Облако Ишимоку", "jawLength_input": "jawLength", "Toggle Log Scale": "Логарифмическая шкала вкл/выкл", "Apply Elliot Wave Major": "Применить Elliot Wave Major", "Grid": "Сетка", "Mass Index_study": "Индекс массы", "Slippage": "Проскальзывание", "Smoothing_input": "Smoothing", "Color 3_input": "Color 3", "Jaw Length_input": "Jaw Length", "Almaty": "Алма-Ата", "Inside": "Внутрь", "Delete all drawing for this symbol": "Удалить все инструменты рисования для этого символа", "Quotes are delayed by 10 min and updated every 30 seconds": "Данные с задержкой на 10 минут, обновляются каждые 30 секунд", "Keltner Channels_study": "Канал Кельтнера", "Long Position": "Длинная позиция", "Bands style_input": "Bands style", "Undo {0}": "Отменить {0}", "With Markers": "С точками", "Momentum_study": "Моментум (Momentum)", "MF_input": "MF", "On Balance Volume_study": "Балансовый объем", "Switch to the next chart": "Перейти к следующему графику", "Change Hours To": "Изменить часы на", "charts by TradingView": "графики от TradingView", "Long length_input": "Long length", "Flipped": "Отразить по горизонтали", "Indicator Last Value": "Маркер последнего значения индикатора", "Supermillennium": "Супермиллениум", "W_interval_short": "Н", "Color 6_input": "Color 6", "Log Scale": "Логарифмическая шкала", "Zurich": "Цюрих", "Equality Line_input": "Equality Line", "Open": "Цена открытия", "Heikin Ashi": "Хейкин Аши", "Line": "Линия", "Session": "Сессия", "Down fractals_input": "Down fractals", "Fib Retracement": "Коррекция по Фибоначчи", "smalen2_input": "smalen2", "isCentered_input": "isCentered", "Border": "Граница", "Klinger Oscillator_study": "Осциллятор Клингера", "Absolute": "Абсолютные значения", "Style": "Стиль", "Show Left Scale": "Показать левую шкалу", "SMI Ergodic Indicator/Oscillator_study": "SMI Ergodic Indicator/Oscillator", "Istanbul": "Стамбул", "Cross": "Перекрестие", "Last available bar": "Последний доступный бар", "Manage Drawings": "Управление инструментами рисования", "Top": "Сверху", "No drawings yet": "Фигур пока не создано", "Chande MO_input": "Chande MO", "Copy link": "Скопировать", "TRIX_study": "Скользящее cреднее (тройное эксп. сглаженное)", "MACD_study": "MACD", "RVGI_input": "RVGI", "Last edited ": "Последнее изменение ", "signalLength_input": "signalLength", "Middle_input": "Middle", "Reset Settings": "Сбросить настройки", "PnF": "Крестики-нолики", "Renko": "Ренко", "d_dates": "д", "Point & Figure": "Крестики-нолики", "August": "Август", "Recalculate After Order filled": "Пересчитывать после заполнения заявки", "Source_compare": "Отображать цену:", "Correlation Coefficient_study": "Коэффициент корреляции", "Delayed": "Данные с задержкой", "Bottom Labels": "Текст снизу", "Text color": "Цвет текста", "Levels": "Уровни", "Short Length_input": "Short Length", "teethLength_input": "teethLength", "Failure text color": "Текст (неудача)", "instrument is not allowed": "инструмент не разрешён", "Hong Kong": "Гонконг", "FAILURE": "НЕУДАЧА", "Open {{symbol}} Text Note": "Открыть заметку по {{symbol}}", "October": "Октябрь", "Lock All Drawing Tools": "Зафиксировать все объекты", "Target border color": "Граница (цель)", "Right End": "Правый край", "Show Symbol Last Value": "Показывать последнюю котировку", "Head & Shoulders": "Голова и плечи", "Do you really want to delete Study Template '{0}' ?": "Вы действительно хотите удалить шаблон индикаторов '{0}'?", "Favorite Drawings Toolbar": "Панель избранных объектов", "Properties...": "Свойства...", "MA Cross_study": "Пересечение скользящих средних", "Trend Angle": "Угол тренда", "Snapshot": "Скриншот графика", "Crosshair": "Перекрестие", "Signal line period_input": "Signal line period", "Timezone/Sessions Properties...": "Часовой пояс и сессии...", "Line Break": "Линейный прорыв", "Quantity": "Количество", "Price Volume Trend_study": "Price Volume Trend", "Auto Scale": "Автоматический масштаб", "Scales": "Шкалы", "Delete chart layout": "Удалить график", "Text": "Текст", "F_data_mode_forbidden_letter": "F", "Risk/Reward long": "Длинная позиция", "Apr": "Апр", "Long RoC Length_input": "Long RoC Length", "Length3_input": "Length3", "Cancel Order": "Отменить заявку", "Madrid": "Мадрид", "Use one color": "Используйте один цвет", "Exit Full Screen (ESC)": "Выйти из режима (ESC)", "Show Bars Range": "Отображать диапазон в барах", "Show Economic Events on Chart": "Показывать экономические события на графике", "%s ago_time_range": "%s назад", "Zoom In": "Увеличить масштаб", "Failure back color": "Заливка (неудача)", "Below Bar": "Бар ниже", "Coordinates": "Координаты", "Time Scale": "Шкала времени", "

    Only D, W, M intervals are supported for this symbol/exchange. You will be automatically switched to a D interval. Intraday intervals are not available because of exchange policies.

    ": "

    Только Д, Н, М интервалы доступны для этого символа/биржи. Вы будете автоматически переключены на Д интервал. Внутридневные интервалы недоступны из-за политики конфиденциальности биржи.

    ", "Extend Left": "Продолжить влево", "Date Range": "Диапазон дат", "Min Move": "Минимальный шаг", "Price format is invalid.": "Формат цены не поддерживается.", "Show Price": "Отображать цену", "Level_input": "Level", "Commodity Channel Index_study": "Индекс Товарного Канала", "Elder's Force Index_input": "Elder's Force Index", "Scales Properties...": "Свойства шкал...", "Phoenix": "Финикс", "Format": "Формат", "Color bars based on previous close": "Цвет основан на предыдущей цене закрытия", "Change band background": "Изменить фон полосы", "Marketplace Add-ons": "Магазин дополнений", "Adjust Scale": "Настроить шкалу", "Anchored Text": "Текст на экране", "Edit {0} Alert...": "Редактировать {0} оповещение...", "Text:": "Текст:", "Aroon_study": "Арун", "show MA_input": "show MA", "Ashkhabad": "Ашхабад", "h_dates": "ч.", "Short Position": "Короткая позиция", "Show Labels": "Отображать текстовые метки", "Change Interval...": "Изменить интервал", "Apply Default": "Сбросить изменения", "SMALen3_input": "SMALen3", "Average Directional Index_study": "Индикатор среднего направленного движения (ADX)", "Fr_day_of_week": "Пт", "Timezone/Sessions": "Часовой пояс и сессии", "Curve": "Кривая", "a year": "год", "H_in_legend": "МАКС", "Bars Pattern": "Шаблон из баров", "D_input": "D", "Right Labels": "Текст справа", "Change Interval": "Изменить интервал", "p_input": "p", "Chart layout name": "Имя графика", "Fib Circles": "Окружности по Фибоначчи", "Dot": "Точка", "Target back color": "Заливка (цель)", "All": "Все", "Show Positions": "Показывать позиции", "orders_up to ... orders": "orders", "Lead 2_input": "Lead 2", "Save image": "Сохраните изображение", "Fundamentals": "Финансовый анализ", "Unlock": "Разблокировать", "Up Wave 2 or B": "Восходящая волна 2 или B", "Navigation Buttons": "Навигационные кнопки", "Apply": "Применить", "Show Countdown": "Отображать обратный отсчет", "Precise Labels": "Выравнивать ценовые отметки", "Sine Line": "Синусоида", "Hide": "Скрыть", "Bottom": "Снизу", "Target text color": "Текст (цель)", "Scale Left": "Левая шкала", "Elliott Wave Subminuette": "Сверхкороткая волна Эллиотта", "Down Wave C": "Нисходящая волна C", "Jan": "Янв", "Source back color": "Заливка (открытие)", "Sao Paulo": "Сан-Паулу", "Oct": "Окт", "Apply Elliot Wave Minor": "Применить второстепенную волну Эллиотта", "Inputs": "Аргументы", "Conversion Line_input": "Conversion Line", "March": "Март", "Su_day_of_week": "Вс", "Up fractals_input": "Up fractals", "Regression Trend": "Направление регрессии", "Symbol Description": "Описание инструмента", "Double EMA_study": "Double EMA", "Price Oscillator_study": "Процентный осциллятор цены", "Sync drawings to all charts": "Синхронизировать на всех графиках", "Stop Color:": "Цвет стоп-уровня:", "Stay in Drawing Mode": "Оставаться в режиме рисования", "Bottom Margin": "Отступ снизу", "Dubai": "Дубай", "Save Chart Layout saves not just some particular chart, it saves all charts for all symbols and intervals which you are modifying while working with this Layout": "Функция \"Сохранить рабочее пространство\" учитывает все изменения, которые вы сделали для разных инструментов или интервалов", "Average True Range_study": "Средний истинный диапазон", "Max value_input": "Max value", "MA Length_input": "MA Length", "Time Interval": "Интервал", "UpperLimit_input": "UpperLimit", "sym_input": "sym", "DI Length_input": "DI Length", "Extend Lines": "Продолжить линии", "SMI_input": "SMI", "Change Days To": "Изменить дни на", "Square": "Квадрат", "Basis_input": "Basis", "Moving Average_study": "Скользящее среднее", "lengthStoch_input": "lengthStoch", "Taipei": "Тайбей", "Objects Tree": "Дерево объектов", "Remove from favorites": "Удалить из предпочтений", "Copy": "Копировать", "Scale Series Only": "Игнорировать шкалу индикаторов", "Simple": "Простая линия", "Report a data issue": "Сообщить о проблеме с данными", "Arnaud Legoux Moving Average_study": "Скользящее среднее Арно Легу", "Technical Analysis": "Технический анализ", "Brisbane": "Брисбен", "Verify Price for Limit Orders": "Проверка цены для исполнения лимитовых заявок", "VI +_input": "VI +", "Line Width": "Ширина линии", "Lead 1_input": "Lead 1", "Always Show Stats": "Всегда отображать текст", "Down Wave 4": "Нисходящая волна 4", "Down Wave 5": "Нисходящая волна 5", "Simple ma(signal line)_input": "Simple ma(signal line)", "Ray": "Луч", "Public Library": "Публичные", " Do you really want to delete Drawing Template '{0}' ?": " Вы действительно хотите удалить шаблон '{0}'?", "Down Wave 3": "Нисходящая волна 3", "Close message": "Закрыть сообщение", "long_input": "long", "Show Drawings Toolbar": "Показать панель графических объектов", "Chaikin Oscillator_study": "Осциллятор Чайкина", "Balloon": "Всплывающий текст", "Market Open": "Рынок открыт", "Color Theme": "Цветовая тема", "Centered_input": "Centered", "Bollinger Bands Width_input": "Bollinger Bands Width", "Apply Indicator on {0} ...": "Применить индикатор для {0} ...", "Fib Speed Resistance Arcs": "Дуги сопротивления по Фибоначчи", "Error occured while publishing": "Возникла ошибка при публикации", "Fisher_input": "Fisher", "Color 1_input": "Color 1", "Moving Average Weighted_study": "Moving Average Weighted", "Save": "Сохранить", "Type": "Позиция", "Chart Layout Name": "Имя графика", "Short period_input": "Short period", "Load Chart Layout": "Загрузить график", "Show Values": "Показать значения", "Fib Speed Resistance Fan": "Веерные линии сопротивления по Фибоначчи", "Compare": "Сравнить", "This chart layout has more than 1000 drawings, which is a lot! This may negatively affect performance, storage and publishing. We recommend to remove some drawings to avoid potential performance issues.": "Данный график содержит более 1000 элементов рисования - это слишком много, и может негативно сказаться на производительности графика. Мы рекомендуем удалить некоторые элементы рисования, во избежание потенциальных технических ошибок.", "Left End": "Левый край", "Volume Oscillator_study": "Процентный осциллятор объема", "Always Visible": "Отображать всегда", "S_data_mode_snapshot_letter": "S", "post-market": "вечерняя торговая сессия", "Elliott Wave Circle": "Волновой цикл Эллиотта", "Earnings breaks": "В виде разрыва", "Do not ask again": "Больше не спрашивать", "Tue": "Вт", "smalen4_input": "smalen4", "CCI_input": "CCI", "Unmerge Up": "Отсоединить наверх", "increment_input": "increment", "(H + L)/2": "(МИН+МАКС)/2", "XABCD Pattern": "Шаблон XABCD", "Schiff Pitchfork": "Вилы Шифа", "powered by {0}": "при поддержке {0}", "DEMA_input": "DEMA", "NV_input": "NV", "Choppiness Index_study": "Индекс Переменчивости", "Study Template '{0}' already exists. Do you really want to replace it?": "Шаблон индикаторов '{0}' уже существует. Вы действительно хотите заменить его?", "Merge Down": "Присоединить вниз", "Th_day_of_week": "Чт", "Studies": "Скрипты", "eod delayed": "дневные (с задержкой)", "Delete": "Удалить", "in %s_time_range": "in %s", "percent_input": "percent", "September": "Сентябрь", "Length_input": "Length", "Median_input": "Median", "Accumulation/Distribution_input": "Accumulation/Distribution", "Sync": "Синхронизировать", "C_in_legend": "ЗАКР", "Weeks_interval": "НЕД", "smoothK_input": "smoothK", "Percentage_scale_menu": "Процентная шкала", "Change Extended Hours": "Изменить расширенную сессию", "MOM_input": "MOM", "h_interval_short": "ч", "Rotated Rectangle": "Вращающийся прямоугольник", "Modified Schiff": "Измененные Шифа", "Symbol": "Инструмент", "Adelaide": "Аделаида", "Send Backward": "На один слой назад", "Mexico City": "Мехико", "TRIX_input": "TRIX", "Show Price Range": "Отображать диапазон цен", "Elliott Major Retracement": "Основная коррекция Эллиотта", "Notification": "Уведомление", "Fri": "Пт", "just now": "только что", "Forecast": "Прогноз", "Fraction part is invalid.": "Дробная часть неверна.", "Connecting": "Идет соединение", "Ghost Feed": "Проекция цены", "Histogram_input": "Histogram", "The Extended Trading Hours feature is available only for intraday charts": "Функция расширенных торговых часов доступна только для внутридневных графиков", "StdDev_input": "StdDev", "Change Minutes From": "Изменить минуты с", "Relative Strength Index_study": "Относительный индекс силы", "Interval is not applicable": "Интервал не поддерживается", "My Scripts": "Мои скрипты", "Monday": "Понедельник", "-DI_input": "-DI", "short_input": "short", "top": "сверху", "a month": "месяц", "Precision": "Точность", "depth_input": "depth", "Please enter chart layout name": "Укажите имя графика:", "Mar": "Мар", "Offset": "Смещение", "Date": "Дата", "Format...": "Свойства...", "Toggle Auto Scale": "Автоматический масштаб вкл/выкл", "Periods_input": "Periods", "Zig Zag_study": "Zig Zag", "Actual": "Факт", "SUCCESS": "УСПЕХ", "Detrended Price Oscillator_input": "Detrended Price Oscillator", "{0} copy": "{0} (копия)", "length_input": "length", "Close Position": "Закрыть позицию", "Price Line": "Линия цены", "Area With Breaks": "Область с разрывами", "Zoom Out": "Уменьшить масштаб", "Stop Level. Ticks:": "Стоп-уровень. Тики:", "Jul": "Июл", "Above Bar": "Бар выше", "Visual Order": "Порядок слоев", "Warning": "Предупреждение", "__specialSymbolOpen__Yesterday at__specialSymbolClose__ __dayTime__": "__specialSymbolOpen__Вчера на__specialSymbolClose__ __dayTime__", "Stop Background Color": "Цвет заливки (остановка)", "Slow length_input": "Slow length", "Conversion Line Periods_input": "Conversion Line Periods", "Sector": "Сектор", "powered by TradingView": "технология TradingView", "Stochastic_study": "Стохастический осциллятор", "Apply WPT Down Wave": "Применить WPT Down Wave", "Marker Color": "Цвет метки", "TEMA_input": "TEMA", "Apply WPT Up Wave": "Применить WPT Up Wave", "Min Move 2": "Минимальный шаг 2", "Directional Movement_study": "Directional Movement", "Extend Left End": "Продолжить влево", "Advance/Decline_study": "Advance/Decline", "New York": "Нью-Йорк", "Flag Mark": "Флаг", "Drawings": "Инструменты рисования", "Fast length_input": "Fast length", "Cancel": "Отмена", "Bar #": "№ бара", "Redo": "Повторять", "Hide Drawings Toolbar": "Скрыть панель объектов", "Ultimate Oscillator_study": "Ultimate Oscillator", "This chart layout has a lot of objects and can't be published! Please report to {0} for further details.": "На данном графике слишком много объектов, его нельзя опубликовать! Пожалуйста, сообщите {0} для уточнения деталей.", "Vert Grid Lines": "Верт. линии сетки", "Growing_input": "Growing", "Angle": "Угол", "Show Only Future Events": "Показывать только будущие события", "Plot_input": "Plot", "Chicago": "Чикаго", "Color 8_input": "Color 8", "San Salvador": "Сан-Сальвадор", "Search": "Поиск", "Bollinger Bands Width_study": "Ширина полос Боллинджера", "roclen3_input": "roclen3", "Overbought_input": "Overbought", "DPO_input": "DPO", "Levels Line": "Линии уровня", "No study templates saved": "Нет сохраненных шаблонов индикаторов", "Trend Line": "Линия тренда", "Relative Vigor Index_study": "Относительный индекс энергии", "Your chart is being saved, please wait a moment before you leave this page.": "Ваш график сохраняется, подождите немного, перед тем как перейти с этой страницы, или закрыть ее.", "Circle": "Круг", "Price Range": "Диапазон цен", "Extended Hours": "Расширенная сессия", "Los Angeles": "Лос-Анджелес", "Triangle": "Треугольник", "Line With Breaks": "Линия с разрывами", "Period_input": "Period", "Watermark": "Водяной знак", "Trigger_input": "Trigger", "SigLen_input": "SigLen", "Clone": "Клонировать", "Color 2_input": "Color 2", "Show Prices": "Отображать цены", "Contracts": "Контракты", "{0} chart by TradingView": "{0} график на TradingView", "Edit Order": "Редактировать заявку", "Save Indicator Template As...": "Сохранить шаблон индикаторов как...", "Arrow Mark Right": "Стрелка вправо", "Background color 2": "Цвет заливки №2", "Background color 1": "Цвет заливки №1", "Circles": "Точки", "McGinley Dynamic_study": "McGinley Dynamic", "Visible on Mouse Over": "Отображать при наведении курсора", "Thu": "Чт", "Vortex Indicator_study": "Vortex Indicator", "Williams Alligator_study": "Аллигатор Билла Вильямса", "ROCLen1_input": "ROCLen1", "Border Color": "Цвет обводки", "M_interval_short": "М", "Change Symbol...": "Сменить инструмент...", "Price Levels": "Уровни цены", "Show Splits": "Отображать дробление акций", "Zero Line_input": "Zero Line", "__specialSymbolOpen__Today at__specialSymbolClose__ __dayTime__": "__specialSymbolOpen__Сегодня на__specialSymbolClose__ __dayTime__", "Increment_input": "Increment", "Days_interval": "Д", "Show Right Scale": "Показать правую шкалу", "Show Alert Labels": "Отображать метки оповещений", "Net Volume_study": "Чистый объём", "Lock": "Заблокировать", "length14_input": "length14", "Sa_day_of_week": "Сб", "High": "Максимум", "ext": "расш", "Date and Price Range": "Диапазон цены и времени", "Polyline": "Ломаная линия", "Reconnect": "Переподключиться", "Add to favorites": "Добавить в избранное", "Saturday": "Суббота", "Symbol Last Value": "Маркер последнего значения инструмента", "Color 0_input": "Color 0", "maximum_input": "maximum", "Wed": "Ср", "Paris": "Париж", "D_data_mode_delayed_letter": "D", "Symbol Info": "Информация по инструменту", "Pyramiding": "Пирамидинг", "fastLength_input": "fastLength", "Width": "Ширина", "Loading": "Загрузка", "Historical Volatility_study": "Историческая волатильность", "Template": "Шаблон", "Compare or Add Symbol...": "Сравнить/Добавить инструмент...", "Parallel Channel": "Канал", "Time Cycles": "Временные циклы", "Divisor_input": "Divisor", "Down Wave 1 or A": "Нисходящая волна 1 или А", "ROC_input": "ROC", "Dec": "Дек", "Extend": "Продолжить", "length7_input": "length7", "Toggle Maximize Chart": "Переключить полноэкранный режим", "Send to Back": "Отправить назад", "Undo": "Отменить", "Window Size_input": "Window Size", "Mon": "Пн", "Reset Scale": "Сбросить состояние шкалы", "Long Length_input": "Long Length", "True Strength Indicator_study": "Индекс истинной силы", "%R_input": "%R", "There are no saved charts": "Нет сохранённых графиков", "Chart Properties": "Свойства графика", "bars_margin": "баров", "Show Indicator Last Value": "Показывать последнее значение индикатора", "Initial capital": "Исходный капитал", "Show Angle": "Отображать угол", "Honolulu": "Гонолулу", "More features on tradingview.com": "Больше возможностей на tradingview.com", "smalen3_input": "smalen3", "Length1_input": "Length1", "Always Invisible": "Никогда не отображать", "Days": "Дни", "x_input": "x", "Save As...": "Сохранить как...", "Lock/Unlock": "Блокировать/разблокировать", "Elliott Double Combo Wave (WXY)": "Двойная комбинация Эллиотта (WXY)", "Parabolic SAR_study": "Параболическая система времени/цены", "Fisher Transform_study": "Fisher Transform", "Hollow Candles": "Пустые свечи", "Any Symbol": "Любое имя инструмента", "UO_input": "UO", "Stats Text Color": "Цвет текста", "Minutes": "Минуты", "Short RoC Length_input": "Short RoC Length", "Show Orders": "Показывать заявки", "Countdown": "Отображать обратный отсчет", "Jaw_input": "Jaw", "Right": "Справа", "Help": "Справка", "Coppock Curve_study": "Кривая Коппока", "Reset Chart": "Сбросить состояние графика", "Sep": "Сен", "Sunday": "Воскресенье", "Themes": "Темы", "Left Axis": "Левая шкала", "YES": "Да", "longlen_input": "longlen", "Moving Average Exponential_study": "Скользящее среднее (эксп.)", "Source border color": "Граница (открытие)", "Redo {0}": "Повторять {0}", "Cypher Pattern": "Паттерн Cypher", "s_dates": "s", "Move Down": "Переместить вниз", "Caracas": "Каракас", "Area": "Область", "invalid symbol": "неизвестный инструмент", "Triangle Pattern": "Шаблон \"Треугольник\"", "Gann Fan": "Веер Ганна", "Balance of Power_study": "Баланс силы", "EOM_input": "EOM", "Font Size": "Размер шрифта", "Drawings Toolbar": "Показывать панель инструментов", "Market Closed": "Рынок закрыт", "Sydney": "Сидней", "Indicators": "Индикаторы", "q_input": "q", "You are notified": "Вы уведомлены", "%D_input": "%D", "Text Alignment:": "Выравнивание текста:", "Offset_input": "Offset", "Risk": "Риск", "Price Scale": "Ценовая шкала", "HV_input": "HV", "Seconds": "Секунды", "(H + L + C)/3": "(МИН+МАКС+ЗАКР)/3", "Start_input": "Начать", "R_data_mode_realtime_letter": "R", "Hours": "Часы", "Berlin": "Берлин", "Color 4_input": "Color 4", "Angles": "Углы", "Prices": "Цены", "Extended Hours (Intraday Only)": "Расширенная сессия (только для внутридневных графиков)", "July": "Июль", "Create Horizontal Line": "Добавить горизонтальную линию", "Minute": "Минута", "Cycle": "Цикл", "ADX Smoothing_input": "ADX Smoothing", "One color for all lines": "Один цвет для всех линий", "m_dates": "м", "Settings": "Настройки", "Drawing Tools": "Инструменты рисования", "Candles": "Японские свечи", "We_day_of_week": "Ср", "Pre Market": "Предторговый период", "Pip Size": "Объём пункта", "Wednesday": "Среда", "This drawing is used in alert. If you remove the drawing, the alert will be also removed. Do you want to remove the drawing anyway?": "Для инструмента рисования настроено оповещение. Если вы удалите объект, оповещение будет также удалено. Все равно хотите удалить объект?", "Hide All Drawing Tools": "Скрыть все объекты", "Down Wave 2 or B": "Нисходящая волна 2 или B", "MA_input": "MA", "Detrended Price Oscillator_study": "Detrended Price Oscillator", "not authorized": "не авторизован", "Bar's Style": "Стиль баров", "Image URL": "Изображение", "Submicro": "Субмикро", "SMI Ergodic Oscillator_input": "SMI Ergodic Oscillator", "Show Objects Tree": "Дерево объектов", "Primary": "Первичная волна", "Price:": "Цена:", "Gann Box": "Коробка Ганна", "Bring to Front": "Перенести поверх", "Brush": "Кисть", "Not Now": "Не сейчас", "lengthRSI_input": "lengthRSI", "Yes": "Да", "Events & Alerts": "События и оповещения", "+DI_input": "+DI", "Apply Default Drawing Template": "Применить шаблон по умолчанию", "Save As Default": "Сделать по умолчанию", "Invalid Symbol": "Неизвестный инструмент", "Inside Pitchfork": "Вилы (внутрь)", "yay Color 1_input": "yay Color 1", "Quandl is a huge financial database that we have connected to TradingView. Most of its data is EOD and is not updated in real-time, however the information may be extremely useful for fundamental analysis.": "Quandl - это огромная финансовая база данных, которую мы подключили к TradingView. Большая часть данных является EOD-данными и не обновляется в реальном времени, однако данная информация может быть очень полезна для фундаментального анализа.", "Hide Marks On Bars": "Скрыть отметки на барах", "Note": "Заметка", "Kagi": "Каги", "WMA Length_input": "WMA Length", "Show Dividends on Chart": "Отображать дивиденды на графике", "Show Executions": "Показывать исполненные заявки", "Borders": "Обводка", "loading...": "загрузка...", "Closed_line_tool_position": "Закрыта", "Columns": "Столбцы", "Change Resolution": "Изменить разрешение", "Indicator Arguments": "Параметры индикатора", "Fib Spiral": "Спираль по Фибоначчи", "Apply Elliot Wave": "Применить волну Эллиота", "Degree": "Угол", " per order": " на заявку", "Supercycle": "Суперцикл", "Jun": "Июн", "Price Label": "Отметка на цене", "Overlay the main chart": "Поверх основной серии", "powered by ": "на платформе ", "Source_input": "Source", "Disjoint Angle": "Расходящийся угол", "%K_input": "%K", "Success back color": "Заливка (успех)", "Toronto": "Торонто", "Please enter template name": "Введите имя шаблона", "Symbol Name": "Имя инструмента", "Tokyo": "Токио", "Events Breaks": "Границы событий", "Study Templates": "Шаблоны индикаторов", "Months": "Месяцы", "Symbol Info...": "Информация по инструменту...", "Elliott Wave Minor": "Второстепенная волна Эллиотта", "Read our blog for more info!": "Прочтите наш блог, чтобы узнать больше!", "Measure (Shift + Click on the chart)": "Измерение (Shift + клик на графике)", "Override Min Tick": "Минимальное
    изменение цены", "Thursday": "Четверг", "Dialog": "Диалог", "Add To Text Notes": "Добавить к заметкам", "Elliott Triple Combo Wave (WXYXZ)": "Тройная комбинация Эллиотта (WXYXZ)", "Multiplier_input": "Multiplier", "Risk/Reward": "Риск/Прибыль", "Base Line Periods_input": "Base Line Periods", "Show Dividends": "Отображать дивиденды", "pre-market": "предторговый период", "Top Labels": "Текст сверху", "Show Earnings": "Отображать доходы на акцию", "Elliott Triangle Wave (ABCDE)": "ABCDE волна (треугольник)", "Minuette": "Минуэт", "Text Wrap": "Перенос строк", "Reverse Position": "Перевернуть позицию", "Elliott Minor Retracement": "Второстепенная коррекция Эллиотта", "Pitchfan": "Наклонный веер", "No symbols matched your criteria": "Подходящих инструментов не найдено", "Icon": "Значок", "Short_input": "Short", "Fib Wedge": "Клин по Фибоначчи", "Indicator_input": "Indicator", "Open Interval Dialog": "Открыть диалог интервалов", "Shanghai": "Шанхай", "Athens": "Афины", "Q_input": "Q", "Content": "Контент", "middle": "по центру", "Lock Cursor In Time": "Зафиксировать курсор по времени", "Intermediate": "Промежуточная волна", "Eraser": "Ластик", "TimeZone": "Часовой пояс", "Envelope_study": "Огибающая", "Symbol Labels": "Отображать инструмент на шкале", "Active Symbol": "Инструмент", "Horizontal Line": "Горизонтальная линия", "O_in_legend": "ОТКР", "Confirmation": "Подтвердите действие", "Add Alert": "Добавить оповещение", "Lines:": "Линии", "Hide Favorite Drawings Toolbar": "Скрыть панель \"Избранные инструменты рисования\"", "Buenos Aires": "Буэнос-Айрес", "useTrueRange_input": "useTrueRange", "Bangkok": "Бангкок", "Profit Level. Ticks:": "Цель. Тики:", "Show Date/Time Range": "Отображать временной диапазон", "Level {0}": "Уровень {0}", "Horz Grid Lines": "Гор. линии сетки", "Text Notes are available only on chart page. Please open a chart and then try again.": "Заметки доступны только на странице графика. Откройте график и попробуйте еще раз.", "Tu_day_of_week": "Вт", "deviation_input": "deviation", "Base currency": "Основная валюта", "VWMA_study": "Скользящее среднее, взвешенное по объему", "Success text color": "Текст (успех)", "ADX smoothing_input": "ADX smoothing", "Order size": "Объём заявки", "Displacement_input": "Displacement", "Tokelau": "Токелау", "Save Indicator Template As": "Сохранить шаблон индикаторов как", "ADR_B_input": "ADR_B", "Chaikin Money Flow_study": "Денежный поток Чайкина", "Ease Of Movement_study": "Лёгкость движения", "Defaults": "По умолчанию", "Oversold_input": "Oversold", "Williams %R_study": "Williams %R", "Visual settings...": "Настройки отображения...", "RSI_input": "RSI", "Long period_input": "Long period", "Mo_day_of_week": "Пн", "center": "по центру", "Vertical Line": "Вертикальная линия", "Bogota": "Богота", "Show Splits on Chart": "Отображать разделители на графике", "Sorry, the Copy Link button doesn't work in your browser. Please select the link and copy it manually.": "К сожалению, кнопка \"Скопировать ссылку\" не работает в вашем браузере. Выделите ссылку и скопируйте её вручную.", "X_input": "X", "C_data_mode_connecting_letter": "C", "Simple ma(oscillator)_input": "Simple ma(oscillator)", "compiling...": "компилируется...", "SMALen4_input": "SMALen4", "ROCLen4_input": "ROCLen4", "Aroon Down_input": "Aroon Down", "Add To Watchlist": "Добавить в Окно котировок", "Total": "Итого", "Extend Right": "Продолжить вправо", "left": "слева", "Lock scale": "Зафиксировать шкалу", "Time Levels": "Уровни времени", "Arrow": "Стрелка", "smalen1_input": "smalen1", "Drawing Template '{0}' already exists. Do you really want to replace it?": "Шаблон '{0}' уже существует. Вы действительно хотите заменить его?", "Extend Right End": "Продолжить вправо", "Fans": "Линии", "Price_input": "Price", "Close_input": "Закрыть", "Arrow Mark Down": "Стрелка вниз", "Weeks": "Недели", "Modified Schiff Pitchfork": "Видоизмененные вилы Шифа", "Relative Volatility Index_study": "Относительный индекс изменчивости", "Elliott Impulse Wave (12345)": "Импульсная волна Эллиотта (12345)", "PVT_input": "PVT", "Show Hidden Tools": "Показать скрытые инструменты", "Hull Moving Average_study": "Скользящее среднее Хала", "Aug": "Авг", "Save Drawing Template As": "Сохранить шаблон графических инструментов как", "Bring Forward": "На один слой вперед", "Friday": "Пятница", "Zero_input": "Zero", "Company Comparison": "Инструмент для сравнения", "Stochastic Length_input": "Stochastic Length", "mult_input": "mult", "URL cannot be received": "URL не может быть получен", "Signal smoothing_input": "Signal smoothing", "E_data_mode_end_of_day_letter": "E", "Trend-Based Fib Extension": "Расширение Фибоначчи, основанное на тренде", "Double Curve": "Двойная кривая", "Stochastic RSI_study": "Стохастический индекс относительной силы", "Horizontal Ray": "Горизонтальный луч", "Ok": "Ок", "Script Editor...": "Редактор скриптов", "Trades on Chart": "Сделки на графике", "Chaikin Oscillator_input": "Chaikin Oscillator", "Listed Exchange": "Биржа", "Error:": "Ошибка:", "Fullscreen mode": "Полноэкранный режим", "Add Text Note For {0}": "Добавить заметку для {0}", "K_input": "K", "In Session": "Сессия", "ROCLen3_input": "ROCLen3", "Micro": "Микро", "Text Color": "Цвет текста", "Extend Alert Line": "Продолжить линию оповещения", "Oops!": "Упс!", "New Zealand": "Новая Зеландия", "CHOP_input": "CHOP", "Apply Defaults": "Применить по умолчанию", "Screen (No Scale)": "Экран (нет шкалы)", "Extended Alert Line": "Продлить линию оповещения", "Signal_input": "Signal", "OK": "ОК", "Original": "Обычные", "Show": "Показать", "Exchange": "Биржа", "{0} bars": "Бары: {0}", "Lower_input": "Lower", "Created ": "Создана ", "Arc": "Дуга", "Elder's Force Index_study": "Elder's Force Index", "Show Earnings on Chart": "Отображать доходы на акцию на графике", "ATR_input": "ATR", "Do you really want to delete Color Theme '{0}' ?": "Вы действительно хотите удалить цветовую тему '{0}'?", "Low": "Минимум", "Bollinger Bands %B_study": "%B Полос Боллинджера", "Time Zone": "Часовой пояс", "right": "справа", "Schiff": "Шифа", "Wrong value": "Неправильное значение", "Upper Band_input": "Upper Band", "Sun": "Вс", "Rename...": "Переименовать...", "February": "Февраль", "start_input": "start", "No indicators matched your criteria.": "Нет индикаторов по вашему запросу", "Commission": "Комиссия", "Short length_input": "Short length", "Kolkata": "Калькутта", "Submillennium": "Субмиллениум", "Precise Labels_scale_menu": "Точные метки", "Smoothed Moving Average_study": "Smoothed Moving Average", "Do you really want to delete Drawing Template '{0}' ?": "Вы действительно хотите удалить шаблон инструментов '{0}'?", "Chatham Islands": "Чатем", "Channel": "Канал", "Stop syncing drawing": "Отменить синхронизацию объектов", "FXCM CFD data is available only to FXCM account holders": "CFD данные от FXCM доступны только для владельцев счетов FXCM.", "Lagging Span 2 Periods_input": "Lagging Span 2 Periods", "Connecting Line": "Соединяющая линия", "Seoul": "Сеул", "Lower Band_input": "Lower Band", "Teeth_input": "Teeth", "Moscow": "Москва", "Save New Chart Layout": "Сохранить график", "Fib Channel": "Каналы по Фибоначчи", "Visibility": "Отображение", "Events": "События", "Save Drawing Template As...": "Сохранить шаблон как...", "Minutes_interval": "МИН", "Insert Study Template": "Добавить шаблон индикаторов", "exponential_input": "exponential", "OnBalanceVolume_input": "OnBalanceVolume", "roclen2_input": "roclen2", "Chande Momentum Oscillator_study": "Осциллятор темпа Чанде", "Not applicable": "Не поддерживается", "or copy url:": "или скопируйте его адрес:", "Bollinger Bands %B_input": "Bollinger Bands %B", "Singapore": "Сингапур", "Template name": "Имя шаблона", "Indicator Values": "Значения индикатора", "Lips Length_input": "Lips Length", "Use Upper Deviation_input": "Use Upper Deviation", "L_in_legend": "МИН", "Remove custom interval": "Удалить пользовательский интервал", "shortlen_input": "shortlen", "Quotes are delayed by {0} min": "Данные с задержкой на {0} мин.", "Copied to clipboard": "Скопировано в буфер обмена", "ADX_input": "ADX", "Trading": "Торговля", "Exponential_input": "Exponential", "ROCLen2_input": "ROCLen2", "Use Lower Deviation_input": "Use Lower Deviation", "Previous": "Предыдущий", "Stay In Drawing Mode": "Оставаться в режиме рисования", "Comment": "Комментарий", "Long_input": "Long", "Bars": "Бары", "Source text color": "Текст (открытие)", "Flat Top/Bottom": "Плоский верх/низ", "Symbol Type": "Тип инструмента", "loading data": "загрузка данных", "December": "Декабрь", "Lock drawings": "Зафиксировать элементы рисования", "Border color": "Цвет обводки", "Change Seconds From": "Заменить на секунды с", "Left Labels": "Текст слева", "Insert Indicator...": "Добавить индикатор...", "P_input": "P", "Paste %s": "Вставить %s", "Timezone": "Часовой пояс", "Sat": "Сб", "Rectangle": "Прямоугольник", "Feb": "Фев", "Transparency": "Прозрачность", "No": "Нет", "All Indicators And Drawing Tools": "Все индикаторы и инструменты рисования", "Cyclic Lines": "Разделение циклов", "length28_input": "length28", "ABCD Pattern": "Шаблон ABCD", "closed": "рынок закрыт", "Callout": "Сноска", "NO": "Нет", "Add": "ОК", "Scale": "Шкала", "Millennium": "Миллениум", "Least Squares Moving Average_study": "Скользящее среднее (наименьшие квадраты)", "Graphics": "Графики", "NEW": "новая", "Wick": "Фитиль", "Hull MA_input": "Hull MA", "Lock Scale": "Зафиксировать шкалу", "distance: {0}": "Расстояние: {0}", "Extended": "Прямая", "Three Drives Pattern": "Шаблон трёх движений", "Create Vertical Line": "Добавить вертикальную линию", "Arcs": "Дуги", "Top Margin": "Отступ сверху", "Length2_input": "Length2", "Insert Drawing Tool": "Добавить фигуру", "OHLC Values": "Значения ОТКР-МАКС-МИН-ЗАКР", "Correlation_input": "Correlation", "Scales Text": "Текст на шкалах", "Session Breaks": "Границы сессий", "Add {0} To Watchlist": "Добавить {0} в Окно котировок", "Anchored Note": "Заметка на экране", "lipsLength_input": "lipsLength", "Apply Indicator on {0}": "Применить индикатор для {0}", "roclen4_input": "roclen4", "November": "Ноябрь", "Tehran": "Тегеран", "Change Seconds To": "Заменить секунды на", "Background Color": "Цвет заливки", "an hour": "один час", "Right Axis": "Правая шкала", "D_data_mode_delayed_streaming_letter": "D", "VI -_input": "VI -", "slowLength_input": "slowLength", "Click to set a point": "Кликните, чтобы установить точку", "January": "Январь", "Indicators, Fundamentals, Economy and Add-ons": "Индикаторы, экономические данные, дополнения", "delayed": "данные с задержкой", "n/a": "н/д", "Indicator Titles": "Названия индикаторов", "retrying": "переподключение", "Change area background": "Изменить фон области", "Error": "Ошибка", "Edit Position": "Редактировать позицию", "RVI_input": "RVI", "Awesome Oscillator_study": "Осциллятор Билла Вильямса", "Recalculate On Every Tick": "Пересчитывать на каждом тике", "Left": "Слева", "Show Text": "Отображать текст", "Objects Tree...": "Дерево объектов...", "Source Code": "Исходный код", "Add Symbol": "Добавить", "Projection": "Проекция", "Track time": "Отслеживать время", "Enter a new chart layout name": "Укажите новое имя графика", "Signal Length_input": "Signal Length", "Properties": "Свойства", "Teeth Length_input": "Teeth Length", "Point Value": "Значение", "D_interval_short": "Д", "Close": "Закрыть", "ParabolicSAR_input": "ParabolicSAR", "Log Scale_scale_menu": "Логарифмическая шкала", "MACD_input": "MACD", "Do not show this message again": "Больше не показывать это сообщение", "{0} P&L: {1}": "{0} ПР/УБ: {1}", "Up Wave 3": "Восходящая волна 3", "Arrow Mark Left": "Стрелка влево", "Source Code...": "Исходный код...", "Up Wave 5": "Восходящая волна 5", "Up Wave 4": "Восходящая волна 4", "(O + H + L + C)/4": "(МИН+МАКС+ЗАКР+ОТКР)/4", "Confirm Inputs": "Подтвердить инпуты", "Open_line_tool_position": "Открыта", "Lagging Span_input": "Lagging Span", "Subminuette": "Субминуэт", "Mirrored": "Отобразить по вертикали", "Price": "Цена", "Vancouver": "Ванкувер", "Triple EMA_study": "Скользящее среднее (тройное эксп.)", "Elliott Correction Wave (ABC)": "Коррекционная волна Эллиотта (ABC)", "Error while trying to create snapshot.": "Ошибка при попытке создания скриншота", "Label Background": "Заливка текстовой метки", "Templates": "Шаблоны", "Please report the issue or click Reconnect.": "Пожалуйста, сообщите о проблеме, или кликните Переподключиться.", "1. Slide your finger to select location for first anchor
    2. Tap anywhere to place the first anchor": "1. Определите первую точку, перетаскивая перекрестие пальцем.
    2. После этого, сделайте тап в произвольном месте, чтобы установить её.", "Signal Labels": "Метки сигнала", "May": "Май", "Are you sure?": "Вы уверены?", "Color 5_input": "Color 5", "Up Wave 1 or A": "Восходящая волна 1 или А", "Scale Price Chart Only": "Игнорировать шкалу индикаторов", "Default": "Не задано", "auto_scale": "авто", "Background": "Заливка", "% of equity": "% акционерного капитала", "Apply Elliot Wave Intermediate": "Применить промежуточную волну", "VWMA_input": "VWMA", "Lower Deviation_input": "Lower Deviation", "Save Interval": "Сохранить интервал", "Extend Lines Left": "Продолжить линии влево", "Reverse": "Переворот", "Oops, something went wrong": "Упс, что-то пошло не так", "Shapes_input": "Shapes", "Median": "Средняя линия", "Show Source Code": "Показать исходный код", "Remove": "Удалить", "len_input": "len", "Arrow Mark Up": "Стрелка вверх", "April": "Апрель", "log": "лог", "Crosses_input": "Crosses", "KST_input": "KST", "Sync drawing to all charts": "Синхронизировать инструмент рисования со всеми графиками", "LowerLimit_input": "LowerLimit", "Know Sure Thing_study": "Знать наверняка", "Copy Chart Layout": "Копировать график", "Compare...": "Сравнить...", "1. Slide your finger to select location for next anchor
    2. Tap anywhere to place the next anchor": "1. Определите точку, перетаскивая перекрестие пальцем.
    2. После этого, сделайте тап в произвольном месте, чтобы установить её.", "Compare or Add Symbol": "Сравнить/Добавить", "Color": "Цвет", "Aroon Up_input": "Aroon Up", "bottom": "снизу", "Scales Lines": "Линии шкал", "Type the interval number for munute charts (i.e. 5 if it is going to be a five minute chart). Or number plus letter for H (Hourly), D (Daily), W (Weekly), M (Monthly) intervals (i.e. D or 2H)": "Введите нужное число для минутных графиков (например, 5 если нужен 5-минутный график), или число и букву для соответствующих интервалов: H (часы), D (дни), W (недели), M (месяцы), например, D или 2H", "Up Wave C": "Восходящая волна С", "Show Distance": "Отображать расстояние", "Risk/Reward Ratio: {0}": "Соотношение риск/премия: {0}", "Restore Size": "Восстановить размер", "Williams Fractal_study": "Williams Fractal", "Merge Up": "Присоединить вверх", "Right Margin": "Отступ справа", "Ellipse": "Эллипс", "Warsaw": "Варшава"} \ No newline at end of file +{"ticks_slippage ... ticks": "тики", "Months_interval": "Мес.", "Realtime": "Данные в реальном времени", "Callout": "Сноска", "Sync to all charts": "Синхронизировать на всех графиках", "month": "месяц", "London": "Лондон", "roclen1_input": "roclen1", "Unmerge Down": "Отсоединить вниз", "Percents": "Проценты", "Search Note": "Искать заметку", "Minor": "Второстепенные", "Do you really want to delete Chart Layout '{0}' ?": "Вы действительно хотите удалить сохранённый график '{0}'?", "Quotes are delayed by {0} min and updated every 30 seconds": "Котировки с задержкой {0} минут, обновляются каждые 30 секунд", "Magnet Mode": "Магнит", "Grand Supercycle": "Гранд Суперцикл", "OSC_input": "OSC", "Hide alert label line": "Спрятать линию метки оповещения", "Volume_study": "Объём", "Lips_input": "Lips", "Show real prices on price scale (instead of Heikin-Ashi price)": "Показывать реальные цены на ценовой шкале (вместо значений Хейкин Аши)", "Histogram": "Гистограмма", "Base Line_input": "Base Line", "Step": "Ступенчатая", "Insert Study Template": "Добавить шаблон индикаторов", "Fib Time Zone": "Временные периоды по Фибоначчи", "SMALen2_input": "SMALen2", "Bollinger Bands_study": "Полосы Боллинджера", "Nov": "Ноя", "Show/Hide": "Показать/Скрыть", "Upper_input": "Upper", "exponential_input": "exponential", "Move Up": "Переместить вверх", "Symbol Info": "Информация по инструменту", "This indicator cannot be applied to another indicator": "Данный индикатор нельзя применить к другому индикатору", "Scales Properties...": "Свойства шкал...", "Count_input": "Count", "Full Circles": "Полные круги", "Ashkhabad": "Ашхабад", "OnBalanceVolume_input": "OnBalanceVolume", "Cross_chart_type": "Перекрестия", "H_in_legend": "МАКС", "a day": "день", "Pitchfork": "Вилы", "R_data_mode_replay_letter": "R", "Accumulation/Distribution_study": "Накопление/Распределение", "Rate Of Change_study": "Индекс изменения", "Text Font": "Шрифт текста", "in_dates": "за", "Clone": "Клонировать", "Color 7_input": "Color 7", "Chop Zone_study": "Индикатор Chop Zone", "Bar #": "№ бара", "Scales Properties": "Свойства шкал", "Trend-Based Fib Time": "Периоды Фибоначчи, основанные на тренде", "Remove All Indicators": "Удалить все индикаторы", "Oscillator_input": "Oscillator", "Last Modified": "Изменен", "yay Color 0_input": "yay Color 0", "Labels": "Метки", "Chande Kroll Stop_study": "Chande Kroll Stop", "Hours_interval": "Час.", "Allow up to": "Разрешить размещение до", "Scale Right": "Правая шкала", "Money Flow_study": "Денежный поток", "siglen_input": "siglen", "Indicator Labels": "Отображать имя индикатора на шкале", "__specialSymbolOpen__Tomorrow at__specialSymbolClose__ __dayTime__": "__specialSymbolOpen__Завтра на__specialSymbolClose__ __dayTime__", "Hide All Drawing Tools": "Скрыть все объекты рисования", "Toggle Percentage": "Процентная шкала вкл/выкл", "Remove All Drawing Tools": "Удалить все инструменты рисования", "Remove all line tools for ": "Убрать все инструменты рисования для ", "Linear Regression Curve_study": "Linear Regression Curve", "Symbol_input": "Инструмент", "Currency": "Валюта", "increment_input": "increment", "Compare or Add Symbol...": "Сравнить/Добавить инструмент...", "__specialSymbolOpen__Last__specialSymbolClose__ __dayName__ __specialSymbolOpen__at__specialSymbolClose__ __dayTime__": "__specialSymbolOpen__Последний__specialSymbolClose__ __dayName__ __specialSymbolOpen__в__specialSymbolClose__ __dayTime__", "Save Chart Layout": "Сохранить график", "Number Of Line": "Количество линий", "Label": "Метка", "Post Market": "Вечерняя торговая сессия", "Change Hours To": "Изменить часы на", "smoothD_input": "smoothD", "Falling_input": "Falling", "X_input": "X", "Risk/Reward short": "Короткая позиция", "UpperLimit_input": "UpperLimit", "Donchian Channels_study": "Канал Дончана", "Entry price:": "Открытие позиции:", "Circles": "Точки", "Stop: {0} ({1}) {2}, Amount: {3}": "Стоп: {0} ({1}) {2}, Сумма: {3}", "Mirrored": "Отобразить по вертикали", "Ichimoku Cloud_study": "Облако Ишимоку", "Signal smoothing_input": "Signal smoothing", "Use Upper Deviation_input": "Use Upper Deviation", "Toggle Auto Scale": "Автоматический масштаб вкл/выкл", "Grid": "Сетка", "Apply Elliot Wave Minor": "Применить второстепенную волну Эллиотта", "Slippage": "Проскальзывание", "Smoothing_input": "Smoothing", "Color 3_input": "Color 3", "Jaw Length_input": "Jaw Length", "Almaty": "Алма-Ата", "Inside": "Внутрь", "Pitchfan": "Наклонный веер", "Fundamentals": "Финансовый анализ", "Keltner Channels_study": "Канал Кельтнера", "Long Position": "Длинная позиция", "Bands style_input": "Bands style", "Undo {0}": "Отменить {0}", "With Markers": "С точками", "Momentum_study": "Моментум (Momentum)", "MF_input": "MF", "Gann Box": "Коробка Ганна", "Switch to the next chart": "Перейти к следующему графику", "charts by TradingView": "графики от TradingView", "Fast length_input": "Fast length", "Apply Elliot Wave": "Применить волну Эллиота", "Disjoint Angle": "Расходящийся угол", "Supermillennium": "Супермиллениум", "W_interval_short": "Н", "Show Only Future Events": "Показывать только будущие события", "Log Scale": "Логарифмическая шкала", "Zurich": "Цюрих", "Equality Line_input": "Equality Line", "Short_input": "Short", "Fib Wedge": "Клин по Фибоначчи", "Line": "Линия", "Session": "Сессия", "Down fractals_input": "Down fractals", "Fib Retracement": "Коррекция по Фибоначчи", "smalen2_input": "smalen2", "isCentered_input": "isCentered", "Border": "Граница", "Klinger Oscillator_study": "Осциллятор Клингера", "Absolute": "Абсолютные значения", "Tue": "Вт", "Style": "Стиль", "Show Left Scale": "Показать левую шкалу", "SMI Ergodic Indicator/Oscillator_study": "SMI Ergodic Indicator/Oscillator", "Aug": "Авг", "Last available bar": "Последний доступный бар", "Manage Drawings": "Управление инструментами рисования", "Top": "Сверху", "No drawings yet": "Нет инструментов рисования", "SMI_input": "SMI", "Chande MO_input": "Chande MO", "jawLength_input": "jawLength", "TRIX_study": "Скользящее среднее (тройное эксп. сглаженное)", "Show Bars Range": "Отображать диапазон в барах", "RVGI_input": "RVGI", "Last edited ": "Последнее изменение ", "signalLength_input": "signalLength", "%s ago_time_range": "%s назад", "Reset Settings": "Сбросить настройки", "PnF": "Крестики-нолики", "Renko": "Ренко", "d_dates": "д", "Point & Figure": "Крестики-нолики", "August": "Август", "Recalculate After Order filled": "Пересчитывать после заполнения заявки", "Source_compare": "Отображать цену:", "Down bars": "Нисходящие бары", "Correlation Coefficient_study": "Коэффициент корреляции", "Delayed": "Данные с задержкой", "Bottom Labels": "Текст снизу", "Text color": "Цвет текста", "Levels": "Уровни", "Length_input": "Длина", "Short Length_input": "Short Length", "teethLength_input": "teethLength", "Visible Range_study": "Видимая область", "Delete": "Удалить", "Hong Kong": "Гонконг", "Text Alignment:": "Выравнивание текста:", "Open {{symbol}} Text Note": "Открыть заметку по {{symbol}}", "October": "Октябрь", "Lock All Drawing Tools": "Зафиксировать все объекты", "Long_input": "Long", "Right End": "Правый край", "Show Symbol Last Value": "Показывать последнюю котировку", "Head & Shoulders": "Голова и плечи", "Do you really want to delete Study Template '{0}' ?": "Вы действительно хотите удалить шаблон индикаторов '{0}'?", "Favorite Drawings Toolbar": "Панель избранных объектов", "Properties...": "Свойства...", "MA Cross_study": "Пересечение скользящих средних", "Trend Angle": "Угол тренда", "Snapshot": "Скриншот графика", "Crosshair": "Перекрестие", "Signal line period_input": "Signal line period", "Timezone/Sessions Properties...": "Часовой пояс и сессии...", "Line Break": "Линейный прорыв", "Quantity": "Количество", "Price Volume Trend_study": "Price Volume Trend", "Auto Scale": "Автоматический масштаб", "Delete chart layout": "Удалить график", "Text": "Текст", "F_data_mode_forbidden_letter": "F", "Risk/Reward long": "Длинная позиция", "Apr": "Апр", "Long RoC Length_input": "Long RoC Length", "Length3_input": "Length3", "+DI_input": "+DI", "Madrid": "Мадрид", "Use one color": "Использовать один цвет", "Chart Properties": "Свойства графика", "No Overlapping Labels_scale_menu": "Не перекрывать метки", "Exit Full Screen (ESC)": "Выйти из режима (ESC)", "MACD_study": "MACD", "Show Economic Events on Chart": "Показывать экономические события на графике", "Moving Average_study": "Скользящее среднее", "Show Wave": "Показывать волну", "Failure back color": "Заливка (неудача)", "Below Bar": "Бар ниже", "Time Scale": "Шкала времени", "

    Only D, W, M intervals are supported for this symbol/exchange. You will be automatically switched to a D interval. Intraday intervals are not available because of exchange policies.

    ": "

    Только Д, Н, М интервалы доступны для этого символа/биржи. Вы будете автоматически переключены на Д интервал. Внутридневные интервалы недоступны из-за политики конфиденциальности биржи.

    ", "Extend Left": "Продлить влево", "Date Range": "Диапазон дат", "Min Move": "Минимальный шаг", "Price format is invalid.": "Формат цены не поддерживается.", "Show Price": "Отображать цену", "Level_input": "Level", "Angles": "Углы", "Hide Favorite Drawings Toolbar": "Скрыть панель \"Избранные инструменты рисования\"", "Commodity Channel Index_study": "Индекс Товарного Канала", "Elder's Force Index_input": "Индекс силы Элдера", "Gann Square": "Квадрат Ганна", "Phoenix": "Финикс", "Format": "Формат", "Color bars based on previous close": "Цвет баров основан на цене предыдущего закрытия", "Change band background": "Изменить фон полосы", "Target: {0} ({1}) {2}, Amount: {3}": "Цель: {0} ({1}) {2}, Сумма: {3}", "This chart layout has a lot of objects and can't be published! Please remove some drawings and/or studies from this chart layout and try to publish it again.": "На данном графике слишком много объектов, его нельзя опубликовать! Удалите несколько объектов рисования и/или индикаторов/стратегий с графика и попробуйте опубликовать снова.", "Anchored Text": "Текст на экране", "Long length_input": "Long length", "Edit {0} Alert...": "Редактировать {0} оповещение...", "Previous Close Price Line": "Линия цены предыдущего закрытия", "Up Wave 5": "Восходящая волна 5", "Qty: {0}": "Кол-во: {0}", "Heikin Ashi": "Хейкин Аши", "Aroon_study": "Арун", "show MA_input": "show MA", "Industry": "Отрасль", "Lead 1_input": "Lead 1", "Short Position": "Короткая позиция", "SMALen1_input": "SMALen1", "P_input": "P", "Apply Default": "Сбросить изменения", "SMALen3_input": "SMALen3", "Average Directional Index_study": "Индикатор среднего направленного движения (ADX)", "Fr_day_of_week": "Пт", "Curve": "Кривая", "a year": "год", "Target Color:": "Цвет цели:", "Bars Pattern": "Шаблон из баров", "D_input": "D", "Font Size": "Размер шрифта", "Create Vertical Line": "Добавить вертикальную линию", "p_input": "p", "Rotated Rectangle": "Вращающийся прямоугольник", "Chart layout name": "Имя графика", "Fib Circles": "Окружности по Фибоначчи", "Dot": "Точка", "Target back color": "Заливка (цель)", "All": "Все", "orders_up to ... orders": "заявки", "Dot_hotkey": "(\"точка\" для быстр. доступа)", "Lead 2_input": "Lead 2", "Save image": "Сохраните изображение", "Move Down": "Переместить вниз", "Unlock": "Разблокировать", "Box Size": "Размер коробки", "Navigation Buttons": "Навигационные кнопки", "Miniscule": "Минускул", "Apply": "Применить", "Down Wave 3": "Нисходящая волна 3", "Plots Background_study": "Plots Background", "Marketplace Add-ons": "Магазин дополнений", "Sine Line": "Синусоида", "Fill": "Заливка", "Hide": "Скрыть", "Toggle Maximize Chart": "Переключить полноэкранный режим", "Target text color": "Текст (цель)", "Scale Left": "Левая шкала", "Elliott Wave Subminuette": "Сверхкороткая волна Эллиотта", "Down Wave C": "Нисходящая волна C", "Countdown": "Отображать обратный отсчет", "UO_input": "UO", "Pyramiding": "Пирамидинг", "Source back color": "Заливка (открытие)", "Go to Date...": "Перейти к дате...", "Sao Paulo": "Сан-Паулу", "R_data_mode_realtime_letter": "R", "Extend Lines": "Продолжить линии", "Conversion Line_input": "Conversion Line", "March": "Март", "Su_day_of_week": "Вс", "Exchange": "Биржа", "My Scripts": "Мои скрипты", "Arcs": "Дуги", "Regression Trend": "Направление регрессии", "Short RoC Length_input": "Short RoC Length", "Fib Spiral": "Спираль по Фибоначчи", "Double EMA_study": "Double EMA", "All Indicators And Drawing Tools": "Все индикаторы и инструменты рисования", "Indicator Last Value": "Маркер последнего значения индикатора", "Sync drawings to all charts": "Синхронизировать на всех графиках", "Stop Color:": "Цвет стоп-уровня:", "Stay in Drawing Mode": "Оставаться в режиме рисования", "Bottom Margin": "Отступ снизу", "Dubai": "Дубай", "Save Chart Layout saves not just some particular chart, it saves all charts for all symbols and intervals which you are modifying while working with this Layout": "Функция \"Сохранить рабочее пространство\" учитывает все изменения, которые вы сделали для разных инструментов или интервалов", "Average True Range_study": "Средний истинный диапазон", "Max value_input": "Max value", "MA Length_input": "MA Length", "Right Labels": "Текст справа", "in %s_time_range": "через %s", "Extend Bottom": "Продлить вниз", "sym_input": "sym", "DI Length_input": "DI Length", "Rome": "Рим", "Scale": "Шкала", "Periods_input": "Periods", "Arrow": "Стрелка", "Square": "Квадрат", "Basis_input": "Basis", "Arrow Mark Down": "Стрелка вниз", "lengthStoch_input": "lengthStoch", "Taipei": "Тайбей", "Objects Tree": "Дерево объектов", "Remove from favorites": "Удалить из предпочтений", "Show Symbol Previous Close Value": "Показывать цену предыдущего закрытия инструмента", "Scale Series Only": "Игнорировать шкалу индикаторов", "Source text color": "Текст (открытие)", "Simple": "Простая линия", "Report a data issue": "Сообщить о проблеме с данными", "Arnaud Legoux Moving Average_study": "Скользящее среднее Арно Легу", "Smoothed Moving Average_study": "Smoothed Moving Average", "Lower Band_input": "Нижняя полоса", "Verify Price for Limit Orders": "Проверка цены для исполнения лимитовых заявок", "VI +_input": "VI +", "Line Width": "Ширина линии", "Contracts": "Контракты", "Always Show Stats": "Всегда отображать текст", "Delete all drawing for this symbol": "Удалить все инструменты рисования для этого символа", "ROCLen2_input": "ROCLen2", "Simple ma(signal line)_input": "Simple ma(signal line)", "Change Interval...": "Изменить интервал", "Public Library": "Публичные", " Do you really want to delete Drawing Template '{0}' ?": " Вы действительно хотите удалить шаблон '{0}'?", "Sat": "Сб", "week": "неделя", "CRSI_study": "CRSI", "Close message": "Закрыть сообщение", "Jul": "Июл", "Base currency": "Основная валюта", "Show Drawings Toolbar": "Показать панель графических инструментов", "Chaikin Oscillator_study": "Осциллятор Чайкина", "Price Source": "На основе", "Market Open": "Рынок открыт", "Color Theme": "Цветовая тема", "Projection up bars": "Проекция восходящего бара", "Awesome Oscillator_study": "Чудесный осциллятор Билла Вильямса", "Bollinger Bands Width_input": "Bollinger Bands Width", "Q_input": "Q", "long_input": "long", "Error occured while publishing": "Возникла ошибка при публикации", "Fisher_input": "Fisher", "Color 1_input": "Color 1", "Moving Average Weighted_study": "Moving Average Weighted", "Save": "Сохранить", "Type": "Тип", "Wick": "Фитиль", "Accumulative Swing Index_study": "Accumulative Swing Index", "Load Chart Layout": "Загрузить график", "Show Values": "Показать значения", "Fib Speed Resistance Fan": "Веерные линии сопротивления по Фибоначчи", "Bollinger Bands Width_study": "Ширина полос Боллинджера", "This chart layout has more than 1000 drawings, which is a lot! This may negatively affect performance, storage and publishing. We recommend to remove some drawings to avoid potential performance issues.": "Данный график содержит более 1000 элементов рисования - это слишком много и может негативно сказаться на производительности графика. Мы рекомендуем удалить некоторые объекты рисования, чтобы избежать возможных технических ошибок.", "Left End": "Левый край", "Volume Oscillator_study": "Осциллятор объема", "Always Visible": "Отображать всегда", "S_data_mode_snapshot_letter": "S", "Flag": "Флаг", "Elliott Wave Circle": "Волновой цикл Эллиотта", "Earnings breaks": "В виде разрыва", "Change Minutes From": "Изменить минуты с", "Do not ask again": "Больше не спрашивать", "Displacement_input": "Displacement", "smalen4_input": "smalen4", "CCI_input": "CCI", "Upper Deviation_input": "Upper Deviation", "(H + L)/2": "(МАКС+МИН)/2", "XABCD Pattern": "Шаблон XABCD", "Schiff Pitchfork": "Вилы Шифа", "Copied to clipboard": "Скопировано в буфер обмена", "hl2": "МаксМин2", "Flipped": "Отразить по горизонтали", "DEMA_input": "DEMA", "Move_input": "Move", "NV_input": "NV", "Choppiness Index_study": "Индекс Переменчивости", "Study Template '{0}' already exists. Do you really want to replace it?": "Шаблон индикаторов '{0}' уже существует. Вы действительно хотите заменить его?", "Merge Down": "Присоединить вниз", " per contract": " на контракт", "Overlay the main chart": "Поверх основной серии", "Screen (No Scale)": "Экран (нет шкалы)", "Three Drives Pattern": "Паттерн трёх движений", "Save Indicator Template As": "Сохранить шаблон индикаторов как", "Length MA_input": "Length MA", "percent_input": "percent", "September": "Сентябрь", "{0} copy": "{0} (копия)", "Median_input": "Median", "Accumulation/Distribution_input": "Накопление/Распределение", "Sync": "Синхронизировать", "C_in_legend": "ЗАКР", "Weeks_interval": "Нед.", "smoothK_input": "smoothK", "Percentage_scale_menu": "Процентная шкала", "Change Extended Hours": "Изменить расширенную сессию", "MOM_input": "MOM", "h_interval_short": "Ч", "Change Interval": "Изменить интервал", "Change area background": "Изменить фон области", "Modified Schiff": "Измененные Шифа", "top": "сверху", "Adelaide": "Аделаида", "Send Backward": "На один слой назад", "Mexico City": "Мехико", "TRIX_input": "TRIX", "Show Price Range": "Отображать диапазон цен", "Elliott Major Retracement": "Основная коррекция Эллиотта", "ASI_study": "ASI", "Notification": "Уведомление", "Fri": "Пт", "just now": "только что", "Forecast": "Прогноз", "Fraction part is invalid.": "Дробная часть неверна.", "Connecting": "Идет соединение", "Ghost Feed": "Проекция цены", "Signal_input": "Signal", "Histogram_input": "Histogram", "The Extended Trading Hours feature is available only for intraday charts": "Функция расширенных торговых часов доступна только для внутридневных графиков", "Stop syncing": "Отменить синхронизацию объектов", "open": "откр.", "StdDev_input": "StdDev", "EMA Cross_study": "EMA Cross", "Conversion Line Periods_input": "Conversion Line Periods", "Oversold_input": "Перепроданы", "Brisbane": "Брисбен", "Monday": "Понедельник", "Add Symbol_compare_or_add_symbol_dialog": "Добавить инструмент", "Williams %R_study": "Williams %R", "Symbol": "Инструмент", "a month": "месяц", "Precision": "Точность", "depth_input": "depth", "Go to": "Переход к дате", "Please enter chart layout name": "Укажите имя графика:", "Mar": "Мар", "VWAP_study": "VWAP", "Offset": "Смещение", "Date": "Дата", "Format...": "Свойства...", "__dayName__ __specialSymbolOpen__at__specialSymbolClose__ __dayTime__": "__dayName__ __specialSymbolOpen__в__specialSymbolClose__ __dayTime__", "Toggle Maximize Pane": "Развернуть", "Search": "Поиск", "Zig Zag_study": "ЗигЗаг", "Actual": "Факт", "SUCCESS": "УСПЕХ", "Long period_input": "Long period", "length_input": "length", "roclen4_input": "roclen4", "Price Line": "Линия цены", "Area With Breaks": "Область с разрывами", "Zoom Out": "Уменьшить масштаб", "Stop Level. Ticks:": "Стоп-уровень. Тики:", "Window Size_input": "Window Size", "Economy & Symbols": "Эконом.анализ и инструменты", "Circle Lines": "Линии окружности", "Visual Order": "Порядок слоев", "__specialSymbolOpen__Yesterday at__specialSymbolClose__ __dayTime__": "__specialSymbolOpen__Вчера на__specialSymbolClose__ __dayTime__", "Stop Background Color": "Цвет заливки (остановка)", "1. Slide your finger to select location for first anchor
    2. Tap anywhere to place the first anchor": "1. Определите первую точку, перетаскивая перекрестие пальцем.
    2. После этого, сделайте тап в произвольном месте, чтобы установить её.", "Sector": "Сектор", "powered by TradingView": "технология TradingView", "Text:": "Текст:", "Stochastic_study": "Стохастический осциллятор", "Sep": "Сен", "TEMA_input": "TEMA", "Apply WPT Up Wave": "Применить WPT Up Wave", "Min Move 2": "Минимальный шаг 2", "Extend Left End": "Продолжить влево", "Projection down bars": "Проекция нисходящего бара", "Advance/Decline_study": "Рост/падение", "New York": "Нью-Йорк", "Flag Mark": "Флаг", "Drawings": "Инструменты рисования", "Cancel": "Отмена", "Compare or Add Symbol": "Сравнить/Добавить", "Redo": "Повторять", "Hide Drawings Toolbar": "Скрыть панель объектов", "Ultimate Oscillator_study": "Ultimate Oscillator", "Vert Grid Lines": "Верт. линии сетки", "Growing_input": "Growing", "Angle": "Угол", "Plot_input": "Plot", "Chicago": "Чикаго", "Color 8_input": "Color 8", "Indicators, Fundamentals, Economy and Add-ons": "Индикаторы, экономические данные, дополнения", "h_dates": "ч.", "ROC Length_input": "ROC Length", "roclen3_input": "roclen3", "Overbought_input": "Перекуплены", "Extend Top": "Продлить вверх", "Change Minutes To": "Изменить минуты на", "No study templates saved": "Нет сохраненных шаблонов индикаторов", "Trend Line": "Линия тренда", "TimeZone": "Часовой пояс", "Your chart is being saved, please wait a moment before you leave this page.": "Ваш график сохраняется, подождите немного, перед тем как перейти с этой страницы, или закрыть ее.", "Percentage": "Проценты", "Tu_day_of_week": "Вт", "RSI Length_input": "RSI Length", "Triangle": "Треугольник", "Line With Breaks": "Линия с разрывами", "Period_input": "Period", "Watermark": "Водяной знак", "Trigger_input": "Trigger", "SigLen_input": "SigLen", "Extend Right": "Продлить вправо", "Color 2_input": "Color 2", "Show Prices": "Отображать цены", "Copy": "Копировать", "high": "макс.", "Arc": "Дуга", "Edit Order": "Редактировать заявку", "January": "Январь", "Arrow Mark Right": "Стрелка вправо", "Extend Alert Line": "Продолжить линию оповещения", "Background color 1": "Цвет заливки №1", "RSI Source_input": "RSI Source", "Close Position": "Закрыть позицию", "Any Number": "Любое число", "Stop syncing drawing": "Отменить синхронизацию объектов", "Visible on Mouse Over": "Отображать при наведении курсора", "MA/EMA Cross_study": "MA/EMA Cross", "Thu": "Чт", "Vortex Indicator_study": "Vortex Indicator", "view-only chart by {user}": "график только для просмотра от {user}", "ROCLen1_input": "ROCLen1", "M_interval_short": "М", "Chaikin Oscillator_input": "Осциллятор Чайкина", "Price Levels": "Уровни цены", "Show Splits": "Отображать дробление акций", "Zero Line_input": "Zero Line", "__specialSymbolOpen__Today at__specialSymbolClose__ __dayTime__": "__specialSymbolOpen__Сегодня на__specialSymbolClose__ __dayTime__", "Increment_input": "Increment", "Days_interval": "Дн.", "Show Right Scale": "Показать правую шкалу", "Show Alert Labels": "Отображать метки оповещений", "Historical Volatility_study": "Историческая волатильность", "Lock": "Заблокировать", "length14_input": "length14", "High": "Максимум", "ext": "расш", "Date and Price Range": "Диапазон цены и времени", "Polyline": "Ломаная линия", "Reconnect": "Переподключиться", "Lock/Unlock": "Блокировать/разблокировать", "HLC Bars": "Не отображать цену открытия", "Base Level": "Уровень базовой линии", "Saturday": "Суббота", "Symbol Last Value": "Маркер последнего значения инструмента", "Above Bar": "Бар выше", "Studies": "Скрипты", "Color 0_input": "Color 0", "Add Symbol": "Добавить", "maximum_input": "maximum", "Wed": "Ср", "Paris": "Париж", "D_data_mode_delayed_letter": "D", "Sigma_input": "Sigma", "VWMA_study": "Скользящее среднее, взвешенное по объему", "fastLength_input": "fastLength", "Time Levels": "Уровни времени", "Width": "Ширина", "Loading": "Загрузка", "Template": "Шаблон", "Use Lower Deviation_input": "Use Lower Deviation", "Up Wave 3": "Восходящая волна 3", "Parallel Channel": "Параллельные каналы", "Time Cycles": "Временные циклы", "Second fraction part is invalid.": "Вторая дробная часть неверна.", "Divisor_input": "Divisor", "Baseline": "Базовая линия", "Down Wave 1 or A": "Нисходящая волна 1 или А", "ROC_input": "ROC", "Dec": "Дек", "Ray": "Луч", "Extend": "Продолжить", "length7_input": "length7", "Bottom": "Снизу", "Berlin": "Берлин", "Undo": "Отменить", "Original": "Обычные", "Mon": "Пн", "Reset Scale": "Сбросить состояние шкалы", "Long Length_input": "Long Length", "True Strength Indicator_study": "Индекс истинной силы", "%R_input": "%R", "There are no saved charts": "Нет сохранённых графиков", "Instrument is not allowed": "Инструмент не разрешён", "bars_margin": "баров", "Decimal Places": "Знаки после запятой", "Show Indicator Last Value": "Показывать последнее значение индикатора", "Initial capital": "Исходный капитал", "Show Angle": "Отображать угол", "Mass Index_study": "Индекс массы", "More features on tradingview.com": "Больше возможностей на tradingview.com", "Objects Tree...": "Дерево объектов...", "Remove Drawing Tools & Indicators": "Удалить графические инструменты и индикаторы", "Length1_input": "Length1", "Always Invisible": "Никогда не отображать", "Circle": "Круг", "Days": "Дни", "x_input": "x", "Save As...": "Сохранить как...", "Elliott Double Combo Wave (WXY)": "Двойная комбинация Эллиотта (WXY)", "Parabolic SAR_study": "Параболическая система времени/цены", "Any Symbol": "Любое имя инструмента", "Price Label": "Отметка на цене", "Stats Text Color": "Цвет текста", "Minutes": "Минуты", "Williams Alligator_study": "Аллигатор Билла Вильямса", "Projection": "Проекция", "Custom color...": "Выбрать цвет...", "Jan": "Янв", "Jaw_input": "Jaw", "Right": "Справа", "Help": "Справка", "Coppock Curve_study": "Кривая Коппока", "Reversal Amount": "Величина разворота", "Reset Chart": "Сбросить состояние графика", "Marker Color": "Цвет метки", "Sunday": "Воскресенье", "Left Axis": "Левая шкала", "Open": "Цена открытия", "YES": "Да", "longlen_input": "longlen", "Moving Average Exponential_study": "Скользящее среднее (эксп.)", "Source border color": "Граница (открытие)", "Redo {0}": "Повторять {0}", "Cypher Pattern": "Паттерн Cypher", "s_dates": "s", "Caracas": "Каракас", "Area": "Область", "Triangle Pattern": "Шаблон \"Треугольник\"", "Balance of Power_study": "Баланс силы", "EOM_input": "EOM", "Shapes_input": "Shapes", "Apply Manual Risk/Reward": "Применить ручную настройку риска/прибыли", "Market Closed": "Рынок закрыт", "Sydney": "Сидней", "Indicators": "Индикаторы", "close": "закр", "q_input": "q", "You are notified": "Вы уведомлены", "%D_input": "%D", "Border Color": "Цвет обводки", "Offset_input": "Offset", "Risk": "Риск", "Price Scale": "Ценовая шкала", "HV_input": "HV", "Seconds": "Секунды", "Settings": "Настройки", "Start_input": "Начать", "Elliott Impulse Wave (12345)": "Импульсная волна Эллиотта (12345)", "Hours": "Часы", "Send to Back": "Отправить назад", "Color 4_input": "Color 4", "Los Angeles": "Лос-Анджелес", "Prices": "Цены", "Hollow Candles": "Пустые свечи", "July": "Июль", "Create Horizontal Line": "Добавить горизонтальную линию", "Minute": "Минута", "Cycle": "Цикл", "ADX Smoothing_input": "ADX Smoothing", "One color for all lines": "Один цвет для всех линий", "m_dates": "м", "(H + L + C)/3": "(МАКС+МИН+ЗАКР)/3", "Candles": "Японские свечи", "We_day_of_week": "Ср", "Width (% of the Box)": "Ширина (% от прямоугольника)", "Go to...": "Перейти...", "Pip Size": "Объём пункта", "Wednesday": "Среда", "This drawing is used in alert. If you remove the drawing, the alert will be also removed. Do you want to remove the drawing anyway?": "Для инструмента рисования настроено оповещение. Если вы удалите объект, оповещение будет также удалено. Все равно хотите удалить объект?", "Show Countdown": "Отображать обратный отсчет", "Show alert label line": "Показывать метку оповещений", "Down Wave 2 or B": "Нисходящая волна 2 или B", "MA_input": "MA", "Length2_input": "Length2", "not authorized": "не авторизован", "Session Volume_study": "Объём за сессию", "Image URL": "Изображение", "Submicro": "Субмикро", "SMI Ergodic Oscillator_input": "SMI Ergodic Oscillator", "Show Objects Tree": "Дерево объектов", "Primary": "Первичный", "Price:": "Цена:", "Bring to Front": "Перенести поверх", "Brush": "Кисть", "Not Now": "Не сейчас", "Yes": "Да", "C_data_mode_connecting_letter": "C", "SMALen4_input": "SMALen4", "Apply Default Drawing Template": "Применить шаблон по умолчанию", "Compact": "Компактный вид", "Save As Default": "Сделать по умолчанию", "Target border color": "Граница (цель)", "Invalid Symbol": "Неизвестный инструмент", "Inside Pitchfork": "Вилы (внутрь)", "yay Color 1_input": "yay Color 1", "Quandl is a huge financial database that we have connected to TradingView. Most of its data is EOD and is not updated in real-time, however the information may be extremely useful for fundamental analysis.": "Quandl - это огромная финансовая база данных, которую мы подключили к TradingView. Большая часть данных является EOD-данными и не обновляется в реальном времени, однако данная информация может быть очень полезна для фундаментального анализа.", "Hide Marks On Bars": "Скрыть отметки на барах", "Cancel Order": "Отменить заявку", "Kagi": "Каги", "WMA Length_input": "WMA Length", "Show Dividends on Chart": "Отображать дивиденды на графике", "Show Executions": "Показывать исполненные заявки", "Borders": "Обводка", "Remove Indicators": "Удалить индикаторы", "loading...": "загрузка...", "Closed_line_tool_position": "Закрыта", "Rectangle": "Прямоугольник", "Change Resolution": "Изменить разрешение", "Indicator Arguments": "Параметры индикатора", "Symbol Description": "Описание инструмента", "Chande Momentum Oscillator_study": "Осциллятор темпа Чанде", "Degree": "Угол", " per order": " на заявку", "Supercycle": "Суперцикл", "Jun": "Июн", "Least Squares Moving Average_study": "Скользящее среднее (наименьшие квадраты)", "powered by ": "на платформе ", "Source_input": "Source", "Change Seconds To": "Заменить секунды на", "%K_input": "%K", "Scales Text": "Текст на шкалах", "Toronto": "Торонто", "Please enter template name": "Введите имя шаблона", "Symbol Name": "Имя инструмента", "Tokyo": "Токио", "Events Breaks": "Границы событий", "San Salvador": "Сан-Сальвадор", "Months": "Месяцы", "Symbol Info...": "Информация по инструменту...", "Elliott Wave Minor": "Второстепенная волна Эллиотта", "Cross": "Перекрестие", "Measure (Shift + Click on the chart)": "Измерение (Shift + клик на графике)", "Override Min Tick": "Минимальное
    изменение цены", "Show Positions": "Показывать позиции", "Dialog": "Диалог", "Add To Text Notes": "Добавить к заметкам", "Elliott Triple Combo Wave (WXYXZ)": "Тройная комбинация Эллиотта (WXYXZ)", "Multiplier_input": "Multiplier", "Risk/Reward": "Риск/Прибыль", "Base Line Periods_input": "Base Line Periods", "Show Dividends": "Отображать дивиденды", "Relative Strength Index_study": "Индекс относительной силы", "Modified Schiff Pitchfork": "Видоизмененные вилы Шифа", "Top Labels": "Текст сверху", "Show Earnings": "Отображать доходы на акцию", "Elliott Triangle Wave (ABCDE)": "ABCDE волна (треугольник)", "Minuette": "Минуэт", "Text Wrap": "Перенос строк", "Reverse Position": "Перевернуть позицию", "Elliott Minor Retracement": "Второстепенная коррекция Эллиотта", "DPO_input": "DPO", "Th_day_of_week": "Чт", "Slash_hotkey": "(\"слэш\" для быстр. доступа)", "No symbols matched your criteria": "Подходящих инструментов не найдено", "Icon": "Значок", "lengthRSI_input": "lengthRSI", "Tuesday": "Вторник", "Teeth Length_input": "Teeth Length", "Indicator_input": "Indicator", "Box size assignment method": "Метод определения размера коробки", "Open Interval Dialog": "Открыть диалог интервалов", "Shanghai": "Шанхай", "Athens": "Афины", "Fib Speed Resistance Arcs": "Дуги сопротивления по Фибоначчи", "Content": "Контент", "middle": "по центру", "Lock Cursor In Time": "Зафиксировать курсор по времени", "Intermediate": "Промежуточный", "Eraser": "Ластик", "Relative Vigor Index_study": "Индекс относительной бодрости", "Envelope_study": "Конверт", "Symbol Labels": "Отображать инструмент на шкале", "Pre Market": "Предторговый период", "Horizontal Line": "Горизонтальная линия", "O_in_legend": "ОТКР", "Confirmation": "Подтвердите действие", "HL Bars": "МаксМин бары", "Lines:": "Линии", "hlc3": "МаксМинЗакр3", "Buenos Aires": "Буэнос-Айрес", "useTrueRange_input": "useTrueRange", "Bangkok": "Бангкок", "Profit Level. Ticks:": "Цель. Тики:", "Show Date/Time Range": "Отображать временной диапазон", "Level {0}": "Уровень {0}", "Favorites": "Избранное", "Horz Grid Lines": "Гор. линии сетки", "-DI_input": "-DI", "Price Range": "Диапазон цен", "deviation_input": "deviation", "Account Size": "Размер счёта", "Value_input": "Value", "Time Interval": "Интервал", "Success text color": "Текст (успех)", "ADX smoothing_input": "ADX smoothing", "Order size": "Объём заявки", "Drawing Tools": "Инструменты рисования", "Save Drawing Template As": "Сохранить шаблон графических инструментов как", "Tokelau": "Токелау", "ohlc4": "ОткрМаксМинЗакр4", "Traditional": "Традиционный", "Chaikin Money Flow_study": "Денежный поток Чайкина", "Ease Of Movement_study": "Лёгкость движения", "Defaults": "По умолчанию", "Percent_input": "Percent", "Interval is not applicable": "Интервал не поддерживается", "short_input": "short", "Visual settings...": "Настройки отображения...", "RSI_input": "RSI", "Chatham Islands": "Чатем", "Detrended Price Oscillator_input": "Detrended Price Oscillator", "Mo_day_of_week": "Пн", "center": "по центру", "Vertical Line": "Вертикальная линия", "Bogota": "Богота", "Show Splits on Chart": "Отображать разделители на графике", "Sorry, the Copy Link button doesn't work in your browser. Please select the link and copy it manually.": "К сожалению, кнопка \"Скопировать ссылку\" не работает в вашем браузере. Выделите ссылку и скопируйте её вручную.", "Levels Line": "Линии уровня", "Events & Alerts": "События и оповещения", "May": "Май", "ROCLen4_input": "ROCLen4", "Aroon Down_input": "Арун вниз", "Add To Watchlist": "Добавить в Список котировок", "Total": "Итого", "Price": "Цена", "left": "слева", "Lock scale": "Зафиксировать шкалу", "Limit_input": "Limit", "Change Days To": "Изменить дни на", "Price Oscillator_study": "Осциллятор цены", "smalen1_input": "smalen1", "Drawing Template '{0}' already exists. Do you really want to replace it?": "Шаблон '{0}' уже существует. Вы действительно хотите заменить его?", "Show Middle Point": "Показывать среднюю точку", "KST_input": "KST", "Extend Right End": "Продолжить вправо", "Fans": "Линии", "Color based on previous close_input": "Цвет основан цене предыдущего закрытия", "Price_input": "Price", "Gann Fan": "Веер Ганна", "Weeks": "Недели", "McGinley Dynamic_study": "McGinley Dynamic", "Relative Volatility Index_study": "Относительный индекс волатильности", "Source Code...": "Исходный код...", "PVT_input": "PVT", "Show Hidden Tools": "Показать скрытые инструменты", "Hull Moving Average_study": "Скользящее среднее Хала", "Symbol Prev. Close Value": "Цена предыдущего закрытия", "Istanbul": "Стамбул", "{0} chart by TradingView": "{0} график на TradingView", "Bring Forward": "На один слой вперед", "Remove Drawing Tools": "Удалить графические инструменты", "Friday": "Пятница", "Zero_input": "Zero", "Company Comparison": "Инструмент для сравнения", "Stochastic Length_input": "Stochastic Length", "mult_input": "mult", "URL cannot be received": "URL не может быть получен", "Success back color": "Заливка (успех)", "E_data_mode_end_of_day_letter": "E", "Trend-Based Fib Extension": "Расширение Фибоначчи, основанное на тренде", "Double Curve": "Двойная кривая", "Stochastic RSI_study": "Стохастический индекс относительной силы", "Oops!": "Упс!", "Horizontal Ray": "Горизонтальный луч", "smalen3_input": "smalen3", "Ok": "Ок", "Script Editor...": "Редактор скриптов", "Are you sure?": "Вы уверены?", "Trades on Chart": "Сделки на графике", "Listed Exchange": "Биржа", "Error:": "Ошибка:", "Fullscreen mode": "Полноэкранный режим", "Add Text Note For {0}": "Добавить заметку для {0}", "K_input": "K", "Do you really want to delete Drawing Template '{0}' ?": "Вы действительно хотите удалить шаблон инструментов '{0}'?", "ROCLen3_input": "ROCLen3", "Micro": "Микро", "Text Color": "Цвет текста", "Rename Chart Layout": "Переименовать график", "Built-ins": "Встроенные", "Background color 2": "Цвет заливки №2", "Drawings Toolbar": "Показывать панель инструментов", "Moving Average Channel_study": "Moving Average Channel", "New Zealand": "Новая Зеландия", "CHOP_input": "CHOP", "Apply Defaults": "Применить по умолчанию", "% of equity": "% акционерного капитала", "Extended Alert Line": "Продлить линию оповещения", "Note": "Заметка", "OK": "ОК", "Show": "Показать", "{0} bars": "Бары: {0}", "Lower_input": "Lower", "Created ": "Создана ", "Warning": "Предупреждение", "Elder's Force Index_study": "Индекс силы Элдера", "Down Wave 4": "Нисходящая волна 4", "Show Earnings on Chart": "Отображать доходы на акцию на графике", "ATR_input": "ATR", "Low": "Минимум", "Bollinger Bands %B_study": "%B Полос Боллинджера", "Time Zone": "Часовой пояс", "right": "справа", "Schiff": "Шифа", "Wrong value": "Неправильное значение", "Upper Band_input": "Верхняя полоса", "Sun": "Вс", "Rename...": "Переименовать...", "start_input": "start", "No indicators matched your criteria.": "Нет индикаторов по вашему запросу", "Commission": "Комиссия", "Down Color": "Бар вниз", "Short length_input": "Short length", "Kolkata": "Калькутта", "Submillennium": "Субмиллениум", "Technical Analysis": "Технический анализ", "Show Text": "Отображать текст", "Channel": "Канал", "FXCM CFD data is available only to FXCM account holders": "CFD данные от FXCM доступны только для владельцев счетов FXCM.", "Lagging Span 2 Periods_input": "Lagging Span 2 Periods", "Connecting Line": "Соединяющая линия", "Seoul": "Сеул", "bottom": "снизу", "Teeth_input": "Teeth", "Sig_input": "Sig", "Open Manage Drawings": "Открыть настройки объектов рисования", "Save New Chart Layout": "Сохранить график", "Fib Channel": "Каналы по Фибоначчи", "Save Drawing Template As...": "Сохранить шаблон как...", "Minutes_interval": "Мин.", "Up Wave 2 or B": "Восходящая волна 2 или B", "Columns": "Столбцы", "Directional Movement_study": "Directional Movement", "roclen2_input": "roclen2", "Apply WPT Down Wave": "Применить WPT Down Wave", "Not applicable": "Не поддерживается", "Bollinger Bands %B_input": "Bollinger Bands %B", "Default": "Не задано", "Singapore": "Сингапур", "Template name": "Имя шаблона", "Indicator Values": "Значения индикатора", "Lips Length_input": "Lips Length", "Toggle Log Scale": "Логарифмическая шкала вкл/выкл", "L_in_legend": "МИН", "Remove custom interval": "Удалить пользовательский интервал", "shortlen_input": "shortlen", "Quotes are delayed by {0} min": "Данные с задержкой на {0} мин.", "Hide Events on Chart": "Скрыть события на графике", "Cash": "Валюта", "Bar's Style": "Стиль баров", "Exponential_input": "Exponential", "Down Wave 5": "Нисходящая волна 5", "Previous": "Предыдущий", "Stay In Drawing Mode": "Оставаться в режиме рисования", "Comment": "Комментарий", "Connors RSI_study": "Connors RSI", "Bars": "Бары", "Show Labels": "Отображать текстовые метки", "Flat Top/Bottom": "Плоский верх/низ", "Symbol Type": "Тип инструмента", "December": "Декабрь", "Lock drawings": "Зафиксировать элементы рисования", "Border color": "Цвет обводки", "Change Seconds From": "Заменить на секунды с", "Left Labels": "Текст слева", "Insert Indicator...": "Добавить индикатор...", "ADR_B_input": "ADR_B", "Paste %s": "Вставить %s", "Change Symbol...": "Сменить инструмент...", "Timezone": "Часовой пояс", "Color 6_input": "Color 6", "Oct": "Окт", "ATR Length": "Длина ATR", "{0} financials by TradingView": "Финансовые показатели {0} от TradingView", "Extend Lines Left": "Продолжить линии влево", "Feb": "Фев", "Transparency": "Прозрачность", "No": "Нет", "June": "Июнь", "Cyclic Lines": "Разделение циклов", "length28_input": "length28", "ABCD Pattern": "Шаблон ABCD", "When selecting this checkbox the study template will set \"__interval__\" interval on a chart": "Если эта опция включена, то шаблон индикаторов установит __interval__ интервал для графика", "Add": "ОК", "OC Bars": "ОткрЗакр бары", "Millennium": "Миллениум", "On Balance Volume_study": "Балансовый объем", "Apply Indicator on {0} ...": "Применить индикатор для {0} ...", "NEW": "новая", "Chart Layout Name": "Имя графика", "Up bars": "Восходящие бары", "Hull MA_input": "Hull MA", "Lock Scale": "Зафиксировать шкалу", "distance: {0}": "Расстояние: {0}", "Extended": "Прямая", "log": "лог", "NO": "Нет", "Top Margin": "Отступ сверху", "Up fractals_input": "Up fractals", "Insert Drawing Tool": "Добавить фигуру", "OHLC Values": "Значения ОТКР-МАКС-МИН-ЗАКР", "Correlation_input": "Correlation", "Session Breaks": "Границы сессий", "Add {0} To Watchlist": "Добавить {0} в Список котировок", "Anchored Note": "Заметка на экране", "lipsLength_input": "lipsLength", "low": "мин.", "Apply Indicator on {0}": "Применить индикатор для {0}", "UpDown Length_input": "UpDown Length", "November": "Ноябрь", "Tehran": "Тегеран", "Balloon": "Всплывающий текст", "Track time": "Отслеживать время", "Background Color": "Цвет заливки", "an hour": "один час", "Right Axis": "Правая шкала", "D_data_mode_delayed_streaming_letter": "D", "VI -_input": "VI -", "slowLength_input": "slowLength", "Click to set a point": "Кликните, чтобы установить точку", "Save Indicator Template As...": "Сохранить шаблон инд. как...", "Arrow Up": "Стрелка вверх", "n/a": "н/д", "Indicator Titles": "Названия индикаторов", "Failure text color": "Текст (неудача)", "Sa_day_of_week": "Сб", "Net Volume_study": "Чистый объём", "Error": "Ошибка", "Edit Position": "Редактировать позицию", "RVI_input": "RVI", "Centered_input": "Centered", "Recalculate On Every Tick": "Пересчитывать на каждом тике", "Left": "Слева", "Simple ma(oscillator)_input": "Simple ma(oscillator)", "Compare": "Сравнить", "Fisher Transform_study": "Fisher Transform", "Show Orders": "Показывать заявки", "Zoom In": "Увеличить масштаб", "Length EMA_input": "Length EMA", "Enter a new chart layout name": "Укажите новое имя графика", "Signal Length_input": "Signal Length", "FAILURE": "НЕУДАЧА", "Point Value": "Значение", "D_interval_short": "Д", "MA with EMA Cross_study": "MA with EMA Cross", "Price Channel_study": "Price Channel", "Close": "Цена закрытия", "ParabolicSAR_input": "ParabolicSAR", "Log Scale_scale_menu": "Логарифмическая шкала", "MACD_input": "MACD", "Do not show this message again": "Больше не показывать это сообщение", "{0} P&L: {1}": "{0} ПР/УБ: {1}", "No Overlapping Labels": "Не перекрывать метки", "Arrow Mark Left": "Стрелка влево", "Slow length_input": "Slow length", "Up Wave 4": "Восходящая волна 4", "(O + H + L + C)/4": "(ОТКР+МАКС+МИН+ЗАКР)/4", "Confirm Inputs": "Подтвердить инпуты", "Open_line_tool_position": "Открыта", "Lagging Span_input": "Lagging Span", "Subminuette": "Субминуэт", "Thursday": "Четверг", "Vancouver": "Ванкувер", "Triple EMA_study": "Скользящее среднее (тройное эксп.)", "Elliott Correction Wave (ABC)": "Коррекционная волна Эллиотта (ABC)", "Error while trying to create snapshot.": "Ошибка при попытке создания скриншота", "Label Background": "Заливка текстовой метки", "Templates": "Шаблоны", "Please report the issue or click Reconnect.": "Пожалуйста, сообщите о проблеме, или кликните Переподключиться.", "Normal": "Обычный", "Signal Labels": "Метки сигнала", "Delete Text Note": "Удалить заметку", "compiling...": "компилируется...", "Detrended Price Oscillator_study": "Detrended Price Oscillator", "Color 5_input": "Color 5", "Fixed Range_study": "Фиксированный диапазон", "Up Wave 1 or A": "Восходящая волна 1 или А", "Scale Price Chart Only": "Игнорировать шкалу индикаторов", "Unmerge Up": "Отсоединить наверх", "auto_scale": "авто", "Short period_input": "Short period", "Background": "Заливка", "Study Templates": "Шаблоны индикаторов", "Up Color": "Бар вверх", "Apply Elliot Wave Intermediate": "Применить промежуточную волну", "VWMA_input": "VWMA", "Lower Deviation_input": "Lower Deviation", "Save Interval": "Сохранить интервал", "February": "Февраль", "Reverse": "Переворот", "Oops, something went wrong": "Упс, что-то пошло не так", "Add to favorites": "Добавить в избранное", "Median": "Средняя линия", "ADX_input": "ADX", "Remove": "Удалить", "len_input": "len", "Arrow Mark Up": "Стрелка вверх", "April": "Апрель", "Active Symbol": "Инструмент", "Extended Hours": "Расширенная сессия", "Crosses_input": "Crosses", "Middle_input": "Middle", "Read our blog for more info!": "Прочтите наш блог, чтобы узнать больше!", "Sync drawing to all charts": "Синхронизировать инструмент рисования со всеми графиками", "LowerLimit_input": "LowerLimit", "Know Sure Thing_study": "Знать наверняка", "Copy Chart Layout": "Копировать график", "Compare...": "Сравнить...", "1. Slide your finger to select location for next anchor
    2. Tap anywhere to place the next anchor": "1. Определите точку, перетаскивая перекрестие пальцем.
    2. После этого, сделайте тап в произвольном месте, чтобы установить её.", "Text Notes are available only on chart page. Please open a chart and then try again.": "Заметки доступны только на странице графика. Откройте график и попробуйте еще раз.", "Color": "Цвет", "Aroon Up_input": "Арун вверх", "Apply Elliot Wave Major": "Применить Elliot Wave Major", "Scales Lines": "Линии шкал", "Type the interval number for munute charts (i.e. 5 if it is going to be a five minute chart). Or number plus letter for H (Hourly), D (Daily), W (Weekly), M (Monthly) intervals (i.e. D or 2H)": "Введите нужное число для минутных графиков (например, 5 если нужен 5-минутный график), или число и букву для соответствующих интервалов: H (часы), D (дни), W (недели), M (месяцы), например, D или 2H", "Ellipse": "Эллипс", "Up Wave C": "Восходящая волна С", "Show Distance": "Отображать расстояние", "Risk/Reward Ratio: {0}": "Соотношение риск/прибыль: {0}", "Restore Size": "Восстановить размер", "Honolulu": "Гонолулу", "Williams Fractal_study": "Williams Fractal", "Merge Up": "Присоединить вверх", "Right Margin": "Отступ справа", "Moscow": "Москва", "Warsaw": "Варшава"} \ No newline at end of file diff --git a/charting_library/static/localization/translations/sk_SK.json b/charting_library/static/localization/translations/sk_SK.json index 9862a8ed..e264d2f4 100644 --- a/charting_library/static/localization/translations/sk_SK.json +++ b/charting_library/static/localization/translations/sk_SK.json @@ -1 +1 @@ -{"Simple ma(oscillator)_input": "Simple ma(oscillator)", "ticks_slippage ... ticks": "ticks", "%d day": "%d days", "Months_interval": "Months", "Detrended Price Oscillator_input": "Detrended Price Oscillator", "maximum_input": "maximum", "Percent_input": "Percent", "D_data_mode_delayed_letter": "D", "smalen1_input": "smalen1", "month": "months", "roclen1_input": "roclen1", "Price_input": "Price", "Close_input": "Close", "Use Lower Deviation_input": "Use Lower Deviation", "Falling_input": "Falling", "McGinley Dynamic_study": "McGinley Dynamic", "Relative Volatility Index_study": "Relative Volatility Index", "in_dates": "in", "PVT_input": "PVT", "Conversion Line_input": "Conversion Line", "Hull Moving Average_study": "Hull Moving Average", "Su_day_of_week": "Su", "Up fractals_input": "Up fractals", "OSC_input": "OSC", "Divisor_input": "Divisor", "Volume_study": "Volume", "Lips_input": "Lips", "Window Size_input": "Window Size", "Zero_input": "Zero", "Base Line_input": "Base Line", "Double EMA_study": "Double EMA", "Signal smoothing_input": "Signal smoothing", "E_data_mode_end_of_day_letter": "E", "SMALen2_input": "SMALen2", "Bollinger Bands_study": "Bollinger Bands", "Long Length_input": "Long Length", "True Strength Indicator_study": "True Strength Indicator", "%R_input": "%R", "Upper_input": "Upper", "Stochastic RSI_study": "Stochastic RSI", "bars_margin": "bars", "Sigma_input": "Sigma", "Average True Range_study": "Average True Range", "Max value_input": "Max value", "MA Length_input": "MA Length", "Length1_input": "Length1", "SMALen1_input": "SMALen1", "UpperLimit_input": "UpperLimit", "H_in_legend": "H", "Short RoC Length_input": "Short RoC Length", "ROCLen3_input": "ROCLen3", "DI Length_input": "DI Length", "Parabolic SAR_study": "Parabolic SAR", "Sa_day_of_week": "Sa", "SMI_input": "SMI", "Lead 1_input": "Lead 1", "Basis_input": "Basis", "Moving Average_study": "Moving Average", "fastLength_input": "fastLength", "lengthStoch_input": "lengthStoch", "Color 7_input": "Color 7", "Chop Zone_study": "Chop Zone", "Signal_input": "Signal", "Jaw_input": "Jaw", "Jaw Length_input": "Jaw Length", "%d minute": "%d minutes", "like": "likes", "Coppock Curve_study": "Coppock Curve", "yay Color 0_input": "yay Color 0", "Oscillator_input": "Oscillator", "Chande Kroll Stop_study": "Chande Kroll Stop", "Hours_interval": "Hours", "StdDev_input": "StdDev", "Smoothed Moving Average_study": "Smoothed Moving Average", "Lower Band_input": "Lower Band", "VI +_input": "VI +", "Elder's Force Index_study": "Elder's Force Index", "Money Flow_study": "Money Flow", "DEMA_input": "DEMA", "ROCLen2_input": "ROCLen2", "Simple ma(signal line)_input": "Simple ma(signal line)", "longlen_input": "longlen", "Moving Average Exponential_study": "Moving Average Exponential", "Lower_input": "Lower", "Linear Regression Curve_study": "Linear Regression Curve", "Symbol_input": "Symbol", "s_dates": "s", "%d month": "%d months", "Upper Deviation_input": "Upper Deviation", "Upper Band_input": "Upper Band", "Chaikin Oscillator_study": "Chaikin Oscillator", "Chande MO_input": "Chande MO", "Balance of Power_study": "Balance of Power", "EOM_input": "EOM", "start_input": "start", "Centered_input": "Centered", "Bollinger Bands Width_input": "Bollinger Bands Width", "Signal Length_input": "Signal Length", "D_interval_short": "D", "Average Directional Index_study": "Average Directional Index", "Short length_input": "Short length", "smoothD_input": "smoothD", "Color 1_input": "Color 1", "Moving Average Weighted_study": "Moving Average Weighted", "Precise Labels_scale_menu": "Precise Labels", "ADX smoothing_input": "ADX smoothing", "Short period_input": "Short period", "smalen4_input": "smalen4", "RSI Source_input": "RSI Source", "%D_input": "%D", "signalLength_input": "signalLength", "Offset_input": "Offset", "HV_input": "HV", "Teeth_input": "Teeth", "Volume Oscillator_study": "Volume Oscillator", "h_interval_short": "h", "Ichimoku Cloud_study": "Ichimoku Cloud", "S_data_mode_snapshot_letter": "S", "jawLength_input": "jawLength", "Hull MA_input": "Hull MA", "ROC_input": "ROC", "SMALen4_input": "SMALen4", "Minutes_interval": "Minutes", "exponential_input": "exponential", "Mass Index_study": "Mass Index", "OnBalanceVolume_input": "OnBalanceVolume", "Smoothing_input": "Smoothing", "roclen2_input": "roclen2", "Color 3_input": "Color 3", "Chande Momentum Oscillator_study": "Chande Momentum Oscillator", "Fr_day_of_week": "Fr", "Bollinger Bands %B_input": "Bollinger Bands %B", "CCI_input": "CCI", "increment_input": "increment", "Keltner Channels_study": "Keltner Channels", "Lips Length_input": "Lips Length", "Use Upper Deviation_input": "Use Upper Deviation", "L_in_legend": "L", "We_day_of_week": "We", "Bands style_input": "Bands style", "shortlen_input": "shortlen", "Momentum_study": "Momentum", "ADX_input": "ADX", "MF_input": "MF", "day": "days", "short_input": "short", "NV_input": "NV", "Choppiness Index_study": "Choppiness Index", "Long length_input": "Long length", "Th_day_of_week": "Th", "Vortex Indicator_study": "Vortex Indicator", "MA_input": "MA", "Long_input": "Long", "W_interval_short": "W", "Multiplier_input": "Multiplier", "Directional Movement_study": "Directional Movement", "percent_input": "percent", "Equality Line_input": "Equality Line", "lengthRSI_input": "lengthRSI", "SMI Ergodic Oscillator_input": "SMI Ergodic Oscillator", "Accumulation/Distribution_input": "Accumulation/Distribution", "D_input": "D", "C_in_legend": "C", "Weeks_interval": "Weeks", "smoothK_input": "smoothK", "Percentage_scale_menu": "Percentage", "Down fractals_input": "Down fractals", "MOM_input": "MOM", "P_input": "P", "Source_compare": "Source", "smalen2_input": "smalen2", "Ease Of Movement_study": "Ease Of Movement", "Color 6_input": "Color 6", "C_data_mode_connecting_letter": "C", "Klinger Oscillator_study": "Klinger Oscillator", "Exponential_input": "Exponential", "TRIX_input": "TRIX", "SMI Ergodic Indicator/Oscillator_study": "SMI Ergodic Indicator/Oscillator", "Chaikin Oscillator_input": "Chaikin Oscillator", "Bollinger Bands %B_study": "Bollinger Bands %B", "Correlation_input": "Correlation", "yay Color 1_input": "yay Color 1", "length28_input": "length28", "Periods_input": "Periods", "CHOP_input": "CHOP", "Middle_input": "Middle", "TRIX_study": "TRIX", "WMA Length_input": "WMA Length", "Growing_input": "Growing", "Color 0_input": "Color 0", "On Balance Volume_study": "On Balance Volume", "RVGI_input": "RVGI", "Histogram_input": "Histogram", "Count_input": "Count", "Stochastic Length_input": "Stochastic Length", "Closed_line_tool_position": "Closed", "sym_input": "sym", "Relative Strength Index_study": "Relative Strength Index", "d_dates": "d", "in %s_time_range": "in %s", "Start_input": "Start", "%s ago_time_range": "%s ago", "mult_input": "mult", "-DI_input": "-DI", "Length2_input": "Length2", "Donchian Channels_study": "Donchian Channels", "Correlation Coefficient_study": "Correlation Coefficient", "Least Squares Moving Average_study": "Least Squares Moving Average", "depth_input": "depth", "Mo_day_of_week": "Mo", "lipsLength_input": "lipsLength", "Short Length_input": "Short Length", "teethLength_input": "teethLength", "roclen4_input": "roclen4", "length7_input": "length7", "Source_input": "Source", "%K_input": "%K", "Log Scale_scale_menu": "Log Scale", "Zig Zag_study": "Zig Zag", "D_data_mode_delayed_streaming_letter": "D", "VI -_input": "VI -", "slowLength_input": "slowLength", "Long period_input": "Long period", "length_input": "length", "ADX Smoothing_input": "ADX Smoothing", "Price Oscillator_study": "Price Oscillator", "minute": "minutes", "Detrended Price Oscillator_study": "Detrended Price Oscillator", "Median_input": "Median", "MA Cross_study": "MA Cross", "RSI Length_input": "RSI Length", "Signal line period_input": "Signal line period", "RVI_input": "RVI", "Base Line Periods_input": "Base Line Periods", "Awesome Oscillator_study": "Awesome Oscillator", "Slow length_input": "Slow length", "Conversion Line Periods_input": "Conversion Line Periods", "Price Volume Trend_study": "Price Volume Trend", "smalen3_input": "smalen3", "Fisher Transform_study": "Fisher Transform", "Stochastic_study": "Stochastic", "ATR_input": "ATR", "hour": "hours", "TEMA_input": "TEMA", "siglen_input": "siglen", "F_data_mode_forbidden_letter": "F", "second": "seconds", "MACD_input": "MACD", "q_input": "q", "Zero Line_input": "Zero Line", "Teeth Length_input": "Teeth Length", "Long RoC Length_input": "Long RoC Length", "Length3_input": "Length3", "+DI_input": "+DI", "Length_input": "Length", "Fast length_input": "Fast length", "ParabolicSAR_input": "ParabolicSAR", "Sig_input": "Sig", "Short_input": "Short", "Ultimate Oscillator_study": "Ultimate Oscillator", "MACD_study": "MACD", "Lagging Span 2 Periods_input": "Lagging Span 2 Periods", "Indicator_input": "Indicator", "Plot_input": "Plot", "Color 8_input": "Color 8", "Open_line_tool_position": "Open", "Lagging Span_input": "Lagging Span", "Q_input": "Q", "roclen3_input": "roclen3", "Envelope_study": "Envelope", "Overbought_input": "Overbought", "DPO_input": "DPO", "UO_input": "UO", "Triple EMA_study": "Triple EMA", "Level_input": "Level", "Relative Vigor Index_study": "Relative Vigor Index", "Arnaud Legoux Moving Average_study": "Arnaud Legoux Moving Average", "show MA_input": "show MA", "Commodity Channel Index_study": "Commodity Channel Index", "O_in_legend": "O", "Elder's Force Index_input": "Elder's Force Index", "Color 4_input": "Color 4", "Period_input": "Period", "Trigger_input": "Trigger", "SigLen_input": "SigLen", "Color 2_input": "Color 2", "Color 5_input": "Color 5", "useTrueRange_input": "useTrueRange", "SMALen3_input": "SMALen3", "auto_scale": "auto", "%d year": "%d years", "Aroon_study": "Aroon", "Tu_day_of_week": "Tu", "VWMA_input": "VWMA", "h_dates": "h", "deviation_input": "deviation", "week": "weeks", "long_input": "long", "VWMA_study": "VWMA", "ADR_B_input": "ADR_B", "Lower Deviation_input": "Lower Deviation", "%d hour": "%d hours", "Cross_chart_type": "Cross", "Displacement_input": "Displacement", "Shapes_input": "Shapes", "Fisher_input": "Fisher", "len_input": "len", "ROCLen1_input": "ROCLen1", "Chaikin Money Flow_study": "Chaikin Money Flow", "M_interval_short": "M", "x_input": "x", "p_input": "p", "isCentered_input": "isCentered", "Crosses_input": "Crosses", "KST_input": "KST", "Oversold_input": "Oversold", "Williams %R_study": "Williams %R", "LowerLimit_input": "LowerLimit", "RSI_input": "RSI", "Know Sure Thing_study": "Know Sure Thing", "Historical Volatility_study": "Historical Volatility", "Increment_input": "Increment", "Days_interval": "Days", "Net Volume_study": "Net Volume", "m_dates": "m", "Aroon Up_input": "Aroon Up", "orders_up to ... orders": "orders", "length14_input": "length14", "Lead 2_input": "Lead 2", "X_input": "X", "Accumulation/Distribution_study": "Accumulation/Distribution", "Bollinger Bands Width_study": "Bollinger Bands Width", "Williams Alligator_study": "Williams Alligator", "ROCLen4_input": "ROCLen4", "Aroon Down_input": "Aroon Down", "Williams Fractal_study": "Williams Fractal", "R_data_mode_realtime_letter": "R", "Advance/Decline_study": "Advance/Decline", "K_input": "K", "Rate Of Change_study": "Rate Of Change"} \ No newline at end of file +{"ticks_slippage ... ticks": "ticks", "Months_interval": "Months", "Percent_input": "Percent", "in_dates": "in", "roclen1_input": "roclen1", "OSC_input": "OSC", "Volume_study": "Volume", "Lips_input": "Lips", "Base Line_input": "Base Line", "SMALen2_input": "SMALen2", "Bollinger Bands_study": "Bollinger Bands", "Upper_input": "Upper", "Sig_input": "Sig", "Count_input": "Count", "OnBalanceVolume_input": "OnBalanceVolume", "Cross_chart_type": "Cross", "H_in_legend": "H", "R_data_mode_replay_letter": "R", "Accumulation/Distribution_study": "Accumulation/Distribution", "Rate Of Change_study": "Rate Of Change", "Color 7_input": "Color 7", "Chop Zone_study": "Chop Zone", "Oscillator_input": "Oscillator", "yay Color 0_input": "yay Color 0", "CRSI_study": "CRSI", "Chande Kroll Stop_study": "Chande Kroll Stop", "Hours_interval": "Hours", "Money Flow_study": "Money Flow", "DEMA_input": "DEMA", "Linear Regression Curve_study": "Linear Regression Curve", "Symbol_input": "Symbol", "increment_input": "increment", "smoothD_input": "smoothD", "RSI Source_input": "RSI Source", "Ichimoku Cloud_study": "Ichimoku Cloud", "Mass Index_study": "Mass Index", "Smoothing_input": "Smoothing", "Color 3_input": "Color 3", "Jaw Length_input": "Jaw Length", "Keltner Channels_study": "Keltner Channels", "Bands style_input": "Bands style", "Momentum_study": "Momentum", "MF_input": "MF", "Fast length_input": "Fast length", "W_interval_short": "W", "Equality Line_input": "Equality Line", "Short_input": "Short", "Down fractals_input": "Down fractals", "smalen2_input": "smalen2", "isCentered_input": "isCentered", "Klinger Oscillator_study": "Klinger Oscillator", "SMI Ergodic Indicator/Oscillator_study": "SMI Ergodic Indicator/Oscillator", "No Overlapping Labels_scale_menu": "No Overlapping Labels", "Chande MO_input": "Chande MO", "jawLength_input": "jawLength", "TRIX_study": "TRIX", "RVGI_input": "RVGI", "signalLength_input": "signalLength", "d_dates": "d", "Source_compare": "Source", "Correlation Coefficient_study": "Correlation Coefficient", "lipsLength_input": "lipsLength", "Short Length_input": "Short Length", "teethLength_input": "teethLength", "Visible Range_study": "Visible Range", "Connors RSI_study": "Connors RSI", "MA Cross_study": "MA Cross", "Signal line period_input": "Signal line period", "Price Volume Trend_study": "Price Volume Trend", "F_data_mode_forbidden_letter": "F", "Long RoC Length_input": "Long RoC Length", "Length3_input": "Length3", "+DI_input": "+DI", "MACD_study": "MACD", "%s ago_time_range": "%s ago", "Level_input": "Level", "Commodity Channel Index_study": "Commodity Channel Index", "Elder's Force Index_input": "Elder's Force Index", "Aroon_study": "Aroon", "h_dates": "h", "SMALen1_input": "SMALen1", "P_input": "P", "SMALen3_input": "SMALen3", "Average Directional Index_study": "Average Directional Index", "Fr_day_of_week": "Fr", "D_input": "D", "p_input": "p", "orders_up to ... orders": "orders", "Dot_hotkey": "Dot", "Lead 2_input": "Lead 2", "Vortex Indicator_study": "Vortex Indicator", "Plots Background_study": "Plots Background", "Price Channel_study": "Price Channel", "R_data_mode_realtime_letter": "R", "Conversion Line_input": "Conversion Line", "Su_day_of_week": "Su", "Up fractals_input": "Up fractals", "Double EMA_study": "Double EMA", "Price Oscillator_study": "Price Oscillator", "Th_day_of_week": "Th", "Average True Range_study": "Average True Range", "Max value_input": "Max value", "MA Length_input": "MA Length", "in %s_time_range": "in %s", "UpperLimit_input": "UpperLimit", "sym_input": "sym", "DI Length_input": "DI Length", "SMI_input": "SMI", "Basis_input": "Basis", "Moving Average_study": "Moving Average", "lengthStoch_input": "lengthStoch", "Smoothed Moving Average_study": "Smoothed Moving Average", "Lower Band_input": "Lower Band", "VI +_input": "VI +", "Lead 1_input": "Lead 1", "ROCLen2_input": "ROCLen2", "Simple ma(signal line)_input": "Simple ma(signal line)", "Color 6_input": "Color 6", "Value_input": "Value", "Chaikin Oscillator_study": "Chaikin Oscillator", "ASI_study": "ASI", "Awesome Oscillator_study": "Awesome Oscillator", "Bollinger Bands Width_input": "Bollinger Bands Width", "Signal Length_input": "Signal Length", "D_interval_short": "D", "Color 1_input": "Color 1", "Moving Average Weighted_study": "Moving Average Weighted", "Short period_input": "Short period", "Fisher_input": "Fisher", "Volume Oscillator_study": "Volume Oscillator", "S_data_mode_snapshot_letter": "S", "smalen4_input": "smalen4", "CCI_input": "CCI", "Upper Deviation_input": "Upper Deviation", "Accumulative Swing Index_study": "Accumulative Swing Index", "Move_input": "Move", "NV_input": "NV", "Choppiness Index_study": "Choppiness Index", "Length MA_input": "Length MA", "percent_input": "percent", "Length_input": "Length", "Accumulation/Distribution_input": "Accumulation/Distribution", "C_in_legend": "C", "Weeks_interval": "Weeks", "smoothK_input": "smoothK", "Percentage_scale_menu": "Percentage", "MOM_input": "MOM", "h_interval_short": "h", "TRIX_input": "TRIX", "Periods_input": "Periods", "Histogram_input": "Histogram", "StdDev_input": "StdDev", "EMA Cross_study": "EMA Cross", "Relative Strength Index_study": "Relative Strength Index", "-DI_input": "-DI", "short_input": "short", "RSI_input": "RSI", "Zig Zag_study": "Zig Zag", "Detrended Price Oscillator_input": "Detrended Price Oscillator", "length_input": "length", "roclen4_input": "roclen4", "Add Symbol_compare_or_add_symbol_dialog": "Add Symbol", "Slow length_input": "Slow length", "Conversion Line Periods_input": "Conversion Line Periods", "TEMA_input": "TEMA", "q_input": "q", "Advance/Decline_study": "Advance/Decline", "Ultimate Oscillator_study": "Ultimate Oscillator", "Growing_input": "Growing", "Plot_input": "Plot", "Color 8_input": "Color 8", "Bollinger Bands Width_study": "Bollinger Bands Width", "roclen3_input": "roclen3", "Overbought_input": "Overbought", "DPO_input": "DPO", "Relative Vigor Index_study": "Relative Vigor Index", "Tu_day_of_week": "Tu", "Period_input": "Period", "Trigger_input": "Trigger", "SigLen_input": "SigLen", "Color 2_input": "Color 2", "MA/EMA Cross_study": "MA/EMA Cross", "Williams Alligator_study": "Williams Alligator", "ROCLen1_input": "ROCLen1", "M_interval_short": "M", "Chaikin Oscillator_input": "Chaikin Oscillator", "Zero Line_input": "Zero Line", "Increment_input": "Increment", "Days_interval": "Days", "Net Volume_study": "Net Volume", "m_dates": "m", "length14_input": "length14", "Color 0_input": "Color 0", "maximum_input": "maximum", "D_data_mode_delayed_letter": "D", "Sigma_input": "Sigma", "fastLength_input": "fastLength", "Historical Volatility_study": "Historical Volatility", "Use Lower Deviation_input": "Use Lower Deviation", "Falling_input": "Falling", "Divisor_input": "Divisor", "length7_input": "length7", "Window Size_input": "Window Size", "Long Length_input": "Long Length", "%R_input": "%R", "bars_margin": "bars", "Simple ma(oscillator)_input": "Simple ma(oscillator)", "Length1_input": "Length1", "x_input": "x", "Parabolic SAR_study": "Parabolic SAR", "UO_input": "UO", "Short RoC Length_input": "Short RoC Length", "Jaw_input": "Jaw", "Coppock Curve_study": "Coppock Curve", "longlen_input": "longlen", "Moving Average Exponential_study": "Moving Average Exponential", "s_dates": "s", "Balance of Power_study": "Balance of Power", "EOM_input": "EOM", "%D_input": "%D", "Offset_input": "Offset", "HV_input": "HV", "Start_input": "Start", "ROC_input": "ROC", "Color 4_input": "Color 4", "ADX Smoothing_input": "ADX Smoothing", "We_day_of_week": "We", "MA_input": "MA", "Length2_input": "Length2", "Multiplier_input": "Multiplier", "Session Volume_study": "Session Volume", "SMI Ergodic Oscillator_input": "SMI Ergodic Oscillator", "C_data_mode_connecting_letter": "C", "SMALen4_input": "SMALen4", "yay Color 1_input": "yay Color 1", "CHOP_input": "CHOP", "Middle_input": "Middle", "WMA Length_input": "WMA Length", "Stochastic_study": "Stochastic", "Closed_line_tool_position": "Closed", "On Balance Volume_study": "On Balance Volume", "Source_input": "Source", "%K_input": "%K", "Log Scale_scale_menu": "Log Scale", "len_input": "len", "RSI Length_input": "RSI Length", "Long length_input": "Long length", "Base Line Periods_input": "Base Line Periods", "siglen_input": "siglen", "Slash_hotkey": "Slash", "lengthRSI_input": "lengthRSI", "Indicator_input": "Indicator", "Q_input": "Q", "Envelope_study": "Envelope", "show MA_input": "show MA", "O_in_legend": "O", "useTrueRange_input": "useTrueRange", "Minutes_interval": "Minutes", "deviation_input": "deviation", "long_input": "long", "VWMA_study": "VWMA", "Displacement_input": "Displacement", "Chaikin Money Flow_study": "Chaikin Money Flow", "Ease Of Movement_study": "Ease Of Movement", "Oversold_input": "Oversold", "Williams %R_study": "Williams %R", "depth_input": "depth", "VWAP_study": "VWAP", "Long period_input": "Long period", "Mo_day_of_week": "Mo", "ROC Length_input": "ROC Length", "X_input": "X", "ROCLen4_input": "ROCLen4", "Aroon Down_input": "Aroon Down", "Limit_input": "Limit", "smalen1_input": "smalen1", "Color based on previous close_input": "Color based on previous close", "Price_input": "Price", "Relative Volatility Index_study": "Relative Volatility Index", "PVT_input": "PVT", "Hull Moving Average_study": "Hull Moving Average", "Zero_input": "Zero", "Stochastic Length_input": "Stochastic Length", "mult_input": "mult", "Signal smoothing_input": "Signal smoothing", "E_data_mode_end_of_day_letter": "E", "Stochastic RSI_study": "Stochastic RSI", "K_input": "K", "ROCLen3_input": "ROCLen3", "Signal_input": "Signal", "Moving Average Channel_study": "Moving Average Channel", "Lower_input": "Lower", "Elder's Force Index_study": "Elder's Force Index", "Bollinger Bands %B_study": "Bollinger Bands %B", "Donchian Channels_study": "Donchian Channels", "Upper Band_input": "Upper Band", "start_input": "start", "Short length_input": "Short length", "Triple EMA_study": "Triple EMA", "Lagging Span 2 Periods_input": "Lagging Span 2 Periods", "Teeth_input": "Teeth", "exponential_input": "exponential", "Directional Movement_study": "Directional Movement", "roclen2_input": "roclen2", "Chande Momentum Oscillator_study": "Chande Momentum Oscillator", "Bollinger Bands %B_input": "Bollinger Bands %B", "Lips Length_input": "Lips Length", "Use Upper Deviation_input": "Use Upper Deviation", "L_in_legend": "L", "shortlen_input": "shortlen", "Exponential_input": "Exponential", "Long_input": "Long", "ADR_B_input": "ADR_B", "length28_input": "length28", "Arnaud Legoux Moving Average_study": "Arnaud Legoux Moving Average", "Least Squares Moving Average_study": "Least Squares Moving Average", "Hull MA_input": "Hull MA", "Median_input": "Median", "Correlation_input": "Correlation", "UpDown Length_input": "UpDown Length", "D_data_mode_delayed_streaming_letter": "D", "VI -_input": "VI -", "slowLength_input": "slowLength", "Sa_day_of_week": "Sa", "RVI_input": "RVI", "Centered_input": "Centered", "True Strength Indicator_study": "True Strength Indicator", "smalen3_input": "smalen3", "Fisher Transform_study": "Fisher Transform", "Length EMA_input": "Length EMA", "Teeth Length_input": "Teeth Length", "MA with EMA Cross_study": "MA with EMA Cross", "ParabolicSAR_input": "ParabolicSAR", "MACD_input": "MACD", "Open_line_tool_position": "Open", "Lagging Span_input": "Lagging Span", "ADX smoothing_input": "ADX smoothing", "Detrended Price Oscillator_study": "Detrended Price Oscillator", "Color 5_input": "Color 5", "McGinley Dynamic_study": "McGinley Dynamic", "auto_scale": "auto", "VWMA_input": "VWMA", "Lower Deviation_input": "Lower Deviation", "ATR_input": "ATR", "Shapes_input": "Shapes", "ADX_input": "ADX", "Crosses_input": "Crosses", "KST_input": "KST", "LowerLimit_input": "LowerLimit", "Know Sure Thing_study": "Know Sure Thing", "Aroon Up_input": "Aroon Up", "Fixed Range_study": "Fixed Range", "Williams Fractal_study": "Williams Fractal"} \ No newline at end of file diff --git a/charting_library/static/localization/translations/sv.json b/charting_library/static/localization/translations/sv.json index 5f83107f..ca1ec0cf 100644 --- a/charting_library/static/localization/translations/sv.json +++ b/charting_library/static/localization/translations/sv.json @@ -1 +1 @@ -{"ticks_slippage ... ticks": "ticks", "Months_interval": "Months", "Percent_input": "パーセント", "Add To Text Notes": "Lägg till bland anteckningar", "month": "månad", "roclen1_input": "roclen1", "OSC_input": "OSC", "Volume_study": "Volume", "Lips_input": "Lips", "Base Line_input": "Base Line", "SMALen2_input": "SMALen2", "Bollinger Bands_study": "Bollinger Bands", "Upper_input": "Upper", "Sig_input": "Sig", "Count_input": "Count", "Industry": "Bransch", "SMALen1_input": "SMALen1", "Cross_chart_type": "Cross", "H_in_legend": "H", "Accumulation/Distribution_study": "Accumulation/Distribution", "Rate Of Change_study": "Rate Of Change", "in_dates": "in", "Color 7_input": "カラー7", "Chop Zone_study": "Chop Zone", "Oscillator_input": "オシレーター", "yay Color 0_input": "yay Color 0", "Chande Kroll Stop_study": "Chande Kroll Stop", "Hours_interval": "Hours", "Bollinger Bands %B_input": "ボリンジャーバンド%B", "DEMA_input": "DEMA", "Linear Regression Curve_study": "Linear Regression Curve", "Symbol_input": "シンボル", "increment_input": "increment", "Allow up to": "Tillåt upp till", "Contracts": "Kontrakt", "second": "sekund", "Any Number": "Godtycklig siffra", "smoothD_input": "smoothD", "Circle": "Cirkel", "RSI Source_input": "RSI Source", "Ichimoku Cloud_study": "Ichimoku Cloud", "jawLength_input": "jawLength", "Grid": "Rutnät", "Mass Index_study": "Mass Index", "Smoothing_input": "Smoothing", "Color 3_input": "カラー3", "Jaw Length_input": "Jaw Length", "Keltner Channels_study": "Keltner Channels", "Bands style_input": "バンドスタイル", "Momentum_study": "Momentum", "MF_input": "MF", "Long length_input": "Long length", "W_interval_short": "W", "Equality Line_input": "Equality Line", "Short_input": "Short", "Down fractals_input": "Down fractals", "like_plural": "gilla-markeringar", "smalen2_input": "smalen2", "isCentered_input": "isCentered", "Border": "Kant", "Klinger Oscillator_study": "Klinger Oscillator", "Absolute": "Absolut", "SMI Ergodic Indicator/Oscillator_study": "SMI Ergodic Indicator/Oscillator", "Chande MO_input": "Chande MO", "Copy link": "Kopiera länk", "TRIX_study": "TRIX", "RVGI_input": "RVGI", "signalLength_input": "signalLength", "d_dates": "d", "August": "Augusti", "Source_compare": "Source", "June": "Juni", "Delayed": "Försenad", "lipsLength_input": "lipsLength", "Short Length_input": "Short Length", "teethLength_input": "teethLength", "October": "Oktober", "MA Cross_study": "MA Cross", "Signal line period_input": "Signal line period", "Line Break": "Radbrytning", "Price Volume Trend_study": "Price Volume Trend", "hour": "timme", "F_data_mode_forbidden_letter": "F", "Long RoC Length_input": "Long RoC Length", "Length3_input": "長さ3", "+DI_input": "+DI", "MACD_study": "MACD", "%s ago_time_range": "%s ago", "Level_input": "レベル", "Commodity Channel Index_study": "Commodity Channel Index", "Elder's Force Index_input": "Elder's Force Index", "Currency": "Valuta", "Fundamentals": "Fundamentalt", "Adjust Scale": "Justera skala", "Aroon_study": "Aroon", "Active Symbol": "Aktiv symbol", "Lead 1_input": "Lead 1", "Change Interval...": "Ändra intervall...", "SMALen3_input": "SMALen3", "Average Directional Index_study": "Average Directional Index", "Fr_day_of_week": "Fr", "Curve": "Kurva", "D_input": "D", "Change Interval": "Ändra intervall", "p_input": "p", "Dot": "Punkt", "All": "Alla", "orders_up to ... orders": "orders", "Lead 2_input": "Lead 2", "Vortex Indicator_study": "Vortex Indicator", "Apply": "Verkställ", "%d day": "%d dag", "Hide": "Dölj", "Bottom": "Botten", "Down Wave C": "Ned våg C", "R_data_mode_realtime_letter": "R", "Conversion Line_input": "Conversion Line", "March": "Mars", "Su_day_of_week": "Su", "Up fractals_input": "Up fractals", "Double EMA_study": "Double EMA", "minute": "minut", "Price Oscillator_study": "Price Oscillator", "Th_day_of_week": "Th", "Minutes_interval": "Minutes", "Average True Range_study": "Average True Range", "Max value_input": "Max value", "MA Length_input": "MA Length", "in %s_time_range": "in %s", "UpperLimit_input": "UpperLimit", "sym_input": "sym", "DI Length_input": "DI Length", "SMI_input": "SMI", "Arrow": "Pil", "Basis_input": "Basis", "Moving Average_study": "Moving Average", "lengthStoch_input": "lengthStoch", "Created ": "Skapad ", "Arnaud Legoux Moving Average_study": "Arnaud Legoux Moving Average", "Technical Analysis": "Teknisk analys", "Lower Band_input": "ローワーバンド", "VI +_input": "VI +", "Always Show Stats": "Visa alltid statistik", "Down Wave 4": "Ned våg 4", "Down Wave 5": "Ned våg 5", "Simple ma(signal line)_input": "Simple ma(signal line)", " Do you really want to delete Drawing Template '{0}' ?": " Vill du verkligen ta bort ritmall '{0}'?", "Color 6_input": "カラー6", "long_input": "long", "Chaikin Oscillator_study": "Chaikin Oscillator", "Balloon": "Ballong", "Color Theme": "Färgtema", "Centered_input": "Centered", "Bollinger Bands Width_input": "Bollinger Bands Width", "Signal Length_input": "Signal Length", "D_interval_short": "D", "Color 1_input": "カラー1", "Moving Average Weighted_study": "Moving Average Weighted", "Save": "Spara", "Type": "Typ", "Short period_input": "Short period", "Fisher_input": "Fisher", "minute_plural": "minuter", "Volume Oscillator_study": "Volume Oscillator", "Always Visible": "Alltid synlig", "S_data_mode_snapshot_letter": "S", "Change Minutes To": "Ändra minuter till", "Do not ask again": "Fråga inte igen", "Drawing Tools": "Ritverktyg", "smalen4_input": "smalen4", "CCI_input": "CCI", "Upper Deviation_input": "上偏差", "NV_input": "NV", "Choppiness Index_study": "Choppiness Index", " per contract": " per kontrakt", "Delete": "Ta bort", "percent_input": "percent", "Length_input": "長さ", "Median_input": "Median", "Accumulation/Distribution_input": "アキューミレーション/ ディストリビューション", "C_in_legend": "C", "Weeks_interval": "Weeks", "smoothK_input": "smoothK", "Percentage_scale_menu": "Percentage", "MOM_input": "MOM", "h_interval_short": "h", "TRIX_input": "TRIX", "Periods_input": "Periods", "hour_plural": "timmar", "Connecting": "Ansluter", "Histogram_input": "Histogram", "StdDev_input": "StdDev", "Change Minutes From": "Ändra minuter från", "Conversion Line Periods_input": "Conversion Line Periods", "-DI_input": "-DI", "short_input": "short", "Date": "Datum", "Search": "Sök", "Zig Zag_study": "Zig Zag", "Actual": "Egentligt värde", "Long period_input": "Long period", "length_input": "length", "Above Bar": "Över candlestick", "Slow length_input": "Slow length", "Sector": "Sektor", "TEMA_input": "TEMA", "Directional Movement_study": "Directional Movement", "q_input": "q", "Advance/Decline_study": "Advance/Decline", "Fast length_input": "Fast length", "Cancel": "Avbryt", "Ultimate Oscillator_study": "Ultimate Oscillator", "Growing_input": "Growing", "Angle": "Vinkel", "%d year_plural": "%d år", "Plot_input": "Plot", "Color 8_input": "カラー8", "h_dates": "h", "Bollinger Bands Width_study": "Bollinger Bands Width", "roclen3_input": "roclen3", "Overbought_input": "買われすぎ", "DPO_input": "DPO", "Relative Vigor Index_study": "Relative Vigor Index", "Tu_day_of_week": "Tu", "Period_input": "Period", "Trigger_input": "Trigger", "SigLen_input": "SigLen", "Price": "Pris", "Color 2_input": "カラー2", "Edit Order": "Redigera order", "Circles": "Cirklar", "Williams Alligator_study": "Williams Alligator", "ROCLen1_input": "ROCLen1", "M_interval_short": "M", "Change Symbol...": "Ändra tickersymbol...", "Zero Line_input": "Zero Line", "Increment_input": "Increment", "Days_interval": "Days", "Net Volume_study": "Net Volume", "m_dates": "m", "length14_input": "length14", "High": "Högsta", "Add to favorites": "Lägg till som favorit", "Color 0_input": "カラー0", "maximum_input": "maximum", "D_data_mode_delayed_letter": "D", "Sigma_input": "Sigma", "Coordinates": "Koordinater", "fastLength_input": "fastLength", "Width": "Bredd", "Historical Volatility_study": "Historical Volatility", "Use Lower Deviation_input": "Use Lower Deviation", "Falling_input": "Falling", "Divisor_input": "Divisor", "Down Wave 1 or A": "Ned våg 1 eller A", "length7_input": "length7", "Window Size_input": "Window Size", "Long Length_input": "Long Length", "%R_input": "%R", "Chart Properties": "Diagramegenskaper", "bars_margin": "bars", "Simple ma(oscillator)_input": "Simple ma(oscillator)", "Length1_input": "長さ1", "Always Invisible": "Alltid osynlig", "Days": "Dagar", "x_input": "x", "Parabolic SAR_study": "Parabolic SAR", "UO_input": "UO", "Short RoC Length_input": "Short RoC Length", "Jaw_input": "Jaw", "Coppock Curve_study": "Coppock Curve", "longlen_input": "longlen", "Moving Average Exponential_study": "Moving Average Exponential", "s_dates": "s", "Balance of Power_study": "Balance of Power", "EOM_input": "EOM", "Indicators": "Indikatorer", "%D_input": "%D", "Offset_input": "Offset", "HV_input": "HV", "Start_input": "Start", "ROC_input": "ROC", "Color 4_input": "カラー4", "Angles": "Vinklar", "Hollow Candles": "Ihåliga candlesticks", "July": "Juli", "ADX Smoothing_input": "ADX Smoothing", "Settings": "Inställningar", "Candles": "Candlesticks", "We_day_of_week": "We", "%d minute": "%d minut", "week_plural": "veckor", "MA_input": "MA", "Detrended Price Oscillator_study": "Detrended Price Oscillator", "Multiplier_input": "Multiplier", "SMI Ergodic Oscillator_input": "SMI Ergodic Oscillator", "Add Symbol": "Lägg till symbol", "C_data_mode_connecting_letter": "C", "SMALen4_input": "SMALen4", "yay Color 1_input": "yay Color 1", "CHOP_input": "CHOP", "WMA Length_input": "WMA Length", "Low": "Lägsta", "month_plural": "månader", "Events": "Evenemang", "Columns": "Kolumner", "Change Resolution": "Ändra upplösning", "%d minute_plural": "%d minuter", "Degree": "Grad", "On Balance Volume_study": "On Balance Volume", "Source_input": "Source", "Change Seconds To": "Ändra sekunder till", "%K_input": "%K", "Log Scale_scale_menu": "Log Scale", "Length2_input": "長さ2", "RSI Length_input": "RSI Length", "Base Line Periods_input": "Base Line Periods", "Relative Strength Index_study": "Relative Strength Index", "%d day_plural": "%d dagar", "siglen_input": "siglen", "lengthRSI_input": "lengthRSI", "Indicator_input": "Indicator", "Athens": "Aten", "Q_input": "Q", "Content": "Innehåll", "Down Wave 2 or B": "Ned våg2 eller B", "Line": "Rad", "Envelope_study": "Envelope", "show MA_input": "show MA", "O_in_legend": "O", "Add Alert": "Lägg till alarm", "useTrueRange_input": "useTrueRange", "%d year": "%d år", "Copy": "Kopierad", "day": "dag", "deviation_input": "偏差", "week": "vecka", "Base currency": "Basvaluta", "VWMA_study": "VWMA", "%d hour": "%d timme", "Displacement_input": "Displacement", "ADR_B_input": "ADR_B", "Chaikin Money Flow_study": "Chaikin Money Flow", "Ease Of Movement_study": "Ease Of Movement", "Oversold_input": "売られすぎ", "Williams %R_study": "Williams %R", "depth_input": "depth", "RSI_input": "RSI", "Detrended Price Oscillator_input": "Detrended Price Oscillator", "Mo_day_of_week": "Mo", "X_input": "X", "ROCLen4_input": "ROCLen4", "Aroon Down_input": "アルーン・ダウン", "Add To Watchlist": "Lägg till i watchlist", "Total": "Totalt", "Clone": "Klona", "Change Days To": "Ändra dagar till", "smalen1_input": "smalen1", "KST_input": "KST", "Price_input": "Price", "Close_input": "Close", "Relative Volatility Index_study": "Relative Volatility Index", "PVT_input": "PVT", "Hull Moving Average_study": "Hull Moving Average", "Zero_input": "ゼロ", "Stochastic Length_input": "Stochastic Length", "mult_input": "mult", "Signal smoothing_input": "Signal smoothing", "E_data_mode_end_of_day_letter": "E", "Double Curve": "Dubbel kurva", "Stochastic RSI_study": "Stochastic RSI", "Error:": "Fel:", "Add Text Note For {0}": "Lägg till anteckning för {0}", "K_input": "K", "ROCLen3_input": "ROCLen3", "New Zealand": "Nya Zeeland", "Signal_input": "Signal", "like": "gilla-markering", "Show": "Visa", "Exchange": "Börs", "Lower_input": "低", "Arc": "Båge", "Elder's Force Index_study": "Elder's Force Index", "%d month_plural": "%d månader", "Stochastic_study": "Stochastic", "Bollinger Bands %B_study": "Bollinger Bands %B", "%d month": "%d månad", "Donchian Channels_study": "Donchian Channels", "Upper Band_input": "アッパーバンド", "start_input": "スタート", "Short length_input": "Short length", "Triple EMA_study": "Triple EMA", "Precise Labels_scale_menu": "Precise Labels", "Smoothed Moving Average_study": "Smoothed Moving Average", "Channel": "Trendkanal", "Lagging Span 2 Periods_input": "Lagging Span 2 Periods", "day_plural": "dagar", "Teeth_input": "Teeth", "Closed_line_tool_position": "Closed", "exponential_input": "exponential", "%d hour_plural": "%d timmar", "OnBalanceVolume_input": "オンバランスボリューム", "roclen2_input": "roclen2", "Chande Momentum Oscillator_study": "Chande Momentum Oscillator", "Money Flow_study": "Money Flow", "Change Hours To": "Ändra timmar till", "Lips Length_input": "Lips Length", "Use Upper Deviation_input": "Use Upper Deviation", "L_in_legend": "L", "shortlen_input": "shortlen", "Copied to clipboard": "Koppierad till klippbricka", "Bar's Style": "Diagramtyp", "Exponential_input": "Exponential", "ROCLen2_input": "ROCLen2", "Comment": "Kommentera", "Long_input": "Long", "Bars": "Candlesticks", "Change Seconds From": "Ändra sekunder från", "P_input": "P", "Timezone": "Tidszon", "Down Wave 3": "Ned våg 3", "ATR Length": "Längd för ATR", "Chaikin Oscillator_input": "チャイキン・オシレーター", "Correlation Coefficient_study": "Correlation Coefficient", "length28_input": "length28", "ABCD Pattern": "ABCD-mönster", "Add": "Lägg till", "Least Squares Moving Average_study": "Least Squares Moving Average", "Chart Layout Name": "Ändra layoutnamn", "Hull MA_input": "Hull MA ", "Arcs": "Bågar", "Correlation_input": "Correlation", "Add {0} To Watchlist": "Lägg till {0} i watchlist", "roclen4_input": "roclen4", "D_data_mode_delayed_streaming_letter": "D", "VI -_input": "VI -", "slowLength_input": "slowLength", "January": "Januari", "Sa_day_of_week": "Sa", "Error": "Fel", "Edit Position": "Redigera position", "RVI_input": "RVI", "Awesome Oscillator_study": "Awesome Oscillator", "True Strength Indicator_study": "True Strength Indicator", "smalen3_input": "smalen3", "Compare": "Jämför", "Fisher Transform_study": "Fisher Transform", "Teeth Length_input": "Teeth Length", "Close": "Stäng", "ParabolicSAR_input": "パラボリックSAR", "MACD_input": "MACD", "Do not show this message again": "Visa inte meddelande igen", "second_plural": "sekunder", "Open_line_tool_position": "Open", "Lagging Span_input": "Lagging Span", "ADX smoothing_input": "ADX smoothing", "May": "Maj", "Are you sure?": "Är du säker?", "Color 5_input": "カラー5", "McGinley Dynamic_study": "McGinley Dynamic", "auto_scale": "auto", "Background": "Bakgrund", "% of equity": "% av kapital", "VWMA_input": "VWMA", "Lower Deviation_input": "低偏差", "ATR_input": "ATR", "February": "Februari", "Shapes_input": "Shapes", "ADX_input": "ADX", "len_input": "len", "Crosses_input": "Crosses", "Middle_input": "Middle", "LowerLimit_input": "LowerLimit", "Know Sure Thing_study": "Know Sure Thing", "Compare...": "Jämför...", "Color": "Färg", "Aroon Up_input": "アルーン・アップ", "Williams Fractal_study": "Williams Fractal"} \ No newline at end of file +{"ticks_slippage ... ticks": "ticks", "Months_interval": "Months", "Percent_input": "パーセント", "RSI Length_input": "RSI Length", "in_dates": "in", "roclen1_input": "roclen1", "OSC_input": "OSC", "Volume_study": "Volume", "Lips_input": "Lips", "Base Line_input": "Base Line", "SMALen2_input": "SMALen2", "Bollinger Bands_study": "Bollinger Bands", "Upper_input": "Upper", "Sig_input": "Sig", "Count_input": "Count", "Industry": "Bransch", "OnBalanceVolume_input": "オンバランスボリューム", "Cross_chart_type": "Cross", "H_in_legend": "H", "R_data_mode_replay_letter": "R", "Value_input": "Value", "Accumulation/Distribution_study": "Accumulation/Distribution", "Rate Of Change_study": "Rate Of Change", "Color 7_input": "カラー7", "Chop Zone_study": "Chop Zone", "Oscillator_input": "オシレーター", "yay Color 0_input": "yay Color 0", "CRSI_study": "CRSI", "Chande Kroll Stop_study": "Chande Kroll Stop", "Hours_interval": "Hours", "Money Flow_study": "Money Flow", "DEMA_input": "DEMA", "Linear Regression Curve_study": "Linear Regression Curve", "Symbol_input": "シンボル", "increment_input": "increment", "Allow up to": "Tillåt upp till", "Contracts": "Kontrakt", "Any Number": "Godtycklig siffra", "smoothD_input": "smoothD", "Circle": "Cirkel", "Circles": "Cirklar", "Ichimoku Cloud_study": "Ichimoku Cloud", "Grid": "Rutnät", "Mass Index_study": "Mass Index", "Smoothing_input": "Smoothing", "Color 3_input": "カラー3", "Jaw Length_input": "Jaw Length", "Keltner Channels_study": "Keltner Channels", "Bands style_input": "バンドスタイル", "Momentum_study": "Momentum", "MF_input": "MF", "m_dates": "m", "Fast length_input": "Fast length", "W_interval_short": "W", "Equality Line_input": "Equality Line", "Short_input": "Short", "Down fractals_input": "Down fractals", "smalen2_input": "smalen2", "isCentered_input": "isCentered", "Border": "Kant", "Klinger Oscillator_study": "Klinger Oscillator", "Absolute": "Absolut", "SMI Ergodic Indicator/Oscillator_study": "SMI Ergodic Indicator/Oscillator", "No Overlapping Labels_scale_menu": "No Overlapping Labels", "Chande MO_input": "Chande MO", "jawLength_input": "jawLength", "TRIX_study": "TRIX", "RVGI_input": "RVGI", "signalLength_input": "signalLength", "d_dates": "d", "August": "Augusti", "Source_compare": "Source", "Correlation Coefficient_study": "Correlation Coefficient", "Delayed": "Försenad", "lipsLength_input": "lipsLength", "Short Length_input": "Short Length", "teethLength_input": "teethLength", "Visible Range_study": "Visible Range", "Hong Kong": "Hongkong", "October": "Oktober", "Long_input": "Long", "MA Cross_study": "MA Cross", "Signal line period_input": "Signal line period", "Line Break": "Radbrytning", "Price Volume Trend_study": "Price Volume Trend", "F_data_mode_forbidden_letter": "F", "Long RoC Length_input": "Long RoC Length", "Length3_input": "長さ3", "+DI_input": "+DI", "MACD_study": "MACD", "%s ago_time_range": "%s ago", "Level_input": "レベル", "Commodity Channel Index_study": "Commodity Channel Index", "Elder's Force Index_input": "Elder's Force Index", "Currency": "Valuta", "Fundamentals": "Fundamentalt", "Aroon_study": "Aroon", "Active Symbol": "Aktiv symbol", "Lead 1_input": "Lead 1", "SMALen1_input": "SMALen1", "P_input": "P", "SMALen3_input": "SMALen3", "Average Directional Index_study": "Average Directional Index", "Fr_day_of_week": "Fr", "Curve": "Kurva", "D_input": "D", "Change Interval": "Ändra intervall", "p_input": "p", "Dot": "Punkt", "All": "Alla", "orders_up to ... orders": "orders", "Dot_hotkey": "Dot", "Lead 2_input": "Lead 2", "Vortex Indicator_study": "Vortex Indicator", "Apply": "Verkställ", "Plots Background_study": "Plots Background", "Price Channel_study": "Price Channel", "Hide": "Dölj", "Bottom": "Botten", "Down Wave C": "Ned våg C", "R_data_mode_realtime_letter": "R", "Conversion Line_input": "Conversion Line", "March": "Mars", "Su_day_of_week": "Su", "Exchange": "Börs", "Double EMA_study": "Double EMA", "Detrended Price Oscillator_study": "Detrended Price Oscillator", "Th_day_of_week": "Th", "Average True Range_study": "Average True Range", "Max value_input": "Max value", "MA Length_input": "MA Length", "in %s_time_range": "in %s", "UpperLimit_input": "UpperLimit", "sym_input": "sym", "DI Length_input": "DI Length", "SMI_input": "SMI", "Arrow": "Pil", "Basis_input": "Basis", "Moving Average_study": "Moving Average", "h_dates": "h", "Created ": "Skapad ", "Arnaud Legoux Moving Average_study": "Arnaud Legoux Moving Average", "Smoothed Moving Average_study": "Smoothed Moving Average", "Lower Band_input": "ローワーバンド", "VI +_input": "VI +", "Always Show Stats": "Visa alltid statistik", "Down Wave 4": "Ned våg 4", "ROCLen2_input": "ROCLen2", "Simple ma(signal line)_input": "Simple ma(signal line)", " Do you really want to delete Drawing Template '{0}' ?": " Vill du verkligen ta bort ritmall '{0}'?", "Color 6_input": "カラー6", "long_input": "long", "Chaikin Oscillator_study": "Chaikin Oscillator", "Balloon": "Ballong", "Color Theme": "Färgtema", "Awesome Oscillator_study": "Awesome Oscillator", "Bollinger Bands Width_input": "Bollinger Bands Width", "Signal Length_input": "Signal Length", "D_interval_short": "D", "Color 1_input": "カラー1", "Moving Average Weighted_study": "Moving Average Weighted", "Save": "Spara", "Type": "Typ", "Short period_input": "Short period", "Change Interval...": "Ändra intervall...", "Fisher_input": "Fisher", "Volume Oscillator_study": "Volume Oscillator", "Always Visible": "Alltid synlig", "S_data_mode_snapshot_letter": "S", "Change Minutes To": "Ändra minuter till", "Change Minutes From": "Ändra minuter från", "Do not ask again": "Fråga inte igen", "Drawing Tools": "Ritverktyg", "smalen4_input": "smalen4", "CCI_input": "CCI", "Upper Deviation_input": "上偏差", "Accumulative Swing Index_study": "Accumulative Swing Index", "Move_input": "Move", "NV_input": "NV", "Choppiness Index_study": "Choppiness Index", " per contract": " per kontrakt", "Delete": "Ta bort", "Length MA_input": "Length MA", "percent_input": "percent", "Length_input": "長さ", "Median_input": "Median", "Accumulation/Distribution_input": "アキューミレーション/ ディストリビューション", "C_in_legend": "C", "Weeks_interval": "Weeks", "smoothK_input": "smoothK", "Percentage_scale_menu": "Percentage", "MOM_input": "MOM", "h_interval_short": "h", "TRIX_input": "TRIX", "Periods_input": "Periods", "Connecting": "Ansluter", "Histogram_input": "Histogram", "StdDev_input": "StdDev", "EMA Cross_study": "EMA Cross", "Conversion Line Periods_input": "Conversion Line Periods", "-DI_input": "-DI", "short_input": "short", "RSI_input": "RSI", "Date": "Datum", "Search": "Sök", "Zig Zag_study": "Zig Zag", "Actual": "Egentligt värde", "Long period_input": "Long period", "length_input": "length", "roclen4_input": "roclen4", "Add Symbol_compare_or_add_symbol_dialog": "Add Symbol", "Above Bar": "Över candlestick", "Slow length_input": "Slow length", "Sector": "Sektor", "TEMA_input": "TEMA", "q_input": "q", "Advance/Decline_study": "Advance/Decline", "Cancel": "Avbryt", "Ultimate Oscillator_study": "Ultimate Oscillator", "Growing_input": "Growing", "Angle": "Vinkel", "Plot_input": "Plot", "Color 8_input": "カラー8", "Bollinger Bands Width_study": "Bollinger Bands Width", "roclen3_input": "roclen3", "Overbought_input": "買われすぎ", "DPO_input": "DPO", "Relative Vigor Index_study": "Relative Vigor Index", "Tu_day_of_week": "Tu", "Period_input": "Period", "Trigger_input": "Trigger", "SigLen_input": "SigLen", "Price": "Pris", "Color 2_input": "カラー2", "Edit Order": "Redigera order", "RSI Source_input": "RSI Source", "MA/EMA Cross_study": "MA/EMA Cross", "Williams Alligator_study": "Williams Alligator", "ROCLen1_input": "ROCLen1", "M_interval_short": "M", "Chaikin Oscillator_input": "チャイキン・オシレーター", "Zero Line_input": "Zero Line", "Increment_input": "Increment", "Days_interval": "Days", "Net Volume_study": "Net Volume", "Historical Volatility_study": "Historical Volatility", "length14_input": "length14", "High": "Högsta", "Add to favorites": "Lägg till som favorit", "Color 0_input": "カラー0", "maximum_input": "maximum", "D_data_mode_delayed_letter": "D", "Sigma_input": "Sigma", "fastLength_input": "fastLength", "Width": "Bredd", "Use Lower Deviation_input": "Use Lower Deviation", "Falling_input": "Falling", "Divisor_input": "Divisor", "Down Wave 1 or A": "Ned våg 1 eller A", "length7_input": "length7", "Window Size_input": "Window Size", "Long Length_input": "Long Length", "%R_input": "%R", "Chart Properties": "Diagramegenskaper", "bars_margin": "bars", "Simple ma(oscillator)_input": "Simple ma(oscillator)", "Length1_input": "長さ1", "Always Invisible": "Alltid osynlig", "Days": "Dagar", "x_input": "x", "Parabolic SAR_study": "Parabolic SAR", "UO_input": "UO", "Short RoC Length_input": "Short RoC Length", "Jaw_input": "Jaw", "Coppock Curve_study": "Coppock Curve", "longlen_input": "longlen", "Moving Average Exponential_study": "Moving Average Exponential", "s_dates": "s", "Balance of Power_study": "Balance of Power", "EOM_input": "EOM", "Indicators": "Indikatorer", "%D_input": "%D", "Offset_input": "Offset", "HV_input": "HV", "Start_input": "Start", "ROC_input": "ROC", "Color 4_input": "カラー4", "Angles": "Vinklar", "Hollow Candles": "Ihåliga candlesticks", "July": "Juli", "lengthStoch_input": "lengthStoch", "ADX Smoothing_input": "ADX Smoothing", "Settings": "Inställningar", "Candles": "Candlesticks", "We_day_of_week": "We", "MA_input": "MA", "Length2_input": "長さ2", "Multiplier_input": "Multiplier", "Session Volume_study": "Session Volume", "Up fractals_input": "Up fractals", "Add Symbol": "Lägg till symbol", "C_data_mode_connecting_letter": "C", "SMALen4_input": "SMALen4", "yay Color 1_input": "yay Color 1", "CHOP_input": "CHOP", "Middle_input": "Middle", "WMA Length_input": "WMA Length", "Low": "Lägsta", "Closed_line_tool_position": "Closed", "Columns": "Kolumner", "Change Resolution": "Ändra upplösning", "Degree": "Grad", "On Balance Volume_study": "On Balance Volume", "Source_input": "Source", "Change Seconds To": "Ändra sekunder till", "%K_input": "%K", "Log Scale_scale_menu": "Log Scale", "Price Oscillator_study": "Price Oscillator", "len_input": "len", "Add To Text Notes": "Lägg till bland anteckningar", "Long length_input": "Long length", "Base Line Periods_input": "Base Line Periods", "Relative Strength Index_study": "Relative Strength Index", "siglen_input": "siglen", "Slash_hotkey": "Slash", "lengthRSI_input": "lengthRSI", "SMI Ergodic Oscillator_input": "SMI Ergodic Oscillator", "Indicator_input": "Indicator", "Athens": "Aten", "Q_input": "Q", "Content": "Innehåll", "Down Wave 2 or B": "Ned våg2 eller B", "Line": "Rad", "Envelope_study": "Envelope", "show MA_input": "show MA", "O_in_legend": "O", "useTrueRange_input": "useTrueRange", "Minutes_interval": "Minutes", "Copy": "Kopierad", "deviation_input": "偏差", "Base currency": "Basvaluta", "VWMA_study": "VWMA", "Displacement_input": "Displacement", "Chaikin Money Flow_study": "Chaikin Money Flow", "Ease Of Movement_study": "Ease Of Movement", "Oversold_input": "売られすぎ", "Williams %R_study": "Williams %R", "depth_input": "depth", "VWAP_study": "VWAP", "Detrended Price Oscillator_input": "Detrended Price Oscillator", "Mo_day_of_week": "Mo", "ROC Length_input": "ROC Length", "X_input": "X", "ROCLen4_input": "ROCLen4", "Aroon Down_input": "アルーン・ダウン", "Add To Watchlist": "Lägg till i watchlist", "Total": "Totalt", "Clone": "Klona", "Limit_input": "Limit", "Change Days To": "Ändra dagar till", "smalen1_input": "smalen1", "Color based on previous close_input": "Color based on previous close", "Price_input": "Price", "Relative Volatility Index_study": "Relative Volatility Index", "PVT_input": "PVT", "Hull Moving Average_study": "Hull Moving Average", "Zero_input": "ゼロ", "Stochastic Length_input": "Stochastic Length", "mult_input": "mult", "Signal smoothing_input": "Signal smoothing", "E_data_mode_end_of_day_letter": "E", "Double Curve": "Dubbel kurva", "Stochastic RSI_study": "Stochastic RSI", "Error:": "Fel:", "Add Text Note For {0}": "Lägg till anteckning för {0}", "K_input": "K", "ROCLen3_input": "ROCLen3", "New Zealand": "Nya Zeeland", "Signal_input": "Signal", "Moving Average Channel_study": "Moving Average Channel", "Show": "Visa", "Lower_input": "低", "Arc": "Båge", "Elder's Force Index_study": "Elder's Force Index", "Stochastic_study": "Stochastic", "Bollinger Bands %B_study": "Bollinger Bands %B", "Donchian Channels_study": "Donchian Channels", "Upper Band_input": "アッパーバンド", "start_input": "スタート", "Short length_input": "Short length", "Triple EMA_study": "Triple EMA", "Technical Analysis": "Teknisk analys", "Channel": "Trendkanal", "Lagging Span 2 Periods_input": "Lagging Span 2 Periods", "Teeth_input": "Teeth", "exponential_input": "exponential", "Directional Movement_study": "Directional Movement", "roclen2_input": "roclen2", "Chande Momentum Oscillator_study": "Chande Momentum Oscillator", "Bollinger Bands %B_input": "ボリンジャーバンド%B", "Change Hours To": "Ändra timmar till", "Lips Length_input": "Lips Length", "Use Upper Deviation_input": "Use Upper Deviation", "L_in_legend": "L", "shortlen_input": "shortlen", "Copied to clipboard": "Koppierad till klippbricka", "Bar's Style": "Diagramtyp", "Exponential_input": "Exponential", "Down Wave 5": "Ned våg 5", "Comment": "Kommentera", "Connors RSI_study": "Connors RSI", "Bars": "Candlesticks", "Change Seconds From": "Ändra sekunder från", "ADR_B_input": "ADR_B", "Timezone": "Tidszon", "Down Wave 3": "Ned våg 3", "ATR Length": "Längd för ATR", "Change Symbol...": "Ändra tickersymbol...", "June": "Juni", "length28_input": "length28", "ABCD Pattern": "ABCD-mönster", "Add": "Lägg till", "Least Squares Moving Average_study": "Least Squares Moving Average", "Chart Layout Name": "Ändra layoutnamn", "Hull MA_input": "Hull MA ", "Arcs": "Bågar", "Correlation_input": "Correlation", "Add {0} To Watchlist": "Lägg till {0} i watchlist", "UpDown Length_input": "UpDown Length", "ASI_study": "ASI", "D_data_mode_delayed_streaming_letter": "D", "VI -_input": "VI -", "slowLength_input": "slowLength", "January": "Januari", "Sa_day_of_week": "Sa", "Error": "Fel", "Edit Position": "Redigera position", "RVI_input": "RVI", "Centered_input": "Centered", "True Strength Indicator_study": "True Strength Indicator", "smalen3_input": "smalen3", "Compare": "Jämför", "Fisher Transform_study": "Fisher Transform", "Length EMA_input": "Length EMA", "Teeth Length_input": "Teeth Length", "MA with EMA Cross_study": "MA with EMA Cross", "Close": "Stäng", "ParabolicSAR_input": "パラボリックSAR", "MACD_input": "MACD", "Do not show this message again": "Visa inte meddelande igen", "Open_line_tool_position": "Open", "Lagging Span_input": "Lagging Span", "ADX smoothing_input": "ADX smoothing", "May": "Maj", "Are you sure?": "Är du säker?", "Color 5_input": "カラー5", "McGinley Dynamic_study": "McGinley Dynamic", "auto_scale": "auto", "Background": "Bakgrund", "% of equity": "% av kapital", "VWMA_input": "VWMA", "Lower Deviation_input": "低偏差", "ATR_input": "ATR", "February": "Februari", "Shapes_input": "Shapes", "ADX_input": "ADX", "Crosses_input": "Crosses", "KST_input": "KST", "LowerLimit_input": "LowerLimit", "Know Sure Thing_study": "Know Sure Thing", "Compare...": "Jämför...", "Color": "Färg", "Aroon Up_input": "アルーン・アップ", "Fixed Range_study": "Fixed Range", "Williams Fractal_study": "Williams Fractal"} \ No newline at end of file diff --git a/charting_library/static/localization/translations/th.json b/charting_library/static/localization/translations/th.json index 0458b903..67fc9ea1 100644 --- a/charting_library/static/localization/translations/th.json +++ b/charting_library/static/localization/translations/th.json @@ -1 +1 @@ -{"ticks_slippage ... ticks": "ticks", "Months_interval": "Months", "Percent_input": "Percent", "Callout": "กล่องคำพูด", "month": "เดือน_1", "roclen1_input": "roclen1", "Magnet Mode": "โหมดแม่เหล็ก", "OSC_input": "OSC", "Volume_study": "ปริมาณการซื้อขาย", "Lips_input": "Lips", "Base Line_input": "Base Line", "Step": "ขั้นบันได", "SMALen2_input": "SMALen2", "Bollinger Bands_study": "Bollinger Bands", "Nov": "พฤศจิกา", "Upper_input": "Upper", "Sig_input": "Sig", "Move Up": "เลื่อนขึ้น", "Scales Properties...": "ตั้งค่า Scale...", "Count_input": "Count", "Anchored Text": "ลิงค์", "SMALen1_input": "SMALen1", "Cross_chart_type": "Cross", "H_in_legend": "H", "Accumulation/Distribution_study": "Accumulation/Distribution", "Rate Of Change_study": "Rate Of Change", "roclen2_input": "roclen2", "in_dates": "ใน", "Color 7_input": "Color 7", "Chop Zone_study": "Chop Zone", "Remove All Indicators": "ลบดัชนีชี้วัด", "Oscillator_input": "Oscillator", "Last Modified": "แก้ไขล่าสุด", "yay Color 0_input": "yay Color 0", "Chande Kroll Stop_study": "Chande Kroll Stop", "Hours_interval": "Hours", "Scale Right": "Scale ขวา", "Bollinger Bands %B_input": "Bollinger Bands %B", "DEMA_input": "DEMA", "Remove All Drawing Tools": "ลบรูปวาดทั้งหมด", "Linear Regression Curve_study": "Linear Regression Curve", "Symbol_input": "Symbol", "increment_input": "increment", "Use Lower Deviation_input": "Use Lower Deviation", "second": "seconds", "smoothD_input": "smoothD", "Percentage": "เปอร์เซ็นต์", "Entry price:": "ราคาเข้าซื้อ", "RSI Source_input": "RSI Source", "Ichimoku Cloud_study": "Ichimoku Cloud", "Grid": "ตาราง", "Mass Index_study": "Mass Index", "Rename...": "เปลี่ยนชื่อ...", "Smoothing_input": "Smoothing", "Color 3_input": "Color 3", "Jaw Length_input": "Jaw Length", "Keltner Channels_study": "Keltner Channels", "Bands style_input": "Bands style", "Undo {0}": "ย้อนกลับ", "With Markers": "แสดงจุด", "Momentum_study": "Momentum", "MF_input": "MF", "Long length_input": "Long length", "W_interval_short": "W", "Equality Line_input": "Equality Line", "Short_input": "Short", "Down fractals_input": "Down fractals", "smalen2_input": "smalen2", "isCentered_input": "isCentered", "Border": "เส้นขอบ", "Klinger Oscillator_study": "Klinger Oscillator", "Style": "รูปแบบ", "SMI Ergodic Indicator/Oscillator_study": "SMI Ergodic Indicator/Oscillator", "Aug": "สิงหา", "Manage Drawings": "จัดการรูปวาด", "No drawings yet": "ไม่มีรูปวาด", "Chande MO_input": "Chande MO", "jawLength_input": "jawLength", "TRIX_study": "TRIX", "MACD_study": "MACD", "RVGI_input": "RVGI", "signalLength_input": "signalLength", "Middle_input": "Middle", "d_dates": "d", "Timezone/Sessions": "เวลา/Sessions", "Source_compare": "แหล่งข้อมูล", "Correlation Coefficient_study": "Correlation Coefficient", "Text color": "สีตัวอักษร", "lipsLength_input": "lipsLength", "Short Length_input": "Short Length", "teethLength_input": "teethLength", "Hong Kong": "ฮ่องกง", "FAILURE": "ล้มเหลว", "Lock All Drawing Tools": "ล๊อครูปวาดทั้งหมด", "Default": "ค่าเริ่มต้น", "Simple ma(oscillator)_input": "Simple ma(oscillator)", "Properties...": "ตั้งค่า...", "MA Cross_study": "MA Cross", "Signal line period_input": "Signal line period", "Show/Hide": "แสดง/ซ่อน", "Price Volume Trend_study": "Price Volume Trend", "Auto Scale": "Scale แบบอัตโนมัติ", "hour": "hours", "Text": "ตัวอักษร", "F_data_mode_forbidden_letter": "F", "Long RoC Length_input": "Long RoC Length", "Length3_input": "Length3", "+DI_input": "+DI", "Madrid": "มาดริด", "Show Bars Range": "แสดงช่วงราคา", "%s ago_time_range": "%s ago", "Zoom In": "ขยายเข้า", "Show Price": "แสดงราคา", "Level_input": "Level", "Commodity Channel Index_study": "Commodity Channel Index", "Elder's Force Index_input": "Elder's Force Index", "Format": "ตั้งค่า", "Color bars based on previous close": "ให้สีของ Bars อ้างอิงจากราคาปิดของวันก่อนหน้า", "Text:": "ตัวอักษร:", "Aroon_study": "Aroon", "Active Symbol": "หลักทรัพย์ที่ใช้งานอยู่", "h_dates": "h", "ADR_B_input": "ADR_B", "SMALen3_input": "SMALen3", "Average Directional Index_study": "Average Directional Index", "Fr_day_of_week": "Fr", "D_input": "D", "Font Size": "ขนาดตัวอักษร", "p_input": "p", "Dot": "จุด", "orders_up to ... orders": "orders", "Lead 2_input": "Lead 2", "Save image": "บันทึกรูปภาพ", "Move Down": "เลื่อนลง", "Vortex Indicator_study": "Vortex Indicator", "Apply": "บันทึก", "%d day": "%d days", "Hide": "ซ่อน", "Scale Left": "Scale ซ้าย", "Jan": "มกรา", "Oct": "ตุลา", "Inputs": "ข้อมูล", "Conversion Line_input": "Conversion Line", "Su_day_of_week": "Su", "Up fractals_input": "Up fractals", "Double EMA_study": "Double EMA", "minute": "minutes", "Price Oscillator_study": "Price Oscillator", "Th_day_of_week": "Th", "Minutes_interval": "Minutes", "Average True Range_study": "Average True Range", "Max value_input": "Max value", "MA Length_input": "MA Length", "in %s_time_range": "in %s", "UpperLimit_input": "UpperLimit", "sym_input": "sym", "DI Length_input": "DI Length", "SMI_input": "SMI", "Arrow": "ลูกศร", "Basis_input": "Basis", "Arrow Mark Down": "ลูกศรลง", "lengthStoch_input": "lengthStoch", "Taipei": "ไทเป", "Remove from favorites": "ลบออกจากรายการโปรด", "Simple": "ปกติ", "Arnaud Legoux Moving Average_study": "Arnaud Legoux Moving Average", "Technical Analysis": "ข้อมูลทางเทคนิค", "Lower Band_input": "Lower Band", "VI +_input": "VI +", "Lead 1_input": "Lead 1", "ROCLen2_input": "ROCLen2", "Simple ma(signal line)_input": "Simple ma(signal line)", "Show Labels": "แสดงข้อความกำกับ", "Color 6_input": "Color 6", "Chaikin Oscillator_study": "Chaikin Oscillator", "Balloon": "กล่องคำพูด", "Color Theme": "โทนสี", "Centered_input": "Centered", "Bollinger Bands Width_input": "Bollinger Bands Width", "Signal Length_input": "Signal Length", "D_interval_short": "D", "Lock/Unlock": "ล๊อค/ปลดล๊อค", "Color 1_input": "Color 1", "Moving Average Weighted_study": "Moving Average Weighted", "Save": "บันทึก", "Type": "ประเภท", "Short period_input": "Short period", "Fisher_input": "Fisher", "Volume Oscillator_study": "Volume Oscillator", "S_data_mode_snapshot_letter": "S", "smalen4_input": "smalen4", "CCI_input": "CCI", "Upper Deviation_input": "Upper Deviation", "NV_input": "NV", "Choppiness Index_study": "Choppiness Index", "Merge Down": "รวมกับด้านล่าง", "eod delayed": "ข้อมูลสิ้นวันดีเลย์", "Delete": "ลบ", "percent_input": "percent", "Apr": "เมษา", "Length_input": "Length", "Normal": "ปกติ", "Accumulation/Distribution_input": "Accumulation/Distribution", "C_in_legend": "C", "Weeks_interval": "Weeks", "smoothK_input": "smoothK", "Percentage_scale_menu": "เปอร์เซ็นต์", "MOM_input": "MOM", "h_interval_short": "h", "Rotated Rectangle": "สี่เหลี่ยม (หมุนได้)", "Send Backward": "นำไปไว้หลังสุด", "TRIX_input": "TRIX", "Periods_input": "Periods", "Histogram_input": "Histogram", "StdDev_input": "StdDev", "Relative Strength Index_study": "Relative Strength Index", "-DI_input": "-DI", "short_input": "short", "Symbol": "สัญลักษณ์", "Format...": "ตั้งค่า...", "Search": "ค้นหา", "Zig Zag_study": "Zig Zag", "SUCCESS": "สำเร็จ", "Detrended Price Oscillator_input": "Detrended Price Oscillator", "length_input": "length", "Price Line": "เส้นราคา", "Zoom Out": "ขยายออก", "Stop Level. Ticks:": "ตัดขาดทุน", "Jul": "กรกฏา", "Visual Order": "ลำดับการมองเห็น", "Slow length_input": "Slow length", "Conversion Line Periods_input": "Conversion Line Periods", "Marker Color": "สี จุด", "TEMA_input": "TEMA", "Directional Movement_study": "Directional Movement", "q_input": "q", "Advance/Decline_study": "Advance/Decline", "New York": "นิวยอร์ค", "Flag Mark": "ธง", "Drawings": "รูปวาด", "Fast length_input": "Fast length", "Cancel": "ยกเลิก", "Redo": "ย้อนกลับ", "Ultimate Oscillator_study": "Ultimate Oscillator", "Growing_input": "Growing", "Plot_input": "Plot", "Chicago": "ชิคาโก", "Color 8_input": "Color 8", "Indicators, Fundamentals, Economy and Add-ons": "ดัชนี้ชี้วัด, พื้นฐาน, ข้อมูลเศรษฐกิจ และ อื่นๆ", "Bollinger Bands Width_study": "Bollinger Bands Width", "roclen3_input": "roclen3", "Overbought_input": "Overbought", "DPO_input": "DPO", "Trend Line": "เส้นแนวโน้ม", "TimeZone": "เวลา", "Tu_day_of_week": "Tu", "Triangle": "สามเหลี่ยม", "Period_input": "Period", "Watermark": "ลายน้ำ", "Trigger_input": "Trigger", "SigLen_input": "SigLen", "Price": "ราคา", "Color 2_input": "Color 2", "Show Prices": "แสดงราคา", "Graphics": "กราฟฟิค", "Arrow Mark Right": "ลูกศรขวา", "Background color 2": "สีพื้นหลัง 2", "Background color 1": "สีพื้นหลัง 1", "Williams Alligator_study": "Williams Alligator", "ROCLen1_input": "ROCLen1", "M_interval_short": "M", "Change Symbol...": "เปลี่ยนสัญลักษณ์...", "Price Levels": "ระดับราคา", "Zero Line_input": "Zero Line", "Increment_input": "Increment", "Days_interval": "Days", "Net Volume_study": "Net Volume", "m_dates": "m", "length14_input": "length14", "retrying": "กำลังโหลด..", "High": "สูง", "Polyline": "กำหนดเอง", "Add to favorites": "เพิ่มลงรายการโปรด", "Color 0_input": "Color 0", "maximum_input": "maximum", "Paris": "ปารีส", "D_data_mode_delayed_letter": "D", "Sigma_input": "Sigma", "Coordinates": "ตำแหน่ง", "fastLength_input": "fastLength", "Historical Volatility_study": "Historical Volatility", "Compare or Add Symbol...": "เปรียบเทียบ หรือ เพิ่ม...", "Falling_input": "Falling", "Divisor_input": "Divisor", "Dec": "ธันวา", "length7_input": "length7", "Send to Back": "นำไปไว้ข้างหลัง", "Undo": "ย้อนกลับ", "Window Size_input": "Window Size", "Reset Scale": "รีเซ็ทขนาด", "Long Length_input": "Long Length", "%R_input": "%R", "Chart Properties": "ตั้งค่ากราฟ", "bars_margin": "ช่อง", "closed": "ปิด", "smalen3_input": "smalen3", "Length1_input": "Length1", "x_input": "x", "Save As...": "บันทึกเป็น...", "Parabolic SAR_study": "Parabolic SAR", "Fisher Transform_study": "Fisher Transform", "UO_input": "UO", "Short RoC Length_input": "Short RoC Length", "Jaw_input": "Jaw", "Help": "ช่วยเหลือ", "Coppock Curve_study": "Coppock Curve", "Reset Chart": "รีเซ็ทกราฟ", "Sep": "กันยา", "YES": "ใช่", "longlen_input": "longlen", "Moving Average Exponential_study": "Moving Average Exponential", "Redo {0}": "ย้อนกลับ", "s_dates": "s", "invalid symbol": "เกิดข้อผิดผลาด", "Balance of Power_study": "Balance of Power", "EOM_input": "EOM", "Least Squares Moving Average_study": "Least Squares Moving Average", "Sydney": "ซิดนีย์", "Indicators": "ดัชนีชี้วัด", "%D_input": "%D", "Border Color": "สีขอบ", "Offset_input": "Offset", "HV_input": "HV", "Start_input": "Start", "R_data_mode_realtime_letter": "R", "ROC_input": "ROC", "Berlin": "เบอร์ลิน", "Color 4_input": "Color 4", "Los Angeles": "ลอสแองเจลิส", "Prices": "ราคา", "ADX Smoothing_input": "ADX Smoothing", "Settings": "ตั้งค่า", "We_day_of_week": "We", "%d minute": "%d minutes", "Hide All Drawing Tools": "ซ่อนรูปวาดทั้งหมด", "MA_input": "MA", "Detrended Price Oscillator_study": "Detrended Price Oscillator", "Multiplier_input": "Multiplier", "Image URL": "URL รูปภาพ", "SMI Ergodic Oscillator_input": "SMI Ergodic Oscillator", "Show Objects Tree": "แสดงข้อมูล", "Price:": "ราคา:", "Bring to Front": "ส่งมาหน้าสุด", "Brush": "พู่กัน", "Chaikin Oscillator_input": "Chaikin Oscillator", "C_data_mode_connecting_letter": "C", "SMALen4_input": "SMALen4", "Invalid Symbol": "ข้อมูลผิดผลาด", "yay Color 1_input": "yay Color 1", "CHOP_input": "CHOP", "Note": "บันทึกช่วยจำ", "WMA Length_input": "WMA Length", "Low": "ต่ำ", "Borders": "เส้นขอบ", "loading...": "กำลังโหลด....", "Events": "เหตุการณ์", "Rectangle": "สี่เหลี่ยม", "Mar": "มีนา", "Jun": "มิถุนา", "On Balance Volume_study": "On Balance Volume", "Overlay the main chart": "เพิ่มลงบนกราฟหลัก", "Source_input": "Source", "%K_input": "%K", "Log Scale_scale_menu": "Log Scale", "Toronto": "โตรอนโต", "Tokyo": "โตเกียว", "len_input": "len", "Measure (Shift + Click on the chart)": "เครื่องมือวัด (Shift + คลิก ลงบนกราฟ)", "RSI Length_input": "RSI Length", "Base Line Periods_input": "Base Line Periods", "pre-market": "pre-open", "siglen_input": "siglen", "{0} copy": "{0} สำเนา", "Text Wrap": "บังคับให้ตัวหนังสืออยู่ในขอบเขตที่กำหนด", "No symbols matched your criteria": "ไม่พบข้อมูลจากที่ค้นหา", "Icon": "ไอคอน", "Open": "เปิด", "Indicator_input": "Indicator", "Shanghai": "เซี่ยงไฮ้", "Athens": "เอเธนส์", "Q_input": "Q", "middle": "กึ่งกลาง", "Eraser": "ยางลบ", "Relative Vigor Index_study": "Relative Vigor Index", "Envelope_study": "Envelope", "show MA_input": "show MA", "O_in_legend": "O", "Confirmation": "การยืนยัน", "Lines:": "เส้น", "Buenos Aires": "บูโนสแอเรส", "useTrueRange_input": "useTrueRange", "Bangkok": "กรุงเทพ", "Profit Level. Ticks:": "จุดขาย", "Show Date/Time Range": "แสดงวันที่/เวลา", "%d year": "%d years", "Copy": "คัดลอก", "day": "days", "deviation_input": "deviation", "week": "weeks", "long_input": "long", "VWMA_study": "VWMA", "%d hour": "%d hours", "Displacement_input": "Displacement", "Chaikin Money Flow_study": "Chaikin Money Flow", "Ease Of Movement_study": "Ease Of Movement", "Defaults": "ค่าเริ่มต้น", "Oversold_input": "Oversold", "Williams %R_study": "Williams %R", "depth_input": "depth", "RSI_input": "RSI", "Long period_input": "Long period", "Mo_day_of_week": "Mo", "center": "กึ่งกลาง", "Vertical Line": "เส้นแนวตั้ง", "Bogota": "โบโกต้า", "X_input": "X", "ROCLen4_input": "ROCLen4", "Aroon Down_input": "Aroon Down", "Add To Watchlist": "เพิ่มในรายการ", "Clone": "คัดลอก", "left": "ชิดซ้าย", "smalen1_input": "smalen1", "Price_input": "Price", "Close_input": "Close", "Moving Average_study": "Moving Average", "Relative Volatility Index_study": "Relative Volatility Index", "PVT_input": "PVT", "Hull Moving Average_study": "Hull Moving Average", "Bring Forward": "ส่งมาด้านหน้า", "Zero_input": "Zero", "Company Comparison": "เปรียบเทียบหลักทรัพย์", "Stochastic Length_input": "Stochastic Length", "mult_input": "mult", "Signal smoothing_input": "Signal smoothing", "E_data_mode_end_of_day_letter": "E", "Stochastic RSI_study": "Stochastic RSI", "Fullscreen mode": "โหมดเต็มหน้าจอ", "K_input": "K", "ROCLen3_input": "ROCLen3", "Text Color": "สีตัวอักษร", "Screen (No Scale)": "Screen (ไม่มี Scale)", "Signal_input": "Signal", "OK": "ยืนยัน", "like": "likes", "Show": "แสดง", "{0} bars": "{0} ช่อง", "Lower_input": "Lower", "Arc": "เส้นโค้ง", "London": "ลอนดอน", "Stochastic_study": "Stochastic", "Bollinger Bands %B_study": "Bollinger Bands %B", "Time Zone": "เขตเวลา", "right": "ชิดขวา", "%d month": "%d months", "Donchian Channels_study": "Donchian Channels", "Upper Band_input": "Upper Band", "start_input": "start", "No indicators matched your criteria.": "ไม่พบดัชนีชี้วัดที่ต้องการ", "Short length_input": "Short length", "Kolkata": "โคลคาต้า", "Triple EMA_study": "Triple EMA", "Precise Labels_scale_menu": "Precise Labels", "Smoothed Moving Average_study": "Smoothed Moving Average", "Show Text": "แสดงตัวหนังสือ", "Lagging Span 2 Periods_input": "Lagging Span 2 Periods", "Seoul": "โซว", "bottom": "ชิดล่าง", "Teeth_input": "Teeth", "Moscow": "มอสโก", "Closed_line_tool_position": "ปิด", "exponential_input": "exponential", "OnBalanceVolume_input": "OnBalanceVolume", "Elder's Force Index_study": "Elder's Force Index", "Chande Momentum Oscillator_study": "Chande Momentum Oscillator", "or copy url:": "หรือ คัดลอกลิงค์", "Money Flow_study": "Money Flow", "Lips Length_input": "Lips Length", "Use Upper Deviation_input": "Use Upper Deviation", "L_in_legend": "L", "shortlen_input": "shortlen", "Profit Background Color": "สีพื้นหลังของกำไร", "Bar's Style": "รูปแบบ Bar", "Exponential_input": "Exponential", "Stay In Drawing Mode": "จัดให้อยู่ในโหมดวาดรูป", "Comment": "ความคิดเห็น", "Long_input": "Long", "loading data": "กำลังโหลดข้อมูล", "Border color": "สีขอบ", "Insert Indicator...": "เพิ่มดัชนี...", "P_input": "P", "Feb": "กุมภา", "Transparency": "โปร่งแสง", "length28_input": "length28", "Objects Tree": "ข้อมูล", "NO": "ไม่", "Add": "เพิ่ม", "Price Label": "ราคาล่าสุด", "Hull MA_input": "Hull MA", "Lock Scale": "ล๊อค Scale", "distance: {0}": "ระยะ: {0}", "Median_input": "Median", "Length2_input": "Length2", "Insert Drawing Tool": "เพิ่มเครื่องมือวาด", "Show Price Range": "แสดงช่วงราคา", "Correlation_input": "Correlation", "Scales Text": "อักษรเส้น Scale", "roclen4_input": "roclen4", "Background Color": "สีพื้นหลัง", "D_data_mode_delayed_streaming_letter": "D", "VI -_input": "VI -", "slowLength_input": "slowLength", "Click to set a point": "คลิกเพื่อสร้างจุด", "Sa_day_of_week": "Sa", "RVI_input": "RVI", "Awesome Oscillator_study": "Awesome Oscillator", "True Strength Indicator_study": "True Strength Indicator", "Objects Tree...": "ข้อมูลบนกราฟ...", "Compare": "เปรียบเทียบ", "Add Symbol": "เพิ่มสัญลักษณ์", "Properties": "ตั้งค่า", "Teeth Length_input": "Teeth Length", "Close": "ปิด", "ParabolicSAR_input": "ParabolicSAR", "MACD_input": "MACD", "Arrow Mark Left": "ลูกศรซ้าย", "Open_line_tool_position": "เปิด", "Lagging Span_input": "Lagging Span", "Vancouver": "แวนคูเวอร์", "ADX smoothing_input": "ADX smoothing", "1. Slide your finger to select location for first anchor
    2. Tap anywhere to place the first anchor": "1. เลื่อนนิ้วไปยังจุดที่ต้องการ
    2. แตะหน้าจอหนึ่งครั้งเป็นการยืนยัน", "May": "พฤษภา", "Color 5_input": "Color 5", "McGinley Dynamic_study": "McGinley Dynamic", "auto_scale": "อัตโนมัติ", "Background": "พื้นหลัง", "VWMA_input": "VWMA", "Lower Deviation_input": "Lower Deviation", "ATR_input": "ATR", "Shapes_input": "Shapes", "Median": "ค่าเฉลี่ย", "ADX_input": "ADX", "Remove": "ลบ", "Arrow Mark Up": "ลูกศรขึ้น", "Williams Fractal_study": "Williams Fractal", "Crosses_input": "Crosses", "KST_input": "KST", "LowerLimit_input": "LowerLimit", "Know Sure Thing_study": "Know Sure Thing", "Compare...": "เปรียบเทียบ...", "1. Slide your finger to select location for next anchor
    2. Tap anywhere to place the next anchor": "1. เลื่อนนิ้วไปยังจุดที่ต้องการต่อไป
    2. แตะหน้าจอหนึ่งครั้งเป็นการยืนยัน", "Compare or Add Symbol": "เปรียบเทียบ หรือ เพิ่ม", "Color": "สี", "Aroon Up_input": "Aroon Up", "Singapore": "สิงค์โปร์", "Scales Lines": "เส้น Scale", "Show Distance": "แสดงระยะ", "Risk/Reward Ratio: {0}": "ความเสี่ยง/ผลตอบแทน : {0}", "lengthRSI_input": "lengthRSI", "Merge Up": "รวมกับด้านบน", "Ellipse": "วงกลม", "Warsaw": "วอซอร์"} \ No newline at end of file +{"ticks_slippage ... ticks": "ticks", "Months_interval": "Months", "Percent_input": "Percent", "Callout": "กล่องคำพูด", "month": "เดือน", "London": "ลอนดอน", "roclen1_input": "roclen1", "Percents": "เปอร์เซ็น", "Currency": "เงินตรา", "Minor": "รอง", "Do you really want to delete Chart Layout '{0}' ?": "คุณต้องการลบชาทส์ '{0}' จริง ๆ หรือไม?", "Magnet Mode": "โหมดแม่เหล็ก", "OSC_input": "OSC", "Hide alert label line": "ซ่อนเส้นการแจ้งเตือน", "Volume_study": "ปริมาณการซื้อขาย", "Lips_input": "Lips", "Show real prices on price scale (instead of Heikin-Ashi price)": "แสดงราคาจริงบนสเกลราคา (แทนที่ราคาแบบ ไฮเก้น-อะชิ)", "Histogram": "แท่ง", "Base Line_input": "Base Line", "Step": "ขั้นบันได", "Insert Study Template": "แทรก Study Template", "Fib Time Zone": "โซนเวลาฟิโบนัชชี่", "SMALen2_input": "SMALen2", "Bollinger Bands_study": "Bollinger Bands", "Nov": "พฤศจิกา", "Upper_input": "Upper", "exponential_input": "exponential", "Move Up": "เลื่อนขึ้น", "Scales Properties...": "ตั้งค่า Scale...", "Count_input": "Count", "Full Circles": "เต็มวงกลม", "Industry": "อุตสาหกรรม", "OnBalanceVolume_input": "OnBalanceVolume", "Cross_chart_type": "Cross", "H_in_legend": "H", "Pitchfork": "พิชฟอร์ค", "R_data_mode_replay_letter": "R", "Accumulation/Distribution_study": "Accumulation/Distribution", "Rate Of Change_study": "Rate Of Change", "Text Font": "ขนาดตัวอักษร", "in_dates": "ใน", "Clone": "คัดลอก", "Color 7_input": "Color 7", "Chop Zone_study": "Chop Zone", "Scales Properties": "คุณสมบัติมาตราส่วน", "Remove All Indicators": "ลบดัชนีชี้วัด", "Oscillator_input": "Oscillator", "Last Modified": "แก้ไขล่าสุด", "yay Color 0_input": "yay Color 0", "CRSI_study": "CRSI", "Chande Kroll Stop_study": "Chande Kroll Stop", "Hours_interval": "Hours", "Allow up to": "อนุญาติให้ขึ้นถึง", "Scale Right": "Scale ขวา", "Money Flow_study": "Money Flow", "siglen_input": "siglen", "Indicator Labels": "ชื่ออินดิเคเตอร์", "Toggle Percentage": "สลับเป็นเปอร์เซ็นต์", "Remove All Drawing Tools": "ลบรูปวาดทั้งหมด", "Remove all line tools for ": "ลบเครื่องมือที่เกียวกับเส้นทั้งหมดเพื่อ ", "Linear Regression Curve_study": "Linear Regression Curve", "Symbol_input": "Symbol", "increment_input": "increment", "Compare or Add Symbol...": "เปรียบเทียบ หรือ เพิ่ม...", "Number Of Line": "จำนวนเส้น", "Contracts": "สัญญา", "second": "วินาที", "Change Hours To": "เปลี่ยนชั่วโมงเป็น", "smoothD_input": "smoothD", "Falling_input": "Falling", "X_input": "X", "Percentage": "เปอร์เซ็นต์", "UpperLimit_input": "UpperLimit", "Entry price:": "ราคาเข้าซื้อ", "Circles": "กลม", "Ichimoku Cloud_study": "Ichimoku Cloud", "Signal smoothing_input": "Signal smoothing", "Toggle Log Scale": "สลับเป็นมาตราแบบล๊อก", "Apply Elliot Wave Major": "ใช้คลื่นอีเลียดหลัก", "Grid": "ตาราง", "Apply Elliot Wave Minor": "ใช้คลื่นอีเลียดรอง", "Rename...": "เปลี่ยนชื่อ...", "Smoothing_input": "Smoothing", "Color 3_input": "Color 3", "Jaw Length_input": "Jaw Length", "Inside": "ภายใน", "Delete all drawing for this symbol": "ลบทั้งหมดของสัญลักษณ์นี้", "Fundamentals": "ข้อมูลพื้นฐานเศรษฐกิจ และ อื่นๆ", "Keltner Channels_study": "Keltner Channels", "Long Position": "สถานะ Long", "Bands style_input": "Bands style", "Undo {0}": "ย้อนกลับ", "With Markers": "แสดงจุด", "Momentum_study": "Momentum", "MF_input": "MF", "Switch to the next chart": "เปลี่ยนไปชาร์ตถัดไป", "charts by TradingView": "ชาร์ตโดยเทรดดิ้งวิว", "Fast length_input": "Fast length", "Apply Elliot Wave": "ใช้คลื่นอีเลียด", "W_interval_short": "W", "Show Only Future Events": "แสดงเฉพาะเหตุการณ์ในอนาคตเท่านั้น", "Log Scale": "สเกลแบบค่าLog", "Equality Line_input": "Equality Line", "Short_input": "Short", "Line": "เส้น", "Down fractals_input": "Down fractals", "Fib Retracement": "การปรับฐานฟิโบนัคชี", "smalen2_input": "smalen2", "isCentered_input": "isCentered", "Border": "เส้นขอบ", "Klinger Oscillator_study": "Klinger Oscillator", "Absolute": "แน่นอน", "Style": "รูปแบบ", "Show Left Scale": "แสดงสเกลด้านซ้าย", "SMI Ergodic Indicator/Oscillator_study": "SMI Ergodic Indicator/Oscillator", "Aug": "สิงหา", "Last available bar": "แท่งราคาสุดท้ายทีมีให้", "Manage Drawings": "จัดการรูปวาด", "Analyze Trade Setup": "ตั้งค่าวิเคราะห์การเทรด", "No drawings yet": "ไม่มีรูปวาด", "Chande MO_input": "Chande MO", "jawLength_input": "jawLength", "TRIX_study": "TRIX", "Show Bars Range": "แสดงช่วงราคา", "RVGI_input": "RVGI", "Last edited ": "แก้ไขครั้งก่อน ", "signalLength_input": "signalLength", "Reset Settings": "รีเซ็ทการตั้งค่าใหม่", "d_dates": "d", "Point & Figure": "พ้อยท์และฟิกเกอร์", "August": "สิงหาคม", "Copy": "คัดลอก", "Source_compare": "แหล่งข้อมูล", "Down bars": "แท่งเทียนลง", "Correlation Coefficient_study": "Correlation Coefficient", "Delayed": "ล่าช้า", "Bottom Labels": "สัญลักษณ์จุดต่ำสุด", "Text color": "สีตัวอักษร", "Levels": "ระดับ", "Length_input": "Length", "Short Length_input": "Short Length", "teethLength_input": "teethLength", "Visible Range_study": "ระยะที่มองเห็นได้", "Hong Kong": "ฮ่องกง", "October": "ตุลาคม", "Lock All Drawing Tools": "ล๊อครูปวาดทั้งหมด", "Long_input": "Long", "Default": "ค่าเริ่มต้น", "Show Symbol Last Value": "แสดงค่าสุดท้ายของสัญลักษณ์", "Head & Shoulders": "หัวและไหล่", "Do you really want to delete Study Template '{0}' ?": "คุณต้องการลบต้นแบบการเรียน'{0}'จริงๆ หรือไม่?", "Favorite Drawings Toolbar": "ทูลบาร์วาดเขียนที่ชอบ", "Properties...": "ตั้งค่า...", "MA Cross_study": "MA Cross", "Square": "สี่เหลี่ยม", "Snapshot": "บันทึกภาพปัจจุบัน", "Crosshair": "เส้นร่างตัดกัน", "Signal line period_input": "Signal line period", "Previous Close Price Line": "เส้นราคาปิดก่อนหน้า", "Line Break": "เส้นตัด", "Show/Hide": "แสดง/ซ่อน", "Price Volume Trend_study": "Price Volume Trend", "Auto Scale": "Scale แบบอัตโนมัติ", "hour": "ชั่วโมง", "Delete chart layout": "ลบชาทส์", "Text": "ตัวอักษร", "F_data_mode_forbidden_letter": "F", "Apr": "เมษา", "Long RoC Length_input": "Long RoC Length", "Length3_input": "Length3", "+DI_input": "+DI", "Madrid": "มาดริด", "Use one color": "ใช้สีเดียว", "Sig_input": "Sig", "Exit Full Screen (ESC)": "ออกจากโหมดเต็มหน้าจอ(ESC)", "MACD_study": "MACD", "Show Economic Events on Chart": "แสดงปฏิทินข่าวบนชาร์ต", "%s ago_time_range": "%s ที่แล้ว", "Show Wave": "แสดงคลื่น", "Failure back color": "สีพื้นหลังความไม่สำเร็จ", "Below Bar": "ใต้แท่งราคา", "Time Scale": "สเกลเวลา", "Extend Left": "ยืดออกทางซ้าย", "Date Range": "ช่วงวันที่", "Price format is invalid.": "รูปแบบราคาไม่ถูกต้อง", "Show Price": "แสดงราคา", "Level_input": "Level", "Angles": "มุม", "Commodity Channel Index_study": "Commodity Channel Index", "Elder's Force Index_input": "Elder's Force Index", "Format": "ตั้งค่า", "Color bars based on previous close": "ให้สีของ Bars อ้างอิงจากราคาปิดของวันก่อนหน้า", "Change band background": "เปลี่ยนแถบหลัง", "Anchored Text": "ลิงค์", "Edit {0} Alert...": "แก้ไขการแจ้งเตือน {0}...", "Text:": "ตัวอักษร:", "Aroon_study": "Aroon", "Active Symbol": "สัญลักษณ์เริ่ม", "Lead 1_input": "Lead 1", "Short Position": "สถานะชอร์ท", "SMALen1_input": "SMALen1", "P_input": "P", "Apply Default": "ตั้งให้เป็นค่าเบื้องต้น", "SMALen3_input": "SMALen3", "Average Directional Index_study": "Average Directional Index", "Fr_day_of_week": "Fr", "Curve": "ดัดโค้ง", "Bars Pattern": "รูปแบบแท่ง", "D_input": "D", "Font Size": "ขนาดตัวอักษร", "Create Vertical Line": "สร้างเส้นแนวตั้ง", "p_input": "p", "Rotated Rectangle": "สี่เหลี่ยม (หมุนได้)", "Chart layout name": "ชื่อชาส์ท", "Fib Circles": "วงกลม Fib", "Apply Manual Decision Point": "ใช้การตัดสินใจด้วยมนุษย์", "Dot": "จุด", "All": "ทั้งหมด", "orders_up to ... orders": "orders", "Dot_hotkey": "จุด", "Lead 2_input": "Lead 2", "Save image": "บันทึกรูปภาพ", "Move Down": "เลื่อนลง", "Unlock": "ปลดล๊อค", "Box Size": "ขนาดกล่อง", "Navigation Buttons": "ปุ่มนำทาง", "Apply": "บันทึก", "Down Wave 3": "ลงเวฟ 3", "Plots Background_study": "Plots Background", "Fill": "เติม", "%d day": "%d days", "Hide": "ซ่อน", "Toggle Maximize Chart": "สลับเป็นชาร์ตขนาดใหญ่ที่สุด", "Scale Left": "Scale ซ้าย", "smalen3_input": "smalen3", "Down Wave C": "ลงเวฟ C", "Countdown": "นับถอยหลัง", "UO_input": "UO", "Go to Date...": "ไปที่วันที่...", "R_data_mode_realtime_letter": "R", "Extend Lines": "เส้นที่ยืด", "Conversion Line_input": "Conversion Line", "March": "มีนาคม", "Su_day_of_week": "Su", "Exchange": "ตลาดหลักทรัพย์", "Symbol Description": "คำอธิบายของสัญลักษณ์", "Double EMA_study": "Double EMA", "minute": "นาที", "All Indicators And Drawing Tools": "อินดิเคเตอร์ทั้งหมดและเครื่องมือวาด", "Sync drawings to all charts": "ซิงค์เครื่องมือวาดเขียนไปทุกชาร์ท", "Th_day_of_week": "Th", "Stay in Drawing Mode": "อยู่ในโหมดการวาดเขียน", "Dubai": "ดูไบ", "Save Chart Layout saves not just some particular chart, it saves all charts for all symbols and intervals which you are modifying while working with this Layout": "การบันทึกชาร์ทจะไม่ใช่การบันทึกเฉพาะชาร์ทใดชาร์ทหนึ่งเท่านั้น แต่จะเป็นการบันทึกชาร์ทในทุกๆสัญลักษณ์และช่วงเวลาที่คุณกำลังทำการแก้ไข ในขณะที่คุณกำลังทำงานกับแผนผังนี้อยู่", "Average True Range_study": "Average True Range", "Max value_input": "Max value", "MA Length_input": "MA Length", "in %s_time_range": "in %s", "Extend Bottom": "ยืดส่วนล่างออก", "sym_input": "sym", "DI Length_input": "DI Length", "Rome": "โรม", "SMI_input": "SMI", "Arrow": "ลูกศร", "Basis_input": "Basis", "Arrow Mark Down": "ลูกศรลง", "lengthStoch_input": "lengthStoch", "Taipei": "ไทเป", "Remove from favorites": "ลบออกจากรายการโปรด", "Show Symbol Previous Close Value": "แสดงสัญลักษณ์ราคาปิดก่อนหน้า", "Scale Series Only": "มาตราส่วนชุดข้อมูลเท่านั้น", "Simple": "ปกติ", "Arnaud Legoux Moving Average_study": "Arnaud Legoux Moving Average", "Smoothed Moving Average_study": "Smoothed Moving Average", "Lower Band_input": "Lower Band", "Do you really want to delete Drawing Template '{0}' ?": "คุณต้องการลบแบบของต้นแบบ'{0}'จริงๆ หรือไม่?", "VI +_input": "VI +", "Line Width": "ความกว้างเส้น", "Always Show Stats": "แสดงสถานะไว้ตลอด", "Down Wave 4": "ลงเวฟ 4", "ROCLen2_input": "ROCLen2", "Simple ma(signal line)_input": "Simple ma(signal line)", "Change Interval...": "เปลี่ยนช่วง", " Do you really want to delete Drawing Template '{0}' ?": " คุณต้องการลบวัตถุต้นแบบ '{0}' จริง ๆ หรือไม่?", "Color 6_input": "Color 6", "Close message": "ปิดข้อความ", "Base currency": "อัตราแลกเปลี่ยนฐาน", "Show Drawings Toolbar": "แสดงทูลบาร์วาดเขียน", "Chaikin Oscillator_study": "Chaikin Oscillator", "Price Source": "แหล่งราคา", "Market Open": "เปิดตลาด", "Color Theme": "โทนสี", "Awesome Oscillator_study": "Awesome Oscillator", "Bollinger Bands Width_input": "Bollinger Bands Width", "long_input": "long", "Error occured while publishing": "มีความผิดพลาดเกิดขึ้นขณะพิมพ์", "Color 1_input": "Color 1", "Moving Average Weighted_study": "Moving Average Weighted", "Save": "บันทึก", "Type": "ประเภท", "Wick": "ไส้เทียน", "Short period_input": "Short period", "Load Chart Layout": "โหลดชาท", "Fisher_input": "Fisher", "This chart layout has more than 1000 drawings, which is a lot! This may negatively affect performance, storage and publishing. We recommend to remove some drawings to avoid potential performance issues.": "แผนผังชาร์ตนี้มีเครื่องมือภาพวาดต่างๆ มากกว่า 1000 ชิ้น ซึ่งมากเกินไป ทำให้อาจมีผลกระทบในด้านประสิทธิภาพการใช้งาน พื้นที่การจัดเก็บ และการเผยแพร่ข้อมูล เราแนะนำให้ท่านทำการลบเครื่องมือภาพวาดบางส่วนออก เพื่อหลีกเลี่ยงปัญหาด้านประสิทธิภาพการใช้งานที่อาจเกิดขึ้น", "Left End": "ปลายซ้าย", "%d year": "%d years", "Always Visible": "แสดงไว้ตลอด", "S_data_mode_snapshot_letter": "S", "Elliott Wave Circle": "อีเลียตเวฟวงกลม", "Earnings breaks": "รายละเอียดผลประกอบการ", "Change Minutes From": "เปลี่ยนนาทีจาก", "Do not ask again": "ห้ามถามอีก", "Displacement_input": "Displacement", "smalen4_input": "smalen4", "CCI_input": "CCI", "Upper Deviation_input": "Upper Deviation", "(H + L)/2": "(ไฮ + โลว)/2", "Copied to clipboard": "คัดลอกไปยังคลิฟบอร์ด", "Accumulative Swing Index_study": "Accumulative Swing Index", "DEMA_input": "DEMA", "Move_input": "Move", "NV_input": "NV", "Choppiness Index_study": "Choppiness Index", "My Scripts": "ต้นฉบับของผม", "Merge Down": "รวมกับด้านล่าง", " per contract": " ต่อสัญญา", "Overlay the main chart": "เพิ่มลงบนกราฟหลัก", "Screen (No Scale)": "Screen (ไม่มี Scale)", "Delete": "ลบ", "Length MA_input": "ความยาว เอ็มเอ", "percent_input": "percent", "September": "กันยายน", "{0} copy": "{0} สำเนา", "Median_input": "Median", "Accumulation/Distribution_input": "Accumulation/Distribution", "C_in_legend": "C", "Weeks_interval": "Weeks", "smoothK_input": "smoothK", "Percentage_scale_menu": "เปอร์เซ็นต์", "Change Extended Hours": "เปลี่ยนส่วนขยายชั่วโมง", "MOM_input": "MOM", "h_interval_short": "h", "Change Interval": "เปลี่ยนระยะเวลา", "Change area background": "เปลี่ยนพื้นหลัง", "Send Backward": "นำไปไว้หลังสุด", "Custom color...": "สีกำหนดเอง...", "TRIX_input": "TRIX", "Show Price Range": "แสดงช่วงราคา", "Elliott Major Retracement": "การปรับฐานหลักของอีเลียตเวฟ", "ASI_study": "ASI", "Notification": "ข้อความบอกกร่าว", "Up Wave 1 or A": "ขึ้นเวฟ 1 หรือ A", "Periods_input": "Periods", "Forecast": "คาดการณ์", "Fraction part is invalid.": "ส่วนน้อยไม่ถูกต้อง", "Connecting": "กำลังเชื่อมต่อ", "Histogram_input": "Histogram", "The Extended Trading Hours feature is available only for intraday charts": "ฟีเจอร์ช่วงเวลาการเทรดเพิ่มเติม มีเฉพาะในชาร์ตระหว่างวันเท่านั้น", "StdDev_input": "StdDev", "EMA Cross_study": "รอยตัดอีเอ็มเอ", "Conversion Line Periods_input": "Conversion Line Periods", "Oversold_input": "Oversold", "Brisbane": "บริสเบน", "Monday": "วันจันทร์", "Add Symbol_compare_or_add_symbol_dialog": "เพิ่มสัญลักษณ์", "Williams %R_study": "Williams %R", "Symbol": "สัญลักษณ์", "Go to": "ไปที่", "Please enter chart layout name": "โปรดใส่ชื่อชาท", "Mar": "มีนา", "VWAP_study": "VWAP", "Offset": "สิ่งชดเชย", "Date": "วันที่", "Format...": "ตั้งค่า...", "Search": "ค้นหา", "Zig Zag_study": "Zig Zag", "Actual": "แท้จริง", "SUCCESS": "สำเร็จ", "Long period_input": "Long period", "length_input": "length", "roclen4_input": "roclen4", "Price Line": "เส้นราคา", "Zoom Out": "ขยายออก", "Stop Level. Ticks:": "ตัดขาดทุน", "Jul": "กรกฏา", "Circle Lines": "เส้นวงกลม", "Visual Order": "ลำดับการมองเห็น", "1. Slide your finger to select location for first anchor
    2. Tap anywhere to place the first anchor": "1. เลื่อนนิ้วไปยังจุดที่ต้องการ
    2. แตะหน้าจอหนึ่งครั้งเป็นการยืนยัน", "Sector": "ภาค", "powered by TradingView": "สนับสนุนโดยเทรดดิ้งวิว", "Stochastic_study": "Stochastic", "Sep": "กันยา", "TEMA_input": "TEMA", "Extend Left End": "ยืดออกทางซ้ายสุด", "Advance/Decline_study": "Advance/Decline", "New York": "นิวยอร์ค", "Flag Mark": "ธง", "Drawings": "รูปวาด", "Cancel": "ยกเลิก", "Bar #": "แท่งที่่ #", "Redo": "ย้อนกลับ", "Hide Drawings Toolbar": "ซ่อนทูลบาร์วาดเขียน", "Ultimate Oscillator_study": "Ultimate Oscillator", "Growing_input": "Growing", "Angle": "มุม", "Plot_input": "Plot", "Chicago": "ชิคาโก", "Color 8_input": "Color 8", "Indicators, Fundamentals, Economy and Add-ons": "ดัชนี้ชี้วัด, พื้นฐาน, ข้อมูลเศรษฐกิจ และ อื่นๆ", "h_dates": "h", "Bollinger Bands Width_study": "Bollinger Bands Width", "roclen3_input": "roclen3", "Overbought_input": "Overbought", "Extend Top": "ยืดส่วนบนออก", "Change Minutes To": "เปลี่ยนนาทีเป็น", "No study templates saved": "ไม่ได้บันทึกเทมเพลทการเรียนรู้", "Trend Line": "เส้นแนวโน้ม", "TimeZone": "เวลา", "Circle": "วงกลม", "Tu_day_of_week": "Tu", "RSI Length_input": "RSI Length", "Triangle": "สามเหลี่ยม", "Period_input": "Period", "Watermark": "ลายน้ำ", "Trigger_input": "Trigger", "SigLen_input": "SigLen", "Extend Right": "ยืดออกทางขวา", "Color 2_input": "Color 2", "Show Prices": "แสดงราคา", "{0} chart by TradingView": "{0} ชาร์ตโดนเทรดดิ้งวิว", "Arc": "เส้นโค้ง", "Edit Order": "แก้ไขคำสั่ง", "Arrow Mark Right": "ลูกศรขวา", "Extend Alert Line": "ยืดเส้นเตือนออก", "Background color 1": "สีพื้นหลัง 1", "RSI Source_input": "RSI Source", "Close Position": "ปิดสถานะ", "Any Number": "ตัวเลขใดๆ", "Stop syncing drawing": "หยุดการซิงค์เครื่องมือวาดเขียน", "Visible on Mouse Over": "แสดงเมื่อเม้าส์ชี้อยู่ด้านบน", "MA/EMA Cross_study": "เอ็มเอ/จุดตัดอีเอ็มเอ", "Vortex Indicator_study": "Vortex Indicator", "view-only chart by {user}": "ชาร์ท เฉพาะดูได้อย่างเดียว {user}", "ROCLen1_input": "ROCLen1", "M_interval_short": "M", "Chaikin Oscillator_input": "Chaikin Oscillator", "Price Levels": "ระดับราคา", "Show Splits": "แสดงตัวแยก", "Zero Line_input": "Zero Line", "Increment_input": "Increment", "Days_interval": "Days", "Show Right Scale": "แสดงสเกลด้านขวา", "Show Alert Labels": "แสดงป้ายการแจ้งเตือน", "Historical Volatility_study": "Historical Volatility", "Lock": "ล้อค", "length14_input": "length14", "High": "สูง", "Q_input": "Q", "Date and Price Range": "ช่วงวันที่และราคา", "Polyline": "กำหนดเอง", "Lock/Unlock": "ล๊อค/ปลดล๊อค", "Price Channel_study": "ช่องทางราคา", "Symbol Last Value": "ค่าสุดท้ายของสัญลักษณ์", "Above Bar": "เหนือแท่งราคา", "Studies": "การศึกษา", "Color 0_input": "Color 0", "Add Symbol": "เพิ่มสัญลักษณ์", "maximum_input": "maximum", "Paris": "ปารีส", "D_data_mode_delayed_letter": "D", "Sigma_input": "Sigma", "VWMA_study": "VWMA", "fastLength_input": "fastLength", "Width": "กว้าง", "Loading": "กำลังโหลด", "Template": "ต้นแบบ", "Use Lower Deviation_input": "Use Lower Deviation", "Parallel Channel": "ช่องขนาน", "Time Cycles": "วงรอบเวลา", "Divisor_input": "Divisor", "Down Wave 1 or A": "ลงเวฟ 1 หรือ A", "ROC_input": "ROC", "Dec": "ธันวา", "Ray": "ลำแสง", "Extend": "ยืดออก", "length7_input": "length7", "Bottom": "ปุ่ม", "Berlin": "เบอร์ลิน", "Undo": "ย้อนกลับ", "Window Size_input": "Window Size", "Mon": "จ.", "Reset Scale": "รีเซ็ทขนาด", "Long Length_input": "Long Length", "True Strength Indicator_study": "True Strength Indicator", "%R_input": "%R", "There are no saved charts": "ไม่มีชาร์ทที่บันทึกไว้", "Chart Properties": "ตั้งค่ากราฟ", "bars_margin": "ช่อง", "Decimal Places": "ตำแหน่งทศนิยม", "Show Indicator Last Value": "แสดงค่าสุดท้ายของอินดิเคเตอร์", "Initial capital": "เงินทุนเริ่มแรก", "Mass Index_study": "Mass Index", "More features on tradingview.com": "ฟีเจอร์มากมาย บนเทรดดิ้งวิวดอทคอม", "Objects Tree...": "ข้อมูลบนกราฟ...", "Remove Drawing Tools & Indicators": "ลบเครื่องมือวาดรูปและอินดิเคเตอร์", "Length1_input": "Length1", "Always Invisible": "ซ่อนไว้ตลอด", "Days": "วัน", "x_input": "x", "Save As...": "บันทึกเป็น...", "Parabolic SAR_study": "Parabolic SAR", "Any Symbol": "สัญลักษณ์ใดๆ", "Price Label": "ราคาล่าสุด", "Minutes": "หลายนาที", "Short RoC Length_input": "Short RoC Length", "Projection": "การคาดคะเน", "Jan": "มกรา", "Jaw_input": "Jaw", "Right": "ขวา", "Help": "ช่วยเหลือ", "Coppock Curve_study": "Coppock Curve", "Reset Chart": "รีเซ็ทกราฟ", "Marker Color": "สี จุด", "Left Axis": "แกนซ้าย", "Open": "เปิด", "YES": "ใช่", "longlen_input": "longlen", "Moving Average Exponential_study": "Moving Average Exponential", "Redo {0}": "ย้อนกลับ", "s_dates": "s", "Area": "พื้นที่", "Triangle Pattern": "รูปแบบสามเหลี่ยม", "Balance of Power_study": "Balance of Power", "EOM_input": "EOM", "Shapes_input": "Shapes", "Apply Manual Risk/Reward": "ใช้ คนกำหนด ความเสียง/ผลตอบแทน", "Sydney": "ซิดนีย์", "Indicators": "อินดิเคเตอร์", "q_input": "q", "Font Icons": "ไอคอนรูปแบบตัวอักษร", "%D_input": "%D", "Border Color": "สีขอบ", "Offset_input": "Offset", "Price Scale": "สเกลราคา", "HV_input": "HV", "Settings": "ตั้งค่า", "Start_input": "Start", "Elliott Impulse Wave (12345)": "คลื่นอีเลียตอิมพัลซิฟเวฟ (12345)", "Hours": "ชั่วโมง", "Send to Back": "นำไปไว้ข้างหลัง", "Color 4_input": "Color 4", "Los Angeles": "ลอสแองเจลิส", "Prices": "ราคา", "Hollow Candles": "แท่งเทียนแบบกลวง", "July": "กรกฎาคม", "Create Horizontal Line": "สร้างเส้นแนวนอน", "Minute": "นาที", "Cycle": "รอบ", "ADX Smoothing_input": "ADX Smoothing", "One color for all lines": "หนึ่งสีสำหรับทั้งเส้น", "m_dates": "m", "(H + L + C)/3": "(ไฮ + โลว + ปิด)/3", "Candles": "แท่งเทียน", "We_day_of_week": "We", "%d minute": "%d minutes", "Go to...": "ไปที่...", "This drawing is used in alert. If you remove the drawing, the alert will be also removed. Do you want to remove the drawing anyway?": "เครื่องมือนี้มีการกำหนดการแจ้งเตือนไว้ ถ้าคุณทำการลบเครื่องมือนี้ออกไป การแจ้งเตือนจะถูกลบโดยอัตโนมัติ คุณต้องการลบเครื่องมือนี้ใช่หรือไม่?", "Show Countdown": "แสดงการนับถอยหลัง", "Show alert label line": "แสดงเส้นการแจ้งเตือน", "Down Wave 2 or B": "ลงเวฟ 2 หรือ B", "MA_input": "MA", "Length2_input": "Length2", "not authorized": "ไม่ได้รับการอนุญาต", "Session Volume_study": "Session Volume", "Image URL": "URL รูปภาพ", "SMI Ergodic Oscillator_input": "SMI Ergodic Oscillator", "Show Objects Tree": "แสดงข้อมูล", "Price:": "ราคา:", "Bring to Front": "ส่งมาหน้าสุด", "Brush": "พู่กัน", "Not Now": "ไม่ใช้ตอนนี้", "C_data_mode_connecting_letter": "C", "SMALen4_input": "SMALen4", "Apply Default Drawing Template": "ใช้แบบฟอร์มมาตรฐานของโปรแกรม", "Save As Default": "บันทึกเป็นฉบับร่าง", "Invalid Symbol": "ข้อมูลผิดผลาด", "yay Color 1_input": "yay Color 1", "Hide Marks On Bars": "ซ่อนเครื่องหมายบนแท่งราคา", "Cancel Order": "ยกเลิกคำสั่ง", "Hide All Drawing Tools": "ซ่อนรูปวาดทั้งหมด", "WMA Length_input": "WMA Length", "Show Dividends on Chart": "แสดงเงินปันผลบนชาร์ต", "Borders": "เส้นขอบ", "Remove Indicators": "ลบอินดิเคเตอร์", "loading...": "กำลังโหลด....", "Closed_line_tool_position": "ปิด", "Rectangle": "สี่เหลี่ยม", "Change Resolution": "เปลี่ยนความละเอียด", "Up Wave 5": "ขึ้นเวฟ 5", "Degree": "องศา", " per order": " ต่อออเดอร์", "Up Wave 4": "ขึ้นเวฟ 4", "Jun": "มิถุนา", "Least Squares Moving Average_study": "Least Squares Moving Average", "Change Variance value": "เปลี่ยนค่าความแปรปรวน", "powered by ": "สนับสนุนโดย ", "Source_input": "Source", "Change Seconds To": "เปลี่ยนวินาทีเป็น", "%K_input": "%K", "Log Scale_scale_menu": "Log Scale", "Toronto": "โตรอนโต", "Please enter template name": "โปรดใส่ชื่อต้นแบบ", "Tokyo": "โตเกียว", "Events Breaks": "แจกแจงเหตุการณ์", "Months": "เดือน", "Symbol Info...": "ข้อมูลสัญลักษณ์...", "Elliott Wave Minor": "อีเลียตเวฟย่อย", "Read our blog for more info!": "อ่านบล๊อกของเราเพื่อทราบข้อมูลเพิ่มเติม!", "Measure (Shift + Click on the chart)": "เครื่องมือวัด (Shift + คลิก ลงบนกราฟ)", "Show Positions": "แสดงโพซิชั่น", "Dialog": "บทสนทนา", "Add To Text Notes": "เพิ่มไปยังโน๊ต", "Long length_input": "Long length", "Multiplier_input": "Multiplier", "Risk/Reward": "ความเสี่ยง/ผลตอบแทน", "Base Line Periods_input": "Base Line Periods", "Show Dividends": "แสดงเงินปันผล", "Relative Strength Index_study": "Relative Strength Index", "Show Earnings": "แสดงกำไร", "Elliott Triangle Wave (ABCDE)": "อีเลียตเวฟรูปแบบสามเหลี่ยม (ABCDE)", "Text Wrap": "บังคับให้ตัวหนังสืออยู่ในขอบเขตที่กำหนด", "Elliott Minor Retracement": "การปรับฐานย่อยของอีเลียตเวฟ", "DPO_input": "DPO", "Pitchfan": "พิชแฟน", "Slash_hotkey": "ขีด", "No symbols matched your criteria": "ไม่พบสัญลักษณ์ตามเกณฑ์ที่คุณกำหนด", "Icon": "ไอคอน", "lengthRSI_input": "lengthRSI", "Teeth Length_input": "Teeth Length", "Indicator_input": "Indicator", "Box size assignment method": "วิธีการให้งานโดยขนาดของกล่อง", "Open Interval Dialog": "เปิดหน้าต่างช่วงเวลา", "Shanghai": "เซี่ยงไฮ้", "Athens": "เอเธนส์", "Timezone/Sessions Properties...": "คุณสมบัติ โซนเวลา/เซสชั่น", "Content": "เนื้อหา", "middle": "กึ่งกลาง", "Intermediate": "ระยะกลาง", "Eraser": "ยางลบ", "Relative Vigor Index_study": "Relative Vigor Index", "Envelope_study": "Envelope", "Symbol Labels": "ป้ายสัญลักษณ์", "show MA_input": "show MA", "Horizontal Line": "เส้นแนวนอน", "O_in_legend": "O", "Confirmation": "การยืนยัน", "Lines:": "เส้น", "Hide Favorite Drawings Toolbar": "ซ่อนทูลบาร์วาดเขียนที่ชอบ", "Buenos Aires": "บูโนสแอเรส", "useTrueRange_input": "useTrueRange", "Bangkok": "กรุงเทพ", "Profit Level. Ticks:": "จุดขาย", "Show Date/Time Range": "แสดงวันที่/เวลา", "Level {0}": "ระดับ{0}", "Horz Grid Lines": "เส้นร่างแนวนอน", "-DI_input": "-DI", "Price Range": "ช่วงราคา", "day": "วัน", "deviation_input": "deviation", "week": "สัปดาห์", "Value_input": "Value", "Time Interval": "ช่วงเวลา", "ADX smoothing_input": "ADX smoothing", "%d hour": "%d hours", "Order size": "ขนาดคำสั่ง", "Drawing Tools": "เครื่องมือวาดแบบ", "Traditional": "ดั้งเดิม", "Chaikin Money Flow_study": "Chaikin Money Flow", "Ease Of Movement_study": "Ease Of Movement", "Defaults": "ค่าเริ่มต้น", "Interval is not applicable": "ช่วงระหว่างไม่สามารถใช้ได้", "short_input": "short", "depth_input": "depth", "RSI_input": "RSI", "Detrended Price Oscillator_input": "Detrended Price Oscillator", "Mo_day_of_week": "Mo", "center": "กึ่งกลาง", "Vertical Line": "เส้นแนวตั้ง", "Bogota": "โบโกต้า", "Show Splits on Chart": "แสดงตัวแยกบนชาร์ต", "ROC Length_input": "ROC Length", "Levels Line": "เส้นระดับ", "Events & Alerts": "เหตุการณ์ & การแจ้งเตือน", "ROCLen4_input": "ROCLen4", "Aroon Down_input": "Aroon Down", "Add To Watchlist": "เพิ่มในรายการด่วน", "Total": "ทั้งหมด", "Price": "ราคา", "left": "ชิดซ้าย", "Lock scale": "ล้อคสเกล", "Limit_input": "Limit", "Change Days To": "เปลี่ยนวันเป็น", "Price Oscillator_study": "Price Oscillator", "smalen1_input": "smalen1", "Drawing Template '{0}' already exists. Do you really want to replace it?": "ต้นแบบ '{0}'มีอยู่แล้ว คุณต้องการเปลี่ยนหรือไม่?", "KST_input": "KST", "Extend Right End": "ยืดออกทางขวาสุด", "Color based on previous close_input": "ขึ้นอยู่กับสีที่ราคาปิดครั้งก่อนหน้า", "Price_input": "Price", "Moving Average_study": "Moving Average", "McGinley Dynamic_study": "McGinley Dynamic", "Relative Volatility Index_study": "Relative Volatility Index", "Source Code...": "ซอร์สโค้ด...", "PVT_input": "PVT", "Show Hidden Tools": "แสดงเครื่องมือที่ซ่อนไว้", "Hull Moving Average_study": "Hull Moving Average", "Symbol Prev. Close Value": "สัญลักษณ์ราคาปิดก่อนหน้า", "Bring Forward": "ส่งมาด้านหน้า", "Remove Drawing Tools": "ลบเครื่องมือวาดรูป", "Friday": "วันศุกร์", "Zero_input": "Zero", "Company Comparison": "เปรียบเทียบหลักทรัพย์", "Stochastic Length_input": "Stochastic Length", "mult_input": "mult", "Scales Text": "อักษรเส้น Scale", "E_data_mode_end_of_day_letter": "E", "Top": "บน", "No Overlapping Labels_scale_menu": "No Overlapping Labels", "Stochastic RSI_study": "Stochastic RSI", "Oops!": "อุ๊ป!", "Horizontal Ray": "รังสีแนวนอน", "Ok": "ตกลง", "Script Editor...": "ตัวแก้ไขสคริปท์", "Are you sure?": "คุณแน่ใจ ?", "Signal_input": "Signal", "Error:": "เกิดความผิดพลาด", "Fullscreen mode": "โหมดเต็มหน้าจอ", "Add Text Note For {0}": "เพิ่มโน๊ตสำหรับ {0}", "K_input": "K", "ROCLen3_input": "ROCLen3", "Text Color": "สีตัวอักษร", "Rename Chart Layout": "ตั้งชื่อแผนผังชาร์ทใหม่", "Background color 2": "สีพื้นหลัง 2", "Drawings Toolbar": "ทูลบาร์วาดเขียน", "Moving Average Channel_study": "ช่องการเคลื่อนที่เฉลี่ย", "New Zealand": "นิวซีแลนด์", "CHOP_input": "CHOP", "Apply Defaults": "ตั้งให้เป็นค่าเบื้องต้น", "% of equity": "%ของ ส่วนทุน", "Extended Alert Line": "ยืดเส้นเตือนแล้ว", "Note": "บันทึกช่วยจำ", "OK": "ยืนยัน", "like": "likes", "Show": "แสดง", "{0} bars": "{0} ช่อง", "Lower_input": "Lower", "Created ": "สร้างสรรค์แล้ว ", "Warning": "คำเตือน", "Elder's Force Index_study": "Elder's Force Index", "Show Earnings on Chart": "แสดงกำไรบนชาร์ต", "Low": "ต่ำ", "Bollinger Bands %B_study": "Bollinger Bands %B", "Time Zone": "เขตเวลา", "right": "ชิดขวา", "%d month": "%d months", "Donchian Channels_study": "Donchian Channels", "Upper Band_input": "Upper Band", "start_input": "start", "No indicators matched your criteria.": "ไม่พบดัชนีชี้วัดที่ต้องการ", "Commission": "ค่าธรรมเนียม", "Down Color": "สีของแท่งลง", "Short length_input": "Short length", "Kolkata": "โคลคาต้า", "Triple EMA_study": "Triple EMA", "Technical Analysis": "ข้อมูลทางเทคนิค", "Show Text": "แสดงตัวหนังสือ", "Channel": "ช่อง", "Lagging Span 2 Periods_input": "Lagging Span 2 Periods", "Connecting Line": "การเชื่อมต่อเส้น", "Seoul": "โซว", "bottom": "ชิดล่าง", "Teeth_input": "Teeth", "Open Manage Drawings": "เปิดหน้าต่างตัวจัดการรูปวาด", "Save New Chart Layout": "บันทึกแผนผังชาร์ทใหม่", "Fib Channel": "ช่อง Fib", "Minutes_interval": "Minutes", "Up Wave 2 or B": "ขึ้นเวฟ 2 หรือ B", "Columns": "คอลัม", "Directional Movement_study": "Directional Movement", "roclen2_input": "roclen2", "Chande Momentum Oscillator_study": "Chande Momentum Oscillator", "Not applicable": "ไม่สามารถใช้ได้", "Bollinger Bands %B_input": "Bollinger Bands %B", "Save Chart Layout": "บันทึกการจัดวางชาร์ท", "Indicator Values": "ตัวแสดงมูลค่า", "Lips Length_input": "Lips Length", "Use Upper Deviation_input": "Use Upper Deviation", "L_in_legend": "L", "Remove custom interval": "ลบช่วงเวลาที่กำหนดเอง", "shortlen_input": "shortlen", "Hide Events on Chart": "ซ่อนเหตุการณ์บนชาทส์", "Williams Alligator_study": "Williams Alligator", "Profit Background Color": "สีพื้นหลังของกำไร", "Bar's Style": "รูปแบบบาร์", "Exponential_input": "Exponential", "Down Wave 5": "ลงเวฟ 5", "Stay In Drawing Mode": "จัดให้อยู่ในโหมดวาดรูป", "Comment": "ความคิดเห็น", "Connors RSI_study": "Connors RSI", "Bars": "บาร์", "Show Labels": "แสดงข้อความกำกับ", "December": "ธันวาคม", "Lock drawings": "ล้อคแบบ", "Border color": "สีขอบ", "Change Seconds From": "เปลี่ยนวินาทีจาก", "Left Labels": "สัญลักษณ์ทางซ้าย", "Insert Indicator...": "เพิ่มดัชนี...", "ADR_B_input": "ADR_B", "Paste %s": "วาง %s", "Change Symbol...": "เปลี่ยนสัญลักษณ์...", "Timezone": "เขตเวลา", "Previous": "ก่อนหน้า", "Oct": "ตุลา", "{0} financials by TradingView": "{0} ทางการเงินโดยเทรดดิ้งวิว", "Extend Lines Left": "เส้นที่ยืดด้านซ้าย", "Feb": "กุมภา", "Transparency": "โปร่งแสง", "No": "ไม่", "June": "มิถุนายน", "Cyclic Lines": "เส้นวัฏจักร", "length28_input": "length28", "ABCD Pattern": "แพทเทิร์น ABCD", "Objects Tree": "ข้อมูล", "Add": "เพิ่ม", "Scale": "มาตราส่วน", "On Balance Volume_study": "On Balance Volume", "Apply Indicator on {0} ...": "ใส่อิดิเคเตอร์บน {0}...", "NEW": "ใหม่", "Chart Layout Name": "ชื่อชาทส์", "Up bars": "แท่งเทียนขึ้น", "Hull MA_input": "Hull MA", "Lock Scale": "ล๊อค Scale", "distance: {0}": "ระยะ: {0}", "Extended": "ยืดออกแล้ว", "log": "ล๊อก", "NO": "ไม่", "Top Margin": "ระยะห่างทางด้านบน", "Up fractals_input": "Up fractals", "Insert Drawing Tool": "เพิ่มเครื่องมือวาด", "OHLC Values": "ราคา เปิด สูง ต่ำ และปิด OHLC ของแท่งเทียน", "Correlation_input": "Correlation", "Session Breaks": "เซสชั่นเบรค", "Add {0} To Watchlist": "เพิ่ม {0} ไปยังรายการด่วน", "Anchored Note": "ข้อความ", "lipsLength_input": "lipsLength", "Apply Indicator on {0}": "ใส่อิดิเคเตอร์บน {0}", "UpDown Length_input": "UpDown Length", "November": "พฤศจิกายน", "Balloon": "กล่องคำพูด", "Background Color": "สีพื้นหลัง", "Right Axis": "แกนขวา", "D_data_mode_delayed_streaming_letter": "D", "VI -_input": "VI -", "slowLength_input": "slowLength", "Click to set a point": "คลิกเพื่อสร้างจุด", "January": "มกราคม", "Failure text color": "สีตัวอักษรความไม่สำเร็จ", "Sa_day_of_week": "Sa", "Net Volume_study": "Net Volume", "Error": "ผิดพลาด", "Edit Position": "แก้ไขสถานะ", "RVI_input": "RVI", "Centered_input": "Centered", "Original": "ต้นกำเหนิด", "Left": "ซ้าย", "Simple ma(oscillator)_input": "Simple ma(oscillator)", "Compare": "เปรียบเทียบ", "Fisher Transform_study": "Fisher Transform", "Show Orders": "แสดงออเดอร์", "Zoom In": "ขยายเข้า", "Length EMA_input": "ความยาว อีเอ็มเอ", "Enter a new chart layout name": "ใส่ชื่อชาทใหม่", "Signal Length_input": "Signal Length", "FAILURE": "ล้มเหลว", "D_interval_short": "D", "MA with EMA Cross_study": "เอ็มเอกับจุดตัดอีเอ็มเอ", "Close": "ปิด", "ParabolicSAR_input": "ParabolicSAR", "MACD_input": "MACD", "Do not show this message again": "ห้ามโชว์ข้อความนี้อีก", "Up Wave 3": "ขึ้นเวฟ 3", "Arrow Mark Left": "ลูกศรซ้าย", "Slow length_input": "Slow length", "Line - Close": "เส้น-ปิด", "(O + H + L + C)/4": "(เปิด + ไฮ + โลว + ปิด)/4", "Confirm Inputs": "ยืนยันป้อนค่า", "Open_line_tool_position": "เปิด", "Lagging Span_input": "Lagging Span", "Cross": "ตัดกัน", "Mirrored": "กระจกเงา", "Vancouver": "แวนคูเวอร์", "Elliott Correction Wave (ABC)": "คลื่นอีเลียตคอเรคชั่นเวฟ (ABC)", "Error while trying to create snapshot.": "เกิดความผิดพลาดขณะที่พยามสร้างภาพถ่ายสแนปช็อท", "Templates": "ต้นแบบ", "Please report the issue or click Reconnect.": "โปรดรายงานปัญหาหรือคลิก Reconnect", "Normal": "ปกติ", "May": "พฤษภา", "Detrended Price Oscillator_study": "Detrended Price Oscillator", "Color 5_input": "Color 5", "Fixed Range_study": "ระยะคงที่", "Scale Price Chart Only": "มาตราส่วนชาร์ตราคาเท่านั้น", "auto_scale": "อัตโนมัติ", "Background": "พื้นหลัง", "Up Color": "สีของแท่งขึ้น", "Apply Elliot Wave Intermediate": "ใช้คลื่นอีเลียดระยะกลาง", "VWMA_input": "VWMA", "Lower Deviation_input": "Lower Deviation", "ATR_input": "ATR", "February": "กุมภาพันธ์", "Oops, something went wrong": "อุ๊ป!มีบางสิ่งผิดปกติ", "Add to favorites": "เพิ่มลงรายการโปรด", "Median": "ค่าเฉลี่ย", "ADX_input": "ADX", "Remove": "ลบ", "len_input": "len", "Arrow Mark Up": "ลูกศรขึ้น", "April": "เมษายน", "Extended Hours": "ยืดชั่วโมงแล้ว", "Crosses_input": "Crosses", "Middle_input": "Middle", "Sync drawing to all charts": "ซิงค์ภาพวาดไปทุกชาร์ต", "LowerLimit_input": "LowerLimit", "Know Sure Thing_study": "Know Sure Thing", "Copy Chart Layout": "คัดลอกชาทส์", "Compare...": "เปรียบเทียบ...", "1. Slide your finger to select location for next anchor
    2. Tap anywhere to place the next anchor": "1. เลื่อนนิ้วไปยังจุดที่ต้องการต่อไป
    2. แตะหน้าจอหนึ่งครั้งเป็นการยืนยัน", "Compare or Add Symbol": "เปรียบเทียบ หรือ เพิ่ม", "Color": "สี", "Aroon Up_input": "Aroon Up", "Singapore": "สิงค์โปร์", "Scales Lines": "เส้น Scale", "Ellipse": "วงกลม", "Up Wave C": "ขึ้นเวฟ C", "Show Distance": "แสดงระยะ", "Risk/Reward Ratio: {0}": "ความเสี่ยง/ผลตอบแทน : {0}", "Volume Oscillator_study": "Volume Oscillator", "Williams Fractal_study": "Williams Fractal", "Merge Up": "รวมกับด้านบน", "Right Margin": "ระยะห่างด้านขวา", "Moscow": "มอสโก", "Warsaw": "วอซอร์"} \ No newline at end of file diff --git a/charting_library/static/localization/translations/tr.json b/charting_library/static/localization/translations/tr.json index 06869fa2..2eec800b 100644 --- a/charting_library/static/localization/translations/tr.json +++ b/charting_library/static/localization/translations/tr.json @@ -1 +1 @@ -{"ticks_slippage ... ticks": "ticks", "Months_interval": "Aylar", "Percent_input": "Yüzde", "Hide Events on Chart": "Grafikteki Olayları Gizle", "RSI Length_input": "RSI Uzunluğu", "month": "ay", "London": "Londra", "roclen1_input": "roclen1", "Unmerge Down": "Aşağıdan Ayrıştır", "Percents": "Yüzdeler", "Search Note": "Not ara", "Minor": "Minör", "Do you really want to delete Chart Layout '{0}' ?": "'{0}' Grafik Yerleşimi silmek istediğinizden emin misiniz?", "Quotes are delayed by {0} min and updated every 30 seconds": "Fiyatlar {0} dakika gecikmeli ve her 30 saniye yenileştirir", "June": "Haziran", "Magnet Mode": "Mıknatıs Modu", "Grand Supercycle": "Birkaç On Yıllık", "OSC_input": "OSC", "Hide alert label line": "alarm etiket çizgisiyi gizle", "Volume_study": "İşlem Hacmi", "Lips_input": "Dudaklar", "Show real prices on price scale (instead of Heikin-Ashi price)": "Fiyat ölçeklerde gerçek fiyatları göster (Heikin-Ashi fiyatların yerine)", "Base Line_input": "Temel Çizgisi", "Step": "Önlem", "Elliott Wave Circle": "Elliott Dalga Devresi", "Fib Time Zone": "Fib Saat Dilimi", "SMALen2_input": "BHOUzun2", "Bollinger Bands_study": "Bollinger Bantlar", "Nov": "Kas", "Show/Hide": "Göster/Gizle", "Cancel Order": "Emiri İptal Et", "Sig_input": "Sig", "Move Up": "Yukarı Taşı", "Sigma_input": "Sigma", "This indicator cannot be applied to another indicator": "Bu göstergeyi başka göstergeye uygulamazsınız", "Gann Square": "Gann Karesi", "Count_input": "Sayım", "Full Circles": "Tam Daireler", "Industry": "İşleyim", "SMALen1_input": "BHOUzun1", "Cross_chart_type": "Artı", "Target Color:": "Hedefin Rengi:", "a day": "bir gün", "Pitchfork": "Dirgen", "Accumulation/Distribution_study": "Birikim/Dağıtım", "Rate Of Change_study": "Değişim Oranı", "Risk/Reward short": "Risk/Ödül satış", "in_dates": "za", "Color 7_input": "Renk 7", "Change Average HL value": "Orta HL değeri değiştir", "Scales Properties": "Ölçeklerin Özellikleri", "Trend-Based Fib Time": "Trend-Temeli Fib Zamanı", "Remove All Indicators": "Tüm Göstergelerı Kaldır", "Oscillator_input": "Osilatör", "Last Modified": "Son Değiştirilmiş", "yay Color 0_input": "yay Color 0", "Labels": "Etiketler", "Chande Kroll Stop_study": "Chande Kroll Durdurması", "Hours_interval": "Saat", "Scale Right": "Sağa Ölçeklendir", "Money Flow_study": "Para Akışı", "siglen_input": "siglen", "Indicator Labels": "Gösterge Etiketleri", "Source Code": "Kaynak Kodu", "__specialSymbolOpen__Tomorrow at__specialSymbolClose__ __dayTime__": "__specialSymbolOpen__ Yarın __specialSymbolClose__ __dayTime__'de", "Toggle Percentage": "Yüzdeyi Değiştir", "Remove All Drawing Tools": "Tüm Çizim Araçları Kaldır", "Remove all line tools for ": "Tüm çizgi araçları kaldır ", "Linear Regression Curve_study": "Linear Regression Curve", "Symbol_input": "Symbol", "Currency": "Döviz", "Upper Deviation_input": "Upper Deviation", "Rename Chart Layout": "Grafik Yerleşimiye Yeni Ad Ver", "__specialSymbolOpen__Last__specialSymbolClose__ __dayName__ __specialSymbolOpen__at__specialSymbolClose__ __dayTime__": "__specialSymbolOpen__Son__specialSymbolClose__ __dayName__ __specialSymbolOpen__ __specialSymbolClose__ __dayTime__'de", "Save Chart Layout": "Grafiğin Yerleşimi Sakla", "Allow up to": "Şu kadar izin ver", "Label": "Etiket", "second": "saniye", "Any Number": "Herhangi Numara", "smoothD_input": "smoothD", "Falling_input": "Düşüş", "Percentage": "Yüzde", "Donchian Channels_study": "Donchian Kanalları", "Entry price:": "Giriş fiyatı:", "RSI Source_input": "RSI Kaynağı", "Toggle Auto Scale": "Otomatik Ölçeğe Değiştir", " per contract": "kontrat başına", "Open Manage Drawings": "Çizimleri Yönetmeyi Aç", "Ichimoku Cloud_study": "Ichimoku Bulutu", "jawLength_input": "jawLength", "Toggle Log Scale": "Logaritmik Ölçeğe Değiştir", "Apply Elliot Wave Major": "Elliott Büyük Dalgasıyı Uygula", "Grid": "Karelaj", "Mass Index_study": "Kütle Endeksi", "Slippage": "Kayma", "Smoothing_input": "Smoothing", "Color 3_input": "Renk 3", "Jaw Length_input": "Çenenin Uzunluğu", "Almaty": "Alma-Ata", "Inside": "İçeri", "Delete all drawing for this symbol": "Bu sembolun tüm çizimleri değiştir", "Quotes are delayed by 10 min and updated every 30 seconds": "Koteler 10 dakika geç kalıyorlar ve her 30 saniye yenileştiriyorlar", "Keltner Channels_study": "Keltner Kanalları", "Long Position": "Alış Pozisyonu", "Bands style_input": "Bantların çeşiti", "Undo {0}": "Geri al {0}", "With Markers": "Markacı İle", "Momentum_study": "Hız", "MF_input": "HF", "On Balance Volume_study": "Denge İşlem Hacmi", "Switch to the next chart": "Sonraki grafiğe geç", "Change Hours To": "Saatleri Değiştir", "charts by TradingView": "grafiği sağlayan TradingView", "Long length_input": "Uzun uznuluğu", "Flipped": "Ters dönmüş", "Disjoint Angle": "Ayrısık Açısı", "Supermillennium": "Super-binyılık", "W_interval_short": "H", "Color 6_input": "Renk 6", "Log Scale": "Logaritmik Ölçek", "Line - High": "Çizgi - Yüksek", "Zurich": "Zürih", "Equality Line_input": "Eşitliğin Çizgisi", "Open": "Açılış", "Fib Wedge": "Fib Takozu", "Line": "Çizgi", "Session": "Seans", "Down fractals_input": "Aşağı fraktallar", "like_plural": "beğenler", "Fib Retracement": "Fib Düzelmesi", "smalen2_input": "smalen2", "isCentered_input": "isCentered", "Border": "Kenar", "Klinger Oscillator_study": "Klinger Osilatörü", "Absolute": "Mutlak", "Style": "Stil", "Show Left Scale": "Sol Ölçekleri Göster", "SMI Ergodic Indicator/Oscillator_study": "SMI Ergodic Indicator/Oscillator", "Aug": "Ağu", "Cross": "Artı", "Last available bar": "Son bulunan çubuk", "Manage Drawings": "Çizimleri Yönetme", "Analyze Trade Setup": "İşlem Ayarların Analizi", "No drawings yet": "Çizim henüz yoktur", "Chande MO_input": "Chande MO", "Copy link": "Kopyala", "TRIX_study": "TRIX", "MACD_study": "MACD", "RVGI_input": "RVGI", "Realtime": "Canlı", "Last edited ": "Son Değiştirilmiş ", "signalLength_input": "signalLength", "Middle_input": "Orta", "Reset Settings": "Ayarları Sıfırla", "PnF": "NvŞ", "d_dates": "g", "Point & Figure": "Nokta ve Şekil", "August": "Ağustos", "Recalculate After Order filled": "Emiri Dolduruktan Sonra Yeniden Hesapla", "Source_compare": "Kaynak", "Down bars": "Alt Çubuklar", "Correlation Coefficient_study": "Korelasyon Katsayısı", "Delayed": "Gecikmeli", "Bottom Labels": "Alt Etiketler", "Text color": "Metin rengi", "Levels": "Kademeler", "Short Length_input": "Kısa Uzunluk", "teethLength_input": "teethLength", "Failure text color": "Hatalın Metin Rengi", "instrument is not allowed": "bu araç kullanmaz", "FAILURE": "BAŞARISIZ", "Open {{symbol}} Text Note": "{{symbol}} Notu Aç", "October": "Ekim", "Lock All Drawing Tools": "Tüm Çizim Araçları Kilitle", "Target border color": "Hedefin kenar rengi", "Right End": "Sağ Sonu", "Show Symbol Last Value": "Sembolun Son Değeri Göster", "Head & Shoulders": "Baş & Omuzlar", "Do you really want to delete Study Template '{0}' ?": "'{0}' Çalışma Şablonu silmek istediğinizden emin misiniz?", "Favorite Drawings Toolbar": "Favori Çizim Araç Çubuğu", "Properties...": "Özellikler...", "MA Cross_study": "HO Cross", "Trend Angle": "Trend Açı", "Snapshot": "Şipşak", "Crosshair": "Artı gösterge", "Signal line period_input": "Sinyal çizginin süresi", "Timezone/Sessions Properties...": "Saat Diliminin/Seansların Özellikler...", "Line Break": "Çizgi Kesme", "Quantity": "Miktar", "Price Volume Trend_study": "Fiyat Hacmı Trend", "Auto Scale": "Otomatik ölçek", "hour": "saat", "Scales": "Ölçekler", "Delete chart layout": "Grafik yerleşimi sil", "Text": "Metin", "F_data_mode_forbidden_letter": "F", "Risk/Reward long": "Risk/Ödül alış", "Apr": "Nis", "Long RoC Length_input": "Uzun KVE Uzunluğu", "Length3_input": "Uzunluk3", "Upper_input": "Upper", "{0} copy": "{0} kopyala", "Use one color": "Tek renk kullanın", "Exit Full Screen (ESC)": "Tam Ekrandan Çık (ESC)", "Show Bars Range": "Çubuklerin Dizini Göster", "Show Economic Events on Chart": "Grafikteki Ekonomik Olayları Göster", "%s ago_time_range": "%s önce", "Zoom In": "Yaklaş", "Failure back color": "Hatalın Artalan Rengi", "Below Bar": "Çubuğun Altında", "Coordinates": "Kordinatlar", "Time Scale": "Zaman Ölçeği", "

    Only D, W, M intervals are supported for this symbol/exchange. You will be automatically switched to a D interval. Intraday intervals are not available because of exchange policies.

    ": "

    Bu sembola/borsaya adeceG, H, A aralıkları bulunabilir. Otomatik olrak G aralığa geçeceksiniz. Gün içi aralıklar borsa politikler yüzünden bulunmaz.

    ", "Extend Left": "Sol Tarafa Uzat", "Date Range": "Tarih Aralığı", "Min Move": "Min Taşı", "Price format is invalid.": "Fiyat biçimi geçersizidr.", "Show Price": "Fiyatı Göster", "Level_input": "Seviye", "Commodity Channel Index_study": "Emtia Kanal Endeksi", "Elder's Force Index_input": "Büyüklerin Kuvvet Endeksi", "Scales Properties...": "Ölçeklerin Özellikleri...", "Phoenix": "Feniks", "Format": "Biçim", "Color bars based on previous close": "Geçen kapaliğa göre renkli çubuk grafiği", "Change band background": "Bant arkaplan değiştir", "Marketplace Add-ons": "Marketplace Eklentiler", "Adjust Scale": "Ölçeği Düzenle", "Anchored Text": "Yapışık Metin", "Edit {0} Alert...": "{0} Alarmı Değiştir...", "Qty: {0}": "Mik: {0}", "Aroon_study": "Aroon", "show MA_input": "show MA", "Ashkhabad": "Aşkabad", "h_dates": "s", "Short Position": "Satış Pozisyonu", "Show Labels": "Etiketleri Göster", "Change Interval...": "Zaman Aralığı Değiştir", "Apply Default": "Varsayılan Uygula", "SMALen3_input": "BHOUzun3", "Average Directional Index_study": "Ortalama Yönsel Endeks", "Fr_day_of_week": "Cum", "Invite-only script. Contact the author for more information.": "Yalnızca-davet komutu. Fazla bilgiler için yazara ulaşın.", "Curve": "Eğri", "a year": "bir yıl", "H_in_legend": "Y", "Bars Pattern": "Çubuklar Kalıbı", "D_input": "D", "Right Labels": "Sağ Etiketler", "Change Interval": "Zaman Aralığı Değiştir", "p_input": "p", "Chart layout name": "Grafik yerleşimin adı", "Fib Circles": "Fib Çemberler", "Apply Manual Decision Point": "Elle Karar Noktasıyı Uygula", "Dot": "Nokta", "Target back color": "Hedefin arkaplan rengi", "All": "Tüm", "Show Positions": "Pozisyonları Göster", "orders_up to ... orders": "orders", "Lead 2_input": "Yol 2", "Save image": "Resimi sakla", "Fundamentals": "Esaslar", "Unlock": "Kilidi aç", "Up Wave 2 or B": "Yükseliş Dalgası 2 veya B", "Navigation Buttons": "Gezinti Düğmeleri", "Miniscule": "Miniskül", "Apply": "Uygula", "Target: {0} ({1}) {2}, Amount: {3}": "Hedef: {0} ({1}) {2}, Tutar: {3}", "Sine Line": "Sinüs Çizgisi", "{0} financials by TradingView": "{0} finansalları sağlayan TradingView", "%d day": "%d gün", "Hide": "Gizle", "Bottom": "Alt", "Target text color": "Hedefin metin rengi", "Scale Left": "Sola Ölçeklendir", "Elliott Wave Subminuette": "Elliott Dalgası Birkaç Dakikalık", "Down Wave C": "Düşüş Dalgası C", "Jan": "Oca", "Variance": "Değişiklik", "Source back color": "Kaynağın arkaplan rengi", "Text Alignment:": "Metin Hizalama:", "Oct": "Eki", "Apply Elliot Wave Minor": "Elliott Küçük Dalgasıyı Uygula", "Inputs": "Girdiler", "Conversion Line_input": "Dönüşüm Çizgisi", "March": "Mart", "Su_day_of_week": "Paz", "Up fractals_input": "Up fractals", "Regression Trend": "Regresyon Trendi", "Symbol Description": "Sembolun Tarifi", "Double EMA_study": "Çifte EMA", "minute": "dakika", "Price Oscillator_study": "Fiyat Osilatörü", "Sync drawings to all charts": "Çizimleri tüm grafiklere eşitle", "Chop Zone_study": "Kaşe Alanı", "Stop Color:": "Durdurmanın Rengi:", "Stay in Drawing Mode": "Çizim Modunda Kal", "Bottom Margin": "Alt Marjin", "Save Chart Layout saves not just some particular chart, it saves all charts for all symbols and intervals which you are modifying while working with this Layout": "Grafiğin Yerleşimi Sakla bir belirli grafiği saklanmıyor, o tüm sembollerin grafikleri ve sizin bu Yerleşimde çalışan değiştiren aralıkları saklar.", "Average True Range_study": "Ortalama Doğru Dizi", "Max value_input": "Max değer", "MA Length_input": "HO Uzunluğu", "Invite-Only Scripts": "Yalnızca-Davet Komutlar", "Time Interval": "Zaman Aralığı", "UpperLimit_input": "UpperLimit", "sym_input": "sym", "DI Length_input": "YG Uzunluğu", "Script Editor...": "Komut Düzenleyicisi...", "Extend Lines": "Çizgileri Uzat", "SMI_input": "SMI", "Change Days To": "Günleri Değiştir", "Square": "Kare", "Basis_input": "Temel", "Moving Average_study": "Hareketli Ortalama", "lengthStoch_input": "lengthStoch", "Taipei": "Taype", "Objects Tree": "Nesnelerin Ağacı", "Remove from favorites": "Favorilerden çıkar", "Copy": "Kopyala", "Scale Series Only": "Sadece Serileri Ölçeklendir", "Simple": "Basit", "Report a data issue": "Hata ihbar et", "Arnaud Legoux Moving Average_study": "Arnaud Legoux Hareketli Ortalama", "Technical Analysis": "Teknik Analiz", "Lower Band_input": "Alt Bandı", "Verify Price for Limit Orders": "Emirleri Sınırlandırmak için Fiyatı Doğrula", "VI +_input": "VI +", "Line Width": "Çizgi Genişliği", "Lead 1_input": "Yol 1", "Always Show Stats": "İstatistikleri Daima Göster", "Down Wave 4": "Düşüş Dalgası 4", "Down Wave 5": "Düşüş Dalgası 5", "Simple ma(signal line)_input": "Simple ma(signal line)", "Ray": "Işın", "Public Library": "Halka Açık Kitaplık", " Do you really want to delete Drawing Template '{0}' ?": "'{0}' Çizim Şablonu silmek istediğinizden emin misiniz?", "Down Wave 3": "Düşüş Dalgası 3", "Account Size": "Hesabın Ölçü", "Close message": "Mesajı kapat", "long_input": "long", "Show Drawings Toolbar": "Çizim Araç Çubuğu Göster", "Chaikin Oscillator_study": "Chaikin Osilatörü", "Price Source": "Fiyatın Kaynağı", "Market Open": "Piyasa Açık", "Know Sure Thing_study": "Know Sure Thing", "Color Theme": "Renk Teması", "Centered_input": "Ortalanmış", "Bollinger Bands Width_input": "Bollinger Bantların Genişliği", "Apply Indicator on {0} ...": "{0}'de Gösterge Uygula...", "Fib Speed Resistance Arcs": "Fib Hız Dirençin Yayı", "Error occured while publishing": "Yayınlama zamanda hata olmuş", "Fisher_input": "Fisher", "Color 1_input": "Renk 1", "Moving Average Weighted_study": "Ağırlıklı Hareketli Ortalama", "Save": "Sakla", "Type": "Çeşit", "Chart Layout Name": "Grafik Yerleşimin Adı", "Short period_input": "Kısa süre", "Load Chart Layout": "Grafik Yerleşimi Yükle", "Show Values": "Değerleri Göster", "Fib Speed Resistance Fan": "Fib Hız Dirençin Fanı", "This chart layout has more than 1000 drawings, which is a lot! This may negatively affect performance, storage and publishing. We recommend to remove some drawings to avoid potential performance issues.": "Bu grafik yerleşimide 1000'den fazla çizimler var, çoktur gerçekten! Çalışmayı, saklamayı ve yayınlamayı lomsuz etkilenir. Gizli güç çalıştırma problemleri kaldırmak için birkaç çizimleri kaldırın.", "Left End": "Sol Sonu", "%d year": "%d yıl", "Always Visible": "Daima Görünür", "S_data_mode_snapshot_letter": "S", "post-market": "açılış sonrası", "Change Minutes To": "Dakikaları Değiştir", "Earnings breaks": "Kazanç aralar", "Do not ask again": "Gene sorma", "MTPredictor": "MTÖngörücü", "Tue": "Sal", "smalen4_input": "smalen4", "CCI_input": "CCI", "Unmerge Up": "Yukarıdan Ayrıştır", "increment_input": "artım", "(H + L)/2": "(Y + D)/2", "Source Code...": "Kaynak Kodu...", "XABCD Pattern": "XABCD Formasyonu", "Schiff Pitchfork": "Schiff Dirgeni", "powered by {0}": "temsil eden {0}", "DEMA_input": "İÜHO", "NV_input": "NV", "Choppiness Index_study": "Çırpıntılı Endeksi", "Study Template '{0}' already exists. Do you really want to replace it?": "'{0}' Çalışma Şablonu zaten vardır. Onu yer değiştirmek mi istiyorsunuz?", "Merge Down": "Aşağıya doğru Birleştir", "Th_day_of_week": "Per", "Studies": "Çalışmalar", "eod delayed": "eod gecikmeli", "Delete": "Sil", "in %s_time_range": "%s içeride", "percent_input": "percent", "September": "Eylül", "Length_input": "Uzunluk", "Avg HL in minticks": "Mintiklerde orta HL", "Accumulation/Distribution_input": "Birikim/Dağıtım", "Sync": "Eşitle", "C_in_legend": "K", "Weeks_interval": "Haftalar", "smoothK_input": "smoothK", "Percentage_scale_menu": "Yüzde", "Change Extended Hours": "Genişletilmiş Saatleri Değiştir", "MOM_input": "MOM", "h_interval_short": "s", "Rotated Rectangle": "Döndürülmüş Dikdörtgen", "Modified Schiff": "Değiştirilmiş Schiff", "Symbol": "Sembol", "Send Backward": "Geriye Gönder", "Mexico City": "Meksiko", "TRIX_input": "TRIX", "Show Price Range": "Fiyat Dizini Göster", "Elliott Major Retracement": "Elliott Büyük Düzelme", "Notification": "Bildirim", "Fri": "Cum", "just now": "şimdi", "Forecast": "Tahmin", "hour_plural": "saat", "Fraction part is invalid.": "Fraksiyon kısımı geçerisizdir.", "Connecting": "Bağlanıyorum", "Ghost Feed": "Hayalet Çizgiler", "Histogram_input": "Histogram", "The Extended Trading Hours feature is available only for intraday charts": "Uzatılmiş İşlem Saatlar özelliği sadece gün içi grafiklerde bulunabilir.", "StdDev_input": "StdDev", "Change Minutes From": "Dakikaları Değiştir", "Relative Strength Index_study": "Göreceli Güç Endeksi", "Interval is not applicable": "Zaman aralığı yazar değil", "My Scripts": "Benim Komutlarım", "Monday": "Pazartesi", "-DI_input": "-DI", "short_input": "short", "top": "üst", "a month": "bir ay", "Precision": "Hassasiyet", "depth_input": "depth", "Please enter chart layout name": "Lütfen grafik yerleşimin adını yazın", "Offset": "Ofset", "Date": "Tarih", "Format...": "Biçim...", "__dayName__ __specialSymbolOpen__at__specialSymbolClose__ __dayTime__": "__dayName__ __specialSymbolOpen__ __specialSymbolClose__ __dayTime__'de", "Toggle Maximize Pane": "Pano Enbüyütlemeyi Değiştir", "Periods_input": "Süreler", "Zig Zag_study": "Zig Zag", "Actual": "Gerçek", "SUCCESS": "BAŞARILI", "Detrended Price Oscillator_input": "Detrend Fiyat Osilatörü", "Drawings Toolbar": "Çizim Araç Çubuğu", "length_input": "length", "Close Position": "Pozisyonu Kapat", "Price Line": "Fiyat Çizgisi", "Area With Breaks": "Kesme Alanı", "Zoom Out": "Uzaklaş", "Stop Level. Ticks:": "Durdurmanın Kademesi. Adımlar:", "Jul": "Tem", "Above Bar": "Çubuğun Üzerine", "Visual Order": "Görsel Sıra", "Warning": "Dikkat", "__specialSymbolOpen__Yesterday at__specialSymbolClose__ __dayTime__": "__specialSymbolOpen__ Yarın __specialSymbolClose__ __dayTime__'de", "Stop Background Color": "Durdurmanın Arkaplan Rengi", "Slow length_input": "Slow length", "Conversion Line Periods_input": "Dönüşüm Çizginin Devreleri", "Sector": "Sektör", "powered by TradingView": "grafiği sağlayan TradingView", "Text:": "Metin:", "Stochastic_study": "Stokastik", "Apply WPT Down Wave": "WPT Düşüş Dalgayı Koy", "Marker Color": "İşaretçi Rengi", "TEMA_input": "TEMA", "Apply WPT Up Wave": "WPT Yükseliş Dalgayı Koy", "Min Move 2": "Min Taşı 2", "Directional Movement_study": "Yönsel Hareket", "Extend Left End": "Sol Sonu Uzat", "Advance/Decline_study": "Advance/Decline", "Flag Mark": "Bayrak", "Drawings": "Çizimler", "Fast length_input": "Hızlı uzunluk", "Cancel": "İptal", "Bar #": "Çubuk No.", "Median_input": "Medyan", "Redo": "Yinele", "Hide Drawings Toolbar": "Çizim Araç Çubuğu Gizle", "Ultimate Oscillator_study": "Nihai Osilatör", "This chart layout has a lot of objects and can't be published! Please report to {0} for further details.": "Bu grafik yerleştirmeside birçok yayınlayabilir semboller var! Fazla öğrenmek isterseniz {0}'a ihbar edin.", "Vert Grid Lines": "Vert Kılavuz Çizgileri", "Growing_input": "Büyüyen", "Angle": "Açı", "%d year_plural": "%d yıl", "Plot_input": "Plot", "Chicago": "Çikago", "Color 8_input": "Renk 8", "Indicators, Fundamentals, Economy and Add-ons": "Göstergeler, Temeller, Ekonomi ve Eklentiler", "Search": "Ara", "Bollinger Bands Width_study": "Bollinger Bantlar Genişliği", "roclen3_input": "roclen3", "Overbought_input": "Fazla alınmış", "DPO_input": "DFO", "Levels Line": "Çizgi Kademeler", "No study templates saved": "Saklanmış çalışma şablon yoktur", "Trend Line": "Trend Çizgi", "Relative Vigor Index_study": "Göreceli Vigor Endeksi", "Your chart is being saved, please wait a moment before you leave this page.": "Grafiğinizi saklıyoruz, lütfen biraz sabırlı olun, bitmediği kadar sayfada kalın.", "Circle": "Devre", "Price Range": "Fiyat Aralığı", "Extended Hours": "Genişletilmiş Saatler", "Triangle": "Üçgen", "Line With Breaks": "Kesme Çizgi", "Period_input": "Süre", "Watermark": "Filigran", "Trigger_input": "Trigger", "SigLen_input": "SinUzun", "Clone": "Klon", "Color 2_input": "Renk 2", "Show Prices": "Fiyatları Göster", "Contracts": "İletişim", "{0} chart by TradingView": "{0} grafiği sağlayan TradingView", "Timezone/Sessions": "Saat Dilimi/Seanslar", "Save Indicator Template As...": "Gösterge Şablonu Yeni Adla Sakla...", "Arrow Mark Right": "Ok İşareti Sağa", "Background color 2": "Arkaplan rengi 2", "Background color 1": "Arkaplan rengi 1", "Circles": "Çemberler", "McGinley Dynamic_study": "McGinley Dinamik", "Visible on Mouse Over": "Fare Geldiğinde Görünür", "Thu": "Per", "Vortex Indicator_study": "Vorteks Gösterge", "Williams Alligator_study": "Williams Gator", "Time Cycles": "Zaman Ayarıları", "ROCLen1_input": "ROCUzun1", "M_interval_short": "A", "Change Symbol...": "Sembolu Değiştir...", "Price Levels": "Fiyatın Kademeler", "Show Splits": "Bölünmüşleri Göster", "Zero Line_input": "Zero Line", "__specialSymbolOpen__Today at__specialSymbolClose__ __dayTime__": "__specialSymbolOpen__Bugün__specialSymbolClose__ __dayTime__'de", "Increment_input": "Artım", "Days_interval": "Gün", "Show Right Scale": "Sağ Ölçekleri Göster", "Show Alert Labels": "Alarm Etiketleri Göster", "Net Volume_study": "Net İşlem Hacmi", "Lock": "Kilitle", "length14_input": "length14", "Sa_day_of_week": "Cmt", "High": "Yüksek", "ext": "ek", "Date and Price Range": "Tarih ve Fiyat Aralığı", "Polyline": "Devamlı çizgi", "Reconnect": "Tekrar Bağlan", "Add to favorites": "Favorilere ekle", "Saturday": "Cumartesi", "Symbol Last Value": "Sembolun Son Değer", "Color 0_input": "Renk 0", "maximum_input": "maximum", "Wed": "Çar", "D_data_mode_delayed_letter": "D", "Symbol Info": "Sembolun Bilgisi", "Pyramiding": "Piramit", "fastLength_input": "fastLength", "Width": "Genişlik", "Loading": "Yüklüyor", "Historical Volatility_study": "Tarihi Volatilite", "Template": "Şablon", "Compare or Add Symbol...": "Sembolu Ekle veya Kıyasla...", "Parallel Channel": "Paralel Kanalı", "Stop: {0} ({1}) {2}, Amount: {3}": "Durdurma: {0} ({1}) {2}, Tutar: {3}", "Second fraction part is invalid.": "İkinci fraksiyon kısmı geçersizdir.", "Divisor_input": "Bölen", "Down Wave 1 or A": "Düşüş Dalgası 1 veya A", "ROC_input": "ROC", "Dec": "Ara", "Extend": "Uzat", "length7_input": "length7", "Toggle Maximize Chart": "Grafik Enbüyütlemeyi Değiştir", "Undo": "Geri al", "Window Size_input": "Window Size", "Mon": "Pzt", "Reset Scale": "Ölçeği Sıfırla", "Long Length_input": "Uzun Uzunluğu", "True Strength Indicator_study": "Doğru Güç Gösterge", "%R_input": "%R", "There are no saved charts": "Saklanmış grafikleriniz yoktur.", "Chart Properties": "Grafik Özellikleri", "bars_margin": "çubuklar", "Show Indicator Last Value": "Göstergenin Son Değeri Göster", "Initial capital": "ilk marj", "Show Angle": "Açıyı Göster", "Indicator Last Value": "Göstergenin Son Değer", "More features on tradingview.com": "Fazla özellikler burda - tradingview.com", "smalen3_input": "smalen3", "Length1_input": "Uzunluk1", "Always Invisible": "Daima Görünmez", "Days": "Günler", "x_input": "x", "Save As...": "Yeni Adla Sakla...", "Lock/Unlock": "Kilitle/Kilidi aç", "Elliott Double Combo Wave (WXY)": "Elliott İkili Kombo Dalgası (WXY)", "Parabolic SAR_study": "Parabolik SAR", "Fisher Transform_study": "Fisher Dönüşümü", "Show Hidden Tools": "Gizledi Araçları Göster", "Hollow Candles": "İçi Boş Mumlar", "Any Symbol": "Herhangi Sembol", "UO_input": "UO", "Stats Text Color": "İstatistiklerin Metin Rengi", "Minutes": "Dakikalar", "Short RoC Length_input": "Kısa RoC Uzunluğu", "Show Orders": "Emirleri Göster", "Countdown": "Gerisayım", "Jaw_input": "Çene", "Right": "Sağ", "Help": "Yardım", "Coppock Curve_study": "Coppock Eğrisi", "Reset Chart": "Grafiği Sıfırla", "Sep": "Eyl", "Sunday": "Pazar", "Themes": "Temalar", "Left Axis": "Sol Eksen", "YES": "EVET", "longlen_input": "longlen", "Moving Average Exponential_study": "Üssel Hareketli Ortalama", "Source border color": "Kaynağın kenar rengi", "Redo {0}": "{0}. Yinele", "Cypher Pattern": "Açarsöz Formasyonu", "s_dates": "ler", "Move Down": "Aşağı Taşı", "Caracas": "Karakas", "Area": "Alan", "invalid symbol": "geçersiz sembol", "Triangle Pattern": "Üçgen Formasyonu", "Gann Fan": "Gann Fanı", "Balance of Power_study": "Güç Dengesi", "EOM_input": "EOM", "Font Size": "Font Boyutu", "Apply Manual Risk/Reward": "Elle Risk/Ödül Uygula", "Market Closed": "Piyasa Kapalı", "Sydney": "Sidney", "Indicators": "Göstergeler", "q_input": "q", "You are notified": "Bilgililendirilmişsiniz", "%D_input": "%D", "Border Color": "Kenarlık Rengi", "Offset_input": "Bedel", "Price Scale": "Fiyat Ölçesi", "HV_input": "HV", "Seconds": "Saniye", "(H + L + C)/3": "(Y + D + K)/3", "Start_input": "Başlat", "R_data_mode_realtime_letter": "R", "Hours": "Saatler", "Send to Back": "En Geriye Gönder", "Color 4_input": "Renk 4", "Angles": "Açılar", "Prices": "Fiyatlar", "Extended Hours (Intraday Only)": "Genişletilmiş Saatler (Sadece Gün İçi)", "July": "Temmuz", "Create Horizontal Line": "Yatay Çizgi Oluştur", "Minute": "Birkaç Günlük", "Cycle": "Birkaç Yıllık", "ADX Smoothing_input": "ADX Düzleştirilmiş", "One color for all lines": "Tüm çizgilere tek renk", "m_dates": "a", "Settings": "Ayarlar", "Drawing Tools": "Çizim Araçlar", "Candles": "Mum Grafikler", "We_day_of_week": "Çar", "Width (% of the Box)": "Genişlik (Kutudan %)", "%d minute": "%d dakika", "week_plural": "hafta", "Pip Size": "Pip Miktarı", "Wednesday": "Çarşamba", "This drawing is used in alert. If you remove the drawing, the alert will be also removed. Do you want to remove the drawing anyway?": "Bu çizimi alarmda kullanıyorlar. Eğer bu çizimi kaldırsınız, alarm da kaldırdı olur. Çizim herhalde kaldırmak istiyor musunuz?", "Hide All Drawing Tools": "Tüm Çizim Araçları Gizle", "Show alert label line": "Alarm etiket çizgisiyi göster", "Down Wave 2 or B": "Düşüş Dalgası 2 veya B", "MA_input": "HO", "Detrended Price Oscillator_study": "Trend Azaltma Fiyat Osilatörü", "not authorized": "yetkisiz", "Bar's Style": "Çubukların Türü", "Image URL": "Resimin URL", "SMI Ergodic Oscillator_input": "SMI Ergodic Osilatörü", "Show Objects Tree": "Nesnelerin Ağacını Göster", "Primary": "İlksel", "Price:": "Fiyat", "Gann Box": "Gann Kutusu", "Bring to Front": "En öne getir", "Brush": "Fırça", "Not Now": "Sonra", "lengthRSI_input": "lengthRSI", "Yes": "Evet", "{0} P&L: {1}": "{0} Kar ve Zarar: {1}", "Events & Alerts": "Olaylar ve Alarmlar", "+DI_input": "+DI", "Apply Default Drawing Template": "Varsayılan Çizim Şablonu Uygula", "Compact": "Kompakt", "Save As Default": "Varsayılan Olarak Sakla", "Invalid Symbol": "Geçersiz Sembol", "Inside Pitchfork": "Dirgenin İçeri", "yay Color 1_input": "yay Color 1", "Quandl is a huge financial database that we have connected to TradingView. Most of its data is EOD and is not updated in real-time, however the information may be extremely useful for fundamental analysis.": "Quandl büyük bir finansal veritabanıdır, onu TradingView'e birleştirdik. Onların verilerin çoğu EOD ve canlı tenileştirmiyor, ama bu bilgiler sizin esaslı analizlerinize çok faydalı olabilirler.", "Hide Marks On Bars": "Çubuklardaki Markacıları Gizle", "Note": "Not", "Show Countdown": "Gerisayımı Göster", "WMA Length_input": "WMA Length", "Show Dividends on Chart": "Grafikteki Temettüleri Göster", "Show Executions": "İcraları Göster", "Borders": "Kenarlar", "month_plural": "ay", "loading...": "yüklüyor...", "Closed_line_tool_position": "Kapalı", "Columns": "Sütunlar", "Change Resolution": "Çözünürlüğü Değiştir", "Indicator Arguments": "Gösterge Argümanlar", "Fib Spiral": "Fib Spiralı", "Apply Elliot Wave": "Elliot Dalgayı Koy", "%d minute_plural": "%d dakika", "Degree": "Derece", " per order": "emir başına", "Line - HL/2": "Çizgi - İB/2", "Up Wave 4": "Yükseliş Dalgası 4", "Jun": "Haz", "Least Squares Moving Average_study": "En Küçük Karelerin Hareketli Ortalama", "Change Variance value": "Değişiklik değeri değiştir", "Overlay the main chart": "Ana grafiğin üstüne yerleştir", "powered by ": "temsil eden ", "Source_input": "Source", "Change Seconds To": "Saniyeleri Değiştir", "%K_input": "%K", "Success back color": "Başarının arkaplan rengi", "Please enter template name": "Şablonun adını yazın", "Symbol Name": "Sembolun Adı", "Events Breaks": "Olayların Kesmesi", "Study Templates": "Çalışma Şablonlar", "Months": "Aylar", "Symbol Info...": "Sembolun Bilgisi...", "Elliott Wave Minor": "Elliott Küçük Dalgası", "Read our blog for more info!": "Fazla öğrenmek isterseniz blogumuza okuyun!", "Measure (Shift + Click on the chart)": "Ölçüm yap (Shift + Grafiğin üstüne tıkla)", "Override Min Tick": "Fiyatın Min Adımı", "Thursday": "Perşembe", "Dialog": "Diyalog", "Add To Text Notes": "Notlara Ekle", "Elliott Triple Combo Wave (WXYXZ)": "Elliott Üçlü Kombo Dalgası (WXYXZ)", "Multiplier_input": "Çarpan", "Risk/Reward": "Risk/Ödül", "Base Line Periods_input": "Temel Çizgilerin Devreleri", "Show Dividends": "Temettüleri Göster", "pre-market": "açılış öncesi", "Top Labels": "Üst Etiketler", "Show Earnings": "Kazançları Göster", "Line - Open": "Çizgi - Açık", "%d day_plural": "%d gün", "Elliott Triangle Wave (ABCDE)": "Elliott Üçgen Dalgası (ABCDE)", "Minuette": "Birkaç Saatlık", "Text Wrap": "Metin Akışı", "Reverse Position": "Karşıt Pozisyon", "Elliott Minor Retracement": "Elliott Küçük Düzelme", "Pitchfan": "Yunuslayan Fan", "No symbols matched your criteria": "Kriterinize uygun hiçbir gösterge bulunamadı", "Icon": "Simge", "Short_input": "Kısa", "Tuesday": "Salı", "Indicator_input": "Gösterge", "Open Interval Dialog": "Aralık Diyalogu Aç", "Shanghai": "Şangay", "Athens": "Atina", "Q_input": "Q", "Content": "İçerik", "middle": "orta", "Lock Cursor In Time": "Kürsörü Zamanla Kilitle", "Intermediate": "Birkaç Hafta-Aylık", "Eraser": "Silici", "TimeZone": "Saat Dilimi", "Envelope_study": "Zarf", "Symbol Labels": "Sembol Etiketleri", "Active Symbol": "Etkin Sembol", "Horizontal Line": "Yatay Çizgi", "O_in_legend": "A", "Confirmation": "Onaylama", "HL Bars": "İB Çubuklar", "Add Alert": "Alarm Ekle", "Lines:": "Çizgiler", "Hide Favorite Drawings Toolbar": "Favori Çizim Araç Çubuğu Gizle", "useTrueRange_input": "useTrueRange", "Profit Level. Ticks:": "Kar Kademeler. Adımlar:", "Show Date/Time Range": "Tarih/Saat Dizini Göster", "Level {0}": "{0}. Kademe", "Horz Grid Lines": "Yatay Kılavuz Çizgileri", "Text Notes are available only on chart page. Please open a chart and then try again.": "Notlar sadece grafik pencerede bulunabilir. Lütfen grafiği açın ve tekrar deneyin.", "Tu_day_of_week": "Sal", "day": "gün", "deviation_input": "deviation", "week": "hafta", "Base currency": "Basit Döviz", "VWMA_study": "HAHO", "Success text color": "Başarının metin rengi", "ADX smoothing_input": "ADX düzleştirilmiş", "%d hour": "%d saat", "Order size": "Emirin boyutu", "Displacement_input": "Yerdeğişim", "Save Indicator Template As": "Gösterge Şablonu Yeni Adla Sakla", "ADR_B_input": "ADR_B", "Chaikin Money Flow_study": "Chaikin Para Akışı", "Ease Of Movement_study": "Hareket Kolaylığı", "Defaults": "Varsayılanlar", "Oversold_input": "Fazla satılmış", "Williams %R_study": "Williams %R", "Visual settings...": "Görsel ayarları...", "RSI_input": "RSI", "Long period_input": "Uzun süre", "Mo_day_of_week": "Pzt", "center": "orta", "Vertical Line": "Dikey Çizgi", "Show Splits on Chart": "Grafikte Bölünmüşleri Göster", "Sorry, the Copy Link button doesn't work in your browser. Please select the link and copy it manually.": "Afedersiniz ama Linki Kopyala düğmesi sizin tarayıcınızda çalışmıyor. Linki elle seçerek kopyalayınız lütfen.", "X_input": "X", "C_data_mode_connecting_letter": "C", "Simple ma(oscillator)_input": "Simple ma(oscillator)", "SMALen4_input": "BHOUzun4", "ROCLen4_input": "ROCUzun4", "Aroon Down_input": "Aroon Düşüş", "Add To Watchlist": "İzleme Listesiye Ekle", "Total": "Toplam", "Extend Right": "Sağ Tarafa Uzat", "left": "sol", "Lock scale": "Ölçeği kilitle", "Time Levels": "Zaman Kademeler", "Arrow": "Ok İşareti", "smalen1_input": "smalen1", "Drawing Template '{0}' already exists. Do you really want to replace it?": "'{0}' Çizim Şablonu zaten vardır. Onu yer değiştirmek mi istiyorsunuz?", "Extend Right End": "Sağ Sonu Uzat", "Fans": "Fanlar", "Line - Low": "Çizgi - Düşük", "Price_input": "Fiyat", "Close_input": "Kapanış", "Arrow Mark Down": "Ok İşareti Aşağa", "Weeks": "Haftalar", "Modified Schiff Pitchfork": "Değiştirilmiş Schiff Dirgeni", "Relative Volatility Index_study": "Göreceli Uçuculuk Endeksi", "Elliott Impulse Wave (12345)": "Elliott Darbe Dalgası (12345)", "PVT_input": "PVT", "Show Only Future Events": "Sadece Gelecek Olayları Göster", "Circle Lines": "Çember Çizgiler", "Hull Moving Average_study": "Kabuk Hareket Ortalığı", "Save Drawing Template As": "Çizim Şablonu Yeni Adla Sakla", "Bring Forward": "Öne getir", "Apply Defaults": "Varsayınları Uygula", "Friday": "Cuma", "Zero_input": "Zero", "Company Comparison": "Firma Kıyaslama", "Stochastic Length_input": "Stochastic Length", "mult_input": "mult", "URL cannot be received": "URL alınamıyoruz", "Signal smoothing_input": "Signal smoothing", "E_data_mode_end_of_day_letter": "E", "Trend-Based Fib Extension": "Trend-Temeli Fib Uzama", "Top": "Üst", "Double Curve": "Çifte Eğri", "Stochastic RSI_study": "Stokastik RSI", "Horizontal Ray": "Yatay Işın", "Ok": "Tamam", "Edit Order": "Emiri Düzenle", "Trades on Chart": "Grafikteki İşlem", "Chaikin Oscillator_input": "Chaikin Osilatörü", "Listed Exchange": "Listelenmiş Borsa", "Error:": "Hata:", "Fullscreen mode": "Tam ekran modu", "Add Text Note For {0}": "{0}'a Not Ekle", "K_input": "K", "In Session": "Seansta", "ROCLen3_input": "ROCUzun3", "Restore Size": "Boyutu Yeni Yükle", "Text Color": "Metin rengi", "Extend Alert Line": "Alarm Çizgisiyi Uzat", "Oops!": "Aman!", "New Zealand": "Yeni Zelanda", "CHOP_input": "CHOP", "Scale": "Ölçek", "Screen (No Scale)": "Ekran (Ölçeksiz)", "Extended Alert Line": "Uzatılmış Alarm Çizgisi", "Signal_input": "Signal", "OK": "Tamam", "like": "beğen", "Original": "Asıl", "Show": "Göster", "Exchange": "Borsa", "{0} bars": "{0} çubuklar", "Lower_input": "Alt", "Created ": "Oluşturmuş ", "Arc": "Yay", "Elder's Force Index_study": "Büyüklerin Kuvvet Endeksi", "Show Earnings on Chart": "Kazançları Grafikte Göster", "ATR_input": "ATR", "Do you really want to delete Color Theme '{0}' ?": "'{0}' Renk Temayı silmek istediğinizden emin misiniz?", "%d month_plural": "%d ay", "Low": "Düşük", "Bollinger Bands %B_study": "Bollinger Bantlar %B", "Time Zone": "Saat Dilimi", "right": "sağ", "%d month": "%d ay", "Wrong value": "Yanlış değeri", "Upper Band_input": "Upper Band", "Sun": "Paz", "Rename...": "Yeni Ad Ver...", "February": "Şubat", "start_input": "start", "No indicators matched your criteria.": "Kriterinize uygun hiçbir gösterge bulunamadı.", "Commission": "Komisyon", "Short length_input": "Kısa uzunluk", "Submillennium": "Sub-binyıllık", "Precise Labels_scale_menu": "Hassas Etiketler", "Smoothed Moving Average_study": "Yuvarlatılmış Hareketli Ortalama", "Do you really want to delete Drawing Template '{0}' ?": "'{0}' Çizim Şablonu silmek istediğinizden emin misiniz?", "Chatham Islands": "Chatham Adaları", "Channel": "Kanal", "Stop syncing drawing": "Çizim eşitlemeyi durdur", "FXCM CFD data is available only to FXCM account holders": "FXCM CFD verileri sadece FXCM hesabı sahiplere uygun.", "Lagging Span 2 Periods_input": "Geciken Açıklık 2 Devreler", "Connecting Line": "Bağlantı Çizgisi", "Seoul": "Seul", "bottom": "alt", "Teeth_input": "Teeth", "Moscow": "Moskova", "Save New Chart Layout": "Yeni Grafik Yerleşimi Sakla", "Fib Channel": "Fib Kanalı", "Visibility": "Görünürlük", "Events": "Olaylar", "Save Drawing Template As...": "Çizim Şablonu Yeni Adla Sakla...", "Minutes_interval": "Dakika", "Insert Study Template": "Çalışma Şablonu Koy", "exponential_input": "üssel", "%d hour_plural": "%d saat", "OnBalanceVolume_input": "DengeİşlemHacmi", "roclen2_input": "roclen2", "Chande Momentum Oscillator_study": "Chande Hız Osilatörü", "Not applicable": "Uygun Değil", "or copy url:": "veya url'ı kopyala:", "Bollinger Bands %B_input": "Bollinger Bantları %B", "Template name": "Şablonun adı", "Indicator Values": "Gösterge Değerler", "Lips Length_input": "Dudakların Uzunluğu", "Use Upper Deviation_input": "Use Upper Deviation", "L_in_legend": "D", "Remove custom interval": "Özel zaman aralığını kaldır", "minute_plural": "dakika", "shortlen_input": "shortlen", "Quotes are delayed by {0} min": "Fiyatlar {0} dakika gecikmeli", "Copied to clipboard": "Not panosuya kopyalanmış", "ADX_input": "ADX", "Profit Background Color": "Karın Arkaplan Rengi", "Trading": "İşlem", "Exponential_input": "Üssel", "ROCLen2_input": "ROCUzun2", "Use Lower Deviation_input": "Use Lower Deviation", "Previous": "Geçen", "Stay In Drawing Mode": "Çizim Modunda Kal", "Comment": "Yorum", "Long_input": "Uzun", "Bars": "Çubuk Grafikler", "Source text color": "Kaynak metinin rengi", "Flat Top/Bottom": "Flat Üst/Alt", "Symbol Type": "Sembolun Çeşiti", "loading data": "veriler yüklüyor", "December": "Aralık", "Lock drawings": "Çizimleri Kilitle", "Border color": "Kenarlık rengi", "Change Seconds From": "Saniyeleri Değiştir", "Left Labels": "Sol Etiketler", "Insert Indicator...": "Gösterge Ekle...", "P_input": "P", "Paste %s": "%s yapıştır", "Timezone": "Saat Dilimi", "Invite-only script. You have been granted access.": "Yalnızca-davet komutu. Erişim verildi.", "Sat": "Cmt", "ATR Length": "ATR Uzunluğu", "Rectangle": "Dikdörtgen", "Supercycle": "Birkaç On Yıllık", "Feb": "Şub", "Transparency": "Şeffaflık", "No": "Hayır", "All Indicators And Drawing Tools": "Tüm Göstergeler ve Çizim Araçlar", "Cyclic Lines": "Halkalı Çizgiler", "length28_input": "length28", "ABCD Pattern": "ABCD Formasyonu", "closed": "kapalı", "When selecting this checkbox the study template will set \"__interval__\" interval on a chart": "Kutucuğu seçtiğiniz zaman çalışma şablonunuz grafikte \"__interval__\" aralığı paylaşacak.", "NO": "HAYIR", "Add": "Ekle", "OC Bars": "OC Çubuk Grafikler", "Millennium": "Binyıl", "Price Label": "Fiyat Etiketi", "Graphics": "Grafikler", "NEW": "YENİ", "Wick": "Fitil", "Up bars": "Üst çubuklar", "Hull MA_input": "Hull HO", "Callout": "Belirtme", "Lock Scale": "Ölçeği Kilitle", "distance: {0}": "mesafe: {0}", "Extended": "Uzatılmış", "Three Drives Pattern": "Üç Basamak Formasyonu", "Create Vertical Line": "Dikey Çizgi Oluştur", "Arcs": "Yaylar", "Top Margin": "Üst Marjin", "Length2_input": "Uzunluk2", "Insert Drawing Tool": "Çizim Araçları Ekle", "OHLC Values": "OHLC Değerler", "Correlation_input": "Korelasyon", "Scales Text": "Ölçek Metni", "Session Breaks": "Seans Araları", "Add {0} To Watchlist": "İzleme Listesiye {0} Ekle", "Anchored Note": "Yapışık Not", "lipsLength_input": "lipsLength", "Apply Indicator on {0}": "{0}'de Gösterge Uygula", "roclen4_input": "roclen4", "November": "Kasım", "Tehran": "Tahran", "Balloon": "Balon", "Background Color": "Arkaplan rengi", "an hour": "bir saat", "Right Axis": "Sağ Ekseni", "D_data_mode_delayed_streaming_letter": "D", "VI -_input": "VI -", "slowLength_input": "slowLength", "Click to set a point": "Nokta belirlemek için tıkla", "January": "Ocak", "delayed": "gecikmeli", "n/a": "u/d", "Indicator Titles": "Göstergenin Adı", "retrying": "yeniden deneniyor", "Change area background": "Alan arkaplanı değiştir", "Error": "Hata", "Edit Position": "Pozisyonu Değiştir", "RVI_input": "RVI", "Awesome Oscillator_study": "Müthiş Osilatör", "Recalculate On Every Tick": "Her Adımda Yeniden Hesapla", "Left": "Sol", "Show Text": "Metini Göster", "Objects Tree...": "Nesnelerin Ağacı...", "Compare": "Kıyasla", "Add Symbol": "Sembolu Ekle", "Projection": "Öngörme", "Track time": "İz süresi", "Enter a new chart layout name": "Grafik yerleşimin yeni adını yazın", "Signal Length_input": "Sinyalın Uzunluğu", "Properties": "Özellikler", "Teeth Length_input": "Teeth Length", "Point Value": "Puan Değeri", "D_interval_short": "G", "Close": "Kapat", "ParabolicSAR_input": "ParabolicSAR", "Log Scale_scale_menu": "Logaritmik Ölçek", "MACD_input": "MACD", "Do not show this message again": "Bu mesajı gene gösterme", "Precise Labels": "Hassas Etiketler", "Up Wave 3": "Yükseliş Dalgası 3", "Arrow Mark Left": "Ok İşareti Sola", "second_plural": "saniye", "Up Wave 5": "Yükseliş Dalgası 5", "Line - Close": "Çizgi - Kapanış", "(O + H + L + C)/4": "(A + Y + D + K)/4", "Confirm Inputs": "Girdileri Onayla", "Open_line_tool_position": "Açık", "Lagging Span_input": "Geciken Açıklık", "Subminuette": "Birkaç Dakikalık", "Mirrored": "İkizlenmiş", "Price": "Fiyat", "Triple EMA_study": "Üçlü ÜHO", "Elliott Correction Wave (ABC)": "Elliott Düzeltme Dalgası (ABC)", "Error while trying to create snapshot.": "Şiğşak yapmak zamanda hata oluğtu.", "Label Background": "Etiket Arkaplanı", "Templates": "Şablonlar", "Please report the issue or click Reconnect.": "Lütfen hata ihbar edin veya Yeniden Bağlan'ı tıklayın.", "1. Slide your finger to select location for first anchor
    2. Tap anywhere to place the first anchor": "1. Birinci çapanın
    yeri seçmek için parmağınızı kayın 2. Birinci çapayı koymak için istediğiniz yere tıklayın", "Signal Labels": "Sinyal Etiketler", "compiling...": "derleniyor...", "Are you sure?": "Emin misiniz?", "Color 5_input": "Renk 5", "Up Wave 1 or A": "Yükseliş Dalgası 1 veya A", "Scale Price Chart Only": "Sadece Fiyat Grafiği Ölçeklendir", "Default": "Varsayılan", "auto_scale": "otomatik", "Background": "Arkaplan", "% of equity": "Özkaynağın %", "Apply Elliot Wave Intermediate": "Elliott Ara Dalgasıyı Uygula", "VWMA_input": "VWMA", "Lower Deviation_input": "Alt Sapma", "Save Interval": "Zaman Aralığı Sakla", "Extend Lines Left": "Çizgileri Sola Uzat", "Reverse": "Karşıt", "Oops, something went wrong": "Aman, bir işim cıktı", "Shapes_input": "Şekiller", "Median": "Medyan", "Show Source Code": "Kaynak Kodu Göster", "Remove": "Kaldır", "len_input": "len", "Arrow Mark Up": "Ok İşareti Yukarıya", "April": "Nisan", "log": "logaritmik", "Crosses_input": "Kesişmeler", "KST_input": "KST", "Sync drawing to all charts": "Çizimi tüm grafiklere eşitle", "LowerLimit_input": "AltLimit", "day_plural": "gün", "Copy Chart Layout": "Grafik Yerleşimi Kopyala", "Compare...": "Kıyasla...", "1. Slide your finger to select location for next anchor
    2. Tap anywhere to place the next anchor": "1. Sonraki çapanın
    yeri seçmek için parmağınızı kayın 2. Sonraki çapayı koymak için istediğiniz yere tıklayın", "Compare or Add Symbol": "Sembolu Ekle veya Kıyasla", "eod": "günsonu", "Color": "Renk", "Aroon Up_input": "Aroon Yükseliş", "Singapore": "Singapur", "Scales Lines": "Ölçek Çizgileri", "Type the interval number for munute charts (i.e. 5 if it is going to be a five minute chart). Or number plus letter for H (Hourly), D (Daily), W (Weekly), M (Monthly) intervals (i.e. D or 2H)": "Dakikalık grafiklerin aralık numarasını yazın (örneğin eğer beş dakikalık grafiği isterseniz 5 basın). Veya numarayı ve ilgili harfi H (Saatlık), D (Günlük), W (Haftalık), M (Aylık) aralıkları (örneğin D veya 2H)", "Up Wave C": "Yükseliş Dalgası C", "Show Distance": "Mesafeyi Göster", "Risk/Reward Ratio: {0}": "Risk/Ödül Oranı: {0}", "Volume Oscillator_study": "İşlem Hacmi Osilatörü", "Williams Fractal_study": "Williams Fraktalı", "Merge Up": "Yukarıya doğru Birleştir", "Right Margin": "Sağ Marjin", "Ellipse": "Elips", "Warsaw": "Varşova"} \ No newline at end of file +{"ticks_slippage ... ticks": "tickler", "Months_interval": "Aylar", "Realtime": "Canlı", "Callout": "Belirtme", "Sync to all charts": "Tüm grafiklere eşitle", "month": "ay", "London": "Londra", "roclen1_input": "rocuznlk1", "Unmerge Down": "Aşağıdan Ayrıştır", "Percents": "Yüzdeler", "Search Note": "Not ara", "Minor": "Minör", "Do you really want to delete Chart Layout '{0}' ?": "'{0}' isimli Grafik Yerleşimini silmek istediğinizden emin misiniz?", "Quotes are delayed by {0} min and updated every 30 seconds": "Fiyatlar {0} dakika gecikmeli ve her 30 saniye yenilenir", "Magnet Mode": "Mıknatıs Modu", "Grand Supercycle": "Birkaç On Yıllık", "OSC_input": "OSC", "Hide alert label line": "Alarm etiket çizgisini gizle", "Volume_study": "İşlem Hacmi", "Lips_input": "Dudaklar", "Show real prices on price scale (instead of Heikin-Ashi price)": "Fiyat ölçeklerde gerçek fiyatları göster (Heikin-Ashi fiyatları yerine)", "Base Line_input": "Temel Çizgi", "Step": "Önlem", "Insert Study Template": "Çalışma Şablonu Ekle", "Fib Time Zone": "Fib Saat Dilimi", "SMALen2_input": "BHOUzun2", "Bollinger Bands_study": "Bollinger Bantları", "Nov": "Kas", "Show/Hide": "Göster/Gizle", "Upper_input": "Üst", "exponential_input": "üstel", "Move Up": "Yukarı Taşı", "Symbol Info": "Sembol Bilgisi", "This indicator cannot be applied to another indicator": "Bu göstergeyi başka göstergeye uygulamazsınız", "Scales Properties...": "Ölçek Özellikleri...", "Count_input": "Sayım", "Full Circles": "Tam Daireler", "Ashkhabad": "Aşkabad", "OnBalanceVolume_input": "DengeİşlemHacmi", "Cross_chart_type": "Artı", "H_in_legend": "Y", "a day": "bir gün", "Pitchfork": "Dirgen", "R_data_mode_replay_letter": "R", "Accumulation/Distribution_study": "Birikim/Dağıtım", "Rate Of Change_study": "Değişim Oranı", "Text Font": "Yazı Tipi", "in_dates": "za", "Clone": "Klonla", "Color 7_input": "Renk 7", "Chop Zone_study": "Kaşe Alanı", "Bar #": "Çubuk No.", "Scales Properties": "Ölçek Özellikleri", "Trend-Based Fib Time": "Trend-Temeli Fib Zamanı", "Remove All Indicators": "Tüm Göstergelerı Kaldır", "Oscillator_input": "Osilatör", "Last Modified": "Son Değiştirme:", "yay Color 0_input": "yay Renk 0", "Labels": "Etiketler", "Chande Kroll Stop_study": "Chande Kroll Durdurması", "Hours_interval": "Saat", "Allow up to": "İzin verilen adet", "Scale Right": "Sağa Ölçeklendir", "Money Flow_study": "Para Akışı", "siglen_input": "siglen", "Indicator Labels": "Gösterge Etiketleri", "__specialSymbolOpen__Tomorrow at__specialSymbolClose__ __dayTime__": "__specialSymbolOpen__ Yarın __specialSymbolClose__ __dayTime__'de", "Toggle Percentage": "Yüzde Olarak Değiştir", "Remove All Drawing Tools": "Tüm Çizim Araçlarını Kaldır", "Remove all line tools for ": "Tüm çizgi araçlarını kaldır ", "Linear Regression Curve_study": "Doğrusal Regresyon Eğrisi", "Symbol_input": "Sembol", "Currency": "Döviz", "increment_input": "artım", "Compare or Add Symbol...": "Kıyasla veya Sembol Ekle...", "__specialSymbolOpen__Last__specialSymbolClose__ __dayName__ __specialSymbolOpen__at__specialSymbolClose__ __dayTime__": "__specialSymbolOpen__Son__specialSymbolClose__ __dayName__ __specialSymbolOpen__ __specialSymbolClose__ __dayTime__'de", "Save Chart Layout": "Grafik Yerleşimini Sakla", "Number Of Line": "Satır sayısı", "Label": "Etiket", "Post Market": "Kapanış Sonrası", "second": "saniye", "Change Hours To": "Saatleri Değiştir", "smoothD_input": "smoothD", "Falling_input": "Düşüş", "X_input": "X", "Risk/Reward short": "Risk/Ödül satış", "UpperLimit_input": "ÜstLimit", "Donchian Channels_study": "Donchian Kanalları", "Entry price:": "Giriş fiyatı:", "Circles": "Daireler", "Head": "Baş", "Stop: {0} ({1}) {2}, Amount: {3}": "Durdurma: {0} ({1}) {2}, Tutar: {3}", "Mirrored": "İkizlenmiş", "Ichimoku Cloud_study": "Ichimoku Bulutu", "Signal smoothing_input": "Sinyal belirginleştirme", "Use Upper Deviation_input": "Üst Sapma Kullan", "Toggle Auto Scale": "Otomatik Ölçek Aç/Kapa", "Grid": "Izgara", "Triangle Down": "Alçalan Üçgen", "Apply Elliot Wave Minor": "Elliott Minör Dalgası Uygula", "Slippage": "Kayma", "Smoothing_input": "Belirginleştirme", "Color 3_input": "Renk 3", "Jaw Length_input": "Çene Uzunluğu", "Almaty": "Alma-Ata", "Inside": "İçeri", "Delete all drawing for this symbol": "Bu sembol için tüm çizimleri sil", "Fundamentals": "Temel Veriler", "Keltner Channels_study": "Keltner Kanalları", "Long Position": "Alış Pozisyonu", "Bands style_input": "Bant stili", "Undo {0}": "{0} işlemini Geri al", "With Markers": "İşaretçiler İle", "Momentum_study": "Momentum", "MF_input": "HF", "Gann Box": "Gann Kutusu", "Switch to the next chart": "Sonraki grafiğe geç", "charts by TradingView": "grafik sağlayıcı TradingView", "Fast length_input": "Hızlı uzunluk", "Apply Elliot Wave": "Elliot Dalgası Uygula", "Disjoint Angle": "Dağılma Açısı", "Supermillennium": "Super-binyılık", "W_interval_short": "H", "Show Only Future Events": "Sadece Gelecek Olayları Göster", "Log Scale": "Logaritmik Ölçek", "Line - High": "Çizgi - Yüksek", "Zurich": "Zürih", "Equality Line_input": "Eşitlik Çizgisi", "Short_input": "Kısa", "Fib Wedge": "Fib Takozu", "Line": "Çizgi", "Session": "Seans", "Down fractals_input": "Aşağı fraktallar", "Fib Retracement": "Fib Düzelmesi", "smalen2_input": "bhoUznlk2", "isCentered_input": "Merkezde mi", "Border": "Kenar", "Klinger Oscillator_study": "Klinger Osilatörü", "Absolute": "Mutlak", "Tue": "Sal", "Style": "Stil", "Show Left Scale": "Sol Ölçeği Göster", "SMI Ergodic Indicator/Oscillator_study": "SMI Ergodik Gösterge/Osilatörü", "Aug": "Ağu", "Last available bar": "Son bulunan çubuk", "Manage Drawings": "Çizimleri Yönet", "Analyze Trade Setup": "İşlem Ayarlarını Analiz et", "No drawings yet": "Henüz çizim yok", "SMI_input": "SMI", "Chande MO_input": "Chande MO", "jawLength_input": "çeneUzunluğu", "TRIX_study": "TRIX", "Show Bars Range": "Çubuk Aralıklarını Göster", "RVGI_input": "RVGI", "Last edited ": "Son düzenleme ", "signalLength_input": "sinyalUzunluk", "%s ago_time_range": "%s önce", "Reset Settings": "Ayarları Sıfırla", "PnF": "NvŞ", "d_dates": "g", "Point & Figure": "Nokta ve Şekil", "August": "Ağustos", "Recalculate After Order filled": "Emir Doldurulduktan Sonra Yeniden Hesapla", "Source_compare": "Kaynak", "Down bars": "Düşüş Çubukları", "Correlation Coefficient_study": "Korelasyon Katsayısı", "Delayed": "Gecikmeli", "Bottom Labels": "Alt Etiketler", "Text color": "Metin rengi", "Levels": "Kademeler", "Length_input": "Uzunluk", "Short Length_input": "Kısa Uzunluk", "teethLength_input": "dişUzunluğu", "Visible Range_study": "Görünür Aralık", "Open {{symbol}} Text Note": "{{symbol}} Notu Aç", "October": "Ekim", "Lock All Drawing Tools": "Tüm Çizim Araçlarını Kilitle", "Long_input": "Uzun", "Right End": "Sağ Uç", "Show Symbol Last Value": "Sembolün Son Değerini Göster", "Head & Shoulders": "Omuz Baş Omuz", "Do you really want to delete Study Template '{0}' ?": "'{0}' Çalışma Şablonunu silmek istediğinizden emin misiniz?", "Favorite Drawings Toolbar": "Favori Çizimler Araç Çubuğu", "Properties...": "Özellikler...", "Reset Scale": "Ölçeği Sıfırla", "MA Cross_study": "HO Cross", "Trend Angle": "Trend Açısı", "Snapshot": "Şipşak", "Crosshair": "Artı gösterge", "Signal line period_input": "Sinyal çizgisi periyodu", "Timezone/Sessions Properties...": "Saat Dilimi/Seans Özellikleri...", "Line Break": "Çizgi Kesme", "Quantity": "Miktar", "Price Volume Trend_study": "Fiyat Hacmi Trendi", "Auto Scale": "Otomatik ölçek", "hour": "saat", "Delete chart layout": "Grafik yerleşimini sil", "Text": "Metin", "F_data_mode_forbidden_letter": "Y", "Risk/Reward long": "Risk/Ödül alış", "Apr": "Nis", "Long RoC Length_input": "Uzun KVE Uzunluğu", "Length3_input": "Uzunluk3", "+DI_input": "+DI", "Madrid": "", "Use one color": "Tek renk kullan", "Chart Properties": "Grafik Özellikleri", "No Overlapping Labels_scale_menu": "Örtüşen Etiketler Yok", "Exit Full Screen (ESC)": "Tam Ekrandan Çık (ESC)", "MACD_study": "MACD", "Show Economic Events on Chart": "Grafikte Ekonomik Olayları Göster", "Moving Average_study": "Hareketli Ortalama", "Show Wave": "Dalgayı Göster", "Failure back color": "Arka Plan Renginde Hata", "Below Bar": "Çubuğun Altında", "Time Scale": "Zaman Ölçeği", "

    Only D, W, M intervals are supported for this symbol/exchange. You will be automatically switched to a D interval. Intraday intervals are not available because of exchange policies.

    ": "

    Bu sembolde/borsada sadeceG, H, A aralıkları kullanılabilir. Otomatik olarak G aralığına geçeceksiniz. Gün içi aralıklar borsa politikaları nedeniyle kullanılabilir durumda değildir.

    ", "Extend Left": "Sola Uzat", "Date Range": "Tarih Aralığı", "Min Move": "Min Taşı", "Price format is invalid.": "Fiyat biçimi geçersiz.", "Show Price": "Fiyatı Göster", "Level_input": "Seviye", "Angles": "Açılar", "Commodity Channel Index_study": "Emtia Kanal Endeksi", "Elder's Force Index_input": "Elder Kuvvet Endeksi", "Gann Square": "Gann Karesi", "Format": "Biçim", "Color bars based on previous close": "Önceki kapanışa göre çubuk rengi", "Change band background": "Bant arkaplanını değiştir", "Target: {0} ({1}) {2}, Amount: {3}": "Hedef: {0} ({1}) {2}, Tutar: {3}", "Zoom Out": "Uzaklaş", "This chart layout has a lot of objects and can't be published! Please remove some drawings and/or studies from this chart layout and try to publish it again.": "Bu grafikte çok fazşa nesneler var ve bundan dolayı grafiği yayınlayamazsınız! Lütfen birkaç çizim ve/veya başka araçları kaldırın ve tekrar deneyin.", "Anchored Text": "Yapışık Metin", "Long length_input": "Uzun uznuluğu", "Edit {0} Alert...": "{0} Alarmını Değiştir...", "Previous Close Price Line": "Önceki Kapanış Fiyatın Çizgisi", "Up Wave 5": "Yükseliş Dalgası 5", "Qty: {0}": "Mik: {0}", "Aroon_study": "Aroon", "show MA_input": "HO göster", "Industry": "Endüstri", "Lead 1_input": "Öncü 1", "Short Position": "Satış Pozisyonu", "SMALen1_input": "BHOUzun1", "P_input": "P", "Apply Default": "Varsayılanı Uygula", "SMALen3_input": "BHOUzun3", "Average Directional Index_study": "Ortalama Yönsel Endeks", "Fr_day_of_week": "Cum", "Invite-only script. Contact the author for more information.": "Sadece-davetliler komutu. Daha fazla bilgi için yazarına ulaşın.", "Curve": "Eğri", "a year": "bir yıl", "Target Color:": "Hedef Rengi:", "Bars Pattern": "Çubuk Paterni", "D_input": "D", "Font Size": "Font Boyutu", "Create Vertical Line": "Dikey Çizgi Oluştur", "p_input": "p", "Rotated Rectangle": "Döndürülmüş Dikdörtgen", "Chart layout name": "Grafik yerleşimi adı", "Fib Circles": "Fib Çemberleri", "Apply Manual Decision Point": "Elle Karar Noktası Uygula", "Dot": "Nokta", "Target back color": "Hedef arkaplan rengi", "All": "Tümü", "orders_up to ... orders": "emirler", "Dot_hotkey": "Nokta", "Lead 2_input": "Öncü 2", "Save image": "Resmi sakla", "Move Down": "Aşağı Taşı", "Triangle Up": "Yükselen Üçgen", "Box Size": "Kutu Büyüklüğü", "Navigation Buttons": "Gezinti Düğmeleri", "Miniscule": "Ufacık", "Apply": "Uygula", "Down Wave 3": "Düşüş Dalgası 3", "Plots Background_study": "Arkaplan Çizimleri", "Marketplace Add-ons": "Marketplace Eklentileri", "Sine Line": "Sinüs Çizgisi", "Fill": "Doldur", "%d day": "%d gün", "Hide": "Gizle", "Toggle Maximize Chart": "Grafik Maksimize Değiştir", "Target text color": "Hedefin metin rengi", "Scale Left": "Sola Ölçeklendir", "Elliott Wave Subminuette": "Elliott Dalgası Birkaç Dakikalık", "Color based on previous close_input": "Önceki kapanışa göre çubuk rengi", "Down Wave C": "Düşüş Dalgası C", "Countdown": "Gerisayım", "UO_input": "UO", "Pyramiding": "Piramitleme", "Source back color": "Kaynak arkaplan rengi", "Go to Date...": "Tarihe Git...", "Text Alignment:": "Metin Hizalama:", "R_data_mode_realtime_letter": "C", "Extend Lines": "Çizgileri Uzat", "Conversion Line_input": "Dönüş Çizgisi", "March": "Mart", "Su_day_of_week": "Paz", "Exchange": "Borsa", "My Scripts": "Benim Komutlarım", "Arcs": "Yaylar", "Regression Trend": "Regresyon Trendi", "Short RoC Length_input": "Kısa RoC Uzunluğu", "Fib Spiral": "Fib Spiralı", "Double EMA_study": "Çifte EMA", "minute": "dakika", "All Indicators And Drawing Tools": "Tüm Göstergeler ve Çizim Araçlar", "Indicator Last Value": "Göstergenin Son Değeri", "Sync drawings to all charts": "Çizimleri tüm grafiklere eşitle", "Change Average HL value": "Ortalama HL değerini değiştir", "Stop Color:": "Durdurma Rengi:", "Stay in Drawing Mode": "Çizim Modunda Kal", "Bottom Margin": "Alt Marj", "Dubai": "", "Save Chart Layout saves not just some particular chart, it saves all charts for all symbols and intervals which you are modifying while working with this Layout": "\"Grafik Yerleşimini Sakla\" sadece bir belirli grafiği değil, bu şablon üzerinde çalışırken değiştirdiğiniz tüm grafik, sembol ve zaman aralıklarını da saklar.", "Average True Range_study": "Ortalama Gerçek Aralık", "Max value_input": "Max değer", "MA Length_input": "HO Uzunluğu", "Invite-Only Scripts": "Sadece-Davetliler Komutları", "in %s_time_range": "%s içinde", "Extend Bottom": "Altı Uzat", "sym_input": "smbl", "DI Length_input": "YG Uzunluğu", "Rome": "Roma", "Scale": "Ölçek", "Periods_input": "Periyotlar", "Arrow": "Ok İşareti", "useTrueRange_input": "TrueRangeKullan", "Basis_input": "Temel", "Arrow Mark Down": "Aşağı Ok İşareti", "lengthStoch_input": "uzunlukStok", "Objects Tree": "Nesnelerin Ağacı", "Remove from favorites": "Favorilerimden çıkar", "Show Symbol Previous Close Value": "Sembolün Önceki Kapanış Değerini Göster", "Scale Series Only": "Sadece Serileri Ölçeklendir", "Source text color": "Kaynak metin rengi", "Simple": "Basit", "Report a data issue": "Veri hatası bildir", "Arnaud Legoux Moving Average_study": "Arnaud Legoux Hareketli Ortalama", "Smoothed Moving Average_study": "Yuvarlatılmış Hareketli Ortalama", "Lower Band_input": "Alt Bant", "Verify Price for Limit Orders": "Limit emirleri için Fiyatı Doğrula", "VI +_input": "VI +", "Line Width": "Çizgi Genişliği", "Contracts": "Kontratlar", "Always Show Stats": "İstatistikleri Daima Göster", "Down Wave 4": "Düşüş Dalgası 4", "ROCLen2_input": "ROCUzun2", "Simple ma(signal line)_input": "Basit ort(sinyal çizgisi)", "Change Interval...": "Zaman Aralığını Değiştir...", "Public Library": "Halka Açık Kitaplık", " Do you really want to delete Drawing Template '{0}' ?": " '{0}' Çizim Şablonunu silmek istediğinizden emin misiniz?", "Sat": "Cmt", "Left Shoulder": "Sol Omuz", "week": "hafta", "CRSI_study": "CRSI", "Close message": "Mesajı kapat", "Jul": "Tem", "Value_input": "Değer", "Show Drawings Toolbar": "Çizim Araç Çubuğu Göster", "Chaikin Oscillator_study": "Chaikin Osilatörü", "Price Source": "Fiyatın Kaynağı", "Market Open": "Piyasa Açık", "Color Theme": "Renk Teması", "Projection up bars": "Projeksiyon yüksek çubuklar", "Awesome Oscillator_study": "Müthiş Osilatör", "Bollinger Bands Width_input": "Bollinger Bantları Genişliği", "Q_input": "Q", "long_input": "uzun", "Error occured while publishing": "Yayınlama esnasında hata oluştu", "Fisher_input": "Fisher", "Color 1_input": "Renk 1", "Moving Average Weighted_study": "Ağırlıklı Hareketli Ortalama", "Save": "Kaydet", "Type": "Tip", "Wick": "Fitil", "Accumulative Swing Index_study": "Biriktirici Sallanma Endeksi", "Load Chart Layout": "Grafik Yerleşimini Yükle", "Show Values": "Değerleri Göster", "Fib Speed Resistance Fan": "Fib Hız Direnç Fanı", "Bollinger Bands Width_study": "Bollinger Bantları Genişliği", "This chart layout has more than 1000 drawings, which is a lot! This may negatively affect performance, storage and publishing. We recommend to remove some drawings to avoid potential performance issues.": "Bu grafik yerleşiminde 1000'den fazla çizim var, gerçekten çok! Bu durum performansı, saklamayı ve yayınlamayı olumsuz etkileyebilir. Olası performans sorunlarından sakınmak için bazı çizimleri kaldırmanızı tavsiye ediyoruz.", "Left End": "Sol Sonu", "%d year": "%d yıl", "Always Visible": "Daima Görünür", "S_data_mode_snapshot_letter": "R", "Flag": "Bayrak", "Elliott Wave Circle": "Elliott Dalga Döngüsü", "Earnings breaks": "Kazanç araları", "Change Minutes From": "Dakikaları Değiştir", "Do not ask again": "Tekrar sorma", "Displacement_input": "Yerdeğişim", "smalen4_input": "bhoUznlk4", "CCI_input": "CCI", "Upper Deviation_input": "Üst Sapma", "(H + L)/2": "(Y + D)/2", "XABCD Pattern": "XABCD Formasyonu", "Schiff Pitchfork": "Schiff Dirgeni", "Copied to clipboard": "Panoya kopyalandı", "HLC Bars": "HLC Barları", "Flipped": "Ters dönmüş", "DEMA_input": "İÜHO", "Move_input": "Hareket", "NV_input": "NV", "Choppiness Index_study": "Dalgalılık Endeksi", "Study Template '{0}' already exists. Do you really want to replace it?": "'{0}' Çalışma Şablonu zaten var.Yenisiyle değiştirmek mi istiyorsunuz?", "Merge Down": "Aşağıya doğru Birleştir", "Th_day_of_week": "Per", " per contract": "kontrat başına", "Overlay the main chart": "Ana grafiğin üstüne yerleştir", "Screen (No Scale)": "Ekran (Ölçeksiz)", "Delete": "Sil", "Save Indicator Template As": "Gösterge Şablonu Farklı Kaydet", "Length MA_input": "HO Uzunluğu", "percent_input": "yüzde", "September": "Eylül", "{0} copy": "{0} kopyala", "Avg HL in minticks": "Mintiklerde ort. HL", "Accumulation/Distribution_input": "Birikim/Dağıtım", "Sync": "Eşitle", "C_in_legend": "K", "Weeks_interval": "Haftalar", "smoothK_input": "smoothK", "Percentage_scale_menu": "Yüzde", "Change Extended Hours": "Genişletilmiş Saatleri Değiştir", "MOM_input": "MOM", "h_interval_short": "s", "Change Interval": "Zaman Aralığını Değiştir", "Change area background": "Alan arkaplanını değiştir", "Modified Schiff": "Değiştirilmiş Schiff", "top": "üst", "Adelaide": "", "Send Backward": "Geriye Gönder", "Mexico City": "Meksiko", "TRIX_input": "TRIX", "Show Price Range": "Fiyat Aralığı Göster", "Elliott Major Retracement": "Elliott Büyük Düzelme", "ASI_study": "ASI", "Notification": "Bildirim", "Fri": "Cum", "just now": "şimdi", "Forecast": "Tahmin", "Fraction part is invalid.": "Ondalık kısmı geçerisiz.", "Connecting": "Bağlanıyor", "Ghost Feed": "Hayalet Çizgiler", "Signal_input": "Sinyal", "Histogram_input": "Histogram", "The Extended Trading Hours feature is available only for intraday charts": "Uzatılmış İşlem Saatleri özelliği sadece gün içi grafiklerde kullanılabilir.", "Stop syncing": "Eşitlemeyi durdur", "open": "açılış", "StdDev_input": "StdSapma", "EMA Cross_study": "ÜHO Kesişme", "Conversion Line Periods_input": "Dönüş Çizgisi Periyodu", "Diamond": "Elmas", "Brisbane": "", "Monday": "Pazartesi", "Add Symbol_compare_or_add_symbol_dialog": "Sembol Ekle", "Williams %R_study": "Williams %R", "Symbol": "Sembol", "a month": "bir ay", "Precision": "Hassasiyet", "depth_input": "derinlik", "Go to": "Tarihe git", "Please enter chart layout name": "Lütfen grafik yerleşiminin adını yazın", "VWAP_study": "HAOF", "Offset": "Ofset", "Date": "Tarih", "Format...": "Biçim...", "__dayName__ __specialSymbolOpen__at__specialSymbolClose__ __dayTime__": "__dayName__ __specialSymbolOpen__ __specialSymbolClose__ __dayTime__'de", "Toggle Maximize Pane": "Genişletme Panosu Aç/Kapa", "Search": "Ara", "Zig Zag_study": "Zig Zag", "Actual": "Güncel", "SUCCESS": "BAŞARILI", "Long period_input": "Uzun süre", "length_input": "uzunluk", "roclen4_input": "rocuznlk4", "Price Line": "Fiyat Çizgisi", "Area With Breaks": "Kesmeli Alan", "Median_input": "Medyan", "Stop Level. Ticks:": "Durdurma Seviyesi. Adımlar:", "Window Size_input": "Pencere Genişliği", "Economy & Symbols": "Ekonomi & Semboller", "Circle Lines": "Dairesel Çizgiler", "Visual Order": "Görsel Sıra", "__specialSymbolOpen__Yesterday at__specialSymbolClose__ __dayTime__": "__specialSymbolOpen__ Yarın __specialSymbolClose__ __dayTime__'de", "Stop Background Color": "Durdurma Arkaplan Rengi", "1. Slide your finger to select location for first anchor
    2. Tap anywhere to place the first anchor": "1. Birinci çapanın
    yerini seçmek için parmağınızı kaydırın 2. Birinci çapayı koymak için herhangi bir yere tıklayın", "Sector": "Sektör", "powered by TradingView": "grafiği sağlayan TradingView", "Text:": "Metin:", "Stochastic_study": "Stokastik", "Sep": "Eyl", "TEMA_input": "TEMA", "Apply WPT Up Wave": "WPT Yükseliş Dalgası Uygula", "Min Move 2": "Min Taşı 2", "Extend Left End": "Sol Sona Uzat", "Projection down bars": "Projeksiyon düşük çubuklar", "Advance/Decline_study": "İlerleme/Gerileme", "Any Number": "Herhangi bir Numara", "Flag Mark": "Bayrak", "Drawings": "Çizimler", "Cancel": "İptal", "Compare or Add Symbol": "Kıyasla veya Sembol Ekle", "Redo": "Yinele", "Hide Drawings Toolbar": "Çizim Araç Çubuğunu Gizle", "Ultimate Oscillator_study": "Nihai Osilatör", "Vert Grid Lines": "Dikey Kılavuz Çizgileri", "Growing_input": "Büyüyen", "Angle": "Açı", "Plot_input": "Çizim", "Chicago": "Çikago", "Color 8_input": "Renk 8", "Indicators, Fundamentals, Economy and Add-ons": "Göstergeler, Temel Veriler, Ekonomi ve Eklentiler", "h_dates": "s", "ROC Length_input": "RoC Uzunluğu", "roclen3_input": "rocuznlk3", "Overbought_input": "Fazla alınmış", "Extend Top": "Üstü Uzat", "Change Minutes To": "Dakikaları Değiştir", "No study templates saved": "Saklanmış çalışma şablon yok", "Trend Line": "Trend Çizgisi", "TimeZone": "Saat Dilimi", "Your chart is being saved, please wait a moment before you leave this page.": "Grafiğinizi saklanıyor, sayfayı terketmeden önce kısa bir süre bekleyin.", "Percentage": "Yüzde", "Tu_day_of_week": "Sal", "RSI Length_input": "RSI Uzunluğu", "Triangle": "Üçgen", "Line With Breaks": "Kesme Çizgi", "Period_input": "Periyot", "Watermark": "Filigran", "Trigger_input": "Tetik", "SigLen_input": "SinUzun", "Extend Right": "Sağa Uzat", "Color 2_input": "Renk 2", "Show Prices": "Fiyatları Göster", "Unlock": "Kilidi aç", "Copy": "Kopyala", "high": "yüksek", "Arc": "Yay", "Edit Order": "Emiri Düzenle", "January": "Ocak", "Arrow Mark Right": "Sağa Ok İşareti", "Extend Alert Line": "Alarm Çizgisini Uzat", "Background color 1": "Arkaplan rengi 1", "RSI Source_input": "RSI Kaynağı", "Close Position": "Pozisyonu Kapat", "Stop syncing drawing": "Çizim eşitlemeyi durdur", "Visible on Mouse Over": "Fare Geldiğinde Görünür", "MA/EMA Cross_study": "HO/ÜHO Kesişmesi", "Thu": "Per", "Vortex Indicator_study": "Vorteks Göstergesi", "view-only chart by {user}": "{user} kullanıcısı tarafından çizilen grafik", "ROCLen1_input": "ROCUzun1", "M_interval_short": "A", "Chaikin Oscillator_input": "Chaikin Osilatörü", "Price Levels": "Fiyatın Seviyeleri", "Show Splits": "Bölünmeleri Göster", "Zero Line_input": "Sıfır Çizgisi", "__specialSymbolOpen__Today at__specialSymbolClose__ __dayTime__": "__specialSymbolOpen__Bugün__specialSymbolClose__ __dayTime__'de", "Increment_input": "Artış", "Days_interval": "Gün", "Show Right Scale": "Sağ Ölçeği Göster", "Show Alert Labels": "Alarm Etiketlerini Göster", "Historical Volatility_study": "Tarihi Volatilite", "Lock": "Kilitle", "length14_input": "uzunluk14", "High": "Yüksek", "ext": "ek", "Date and Price Range": "Tarih ve Fiyat Aralığı", "Polyline": "Çoklu çizgi", "Reconnect": "Tekrar Bağlan", "Lock/Unlock": "Kilitle/Kilidi aç", "Base Level": "Temel Seviye", "Label Down": "Aşağı Etiket", "Saturday": "Cumartesi", "Symbol Last Value": "Sembol Son Değeri", "Above Bar": "Çubuğun Üzerine", "Studies": "Çalışmalar", "Color 0_input": "Renk 0", "Add Symbol": "Sembol Ekle", "maximum_input": "maksimum", "Wed": "Çar", "Paris": "", "D_data_mode_delayed_letter": "G", "Sigma_input": "Sigma", "VWMA_study": "HAHO", "fastLength_input": "hızlıUzunluk", "Time Levels": "Zaman Kademeleri", "Width": "Genişlik", "Sunday": "Pazar", "Loading": "Yüklüyor", "Template": "Şablon", "Use Lower Deviation_input": "Alt Sapma Kullan", "Up Wave 3": "Yükseliş Dalgası 3", "Parallel Channel": "Paralel Kanal", "Time Cycles": "Zaman Döngüleri", "Second fraction part is invalid.": "İkinci ondalık kısmı geçersiz.", "Divisor_input": "Bölen", "Baseline": "Temel Çizgi", "Down Wave 1 or A": "Düşüş Dalgası 1 veya A", "ROC_input": "ROC", "Dec": "Ara", "Ray": "Işın", "Extend": "Uzat", "length7_input": "uzunluk7", "Bring Forward": "Öne getir", "Bottom": "Alt", "Berlin": "", "Undo": "Geri al", "Original": "Orjinal", "Mon": "Pzt", "Right Labels": "Sağ Etiketler", "Long Length_input": "Uzun Uzunluğu", "True Strength Indicator_study": "Gerçek Güç Göstergesi", "%R_input": "%R", "There are no saved charts": "Saklanmış grafikleriniz yoktur.", "Instrument is not allowed": "Bu araç kullanmaz", "bars_margin": "çubuklar", "Decimal Places": "Ondalık Basamaklar", "Show Indicator Last Value": "Gösterge Son Değerini Göster", "Initial capital": "ilk marj", "Show Angle": "Açıyı Göster", "Mass Index_study": "Kütle Endeksi", "More features on tradingview.com": "tradingview.com'da daha fazla özellik", "Objects Tree...": "Nesnelerin Ağacı...", "Remove Drawing Tools & Indicators": "Çizim Araçları ve Göstergeleri Kaldır", "Length1_input": "Uzunluk1", "Always Invisible": "Daima Görünmez", "Circle": "Daire", "Days": "Günler", "x_input": "x", "Save As...": "Yeni Adla Sakla...", "Elliott Double Combo Wave (WXY)": "Elliott İkili Kombo Dalgası (WXY)", "Parabolic SAR_study": "Parabolik SAR", "Any Symbol": "Herhangi bir Sembol", "Variance": "Varyans", "Stats Text Color": "İstatistik Metin Rengi", "Minutes": "Dakika", "Williams Alligator_study": "Williams Gator", "Projection": "Projeksiyon", "Custom color...": "Özel renk...", "Jan": "Oca", "Jaw_input": "Çene", "Right": "Sağ", "Help": "Yardım", "Coppock Curve_study": "Coppock Eğrisi", "Reversal Amount": "Ters Miktar", "Reset Chart": "Grafiği Sıfırla", "Marker Color": "İşaretçi Rengi", "Fans": "Fanlar", "Left Axis": "Sol Eksen", "Open": "Açılış", "YES": "EVET", "longlen_input": "longlen", "Moving Average Exponential_study": "Üstel Hareketli Ortalama", "Source border color": "Kaynak kenar rengi", "Redo {0}": "{0}. Yinele", "Cypher Pattern": "Açarsöz Formasyonu", "s_dates": "ler", "Caracas": "Karakas", "Area": "Alan", "Triangle Pattern": "Üçgen Formasyonu", "Balance of Power_study": "Güç Dengesi", "EOM_input": "EOM", "Shapes_input": "Şekiller", "Oversold_input": "Fazla satılmış", "Apply Manual Risk/Reward": "Elle Risk/Ödül Uygula", "Market Closed": "Piyasa Kapalı", "Sydney": "Sidney", "Indicators": "Göstergeler", "close": "kapat", "q_input": "q", "You are notified": "Bilgililendirilmişsiniz", "Font Icons": "Font Simgeleri", "%D_input": "%D", "Border Color": "Kenarlık Rengi", "Offset_input": "Uzantı", "Replay Mode": "Tekrar Çalma Modu", "Price Scale": "Fiyat Ölçeği", "HV_input": "HV", "Seconds": "Saniye", "Settings": "Ayarlar", "Start_input": "Başlat", "Elliott Impulse Wave (12345)": "Elliott Darbe Dalgası (12345)", "Hours": "Saatler", "Send to Back": "Arkaya Gönder", "Color 4_input": "Renk 4", "Los Angeles": "", "Prices": "Fiyatlar", "Hollow Candles": "İçi Boş Mumlar", "July": "Temmuz", "Create Horizontal Line": "Yatay Çizgi Oluştur", "Minute": "Birkaç Günlük", "Cycle": "Birkaç Yıllık", "ADX Smoothing_input": "ADX Düzleştirilmiş", "One color for all lines": "Tüm çizgilere tek renk", "m_dates": "a", "(H + L + C)/3": "(Y + D + K)/3", "Candles": "Mum Grafikler", "We_day_of_week": "Çar", "Width (% of the Box)": "Genişlik (Kutudan %)", "%d minute": "%d dakika", "Go to...": "Git...", "Pip Size": "Pip Miktarı", "Wednesday": "Çarşamba", "This drawing is used in alert. If you remove the drawing, the alert will be also removed. Do you want to remove the drawing anyway?": "Bu çizimi bir alarmda kullanılıyor. Eğer bu çizimi kaldırırsınız, alarm da kaldırılmış olur. Çizim yine de kaldırmak istiyor musunuz?", "Show Countdown": "Gerisayımı Göster", "Show alert label line": "Alarm etiket çizgisini göster", "Down Wave 2 or B": "Düşüş Dalgası 2 veya B", "MA_input": "HO", "Length2_input": "Uzunluk2", "not authorized": "yetkisiz", "Session Volume_study": "Seans Hacmi", "Image URL": "Resim URL'i", "Submicro": "", "SMI Ergodic Oscillator_input": "SMI Ergodic Osilatörü", "Show Objects Tree": "Nesnelerin Ağacını Göster", "Primary": "Birkaç Aylık", "Price:": "Fiyat:", "Bring to Front": "En öne getir", "Brush": "Fırça", "Not Now": "Şimdi Değil", "Yes": "Evet", "C_data_mode_connecting_letter": "K", "SMALen4_input": "BHOUzun4", "Apply Default Drawing Template": "Varsayılan Çizim Şablonunu Uygula", "Compact": "Kompakt", "Save As Default": "Varsayılan Olarak Sakla", "Target border color": "Hedef kenar rengi", "Invalid Symbol": "Geçersiz Sembol", "Inside Pitchfork": "Dirgen İçi", "yay Color 1_input": "yay Renk 1", "Quandl is a huge financial database that we have connected to TradingView. Most of its data is EOD and is not updated in real-time, however the information may be extremely useful for fundamental analysis.": "Quandl, TradingvView'e bağladığımız devasa bir finansal veritabanıdır. Quandl verilerin çoğu EOD'dir ve gerçek zamanlı güncellenmez, ama ilgili bilgiler temel analizlerinizde çok faydalı olabilirler.", "Hide Marks On Bars": "Çubuklardaki İşaretleri Gizle", "Cancel Order": "Emir İptal", "Hide All Drawing Tools": "Tüm Çizim Araçlarını Gizle", "WMA Length_input": "WMA Uzunluğu", "Show Dividends on Chart": "Grafikte Temettüleri Göster", "Show Executions": "İcraları Göster", "Borders": "Kenarlar", "Remove Indicators": "Göstergelerı Kaldır", "loading...": "yüklüyor...", "Closed_line_tool_position": "Kapalı", "Rectangle": "Dikdörtgen", "Change Resolution": "Çözünürlüğü Değiştir", "Indicator Arguments": "Gösterge Argümanları", "Symbol Description": "Sembol Açıklaması", "Chande Momentum Oscillator_study": "Chande Momentum Osilatörü", "Degree": "Derece", " per order": "emir başına", "Line - HL/2": "Çizgi - YD/2", "Supercycle": "Birkaç On Yıllık", "Jun": "Haz", "Least Squares Moving Average_study": "En Küçük Kareler Hareketli Ortalaması", "Change Variance value": "Varyans değerini değiştir", "powered by ": "veri sağlayan ", "Source_input": "Kaynak", "Change Seconds To": "Saniyeleri Değiştir", "%K_input": "%K", "Scales Text": "Ölçek Metni", "Toronto": "", "Please enter template name": "Lütfen şablon adı yazın", "Symbol Name": "Sembol Adı", "Tokyo": "", "Events Breaks": "Olaylar Kesmesi", "San Salvador": "", "Months": "Aylar", "Symbol Info...": "Sembol Bilgisi...", "Elliott Wave Minor": "Elliott Küçük Dalgası", "Cross": "Artı", "Measure (Shift + Click on the chart)": "Ölçüm yap (Shift + Grafiğin üstüne tıkla)", "Override Min Tick": "Fiyatın Min Adımı", "Show Positions": "Pozisyonları Göster", "Dialog": "Diyalog", "Add To Text Notes": "Notlara Ekle", "Elliott Triple Combo Wave (WXYXZ)": "Elliott Üçlü Kombo Dalgası (WXYXZ)", "Multiplier_input": "Çarpan", "Risk/Reward": "Risk/Ödül", "Base Line Periods_input": "Temel Çizgi Periyotları", "Show Dividends": "Temettüleri Göster", "Relative Strength Index_study": "Göreceli Güç Endeksi", "Modified Schiff Pitchfork": "Değiştirilmiş Schiff Dirgeni", "Top Labels": "Üst Etiketler", "Show Earnings": "Kazançları Göster", "Line - Open": "Çizgi - Açılış", "Elliott Triangle Wave (ABCDE)": "Elliott Üçgen Dalgası (ABCDE)", "Minuette": "Birkaç Saatlık", "Text Wrap": "Metin Kaydırma", "Reverse Position": "Karşıt Pozisyon", "Elliott Minor Retracement": "Elliott Küçük Düzelme", "DPO_input": "DFO", "Pitchfan": "Basamak Fanı", "Slash_hotkey": "Taksim İşareti", "No symbols matched your criteria": "Kriterinize uygun hiçbir sembol bulunamadı", "Icon": "İkon", "lengthRSI_input": "uzunlukRSI", "Tuesday": "Salı", "Teeth Length_input": "Diş Uzunluğu", "Indicator_input": "Gösterge", "Box size assignment method": "Kutu boyutlu atma yöntemi", "Open Interval Dialog": "Aralık Diyaloğunu Aç", "Shanghai": "Şangay", "Athens": "Atina", "Fib Speed Resistance Arcs": "Fib Hız Direnç Yayları", "Content": "İçerik", "middle": "orta", "Lock Cursor In Time": "Kürsörü Zamana Kilitle", "Intermediate": "Birkaç Hafta-Aylık", "Eraser": "Silici", "Relative Vigor Index_study": "Göreceli Vigor Endeksi", "Envelope_study": "Zarf", "Symbol Labels": "Sembol Etiketleri", "Pre Market": "Açılış Öncesi", "Horizontal Line": "Yatay Çizgi", "O_in_legend": "A", "Confirmation": "Onaylama", "HL Bars": "YD Çubukları", "Lines:": "Çizgiler:", "Hide Favorite Drawings Toolbar": "Favori Çizim Araç Çubuğunu Gizle", "Buenos Aires": "", "X Cross": "X Kesişim", "Bangkok": "", "Profit Level. Ticks:": "Kâr Seviyesi. Adımlar:", "Show Date/Time Range": "Tarih/Saat Aralığı Göster", "Level {0}": "{0}. Kademe", "Favorites": "Favoriler", "Horz Grid Lines": "Yatay Kılavuz Çizgileri", "-DI_input": "-DI", "Price Range": "Fiyat Aralığı", "day": "gün", "deviation_input": "sapma", "Account Size": "Hesap Boyutu", "UTC": "", "Time Interval": "Zaman Aralığı", "Success text color": "Başarı metin rengi", "ADX smoothing_input": "ADX düzleştirilmiş", "%d hour": "%d saat", "Order size": "Emir boyutu", "Drawing Tools": "Çizim Araçları", "Save Drawing Template As": "Çizim Şablonu Yeni Adla Sakla", "Tokelau": "", "Traditional": "Geleneksel", "Chaikin Money Flow_study": "Chaikin Para Akışı", "Ease Of Movement_study": "Hareket Kolaylığı", "Defaults": "Varsayılanlar", "Percent_input": "Yüzde", "Interval is not applicable": "Zaman aralığı uygulanabilir değil", "short_input": "kısa", "Visual settings...": "Görsel ayarlar...", "RSI_input": "RSI", "Chatham Islands": "Chatham Adaları", "Detrended Price Oscillator_input": "Karşılaştırılamayan Fiyat Osilatörü", "Mo_day_of_week": "Pzt", "Up Wave 4": "Yükseliş Dalgası 4", "center": "orta", "Vertical Line": "Dikey Çizgi", "Bogota": "", "Show Splits on Chart": "Grafikte Bölünmeleri Göster", "Sorry, the Copy Link button doesn't work in your browser. Please select the link and copy it manually.": "Üzgünüz, Linki Kopyala düğmesi sizin tarayıcınızda çalışmıyor. Lütfen linki elle seçerek kopyalayınız.", "Levels Line": "Kademeler Çizgisi", "Events & Alerts": "Olaylar ve Alarmlar", "ROCLen4_input": "ROCUzun4", "Aroon Down_input": "Aroon Düşüş", "Add To Watchlist": "İzleme Listesine Ekle", "Total": "Toplam", "Price": "Fiyat", "left": "sol", "Lock scale": "Ölçeği kilitle", "Limit_input": "Limit", "Change Days To": "Günleri Değiştir", "Price Oscillator_study": "Fiyat Osilatörü", "smalen1_input": "bhoUznlk1", "Drawing Template '{0}' already exists. Do you really want to replace it?": "'{0}' Çizim Şablonu zaten vard. Değiştirmek mi istiyorsunuz?", "Show Middle Point": "Orta Noktayı Göster", "KST_input": "KST", "Extend Right End": "Sağ Sona Uzat", "Base currency": "Temel kur", "Line - Low": "Çizgi - Düşük", "Price_input": "Fiyat", "Gann Fan": "Gann Fanı", "EOD": "GS", "Weeks": "Haftalar", "McGinley Dynamic_study": "McGinley Dinamik", "Relative Volatility Index_study": "Göreceli Volatilite Endeksi", "Source Code...": "Kaynak Kodu...", "PVT_input": "PVT", "Show Hidden Tools": "Gizli Araçları Göster", "Hull Moving Average_study": "Hull Hareketli Ortalaması", "Symbol Prev. Close Value": "Sembolün Önceki Kapanış Değeri", "{0} chart by TradingView": "{0} grafiğini sağlayan TradingView", "Right Shoulder": "Sağ Omuz", "Remove Drawing Tools": "Çizim Araçları Kaldır", "Friday": "Cuma", "Zero_input": "Sıfır", "Company Comparison": "Şirket Kıyaslama", "Stochastic Length_input": "Stokastik Uzunluk", "mult_input": "çarpan", "URL cannot be received": "URL alınamıyor", "Success back color": "Başarı arkaplan rengi", "E_data_mode_end_of_day_letter": "GS", "Trend-Based Fib Extension": "Trend-Temeli Fib Uzatma", "Top": "Üst", "Double Curve": "Çift Eğri", "Stochastic RSI_study": "Stokastik RSI", "Oops!": "Eyvah!", "Horizontal Ray": "Yatay Işın", "smalen3_input": "bhoUznlk3", "Ok": "Tamam", "Script Editor...": "Komut Düzenleyici...", "Are you sure?": "Emin misiniz?", "Trades on Chart": "Grafik üzeri İşlemler", "Listed Exchange": "Kayıtlı Borsa", "Error:": "Hata:", "Fullscreen mode": "Tam ekran modu", "Add Text Note For {0}": "{0} için Not Ekle", "K_input": "K", "Do you really want to delete Drawing Template '{0}' ?": "'{0}' Çizim Şablonunu silmek istediğinizden emin misiniz?", "ROCLen3_input": "ROCUzun3", "Micro": "", "Text Color": "Metin rengi", "Rename Chart Layout": "Grafik Yerleşimine Yeni Ad Ver", "Built-ins": "Gömülüler", "Background color 2": "Arkaplan rengi 2", "Drawings Toolbar": "Çizim Araç Çubuğu", "Moving Average Channel_study": "Hareketli Ortalama Kanalı", "New Zealand": "Yeni Zelanda", "CHOP_input": "CHOP", "Apply Defaults": "Varsayılanları Uygula", "% of equity": "Özkaynağın %", "Extended Alert Line": "Uzatılmış Alarm Çizgisi", "Note": "Not", "OK": "Tamam", "like": "beğendi", "Show": "Göster", "{0} bars": "{0} çubuklar", "Lower_input": "Alt", "Created ": "Oluşturma: ", "Warning": "Dikkat", "Elder's Force Index_study": "Elder Güç Endeksi", "Show Earnings on Chart": "Kazançları Grafikte Göster", "ATR_input": "ATR", "Low": "Düşük", "Bollinger Bands %B_study": "Bollinger Bantları %B", "Time Zone": "Saat Dilimi", "right": "sağ", "%d month": "%d ay", "Wrong value": "Yanlış değeri", "Upper Band_input": "Üst Bant", "Sun": "Paz", "Rename...": "Yeni Ad Ver...", "start_input": "başlangıç", "No indicators matched your criteria.": "Kriterinize uygun gösterge bulunamadı.", "Commission": "Komisyon", "Down Color": "Düşüş Rengi", "Short length_input": "Kısa uzunluk", "Kolkata": "", "Submillennium": "Sub-binyıllık", "Technical Analysis": "Teknik Analiz", "Show Text": "Metni Göster", "Channel": "Kanal", "FXCM CFD data is available only to FXCM account holders": "FXCM KFS verilerine sadece FXCM hesabı sahipleri erişebilir", "Lagging Span 2 Periods_input": "Gecikme Aralığı 2 Periyodu", "Connecting Line": "Bağlantı Çizgisi", "Seoul": "Seul", "bottom": "alt", "Teeth_input": "Diş", "Sig_input": "Sin", "Open Manage Drawings": "Çizim Yönetimini Aç", "Save New Chart Layout": "Yeni Grafik Yerleşimini Sakla", "Fib Channel": "Fib Kanalı", "Save Drawing Template As...": "Çizim Şablonu Yeni Adla Sakla...", "Minutes_interval": "Dakika", "Up Wave 2 or B": "Yükseliş Dalgası 2 veya B", "Columns": "Sütunlar", "Directional Movement_study": "Yönsel Hareket", "roclen2_input": "rocuznlk2", "Apply WPT Down Wave": "WPT Düşüş Dalgası Uygula", "Not applicable": "Uygun Değil", "Bollinger Bands %B_input": "Bollinger Bantları %B", "Default": "Varsayılan", "Singapore": "Singapur", "Template name": "Şablon adı", "Indicator Values": "Gösterge Değerleri", "Lips Length_input": "Dudak Uzunluğu", "Toggle Log Scale": "Logaritmik Ölçekle Değiştir", "L_in_legend": "D", "Remove custom interval": "Özel zaman aralığını kaldır", "shortlen_input": "shortlen", "Quotes are delayed by {0} min": "Fiyatlar {0} dakika gecikmeli", "Hide Events on Chart": "Grafikte Olayları Gizle", "Cash": "Nakit", "Profit Background Color": "Kâr Arkaplan Rengi", "Bar's Style": "Çubuk Türü", "Exponential_input": "Üstel", "Down Wave 5": "Düşüş Dalgası 5", "Previous": "Önceki", "Stay In Drawing Mode": "Çizim Modunda Kal", "Comment": "Yorum", "Connors RSI_study": "Connors RSI", "Bars": "Çubuk Grafikler", "Show Labels": "Etiketleri Göster", "Flat Top/Bottom": "Flat Üst/Alt", "Symbol Type": "Sembol Tipi", "December": "Aralık", "Lock drawings": "Çizimleri Kilitle", "Border color": "Kenarlık rengi", "Change Seconds From": "Saniyeleri Değiştir", "Left Labels": "Sol Etiketler", "Insert Indicator...": "Gösterge Ekle...", "ADR_B_input": "ADR_B", "Paste %s": "%s yapıştır", "Change Symbol...": "Sembolu Değiştir...", "Timezone": "Saat Dilimi", "Invite-only script. You have been granted access.": "Sadece-davetliler komutu. Erişim izni verildi.", "Color 6_input": "Renk 6", "Oct": "Eki", "ATR Length": "ATR Uzunluğu", "{0} financials by TradingView": "{0} finansal bilgilerini sağlayan TradingView", "Extend Lines Left": "Çizgileri Sola Uzat", "Feb": "Şub", "Transparency": "Şeffaflık", "No": "Hayır", "June": "Haziran", "Tweet": "Tweetle", "Cyclic Lines": "Periyodik Çizgiler", "length28_input": "uzunluk28", "ABCD Pattern": "ABCD Formasyonu", "When selecting this checkbox the study template will set \"__interval__\" interval on a chart": "Kutucuğu seçtiğinizde çalışma şablonunuzdaki grafikte zaman aralığı \"__interval__\" olarak ayarlanacak.", "Add": "Ekle", "OC Bars": "OC Çubuk Grafikler", "Millennium": "Binyıl", "On Balance Volume_study": "Denge İşlem Hacmi", "Apply Indicator on {0} ...": "{0} üzerinde Gösterge Uygula...", "NEW": "YENİ", "Chart Layout Name": "Grafik Yerleşimi Adı", "Up bars": "Artış çubukları", "Hull MA_input": "Hull HO", "Schiff": "", "Lock Scale": "Ölçeği Kilitle", "distance: {0}": "mesafe: {0}", "Extended": "Uzatılmış", "Square": "Kare", "Three Drives Pattern": "Üç Basamak Formasyonu", "NO": "HAYIR", "Top Margin": "Üst Marj", "Up fractals_input": "Yükselen fraktal", "Insert Drawing Tool": "Çizim Araçları Ekle", "OHLC Values": "OHLC Değerler", "Correlation_input": "Korelasyon", "Session Breaks": "Seans Araları", "Add {0} To Watchlist": "İzleme Listesine {0} Ekle", "Anchored Note": "Yapışık Not", "lipsLength_input": "dudakUzunluğu", "low": "düşük", "Apply Indicator on {0}": "{0} üzerine Gösterge Uygula", "UpDown Length_input": "UpDown Uzunluğu", "Price Label": "Fiyat Etiketi", "November": "Kasım", "Tehran": "Tahran", "Balloon": "Balon", "Track time": "Takip süresi", "Background Color": "Arkaplan rengi", "an hour": "bir saat", "Right Axis": "Sağ Eksen", "D_data_mode_delayed_streaming_letter": "G", "VI -_input": "VI -", "slowLength_input": "yavaşUzunluk", "Click to set a point": "Nokta belirlemek için tıkla", "Save Indicator Template As...": "Gösterge Şablonu Farklı Kaydet...", "Arrow Up": "Yukarı Ok", "n/a": "u/d", "Indicator Titles": "Göstergenin Adı", "Failure text color": "Metin Renginde Hata", "Sa_day_of_week": "Cmt", "Net Volume_study": "Net İşlem Hacmi", "Error": "Hata", "Edit Position": "Pozisyonu Değiştir", "RVI_input": "RVI", "Centered_input": "Ortalanmış", "Recalculate On Every Tick": "Her Adımda Yeniden Hesapla", "Left": "Sol", "Simple ma(oscillator)_input": "Basit ort(osilatör)", "Compare": "Kıyasla", "Fisher Transform_study": "Fisher Dönüşümü", "Show Orders": "Emirleri Göster", "Zoom In": "Yaklaş", "Length EMA_input": "ÜHO Uzunluğu", "Enter a new chart layout name": "Grafik yerleşiminin yeni adını yazın", "Signal Length_input": "Sinyal Uzunluğu", "FAILURE": "BAŞARISIZ", "Point Value": "Nokta Değeri", "D_interval_short": "G", "MA with EMA Cross_study": "HO ve ÜHO Kesişmesi", "Label Up": "Yukarı Etiket", "Price Channel_study": "Fiyat Kanalı", "Close": "Kapat", "ParabolicSAR_input": "ParabolicSAR", "Log Scale_scale_menu": "Logaritmik Ölçek", "MACD_input": "MACD", "Do not show this message again": "Bu mesajı tekrar gösterme", "{0} P&L: {1}": "{0} Kar&Zarar: {1}", "No Overlapping Labels": "Örtüşen Etiketler Yok", "Arrow Mark Left": "Sola Ok İşareti", "Slow length_input": "Yavaş uzunluk", "Line - Close": "Çizgi - Kapanış", "(O + H + L + C)/4": "(A + Y + D + K)/4", "Confirm Inputs": "Girişleri Onayla", "Open_line_tool_position": "Açık", "Lagging Span_input": "Gecikme Aralığı", "Subminuette": "Birkaç Dakikalık", "Thursday": "Perşembe", "Arrow Down": "Aşağı Ok", "Vancouver": "", "Triple EMA_study": "Üçlü ÜHO", "Elliott Correction Wave (ABC)": "Elliott Düzeltme Dalgası (ABC)", "Error while trying to create snapshot.": "Şipşak alırken hata oluştu.", "Label Background": "Etiket Arkaplanı", "Templates": "Şablonlar", "Please report the issue or click Reconnect.": "Lütfen hatayı bildirin ya da Tekrar Bağlan'ı tıklayın.", "Normal": "", "Signal Labels": "Sinyal Etiketler", "Delete Text Note": "Metin Notunu Sil", "compiling...": "derleniyor...", "Detrended Price Oscillator_study": "Trend Azaltma Fiyat Osilatörü", "Color 5_input": "Renk 5", "Fixed Range_study": "Sabit Aralık", "Up Wave 1 or A": "Yükseliş Dalgası 1 veya A", "Scale Price Chart Only": "Sadece Fiyat Grafiğini Ölçeklendir", "Unmerge Up": "Yukarıdan Ayrıştır", "auto_scale": "otomatik", "Short period_input": "Kısa periyot", "Background": "Arkaplan", "Study Templates": "Çalışma Şablonları", "Up Color": "Artış Rengi", "Apply Elliot Wave Intermediate": "Elliott Intermediate Dalgası Uygula", "VWMA_input": "VWMA", "Lower Deviation_input": "Alt Sapma", "Save Interval": "Zaman Aralığı Sakla", "February": "Şubat", "Reverse": "Karşıt", "Oops, something went wrong": "Eyvah, birşeyler ters gitti", "Add to favorites": "Favorilere ekle", "Median": "Medyan", "ADX_input": "ADX", "Remove": "Kaldır", "len_input": "uzn", "Arrow Mark Up": "Yukarı Ok İşareti", "April": "Nisan", "Active Symbol": "Aktif Sembol", "Extended Hours": "Genişletilmiş Saatler", "Crosses_input": "Kesişmeler", "Middle_input": "Orta", "Read our blog for more info!": "Daha fazla bilgi için blogumuzu okuyun!", "Sync drawing to all charts": "Çizimi tüm grafiklere eşitle", "LowerLimit_input": "AltLimit", "Know Sure Thing_study": "Know Sure Thing", "Copy Chart Layout": "Grafik Yerleşimini Kopyala", "Compare...": "Kıyasla...", "1. Slide your finger to select location for next anchor
    2. Tap anywhere to place the next anchor": "1. Sonraki çapanın
    yerini seçmek için parmağınızı kaydırın 2. Sonraki çapayı koymak için herhangi bir yere tıklayın", "Text Notes are available only on chart page. Please open a chart and then try again.": "Notlar sadece grafik penceresinde kullanılabilir. Lütfen bir grafik açın ve tekrar deneyin.", "Color": "Renk", "Aroon Up_input": "Aroon Yükseliş", "Apply Elliot Wave Major": "Elliott Majör Dalgası Uygula", "Scales Lines": "Ölçek Çizgileri", "Type the interval number for munute charts (i.e. 5 if it is going to be a five minute chart). Or number plus letter for H (Hourly), D (Daily), W (Weekly), M (Monthly) intervals (i.e. D or 2H)": "Dakikalık grafikler için sadece dakika aralığını yazın (örneğin beş dakikalık grafik istiyorsanız 5 yazın). Saatlik için rakam+H (Saatlık), D (Günlük), W (Haftalık), M (Aylık) gibi (örneğin D veya 2H)", "Ellipse": "Elips", "Up Wave C": "Yükseliş Dalgası C", "Show Distance": "Mesafeyi Göster", "Risk/Reward Ratio: {0}": "Risk/Ödül Oranı: {0}", "Restore Size": "Boyutu Yeniden Yükle", "Volume Oscillator_study": "İşlem Hacmi Osilatörü", "Honolulu": "", "Williams Fractal_study": "Williams Fraktalı", "Merge Up": "Yukarıya doğru Birleştir", "Right Margin": "Sağ Marj", "Moscow": "Moskova", "Warsaw": "Varşova"} \ No newline at end of file diff --git a/charting_library/static/localization/translations/vi.json b/charting_library/static/localization/translations/vi.json index 72703345..834fb619 100644 --- a/charting_library/static/localization/translations/vi.json +++ b/charting_library/static/localization/translations/vi.json @@ -1 +1 @@ -{"ticks_slippage ... ticks": "ticks", "Months_interval": "Months", "Percent_input": "Percent", "Callout": "Chú thích", "month": "tháng", "roclen1_input": "roclen1", "Minor": "Sóng nhỏ", "Top Margin": "Lề trên", "Magnet Mode": "Chế độ nam châm", "OSC_input": "OSC", "Volume_study": "Khối lượng", "Lips_input": "Lips", "Histogram": "Biểu đồ tần suât", "Base Line_input": "Base Line", "Step": "Bước", "Fib Time Zone": "Fibonacci vùng thời gian", "SMALen2_input": "SMALen2", "Bollinger Bands_study": "Bollinger Bands", "Nov": "Tháng mười một", "Upper_input": "Upper", "Sig_input": "Sig", "Move Up": "Di chuyển lên", "Gann Square": "Mô hình vuông Gann", "Count_input": "Count", "Anchored Text": "Neo văn bản", "SMALen1_input": "SMALen1", "Cross_chart_type": "Chéo nhau", "Target Color:": "Màu mục tiêu:", "Pitchfork": "Mô hình Pitchfork", "Normal": "Bình thường", "Accumulation/Distribution_study": "Accumulation/Distribution", "Rate Of Change_study": "Rate Of Change", "in_dates": "trong", "Color 7_input": "Color 7", "Chop Zone_study": "Chop Zone", "Trend-Based Fib Time": "Fibonacci vùng thời gian dựa trên xu hướng", "Remove All Indicators": "Loại bỏ tất cả các chỉ số", "Oscillator_input": "Oscillator", "yay Color 0_input": "yay Color 0", "Labels": "Các nhãn", "Chande Kroll Stop_study": "Chande Kroll Stop", "Hours_interval": "Hours", "Scale Right": "Chia tỷ lệ theo bên phải", "Bollinger Bands %B_input": "Bollinger Bands %B", "siglen_input": "siglen", "DEMA_input": "DEMA", "Remove All Drawing Tools": "Loại bỏ tất cả công cụ vẽ", "Linear Regression Curve_study": "Linear Regression Curve", "Symbol_input": "Symbol", "increment_input": "increment", "Use Lower Deviation_input": "Use Lower Deviation", "Label": "Nhãn", "second": "seconds", "smoothD_input": "smoothD", "Falling_input": "Falling", "Percentage": "Tỷ lệ phần trăm", "Entry price:": "Giá ban đầu:", "RSI Source_input": "RSI Source", "Ichimoku Cloud_study": "Ichimoku Cloud", "Grid": "Lưới", "Mass Index_study": "Mass Index", "Smoothing_input": "Smoothing", "Color 3_input": "Color 3", "Jaw Length_input": "Jaw Length", "Keltner Channels_study": "Keltner Channels", "Long Position": "Vị trí mua", "Bands style_input": "Bands style", "Undo {0}": "Khôi phục {0}", "With Markers": "Với các dấu hiệu", "Momentum_study": "Momentum", "MF_input": "MF", "Gann Box": "Mô hình hộp Gann", "Long length_input": "Long length", "Disjoint Angle": "Góc phân chia", "W_interval_short": "W", "Log Scale": "Tỷ lệ logarit", "Minuette": "Sóng rất nhỏ", "Equality Line_input": "Equality Line", "Short_input": "Short", "Fib Wedge": "Fibonacci hình cái nêm", "Line": "Biểu đồ đường viền", "Down fractals_input": "Down fractals", "Fib Retracement": "Fibonacci thoái lui", "smalen2_input": "smalen2", "isCentered_input": "isCentered", "Border": "Đường viền", "Klinger Oscillator_study": "Klinger Oscillator", "Absolute": "Tuyệt đối", "Style": "Hình dạng", "SMI Ergodic Indicator/Oscillator_study": "SMI Ergodic Indicator/Oscillator", "Aug": "Tháng tám", "Manage Drawings": "Quản lý chức năng vẽ", "No drawings yet": "Chưa có bản vẽ nào", "Chande MO_input": "Chande MO", "jawLength_input": "jawLength", "TRIX_study": "TRIX", "MACD_study": "MACD", "RVGI_input": "RVGI", "signalLength_input": "signalLength", "d_dates": "d", "in %s_time_range": "in %s", "%s ago_time_range": "%s trở lại", "Source_compare": "Source", "Correlation Coefficient_study": "Correlation Coefficient", "Text color": "Màu văn bản", "Levels": "Các cấp độ", "Short Length_input": "Short Length", "teethLength_input": "teethLength", "Failure text color": "Màu văn bản cho lệnh thất bại", "FAILURE": "THẤT BẠI", "Subminuette": "Sóng cực nhỏ", "Lock All Drawing Tools": "Khóa tất cả công cụ vẽ", "Target border color": "Màu viền cho mục tiêu", "Right End": "Phía cuối bên phải", "Head & Shoulders": "Mô hình Vai-Đầu-Vai", "Simple ma(oscillator)_input": "Simple ma(oscillator)", "Properties...": "Đặc tính...", "MA Cross_study": "MA Cross", "Trend Angle": "Góc xu hướng", "Crosshair": "Đường chữ thập", "Signal line period_input": "Signal line period", "Show/Hide": "Hiển thị/ẩn", "Price Volume Trend_study": "Price Volume Trend", "Auto Scale": "Tự động chia tỷ lệ", "hour": "giờ", "Scales": "Điều chỉnh tỷ lệ", "Text": "Văn bản", "F_data_mode_forbidden_letter": "F", "Risk/Reward long": "Rủi ro/lợi nhuận ở trạng thái mua", "Long RoC Length_input": "Long RoC Length", "Length3_input": "Length3", "+DI_input": "+DI", "Show Bars Range": "Hiển thị phạm vi các thanh", "Moving Average_study": "Moving Average", "Zoom In": "Phóng to ", "Failure back color": "Màu nền cho lệnh thất bại", "

    Only D, W, M intervals are supported for this symbol/exchange. You will be automatically switched to a D interval. Intraday intervals are not available because of exchange policies.

    ": "

    Chỉ chu kỳ D, W, M được hỗ trợ bởi Mã/Sở này. Bạn sẽ được tự động chuyển qua chu kỳ D. Các chu kỳ trong ngày sẽ không có vì chính sách của Sở giao dịch.

    ", "Extend Left": "Kéo dài phía trái", "Date Range": "Phạm vi ngày", "Show Price": "Hiển thị giá", "Level_input": "Level", "Commodity Channel Index_study": "Commodity Channel Index", "Elder's Force Index_input": "Elder's Force Index", "Scales Properties...": "Đặc tính chia tỷ lệ", "Format": "Định dạng", "Color bars based on previous close": "Các thanh màu dựa trên đóng cửa phiên trước", "Text:": "Văn bản:", "Aroon_study": "Aroon", "h_dates": "h", "Short Position": "Vị trí bán", "ADR_B_input": "ADR_B", "SMALen3_input": "SMALen3", "Average Directional Index_study": "Average Directional Index", "Fr_day_of_week": "Fr", "H_in_legend": "H", "Bars Pattern": "Mẫu hình thanh", "D_input": "D", "p_input": "p", "Fib Circles": "Các vòng Fibonacci", "Dot": "Dấu chấm", "Target back color": "Màu hình nền cho mục tiêu", "orders_up to ... orders": "orders", "Lead 2_input": "Lead 2", "Save image": "Lưu ảnh", "Move Down": "Di chuyển xuống", "Vortex Indicator_study": "Vortex Indicator", "Apply": "Áp dụng", "%d day": "%d ngày", "Hide": "Ẩn", "Target text color": "Màu văn bản của mục tiêu", "Scale Left": "Chia tỷ lệ theo bên trái", "Elliott Wave Subminuette": "Sóng Elliott cực nhỏ", "Jan": "Tháng một", "Source back color": "Màu hình nền nguồn dữ liệu", "Text Alignment:": "Thẳng hàng chữ:", "Oct": "Tháng mười", "Extend Lines": "Kéo dài các đường", "Inputs": "Các đầu vào", "Conversion Line_input": "Conversion Line", "Su_day_of_week": "Su", "Up fractals_input": "Up fractals", "Regression Trend": "Xu hướng hồi quy", "Fib Spiral": "Fibonacci hình xoắn ốc", "Double EMA_study": "Double EMA", "minute": "phút", "Price Oscillator_study": "Price Oscillator", "Stop Color:": "Màu lệnh dừng lại:", "Stay in Drawing Mode": "Giữ nguyên chế độ vẽ", "Bottom Margin": "Lề dưới", "Average True Range_study": "Average True Range", "Max value_input": "Max value", "MA Length_input": "MA Length", "Time Interval": "Khoảng thời gian", "UpperLimit_input": "UpperLimit", "sym_input": "sym", "DI Length_input": "DI Length", "SMI_input": "SMI", "Arrow": "Mũi tên", "Basis_input": "Basis", "Arrow Mark Down": "Đánh dấu mũi tên xuống", "lengthStoch_input": "lengthStoch", "Remove from favorites": "Loại bỏ khỏi mục yêu thích", "Copy": "Sao chép", "Scale Series Only": "Chia tỷ lệ theo số liệu", "Simple": "Đơn giản", "Arnaud Legoux Moving Average_study": "Arnaud Legoux Moving Average", "Technical Analysis": "Phân tích kĩ thuật", "Lower Band_input": "Lower Band", "VI +_input": "VI +", "Lead 1_input": "Lead 1", "ROCLen2_input": "ROCLen2", "Simple ma(signal line)_input": "Simple ma(signal line)", "Show Labels": "Hiển thị các nhãn", "Ray": "Tia", "Chaikin Oscillator_study": "Chaikin Oscillator", "Balloon": "Bình luận", "Color Theme": "Màu sắc chủ đề", "Centered_input": "Centered", "Bollinger Bands Width_input": "Bollinger Bands Width", "Fib Speed Resistance Arcs": "Fibonacci kháng cự vòng cung", "D_interval_short": "D", "Lock/Unlock": "Khóa/Mở khóa", "Color 1_input": "Color 1", "Moving Average Weighted_study": "Moving Average Weighted", "Type": "Loại", "Short period_input": "Short period", "Fib Speed Resistance Fan": "Fibonacci kháng cự dạng quạt", "Left End": "Phía cuối bên trái", "Volume Oscillator_study": "Volume Oscillator", "S_data_mode_snapshot_letter": "S", "post-market": "Thị trường sau khi đóng cửa", "smalen4_input": "smalen4", "CCI_input": "CCI", "Unmerge Up": "Hủy sáp nhập lên", "Upper Deviation_input": "Upper Deviation", "XABCD Pattern": "Mẫu hình XABCD", "Schiff Pitchfork": "Mô hình Schiff Pitchfork", "Flipped": "Lật", "NV_input": "NV", "Choppiness Index_study": "Choppiness Index", "Merge Down": "Sáp nhập xuống", "Th_day_of_week": "Th", " per contract": " từng hợp đồng", "eod delayed": "EOD bị trì hoãn", "Delete": "Xóa", "percent_input": "percent", "Apr": "Tháng tư", "Length_input": "Length", "Median_input": "Median", "Accumulation/Distribution_input": "Accumulation/Distribution", "C_in_legend": "C", "Weeks_interval": "Weeks", "smoothK_input": "smoothK", "Percentage_scale_menu": "Phần trăm", "MOM_input": "MOM", "h_interval_short": "h", "Rotated Rectangle": "Hình chữ nhật xoay chuyển", "Modified Schiff": "Mô hình Schiff biến đổi", "top": "Phía trên", "Send Backward": "Gửi ngược lại", "TRIX_input": "TRIX", "Elliott Major Retracement": "Sóng Elliott lớn thoái lui", "Periods_input": "Periods", "Forecast": "Dự đoán", "Histogram_input": "Histogram", "StdDev_input": "StdDev", "Relative Strength Index_study": "Relative Strength Index", "-DI_input": "-DI", "short_input": "short", "Symbol": "Mã giao dịch", "Precision": "Độ chính xác", "Mar": "Tháng ba", "Offset": "Bù lại", "Format...": "Định dạng...", "Search": "Tìm kiếm", "Zig Zag_study": "Zig Zag", "SUCCESS": "THÀNH CÔNG", "Detrended Price Oscillator_input": "Detrended Price Oscillator", "length_input": "length", "Price Line": "Đường giá", "Area With Breaks": "Vùng gãy", "Zoom Out": "Thu nhỏ", "Stop Level. Ticks:": "Cấp độ dừng. Đánh dấu:", "Jul": "Tháng bảy", "Above Bar": "Nến bên trên", "Visual Order": "Thứ tự trực quan", "Stop Background Color": "Màu hình nền cho lệnh dừng lại", "Slow length_input": "Slow length", "Conversion Line Periods_input": "Conversion Line Periods", "Sep": "Tháng chín", "TEMA_input": "TEMA", "Directional Movement_study": "Directional Movement", "Extend Left End": "Kéo dài phía cuối trái", "Advance/Decline_study": "Advance/Decline", "Flag Mark": "Cờ đánh dấu", "Drawings": "Các hình vẽ", "Fast length_input": "Fast length", "Cancel": "Hủy bỏ", "Bar #": "Các thanh #", "Redo": "Làm lại", "Ultimate Oscillator_study": "Ultimate Oscillator", "Growing_input": "Growing", "Plot_input": "Plot", "Color 8_input": "Color 8", "Indicators, Fundamentals, Economy and Add-ons": "Các chỉ số, yếu tố cơ bản, cơ cấu sắp xếp và tiện ích", "Bollinger Bands Width_study": "Bollinger Bands Width", "roclen3_input": "roclen3", "Overbought_input": "Overbought", "DPO_input": "DPO", "Trend Line": "Đường xu hướng", "TimeZone": "Múi giờ ", "Risk/Reward short": "Rủi ro/Lợi nhuận ở trạng thái bán", "Price Range": "Phạm vi giá", "Extended Hours": "Thời gian mở rộng", "Triangle": "Hình tam giác", "Line With Breaks": "Các đường gãy", "Period_input": "Period", "Watermark": "Chữ mờ", "Trigger_input": "Trigger", "SigLen_input": "SigLen", "Extend Right": "Kéo dài phía phải", "Color 2_input": "Color 2", "Show Prices": "Hiển thị các mức giá", "Graphics": "Đồ họa", "Arrow Mark Right": "Đánh dấu mũi tên sang phải", "Background color 2": "Màu hình nền 2", "Background color 1": "Màu hình nền 1", "Circles": "Các vòng tròn", "Williams Alligator_study": "Williams Alligator", "ROCLen1_input": "ROCLen1", "M_interval_short": "M", "Change Symbol...": "Đổi mã giao dịch...", "Price Levels": "Các cấp độ giá", "Source text color": "Màu văn bản nguồn dữ liệu", "Zero Line_input": "Zero Line", "Increment_input": "Increment", "Days_interval": "Days", "Net Volume_study": "Net Volume", "m_dates": "m", "Lock": "Khóa", "length14_input": "length14", "retrying": "đang thử lại", "High": "Cao nhất", "Polyline": "Hình polyline", "Add to favorites": "Thêm vào mục yêu thích", "Color 0_input": "Color 0", "maximum_input": "maximum", "D_data_mode_delayed_letter": "D", "Sigma_input": "Sigma", "Coordinates": "Tọa độ", "fastLength_input": "fastLength", "Width": "Chiều rộng", "Historical Volatility_study": "Historical Volatility", "Compare or Add Symbol...": "So sánh và thêm mã giao dịch...", "Parallel Channel": "Kênh song song", "Divisor_input": "Divisor", "Dec": "Tháng mười hai", "Extend": "Kéo dài", "length7_input": "length7", "Send to Back": "Gửi cho quay lại", "Undo": "Khôi phục", "Window Size_input": "Window Size", "Reset Scale": "Thiết lập lại chia tỷ lệ", "Long Length_input": "Long Length", "%R_input": "%R", "Chart Properties": "Đặc tính biểu đồ", "bars_margin": "Thanh ", "smalen3_input": "smalen3", "Length1_input": "Length1", "x_input": "x", "Save As...": "Lưu dưới dạng...", "Parabolic SAR_study": "Parabolic SAR", "Fisher Transform_study": "Fisher Transform", "UO_input": "UO", "Short RoC Length_input": "Short RoC Length", "Jaw_input": "Jaw", "Help": "Trợ giúp", "Coppock Curve_study": "Coppock Curve", "Reset Chart": "Thiết lập lại biểu đồ", "Overlay the main chart": "Chèn vào biểu đồ chính", "longlen_input": "longlen", "Moving Average Exponential_study": "Moving Average Exponential", "Source border color": "Màu viền nguồn dữ liệu", "Redo {0}": "Làm lại {0}", "s_dates": "s", "Area": "Biểu đồ vùng", "invalid symbol": "mã không hợp lệ", "Triangle Pattern": "Mẫu hình tam giác", "Balance of Power_study": "Balance of Power", "EOM_input": "EOM", "Least Squares Moving Average_study": "Least Squares Moving Average", "Indicators": "Các chỉ số", "q_input": "q", "%D_input": "%D", "Border Color": "Màu đường viền", "Offset_input": "Offset", "HV_input": "HV", "Start_input": "Bắt đầu", "R_data_mode_realtime_letter": "R", "ROC_input": "ROC", "Berlin": "Berlin ", "Color 4_input": "Color 4", "closed": "đóng cửa", "Prices": "Các mức giá", "Hollow Candles": "Biểu đồ nến rỗng", "Minute": "Sóng khá nhỏ", "Cycle": "Sóng chu kỳ", "ADX Smoothing_input": "ADX Smoothing", "Settings": "Cài đặt", "Candles": "Biểu đồ nến", "We_day_of_week": "We", "%d minute": "%d phút", "Hide All Drawing Tools": "Ấn tất cả công cụ vẽ", "MA_input": "MA", "Detrended Price Oscillator_study": "Detrended Price Oscillator", "Multiplier_input": "Multiplier", "Image URL": "URL của ảnh", "SMI Ergodic Oscillator_input": "SMI Ergodic Oscillator", "Show Objects Tree": "Hiển thị danh sách đối tượng", "Primary": "Sóng sơ cấp", "Price:": "Giá:", "Bring to Front": "Đưa lên phía trước", "Brush": "Cọ vẽ", "Chaikin Oscillator_input": "Chaikin Oscillator", "C_data_mode_connecting_letter": "C", "SMALen4_input": "SMALen4", "Inside Pitchfork": "Mô hình Pitchfork mặt trong", "yay Color 1_input": "yay Color 1", "CHOP_input": "CHOP", "Middle_input": "Middle", "WMA Length_input": "WMA Length", "Low": "Thấp nhất", "Borders": "Đường viền", "Events": "Các sự kiện", "Columns": "Các cột", " per order": " từng lệnh", "Jun": "Tháng sáu", "On Balance Volume_study": "On Balance Volume", "Source_input": "Source", "%K_input": "%K", "Success back color": "Màu hình nền lệnh thành công", "len_input": "len", "Measure (Shift + Click on the chart)": "Đo lường (Shift + Click trên biểu đồ)", "Override Min Tick": "Điều chỉnh số thập phân", "RSI Length_input": "RSI Length", "Unmerge Down": "Hủy sáp nhập xuống", "Base Line Periods_input": "Base Line Periods", "pre-market": "Thị trường trước giờ mở cửa", "Top Labels": "Các nhãn phía trên", "Level {0}": "Cấp độ {0}", "Text Wrap": "Xuống dòng tự động", "Elliott Minor Retracement": "Sóng Elliott nhỏ thoái lui", "Pitchfan": "Mô hình Pitchfork dạng quạt", "No symbols matched your criteria": "Không mã giao dịch nào khớp với tiêu chuẩn của bạn", "Icon": "Biểu tượng", "Open": "Mở cửa", "Indicator_input": "Indicator", "Q_input": "Q", "middle": "khoảng giữa", "Intermediate": "Sóng trung cấp", "Eraser": "Tẩy", "Relative Vigor Index_study": "Relative Vigor Index", "Envelope_study": "Envelope", "show MA_input": "show MA", "Horizontal Line": "Đường nằm ngang", "O_in_legend": "O", "Lines:": "Các đường ", "useTrueRange_input": "useTrueRange", "Profit Level. Ticks:": "Cấp độ lợi nhuận. Đánh dấu:", "Show Date/Time Range": "Hiển thị phạm vi ngày/thời gian", "%d year": "%d năm", "Tu_day_of_week": "Tu", "day": "ngày", "deviation_input": "deviation", "week": "tuần", "long_input": "long", "VWMA_study": "VWMA", "Success text color": "Màu chữ lệnh thành công", "%d hour": "%d giờ", "Displacement_input": "Displacement", "Chaikin Money Flow_study": "Chaikin Money Flow", "Ease Of Movement_study": "Ease Of Movement", "Defaults": "Các mặc định", "Oversold_input": "Oversold", "Williams %R_study": "Williams %R", "depth_input": "depth", "RSI_input": "RSI", "Long period_input": "Long period", "Mo_day_of_week": "Mo", "center": "trung tâm", "Vertical Line": "Đường thẳng đứng", "Minutes_interval": "Minutes", "X_input": "X", "ROCLen4_input": "ROCLen4", "Aroon Down_input": "Aroon Down", "Add To Watchlist": "Thêm vào danh sách theo dõi", "Clone": "Bản sao", "left": "Bên trái", "Lock scale": "Khóa chia tỷ lệ", "Time Levels": "Các cấp độ thời gian", "smalen1_input": "smalen1", "Extend Right End": "Kéo dài phía cuối phải", "Fans": "Các cánh quạt", "Price_input": "Price", "Close_input": "Close", "Gann Fan": "Mô hình quạt Gann", "Modified Schiff Pitchfork": "Mô hình Schiff Pitchfork biến đổi", "Relative Volatility Index_study": "Relative Volatility Index", "PVT_input": "PVT", "Circle Lines": "Các đường vòng tròn", "Hull Moving Average_study": "Hull Moving Average", "Bring Forward": "Đưa ra", "Zero_input": "Zero", "Company Comparison": "So sánh các công ty", "Stochastic Length_input": "Stochastic Length", "mult_input": "mult", "Signal smoothing_input": "Signal smoothing", "E_data_mode_end_of_day_letter": "E", "Trend-Based Fib Extension": "Fibonacci mở rộng dựa trên xu hướng", "Stochastic RSI_study": "Stochastic RSI", "Horizontal Ray": "Tia nằm ngang", "K_input": "K", "ROCLen3_input": "ROCLen3", "Text Color": "Màu văn bản", "Screen (No Scale)": "Không chia tỷ lệ", "Signal_input": "Signal", "OK": "Đồng ý", "like": "likes", "Show": "Hiển thị", "Exchange": "Thị trường", "{0} bars": "{0} thanh", "Lower_input": "Lower", "Arc": "Hình vòng cung", "Elder's Force Index_study": "Elder's Force Index", "Stochastic_study": "Stochastic", "Bollinger Bands %B_study": "Bollinger Bands %B", "Time Zone": "Múi giờ ", "right": "phải", "%d month": "%d tháng", "Donchian Channels_study": "Donchian Channels", "Upper Band_input": "Upper Band", "start_input": "start", "No indicators matched your criteria.": "Không có chỉ số nào khớp với tiêu chuẩn của bạn", "Short length_input": "Short length", "Triple EMA_study": "Triple EMA", "Precise Labels_scale_menu": "Precise Labels", "Smoothed Moving Average_study": "Smoothed Moving Average", "Show Text": "Hiển thị văn bản", "Channel": "Kênh", "Lagging Span 2 Periods_input": "Lagging Span 2 Periods", "bottom": "phía dưới", "Teeth_input": "Teeth", "Fib Channel": "Kênh Fibonacci", "Closed_line_tool_position": "Đóng cửa", "exponential_input": "exponential", "OnBalanceVolume_input": "OnBalanceVolume", "roclen2_input": "roclen2", "Chande Momentum Oscillator_study": "Chande Momentum Oscillator", "or copy url:": "Hoặc sao chép URL:", "Money Flow_study": "Money Flow", "Lips Length_input": "Lips Length", "Use Upper Deviation_input": "Use Upper Deviation", "L_in_legend": "L", "Inside": "Bên trong", "shortlen_input": "shortlen", "Timezone/Sessions": "Múi giờ/Phiên giao dịch", "ADX_input": "ADX", "Profit Background Color": "Màu hình nền phần lợi nhuận", "Bar's Style": "Hình dạng biểu đồ ", "Exponential_input": "Exponential", "Stay In Drawing Mode": "Giữ nguyên chế độ vẽ", "Comment": "Bình luận", "Long_input": "Long", "Bars": "Biểu đồ thanh", "Flat Top/Bottom": "Mặt phẳng đỉnh/đáy", "loading data": "Đang tải dữ liệu", "Border color": "Màu đường viền", "Left Labels": "Các nhãn bên trái", "Insert Indicator...": "Chèn chỉ số...", "P_input": "P", "Color 6_input": "Color 6", "Rectangle": "Hình chữ nhật", "Feb": "Tháng hai", "Transparency": "Độ minh bạch", "Cyclic Lines": "Các đường chu kỳ", "length28_input": "length28", "ABCD Pattern": "Mẫu hình ABCD", "Objects Tree": "Danh sách đối tượng", "Add": "Thêm", "Price Label": "Nhãn giá", "Wick": "Bóng nến", "Hull MA_input": "Hull MA", "Lock Scale": "Khóa chia tỷ lệ", "distance: {0}": "Khoảng cách: {0}", "Extended": "Kéo dài", "log": "logarit", "Arcs": "Các vòng cung", "Length2_input": "Length2", "Insert Drawing Tool": "Chèn công cụ vẽ", "Show Price Range": "Hiển thị phạm vi giá", "Correlation_input": "Correlation", "Scales Text": "Văn bản tỷ lệ", "Session Breaks": "Nghỉ giữa phiên", "lipsLength_input": "lipsLength", "roclen4_input": "roclen4", "Background Color": "Màu hình nền ", "D_data_mode_delayed_streaming_letter": "D", "VI -_input": "VI -", "slowLength_input": "slowLength", "Click to set a point": "Nhấn để thiết lập một điểm", "n/a": "Không có sẵn", "Sa_day_of_week": "Sa", "RVI_input": "RVI", "Awesome Oscillator_study": "Awesome Oscillator", "Original": "Nguyên bản", "True Strength Indicator_study": "True Strength Indicator", "Objects Tree...": "Danh sách đối tượng...", "Compare": "So sánh", "Add Symbol": "Thêm mã giao dịch", "Projection": "Phép chiếu", "Signal Length_input": "Signal Length", "Properties": "Đặc tính", "Teeth Length_input": "Teeth Length", "Close": "Đóng cửa", "ParabolicSAR_input": "ParabolicSAR", "Log Scale_scale_menu": "Tỷ lệ logarit", "MACD_input": "MACD", "Arrow Mark Left": "Đánh dấu mũi tên sang trái", "Open_line_tool_position": "Mở cửa", "Lagging Span_input": "Lagging Span", "Cross": "Đường chéo", "Mirrored": "Nhân đôi", "Price": "Giá", "Label Background": "Hình nền của nhãn", "ADX smoothing_input": "ADX smoothing", "1. Slide your finger to select location for first anchor
    2. Tap anywhere to place the first anchor": "1.Trượt ngón tay của bạn để chọn vị trí neo đầu tiên
    2. Bấm vào bất cứ nơi nào để đặt neo đầu tiên", "May": "Tháng năm", "Color 5_input": "Color 5", "McGinley Dynamic_study": "McGinley Dynamic", "Default": "Mặc định", "auto_scale": "auto", "Background": "Hình nền", "% of equity": "% tài sản", "VWMA_input": "VWMA", "Lower Deviation_input": "Lower Deviation", "ATR_input": "ATR", "Reverse": "Đảo ngược", "Shapes_input": "Shapes", "Median": "Trung bình", "Fisher_input": "Fisher", "Remove": "Loại bỏ", "Elliott Wave Minor": "Sóng Elliott nhỏ", "Arrow Mark Up": "Đánh dấu mũi tên lên", "Williams Fractal_study": "Williams Fractal", "Crosses_input": "Crosses", "KST_input": "KST", "LowerLimit_input": "LowerLimit", "Know Sure Thing_study": "Know Sure Thing", "Compare...": "So sánh...", "1. Slide your finger to select location for next anchor
    2. Tap anywhere to place the next anchor": "1.Trượt ngón tay của bạn để chọn vị trí neo tiếp theo
    2. Bấm vào bất cứ nơi nào để đặt neo tiếp theo", "Compare or Add Symbol": "So sánh và thêm mã giao dịch", "Color": "Màu sắc", "Aroon Up_input": "Aroon Up", "Scales Lines": "Đường tỷ lệ", "Show Distance": "Hiển thị khoảng cách", "Risk/Reward Ratio: {0}": "Tỷ lệ Rủi ro/Lợi nhuận: {0}", "lengthRSI_input": "lengthRSI", "Merge Up": "Sáp nhập lên", "Right Margin": "Lề phải", "Ellipse": "Hình elip"} \ No newline at end of file +{"ticks_slippage ... ticks": "ticks", "Months_interval": "Tháng", "Realtime": "Thời gian thực", "Callout": "Chú thích", "Sync to all charts": "đồng bộ tất cả đồ thị", "month": "Tháng", "roclen1_input": "roclen1", "Unmerge Down": "Hủy sáp nhập xuống", "Search Note": "Tìm kiếm Ghi chú", "Minor": "Sóng nhỏ", "Do you really want to delete Chart Layout '{0}' ?": "Bạn có thực sự muốn xóa Bố cục Biểu đồ {0}?", "Quotes are delayed by {0} min and updated every 30 seconds": "Báo giá bị chậm trễ bởi {0} phút và cập nhật mỗi 30 giây", "Magnet Mode": "Chế độ nam châm", "OSC_input": "OSC", "Hide alert label line": "Ẩn đường nhãn cảnh báo", "Volume_study": "Khối lượng", "Lips_input": "Lips", "Show real prices on price scale (instead of Heikin-Ashi price)": "Hiển thị giá thực dựa trên thang giá (thay vì giá Heikin-Ashi)", "Histogram": "Biểu đồ tần suât", "Base Line_input": "Đường cơ sở", "Step": "Bước", "Insert Study Template": "Chèn mẫu nghiên cứu", "Fib Time Zone": "Fibonacci vùng thời gian", "SMALen2_input": "SMALen2", "Bollinger Bands_study": "Bollinger Bands", "Nov": "Tháng 11", "Show/Hide": "Hiển thị/ẩn", "Upper_input": "Upper", "exponential_input": "số mũ", "Move Up": "Di chuyển lên", "Symbol Info": "Thông tin mã giao dịch", "This indicator cannot be applied to another indicator": "Chỉ báo này không thể áp dụng cho chỉ báo khác", "Scales Properties...": "Đặc tính chia tỷ lệ", "Count_input": "Đếm", "Anchored Text": "Ký tự ghim", "Industry": "Công nghiệp", "OnBalanceVolume_input": "OnBalanceVolume", "Cross_chart_type": "Chéo nhau", "H_in_legend": "H", "a day": "một ngày", "Pitchfork": "Mô hình Pitchfork", "R_data_mode_replay_letter": "R", "Accumulation/Distribution_study": "Tích lũy / phân phối", "Rate Of Change_study": "Tỉ giá hối đoái", "Text Font": "Font chữ", "in_dates": "trong", "Clone": "Bản sao", "Color 7_input": "Mầu 7", "Chop Zone_study": "Chop Zone", "Bar #": "Các thanh #", "Scales Properties": "Đặc tính chia tỷ lệ", "Trend-Based Fib Time": "Fibonacci vùng thời gian dựa trên xu hướng", "Remove All Indicators": "Loại bỏ tất cả các chỉ số", "Oscillator_input": "Oscillator", "Last Modified": "Chỉnh sửa sau cùng", "yay Color 0_input": "yay Color 0", "Labels": "Các nhãn", "Chande Kroll Stop_study": "Chande Kroll Stop", "Hours_interval": "Giờ", "Allow up to": "Cho phép đến", "Scale Right": "Chia tỷ lệ theo bên phải", "Money Flow_study": "Dòng tiền", "siglen_input": "siglen", "Indicator Labels": "Các nhãn chỉ tiêu", "__specialSymbolOpen__Tomorrow at__specialSymbolClose__ __dayTime__": "__specialSymbolOpen__Ngày mai tại__specialSymbolClose____dayTime__", "Toggle Percentage": "Chuyển đồi phần trăm", "Remove All Drawing Tools": "Loại bỏ tất cả công cụ vẽ", "Remove all line tools for ": "Loại bỏ tất cả các công cụ đường cho ", "Linear Regression Curve_study": "Đường cong Linear Regression", "Symbol_input": "Mã giao dịch", "Currency": "Tiền tệ", "increment_input": "Gia tăng", "Compare or Add Symbol...": "So sánh và thêm mã giao dịch...", "__specialSymbolOpen__Last__specialSymbolClose__ __dayName__ __specialSymbolOpen__at__specialSymbolClose__ __dayTime__": "__specialSymbolOpen__sau__specialSymbolClose____dayName____specialSymbolOpen__tại__specialSymbolClose____dayTime__", "Save Chart Layout": "Lưu bố cục biểu đồ", "Number Of Line": "Số lượng đường thẳng", "Label": "Nhãn", "Post Market": "Thị trường sau", "second": "thứ hai", "Any Number": "Số bất kỳ", "smoothD_input": "smoothD", "Falling_input": "Rơi", "Risk/Reward short": "Rủi ro/Lợi nhuận ở trạng thái bán", "UpperLimit_input": "UpperLimit", "Donchian Channels_study": "Chỉ số Kênh Donchian", "Entry price:": "Giá ban đầu:", "Circles": "Các vòng tròn", "Toggle Auto Scale": "Chuyển đổi tỷ lệ tự động", "Mirrored": "Nhân đôi", "Ichimoku Cloud_study": "Mây Ichimoku", "Signal smoothing_input": "Signal smoothing", "Toggle Log Scale": "Chuyển đổi Quy mô Đăng nhập", "Apply Elliot Wave Major": "Áp dụng Sóng Elliot mức chính", "Grid": "Lưới", "Triangle Down": "Triangle Xuống", "Apply Elliot Wave Minor": "Áp dụng Sóng Elliot mức phụ", "Slippage": "Trượt", "Smoothing_input": "Mượt", "Color 3_input": "Mầu 3", "Jaw Length_input": "Jaw Length", "Inside": "Bên trong", "Delete all drawing for this symbol": "Xóa bỏ tất cả các đường vẽ cho mã này", "Fundamentals": "Cơ bản", "Keltner Channels_study": "Kênh Keltner", "Long Position": "Vị trí mua", "Bands style_input": "Bands style", "Undo {0}": "Khôi phục {0}", "With Markers": "Với các dấu hiệu", "Momentum_study": "Momentum", "MF_input": "MF", "Gann Box": "Mô hình hộp Gann", "Switch to the next chart": "Chuyển sang biểu đồ tiếp theo", "charts by TradingView": "Biểu đồ được vẽ bởi TradingView", "Fast length_input": "Chiều dài nhanh", "Apply Elliot Wave": "Áp dụng Sóng Elliot", "Disjoint Angle": "Góc phân chia", "W_interval_short": "W", "Show Only Future Events": "Chỉ hiển thị các sự kiện tương lai", "Log Scale": "Tỷ lệ logarit", "Minuette": "Sóng rất nhỏ", "Equality Line_input": "Đường Bình đẳng", "Short_input": "Ngắn", "Fib Wedge": "Fibonacci hình cái nêm", "Line": "Đường thẳng", "Session": "Phiên", "Down fractals_input": "Down fractals", "Fib Retracement": "Fibonacci thoái lui", "smalen2_input": "smalen2", "isCentered_input": "isCentered", "Border": "Đường viền", "Klinger Oscillator_study": "Bộ dao động Klinger", "Absolute": "Tuyệt đối", "Tue": "Thứ 3", "Style": "Hình dạng", "Show Left Scale": "Hiển thị khu vực bên trái", "SMI Ergodic Indicator/Oscillator_study": "Chỉ báo SMI Ergodic", "Aug": "Tháng tám", "Last available bar": "Thanh có sẵn cuối cùng", "Manage Drawings": "Quản lý chức năng vẽ", "Analyze Trade Setup": "Phân tích thiết lập giao dịch", "No drawings yet": "Chưa có bản vẽ nào", "SMI_input": "SMI", "Chande MO_input": "Chande MO", "jawLength_input": "jawLength", "TRIX_study": "TRIX", "Show Bars Range": "Hiển thị phạm vi các thanh", "RVGI_input": "RVGI", "Last edited ": "Chỉnh sửa lần cuối ", "signalLength_input": "signalLength", "%s ago_time_range": "%s trước đây", "Reset Settings": "Thiết lập lại cài đặt", "d_dates": "d", "Point & Figure": "ĐIểm & Số liệu", "August": "Tháng Tám", "Recalculate After Order filled": "Tính lại sau khi đặt hàng", "Source_compare": "Nguồn", "Down bars": "Thanh dưới", "Correlation Coefficient_study": "Hệ số tương quan", "Delayed": "Trì hoãn", "Text color": "Màu văn bản", "Levels": "Các cấp độ", "Short Length_input": "Short Length", "teethLength_input": "teethLength", "Visible Range_study": "Dải hiển thị", "Delete": "Xóa", "Open {{symbol}} Text Note": "Mở {{symbol}} Ghi chú", "October": "Tháng mười", "Lock All Drawing Tools": "Khóa tất cả công cụ vẽ", "Long_input": "Long", "Unmerge Up": "Hủy sáp nhập lên", "Show Symbol Last Value": "Hiển thị giá trị cuối cùng của mã", "Head & Shoulders": "Mô hình Vai-Đầu-Vai", "Do you really want to delete Study Template '{0}' ?": "Bạn có thực sự muốn xóa Mẫu Nghiên cứu '{0}'?", "Favorite Drawings Toolbar": "Thanh công cụ vẽ hay dùng", "Properties...": "Đặc tính...", "MA Cross_study": "MA Cross", "Trend Angle": "Góc xu hướng", "Snapshot": "Ảnh chụp nhanh", "Crosshair": "Đường chữ thập", "Signal line period_input": "Chu kỳ dòng tín hiệu", "Timezone/Sessions Properties...": "Múi giờ/Tính năng phiên giao dịch...", "Line Break": "Đường ngắt", "Quantity": "Số lượng", "Price Volume Trend_study": "Xu hướng giá cả", "Auto Scale": "Tự động chia tỷ lệ", "hour": "giờ", "Delete chart layout": "Xóa bỏ định dạng biểu đồ", "Text": "Văn bản", "F_data_mode_forbidden_letter": "F", "Risk/Reward long": "Rủi ro/lợi nhuận ở trạng thái mua", "Apr": "Tháng tư", "Long RoC Length_input": "Long RoC Length", "Length3_input": "Length3", "+DI_input": "+DI", "Length_input": "Chiều dài", "Use one color": "Sử dụng một mầu", "Chart Properties": "Đặc tính biểu đồ", "No Overlapping Labels_scale_menu": "Không có Nhãn chồng chéo", "Exit Full Screen (ESC)": "Thoát toàn màn hình (ESC)", "MACD_study": "MACD", "Show Economic Events on Chart": "Hiển thị các sự kiện kinh tế trên biểu đồ", "Moving Average_study": "Di chuyển trung bình", "Show Wave": "Hiển thị sóng", "Failure back color": "Màu nền cho lệnh thất bại", "Below Bar": "Thanh dưới", "Time Scale": "Quy mô thời gian", "

    Only D, W, M intervals are supported for this symbol/exchange. You will be automatically switched to a D interval. Intraday intervals are not available because of exchange policies.

    ": "

    Chỉ chu kỳ D, W, M được hỗ trợ bởi Mã/Sàn này. Bạn sẽ được tự động chuyển qua chu kỳ D. Các chu kỳ trong ngày sẽ không có vì chính sách của Sàn giao dịch.

    ", "Extend Left": "Kéo dài phía trái", "Date Range": "Phạm vi ngày", "Price format is invalid.": "Định dạng giá không có giá trị", "Show Price": "Hiển thị giá", "Level_input": "Mức độ", "Commodity Channel Index_study": "Chỉ số Kênh hàng hóa", "Elder's Force Index_input": "Chỉ số Elder's Force", "Gann Square": "Mô hình Gann vuông", "Format": "Định dạng", "Color bars based on previous close": "Các thanh màu dựa trên đóng cửa phiên trước", "Change band background": "Thay đổi background của band", "Marketplace Add-ons": "Tiện ích trên Marketplace", "This chart layout has a lot of objects and can't be published! Please remove some drawings and/or studies from this chart layout and try to publish it again.": "Bố cục biểu đồ này có nhiều đối tượng và không thể được xuất bản! Vui lòng xóa một số bản vẽ và/hoặc trong biểu đồ này và thử xuất bản lại.", "Long length_input": "Long Length", "Edit {0} Alert...": "Chỉnh sửa {0} cảnh báo...", "Previous Close Price Line": "Giá phiên đóng cửa trước", "Up Wave 5": "Sóng trên 5", "Text:": "Văn bản:", "Heikin Ashi": "Mô hình Heikin Ashi", "Aroon_study": "Aroon", "show MA_input": "hiển thị MA", "Lead 1_input": "Lead 1", "Short Position": "Vị trí bán", "SMALen1_input": "SMALen1", "P_input": "P", "Apply Default": "Áp dụng Mặc định", "SMALen3_input": "SMALen3", "Average Directional Index_study": "Chỉ báo xu hướng trung bình", "Fr_day_of_week": "Fr", "Invite-only script. Contact the author for more information.": "Kịch bản chỉ hiển thị cho người được mời. Vui lòng liên hệ với tác giả để biết thêm thông tin.", "Curve": "Đường cong", "a year": "một năm", "Target Color:": "Màu mục tiêu:", "Bars Pattern": "Mẫu hình thanh", "D_input": "D", "Extended Hours": "Giờ được mở rộng", "Create Vertical Line": "Tạo đường chỉ dọc", "p_input": "p", "Rotated Rectangle": "Hình chữ nhật xoay chuyển", "Chart layout name": "Tên bố cục biểu đồ", "Fib Circles": "Các vòng Fibonacci", "Apply Manual Decision Point": "Áp dụng điểm quyết định thủ công", "Dot": "Dấu chấm", "Target back color": "Màu hình nền cho mục tiêu", "All": "Tất cả", "orders_up to ... orders": "đơn đặt hàng", "Dot_hotkey": "Chấm", "Lead 2_input": "Lead 2", "Save image": "Lưu ảnh", "Move Down": "Di chuyển xuống", "Triangle Up": "Triangle Lên", "Box Size": "Cỡ hộp", "Navigation Buttons": "Nút điều hướng", "Apply": "Áp dụng", "Down Wave 3": "Xuống sóng 3", "Plots Background_study": "Thông tin cơ bản", "Sine Line": "Đường Sine", "Fill": "Điền vào", "%d day": "%d ngày", "Hide": "Ẩn", "Toggle Maximize Chart": "Chuyển đổi Tối đa hoá Biểu đồ", "Target text color": "Màu văn bản của mục tiêu", "Scale Left": "Chia tỷ lệ theo bên trái", "Elliott Wave Subminuette": "Sóng Elliott cực nhỏ", "Down Wave C": "Xuống sóng C", "Countdown": "Đếm ngược", "UO_input": "UO", "Pyramiding": "Hình Kim tự tháp", "Source back color": "Màu hình nền nguồn dữ liệu", "Go to Date...": "Đến ngày...", "Text Alignment:": "Thẳng hàng chữ:", "R_data_mode_realtime_letter": "R", "Extend Lines": "Kéo dài các đường", "Conversion Line_input": "Đường chuyển đổi", "March": "Tháng ba", "Su_day_of_week": "Su", "Exchange": "Giao dịch", "Arcs": "Các vòng cung", "Regression Trend": "Xu hướng hồi quy", "Fib Spiral": "Fibonacci hình xoắn ốc", "Double EMA_study": "Double EMA", "minute": "phút", "All Indicators And Drawing Tools": "Tất cả các Chỉ báo và Công cụ vẽ", "Indicator Last Value": "Chỉ tiêu giá trị cuối cùng", "Sync drawings to all charts": "Đồng bộ các bước vẽ trên tất cả các biểu đồ", "Stop Color:": "Màu lệnh dừng lại:", "Stay in Drawing Mode": "Giữ nguyên chế độ vẽ", "Bottom Margin": "Lề dưới", "Save Chart Layout saves not just some particular chart, it saves all charts for all symbols and intervals which you are modifying while working with this Layout": "Lưu bố cục biểu đồ không chỉ một số biểu đồ cụ thể, nó lưu tất cả các biểu đồ cho tất cả các mã và khoảng thời gian mà bạn đang sửa đổi trong khi làm việc với bố cục này", "Average True Range_study": "Trung bình biên độ chính xác của giá", "Max value_input": "Giá trị lớn nhất", "MA Length_input": "MA Length", "Invite-Only Scripts": "Kịch bản chỉ hiển thị cho người được mời", "in %s_time_range": "in %s", "Extend Bottom": "Mở rộng đáy", "sym_input": "sym", "DI Length_input": "Chiều dài DI", "Periods_input": "Các chu kỳ", "Arrow": "Mũi tên", "useTrueRange_input": "useTrueRange", "Basis_input": "Cơ bản", "Arrow Mark Down": "Đánh dấu mũi tên xuống", "lengthStoch_input": "lengthStoch", "Objects Tree": "Danh sách đối tượng", "Remove from favorites": "Loại bỏ khỏi mục yêu thích", "Show Symbol Previous Close Value": "Hiển thị giá trị mã giao dịch phiên đóng cửa trước", "Scale Series Only": "Chia tỷ lệ theo số liệu", "Source text color": "Màu văn bản nguồn dữ liệu", "Simple": "Đơn giản", "Report a data issue": "Báo cáo vấn đề dữ liệu", "Arnaud Legoux Moving Average_study": "Arnaud Legoux Moving Average", "Smoothed Moving Average_study": "Dịch chuyển trung bình Smoothed", "Lower Band_input": "Lower Band", "Verify Price for Limit Orders": "Xác minh Giá cho Hạn mức Đơn hàng", "VI +_input": "VI +", "Line Width": "Độ rộng của đường", "Contracts": "Hợp đồng", "Always Show Stats": "Luôn hiện trạng thái", "Down Wave 4": "Xuống sóng 4", "ROCLen2_input": "ROCLen2", "Simple ma(signal line)_input": "Simple ma(signal line)", "Change Interval...": "Thay đổi khoảng thời gian...", "Public Library": "Thư viện công khai", " Do you really want to delete Drawing Template '{0}' ?": " Bạn có thực sự muốn xóa Bảng Vẽ Mẫu này không{0}?", "Sat": "Thứ 7", "CRSI_study": "CRSI", "Close message": "Đóng tin nhắn", "Jul": "Tháng 7", "Base currency": "Tiền tệ cơ bản", "Chaikin Oscillator_study": "Bộ dao động Chaikin", "Price Source": "Giá nguồn", "Market Open": "Thị trường mở cửa", "Color Theme": "Màu sắc chủ đề", "Projection up bars": "Chiều thanh lên", "Awesome Oscillator_study": "Chỉ báo Awesome Oscillator", "Bollinger Bands Width_input": "Bollinger Bands Width", "Q_input": "Q", "long_input": "long", "Error occured while publishing": "Đã xảy ra lỗi khi xuất bản", "Fisher_input": "Fisher", "Color 1_input": "Mầu 1", "Moving Average Weighted_study": "Di chuyển trung bình có trọng số", "Save": "Lưu", "Type": "Loại", "Wick": "Bóng nến", "Accumulative Swing Index_study": "Chỉ số Swing tích lũy", "Load Chart Layout": "Tải bố cục biểu đồ", "Show Values": "Hiển thị giá trị", "Fib Speed Resistance Fan": "Fibonacci kháng cự dạng quạt", "Bollinger Bands Width_study": "Dải Bollinger Bands", "This chart layout has more than 1000 drawings, which is a lot! This may negatively affect performance, storage and publishing. We recommend to remove some drawings to avoid potential performance issues.": "Bố cục biểu đồ này có hơn 1000 bản vẽ, điều này là quá nhiều! Điều này có thể ảnh hưởng tiêu cực đến hiệu suất, lưu trữ và xuất bản. Chúng tôi khuyên bạn nên xóa một số bản vẽ để tránh các vấn đề về tiềm ẩn về hiệu suất.", "Left End": "Phía cuối bên trái", "%d year": "%d năm", "Always Visible": "Luôn hiện", "S_data_mode_snapshot_letter": "S", "Elliott Wave Circle": "Sóng Elliott Vòng", "Earnings breaks": "Thu nhập đứt quãng", "Do not ask again": "Đừng hỏi lại", "MTPredictor": "Chỉ báo MTPredictor", "Displacement_input": "Dịch chuyển", "smalen4_input": "smalen4", "CCI_input": "CCI", "Upper Deviation_input": "Độ lệch cao hơn", "(H + L)/2": "(Cao nhất + Thấp nhất) / 2", "XABCD Pattern": "Mẫu hình XABCD", "Schiff Pitchfork": "Mô hình Schiff Pitchfork", "Copied to clipboard": "Đã sao chép ra clipboard", "Flipped": "Lật", "DEMA_input": "DEMA", "Move_input": "Di chuyển", "NV_input": "NV", "Choppiness Index_study": "Chỉ số Choppiness", "Study Template '{0}' already exists. Do you really want to replace it?": "Mẫu Nghiên cứu '{0}' đã tồn tại. Bạn có thực sự muốn thay thế nó?", "Merge Down": "Sáp nhập xuống", "Th_day_of_week": "Th", " per contract": " từng hợp đồng", "Overlay the main chart": "Chèn vào biểu đồ chính", "Screen (No Scale)": "Screen (Không chia tỷ lệ)", "Three Drives Pattern": "Ba mẫu dẫn dắt", "Save Indicator Template As": "Lưu Mẫu Chỉ Báo Là", "Length MA_input": "Length MA", "percent_input": "phần trăm", "September": "Tháng Chín", "{0} copy": "{0} sao chép", "Median_input": "Median", "Accumulation/Distribution_input": "Tích lũy / phân phối", "C_in_legend": "C", "Weeks_interval": "Tuần", "smoothK_input": "smoothK", "Percentage_scale_menu": "Phần trăm", "Change Extended Hours": "Thay đổi giờ mở rộng", "MOM_input": "MOM", "h_interval_short": "h", "Change Interval": "Thay đổi khoảng thời gian", "Change area background": "Thay đổi background của vùng", "Modified Schiff": "Mô hình Schiff biến đổi", "top": "Phía trên", "Send Backward": "Gửi ngược lại", "Custom color...": "Tùy chỉnh màu...", "TRIX_input": "TRIX", "Show Price Range": "Hiển thị phạm vi giá", "Elliott Major Retracement": "Sóng Elliott lớn thoái lui", "ASI_study": "ASI", "Notification": "Thông báo", "Fri": "Thứ 6", "just now": "ngay bây giờ", "Forecast": "Dự đoán", "Fraction part is invalid.": "Phần phân số không hợp lệ.", "Connecting": "Đang kết nối", "Ghost Feed": "Mô hình Ghost Feed", "Signal_input": "Tín hiệu", "Histogram_input": "Biểu đồ tần suât", "The Extended Trading Hours feature is available only for intraday charts": "Tính năng Thời gian Giao dịch Mở rộng chỉ có sẵn cho các biểu đồ trong ngày", "Stop syncing": "ngừng đồng bộ", "open": "mở cửa", "StdDev_input": "StdDev", "EMA Cross_study": "Đường chéo EMA", "Conversion Line Periods_input": "Khoảng thời gian quy đổi", "Diamond": "Kim cương", "My Scripts": "Kịch bản của tôi", "Monday": "Thứ hai", "Add Symbol_compare_or_add_symbol_dialog": "Thêm Mã", "Williams %R_study": "Williams %R", "Symbol": "Mã giao dịch", "a month": "một tháng", "Precision": "Độ chính xác", "depth_input": "Sâu", "Go to": "Đi tới", "Please enter chart layout name": "Vui lòng nhập tên bố cục biểu đồ", "Mar": "Tháng 3", "VWAP_study": "VWAP", "Offset": "Bù lại", "Date": "Ngày", "Format...": "Định dạng...", "__dayName__ __specialSymbolOpen__at__specialSymbolClose__ __dayTime__": "__dayName____specialSymbolOpen__tại__specialSymbolClose____dayTime__", "Toggle Maximize Pane": "Chuyển đổi phóng to khung", "Search": "Tìm kiếm", "Zig Zag_study": "Zig Zag", "Actual": "Thực tế", "SUCCESS": "THÀNH CÔNG", "Long period_input": "Thời kỳ Long", "length_input": "length", "roclen4_input": "roclen4", "Price Line": "Đường giá", "Area With Breaks": "Vùng gãy", "Zoom Out": "Thu nhỏ", "Stop Level. Ticks:": "Cấp độ dừng. Đánh dấu:", "Window Size_input": "Kích thước Cửa sổ", "Economy & Symbols": "Kinh tế & Mã", "Circle Lines": "Các đường vòng tròn", "Visual Order": "Thứ tự trực quan", "__specialSymbolOpen__Yesterday at__specialSymbolClose__ __dayTime__": "__specialSymbolOpen__Ngày hôm qua tại__specialSymbolClose____dayTime__", "Stop Background Color": "Màu hình nền cho lệnh dừng lại", "1. Slide your finger to select location for first anchor
    2. Tap anywhere to place the first anchor": "1.Trượt ngón tay của bạn để chọn vị trí cho mốc đầu tiên
    2. Bấm vào bất kỳ điểm nào để đặt mốc đầu tiên", "Sector": "Khu vực", "powered by TradingView": "Được cung cấp bởi TradingView", "Stochastic_study": "Stochastic", "Sep": "Tháng 9", "TEMA_input": "TEMA", "Apply WPT Up Wave": "Áp dụng Sóng WPT Trên", "Extend Left End": "Kéo dài phía cuối trái", "Projection down bars": "Chiếu thanh xuống", "Advance/Decline_study": "Nâng cao/Từ chối", "Flag Mark": "Cờ đánh dấu", "Drawings": "Các hình vẽ", "Cancel": "Hủy bỏ", "Compare or Add Symbol": "So sánh và thêm mã giao dịch", "Redo": "Làm lại", "Ultimate Oscillator_study": "Ultimate Oscillator", "Vert Grid Lines": "Đường lưới dọc", "Growing_input": "Tăng trưởng", "Angle": "Góc", "Plot_input": "Plot", "Color 8_input": "Mầu 8", "Indicators, Fundamentals, Economy and Add-ons": "Các chỉ số, yếu tố cơ bản, cơ cấu sắp xếp và tiện ích", "h_dates": "h", "ROC Length_input": "Độ dài ROC", "roclen3_input": "roclen3", "Overbought_input": "Quá mua", "Extend Top": "Mở rộng đầu", "No study templates saved": "Không lưu mẫu nghiên cứu", "Trend Line": "Đường xu hướng", "TimeZone": "Múi giờ ", "Your chart is being saved, please wait a moment before you leave this page.": "Biểu đồ của bạn đang được lưu, vui lòng đợi một lát trước khi bạn rời khỏi trang này.", "Percentage": "Tỷ lệ phần trăm", "Tu_day_of_week": "Thứ 3", "RSI Length_input": "RSI Length", "Triangle": "Hình tam giác", "Line With Breaks": "Các đường gãy", "Period_input": "Chu kỳ", "Watermark": "Chữ mờ", "Trigger_input": "Trigger", "SigLen_input": "SigLen", "Extend Right": "Kéo dài phía phải", "Color 2_input": "Mầu 2", "Show Prices": "Hiển thị các mức giá", "Unlock": "Mở khóa", "Copy": "Sao chép", "high": "cao", "Arc": "Hình vòng cung", "Edit Order": "Chỉnh sửa đơn hàng", "January": "Tháng một", "Arrow Mark Right": "Đánh dấu mũi tên sang phải", "Extend Alert Line": "Kéo dài đường cảnh báo", "Background color 1": "Màu hình nền 1", "RSI Source_input": "RSI Nguồn", "Close Position": "Đóng Trạng thái", "Stop syncing drawing": "Dừng đồng bộ bản vẽ", "Visible on Mouse Over": "Hiển thị trên chuột", "MA/EMA Cross_study": "Đường chéo MA/EMA", "Thu": "Thứ 5", "Vortex Indicator_study": "Chỉ báo Vortex", "view-only chart by {user}": "Biểu đồ chỉ xem bởi {user}", "ROCLen1_input": "ROCLen1", "M_interval_short": "M", "Chaikin Oscillator_input": "Dao động Chaikin", "Price Levels": "Các cấp độ giá", "Show Splits": "Hiển thị vết cắt", "Zero Line_input": "Đường Zero", "Replay Mode": "Chế độ Phát lại", "__specialSymbolOpen__Today at__specialSymbolClose__ __dayTime__": "__specialSymbolOpen__Ngày hôm nay tại__specialSymbolClose____dayTime__", "Increment_input": "Gia tăng", "Days_interval": "Ngày", "Show Right Scale": "Hiển thị khu vực bên phải", "Show Alert Labels": "Hiển thị nhãn cảnh báo", "Historical Volatility_study": "Biến động lịch sử", "Lock": "Khóa", "length14_input": "length14", "High": "Cao", "ext": "Xa", "Date and Price Range": "Phạm vi ngày và giá", "Polyline": "Hình polyline", "Reconnect": "Kết nối lại", "Lock/Unlock": "Khóa/Mở khóa", "Base Level": "Cấp cơ sở", "Label Down": "Nhãn Xuống", "Saturday": "Thứ bảy", "Symbol Last Value": "Giá trị cuối cùng của mã", "Above Bar": "Thanh bên trên", "Color 0_input": "Mầu 0", "Add Symbol": "Thêm mã giao dịch", "maximum_input": "Tối đa", "Wed": "Thứ 4", "D_data_mode_delayed_letter": "D", "Sigma_input": "Sigma", "VWMA_study": "VWMA", "fastLength_input": "fastLength", "Time Levels": "Các cấp độ thời gian", "Width": "Chiều rộng", "Loading": "Đang tải", "Template": "Bản mẫu", "Use Lower Deviation_input": "Sử dụng độ lệch thấp hơn", "Up Wave 3": "Sóng trên 3", "Parallel Channel": "Kênh song song", "Time Cycles": "Vòng thời gian", "Second fraction part is invalid.": "Phần phân đoạn thứ hai không hợp lệ.", "Divisor_input": "Phân chia", "Down Wave 1 or A": "Xuống sóng 1 hoặc A", "Dec": "Tháng mười hai", "Ray": "Tia", "Extend": "Kéo dài", "length7_input": "length7", "Bottom": "Đáy", "Undo": "Khôi phục", "Original": "Nguyên bản", "Mon": "Thứ 2", "Reset Scale": "Thiết lập lại chia tỷ lệ", "Long Length_input": "Long Length", "True Strength Indicator_study": "Chỉ số Strength True", "%R_input": "%R", "There are no saved charts": "Không có biểu đồ lưu nào", "Instrument is not allowed": "Dụng cụ không được phép", "bars_margin": "Thanh ", "Decimal Places": "Vị trí thập phân", "Show Indicator Last Value": "Hiển thị các chỉ số giá trị sau cùng", "Initial capital": "Vốn ban đầu", "Mass Index_study": "Chỉ số khối", "More features on tradingview.com": "Nhiều tính năng khác trên tradingview.com", "Objects Tree...": "Danh sách đối tượng...", "Remove Drawing Tools & Indicators": "Bỏ các công cụ vẽ & Chỉ số", "Length1_input": "Length1", "Always Invisible": "Luôn ẩn", "Circle": "Đường tròn", "Studies": "Nghiên cứu", "x_input": "x", "Save As...": "Lưu dưới dạng...", "Elliott Double Combo Wave (WXY)": "Sóng đôi kết hợp Elliott (WXY)", "Parabolic SAR_study": "Parabolic SAR", "Any Symbol": "Mã bất kỳ", "Price Label": "Nhãn giá", "Short RoC Length_input": "Short RoC Length", "Projection": "Phép chiếu", "Jan": "Tháng 1", "Jaw_input": "Jaw", "Right": "Phải", "Help": "Trợ giúp", "Coppock Curve_study": "Đường cong Coppock", "Reversal Amount": "Số tiền hoàn lại", "Reset Chart": "Thiết lập lại biểu đồ", "Sunday": "Chủ nhật", "Left Axis": "Trục trái", "Open": "Mở cửa", "YES": "CÓ", "longlen_input": "longlen", "Moving Average Exponential_study": "Di chuyển trung bình Exponential", "Source border color": "Màu viền nguồn dữ liệu", "Redo {0}": "Làm lại {0}", "Cypher Pattern": "Mẫu hình Cypher", "s_dates": "s", "Area": "Biểu đồ vùng", "Triangle Pattern": "Mẫu hình tam giác", "Balance of Power_study": "Cân bằng sức mạnh", "EOM_input": "EOM", "Shapes_input": "Hình", "Oversold_input": "Quá bán", "Apply Manual Risk/Reward": "Áp dụng Rủi ro/Phần thưởng thủ công", "Market Closed": "Thị trường đóng cửa", "Indicators": "Các chỉ báo", "close": "đóng cửa", "q_input": "q", "You are notified": "Bạn được thông báo", "Font Icons": "Các biểu tượng phông chữ", "%D_input": "%D", "Border Color": "Màu đường viền", "Offset_input": "Bù lại", "Risk": "Rủi ro", "Price Scale": "Phạm vi giá", "HV_input": "HV", "Settings": "Cài đặt", "Start_input": "Bắt đầu", "Oct": "Tháng 10", "ROC_input": "ROC", "Send to Back": "Gửi cho quay lại", "Color 4_input": "Mầu 4", "Angles": "Góc", "Prices": "Các mức giá", "Hollow Candles": "Biểu đồ nến Hollow", "July": "Tháng bảy", "Create Horizontal Line": "Tạo đường chỉ ngang", "Minute": "Sóng khá nhỏ", "Cycle": "Sóng chu kỳ", "ADX Smoothing_input": "ADX Smoothing", "m_dates": "m", "(H + L + C)/3": "(Cao nhất + Thấp nhất + Đóng cửa) / 3", "Candles": "Biểu đồ nến", "We_day_of_week": "T4", "Width (% of the Box)": "Chiều rộng (% của Hộp)", "%d minute": "%d phút", "Go to...": "Đi tới...", "Pip Size": "Cỡ Pip", "Wednesday": "Thứ tư", "This drawing is used in alert. If you remove the drawing, the alert will be also removed. Do you want to remove the drawing anyway?": "Bản vẽ này được sử dụng trong cảnh báo. Nếu bạn loại bỏ các bản vẽ, cảnh báo sẽ được gỡ bỏ. Bạn có muốn xóa bản vẽ này không?", "Show Countdown": "Hiển thị đếm ngược", "Show alert label line": "Hiển thị đường nhãn cảnh báo", "Down Wave 2 or B": "Xuống sóng 2 hoặc B", "MA_input": "MA", "Length2_input": "Length2", "not authorized": "Không được phép", "Session Volume_study": "Lượng Phiên", "Image URL": "URL của ảnh", "SMI Ergodic Oscillator_input": "Dao động SMI Ergodic", "Show Objects Tree": "Hiển thị danh sách đối tượng", "Primary": "Sóng sơ cấp", "Price:": "Giá:", "Bring to Front": "Đưa lên phía trước", "Brush": "Cọ vẽ", "Not Now": "Không phải bây giờ", "Yes": "Có", "C_data_mode_connecting_letter": "C", "SMALen4_input": "SMALen4", "Apply Default Drawing Template": "Áp dụng mẫu vẽ mặc định", "Save As Default": "Lưu mặc định", "Target border color": "Màu viền cho mục tiêu", "Invalid Symbol": "Mã giao dịch không hợp lệ", "Inside Pitchfork": "Mô hình Pitchfork mặt trong", "yay Color 1_input": "yay Color 1", "Quandl is a huge financial database that we have connected to TradingView. Most of its data is EOD and is not updated in real-time, however the information may be extremely useful for fundamental analysis.": "Quandl là một cơ sở dữ liệu tài chính khổng lồ mà chúng tôi đã kết nối với TradingView. Hầu hết dữ liệu của nó là EOD và không được cập nhật trong thời gian thực, tuy nhiên thông tin có thể rất hữu ích cho việc phân tích cơ bản.", "Hide Marks On Bars": "Ẩn các điểm trên thanh", "Cancel Order": "Hủy Order", "Hide All Drawing Tools": "Ấn tất cả công cụ vẽ", "WMA Length_input": "WMA Length", "Show Dividends on Chart": "Hiển thị Cổ tức trên biểu đồ", "Show Executions": "Hiển thị sự thực hiện", "Borders": "Đường viền", "Remove Indicators": "Bỏ đi các chỉ số", "loading...": "đang tải...", "Closed_line_tool_position": "Đóng cửa", "Rectangle": "Hình chữ nhật", "Change Resolution": "Thay đổi độ phân giải", "Indicator Arguments": "Các tham số chỉ tiêu", "Symbol Description": "Mô tả mã giao dịch", "Chande Momentum Oscillator_study": "Dao động Chande Momentum", "Degree": "Độ", " per order": " từng đơn đặt hàng", "Jun": "Tháng 6", "Least Squares Moving Average_study": "Dịch chuyển Trung bình Least Squares", "powered by ": "Cung cấp bởi ", "Source_input": "Nguồn", "%K_input": "%K", "Scales Text": "Văn bản tỷ lệ", "Please enter template name": "Vui lòng nhập tên của mẫu", "Symbol Name": "Tên mã giao dịch", "Events Breaks": "Các sự kiện ngắt", "Study Templates": "Mẫu Nghiên Cứu", "Price Oscillator_study": "Dao động giá", "Symbol Info...": "Thông tin mã giao dịch...", "Elliott Wave Minor": "Sóng Elliott nhỏ", "Cross": "Đường chéo", "Measure (Shift + Click on the chart)": "Đo lường (Shift + Click trên biểu đồ)", "Override Min Tick": "Điều chỉnh số thập phân", "Show Positions": "Hiển thị vị trí", "Dialog": "Hộp thoại", "Add To Text Notes": "Thêm ghi chú", "Elliott Triple Combo Wave (WXYXZ)": "Sóng Elliott kết hợp ba (WXYXZ)", "Multiplier_input": "Nhân", "Risk/Reward": "Rủi ro/Phần thưởng", "Base Line Periods_input": "Các khoảng thời gian gốc", "Show Dividends": "Hiển thị Cổ tức", "Relative Strength Index_study": "Chỉ số sức mạnh tương đối", "Modified Schiff Pitchfork": "Mô hình Schiff Pitchfork biến đổi", "Top Labels": "Các nhãn phía trên", "Show Earnings": "Hiển thị thu nhập", "Elliott Triangle Wave (ABCDE)": "Sóng Elliott Tam giác (ABCDE)", "Text Wrap": "Xuống dòng tự động", "Reverse Position": "Đảo ngược trạng thái", "Elliott Minor Retracement": "Sóng Elliott nhỏ thoái lui", "DPO_input": "DPO", "Pitchfan": "Mô hình Pitchfork dạng quạt", "Slash_hotkey": "Gạch ngang", "No symbols matched your criteria": "Không mã giao dịch nào khớp với tiêu chuẩn của bạn", "Icon": "Biểu tượng", "lengthRSI_input": "lengthRSI", "Tuesday": "Thứ ba", "Teeth Length_input": "Teeth Length", "Indicator_input": "Chỉ báo", "Box size assignment method": "Phương pháp Định kích thước hộp", "Open Interval Dialog": "Mở hộp thoại khoảng thời gian", "Fib Speed Resistance Arcs": "Fibonacci kháng cự vòng cung", "Content": "Nội dung", "middle": "khoảng giữa", "Lock Cursor In Time": "Khóa con trỏ trong thời gian", "Intermediate": "Sóng trung cấp", "Eraser": "Tẩy", "Relative Vigor Index_study": "Chỉ số Vigor tương đối", "Envelope_study": "Phong bì", "Pre Market": "Thị trường trước", "Horizontal Line": "Đường nằm ngang", "O_in_legend": "O", "Confirmation": "Xác nhận", "Lines:": "Các đường ", "Hide Favorite Drawings Toolbar": "Ẩn thanh công cụ hay dùng", "X Cross": "Đường chéo X", "Profit Level. Ticks:": "Cấp độ lợi nhuận. Đánh dấu:", "Show Date/Time Range": "Hiển thị phạm vi ngày/thời gian", "Level {0}": "Cấp độ {0}", "Favorites": "Yêu thích", "Horz Grid Lines": "Đường lưới ngang", "-DI_input": "-DI", "Price Range": "Khoảng giá", "day": "Ngày", "deviation_input": "độ lệch", "week": "Tuần", "Value_input": "Giá trị", "Time Interval": "Khoảng thời gian", "Success text color": "Màu chữ lệnh thành công", "ADX smoothing_input": "ADX smoothing", "%d hour": "%d giờ", "Order size": "Cỡ đơn hàng", "Drawing Tools": "Công cụ vẽ", "Traditional": "Truyền thống", "Chaikin Money Flow_study": "Dòng tiền Chaikin", "Ease Of Movement_study": "Ease Of Movement", "Defaults": "Các mặc định", "Percent_input": "Phần trăm", "%": "phần trăm", "Interval is not applicable": "Khoảng thời gian không áp dụng được", "short_input": "ngắn", "Visual settings...": "Cài đặt trực quan...", "RSI_input": "RSI", "Chatham Islands": "Đảo Chatham", "Detrended Price Oscillator_input": "Dao động Giá", "Mo_day_of_week": "Mo", "center": "trung tâm", "Vertical Line": "Đường thẳng đứng", "Show Splits on Chart": "Hiển thị vết cắt trên biểu đồ", "Sorry, the Copy Link button doesn't work in your browser. Please select the link and copy it manually.": "Rất tiếc, nút Sao chép Liên kết không hoạt động trong trình duyệt của bạn. Vui lòng chọn liên kết và sao chép nó theo cách thủ công.", "X_input": "X", "Events & Alerts": "Sự kiện & Cảnh báo", "May": "Tháng năm", "ROCLen4_input": "ROCLen4", "Aroon Down_input": "Aroon Down", "Add To Watchlist": "Thêm vào danh sách theo dõi", "Total": "Tổng", "Price": "Giá", "left": "Bên trái", "Lock scale": "Khóa chia tỷ lệ", "Limit_input": "Giới hạn", "Baseline": "Đường cơ sở", "smalen1_input": "smalen1", "KST_input": "KST", "Extend Right End": "Kéo dài phía cuối phải", "Fans": "Các cánh quạt", "Color based on previous close_input": "Dựa trên mầu của phiên đóng cửa trước đó", "Price_input": "Giá", "Gann Fan": "Quạt Gann", "McGinley Dynamic_study": "McGinley Dynamic", "Relative Volatility Index_study": "Chỉ số Volatility tương đối", "Elliott Impulse Wave (12345)": "Sóng đẩy Elliott (12345)", "PVT_input": "PVT", "Show Hidden Tools": "Hiển thị các công cụ ẩn", "Hull Moving Average_study": "Hull Moving Average", "Symbol Prev. Close Value": "Xem lại mã giao dịch. Giá trị sát nhất", "{0} chart by TradingView": "{0} biểu đồ bởi TradingView", "Bring Forward": "Đưa lên trên", "Remove Drawing Tools": "Bỏ công cụ vẽ", "Friday": "Thứ sáu", "Zero_input": "Zero", "Company Comparison": "So sánh các công ty", "Stochastic Length_input": "Stochastic Length", "mult_input": "mult", "URL cannot be received": "URL không thể nhận được", "Success back color": "Màu hình nền lệnh thành công", "E_data_mode_end_of_day_letter": "E", "Trend-Based Fib Extension": "Fibonacci mở rộng dựa trên xu hướng", "Top": "Trên đầu", "Double Curve": "Đường cong đôi", "Stochastic RSI_study": "Stochastic RSI", "Horizontal Ray": "Tia nằm ngang", "smalen3_input": "smalen3", "Symbol Labels": "Nhãn mã giao dịch", "Script Editor...": "Biên tập kịch bản...", "Are you sure?": "Bạn có chắc chắn không?", "Trades on Chart": "Các Giao dịch trên Biểu đồ", "Listed Exchange": "Danh sách giao dịch", "Error:": "Lỗi:", "Fullscreen mode": "Chế độ toàn màn hình", "Add Text Note For {0}": "Thêm ghi chú cho {0}", "K_input": "K", "ROCLen3_input": "ROCLen3", "Text Color": "Màu văn bản", "Rename Chart Layout": "Đổi tên bố cục biểu đồ", "Background color 2": "Màu hình nền 2", "Drawings Toolbar": "Thanh công cụ vẽ", "Moving Average Channel_study": "Kênh Moving Average", "Source Code...": "Mã nguồn...", "CHOP_input": "CHOP", "Apply Defaults": "Áp dụng nhiều mặc định", "% of equity": "% Vốn Cổ Phần", "Extended Alert Line": "Đường cảnh báo được kéo dài", "Note": "Ghi chú", "OK": "Đồng ý", "like": "thích", "Show": "Hiển thị", "{0} bars": "{0} thanh", "Lower_input": "Thấp hơn", "Created ": "Đã tạo ", "Warning": "Cảnh báo", "Elder's Force Index_study": "Chỉ báo Elder's Force", "Show Earnings on Chart": "Hiển thị thu nhập trên biểu đồ", "ATR_input": "ATR", "Low": "Thấp", "Bollinger Bands %B_study": "Bollinger Bands %B", "Time Zone": "Múi giờ ", "right": "phải", "%d month": "%d tháng", "Wrong value": "Sai giá trị", "Upper Band_input": "Upper Band", "Sun": "CN", "Rename...": "Đổi tên...", "start_input": "bắt đầu", "No indicators matched your criteria.": "Không có chỉ số nào khớp với tiêu chí của bạn", "Commission": "Hoa hồng", "Down Color": "Mầu xuống", "Short length_input": "Short length", "Triple EMA_study": "Triple EMA", "Technical Analysis": "Phân tích kĩ thuật", "Show Text": "Hiển thị văn bản", "Channel": "Kênh", "FXCM CFD data is available only to FXCM account holders": "Dữ liệu CFCM CFD chỉ có sẵn cho người có tài khoản của FXCM", "Lagging Span 2 Periods_input": "Giai đoạn Lagging Span 2", "Connecting Line": "Đường kết nối", "bottom": "phía dưới", "Teeth_input": "Teeth", "Sig_input": "Sig", "Open Manage Drawings": "Mở quản lý vẽ", "Save New Chart Layout": "Lưu lại bố cục biểu đồ mới", "Fib Channel": "Kênh Fibonacci", "Minutes_interval": "Phút", "Up Wave 2 or B": "Sóng trên 2 hoặc B", "Columns": "Các cột", "Directional Movement_study": "Hướng di chuyển", "roclen2_input": "roclen2", "Apply WPT Down Wave": "Áp dụng Sóng WPT Dưới", "Not applicable": "Không áp dụng được", "Bollinger Bands %B_input": "Bollinger Bands %B", "Default": "Mặc định", "Template name": "Tên Mẫu", "Indicator Values": "Chỉ tiêu giá trị", "Lips Length_input": "Lips Length", "Use Upper Deviation_input": "Sử dụng độ lệch cao hơn", "L_in_legend": "L", "Remove custom interval": "Loại bỏ các khoảng tùy chỉnh", "shortlen_input": "shortlen", "Quotes are delayed by {0} min": "Báo giá bị hoãn sau {0} phút", "Hide Events on Chart": "Ẩn các sự kiện trên biểu đồ", "Williams Alligator_study": "Williams Alligator", "Profit Background Color": "Màu hình nền phần lợi nhuận", "Bar's Style": "Định dạng thanh", "Exponential_input": "số mũ", "Down Wave 5": "Xuống sóng 5", "Previous": "Trước đó", "Stay In Drawing Mode": "Giữ nguyên chế độ vẽ", "Comment": "Bình luận", "Connors RSI_study": "Connors RSI", "Bars": "Hình Thanh", "Show Labels": "Hiển thị các nhãn", "Flat Top/Bottom": "Mặt phẳng đỉnh/đáy", "Symbol Type": "Loại Mã giao dịch", "December": "Tháng mười hai", "Lock drawings": "Khóa công cụ vẽ", "Border color": "Màu đường viền", "Left Labels": "Các nhãn bên trái", "Insert Indicator...": "Chèn chỉ số...", "ADR_B_input": "ADR_B", "Paste %s": "Dán %s", "Change Symbol...": "Đổi mã giao dịch...", "Timezone": "Múi giờ", "Invite-only script. You have been granted access.": "Kịch bản chỉ hiển thị cho người được mời. Bạn đã được cấp quyền truy cập", "Color 6_input": "Mầu 6", "ATR Length": "Độ dài ATR", "{0} financials by TradingView": "{0} tài chính bởi TradingView.", "Extend Lines Left": "Kéo dài đường bên trái", "Feb": "Tháng hai", "Transparency": "Độ minh bạch", "No": "Không", "June": "Tháng sáu", "Cyclic Lines": "Các đường chu kỳ", "length28_input": "length28", "ABCD Pattern": "Mẫu hình ABCD", "When selecting this checkbox the study template will set \"__interval__\" interval on a chart": "Khi chọn ô này, mẫu nghiên cứu sẽ đặt \"__interval__\" khoảng thời gian trên một biểu đồ", "Add": "Cộng Thêm", "Scale": "Tỷ lệ", "On Balance Volume_study": "Trên Cân Bằng Khối Lượng", "Apply Indicator on {0} ...": "Áp dụng chỉ báo cho {0} ...", "NEW": "MỚI", "Chart Layout Name": "Tên Bố cục Biểu đồ", "Up bars": "Thanh trên", "Hull MA_input": "Hull MA", "Lock Scale": "Khóa chia tỷ lệ", "distance: {0}": "Khoảng cách: {0}", "Extended": "Kéo dài", "Square": "Hình vuông", "log": "logarit", "NO": "KHÔNG", "Top Margin": "Lề trên", "Up fractals_input": "Up fractals", "Insert Drawing Tool": "Chèn công cụ vẽ", "OHLC Values": "Giá trị OHLC", "Correlation_input": "Tương quan", "Session Breaks": "Nghỉ giữa phiên", "Add {0} To Watchlist": "Thêm {0} vào Danh sách theo dõi", "Anchored Note": "Ghi chú được ghim", "lipsLength_input": "lipsLength", "low": "thấp", "Apply Indicator on {0}": "Áp dụng chỉ báo cho {0}", "UpDown Length_input": "Độ dài tối đa", "November": "Tháng mười một", "Balloon": "Bình luận", "Track time": "Theo dõi thời gian", "Background Color": "Màu hình nền ", "an hour": "một giờ", "Right Axis": "Trục phải", "D_data_mode_delayed_streaming_letter": "D", "VI -_input": "VI -", "slowLength_input": "slowLength", "Click to set a point": "Nhấn để thiết lập một điểm", "Save Indicator Template As...": "Lưu Mẫu Chỉ Báo Là...", "Arrow Up": "Mũi tên Lên", "n/a": "Không có sẵn", "Indicator Titles": "Tiêu đề chỉ tiêu", "Failure text color": "Màu văn bản cho lệnh thất bại", "Sa_day_of_week": "Sa", "Net Volume_study": "Khối lượng ròng", "Error": "Lỗi", "RVI_input": "RVI", "Centered_input": "Trung tâm", "Recalculate On Every Tick": "Tính lại trên mỗi Tick", "Left": "Bên trái", "Simple ma(oscillator)_input": "Simple ma(oscillator)", "Compare": "So sánh", "Fisher Transform_study": "Fisher Transform", "Show Orders": "Hiển thị các đơn", "Zoom In": "Phóng to ", "Length EMA_input": "Length EMA", "Enter a new chart layout name": "Điền tên định dạng biểu đồ mới", "Signal Length_input": "Chiều dài tín hiệu", "FAILURE": "THẤT BẠI", "Point Value": "Giá trị điểm", "D_interval_short": "D", "MA with EMA Cross_study": "MA với đường chéo EMA", "Label Up": "Nhãn Lên", "Price Channel_study": "Kênh Giá", "Close": "Đóng cửa", "ParabolicSAR_input": "ParabolicSAR", "Log Scale_scale_menu": "Tỷ lệ logarit", "MACD_input": "MACD", "Do not show this message again": "Không hiển thị tin nhắn này lại nữa", "{0} P&L: {1}": "{0} Lợi nhuận & Thua lỗ: {1}", "No Overlapping Labels": "Không có Nhãn chồng chéo", "Arrow Mark Left": "Đánh dấu mũi tên sang trái", "Slow length_input": "Slow length", "Up Wave 4": "Sóng trên 4", "(O + H + L + C)/4": "(Mở cửa + Cao nhất + Thấp nhất + Đóng cửa) / 4", "Confirm Inputs": "Xác nhận đầu vào", "Open_line_tool_position": "Mở cửa", "Lagging Span_input": "Lagging Span", "Subminuette": "Sóng cực nhỏ", "Thursday": "Thứ năm", "Arrow Down": "Mũi tên Xuống", "Elliott Correction Wave (ABC)": "Sóng điều chỉnh Elliott (ABC)", "Error while trying to create snapshot.": "Lỗi khi cố gắng tạo ảnh chụp nhanh.", "Label Background": "Hình nền của nhãn", "Templates": "Biểu mẫu", "Please report the issue or click Reconnect.": "Vui lòng báo cáo sự cố hoặc nhấp vào Kết nối lại.", "Normal": "Bình thường", "Signal Labels": "Nhãn Tín hiệu", "Delete Text Note": "Xóa văn bản ghi nhớ", "compiling...": "biên soạn...", "Detrended Price Oscillator_study": "Dao động Giá", "Color 5_input": "Mầu 5", "Fixed Range_study": "Phạm vi cố định", "Up Wave 1 or A": "Sóng trên 1 hoặc A", "Scale Price Chart Only": "Chia tỷ lệ chỉ biểu đồ giá", "Right End": "Phía cuối bên phải", "auto_scale": "Tự động", "Short period_input": "Chu kỳ Ngắn", "Background": "Hình nền", "Up Color": "Mầu lên", "Apply Elliot Wave Intermediate": "Áp dụng Sóng Elliot mức trung bình", "VWMA_input": "VWMA", "Lower Deviation_input": "Độ lệch thấp hơn", "Save Interval": "Lưu khoảng thời gian", "February": "Tháng hai", "Reverse": "Đảo ngược", "Oops, something went wrong": "Oops, có lỗi xảy ra", "Add to favorites": "Thêm vào mục yêu thích", "Median": "Trung bình", "ADX_input": "ADX", "Remove": "Loại bỏ", "len_input": "len", "Arrow Mark Up": "Đánh dấu mũi tên lên", "April": "Tháng Tư", "Active Symbol": "Mã Hoạt động", "Crosses_input": "Đường chéo", "Middle_input": "khoảng giữa", "Read our blog for more info!": "Đọc Blog của chúng tôi để biết thêm thông tin!", "Sync drawing to all charts": "Đồng bộ hóa vẽ trên tất cả các biểu đồ", "LowerLimit_input": "LowerLimit", "Know Sure Thing_study": "Điều biết chắc chắn", "Copy Chart Layout": "Sao chép định dạng biểu đồ", "Compare...": "So sánh...", "1. Slide your finger to select location for next anchor
    2. Tap anywhere to place the next anchor": "1.Trượt ngón tay của bạn để chọn vị trí cho mốc tiếp theo
    2. Bấm vào bất kỳ vị trí nào nào để đặt mốc tiếp theo", "Text Notes are available only on chart page. Please open a chart and then try again.": "Ghi chú văn bản chỉ có trên trang biểu đồ. Vui lòng mở một biểu đồ và sau đó thử lại.", "Color": "Màu sắc", "Aroon Up_input": "Aroon Up", "Scales Lines": "Đường tỷ lệ", "Type the interval number for munute charts (i.e. 5 if it is going to be a five minute chart). Or number plus letter for H (Hourly), D (Daily), W (Weekly), M (Monthly) intervals (i.e. D or 2H)": "Nhập số khoảng thời gian cho biểu đồ phút (ví dụ 5 nếu đó là biểu đồ năm phút). Hoặc số cộng với chữ H (Hàng giờ), D (Hàng ngày), W (Hàng tuần), M (Hàng tháng) khoảng (ví dụ D hoặc 2H)", "HLC Bars": "Thanh HLC", "Up Wave C": "Sóng trên C", "Show Distance": "Hiển thị khoảng cách", "Risk/Reward Ratio: {0}": "Tỷ lệ Rủi ro/Lợi nhuận: {0}", "Volume Oscillator_study": "Khối lượng Dao động", "Williams Fractal_study": "Williams Fractal", "Merge Up": "Sáp nhập lên", "Right Margin": "Lề phải", "Ellipse": "Hình elip"} \ No newline at end of file diff --git a/charting_library/static/localization/translations/market-quotes-translations.json b/charting_library/static/localization/translations/widgets-copyrights.json similarity index 100% rename from charting_library/static/localization/translations/market-quotes-translations.json rename to charting_library/static/localization/translations/widgets-copyrights.json diff --git a/charting_library/static/localization/translations/widgets-copyrights.json.example b/charting_library/static/localization/translations/widgets-copyrights.json.example new file mode 100644 index 00000000..5e868ea4 --- /dev/null +++ b/charting_library/static/localization/translations/widgets-copyrights.json.example @@ -0,0 +1,3 @@ +{ + "default": "by {0}" +} diff --git a/charting_library/static/localization/translations/zh.json b/charting_library/static/localization/translations/zh.json index 0debe1db..efdcdc23 100644 --- a/charting_library/static/localization/translations/zh.json +++ b/charting_library/static/localization/translations/zh.json @@ -1 +1 @@ -{"ticks_slippage ... ticks": "ticks", "Months_interval": "Months", "EOD": "当日有效", "RSI Length_input": "RSI Length", "month": "月", "London": "欧洲/伦敦", "roclen1_input": "roclen1", "Unmerge Down": "取消向下合并", "Percents": "百分比", "Search Note": "搜索文本笔记", "Minor": "小型级", "Top Margin": "上边距", "June": "六月", "Magnet Mode": "磁铁模式", "Grand Supercycle": "超级大周期", "OSC_input": "OSC", "Hide alert label line": "隐藏警报标签线", "Volume_study": "成交量", "Lips_input": "嘴唇", "Histogram": "直方图", "Base Line_input": "Base Line", "Step": "阶梯", "Elliott Wave Circle": "艾略特波浪圈", "Fib Time Zone": "斐波那契时间周期", "SMALen2_input": "SMALen2", "Bollinger Bands_study": "布林带", "Nov": "十一月", "Show/Hide": "显示/隐藏", "Upper_input": "上限", "Sig_input": "Sig", "Move Up": "上涨", "Sigma_input": "Sigma", "Gann Square": "甘氏方形", "Count_input": "Count", "Full Circles": "整圆", "Industry": "行业", "SMALen1_input": "SMALen1", "Cross_chart_type": "十字图", "Target Color:": "获利颜色:", "a day": "一天", "Pitchfork": "分叉线", "Normal": "一般", "Accumulation/Distribution_study": "收集/派发线", "Rate Of Change_study": "变化速率", "in_dates": "总", "Color 7_input": "颜色7", "Change Average HL value": "变化HL值平均", "Show Labels": "显示标签", "Scales Properties": "刻度属性", "Trend-Based Fib Time": "斐波那契趋势时间", "Remove All Indicators": "移除所有指标", "Oscillator_input": "震动指数", "Last Modified": "最后修改", "yay Color 0_input": "yay Color 0", "Labels": "标签", "Chande Kroll Stop_study": "缠得克罗尔停止", "Hours_interval": "Hours", "Scale Right": "缩放右边", "Money Flow_study": "资金流动", "siglen_input": "Sigma 长度", "Indicator Labels": "指标标签", "Tuesday": "星期二", "Toggle Percentage": "切换为百分比", "Remove All Drawing Tools": "移除所有绘图", "Remove all line tools for ": "移除所有画线工具 ", "Linear Regression Curve_study": "线性回归曲线", "Symbol_input": "系统", "Currency": "货币", "Upper Deviation_input": "Upper Deviation", "Rename Chart Layout": "重命名图表版面", "Save Chart Layout": "保存图表版面", "Number Of Line": "线条数量", "Label": "标签", "second": "seconds", "Any Number": "任何数字", "smoothD_input": "smoothD", "Falling_input": "Falling", "Percentage": "百分比", "Donchian Channels_study": "唐庆通道", "Entry price:": "进场价:", "RSI Source_input": "RSI Source", "Open Manage Drawings": "打开管理绘图", "Ichimoku Cloud_study": "Ichimoku Cloud", "jawLength_input": "下颚长度", "Toggle Log Scale": "切换为对数缩放", "Apply Elliot Wave Major": "应用艾略特主要波", "Grid": "网格", "Mass Index_study": "梅斯指标", "Up Wave 1 or A": "上涨波1或A", "Smoothing_input": "Smoothing", "Color 3_input": "颜色3", "Jaw Length_input": "下颚长度", "Inside": "内部", "Delete all drawing for this symbol": "删除此商品中的所有绘图", "Quotes are delayed by 10 min and updated every 30 seconds": "行情延时10分钟,每30秒更新一次", "Keltner Channels_study": "肯特纳通道", "Long Position": "多头", "Bands style_input": "Bands style", "Undo {0}": "撤销", "With Markers": "带标记", "Momentum_study": "动量", "MF_input": "MF", "On Balance Volume_study": "能量潮", "Hide Events on Chart": "隐藏图表中的事件", "Change Hours To": "修改小时为", "Long length_input": "长线长度", "Apply Elliot Wave": "运用艾略特波浪", "Disjoint Angle": "不相交的角", "W_interval_short": "W", "Color 6_input": "颜色6", "Log Scale": "对数刻度", "Line - High": "线 - 最高价", "Bar's Style": "K线样式", "Equality Line_input": "Equality Line", "Open": "打开", "Heikin Ashi": "平均K线图", "Line": "线形图", "Down fractals_input": "Down fractals", "Fib Retracement": "斐波那契回撤", "smalen2_input": "smalen2", "isCentered_input": "居中", "Border": "边框", "Klinger Oscillator_study": "克林格成交量摆动指标", "Absolute": "绝对位置", "Style": "样式", "Show Left Scale": "显示左侧刻度", "SMI Ergodic Indicator/Oscillator_study": "遍历性指数", "Aug": "八月", "Last available bar": "最后一根可用的K线", "Manage Drawings": "管理绘图", "Top": "顶部", "No drawings yet": "尚未绘图", "Chande MO_input": "Chande MO", "Copy link": "复制链接", "TRIX_study": "三重平滑均线", "MACD_study": "平滑异同均线", "RVGI_input": "相对能量指数", "Realtime": "实时", "Last edited ": "上次编辑 ", "signalLength_input": "signalLength", "Middle_input": "中间", "Reset Settings": "重置设置", "PnF": "OX图", "Renko": "砖形图", "d_dates": "日", "Point & Figure": "OX图", "August": "八月", "Recalculate After Order filled": "报单成交后重新计算", "Source_compare": "来源", "Correlation Coefficient_study": "相关系数", "Delayed": "延时的", "Bottom Labels": "底部标签", "Text color": "文本颜色", "Levels": "等级", "Short Length_input": "短期长度", "teethLength_input": "齿距", "Failure text color": "失败的文本颜色", "Hong Kong": "亚洲/香港", "FAILURE": "失败", "Subminuette": "次微级", "October": "十月", "Lock All Drawing Tools": "锁定所有绘图", "Target border color": "终点边框颜色", "Right End": "右端", "Show Symbol Last Value": "显示商品最后价格", "Head & Shoulders": "头肩顶", "Favorite Drawings Toolbar": "收藏绘图工具栏", "Properties...": "属性...", "MA Cross_study": "移动揉搓线", "Trend Angle": "角度趋势线", "Snapshot": "快照", "Crosshair": "十字", "Signal line period_input": "Signal line period", "Timezone/Sessions Properties...": "时区属性...", "Line Break": "新价线", "Quantity": "数量", "Price Volume Trend_study": "价量趋势指标", "high": "高点", "hour": "小时", "Scales": "刻度", "Text": "文本", "F_data_mode_forbidden_letter": "F", "Risk/Reward long": "多头风险/回报比例", "Apr": "四月", "Long RoC Length_input": "长线变量长度", "Length3_input": "长度3", "Cancel Order": "取消报单", "Madrid": "欧洲/马德里", "Exit Full Screen (ESC)": "退出全屏(ESC)", "Show Bars Range": "显示K线区间", "Down Wave 2 or B": "下跌波2或B", "%s ago_time_range": "%s之前", "Zoom In": "放大", "Failure back color": "失败的背景颜色", "Below Bar": "Bar下方", "Coordinates": "坐标", "Time Scale": "时间刻度", "

    Only D, W, M intervals are supported for this symbol/exchange. You will be automatically switched to a D interval. Intraday intervals are not available because of exchange policies.

    ": "

    此商品/交易所只支持日,周,月周期。您的图表将自动切换到1日周期。由于交易所政策,不可用日内周期。

    ", "Extend Left": "向左延伸", "Date Range": "日期范围", "Show Price": "显示价格", "Level_input": "水平", "Hide Favorite Drawings Toolbar": "隐藏收藏绘图工具栏", "Commodity Channel Index_study": "顺势指标", "Elder's Force Index_input": "Elder's Force Index", "Scales Properties...": "刻度属性...", "Phoenix": "菲尼克斯", "Format": "设置", "Color bars based on previous close": "bar颜色基于前一收盘价", "Change band background": "修改带背景", "Marketplace Add-ons": "商城附加组件", "Anchored Text": "锚点文本", "Edit {0} Alert...": "编辑{0}警报...", "Text:": "文本:", "Aroon_study": "阿隆指标", "show MA_input": "显示移动平均", "h_dates": "时", "Short Position": "空头", "HLC Bars": "高低收柱子", "Change Interval...": "修改周期...", "Apply Default": "恢复预设", "SMALen3_input": "SMALen3", "Average Directional Index_study": "平均定向指数", "Fr_day_of_week": "周五", "Curve": "曲线", "a year": "一年", "H_in_legend": "高=", "Bars Pattern": "竖条模型", "D_input": "D", "Right Labels": "右边标签", "Change Interval": "设置周期", "p_input": "P指", "Chart layout name": "图表版面名称", "Fib Circles": "斐波那契圈", "Apply Manual Decision Point": "应用手动决策点", "Dot": "圆点", "Target back color": "终点背景颜色", "All": "全部", "Show Positions": "显示持仓", "orders_up to ... orders": "orders", "Lead 2_input": "Lead 2", "Save image": "保存图片", "Fundamentals": "基本面", "Unlock": "解锁", "Up Wave 2 or B": "上涨波2或B", "Box Size": "箱体大小", "Navigation Buttons": "导航按钮", "Apply": "应用", "Show Countdown": "显示时间倒数", "Precise Labels": "精确标签", "Sine Line": "正弦线", "Fill": "填充", "%d day": "%d days", "Hide": "隐藏", "Bottom": "底部", "Target text color": "获利文本颜色", "Scale Left": "缩放左边", "Elliott Wave Subminuette": "艾略特次微波", "Down Wave C": "下跌波C", "Jan": "一月", "Variance": "方差", "Source back color": "起点背景颜色", "Sao Paulo": "南美洲/圣保罗", "Oct": "十月", "Apply Elliot Wave Minor": "应用艾略特小型波", "Inputs": "参数", "Conversion Line_input": "Conversion Line", "March": "三月", "Su_day_of_week": "周日", "Up fractals_input": "Up fractals", "Regression Trend": "回归趋势", "Auto Scale": "自动缩放", "Symbol Description": "商品描述", "Double EMA_study": "双指数移动平均", "minute": "分", "Price Oscillator_study": "价格震荡", "Sync drawings to all charts": "同步绘图到所有图表", "Chop Zone_study": "波动区域", "Stop Color:": "止损颜色:", "Stay in Drawing Mode": "保持绘图模式", "Bottom Margin": "下边距", "Dubai": "迪拜", "Save Chart Layout saves not just some particular chart, it saves all charts for all symbols and intervals which you are modifying while working with this Layout": "保存图表版面,不只是保存几个特定的图表,同时也保存了您在使用此版面期间修改的所有商品和周期设定。", "Average True Range_study": "真实波动幅度均值", "Max value_input": "最大", "MA Length_input": "MA", "Time Interval": "时间周期", "UpperLimit_input": "上限带", "sym_input": "系统", "DI Length_input": "DI长度", "Extend Lines": "延长线", "SMI_input": "SMI", "Change Days To": "修改日线为", "Basis_input": "底部", "Moving Average_study": "移动平均", "lengthStoch_input": "Stoch长度", "Taipei": "亚洲/台北", "Objects Tree": "管理设定", "Remove from favorites": "移除收藏", "Copy": "复制", "Scale Series Only": "只缩放数据系列", "Simple": "简单", "Report a data issue": "报告数据问题", "Arnaud Legoux Moving Average_study": "Arnaud Legoux移动平均", "Technical Analysis": "技术分析", "Lower Band_input": "Lower Band", "Verify Price for Limit Orders": "为限价单核对价格", "VI +_input": "VI +", "Line Width": "线宽", "Lead 1_input": "Lead 1", "Always Show Stats": "总显示统计", "Down Wave 4": "下跌波4", "Down Wave 5": "下跌波5", "Simple ma(signal line)_input": "Simple ma(signal line)", "Ray": "射线", "Public Library": "公共指标库", "Down Wave 3": "下跌波3", "Close message": "关闭消息", "UTC": "世界统一时间", "Show Drawings Toolbar": "显示绘图工具栏", "Chaikin Oscillator_study": "佳庆资金流量震荡", "Balloon": "泡泡注解", "Market Open": "盘中", "Color Theme": "主题颜色", "Projection up bars": "向上投射柱子", "Centered_input": "居中", "Bollinger Bands Width_input": "Bollinger Bands Width", "Fib Speed Resistance Arcs": "斐波那契速度阻力弧", "Error occured while publishing": "发表时发生错误", "Fisher_input": "费希尔", "Color 1_input": "颜色1", "Moving Average Weighted_study": "移动加权", "Save": "保存", "Type": "种类", "Chart Layout Name": "图表版面名称", "Short period_input": "Short period", "Load Chart Layout": "加载图表版面", "Show Values": "显示值", "Fib Speed Resistance Fan": "斐波那契速度阻力扇", "Compare": "比较", "This chart layout has more than 1000 drawings, which is a lot! This may negatively affect performance, storage and publishing. We recommend to remove some drawings to avoid potential performance issues.": "此图表版面中有超过1000个绘图,这太多了!可能对性能、存储和发表产生负面影响。我们建议删除一些绘图,以避免潜在的性能问题。", "Left End": "左端", "%d year": "%d years", "Always Visible": "总是显示", "S_data_mode_snapshot_letter": "S", "post-market": "盘后时段", "Change Minutes To": "修改分钟为", "Earnings breaks": "盈余突破", "Do not ask again": "不要再问", "Tue": "周二", "smalen4_input": "smalen4", "CCI_input": "CCI", "Unmerge Up": "取消向上合并", "increment_input": "增量", "(H + L)/2": "(H+L)/2", "XABCD Pattern": "XABCD 型态", "Schiff Pitchfork": "希夫分叉线", "hl2": "高低2", "Flipped": "水平翻转", "DEMA_input": "DEMA", "NV_input": "NV", "Choppiness Index_study": "波动指数", "Merge Down": "向下合并", "Th_day_of_week": "周四", "Studies": "技术分析", "eod delayed": "延迟日资料", "Screen (No Scale)": "屏幕(无缩放)", "Delete": "删除", "Traditional": "传统", "in %s_time_range": "在%s", "percent_input": "百分比", "September": "九月", "Length_input": "长度", "Median_input": "Median", "Accumulation/Distribution_input": "Accumulation/Distribution", "Sync": "同步", "C_in_legend": "收=", "Weeks_interval": "Weeks", "smoothK_input": "smoothK", "Percentage_scale_menu": "百分比刻度", "Change Extended Hours": "修改延长交易时段", "MOM_input": "动量", "h_interval_short": "h", "Rotated Rectangle": "旋转矩形", "Modified Schiff": "调整希夫", "top": "顶部", "Send Backward": "下移一层", "TRIX_input": "三重平滑均线", "Show Price Range": "显示价格区间", "Elliott Major Retracement": "艾略特主波浪回撤", "Fri": "周五", "just now": "现在", "Forecast": "预测", "Connecting": "正在连接", "Ghost Feed": "映象种子", "Histogram_input": "Histogram", "The Extended Trading Hours feature is available only for intraday charts": "延时交易的特点是只适合于日内周期图表", "open": "开盘", "StdDev_input": "StdDev", "Change Minutes From": "更改分钟", "Relative Strength Index_study": "相对强弱指标", "Interval is not applicable": "周期不适用", "My Scripts": "我的脚本", "Monday": "星期一", "-DI_input": "-DI", "short_input": "短期", "Symbol": "商品", "a month": "一个月", "Precision": "精确度", "depth_input": "深度", "Please enter chart layout name": "请输入图表版面名称", "Offset": "偏移", "Date": "日期", "Format...": "设置...", "Toggle Auto Scale": "切换为自动缩放", "Periods_input": "阶段", "Zig Zag_study": "抛物线转向", "Actual": "实际", "SUCCESS": "成功", "Detrended Price Oscillator_input": "Detrended Price Oscillator", "{0} copy": "{0} 复制", "length_input": "长度", "Close Position": "平仓", "Price Line": "价格线", "Area With Breaks": "中断区块", "Zoom Out": "缩小", "Stop Level. Ticks:": "止损.最小刻度数:", "Jul": "七月", "Allow up to": "最多允许", "Visual Order": "视觉排序", "Warning": "警告", "Stop Background Color": "止损背景颜色", "Slow length_input": "慢线长度", "Conversion Line Periods_input": "Conversion Line Periods", "Sector": "领域", "Stochastic_study": "随机指数", "Apply WPT Down Wave": "运用WPT Down波浪", "Marker Color": "标记颜色", "TEMA_input": "TEMA", "Apply WPT Up Wave": "运用WPT Up波浪", "Directional Movement_study": "动向指标", "Extend Left End": "左端延伸", "Projection down bars": "向下投射柱子", "Advance/Decline_study": "价格涨落线", "New York": "北美洲/纽约", "Flag Mark": "旗型标记", "Drawings": "绘图", "Fast length_input": "快线长度", "Cancel": "取消", "Bar #": "K线#", "Redo": "重做", "Hide Drawings Toolbar": "隐藏绘图工具栏", "Ultimate Oscillator_study": "终极震荡指标", "This chart layout has a lot of objects and can't be published! Please report to {0} for further details.": "这个图表版面有过多对象无法被发表!请报告进一步 详细信息给{0}。", "Vert Grid Lines": "垂直网格线", "Growing_input": "Growing", "Angle": "角度", "Show Only Future Events": "仅显示期货事件", "Plot_input": "描画", "Chicago": "北美洲/芝加哥", "Color 8_input": "颜色8", "San Salvador": "圣萨尔瓦多", "Search": "查找", "Bollinger Bands Width_study": "布林通道带宽", "roclen3_input": "roclen3", "Overbought_input": "Overbought", "DPO_input": "区间震荡", "Levels Line": "等级线", "No study templates saved": "没有已保存的指标模板", "Trend Line": "趋势线", "Relative Vigor Index_study": "相对能量指数", "Your chart is being saved, please wait a moment before you leave this page.": "您的图表正在保存中,请稍候再离开此页面。", "Risk/Reward short": "空头风险/回报比例", "Price Range": "价格范围", "Extended Hours": "延时", "Triangle": "三角形", "Line With Breaks": "中断线", "Period_input": "阶段", "Watermark": "水印", "Trigger_input": "触发位", "SigLen_input": "Sigma 长度", "Clone": "克隆", "Color 2_input": "颜色2", "Show Prices": "显示价格", "Contracts": "合约", "Edit Order": "编辑报单", "Save Indicator Template As...": "保存技术指标模板", "Arrow Mark Right": "向右箭头", "Background color 2": "背景颜色2", "Background color 1": "背景颜色1", "Circles": "圆圈图", "McGinley Dynamic_study": "金利动态指标", "Visible on Mouse Over": "鼠标移动时可见", "Thu": "周四", "Vortex Indicator_study": "涡流指标", "Williams Alligator_study": "威廉姆斯鳄鱼", "ROCLen1_input": "ROCLen1", "Border Color": "边框颜色", "M_interval_short": "M", "Change Symbol...": "修改商品...", "Price Levels": "价格等级", "Show Splits": "显示分割", "Zero Line_input": "零线", "Increment_input": "增量", "Days_interval": "Days", "Show Right Scale": "显示右侧刻度", "Show Alert Labels": "显示警报标签", "Net Volume_study": "净量", "Lock": "锁定", "length14_input": "长度14", "Sa_day_of_week": "周六", "High": "最高价", "ext": "延时", "Date and Price Range": "日期和价格范围", "Polyline": "多边形", "Reconnect": "重新连接", "Add to favorites": "加入收藏", "Saturday": "星期六", "Symbol Last Value": "商品最后价格", "Above Bar": "Bar上方", "Color 0_input": "颜色0", "maximum_input": "最大", "Wed": "周三", "Paris": "欧洲/巴黎", "D_data_mode_delayed_letter": "D", "Symbol Info": "商品信息", "Pyramiding": "金字塔式", "fastLength_input": "快线长度", "Width": "宽度", "Historical Volatility_study": "历史波动率", "Template": "模板", "Compare or Add Symbol...": "比较/增加商品...", "Parallel Channel": "平行通道", "Time Cycles": "时间循环", "Divisor_input": "因数", "Down Wave 1 or A": "下跌波1或A", "ROC_input": "变量", "Dec": "十二月", "Extend": "延伸", "length7_input": "长度7", "Toggle Maximize Chart": "开关最大化图表", "Send to Back": "置于底层", "Undo": "撤销", "Window Size_input": "窗口尺寸", "Mon": "周一", "Reset Scale": "重设刻度", "Long Length_input": "长线长度", "True Strength Indicator_study": "真实强度指标", "%R_input": "%R", "Chart Properties": "图表属性", "bars_margin": "根K线", "Show Indicator Last Value": "显示指标最后价格", "Initial capital": "初始资金", "Show Angle": "显示角度", "Indicator Last Value": "指标最后价格", "smalen3_input": "smalen3", "Length1_input": "长度1", "Always Invisible": "总是隐藏", "Days": "日", "x_input": "X指", "Save As...": "另存为...", "Lock/Unlock": "锁定/解锁", "Elliott Double Combo Wave (WXY)": "艾略特双组合波浪(WXY)", "Parabolic SAR_study": "抛物线", "Fisher Transform_study": "弗雪变换", "Show Hidden Tools": "显示隐藏的工具", "Hollow Candles": "空心蜡烛线", "Any Symbol": "任何符号", "UO_input": "终极震荡指标", "Stats Text Color": "统计文本颜色", "Minutes": "分钟", "Short RoC Length_input": "短期变量长度", "Show Orders": "显示报单", "Countdown": "时间倒数", "Jaw_input": "下颚", "Right": "右边", "Help": "帮助", "Coppock Curve_study": "估波曲线", "Reversal Amount": "反转数量", "Reset Chart": "重设图表", "Sep": "九月", "Sunday": "星期日", "Themes": "主题", "Left Axis": "左轴", "YES": "是", "longlen_input": "长线长度", "Moving Average Exponential_study": "指数移动平均", "Source border color": "起点边框颜色", "Redo {0}": "重做{0}", "Cypher Pattern": "Cypher 型态", "s_dates": "s", "Move Down": "下跌", "Area": "山形图", "invalid symbol": "无效的商品代码", "Triangle Pattern": "三角型态", "Gann Fan": "甘氏扇形", "Balance of Power_study": "均势", "EOM_input": "EOM", "Font Size": "字体大小", "Apply Manual Risk/Reward": "应用手动风险/回报", "Sydney": "大洋洲/悉尼", "Indicators": "技术指标", "close": "收盘", "Callout": "标注", "q_input": "Q指", "%D_input": "%D", "Text Alignment:": "文本对齐:", "Offset_input": "Offset", "Risk": "风险", "Price Scale": "价格刻度", "HV_input": "HV", "Seconds": "秒", "(H + L + C)/3": "(H+L+C)/3", "Start_input": "开始", "R_data_mode_realtime_letter": "R", "Hours": "小时", "Berlin": "欧洲/柏林", "Color 4_input": "颜色4", "Los Angeles": "北美洲/洛杉矶", "Prices": "价格", "Extended Hours (Intraday Only)": "延长时间 (仅当日)", "July": "七月", "Create Horizontal Line": "创建水平线", "Minute": "细级", "Cycle": "循环级", "ADX Smoothing_input": "ADX平滑化", "m_dates": "分", "Settings": "设置", "Drawing Tools": "绘图工具", "Candles": "蜡烛线", "We_day_of_week": "我们", "Width (% of the Box)": "宽度(箱的%)", "%d minute": "%d minutes", "Wednesday": "周三", "This drawing is used in alert. If you remove the drawing, the alert will be also removed. Do you want to remove the drawing anyway?": "这张图是用来警报的。如果你移除了绘图,警告将被删除。你想删除绘图吗?", "Hide All Drawing Tools": "隐藏所有绘图工具", "Show alert label line": "显示警报标签线", "MA_input": "MA", "Detrended Price Oscillator_study": "非趋势价格摆动", "not authorized": "未经授权", "Image URL": "图片网址", "Submicro": "亚微米级", "SMI Ergodic Oscillator_input": "SMI Ergodic Oscillator", "Show Objects Tree": "显示管理设定", "Primary": "基本级", "Price:": "价格:", "Gann Box": "甘氏箱", "Bring to Front": "置于顶层", "Brush": "笔刷", "Not Now": "不是现在", "lengthRSI_input": "RSI长度", "Yes": "是", "Events & Alerts": "事件 & 警报", "+DI_input": "+DI", "Apply Default Drawing Template": "应用默认绘图模板", "Save As Default": "存为默认", "Invalid Symbol": "无效的标的", "Inside Pitchfork": "内部分叉线", "yay Color 1_input": "yay Color 1", "Quandl is a huge financial database that we have connected to TradingView. Most of its data is EOD and is not updated in real-time, however the information may be extremely useful for fundamental analysis.": "Quandl是一个巨大的金融数据库,我们已经将它链接到TradingView。它的大部分数据是EOD,非实时更新的,然而,这些信息对基本面分析是非常有用的。", "Hide Marks On Bars": "隐藏Bar上的标记", "Note": "注释", "Kagi": "卡吉图", "WMA Length_input": "WMA 长度", "Show Dividends on Chart": "在图表上显示股息", "Show Executions": "显示信号执行", "Borders": "边框", "loading...": "载入中...", "Closed_line_tool_position": "已平仓", "Columns": "柱状图", "Change Resolution": "修改分辨率", "Indicator Arguments": "指标参数", "Fib Spiral": "斐波那契螺旋", "Create Vertical Line": "创建垂直线", "Degree": "级别", "Mar": "三月", "Line - HL/2": "线 - HL/2", "Up Wave 4": "上涨波4", "Jun": "六月", "Least Squares Moving Average_study": "最小二乘移动指标", "Change Variance value": "变化方差值", "Overlay the main chart": "在主图上显示", "Source_input": "来源", "Change Seconds To": "修改秒为", "%K_input": "%K", "Success back color": "成功的背景颜色", "Toronto": "北美洲/多伦多", "Please enter template name": "请输入模板名称", "Tokyo": "亚洲/东京", "Study Templates": "指标模板", "long_input": "长线", "Months": "月", "Symbol Info...": "商品信息...", "Elliott Wave Minor": "艾略特小型波", "Read our blog for more info!": "阅读我们的博客获得更多信息!", "Measure (Shift + Click on the chart)": "测量 (按Shift并点击图表)", "Override Min Tick": "显示最小刻度", "Thursday": "星期四", "Dialog": "对话框", "Add To Text Notes": "添加到文本笔记", "Elliott Triple Combo Wave (WXYXZ)": "艾略特三重组合波浪(WXYXZ)", "Multiplier_input": "多元", "Risk/Reward": "风险/报酬", "Base Line Periods_input": "Base Line Periods", "Show Dividends": "显示股息", "pre-market": "盘前时段", "Top Labels": "顶部标签", "Show Earnings": "显示收益", "Line - Open": "线 - 开盘价", "Elliott Triangle Wave (ABCDE)": "艾略特三角波浪(ABCDE)", "Minuette": "微级", "Text Wrap": "自动换行", "Reverse Position": "平仓反向", "Elliott Minor Retracement": "艾略特小波浪回撤", "Pitchfan": "倾斜扇形", "No symbols matched your criteria": "没有商品符合您的搜索条件.", "Icon": "图标", "Short_input": "短期", "Fib Wedge": "斐波那契楔形", "Indicator_input": "指标", "Open Interval Dialog": "打开设置周期", "Shanghai": "亚洲/上海", "Athens": "欧洲/雅典", "Q_input": "Q指", "Content": "内容", "middle": "中间", "Lock Cursor In Time": "锁定时间光标", "Intermediate": "中型级", "Eraser": "清除", "TimeZone": "时区", "Envelope_study": "包路线", "Symbol Labels": "商品代码标签", "Active Symbol": "活跃商品", "Horizontal Line": "水平线", "O_in_legend": "开=", "Confirmation": "确认", "HL Bars": "HL bars", "Add Alert": "添加警报", "Lines:": "线条", "hlc3": "高低3", "Buenos Aires": "南美洲/布宜诺斯艾利斯", "useTrueRange_input": "使用真实范围", "Bangkok": "亚洲/曼谷", "Profit Level. Ticks:": "获利.最小刻度数:", "Show Date/Time Range": "显示日期/时间区间", "Level {0}": "等级{0}", "Horz Grid Lines": "水平网格线", "Text Notes are available only on chart page. Please open a chart and then try again.": "文本笔记只能在图表页面使用。请打开图表然后再尝试。", "Tu_day_of_week": "周二", "day": "日", "deviation_input": "偏离", "week": "周", "Base currency": "基币", "VWMA_study": "成交量加权的移动平均值", "Success text color": "成功的文本颜色", "ADX smoothing_input": "ADX平滑化", "%d hour": "%d hours", "Order size": "报单数量", "Displacement_input": "Displacement", "ohlc4": "开高低收4", "Save Indicator Template As": "保存技术指标模板", "ADR_B_input": "ADR_B", "Chaikin Money Flow_study": "佳庆资金流量", "Ease Of Movement_study": "简易波动指标", "Defaults": "预设值", "Percent_input": "百分比", "Oversold_input": "Oversold", "Williams %R_study": "威廉姆斯指数", "Visual settings...": "视觉设置...", "RSI_input": "RSI", "Long period_input": "Long period", "Mo_day_of_week": "Mo", "center": "中心", "Vertical Line": "垂直线", "Bogota": "南美洲/波哥大", "Show Splits on Chart": "在图表上显示划分", "Minutes_interval": "Minutes", "X_input": "X指", "C_data_mode_connecting_letter": "C", "Simple ma(oscillator)_input": "Simple ma(oscillator)", "compiling...": "编译...", "SMALen4_input": "SMALen4", "ROCLen4_input": "ROCLen4", "Aroon Down_input": "Aroon Down", "Add To Watchlist": "添加到收藏夹", "Total": "总计", "Extend Right": "向右延伸", "left": "左边", "Lock scale": "锁定刻度", "Time Levels": "时间等级", "Arrow": "箭头", "smalen1_input": "smalen1", "Extend Right End": "右端延伸", "Fans": "扇形", "Price_input": "Price", "Close_input": "收市", "Arrow Mark Down": "向下箭头", "Weeks": "周", "Modified Schiff Pitchfork": "调整希夫分叉线", "Relative Volatility Index_study": "相对离散指数", "Elliott Impulse Wave (12345)": "艾略特脉冲波浪(12345)", "PVT_input": "价量趋势指标", "Circle Lines": "圆形线圈", "Hull Moving Average_study": "船体移动平均线", "Bring Forward": "向上移动", "Apply Defaults": "恢复默认", "Friday": "星期五", "Zero_input": "零", "Company Comparison": "请输入对比商品", "Stochastic Length_input": "Stochastic Length", "mult_input": "多元", "URL cannot be received": "URL无法收到", "Signal smoothing_input": "Signal smoothing", "E_data_mode_end_of_day_letter": "E", "Trend-Based Fib Extension": "斐波那契趋势扩展", "Analyze Trade Setup": "分析交易设置", "Double Curve": "双曲线", "Stochastic RSI_study": "随机相对摆荡", "Horizontal Ray": "水平射线", "Ok": "确认", "Script Editor...": "脚本编辑器...", "Trades on Chart": "图表上的交易", "Chaikin Oscillator_input": "Chaikin Oscillator", "Error:": "错误:", "Fullscreen mode": "全屏模式", "Add Text Note For {0}": "给{0}添加文本笔记", "K_input": "K", "In Session": "时段内", "ROCLen3_input": "ROCLen3", "Restore Size": "恢复尺寸", "Text Color": "文本颜色", "Extend Alert Line": "Extend警报线", "Drawings Toolbar": "绘图工具栏", "Source Code...": "源代码...", "CHOP_input": "CHOP", "Scale": "刻度", "% of equity": "% 权益", "Extended Alert Line": "延伸警报线", "Signal_input": "信号", "OK": "确认", "like": "likes", "Original": "原型", "Show": "显示", "Exchange": "交易所", "{0} bars": "{0}根K线", "Lower_input": "更低点", "Created ": "创建 ", "Arc": "弧形", "Elder's Force Index_study": "势力指数", "Show Earnings on Chart": "在图表上显示盈余", "ATR_input": "ATR", "Low": "最低价", "Bollinger Bands %B_study": "布林极限", "Time Zone": "时区", "right": "右边", "%d month": "%d months", "Wrong value": "错误值", "Upper Band_input": "Upper Band", "Sun": "星期日", "Rename...": "重命名...", "February": "二月", "start_input": "开始", "No indicators matched your criteria.": "没有指标符合您的搜索条件.", "Down Color": "下跌颜色", "Short length_input": "短期长度", "Kolkata": "亚洲/加尔各答", "Triple EMA_study": "三重指数平滑平均线", "Precise Labels_scale_menu": "精确标签", "Smoothed Moving Average_study": "平滑移动平均", "Show Text": "显示文本", "Channel": "通道", "Stop syncing drawing": "停止同步绘图", "Lagging Span 2 Periods_input": "Lagging Span 2 Periods", "Connecting Line": "连接线", "Seoul": "亚洲/首尔", "bottom": "底部", "Teeth_input": "牙齿", "Moscow": "欧洲/莫斯科", "Save New Chart Layout": "保存图表版面", "Fib Channel": "斐波那契通道", "Visibility": "可见性", "Events": "事件", "Save Drawing Template As...": "保存为绘图模板...", "Insert Study Template": "插入研究模板", "exponential_input": "指数化", "OnBalanceVolume_input": "OnBalanceVolume", "roclen2_input": "roclen2", "Chande Momentum Oscillator_study": "缠得动量摆动指标", "Not applicable": "不适用", "or copy url:": "或复制图片链接:", "Bollinger Bands %B_input": "Bollinger Bands %B", "Template name": "模板名称", "Indicator Values": "指标值", "Lips Length_input": "嘴唇长度", "Use Upper Deviation_input": "Use Upper Deviation", "L_in_legend": "低=", "Remove custom interval": "移除自定义区间", "shortlen_input": "短期长度", "Timezone/Sessions": "时区", "Copied to clipboard": "复制到剪贴板", "ADX_input": "ADX", "Profit Background Color": "利润背景颜色", "Trading": "交易", "Exponential_input": "指数化", "ROCLen2_input": "ROCLen2", "Use Lower Deviation_input": "Use Lower Deviation", "Stay In Drawing Mode": "保持绘图模式", "Comment": "评论", "Long_input": "长线", "Bars": "美国线", "Source text color": "起点文本颜色", "Flat Top/Bottom": "平滑顶部/底部", "loading data": "加载数据", "December": "十二月", "Lock drawings": "锁定绘图", "Border color": "边框颜色", "Change Seconds From": "更改秒", "Left Labels": "左边标签", "Insert Indicator...": "插入技术指标", "P_input": "P指", "Paste %s": "粘贴%s", "Timezone": "时区", "Sat": "星期六", "ATR Length": "平均真实波幅长度", "Rectangle": "矩形", "Supercycle": "超级周期", "Feb": "二月", "Transparency": "透明度", "No": "否", "All Indicators And Drawing Tools": "所有指标和绘图工具", "Cyclic Lines": "循环线", "length28_input": "长度28", "ABCD Pattern": "ABCD 型态", "closed": "收盘", "When selecting this checkbox the study template will set \"__interval__\" interval on a chart": "当选择此复选框,指标模板将设定图表周期\"__interval__\"", "NO": "否", "Add": "增加", "Line - Low": "线 - 最低价", "Price Label": "价格标签", "Graphics": "图像", "NEW": "新建", "Wick": "烛芯", "Hull MA_input": "Hull MA", "Schiff": "希夫", "Lock Scale": "锁定刻度", "distance: {0}": "距离: {0}", "Extended": "延长线", "Three Drives Pattern": "三驱模式", "Arcs": "弧形", "Length2_input": "长度2", "Insert Drawing Tool": "插入绘图工具", "OHLC Values": "开高低收", "Correlation_input": "Correlation", "Scales Text": "刻度文字", "Session Breaks": "收盘时中断", "Add {0} To Watchlist": "添加{0}到自选", "Anchored Note": "锚点注释", "lipsLength_input": "lipsLength", "low": "低点", "roclen4_input": "roclen4", "November": "十一月", "Tehran": "亚洲/德黑兰", "Background Color": "背景颜色", "an hour": "1小时", "Right Axis": "右轴", "D_data_mode_delayed_streaming_letter": "D", "VI -_input": "VI -", "slowLength_input": "slowLength", "Click to set a point": "单击设置点", "January": "一月", "Indicators, Fundamentals, Economy and Add-ons": "技术指标", "delayed": "延时的", "Indicator Titles": "指标名称", "retrying": "重试", "Change area background": "修改区域背景", "Error": "错误", "Edit Position": "编辑持仓", "RVI_input": "RVI", "Awesome Oscillator_study": "动量震荡指标", "Recalculate On Every Tick": "每笔数据重新计算", "Left": "左边", "Objects Tree...": "管理设定...", "Source Code": "源代码", "Add Symbol": "增加商品", "Projection": "投影", "Track time": "追踪时间", "Enter a new chart layout name": "输入一个新的图表版面名称", "Signal Length_input": "Signal Length", "Properties": "属性", "Teeth Length_input": "齿距", "D_interval_short": "D", "Close": "关闭", "ParabolicSAR_input": "ParabolicSAR", "Log Scale_scale_menu": "对数刻度", "MACD_input": "MACD", "Do not show this message again": "不再显示此消息", "{0} P&L: {1}": "{0} 获利&止损: {1}", "Up Wave 3": "上涨波3", "Arrow Mark Left": "向左箭头", "Up Wave 5": "上涨波5", "Line - Close": "线 - 收盘价", "(O + H + L + C)/4": "(O+H+L+C)/4", "Confirm Inputs": "确认参数", "Open_line_tool_position": "未平仓", "Lagging Span_input": "Lagging Span", "Cross": "十字指针", "Mirrored": "垂直翻转", "Price": "价格", "Vancouver": "北美洲/温哥华", "Elliott Correction Wave (ABC)": "艾略特校正波浪(ABC)", "Error while trying to create snapshot.": "创建快照时出错", "Label Background": "标签背景色", "Templates": "模板", "Please report the issue or click Reconnect.": "请报告问题或点击重新连接", "1. Slide your finger to select location for first anchor
    2. Tap anywhere to place the first anchor": "1.拖动十字线定义第一点.
    2.点击任意位置确定第一个停止位置", "Signal Labels": "信号标签", "May": "五月", "Color 5_input": "颜色5", "Scale Price Chart Only": "只缩放价位图层", "Default": "系统默认", "auto_scale": "自动", "Background": "背景", "Up Color": "上涨颜色", "Apply Elliot Wave Intermediate": "应用艾略特中型波", "VWMA_input": "VWMA", "Lower Deviation_input": "Lower Deviation", "Save Interval": "保存周期", "Extend Lines Left": "左侧延长线", "Reverse": "反向", "Oops, something went wrong": "Oops,有错误发生", "Shapes_input": "形态", "Median": "中线", "Show Source Code": "显示源代码", "Remove": "移除", "len_input": "长度", "Arrow Mark Up": "向上箭头", "April": "四月", "log": "对数刻度", "Crosses_input": "交叉", "KST_input": "应用确定指标", "Sync drawing to all charts": "同步绘图到所有图表", "LowerLimit_input": "下限带", "Know Sure Thing_study": "应用确定指标", "Copy Chart Layout": "复制图表版面", "Compare...": "比较...", "1. Slide your finger to select location for next anchor
    2. Tap anywhere to place the next anchor": "1.拖动十字线定义第一点.
    2.点击任意位置确定第一个停止位置", "Compare or Add Symbol": "比较/增加商品", "Color": "颜色", "Aroon Up_input": "Aroon Up", "Singapore": "亚洲/新加坡", "Scales Lines": "刻度线", "Up Wave C": "上涨波C", "Show Distance": "显示距离", "Risk/Reward Ratio: {0}": "风险/回报比率: {0}", "Volume Oscillator_study": "成交量摆荡", "Williams Fractal_study": "威廉姆斯分型", "Merge Up": "向上合并", "Right Margin": "右边距", "Ellipse": "椭圆形", "Warsaw": "欧洲/华沙"} \ No newline at end of file +{"ticks_slippage ... ticks": "标记号", "Months_interval": "月", "Realtime": "实时", "Callout": "标注", "Sync to all charts": "同步到所有图表", "month": "月", "London": "伦敦", "roclen1_input": "变化速率长度1", "Unmerge Down": "取消向下合并", "Percents": "百分比", "Search Note": "搜索笔记", "Minor": "次要", "Do you really want to delete Chart Layout '{0}' ?": "确定删除图表排版'{0}'?", "Quotes are delayed by {0} min and updated every 30 seconds": "报价延时 {0} 分钟,每30秒更新一次", "Magnet Mode": "磁铁模式", "Grand Supercycle": "超级大周期", "OSC_input": "OSC", "Hide alert label line": "隐藏警报标签线", "Volume_study": "成交量(Volume)", "Lips_input": "嘴唇", "Show real prices on price scale (instead of Heikin-Ashi price)": "在价格坐标上显示实际价格(而不是Heikin-Ashi价格)", "Histogram": "直方图", "Base Line_input": "基准线", "Step": "阶梯", "Insert Study Template": "插入指标模板", "Fib Time Zone": "斐波那契时间周期", "SMALen2_input": "简单移动平均长度2", "Bollinger Bands_study": "布林带(Bollinger Bands)", "Nov": "11月", "Show/Hide": "显示/隐藏", "Upper_input": "上限", "exponential_input": "指数化", "Move Up": "上涨", "Symbol Info": "商品信息", "This indicator cannot be applied to another indicator": "该指标无法运用到其他指标上", "Scales Properties...": "坐标属性...", "Count_input": "计数", "Full Circles": "完整圆圈", "Ashkhabad": "阿什哈巴德", "OnBalanceVolume_input": "能量潮指标(OBV)", "Cross_chart_type": "十字图", "H_in_legend": "高=", "a day": "一天", "Pitchfork": "分叉线", "R_data_mode_replay_letter": "R", "Accumulation/Distribution_study": "累积/派发线(Accumulation/Distribution)", "Rate Of Change_study": "变化速率(Rate Of Change)", "Text Font": "字体", "in_dates": "共", "Clone": "克隆", "Color 7_input": "颜色7", "Chop Zone_study": "波动区间(Chop Zone)", "Bar #": "K线#", "Scales Properties": "坐标属性", "Trend-Based Fib Time": "斐波那契趋势时间", "Remove All Indicators": "移除所有指标", "Oscillator_input": "震动指数", "Last Modified": "最后修改", "yay Color 0_input": "yay 颜色 0", "Labels": "标签", "Chande Kroll Stop_study": "钱德克罗止损(Chande Kroll Stop)", "Hours_interval": "小时", "Allow up to": "最多允许", "Scale Right": "缩放右边", "Money Flow_study": "资金流量(Money Flow)", "siglen_input": "Sigma 长度", "Indicator Labels": "指标标签", "__specialSymbolOpen__Tomorrow at__specialSymbolClose__ __dayTime__": "__specialSymbolOpen__明日在__specialSymbolClose__ __dayTime__", "Hide All Drawing Tools": "隐藏所有绘图工具", "Toggle Percentage": "切换为百分比坐标", "Remove All Drawing Tools": "移除所有绘图工具", "Remove all line tools for ": "移除所有画线工具 ", "Linear Regression Curve_study": "线性回归曲线(Linear Regression Curve)", "Symbol_input": "商品代码", "Currency": "货币", "increment_input": "增量", "Compare or Add Symbol...": "对比或叠加品种...", "__specialSymbolOpen__Last__specialSymbolClose__ __dayName__ __specialSymbolOpen__at__specialSymbolClose__ __dayTime__": "__specialSymbolOpen__最后__specialSymbolClose__ __dayName__ __specialSymbolOpen__在__specialSymbolClose__ __dayTime__", "Save Chart Layout": "保存图表排版", "Number Of Line": "线条数量", "Label": "标签", "Post Market": "后市场", "second": "秒", "Change Hours To": "修改小时为", "smoothD_input": "平滑D", "Falling_input": "下降", "X_input": "X指", "Risk/Reward short": "空头风险/回报比", "UpperLimit_input": "上限带", "Donchian Channels_study": "唐奇安通道(Donchian Channels)", "Entry price:": "进场价格:", "Circles": "圆点图", "Head": "头", "Stop: {0} ({1}) {2}, Amount: {3}": "止损:{0} ({1}) {2}, 账户: {3}", "Mirrored": "镜像", "Ichimoku Cloud_study": "一目均衡图(Ichimoku Cloud)", "Signal smoothing_input": "信号平滑", "Use Upper Deviation_input": "使用上偏差", "Toggle Auto Scale": "切换为自动缩放", "Grid": "网格", "Triangle Down": "下降三角形", "Apply Elliot Wave Minor": "应用艾略特小型浪", "Slippage": "滑点", "Smoothing_input": "平滑", "Color 3_input": "颜色3", "Jaw Length_input": "下颚长度", "Almaty": "阿拉木图", "Inside": "内部", "Delete all drawing for this symbol": "删除此代码中的所有绘图", "Fundamentals": "基本面", "Keltner Channels_study": "肯特纳通道(Keltner Channels)", "Long Position": "多头持仓", "Bands style_input": "带样式", "Undo {0}": "撤销", "With Markers": "带标记", "Momentum_study": "动量指标(Momentum)", "MF_input": "MF", "Gann Box": "江恩箱", "Switch to the next chart": "跳转到下一张图表", "charts by TradingView": "TradingView的图表", "Fast length_input": "快线长度", "Apply Elliot Wave": "应用艾略特波浪", "Disjoint Angle": "不相交角", "Supermillennium": "超千年", "W_interval_short": "W", "Show Only Future Events": "只显示未来事件", "Log Scale": "对数坐标", "Zurich": "苏黎世", "Equality Line_input": "等量线", "Short_input": "短期", "Fib Wedge": "斐波那契楔形", "Line": "线形图", "Session": "时段", "Down fractals_input": "向下分形", "Fib Retracement": "斐波那契回撤", "smalen2_input": "简单移动平均长度2", "isCentered_input": "居中", "Border": "边框", "Klinger Oscillator_study": "克林格成交量摆动指标(Klinger Oscillator)", "Absolute": "绝对位置", "Tue": "周二", "Style": "样式", "Show Left Scale": "显示左侧坐标", "SMI Ergodic Indicator/Oscillator_study": "SMI 遍历性指标(SMI Ergodic Indicator/Oscillator)", "Aug": "8月", "Last available bar": "最后一根可用的K线", "Manage Drawings": "管理绘图", "Analyze Trade Setup": "分析交易设定", "No drawings yet": "尚未绘图", "SMI_input": "SMI", "Chande MO_input": "钱德动量摆动指标(Chande MO)", "jawLength_input": "下颚长度", "TRIX_study": "三重指数平滑移动平均线(TRIX)", "Show Bars Range": "显示K线区间", "RVGI_input": "RVGI", "Last edited ": "上次编辑 ", "signalLength_input": "信号长度", "%s ago_time_range": "%s 前", "Reset Settings": "重置设置", "PnF": "点数图", "Renko": "砖形图", "d_dates": "天", "Point & Figure": "点数图", "August": "8月", "Recalculate After Order filled": "订单成交后重新计算", "Source_compare": "来源", "Down bars": "下跌K线", "Correlation Coefficient_study": "相关系数(Correlation Coefficient)", "Delayed": "延迟的", "Bottom Labels": "底标签", "Text color": "文字颜色", "Levels": "水平位", "Length_input": "长度", "Short Length_input": "短期长度", "teethLength_input": "齿距", "Visible Range_study": "可视范围", "Hong Kong": "香港", "Text Alignment:": "文字对齐:", "Open {{symbol}} Text Note": "打开{{symbol}}文本说明", "October": "10月", "Lock All Drawing Tools": "锁定所有绘图工具", "Long_input": "长线", "Right End": "右端", "Show Symbol Last Value": "显示商品当前价格", "Head & Shoulders": "头肩形", "Do you really want to delete Study Template '{0}' ?": "确定删除学习模板'{0}'?", "Favorite Drawings Toolbar": "收藏绘图工具列", "Properties...": "属性...", "Reset Scale": "重置坐标", "MA Cross_study": "移动揉搓线(MA Cross)", "Trend Angle": "趋势线角度", "Snapshot": "快照", "Crosshair": "十字线", "Signal line period_input": "信号线期", "Timezone/Sessions Properties...": "时区/交易时段属性...", "Line Break": "新价线", "Quantity": "数量", "Price Volume Trend_study": "价量趋势指标(Price Volume Trend)", "Auto Scale": "自动缩放", "hour": "小时", "Delete chart layout": "删除图表排版", "Text": "内容", "F_data_mode_forbidden_letter": "F", "Risk/Reward long": "多头盈亏比", "Apr": "4月", "Long RoC Length_input": "长线变量长度", "Length3_input": "长度3", "+DI_input": "+DI", "Madrid": "马德里", "Use one color": "使用一种颜色", "Chart Properties": "图表属性", "No Overlapping Labels_scale_menu": "无重叠标签", "Exit Full Screen (ESC)": "退出全屏(ESC)", "MACD_study": "MACD", "Show Economic Events on Chart": "在图上显示财经事件", "Moving Average_study": "移动平均线(Moving Average)", "Show Wave": "显示波形", "Failure back color": "失败背景颜色", "Below Bar": "Bar下方", "Time Scale": "时间坐标", "

    Only D, W, M intervals are supported for this symbol/exchange. You will be automatically switched to a D interval. Intraday intervals are not available because of exchange policies.

    ": "

    此商品/交易仅支持日,周,月周期。您的图表将自动切换到日周期图。基于交易政策,我们无法提供日内周期资料。

    ", "Extend Left": "向左延伸", "Date Range": "日期范围", "Min Move": "最小移动", "Price format is invalid.": "价格格式无效", "Show Price": "显示价格", "Level_input": "等级", "Angles": "角度", "Hide Favorite Drawings Toolbar": "隐藏常用绘图工具栏", "Commodity Channel Index_study": "商品路径指标(Commodity Channel Index)", "Elder's Force Index_input": "艾达尔强力指数(Elder's FI)", "Gann Square": "江恩正方", "Phoenix": "菲尼克斯", "Format": "设置", "Color bars based on previous close": "K线颜色基于前一个收盘价", "Change band background": "变更带背景", "Target: {0} ({1}) {2}, Amount: {3}": "目标: {0} ({1}) {2}, 账户: {3}", "Zoom Out": "缩小", "This chart layout has a lot of objects and can't be published! Please remove some drawings and/or studies from this chart layout and try to publish it again.": "本图表版面上有太多对象,无法发表!请从图上移除一些内容然后再尝试发表。", "Anchored Text": "锚点文字", "Long length_input": "长线长度", "Edit {0} Alert...": "编辑{0}警报...", "Previous Close Price Line": "上一个收盘价格线", "Up Wave 5": "上涨浪5", "Qty: {0}": "仓量:{0}", "Heikin Ashi": "平均K线图", "Aroon_study": "阿隆指标(Aroon)", "show MA_input": "显示移动平均", "Industry": "行业", "Lead 1_input": "前置1", "Short Position": "空头持仓", "SMALen1_input": "简单移动平均长度1", "P_input": "P指", "Apply Default": "应用默认", "SMALen3_input": "简单移动平均长度3", "Average Directional Index_study": "平均趋向指数(Average Directional Index)", "Fr_day_of_week": "星期五", "Invite-only script. Contact the author for more information.": "仅限邀请的脚本。请联系作者了解更多详情。", "Curve": "曲线", "a year": "一年", "Target Color:": "目标颜色:", "Bars Pattern": "复制K线", "D_input": "D", "Font Size": "字体大小", "Create Vertical Line": "建立垂直线", "p_input": "P指", "Rotated Rectangle": "旋转矩形", "Chart layout name": "图表排版名称", "Fib Circles": "斐波那契圆环", "Apply Manual Decision Point": "应用手动决策点", "Dot": "圆点", "Target back color": "终点背景颜色", "All": "全部", "orders_up to ... orders": "订单", "Dot_hotkey": "点", "Lead 2_input": "前置2", "Save image": "保存图片", "Move Down": "下跌", "Triangle Up": "上升三角形", "Box Size": "箱体大小", "Navigation Buttons": "导览按钮", "Miniscule": "极小的", "Apply": "应用", "Down Wave 3": "下跌浪3", "Plots Background_study": "绘制背景", "Marketplace Add-ons": "市场附加", "Sine Line": "正弦线", "Fill": "填充", "%d day": "%d日", "Hide": "隐藏", "Toggle Maximize Chart": "切换为最大化图表", "Target text color": "终点文字颜色", "Scale Left": "缩放左边", "Elliott Wave Subminuette": "艾略特次微浪", "Down Wave C": "下跌浪C", "Countdown": "倒计时", "UO_input": "终极震荡指标(UO)", "Pyramiding": "金字塔式", "Source back color": "起点背景颜色", "Go to Date...": "前往日期...", "Sao Paulo": "圣保罗", "R_data_mode_realtime_letter": "R", "Extend Lines": "延长线", "Conversion Line_input": "转换线(Conversion Line)", "March": "3月", "Su_day_of_week": "星期日", "Exchange": "交易所", "My Scripts": "我的脚本", "Arcs": "弧形", "Regression Trend": "回归趋势", "Short RoC Length_input": "短期变量长度", "Fib Spiral": "斐波那契螺旋", "Double EMA_study": "双指数移动平均线(Double EMA)", "minute": "分钟", "All Indicators And Drawing Tools": "所有指标和绘图工具", "Indicator Last Value": "指标最后值", "Sync drawings to all charts": "同步绘图到所有图表", "Change Average HL value": "变化HL值平均", "Stop Color:": "止损颜色:", "Stay in Drawing Mode": "保持绘图模式", "Bottom Margin": "下边距", "Dubai": "迪拜", "Save Chart Layout saves not just some particular chart, it saves all charts for all symbols and intervals which you are modifying while working with this Layout": "保存图表排版,不只是保存几个特定的图表,同时也保存了您在使用此版面期间修改的所有商品和周期设定。", "Average True Range_study": "真实波动幅度均值(Average True Range)", "Max value_input": "最大值", "MA Length_input": "MA 长度", "Invite-Only Scripts": "仅限邀请的脚本", "in %s_time_range": "在%s", "Extend Bottom": "向下延伸", "sym_input": "系统", "DI Length_input": "DI长度", "Rome": "罗马", "Periods_input": "阶段", "Arrow": "箭头", "useTrueRange_input": "使用真实范围", "Basis_input": "底部", "Arrow Mark Down": "向下箭头", "lengthStoch_input": "Stoch长度", "Taipei": "台北", "Objects Tree": "工具树状图", "Remove from favorites": "从收藏中移除", "Show Symbol Previous Close Value": "显示商品前一收盘价", "Scale Series Only": "仅缩放数据", "Source text color": "起点文字颜色", "Simple": "简单", "Report a data issue": "报告数据问题", "Arnaud Legoux Moving Average_study": "阿诺勒古移动平均线(Arnaud Legoux Moving Average)", "Smoothed Moving Average_study": "平滑移动平均线(Smoothed Moving Average)", "Lower Band_input": "下限", "Verify Price for Limit Orders": "为限价单核对价格", "VI +_input": "VI +", "Line Width": "线宽", "Contracts": "合约", "Always Show Stats": "总是显示统计资料", "Down Wave 4": "下跌浪4", "ROCLen2_input": "变化速率长度2", "Simple ma(signal line)_input": "简单移动平均(信号线)", "Change Interval...": "变更周期...", "Public Library": "公共指标库", " Do you really want to delete Drawing Template '{0}' ?": " 确定删除绘图模板'{0}'?", "Sat": "星期六", "Left Shoulder": "左肩", "week": "周", "CRSI_study": "康纳相对强弱指指数(CRSI)", "Close message": "关闭讯息", "Jul": "7月", "Value_input": "值", "Show Drawings Toolbar": "显示绘图工具栏", "Chaikin Oscillator_study": "蔡金资金流量震荡指标(Chaikin Oscillator)", "Price Source": "价格源", "Market Open": "盘中", "Color Theme": "主题颜色", "Projection up bars": "预测上涨线", "Awesome Oscillator_study": "动量震荡指标(Awesome Oscillator)", "Bollinger Bands Width_input": "布林带宽度", "long_input": "长线", "Error occured while publishing": "发表观点时发生错误", "Fisher_input": "费舍尔", "Color 1_input": "颜色1", "Moving Average Weighted_study": "加权移动平均线(Moving Average Weighted)", "Save": "保存", "Type": "类型", "Wick": "烛芯", "Accumulative Swing Index_study": "振动升降指标(ASI)", "Load Chart Layout": "加载图表排版", "Show Values": "显示值", "Fib Speed Resistance Fan": "斐波那契速度阻力扇", "Bollinger Bands Width_study": "布林带宽度(Bollinger Bands Width)", "This chart layout has more than 1000 drawings, which is a lot! This may negatively affect performance, storage and publishing. We recommend to remove some drawings to avoid potential performance issues.": "此图表排版中有超过1000个绘图,太多了!可能对性能、存储和发表产生负面影响。我们建议删除一些绘图,以避免潜在的性能问题。", "Left End": "左端", "%d year": "%d年", "Always Visible": "总是显示", "S_data_mode_snapshot_letter": "S", "Flag": "旗形", "Elliott Wave Circle": "艾略特循环浪", "Earnings breaks": "盈余突破", "Change Minutes From": "变更分钟自", "Do not ask again": "不要再问", "Displacement_input": "移位", "smalen4_input": "简单移动平均长度4", "CCI_input": "CCI", "Upper Deviation_input": "上偏差", "(H + L)/2": "(最高价+最低价)/2", "XABCD Pattern": "XABCD 形态", "Schiff Pitchfork": "希夫分叉线", "Copied to clipboard": "复制到剪贴板", "hl2": "高低2", "Flipped": "翻转", "DEMA_input": "DEMA", "Move_input": "Move", "NV_input": "NV", "Choppiness Index_study": "波动指数(Choppiness Index)", "Study Template '{0}' already exists. Do you really want to replace it?": "指标模板{0}已经存在。确定替换?", "Merge Down": "向下合并", "Th_day_of_week": "周四", " per contract": " 每份合约", "Overlay the main chart": "显示于主图上", "Screen (No Scale)": "界面(无缩放)", "Delete": "删除", "Save Indicator Template As": "保存指标模板为", "Length MA_input": "MA长度", "percent_input": "百分比", "September": "9月", "{0} copy": "{0} 复制", "Avg HL in minticks": "最小刻度的高低平均价", "Accumulation/Distribution_input": "累积/派发指标(Accumulation/Distribution)", "Sync": "同步", "C_in_legend": "收=", "Weeks_interval": "周", "smoothK_input": "平滑K", "Percentage_scale_menu": "百分比坐标", "Change Extended Hours": "变更延长交易时段", "MOM_input": "MOM", "h_interval_short": "h", "Change Interval": "变更周期", "Change area background": "变更区块背景", "Modified Schiff": "调整希夫", "top": "上", "Adelaide": "阿德莱德", "Send Backward": "下移一层", "Mexico City": "墨西哥城", "TRIX_input": "三重指数平滑平均线(TRIX)", "Show Price Range": "显示价格区间", "Elliott Major Retracement": "艾略特主波浪回撤", "ASI_study": "振动升降指标(ASI)", "Notification": "通知", "Fri": "星期五", "just now": "刚刚", "Forecast": "预测值", "Fraction part is invalid.": "小数部分无效", "Connecting": "正在连接", "Ghost Feed": "模拟K线", "Signal_input": "信号", "Histogram_input": "直方图", "The Extended Trading Hours feature is available only for intraday charts": "延时交易时间功能仅适用于日图表", "Stop syncing": "停止同步", "open": "开盘", "StdDev_input": "标准差", "EMA Cross_study": "EMA交叉", "Conversion Line Periods_input": "转换线周期(Conversion Line Periods)", "Diamond": "钻石", "Brisbane": "布里斯班", "Monday": "星期一", "Add Symbol_compare_or_add_symbol_dialog": "叠加品种", "Williams %R_study": "威廉姆斯指标(Williams %R)", "Symbol": "交易品种", "a month": "一个月", "Precision": "精确度", "depth_input": "深度", "Go to": "前往到", "Please enter chart layout name": "请输入图表排版名称", "Mar": "3月", "VWAP_study": "成交量加权平均价(VWAP)", "Offset": "偏移", "Date": "日期", "Format...": "设置...", "__dayName__ __specialSymbolOpen__at__specialSymbolClose__ __dayTime__": "__dayName__ __specialSymbolOpen__在__specialSymbolClose__ __dayTime__", "Toggle Maximize Pane": "切换到最大化窗口", "Search": "搜索", "Zig Zag_study": "之字转向(Zig Zag)", "Actual": "公布值", "SUCCESS": "成功", "Long period_input": "长周期", "length_input": "长度", "roclen4_input": "变化速率长度4", "Price Line": "价格线", "Area With Breaks": "中断面积图", "Median_input": "中线", "Stop Level. Ticks:": "止损位.点数:", "Window Size_input": "视窗大小", "Economy & Symbols": "经济 & 商品品种", "Circle Lines": "圆形线圈", "Visual Order": "视觉次序", "__specialSymbolOpen__Yesterday at__specialSymbolClose__ __dayTime__": "__specialSymbolOpen__昨日在__specialSymbolClose__ __dayTime__", "Stop Background Color": "止损背景颜色", "1. Slide your finger to select location for first anchor
    2. Tap anywhere to place the first anchor": "1.请拖曳您的手指选择第一个游标的放置地点
    2.点击任何一处即可定位", "Sector": "产业", "powered by TradingView": "由TradingView提供", "Text:": "文字:", "Stochastic_study": "随机指数(Stochastic)", "Sep": "9月", "TEMA_input": "TEMA", "Apply WPT Up Wave": "应用WPT Up波", "Min Move 2": "最小移动2", "Extend Left End": "左端延伸", "Projection down bars": "预测下涨线", "Advance/Decline_study": "涨跌比(Advance/Decline)", "New York": "纽约", "Flag Mark": "旗标", "Drawings": "绘图", "Cancel": "取消", "Compare or Add Symbol": "对比或叠加品种", "Redo": "重做", "Hide Drawings Toolbar": "隐藏绘图工具栏", "Ultimate Oscillator_study": "终极波动指标(Ultimate Oscillator)", "Vert Grid Lines": "垂直网格线", "Growing_input": "增长", "Angle": "角度", "Plot_input": "描写", "Chicago": "芝加哥", "Color 8_input": "颜色8", "Indicators, Fundamentals, Economy and Add-ons": "指标、基本面、经济和加载项", "h_dates": "小时", "ROC Length_input": "ROC Length", "roclen3_input": "变化速率长度3", "Overbought_input": "超买", "Extend Top": "向上延伸", "Change Minutes To": "变更分钟为", "No study templates saved": "无已保存的学习模板", "Trend Line": "趋势线", "TimeZone": "时区", "Your chart is being saved, please wait a moment before you leave this page.": "您的图表正在保存中,敬请稍等一会再离开此页。", "Percentage": "百分比坐标", "Tu_day_of_week": "周二", "RSI Length_input": "RSI 天数长度", "Triangle": "三角形", "Line With Breaks": "中断线", "Period_input": "阶段", "Watermark": "水印", "Trigger_input": "触发", "SigLen_input": "Sigma 长度", "Extend Right": "向右延伸", "Color 2_input": "颜色2", "Show Prices": "显示价格", "Unlock": "解锁", "Copy": "复制", "high": "最高", "Arc": "弧形", "Edit Order": "编辑订单", "January": "1月", "Arrow Mark Right": "向右箭头", "Extend Alert Line": "延长警报线", "Background color 1": "背景颜色1", "RSI Source_input": "RSI 来源", "Close Position": "平仓", "Any Number": "任一数字", "Stop syncing drawing": "停止同步绘图", "Visible on Mouse Over": "鼠标移动时可见", "MA/EMA Cross_study": "MA/EMA交叉", "Thu": "周四", "Vortex Indicator_study": "旋涡指标(Vortex Indicator)", "view-only chart by {user}": "来自{user}的仅供查看图表", "ROCLen1_input": "变化速率长度1", "M_interval_short": "M", "Chaikin Oscillator_input": "蔡金震荡指标(Chaikin Oscillator)", "Price Levels": "价格位", "Show Splits": "显示拆分", "Zero Line_input": "零线", "Replay Mode": "回放模式", "__specialSymbolOpen__Today at__specialSymbolClose__ __dayTime__": "__specialSymbolOpen__今日在__specialSymbolClose__ __dayTime__", "Increment_input": "增量", "Days_interval": "日", "Show Right Scale": "显示右侧坐标", "Show Alert Labels": "显示警报标签", "Historical Volatility_study": "历史波动率(Historical Volatility)", "Lock": "锁定", "length14_input": "长度14", "High": "最高价", "Q_input": "Q指", "Date and Price Range": "日期和价格范围", "Polyline": "多边形", "Reconnect": "重新连结", "Lock/Unlock": "锁定/解锁", "HLC Bars": "HLC 线", "Base Level": "基准位", "Label Down": "向下标签", "Saturday": "星期六", "Symbol Last Value": "商品当前价格", "Above Bar": "列上", "Studies": "技术分析", "Color 0_input": "颜色0", "Add Symbol": "添加品种", "maximum_input": "最大", "Wed": "周三", "Paris": "巴黎", "D_data_mode_delayed_letter": "D", "Sigma_input": "Sigma", "VWMA_study": "成交量加权移动平均值(VWMA)", "fastLength_input": "快线长度", "Time Levels": "时间位", "Width": "线宽", "Sunday": "星期日", "Loading": "正在加载", "Template": "模板", "Use Lower Deviation_input": "使用下偏差", "Up Wave 3": "上涨浪3", "Parallel Channel": "平行通道", "Time Cycles": "时间周期", "Second fraction part is invalid.": "第二部分是无效的。", "Divisor_input": "因数", "Baseline": "基准线", "Down Wave 1 or A": "下跌浪1或A", "ROC_input": "变量", "Dec": "12月", "Ray": "射线", "Extend": "延伸", "length7_input": "长度7", "Bring Forward": "上移一层", "Bottom": "底部", "Berlin": "柏林", "Undo": "撤销", "Original": "原始", "Mon": "星期一", "Right Labels": "右标签", "Long Length_input": "长线长度", "True Strength Indicator_study": "真实强度指标(True Strength Indicator)", "%R_input": "%R", "There are no saved charts": "没有保存的图表", "Instrument is not allowed": "不允许使用仪器", "bars_margin": "根K线", "Decimal Places": "小数位", "Show Indicator Last Value": "显示最后的指标值", "Initial capital": "初始资金", "Show Angle": "显示角度", "Mass Index_study": "梅斯线(Mass Index)", "More features on tradingview.com": "tradingview.com上更多功能", "Objects Tree...": "工具树状图...", "Remove Drawing Tools & Indicators": "移除绘图工具和指标", "Length1_input": "长度1", "Always Invisible": "总是隐藏", "Circle": "圆", "Days": "日", "x_input": "X指", "Save As...": "保存为...", "Elliott Double Combo Wave (WXY)": "艾略特双重组合浪(WXY)", "Parabolic SAR_study": "抛物线转向指标(Parabolic SAR)", "Any Symbol": "任一代码", "Variance": "方差", "Stats Text Color": "文字颜色", "Minutes": "分钟", "Williams Alligator_study": "威廉姆斯鳄鱼线(Williams Alligator)", "Projection": "预测", "Custom color...": "自定义颜色...", "Jan": "1月", "Jaw_input": "下颚", "Right": "右", "Help": "帮助", "Coppock Curve_study": "估波曲线(Coppock Curve)", "Reversal Amount": "反转数量", "Reset Chart": "重置图表", "Marker Color": "马克笔颜色", "Fans": "扇形", "Left Axis": "左轴", "Open": "开盘价", "YES": "是", "longlen_input": "长线长度", "Moving Average Exponential_study": "指数移动平均线(Moving Average Exponential)", "Source border color": "起点边框颜色", "Redo {0}": "重做{0}", "Cypher Pattern": "Cypher 形态", "s_dates": "秒", "Caracas": "加拉加斯", "Area": "面积图", "Triangle Pattern": "三角形形态", "Balance of Power_study": "均势指标(Balance of Power)", "EOM_input": "EOM", "Shapes_input": "形态", "Oversold_input": "超卖", "Apply Manual Risk/Reward": "应用手动风险/回报", "Market Closed": "休市", "Sydney": "悉尼", "Indicators": "指标", "close": "收盘", "q_input": "Q指", "You are notified": "您会收到通知", "Font Icons": "字体图标", "%D_input": "%D", "Border Color": "边框颜色", "Offset_input": "偏移", "Risk": "风险", "Price Scale": "价格坐标", "HV_input": "HV", "Seconds": "秒", "Start_input": "开始", "Elliott Impulse Wave (12345)": "艾略特推动浪(12345)", "Hours": "小时", "Send to Back": "置于底层", "Color 4_input": "颜色4", "Los Angeles": "洛杉矶", "Prices": "价格", "Hollow Candles": "空心K线图", "July": "7月", "Create Horizontal Line": "创建水平线", "Minute": "分钟", "Cycle": "循环", "ADX Smoothing_input": "ADX平滑化", "One color for all lines": "所有直线一个颜色", "m_dates": "月", "Settings": "设置", "Candles": "K线图", "We_day_of_week": "我们", "Width (% of the Box)": "宽度(箱的%)", "%d minute": "%d 分钟", "Go to...": "前往到...", "Pip Size": "点值大小", "Wednesday": "周三", "This drawing is used in alert. If you remove the drawing, the alert will be also removed. Do you want to remove the drawing anyway?": "此图已用于一个警报中。如果移除此图,该警报将一并删除。确定要删除此图吗?", "Show Countdown": "显示倒计时", "Show alert label line": "显示警报标签线", "Down Wave 2 or B": "下跌浪2或B", "MA_input": "MA", "Length2_input": "长度2", "not authorized": "未经授权", "Session Volume_study": "时间段成交量", "Image URL": "图片URL", "Submicro": "亚微米级", "SMI Ergodic Oscillator_input": "SMI 遍历指标", "Show Objects Tree": "显示工具树状图", "Primary": "基本级", "Price:": "价格:", "Bring to Front": "置于顶层", "Brush": "笔刷", "Not Now": "不是现在", "Yes": "是", "C_data_mode_connecting_letter": "C", "SMALen4_input": "简单移动平均长度4", "Apply Default Drawing Template": "应用默认模板", "Compact": "紧凑", "Save As Default": "保存为默认", "Target border color": "终点边框颜色", "Invalid Symbol": "无效的代码", "Inside Pitchfork": "内部分叉线", "yay Color 1_input": "yay 颜色 1", "Quandl is a huge financial database that we have connected to TradingView. Most of its data is EOD and is not updated in real-time, however the information may be extremely useful for fundamental analysis.": "Quandl是一个巨大的金融数据资料库,我们已经将它连接到TradingView。它的大部分数据是EOD,非即时更新的,然而,这些资讯可能对基本面分析是非常有用的。", "Hide Marks On Bars": "隐藏Bar上的标记", "Cancel Order": "取消订单", "Kagi": "卡吉图", "WMA Length_input": "WMA 长度", "Show Dividends on Chart": "在图上显示股利", "Show Executions": "显示信号执行", "Borders": "边框", "Remove Indicators": "移除指标", "loading...": "载入中...", "Closed_line_tool_position": "已平仓", "Rectangle": "矩形", "Change Resolution": "变更解析度", "Indicator Arguments": "指标参数", "Symbol Description": "商品说明", "Chande Momentum Oscillator_study": "钱德动量摆动指标(Chande Momentum Oscillator)", "Degree": "级别", " per order": "每个订单_", "Supercycle": "超级周期", "Jun": "6月", "Least Squares Moving Average_study": "最小二乘移动平均线(Least Squares Moving Average)", "Change Variance value": "变更方差值", "powered by ": "本站由 ", "Source_input": "来源", "Change Seconds To": "变更秒为", "%K_input": "%K", "Scales Text": "坐标文字", "Toronto": "多伦多", "Please enter template name": "请输入模板名", "Symbol Name": "商品名称", "Tokyo": "东京", "Events Breaks": "突发事件", "San Salvador": "圣萨尔瓦多", "Months": "月", "Symbol Info...": "商品信息...", "Elliott Wave Minor": "艾略特小型浪", "Cross": "十字线", "Measure (Shift + Click on the chart)": "测量 (按住Shift键再点击图表)", "Override Min Tick": "显示最小刻度", "Show Positions": "显示持仓", "Dialog": "对话框", "Add To Text Notes": "添加到文本笔记", "Elliott Triple Combo Wave (WXYXZ)": "艾略特三重组合浪(WXYXZ)", "Multiplier_input": "多元", "Risk/Reward": "风险/报酬", "Base Line Periods_input": "基准线周期", "Show Dividends": "显示股利", "Relative Strength Index_study": "相对强弱指标(Relative Strength Index)", "Modified Schiff Pitchfork": "调整希夫分叉线", "Top Labels": "顶标签", "Show Earnings": "显示收益", "Elliott Triangle Wave (ABCDE)": "艾略特三角浪(ABCDE)", "Minuette": "微级", "Text Wrap": "自动换行", "Reverse Position": "平仓反向", "Elliott Minor Retracement": "艾略特小波浪回撤", "DPO_input": "DPO", "Pitchfan": "倾斜扇形", "Slash_hotkey": "斜线", "No symbols matched your criteria": "没有符合您搜索条件的品种代码.", "Icon": "图标", "lengthRSI_input": "RSI天数长度", "Tuesday": "星期二", "Teeth Length_input": "齿距", "Indicator_input": "指标", "Box size assignment method": "箱子尺寸分配方法", "Open Interval Dialog": "打开周期设置框", "Shanghai": "上海", "Athens": "雅典", "Fib Speed Resistance Arcs": "斐波那契速度阻力弧", "Content": "内容", "middle": "中", "Lock Cursor In Time": "锁定时间游标", "Intermediate": "中级", "Eraser": "橡皮擦", "Relative Vigor Index_study": "相对能量指数(Relative Vigor Index)", "Envelope_study": "包络线(Envelope)", "Symbol Labels": "商品标签", "Pre Market": "上市前", "Horizontal Line": "水平线", "O_in_legend": "开=", "Confirmation": "确认", "Lines:": "线条", "hlc3": "高低3", "Buenos Aires": "布宜诺斯艾利斯", "X Cross": "X 交叉", "Bangkok": "曼谷", "Profit Level. Ticks:": "止盈位.点数:", "Show Date/Time Range": "显示日期/时间区间", "Level {0}": "等级{0}", "Favorites": "收藏", "Horz Grid Lines": "水平网格线", "-DI_input": "-DI", "Price Range": "价格范围", "day": "日", "deviation_input": "偏离", "Account Size": "账户规模", "UTC": "世界统一时间", "Time Interval": "时间周期", "Success text color": "成功文字颜色", "ADX smoothing_input": "ADX平滑化", "%d hour": "%d 小时", "Order size": "订单数量", "Drawing Tools": "绘图工具", "Save Drawing Template As": "保存模板为", "Tokelau": "托克劳群岛", "ohlc4": "开高低收4", "Traditional": "传统", "Chaikin Money Flow_study": "蔡金资金流量(Chaikin Money Flow)", "Ease Of Movement_study": "简易波动指标(Ease Of Movement)", "Defaults": "系统预设", "Percent_input": "百分比", "Interval is not applicable": "周期不适用", "short_input": "短期", "Visual settings...": "视觉设置...", "RSI_input": "RSI", "Chatham Islands": "查塔姆群岛", "Detrended Price Oscillator_input": "区间震荡线", "Mo_day_of_week": "星期一", "center": "中", "Vertical Line": "垂直线", "Bogota": "波哥大", "Show Splits on Chart": "在图上显示拆分", "Sorry, the Copy Link button doesn't work in your browser. Please select the link and copy it manually.": "抱歉,复制链接的按钮在浏览器中无法使用。 请选择链接并手动复制。", "Levels Line": "水平线", "Events & Alerts": "事件 & 警报", "May": "5月", "ROCLen4_input": "变化速率长度4", "Aroon Down_input": "阿隆向下(Aroon Down)", "Add To Watchlist": "添加到自选表", "Total": "总计", "Price": "价格", "left": "左", "Lock scale": "锁定坐标", "Limit_input": "限价", "Change Days To": "变更日线为", "Price Oscillator_study": "价格摆动指标(Price Oscillator)", "smalen1_input": "简单移动平均长度1", "Drawing Template '{0}' already exists. Do you really want to replace it?": "绘图模板'{0}'已经存在。您真的要替换它?", "Show Middle Point": "显示中间点", "KST_input": "应用确定指标", "Extend Right End": "右端延伸", "Base currency": "基币", "Color based on previous close_input": "K线颜色基于前一个收盘价", "Price_input": "价格", "Gann Fan": "江恩角度线", "EOD": "当日有效", "Weeks": "周", "McGinley Dynamic_study": "金利动态指标(McGinley Dynamic)", "Relative Volatility Index_study": "相对离散指数(Relative Volatility Index)", "Source Code...": "原始码...", "PVT_input": "价量趋势指标", "Show Hidden Tools": "显示隐藏的工具", "Hull Moving Average_study": "船体移动平均线(Hull Moving Average)", "Symbol Prev. Close Value": "商品前一收盘价", "Istanbul": "伊斯坦布尔", "{0} chart by TradingView": "TradingView的图表{0}", "Right Shoulder": "右肩", "Remove Drawing Tools": "移除绘图工具", "Friday": "星期五", "Zero_input": "零", "Company Comparison": "对比商品代码", "Stochastic Length_input": "随机指标长度", "mult_input": "多元", "URL cannot be received": "无法接收URL", "Success back color": "成功背景颜色", "E_data_mode_end_of_day_letter": "E", "Trend-Based Fib Extension": "斐波那契趋势扩展", "Top": "顶部", "Double Curve": "双曲线", "Stochastic RSI_study": "随机相对强弱指数(Stoch RSI)", "Oops!": "哎呀!", "Horizontal Ray": "水平射线", "smalen3_input": "简单移动平均长度3", "Ok": "确认", "Script Editor...": "脚本编辑器...", "Are you sure?": "确定?", "Trades on Chart": "图表上的交易", "Listed Exchange": "上市交易所", "Error:": "错误:", "Fullscreen mode": "全屏模式", "Add Text Note For {0}": "为{0}添加文本笔记", "K_input": "K", "Do you really want to delete Drawing Template '{0}' ?": "确定删除绘图模板'{0}'?", "ROCLen3_input": "变化速率长度3", "Micro": "微", "Text Color": "文字颜色", "Rename Chart Layout": "重命名图表排版", "Built-ins": "内嵌指标", "Background color 2": "背景颜色2", "Drawings Toolbar": "绘图工具栏", "Moving Average Channel_study": "移动平均线通道(Moving Average Channel)", "New Zealand": "新西兰", "CHOP_input": "CHOP", "Apply Defaults": "应用默认", "% of equity": "% 权益", "Extended Alert Line": "警报线", "Note": "注释", "OK": "确认", "like": "个赞", "Show": "显示", "{0} bars": "{0}根K线", "Lower_input": "更低点", "Created ": "已建立 ", "Warning": "警告", "Elder's Force Index_study": "艾达尔强力指数(Elder's Force Index)", "Show Earnings on Chart": "在图上显示收益", "ATR_input": "ATR", "Low": "最低价", "Bollinger Bands %B_study": "布林带 %B(Bollinger Bands %B)", "Time Zone": "时区", "right": "右", "%d month": "%d 个月", "Wrong value": "错误值", "Upper Band_input": "上限", "Sun": "星期日", "Rename...": "重命名...", "start_input": "开始", "No indicators matched your criteria.": "没有符合您搜索条件的指标.", "Commission": "手续费", "Down Color": "下跌颜色", "Short length_input": "短期长度", "Kolkata": "加尔各答", "Submillennium": "子千年", "Technical Analysis": "技术分析", "Show Text": "显示文字", "Channel": "通道", "FXCM CFD data is available only to FXCM account holders": "FXCM CFD数据仅供拥有FXCM账户者使用", "Lagging Span 2 Periods_input": "迟行带2个时期", "Connecting Line": "连接线", "Seoul": "首尔", "bottom": "下", "Teeth_input": "牙齿", "Sig_input": "Sig", "Open Manage Drawings": "打开绘图管理", "Save New Chart Layout": "保存新的图表版面", "Fib Channel": "斐波那契通道", "Save Drawing Template As...": "保存模板为...", "Minutes_interval": "分钟", "Up Wave 2 or B": "上涨浪2或B", "Columns": "柱状图", "Directional Movement_study": "动向指标(Directional Movement)", "roclen2_input": "变化速率长度2", "Apply WPT Down Wave": "应用WPT Down波", "Not applicable": "不适用", "Bollinger Bands %B_input": "布林带 %B", "Default": "系统预设", "Singapore": "新加坡", "Template name": "模板名称", "Indicator Values": "指标值", "Lips Length_input": "嘴唇长度", "Toggle Log Scale": "切换为对数坐标", "L_in_legend": "低=", "Remove custom interval": "移除自定区间", "shortlen_input": "短期长度", "Quotes are delayed by {0} min": "报价延时 {0} 分钟", "Hide Events on Chart": "隐藏图中的事件", "Cash": "现金", "Profit Background Color": "利润背景颜色", "Bar's Style": "图表样式", "Exponential_input": "指数化", "Down Wave 5": "下跌浪5", "Previous": "上一个", "Stay In Drawing Mode": "保持绘图模式", "Comment": "评论", "Connors RSI_study": "康纳相对强弱指指数(CRSI)", "Bars": "美国线", "Show Labels": "显示标签", "Flat Top/Bottom": "平滑顶/底", "Symbol Type": "品种类型", "December": "12月", "Lock drawings": "锁定绘图", "Border color": "边框颜色", "Change Seconds From": "变更秒自", "Left Labels": "左标签", "Insert Indicator...": "插入指标...", "ADR_B_input": "ADR_B", "Paste %s": "粘贴%s", "Change Symbol...": "变更代码...", "Timezone": "时区", "Invite-only script. You have been granted access.": "仅限邀请的脚本。您已被授予访问权限。", "Color 6_input": "颜色6", "Oct": "10月", "ATR Length": "平均真实波幅长度", "{0} financials by TradingView": "{0}财务资料由TradingView提供", "Extend Lines Left": "左侧延长线", "Feb": "2月", "Transparency": "透明度", "No": "否", "June": "6月", "Cyclic Lines": "循环线", "length28_input": "长度28", "ABCD Pattern": "ABCD 形态", "When selecting this checkbox the study template will set \"__interval__\" interval on a chart": "勾选此选项,研究范本将设定图表周期为\"__interval__\"", "Add": "添加", "Scale": "坐标", "Millennium": "一千年", "On Balance Volume_study": "能量潮指标(On Balance Volume)", "Apply Indicator on {0} ...": "在{0}..上使用指标", "NEW": "新建", "Chart Layout Name": "图表排版名称", "Up bars": "上涨k线", "Hull MA_input": "Hull MA", "Schiff": "希夫", "Lock Scale": "锁定坐标", "distance: {0}": "距离: {0}", "Extended": "延长线", "Square": "方形", "Three Drives Pattern": "三推动形态", "NO": "否", "Top Margin": "上边距", "Up fractals_input": "向上分形", "Insert Drawing Tool": "插入绘图工具", "OHLC Values": "开高低收", "Correlation_input": "相关系数", "Session Breaks": "收盘时中断", "Add {0} To Watchlist": "添加{0}到自选表", "Anchored Note": "锚点注释", "lipsLength_input": "唇长", "low": "最低", "Apply Indicator on {0}": "在{0}上使用指标", "UpDown Length_input": "UpDown Length", "Price Label": "价格标签", "November": "11月", "Tehran": "德黑兰", "Balloon": "泡泡注释", "Track time": "追踪时间", "Background Color": "背景颜色", "an hour": "1小时", "Right Axis": "右轴", "D_data_mode_delayed_streaming_letter": "D", "VI -_input": "VI -", "slowLength_input": "慢线长度", "Click to set a point": "点击以设定", "Save Indicator Template As...": "保存指标模板为...", "Arrow Up": "向上箭头", "Indicator Titles": "指标名称", "Failure text color": "失败文字颜色", "Sa_day_of_week": "周六", "Net Volume_study": "净成交量(Net Volume)", "Error": "错误", "Edit Position": "编辑持仓", "RVI_input": "RVI", "Centered_input": "居中", "Recalculate On Every Tick": "每笔数据重新计算", "Left": "左", "Simple ma(oscillator)_input": "简单移动平均(振荡器)", "Compare": "对比", "Fisher Transform_study": "费舍尔转换(Fisher Transform)", "Show Orders": "显示订单", "Zoom In": "放大", "Length EMA_input": "EMA长度", "Enter a new chart layout name": "输入新图表排版名称", "Signal Length_input": "信号长度", "FAILURE": "失败", "Point Value": "点值", "D_interval_short": "D", "MA with EMA Cross_study": "MA与EAM交叉", "Label Up": "向上标签", "Price Channel_study": "价格通道(Price Channel)", "Close": "收盘价", "ParabolicSAR_input": "抛物线转向指标(PSAR)", "Log Scale_scale_menu": "对数坐标", "MACD_input": "MACD", "Do not show this message again": "不再显示此消息", "{0} P&L: {1}": "{0} 盈利&亏损: {1}", "No Overlapping Labels": "无重叠标签", "Arrow Mark Left": "向左箭头", "Slow length_input": "慢线长度", "Up Wave 4": "上涨浪4", "Confirm Inputs": "确认参数", "Open_line_tool_position": "开仓", "Lagging Span_input": "迟行带", "Subminuette": "次微级", "Thursday": "周四", "Arrow Down": "向下箭头", "Vancouver": "温哥华", "Triple EMA_study": "三重指数平滑平均线(Triple EMA)", "Elliott Correction Wave (ABC)": "艾略特调整浪(ABC)", "Error while trying to create snapshot.": "建立快照时发生错误。", "Label Background": "标签背景", "Templates": "模板", "Please report the issue or click Reconnect.": "请回报问题或点击重新连结", "Normal": "正常", "Signal Labels": "信号标签", "Delete Text Note": "删除文字笔记", "compiling...": "编译中...", "Detrended Price Oscillator_study": "非趋势价格摆动指标(Detrended Price Oscillator)", "Color 5_input": "颜色5", "Fixed Range_study": "固定范围", "Up Wave 1 or A": "上涨浪1或A", "Scale Price Chart Only": "仅缩放价格图表", "Unmerge Up": "取消向上合并", "auto_scale": "auto", "Short period_input": "短周期", "Background": "背景", "Study Templates": "指标模板", "Up Color": "上涨颜色", "Apply Elliot Wave Intermediate": "应用艾略特中型浪", "VWMA_input": "VWMA", "Lower Deviation_input": "下偏差", "Save Interval": "保存周期", "February": "2月", "Reverse": "反向", "Oops, something went wrong": "哎呀,有错误发生", "Add to favorites": "加入收藏", "Median": "中线", "ADX_input": "ADX", "Remove": "移除", "len_input": "长度", "Arrow Mark Up": "向上箭头", "April": "4月", "Active Symbol": "活跃品种代码", "Extended Hours": "延长时间", "Crosses_input": "交叉", "Middle_input": "中间", "Read our blog for more info!": "获得更多信息请查阅我们的博客!", "Sync drawing to all charts": "同步绘图到所有图表", "LowerLimit_input": "下限带", "Know Sure Thing_study": "加权总和变动率(Know Sure Thing)", "Copy Chart Layout": "复制图表排版", "Compare...": "比较...", "1. Slide your finger to select location for next anchor
    2. Tap anywhere to place the next anchor": "1.请拖曳您的手指选择下一个游标的放置地点
    2.点击任何一处即可定位", "Text Notes are available only on chart page. Please open a chart and then try again.": "文本笔记仅能在图表页面上使用。请打开图表再试一次。", "Color": "颜色", "Aroon Up_input": "阿隆向上(Aroon Up)", "Apply Elliot Wave Major": "应用艾略特大型浪", "Scales Lines": "坐标线", "Type the interval number for munute charts (i.e. 5 if it is going to be a five minute chart). Or number plus letter for H (Hourly), D (Daily), W (Weekly), M (Monthly) intervals (i.e. D or 2H)": "输入分钟图表的周期数(若为5分钟图表则输入5)。 或数字加字母H(小时),D(日),W(周),M(月)周期(比如D或2H)", "Ellipse": "椭圆形", "Up Wave C": "上涨浪C", "Show Distance": "显示距离", "Risk/Reward Ratio: {0}": "盈亏比: {0}", "Restore Size": "还原尺寸", "Volume Oscillator_study": "成交量摆动指标(Volume Oscillator)", "Honolulu": "檀香山", "Williams Fractal_study": "威廉姆斯分形指标(Williams Fractal)", "Merge Up": "向上合并", "Right Margin": "右边距", "Moscow": "莫斯科", "Warsaw": "华沙"} \ No newline at end of file diff --git a/charting_library/static/localization/translations/zh_TW.json b/charting_library/static/localization/translations/zh_TW.json index 6c874ba2..4c972e9f 100644 --- a/charting_library/static/localization/translations/zh_TW.json +++ b/charting_library/static/localization/translations/zh_TW.json @@ -1 +1 @@ -{"ticks_slippage ... ticks": "ticks", "Months_interval": "Months", "Percent_input": "Percent", "Callout": "標註", "month": "月", "London": "歐洲/倫敦", "roclen1_input": "roclen1", "Minor": "主要", "Top Margin": "上邊距", "Magnet Mode": "磁鐵模式", "OSC_input": "OSC", "Volume_study": "成交量", "Lips_input": "Lips", "Histogram": "直方圖", "Base Line_input": "Base Line", "Step": "階梯", "Fib Time Zone": "費波南茲係數", "SMALen2_input": "SMALen2", "Bollinger Bands_study": "包寧傑指標(BB)", "Nov": "十一月", "Show/Hide": "顯示/隱藏", "Upper_input": "Upper", "Sig_input": "Sig", "Move Up": "向上移動", "Gann Square": "方形甘氏線", "Count_input": "Count", "Anchored Text": "錨點文字", "SMALen1_input": "SMALen1", "Cross_chart_type": "交叉圖", "Target Color:": "終點的顏色:", "Pitchfork": "基本蝴蝶指標", "Normal": "一般", "Accumulation/Distribution_study": "累積/派發線(Accum/Dist)", "Rate Of Change_study": "變動率指標[ROC]", "in_dates": "總天數", "Color 7_input": "Color 7", "Chop Zone_study": "Chop Zone", "Scales Properties": "刻度屬性", "Trend-Based Fib Time": "趨勢費波南茲係數", "Remove All Indicators": "移除所有技術指標", "Oscillator_input": "Oscillator", "Last Modified": "最後修改日期", "yay Color 0_input": "yay Color 0", "Labels": "標籤", "Chande Kroll Stop_study": "錢德克羅止損(Chande Kroll Stop)", "Hours_interval": "Hours", "Scale Right": "右邊縮放", "Bollinger Bands %B_input": "Bollinger Bands %B", "siglen_input": "siglen", "DEMA_input": "DEMA", "Toggle Percentage": "切換為百分比", "Remove All Drawing Tools": "移除所有繪圖工具", "Linear Regression Curve_study": "Linear Regression Curve", "Symbol_input": "Symbol", "Upper Deviation_input": "Upper Deviation", "Rename Chart Layout": "圖表版型重命名", "Label": "標籤", "second": "seconds", "smoothD_input": "smoothD", "Falling_input": "Falling", "Percentage": "百分比", "Entry price:": "輸入價格:", "RSI Source_input": "RSI Source", "Ichimoku Cloud_study": "一目均衡表(Ichimoku)", "Toggle Log Scale": "切換為對數縮放", "Apply Elliot Wave Major": "套用艾略特基本波", "Grid": "格線", "Mass Index_study": "梅斯線指標(MASS)", "Up Wave 1 or A": "上升波 1 或 A", "Smoothing_input": "Smoothing", "Color 3_input": "Color 3", "Jaw Length_input": "Jaw Length", "Quotes are delayed by 10 min and updated every 30 seconds": "報價延遲10分鐘,每30秒更新一次", "Keltner Channels_study": "肯特納通道(KC)", "Long Position": "做多部位", "Bands style_input": "Bands style", "Undo {0}": "復原", "With Markers": "與標記", "Momentum_study": "Momentum", "MF_input": "MF", "Gann Box": "箱型甘氏線", "Long length_input": "Long length", "Apply Elliot Wave": "運用艾略特波浪", "Disjoint Angle": "不相交角", "W_interval_short": "W", "Log Scale": "對數縮放", "Bar's Style": "K線圖樣式", "Equality Line_input": "Equality Line", "Short_input": "Short", "Fib Wedge": "楔形黃金分割率", "Line": "線形圖", "Down fractals_input": "Down fractals", "Fib Retracement": "費波南茲回測", "smalen2_input": "smalen2", "isCentered_input": "isCentered", "Border": "邊框", "Klinger Oscillator_study": "克林格成交量擺動指標(Klinger Osc)", "Style": "樣式", "SMI Ergodic Indicator/Oscillator_study": "SMI Ergodic Indicator/Oscillator", "Aug": "八月", "Manage Drawings": "管理繪圖工具", "Analyze Trade Setup": "分析交易設定", "No drawings yet": "尚未繪圖", "Chande MO_input": "Chande MO", "jawLength_input": "jawLength", "TRIX_study": "三重指數平均指標(TRIX)", "MACD_study": "MACD", "RVGI_input": "RVGI", "signalLength_input": "signalLength", "Middle_input": "Middle", "Renko": "Renko圖", "d_dates": "日", "Point & Figure": "OX圖", "%s ago_time_range": "%s ago", "Source_compare": "來源", "Correlation Coefficient_study": "相關係數", "Bottom Labels": "下標籤", "Text color": "文字顏色", "Levels": "等級", "Short Length_input": "Short Length", "teethLength_input": "teethLength", "Failure text color": "失敗時文字顏色", "Hong Kong": "亞洲/香港", "FAILURE": "失敗", "Subminuette": "次微浪", "Lock All Drawing Tools": "鎖定所有繪圖工具", "Target border color": "終點的邊框顏色", "Right End": "右端", "Head & Shoulders": "頭肩頂", "Favorite Drawings Toolbar": "最愛的繪圖工具列", "Properties...": "屬性...", "MA Cross_study": "均線交叉線(MA Cross)", "Trend Angle": "趨勢角度", "Crosshair": "十字交錯圖", "Signal line period_input": "Signal line period", "Q_input": "Q", "Line Break": "新三價線", "Quantity": "數量", "Price Volume Trend_study": "Price Volume Trend", "Auto Scale": "自動縮放", "hour": "hours", "Scales": "比例", "Text": "文字", "F_data_mode_forbidden_letter": "F", "Risk/Reward long": "長期風險/回報", "Long RoC Length_input": "Long RoC Length", "Length3_input": "Length3", "+DI_input": "+DI", "Madrid": "歐洲/馬德里", "Show Bars Range": "顯示長條圖區間", "Down Wave 2 or B": "下降波 2 或 B", "Moving Average_study": "移動平均線(MA)", "Zoom In": "放大", "Failure back color": "失敗時背景顏色", "Time Scale": "時間軸", "Extend Left": "向左延長", "Date Range": "日期範圍", "Show Price": "顯示價位", "Level_input": "Level", "Commodity Channel Index_study": "順勢指標(CCI)", "Elder's Force Index_input": "Elder's Force Index", "Scales Properties...": "刻度屬性設定...", "Format": "格式", "Color bars based on previous close": "前次關閉時使用的調色", "Change band background": "改變區間帶背景", "Text:": "文字:", "Aroon_study": "阿隆指標(Aroon)", "show MA_input": "show MA", "h_dates": "小時", "Short Position": "做空部位", "Change Interval...": "改變區間", "SMALen3_input": "SMALen3", "Average Directional Index_study": "Average Directional Index", "Fr_day_of_week": "Fr", "H_in_legend": "最高", "Bars Pattern": "長條圖", "D_input": "D", "Right Labels": "右標籤", "Change Interval": "改變區間", "p_input": "p", "Chart layout name": "圖表布置名稱", "Fib Circles": "圓周黃金分割率", "Apply Manual Decision Point": "套用手動決策點", "Dot": "圓點", "Target back color": "終點的背景顏色", "orders_up to ... orders": "orders", "Lead 2_input": "Lead 2", "Save image": "儲存圖檔", "Fundamentals": "基本面資訊", "Vortex Indicator_study": "Vortex Indicator", "Apply": "應用", "Show Countdown": "顯示倒數計時", "%d day": "%d days", "Hide": "隱藏", "Toggle Maximize Chart": "最大化圖表切換", "Target text color": "終點的文字顏色", "Scale Left": "左邊縮放", "Elliott Wave Subminuette": "艾略特次微波", "Down Wave C": "下降波 C", "Jan": "一月", "Source back color": "起點的背景顏色", "Sao Paulo": "聖保羅", "Oct": "十月", "Apply Elliot Wave Minor": "套用艾略特小型波", "Inputs": "輸入", "Conversion Line_input": "Conversion Line", "Su_day_of_week": "Su", "Up fractals_input": "Up fractals", "Regression Trend": "迴歸趨勢", "Symbol Description": "商品描述", "Double EMA_study": "Double EMA", "minute": "minutes", "Price Oscillator_study": "價格擺動指標(PPO)", "Stop Color:": "停損時的顏色:", "Stay in Drawing Mode": "停留在繪圖模式", "Bottom Margin": "下邊距", "Average True Range_study": "真實波幅指標(ATR)", "Max value_input": "Max value", "MA Length_input": "MA Length", "Time Interval": "時間區間", "UpperLimit_input": "UpperLimit", "sym_input": "sym", "DI Length_input": "DI Length", "Extend Lines": "延長線條", "SMI_input": "SMI", "Arrow": "箭頭", "Basis_input": "Basis", "Arrow Mark Down": "下箭頭", "lengthStoch_input": "lengthStoch", "Taipei": "亞洲/台北", "Remove from favorites": "從偏好中移除", "Copy": "複製", "Scale Series Only": "只縮放數據", "Simple": "簡單", "Arnaud Legoux Moving Average_study": "Arnaud Legoux均線(ALMA)", "Technical Analysis": "技術分析", "Lower Band_input": "Lower Band", "VI +_input": "VI +", "Lead 1_input": "Lead 1", "Always Show Stats": "始終顯示統計值", "Down Wave 4": "下降波 4", "Down Wave 5": "下降波 5", "Simple ma(signal line)_input": "Simple ma(signal line)", "Color 6_input": "Color 6", "Public Library": "公用程式庫", "Down Wave 3": "下降波 3", "long_input": "long", "Chaikin Oscillator_study": "蔡金擺動指標(Chaikin Osc)", "Balloon": "泡泡", "Color Theme": "色彩主題", "Centered_input": "Centered", "Bollinger Bands Width_input": "Bollinger Bands Width", "Fib Speed Resistance Arcs": "半圓周黃金分割率", "Price Label": "價位標籤", "Lock/Unlock": "鎖定/解鎖", "Color 1_input": "Color 1", "Moving Average Weighted_study": "Moving Average Weighted", "Save": "儲存", "Type": "類型", "Chart Layout Name": "圖表布置名稱", "Short period_input": "Short period", "Load Chart Layout": "載入圖表版型", "Fib Speed Resistance Fan": "扇形黃金分割率", "Left End": "左端", "Volume Oscillator_study": "成交量擺動指標(Volume Osc)", "S_data_mode_snapshot_letter": "S", "post-market": "盤後", "Elliott Wave Circle": "艾略特圓形波", "Drawing Tools": "繪圖工具", "smalen4_input": "smalen4", "CCI_input": "CCI", "Unmerge Up": "取消向上合併", "increment_input": "increment", "(H + L)/2": "(最高+最低)/2", "XABCD Pattern": "XABCD 蝴蝶", "Schiff Pitchfork": "希夫蝴蝶指標", "Flipped": "翻轉", "NV_input": "NV", "Choppiness Index_study": "平滑指數(CHOP)", "Merge Down": "向下合併", "Th_day_of_week": "Th", "eod delayed": "盤後延遲數據", "Delete": "刪除", "in %s_time_range": "in %s", "percent_input": "percent", "Apr": "四月", "Length_input": "Length", "Median_input": "Median", "Accumulation/Distribution_input": "Accumulation/Distribution", "C_in_legend": "收盤", "Weeks_interval": "Weeks", "smoothK_input": "smoothK", "Percentage_scale_menu": "百分比比例選單", "Font Size": "字型大小", "MOM_input": "MOM", "h_interval_short": "h", "Rotated Rectangle": "旋轉矩形", "Modified Schiff": "改良式希夫", "top": "頂端", "Send Backward": "下移一層", "TRIX_input": "TRIX", "OHLC Values": "開高低收", "Elliott Major Retracement": "艾略特主波浪回測", "Periods_input": "Periods", "Forecast": "預測", "Histogram_input": "Histogram", "The Extended Trading Hours feature is available only for intraday charts": "延長交易時段功能僅於當日走勢圖提供", "StdDev_input": "StdDev", "Relative Strength Index_study": "相對強弱指數(RSI)", "My Scripts": "我的腳本", "-DI_input": "-DI", "short_input": "short", "Symbol": "商品", "Precision": "精確度", "Please enter chart layout name": "請輸入圖表版型名稱", "Offset": "位移", "Date": "日期", "Format...": "格式...", "Toggle Auto Scale": "切換為自動縮放", "Search": "搜尋", "Zig Zag_study": "峰谷", "Actual": "實際", "SUCCESS": "成功", "Detrended Price Oscillator_input": "Detrended Price Oscillator", "{0} copy": "{0} 複製", "length_input": "length", "Price Line": "價格標線", "Area With Breaks": "山形圖(含休市日)", "Zoom Out": "縮小", "Stop Level. Ticks:": "停損時的等級刻度:", "Jul": "七月", "Visual Order": "顯示順序", "Stop Background Color": "停損時背景顏色", "Slow length_input": "Slow length", "Conversion Line Periods_input": "Conversion Line Periods", "Stochastic_study": "隨機指標(STOCH)", "Marker Color": "標誌顏色", "TEMA_input": "TEMA", "Apply WPT Up Wave": "套用 WPT 上升波", "Directional Movement_study": "動向指標[ADX]", "Extend Left End": "向左延長至左端", "Advance/Decline_study": "Advance/Decline", "New York": "北美洲/紐約", "Flag Mark": "旗標", "Drawings": "繪圖", "Fast length_input": "Fast length", "Cancel": "取消", "Bar #": "長條 #", "Redo": "重做", "Hide Drawings Toolbar": "隱藏繪圖工具列", "Ultimate Oscillator_study": "Ultimate Oscillator", "Growing_input": "Growing", "Angle": "角度", "Plot_input": "Plot", "Chicago": "北美洲/芝加哥", "Color 8_input": "Color 8", "Indicators, Fundamentals, Economy and Add-ons": "技術指標", "Bollinger Bands Width_study": "包寧傑帶狀指標(BBW)", "roclen3_input": "roclen3", "Overbought_input": "Overbought", "DPO_input": "DPO", "No study templates saved": "無已存研究模板", "Trend Line": "趨勢線", "TimeZone": "時區", "Risk/Reward short": "短期風險/回報", "Price Range": "價位區間", "Extended Hours": "延長交易時間", "Triangle": "三角形", "Line With Breaks": "線形圖(含休市日)", "Period_input": "Period", "Watermark": "浮水印", "Trigger_input": "Trigger", "SigLen_input": "SigLen", "Clone": "克隆", "Color 2_input": "Color 2", "Show Prices": "顯示價位", "Graphics": "圖形", "Arrow Mark Right": "右箭圖", "Background color 2": "背景顏色 #2", "Background color 1": "背景顏色 #1", "Circles": "圓形圖", "McGinley Dynamic_study": "McGinley Dynamic", "Williams Alligator_study": "鱷魚線(Alligator)", "ROCLen1_input": "ROCLen1", "Border Color": "邊框顏色", "M_interval_short": "M", "Change Symbol...": "更換商品代碼...", "Price Levels": "價位等級", "Source text color": "起點的文字顏色", "Zero Line_input": "Zero Line", "Increment_input": "Increment", "Days_interval": "Days", "Net Volume_study": "淨交易量(NetVol)", "Show Alert Labels": "顯示警示標籤", "m_dates": "月", "Lock": "鎖定", "length14_input": "length14", "retrying": "重試", "High": "最高", "Polyline": "多邊形", "Add to favorites": "增加至偏好中", "Symbol Last Value": "商品最近價", "Color 0_input": "Color 0", "maximum_input": "maximum", "Paris": "歐洲/巴黎", "D_data_mode_delayed_letter": "D", "Sigma_input": "Sigma", "Coordinates": "座標", "fastLength_input": "fastLength", "Width": "寬度", "Historical Volatility_study": "歷史波動率", "Compare or Add Symbol...": "比較/新增商品...", "Parallel Channel": "併行通道", "Divisor_input": "Divisor", "Down Wave 1 or A": "下降波 1 或 A", "Dec": "十二月", "Extend": "延伸", "length7_input": "length7", "Send to Back": "移至底層", "Undo": "復原", "Window Size_input": "Window Size", "Reset Scale": "重設比例", "Long Length_input": "Long Length", "%R_input": "%R", "Chart Properties": "圖表屬性", "bars_margin": "根", "Show Angle": "顯示角度", "Indicator Last Value": "指標最近值", "smalen3_input": "smalen3", "Length1_input": "Length1", "x_input": "x", "Save As...": "儲存為...", "Tehran": "德黑蘭", "Parabolic SAR_study": "停損點轉向指標(SAR)", "Fisher Transform_study": "費雪轉換", "Hollow Candles": "空心蠟燭線", "UO_input": "UO", "Stats Text Color": "統計值文字顏色", "Short RoC Length_input": "Short RoC Length", "Jaw_input": "Jaw", "Help": "協助", "Coppock Curve_study": "估波指標(Coppock Curve)", "Reset Chart": "重設圖表", "Sep": "九月", "YES": "是", "longlen_input": "longlen", "Moving Average Exponential_study": "指數移動平均指標(EMA)", "Source border color": "起點的邊框顏色", "Redo {0}": "重做 {0}", "s_dates": "s", "Move Down": "向下移動", "Area": "山形圖", "invalid symbol": "無效的代碼", "Triangle Pattern": "收斂三角形", "Balance of Power_study": "力量平衡度指標(Balance of Power)", "EOM_input": "EOM", "Apply Manual Risk/Reward": "套用手動風險/報酬", "Sydney": "大洋洲/雪梨", "Indicators": "技術指標", "q_input": "q", "%D_input": "%D", "Text Alignment:": "文字參數:", "Offset_input": "Offset", "Price Scale": "價格軸", "HV_input": "HV", "(H + L + C)/3": "(最高+最低+收盤)/3", "Start_input": "開始", "R_data_mode_realtime_letter": "R", "ROC_input": "ROC", "Berlin": "歐洲/柏林", "Color 4_input": "Color 4", "Los Angeles": "北美洲/洛杉磯", "Prices": "價位", "Extended Hours (Intraday Only)": "延長時段(日內)", "Create Horizontal Line": "新增水平線", "Minute": "分鐘", "Cycle": "循環週期", "ADX Smoothing_input": "ADX Smoothing", "Settings": "設定", "Candles": "蠟燭線", "We_day_of_week": "We", "%d minute": "%d minutes", "Hide All Drawing Tools": "隱藏所有繪圖工具", "MA_input": "MA", "Detrended Price Oscillator_study": "區間震盪線[DPO]", "Multiplier_input": "Multiplier", "Image URL": "圖檔路徑", "SMI Ergodic Oscillator_input": "SMI Ergodic Oscillator", "Show Objects Tree": "顯示排列順序", "Primary": "初級", "Price:": "價位:", "Bring to Front": "置於頂層", "Brush": "筆刷", "Chaikin Oscillator_input": "Chaikin Oscillator", "lengthRSI_input": "lengthRSI", "Events & Alerts": "事件與警示", "SMALen4_input": "SMALen4", "Invalid Symbol": "無效的標的", "Inside Pitchfork": "內側蝴蝶指標", "yay Color 1_input": "yay Color 1", "Hide Marks On Bars": "隱藏標註", "Note": "標注", "Kagi": "Kagi圖", "WMA Length_input": "WMA Length", "Low": "最低", "Borders": "邊框", "loading...": "載入中...", "Events": "事件", "Columns": "柱狀圖", "Indicator Arguments": "指標參數", "Fib Spiral": "費波南茲螺旋", "Create Vertical Line": "新增垂直線", "Chande Momentum Oscillator_study": "錢德動量擺動指標(ChandeMO)", "Mar": "三月", "Jun": "六月", "On Balance Volume_study": "能量潮指标(OBV)", "Overlay the main chart": "在主圖上顯示", "Source_input": "Source", "%K_input": "%K", "Success back color": "成功時背景顏色", "Toronto": "北美洲/多倫多", "Tokyo": "亞洲/東京", "Study Templates": "研究模板", "Elliott Wave Minor": "艾略特小型波", "Measure (Shift + Click on the chart)": "測量 (在圖表上按著鍵盤Shift鍵,同時點擊滑鼠左鍵)", "Override Min Tick": "覆寫最小刻度", "RSI Length_input": "RSI Length", "Unmerge Down": "取消向下合併", "Base Line Periods_input": "Base Line Periods", "pre-market": "盤前", "Top Labels": "頂端標籤", "Level {0}": "等級 {0}", "Minuette": "微浪", "Text Wrap": "文字換行", "Elliott Minor Retracement": "艾略特小波浪回測", "Pitchfan": "扇形角度線", "No symbols matched your criteria": "沒有商品符合您的搜索條件", "Icon": "圖標", "Open": "開盤", "Indicator_input": "Indicator", "Open Interval Dialog": "開啟區間視窗", "Shanghai": "亞洲/上海", "Athens": "歐洲/雅典", "Timezone/Sessions Properties...": "時區/工作階段屬性", "middle": "中間", "Lock Cursor In Time": "鎖定游標位置時間", "Intermediate": "中型浪", "Eraser": "橡皮擦", "Relative Vigor Index_study": "相對能量指數指標(RVGI)", "Envelope_study": "包絡線指標(Env", "Active Symbol": "啟動標的", "Horizontal Line": "垂直線", "O_in_legend": "開盤", "Confirmation": "確認", "Add Alert": "新增警示", "Lines:": "線", "Buenos Aires": "南美洲/布宜諾斯艾利斯", "useTrueRange_input": "useTrueRange", "Bangkok": "曼谷", "Profit Level. Ticks:": "有效等級刻度:", "Show Date/Time Range": "顯示時間/日期區間", "%d year": "%d years", "Tu_day_of_week": "Tu", "day": "days", "deviation_input": "deviation", "week": "weeks", "UTC": "世界標準時間", "VWMA_study": "成交量加權移動平均線(VWMA)", "Success text color": "成功時文字顏色", "%d hour": "%d hours", "Displacement_input": "Displacement", "ADR_B_input": "ADR_B", "Chaikin Money Flow_study": "蔡金資金流向指標(CMF)", "Ease Of Movement_study": "Ease Of Movement", "Defaults": "預設值", "Oversold_input": "Oversold", "Williams %R_study": "威廉%R", "depth_input": "depth", "RSI_input": "RSI", "Long period_input": "Long period", "Mo_day_of_week": "Mo", "center": "中間", "Vertical Line": "水平線", "Bogota": "南美洲/波哥大", "Show Splits on Chart": "顯示股票分割", "Minutes_interval": "Minutes", "X_input": "X", "C_data_mode_connecting_letter": "C", "Simple ma(oscillator)_input": "Simple ma(oscillator)", "ROCLen4_input": "ROCLen4", "Aroon Down_input": "Aroon Down", "Add To Watchlist": "添加至收藏夾", "Extend Right": "向右延長", "left": "左", "Lock scale": "鎖定縮放功能", "Time Levels": "時間等級", "smalen1_input": "smalen1", "Extend Right End": "向右延長至右端", "Fans": "扇形", "Price_input": "Price", "Close_input": "Close", "Gann Fan": "扇形甘氏線", "Modified Schiff Pitchfork": "改良式希夫蝴蝶指標", "Relative Volatility Index_study": "相對離散指數(RVI)", "PVT_input": "PVT", "Circle Lines": "週期線", "Hull Moving Average_study": "Hull 移動平均", "Bring Forward": "向上移動", "Zero_input": "Zero", "Company Comparison": "請輸入對比商品", "Stochastic Length_input": "Stochastic Length", "mult_input": "mult", "Signal smoothing_input": "Signal smoothing", "E_data_mode_end_of_day_letter": "E", "Trend-Based Fib Extension": "趨勢黃金分割率", "Stochastic RSI_study": "隨機強弱指標(STOCH RSI)", "Horizontal Ray": "垂直射線", "Script Editor...": "腳本編輯器", "Fullscreen mode": "全螢幕模式", "K_input": "K", "In Session": "盤中", "ROCLen3_input": "ROCLen3", "Text Color": "文字顏色", "Extend Alert Line": "延伸警示線", "Drawings Toolbar": "繪圖工具列", "Source Code...": "原始碼", "CHOP_input": "CHOP", "Apply Defaults": "套用內定設定", "Screen (No Scale)": "螢幕(無縮放)", "Extended Alert Line": "延伸警示線", "Signal_input": "Signal", "OK": "確認", "like": "likes", "Show": "顯示", "Exchange": "交易所", "{0} bars": "{0} 根", "Lower_input": "Lower", "Up Wave 2 or B": "上升波 2 或 B", "Elder's Force Index_study": "Elder's Force Index", "Show Earnings on Chart": "顯示盈餘", "Show Dividends on Chart": "顯示股利", "Bollinger Bands %B_study": "包寧傑%B指標(BB%B)", "Time Zone": "時區", "right": "右", "%d month": "%d months", "Donchian Channels_study": "唐奇安通道指標(DC)", "Upper Band_input": "Upper Band", "Rename...": "重新命名...", "start_input": "start", "No indicators matched your criteria.": "沒有指標符合您的搜索條件.", "Short length_input": "Short length", "Kolkata": "亞洲/加爾各答", "Triple EMA_study": "三重指數移動平均線(TEMA)", "Precise Labels_scale_menu": "Precise Labels", "Smoothed Moving Average_study": "平滑移動平均", "Show Text": "顯示文字", "Channel": "頻道", "Lagging Span 2 Periods_input": "Lagging Span 2 Periods", "Seoul": "亞洲/首爾", "bottom": "底部", "Teeth_input": "Teeth", "Moscow": "歐洲/莫斯科", "Save New Chart Layout": "另存新版型", "Fib Channel": "通道黃金分割率", "Closed_line_tool_position": "關閉畫線工具位置", "Arc": "弧形", "exponential_input": "exponential", "OnBalanceVolume_input": "OnBalanceVolume", "roclen2_input": "roclen2", "Apply WPT Down Wave": "套用 WPT 下降波", "Not applicable": "不適用", "or copy url:": "或複製圖檔路徑:", "Money Flow_study": "貨幣流量指標(MFI)", "Indicator Values": "指標值", "Lips Length_input": "Lips Length", "Use Upper Deviation_input": "Use Upper Deviation", "L_in_legend": "最低", "Inside": "內部", "shortlen_input": "shortlen", "Timezone/Sessions": "時區/工作階段", "ADX_input": "ADX", "Profit Background Color": "有效背景顏色", "Trading": "交易", "Exponential_input": "Exponential", "ROCLen2_input": "ROCLen2", "Use Lower Deviation_input": "Use Lower Deviation", "Stay In Drawing Mode": "停留在繪圖模式", "Comment": "註解", "Long_input": "Long", "Bars": "美國線", "Show Labels": "顯示標籤", "Flat Top/Bottom": "旗頂/旗底", "loading data": "載入數據", "Border color": "邊框顏色", "Left Labels": "左方標籤", "Insert Indicator...": "新增技術指標...", "P_input": "P", "Ray": "射線", "Rectangle": "矩形", "Feb": "二月", "Transparency": "透明度", "Cyclic Lines": "循環線", "length28_input": "length28", "ABCD Pattern": "ABCD 型態", "Objects Tree": "排列順序", "NO": "否", "Add": "新增", "Least Squares Moving Average_study": "最小平方均線(LSMA)", "Wick": "燭心", "Hull MA_input": "Hull MA", "Schiff": "希夫", "Lock Scale": "鎖定縮放功能", "distance: {0}": "距離: {0}", "Extended": "延伸", "log": "對數", "Arcs": "弧形", "Length2_input": "Length2", "Insert Drawing Tool": "新增繪圖工具", "Show Price Range": "顯示價格區間", "Correlation_input": "Correlation", "Scales Text": "縮放文字", "Session Breaks": "中斷工作階段", "Add {0} To Watchlist": "加入{0}到願望清單內", "Anchored Note": "錨點標注", "lipsLength_input": "lipsLength", "roclen4_input": "roclen4", "closed": "收盤", "Background Color": "背景顏色", "D_data_mode_delayed_streaming_letter": "D", "VI -_input": "VI -", "slowLength_input": "slowLength", "Click to set a point": "點擊設置座標點", "delayed": "延遲", "Indicator Titles": "指標名稱", "Sa_day_of_week": "Sa", "Change area background": "改變區域背景", "Error": "錯誤", "RVI_input": "RVI", "Awesome Oscillator_study": "動量震盪指標(AO)", "Original": "原始", "True Strength Indicator_study": "真實強弱指數(TSI)", "Objects Tree...": "排列順序...", "Compare": "比較", "Add Symbol": "增加商品", "Projection": "投影指標", "Enter a new chart layout name": "輸入新的圖表布置名稱", "Signal Length_input": "Signal Length", "Properties": "圖表設定", "Teeth Length_input": "Teeth Length", "D_interval_short": "D", "Close": "收盤", "ParabolicSAR_input": "ParabolicSAR", "Log Scale_scale_menu": "對數比例選單", "MACD_input": "MACD", "{0} P&L: {1}": "{0} 獲利與損失: {1}", "Up Wave 3": "上升波 3", "Arrow Mark Left": "左箭頭", "Up Wave 5": "上升波 5", "Up Wave 4": "上升波 4", "(O + H + L + C)/4": "(開盤+最高+最低+收盤)/4", "Open_line_tool_position": "開啟畫線工具位置", "Lagging Span_input": "Lagging Span", "Cross": "十字線", "Mirrored": "鏡像", "Price": "價位", "Vancouver": "北美洲/溫哥華", "Label Background": "標籤背景", "ADX smoothing_input": "ADX smoothing", "1. Slide your finger to select location for first anchor
    2. Tap anywhere to place the first anchor": "1. 滑動你的手指,選取第一個錨點位置。
    2. 點擊螢幕,將第一個錨點設置於該處。", "Signal Labels": "訊號標籤", "May": "五月", "Color 5_input": "Color 5", "Scale Price Chart Only": "只縮放價位圖層", "Default": "預設值", "auto_scale": "自動", "Background": "背景", "Apply Elliot Wave Intermediate": "套用艾略特中型波", "VWMA_input": "VWMA", "Lower Deviation_input": "Lower Deviation", "ATR_input": "ATR", "Reverse": "反向", "Shapes_input": "Shapes", "Median": "中位", "Fisher_input": "Fisher", "Remove": "移除", "len_input": "len", "Arrow Mark Up": "上箭頭", "Crosses_input": "Crosses", "KST_input": "KST", "LowerLimit_input": "LowerLimit", "Know Sure Thing_study": "加權總和變動率(KST)", "Copy Chart Layout": "複製圖表版型", "Compare...": "比較...", "1. Slide your finger to select location for next anchor
    2. Tap anywhere to place the next anchor": "1. 滑動你的手指,選取第二個錨點位置。
    2. 點擊螢幕,將第二個錨點設置於該處。", "Compare or Add Symbol": "比較/新增商品", "Color": "顏色", "Aroon Up_input": "Aroon Up", "Singapore": "亞洲/新加坡", "Scales Lines": "縮放線條", "Up Wave C": "上升波 C", "Show Distance": "顯示距離", "Risk/Reward Ratio: {0}": "風險/回報比率: {0}", "Williams Fractal_study": "Williams Fractal", "Merge Up": "向上合併", "Right Margin": "右邊距", "Ellipse": "橢圓", "Warsaw": "歐洲/華沙"} \ No newline at end of file +{"ticks_slippage ... ticks": "ticks", "Months_interval": "月", "Realtime": "實時", "Callout": "標註", "Sync to all charts": "同步到所有圖表", "month": "月", "London": "倫敦", "roclen1_input": "變化速率長度1", "Unmerge Down": "取消向下合併", "Percents": "百分比", "Search Note": "搜尋筆記", "Minor": "次要", "Do you really want to delete Chart Layout '{0}' ?": "確定刪除圖表版面「{0}」?", "Quotes are delayed by {0} min and updated every 30 seconds": "報價延遲 {0} 分鐘,每30秒更新一次", "Magnet Mode": "磁鐵模式", "Grand Supercycle": "超級大週期", "OSC_input": "OSC", "Hide alert label line": "隱藏快訊標籤線", "Volume_study": "成交量", "Lips_input": "嘴唇", "Show real prices on price scale (instead of Heikin-Ashi price)": "在價格刻度上顯示實際價格(而不是Heikin-Ashi價格)", "Histogram": "直方圖", "Base Line_input": "基準線", "Step": "階梯", "Insert Study Template": "插入研究模板", "Fib Time Zone": "費波那契時間週期", "SMALen2_input": "簡單移動平均長度2", "Bollinger Bands_study": "布林線", "Nov": "十一月", "Show/Hide": "顯示/隱藏", "Upper_input": "上限", "exponential_input": "指數的", "Move Up": "上漲", "Symbol Info": "代碼資訊", "This indicator cannot be applied to another indicator": "該指標無法運用到其他指標上", "Scales Properties...": "刻度屬性...", "Count_input": "計數", "Full Circles": "完整圓圈", "Ashkhabad": "阿什哈巴德", "OnBalanceVolume_input": "能量潮指標(OBV)", "Cross_chart_type": "十字圖", "H_in_legend": "高=", "a day": "一天", "Pitchfork": "分岔線", "R_data_mode_replay_letter": "R", "Accumulation/Distribution_study": "累積/分配線", "Rate Of Change_study": "變化速率", "in_dates": "內", "Clone": "複製", "Color 7_input": "顏色7", "Chop Zone_study": "波動區域", "Bar #": "K線#", "Scales Properties": "刻度屬性", "Trend-Based Fib Time": "斐波那契趨勢時間", "Remove All Indicators": "移除所有指標", "Oscillator_input": "震動指數", "Last Modified": "最後修改", "yay Color 0_input": "yay 顏色 0", "Labels": "標籤", "Chande Kroll Stop_study": "錢德克羅止損", "Hours_interval": "小時", "Allow up to": "最多允許", "Scale Right": "縮放右邊", "Money Flow_study": "資金流量", "siglen_input": "Sigma 長度", "Indicator Labels": "指標標籤", "__specialSymbolOpen__Tomorrow at__specialSymbolClose__ __dayTime__": "__specialSymbolOpen__明日在__specialSymbolClose__ __dayTime__", "Hide All Drawing Tools": "隱藏所有繪圖工具", "Toggle Percentage": "切換為百分比", "Remove All Drawing Tools": "移除所有繪圖", "Remove all line tools for ": "移除所有劃線工具 ", "Linear Regression Curve_study": "線性回歸曲線", "Symbol_input": "代碼", "Currency": "貨幣", "increment_input": "增量", "Compare or Add Symbol...": "比較/增加代碼...", "__specialSymbolOpen__Last__specialSymbolClose__ __dayName__ __specialSymbolOpen__at__specialSymbolClose__ __dayTime__": "__specialSymbolOpen__最後__specialSymbolClose__ __dayName__ __specialSymbolOpen__在__specialSymbolClose__ __dayTime__", "Save Chart Layout": "儲存圖表版面", "Number Of Line": "線條數量", "Label": "標籤", "Post Market": "後期市場", "second": "秒", "Change Hours To": "變更小時為", "smoothD_input": "平滑D", "Falling_input": "下降", "X_input": "X值", "Risk/Reward short": "空頭風險/報酬", "UpperLimit_input": "上限帶", "Donchian Channels_study": "唐奇安通道", "Entry price:": "進場價:", "Circles": "圓", "Head": "頭", "Stop: {0} ({1}) {2}, Amount: {3}": "停損:{0} ({1}) {2}, 賬戶:{3}", "Mirrored": "鏡像", "Ichimoku Cloud_study": "一目均衡表", "Signal smoothing_input": "信號平滑", "Use Upper Deviation_input": "使用上偏差", "Toggle Auto Scale": "切換為自動縮放", "Grid": "格線", "Triangle Down": "下降三角形", "Apply Elliot Wave Minor": "套用艾略特小型波", "Slippage": "滑點", "Smoothing_input": "平滑", "Color 3_input": "顏色3", "Jaw Length_input": "下顎長度", "Almaty": "阿拉木圖", "Inside": "内部", "Delete all drawing for this symbol": "删除此代碼中的所有繪圖", "Fundamentals": "基本面", "Keltner Channels_study": "肯特纳通道", "Long Position": "多頭部位", "Bands style_input": "帶樣式", "Undo {0}": "撤銷 {0}", "With Markers": "帶標記", "Momentum_study": "動量", "MF_input": "MF", "Gann Box": "江恩箱", "Switch to the next chart": "切換至下一個圖表", "charts by TradingView": "TradingView圖表", "Fast length_input": "快線長度", "Apply Elliot Wave": "套用艾略特波", "Disjoint Angle": "不相交的角", "Supermillennium": "超千年", "W_interval_short": "週", "Show Only Future Events": "僅顯示未來事件", "Log Scale": "對數刻度", "Line - High": "線 - 最高價", "Zurich": "蘇黎世", "Equality Line_input": "等量線", "Short_input": "短期", "Fib Wedge": "斐波那契楔形", "Line": "線形圖", "Session": "session", "Down fractals_input": "向下分形", "Fib Retracement": "費波那契回撤", "smalen2_input": "簡單移動平均長度2", "isCentered_input": "居中", "Border": "框線", "Klinger Oscillator_study": "克林格成交量擺動指標", "Absolute": "絕對位置", "Tue": "週二", "Style": "樣式", "Show Left Scale": "顯示左側刻度", "SMI Ergodic Indicator/Oscillator_study": "遍歷性指數", "Aug": "八月", "Last available bar": "最後一根可用的K線", "Manage Drawings": "管理繪圖", "Analyze Trade Setup": "分析交易設定", "No drawings yet": "尚無任何繪圖", "SMI_input": "SMI", "Chande MO_input": "錢德動量擺動指標(Chande MO)", "jawLength_input": "下顎長度", "TRIX_study": "三重平滑均線", "Show Bars Range": "顯示K線區間", "RVGI_input": "相對能量指數", "Last edited ": "上次編輯 ", "signalLength_input": "信號長度", "%s ago_time_range": "%s 前", "Reset Settings": "重設設定", "PnF": "OX圖", "Renko": "磚形圖", "d_dates": "日", "Point & Figure": "OX圖", "August": "八月", "Recalculate After Order filled": "報單成交後重新計算", "Source_compare": "來源", "Down bars": "下跌K棒", "Correlation Coefficient_study": "相關係數", "Delayed": "延遲的", "Bottom Labels": "底部標籤", "Text color": "文字顏色", "Levels": "等級", "Length_input": "長度", "Short Length_input": "短期長度", "teethLength_input": "齒距", "Visible Range_study": "可視範圍", "Delete": "删除", "Hong Kong": "香港", "Text Alignment:": "文字對齊:", "Open {{symbol}} Text Note": "打開 {{symbol}} 文本說明", "October": "十月", "Lock All Drawing Tools": "鎖定所有繪圖工具", "Long_input": "長線", "Right End": "右端", "Show Symbol Last Value": "顯示商品代碼最後價格", "Head & Shoulders": "頭肩頂", "Do you really want to delete Study Template '{0}' ?": "確定刪除研究模板'{0}'?", "Favorite Drawings Toolbar": "最愛繪圖工具列", "Properties...": "屬性...", "Reset Scale": "重設刻度", "MA Cross_study": "移动揉搓線", "Trend Angle": "趨勢線角度", "Snapshot": "快照", "Crosshair": "十字", "Signal line period_input": "信號線週期", "Timezone/Sessions Properties...": "時區/交易時段屬性...", "Line Break": "新價線", "Quantity": "數量", "Price Volume Trend_study": "價量趨勢指標", "Auto Scale": "自動縮放", "hour": "小時", "Delete chart layout": "刪除圖表版面", "Text": "文本", "F_data_mode_forbidden_letter": "F", "Risk/Reward long": "多頭風險/報酬", "Apr": "四月", "Long RoC Length_input": "長期變量長度", "Length3_input": "長度3", "+DI_input": "+DI", "Madrid": "馬德里", "Use one color": "使用一個顏色", "Chart Properties": "圖表屬性", "No Overlapping Labels_scale_menu": "無重疊標籤", "Exit Full Screen (ESC)": "退出全螢幕(ESC)", "MACD_study": "指數平滑異同移動平均線", "Show Economic Events on Chart": "在圖表上顯示經濟事件", "Moving Average_study": "移動平均", "Show Wave": "顯示波形", "Failure back color": "失敗的背景顏色", "Below Bar": "Bar下方", "Time Scale": "時間刻度", "

    Only D, W, M intervals are supported for this symbol/exchange. You will be automatically switched to a D interval. Intraday intervals are not available because of exchange policies.

    ": "

    此商品/交易僅支援日、週、月週期。您的圖表將自動切換到日週期圖。基於交易政策,我們無法提供日內週期資料。

    ", "Extend Left": "向左延伸", "Date Range": "日期範圍", "Min Move": "最小移動", "Price format is invalid.": "價格格式無效", "Show Price": "顯示價格", "Level_input": "水平", "Angles": "角度", "Hide Favorite Drawings Toolbar": "隱藏最愛繪圖工具列", "Commodity Channel Index_study": "順勢指標", "Elder's Force Index_input": "艾達爾強力指數(EFI)", "Gann Square": "江恩正方", "Phoenix": "菲尼克斯", "Format": "設置", "Color bars based on previous close": "bar顏色基於前一個收盤價", "Change band background": "變更帶背景", "Target: {0} ({1}) {2}, Amount: {3}": "目標:{0} ({1}) {2}, 賬戶:{3}", "Zoom Out": "縮小", "This chart layout has a lot of objects and can't be published! Please remove some drawings and/or studies from this chart layout and try to publish it again.": "此圖表版面有太多物件而無法發布!請刪除一些繪圖和/或研究,並嘗試重新發布。", "Anchored Text": "錨點文本", "Long length_input": "長線長度", "Edit {0} Alert...": "編輯{0}快訊...", "Previous Close Price Line": "上一個收盤價格線", "Up Wave 5": "上漲波5", "Qty: {0}": "數量:{0}", "Heikin Ashi": "平均K線", "Aroon_study": "阿隆指標", "show MA_input": "顯示移動平均", "Industry": "產業", "Lead 1_input": "前置1", "Short Position": "空頭部位", "SMALen1_input": "簡單移動平均長度1", "P_input": "P指", "Apply Default": "套用預設值", "SMALen3_input": "簡單移動平均長度3", "Average Directional Index_study": "平均定向指數", "Fr_day_of_week": "星期五", "Invite-only script. Contact the author for more information.": "僅限邀請的腳本,請聯繫作者了解更多資訊。", "Curve": "曲線", "a year": "一年", "Target Color:": "獲利顏色:", "Bars Pattern": "豎條模型", "D_input": "D", "Font Size": "字體大小", "Create Vertical Line": "建立垂直線", "p_input": "P值", "Rotated Rectangle": "旋轉矩形", "Chart layout name": "圖表版面名稱", "Fib Circles": "費波那契圈", "Apply Manual Decision Point": "套用手動決策點", "Dot": "點點", "Target back color": "終點背景顏色", "All": "全部", "orders_up to ... orders": "訂單", "Dot_hotkey": "點", "Lead 2_input": "前置2", "Save image": "儲存圖片", "Move Down": "下跌", "Triangle Up": "上升三角形", "Box Size": "欄位大小", "Navigation Buttons": "導覽按鈕", "Miniscule": "極小", "Apply": "應用", "Down Wave 3": "下跌波3", "Plots Background_study": "繪圖背景", "Marketplace Add-ons": "商店附加元件", "Sine Line": "正弦線", "Fill": "填充", "%d day": "%d 天", "Hide": "隱藏", "Toggle Maximize Chart": "切換最大化圖表", "Target text color": "獲利文字顏色", "Scale Left": "縮放左邊", "Elliott Wave Subminuette": "艾略特次微波", "Down Wave C": "下跌波C", "Countdown": "倒數", "UO_input": "終極震盪指標", "Pyramiding": "金字塔式", "Source back color": "原始背景顏色", "Go to Date...": "前往日期...", "Sao Paulo": "聖保羅", "R_data_mode_realtime_letter": "R", "Extend Lines": "延長線", "Conversion Line_input": "轉換線(Conversion Line)", "March": "三月", "Su_day_of_week": "週日", "Exchange": "證券交易所", "My Scripts": "我的腳本", "Arcs": "弧形", "Regression Trend": "回歸趨勢", "Short RoC Length_input": "短期變量長度", "Fib Spiral": "費波那契螺旋", "Double EMA_study": "雙指數移動平均", "minute": "分鐘", "All Indicators And Drawing Tools": "所有指標和繪圖工具", "Indicator Last Value": "指標最後值", "Sync drawings to all charts": "同步繪圖到所有圖表", "Change Average HL value": "變更HL值平均", "Stop Color:": "止損顏色:", "Stay in Drawing Mode": "保持繪圖模式", "Bottom Margin": "下邊距", "Dubai": "杜拜", "Save Chart Layout saves not just some particular chart, it saves all charts for all symbols and intervals which you are modifying while working with this Layout": "保存圖表版面,不只是保存幾個特定的圖表,同時也保存了您在使用此版面期間修改的所有商品代號和週期設定。", "Average True Range_study": "真實波動幅度均值", "Max value_input": "最大值", "MA Length_input": "MA長度", "Invite-Only Scripts": "僅限邀請的腳本", "in %s_time_range": "在%s", "Extend Bottom": "延伸底部", "sym_input": "系統", "DI Length_input": "DI長度", "Rome": "羅馬", "Scale": "刻度", "Periods_input": "階段", "Arrow": "箭頭", "useTrueRange_input": "使用真實範圍", "Basis_input": "底部", "Arrow Mark Down": "向下箭頭", "lengthStoch_input": "Stoch長度", "Taipei": "台北", "Objects Tree": "管理設定", "Remove from favorites": "從最愛移除", "Show Symbol Previous Close Value": "顯示此商品代碼的上一個收盤值", "Scale Series Only": "僅縮放數據系列", "Source text color": "原始文字顏色", "Simple": "簡單", "Report a data issue": "回報數據問題", "Arnaud Legoux Moving Average_study": "Arnaud Legoux移動平均", "Smoothed Moving Average_study": "平滑移動平均", "Lower Band_input": "下限", "Verify Price for Limit Orders": "為限價單核對價格", "VI +_input": "VI +", "Line Width": "線寬", "Contracts": "合約", "Always Show Stats": "總是顯示統計資料", "Down Wave 4": "下跌波4", "ROCLen2_input": "變化速率長度2", "Simple ma(signal line)_input": "簡單移動平均(信號線)", "Change Interval...": "變更週期...", "Public Library": "公共資料庫", " Do you really want to delete Drawing Template '{0}' ?": " 確定要刪除繪圖範本「{0}」嗎?", "Sat": "星期六", "Left Shoulder": "左肩", "week": "週", "CRSI_study": "CRSI", "Close message": "關閉訊息", "Jul": "七月", "Value_input": "值", "Show Drawings Toolbar": "顯示繪圖工具列", "Chaikin Oscillator_study": "蔡金擺動指標", "Price Source": "價格來源", "Market Open": "盤中", "Color Theme": "主題顏色", "Projection up bars": "預測上漲線", "Awesome Oscillator_study": "動量震盪指標", "Bollinger Bands Width_input": "布林通道寬度", "Q_input": "Q指", "long_input": "長線", "Error occured while publishing": "發表想法時發生錯誤", "Fisher_input": "費雪", "Color 1_input": "顏色1", "Moving Average Weighted_study": "移動加權", "Save": "儲存", "Type": "種類", "Wick": "燭芯", "Accumulative Swing Index_study": "振動升降指標(ASI)", "Load Chart Layout": "載入圖表版面", "Show Values": "顯示值", "Fib Speed Resistance Fan": "費波那契速度阻力扇", "Bollinger Bands Width_study": "布林線帶寬", "This chart layout has more than 1000 drawings, which is a lot! This may negatively affect performance, storage and publishing. We recommend to remove some drawings to avoid potential performance issues.": "此圖表版面中有超過1000個繪圖,太多了!可能對性能,存儲和發表產生負面影響。我們建議刪除一些繪圖,以避免潛在的性能問題。", "Left End": "左端", "%d year": "%d 年", "Always Visible": "總是顯示", "S_data_mode_snapshot_letter": "S", "Flag": "旗形", "Elliott Wave Circle": "艾略特波浪圈", "Earnings breaks": "盈餘突破", "Change Minutes From": "變更分鐘自", "Do not ask again": "不要再問", "Displacement_input": "移位", "smalen4_input": "簡單移動平均長度4", "CCI_input": "CCI", "Upper Deviation_input": "上偏差", "(H + L)/2": "(最高 + 最低)/2", "XABCD Pattern": "XABCD 型態", "Schiff Pitchfork": "希夫分叉線", "Copied to clipboard": "複製到剪貼簿", "hl2": "高低2", "Flipped": "水平翻轉", "DEMA_input": "DEMA", "Move_input": "移動", "NV_input": "NV", "Choppiness Index_study": "波動指數", "Study Template '{0}' already exists. Do you really want to replace it?": "研究模板'{0}'已經存在,確定替換?", "Merge Down": "向下合併", "Th_day_of_week": "週四", " per contract": " 根據合約", "Overlay the main chart": "顯示於主圖上", "Screen (No Scale)": "螢幕(無縮放)", "Three Drives Pattern": "三驅模式", "Save Indicator Template As": "儲存指標範本為...", "Length MA_input": "MA 長度", "percent_input": "百分比", "September": "九月", "{0} copy": "{0} 複製", "Avg HL in minticks": "最小刻度的高低平均價", "Accumulation/Distribution_input": "累積/派發指標(Accumulation/Distribution)", "Sync": "同步", "C_in_legend": "收=", "Weeks_interval": "週", "smoothK_input": "平滑K", "Percentage_scale_menu": "百分比刻度", "Change Extended Hours": "變更延長交易時段", "MOM_input": "動量", "h_interval_short": "小時", "Change Interval": "變更週期", "Change area background": "變更區塊背景", "Modified Schiff": "調整希夫", "top": "頂部", "Adelaide": "阿德萊德", "Send Backward": "傳送回去", "Mexico City": "墨西哥城", "TRIX_input": "三重平滑均線", "Show Price Range": "顯示價格區間", "Elliott Major Retracement": "艾略特主波浪回撤", "ASI_study": "振動升降指標(ASI)", "Notification": "通知", "Fri": "星期五", "just now": "剛剛", "Forecast": "預測", "Connecting": "正在連接", "Ghost Feed": "映像種子", "Signal_input": "信號", "Histogram_input": "直方圖", "The Extended Trading Hours feature is available only for intraday charts": "延期交易時間功能僅適用於日圖表", "Stop syncing": "停止同步", "open": "開盤", "StdDev_input": "標準差", "EMA Cross_study": "EMA 交叉", "Conversion Line Periods_input": "轉換線週期(Conversion Line Periods)", "Oversold_input": "賣超", "Brisbane": "布里斯班", "Monday": "星期一", "Add Symbol_compare_or_add_symbol_dialog": "新增代碼", "Williams %R_study": "威廉姆指數", "Symbol": "代碼", "a month": "一個月", "Precision": "精確度", "depth_input": "深度", "Go to": "前往到", "Please enter chart layout name": "請輸入圖表版面名稱", "Mar": "三月", "VWAP_study": "成交量加權平均價(VWAP)", "Offset": "偏移", "Date": "日期", "Format...": "設置...", "__dayName__ __specialSymbolOpen__at__specialSymbolClose__ __dayTime__": "__dayName__ __specialSymbolOpen__在__specialSymbolClose__ __dayTime__", "Toggle Maximize Pane": "切換最大化窗格", "Search": "搜尋", "Zig Zag_study": "拋物線轉向", "Actual": "實際", "SUCCESS": "成功", "Long period_input": "長周期", "length_input": "長度", "roclen4_input": "變化速率長度4", "Price Line": "價格線", "Area With Breaks": "中斷區塊", "Median_input": "中線", "Stop Level. Ticks:": "止損。最小刻度數:", "Window Size_input": "視窗大小", "Economy & Symbols": "經濟 & 商品代碼", "Circle Lines": "圓形線圈", "Visual Order": "視覺排序", "__specialSymbolOpen__Yesterday at__specialSymbolClose__ __dayTime__": "__specialSymbolOpen__昨日在__specialSymbolClose__ __dayTime__", "Stop Background Color": "止損背景顏色", "1. Slide your finger to select location for first anchor
    2. Tap anywhere to place the first anchor": "1. 請拖曳您的手指選擇第一個游標的放置地點
    2. 點擊任何一處即可定位", "Sector": "產業", "powered by TradingView": "由TradingView提供", "Text:": "文字:", "Stochastic_study": "隨機指數", "Sep": "九月", "TEMA_input": "TEMA", "Apply WPT Up Wave": "套用WPT Up波", "Min Move 2": "最小移動 2", "Extend Left End": "左端延伸", "Projection down bars": "預測下跌線", "Advance/Decline_study": "價格漲落線", "New York": "紐約", "Flag Mark": "旗號", "Drawings": "繪圖", "Cancel": "取消", "Compare or Add Symbol": "比較/增加代碼", "Redo": "重做", "Hide Drawings Toolbar": "隱藏繪圖工具列", "Ultimate Oscillator_study": "終極震盪指標", "Vert Grid Lines": "垂直網格線", "Growing_input": "增長", "Angle": "角度", "Plot_input": "描寫", "Chicago": "芝加哥", "Color 8_input": "顏色8", "Indicators, Fundamentals, Economy and Add-ons": "指標、基本面、經濟數據和附加項目", "h_dates": "小時", "ROC Length_input": "ROC 長度", "roclen3_input": "變化速率長度3", "Overbought_input": "買超", "Extend Top": "延伸頂部", "Change Minutes To": "變更分鐘為", "No study templates saved": "無儲存研究範本", "Trend Line": "趨勢線", "TimeZone": "時區", "Your chart is being saved, please wait a moment before you leave this page.": "您的圖表正在儲存中,敬請稍待一會再離開此頁。", "Percentage": "百分比", "Tu_day_of_week": "週二", "RSI Length_input": "RSI 天數長度", "Triangle": "三角形", "Line With Breaks": "中斷線", "Period_input": "階段", "Watermark": "浮水印", "Trigger_input": "觸發", "SigLen_input": "Sigma 長度", "Extend Right": "向右延伸", "Color 2_input": "顏色2", "Show Prices": "顯示價格", "Unlock": "解鎖", "Copy": "複製", "high": "高點", "Arc": "弧形", "Edit Order": "編輯報單", "January": "一月", "Arrow Mark Right": "向右箭頭", "Extend Alert Line": "延長快訊線", "Background color 1": "背景顏色1", "RSI Source_input": "RSI來源", "Close Position": "平倉", "Any Number": "任一數字", "Stop syncing drawing": "停止同步繪圖", "Visible on Mouse Over": "游標移動時可見", "MA/EMA Cross_study": "MA/EAM交叉", "Thu": "週四", "Vortex Indicator_study": "渦流指標", "view-only chart by {user}": "{user}提供之僅供查看圖表", "ROCLen1_input": "變化速率長度1", "M_interval_short": "月", "Chaikin Oscillator_input": "蔡金震盪指標(Chaikin Oscillator)", "Price Levels": "價格等級", "Show Splits": "顯示分割", "Zero Line_input": "零線", "Replay Mode": "重播模式", "__specialSymbolOpen__Today at__specialSymbolClose__ __dayTime__": "__specialSymbolOpen__本日在__specialSymbolClose__ __dayTime__", "Increment_input": "增量", "Days_interval": "日", "Show Right Scale": "顯示右側刻度", "Show Alert Labels": "顯示快訊標籤", "Historical Volatility_study": "歷史波動率", "Lock": "鎖定", "length14_input": "長度14", "High": "最高價", "ext": "延時", "Date and Price Range": "日期和價格範圍", "Polyline": "多邊形", "Reconnect": "重新連結", "Lock/Unlock": "鎖定/解鎖", "HLC Bars": "HLC 線", "Base Level": "基準水位", "Label Down": "向下標籤", "Saturday": "星期六", "Symbol Last Value": "商品代碼最後價格", "Above Bar": "列上", "Studies": "技術分析", "Color 0_input": "顏色0", "Add Symbol": "新增代碼", "maximum_input": "最大", "Wed": "週三", "Paris": "巴黎", "D_data_mode_delayed_letter": "D", "Sigma_input": "Sigma", "VWMA_study": "交易量加權移動平均", "fastLength_input": "快線長度", "Time Levels": "時間等級", "Width": "寬度", "Sunday": "星期日", "Loading": "載入", "Template": "範本", "Use Lower Deviation_input": "使用下偏差", "Up Wave 3": "上漲波3", "Parallel Channel": "平行通道", "Time Cycles": "時間週期", "Divisor_input": "因數", "Baseline": "基準線", "Down Wave 1 or A": "下跌波1或A", "ROC_input": "變量", "Dec": "十二月", "Ray": "射線", "Extend": "延伸", "length7_input": "長度7", "Bring Forward": "向上移動", "Bottom": "底部", "Berlin": "柏林", "Undo": "撤銷", "Original": "原型", "Mon": "星期一", "Right Labels": "右邊標籤", "Long Length_input": "長線長度", "True Strength Indicator_study": "真實強度指標", "%R_input": "%R", "There are no saved charts": "沒有已儲存的圖表", "Instrument is not allowed": "不允許使用此工具", "bars_margin": "根K线", "Decimal Places": "小數位", "Show Indicator Last Value": "顯示最後的指標值", "Initial capital": "初始資金", "Show Angle": "顯示角度", "Mass Index_study": "梅斯線", "More features on tradingview.com": "tradingview.com上有更多功能", "Objects Tree...": "管理設定...", "Remove Drawing Tools & Indicators": "移除繪圖工具與技術指標", "Length1_input": "長度1", "Always Invisible": "總是隱藏", "Circle": "圓", "Days": "日", "x_input": "X值", "Save As...": "另存為...", "Elliott Double Combo Wave (WXY)": "艾略特双组合波浪(WXY)", "Parabolic SAR_study": "拋物線", "Any Symbol": "任一代碼", "Variance": "方差", "Stats Text Color": "統計文字顏色", "Minutes": "分鐘", "Williams Alligator_study": "威廉姆鱷魚", "Projection": "預測", "Custom color...": "自訂顏色...", "Jan": "一月", "Jaw_input": "下顎", "Right": "右", "Help": "支援", "Coppock Curve_study": "估波曲線", "Reversal Amount": "反轉數量", "Reset Chart": "重設圖表", "Marker Color": "馬克筆顏色", "Fans": "扇形", "Left Axis": "左軸", "Open": "開盤", "YES": "是", "longlen_input": "長線長度", "Moving Average Exponential_study": "指數移動平均", "Source border color": "原始邊框顏色", "Redo {0}": "重做{0}", "Cypher Pattern": "Cypher 型態", "s_dates": "s", "Caracas": "卡拉卡斯", "Area": "區域圖", "Triangle Pattern": "三角型態", "Balance of Power_study": "均勢", "EOM_input": "EOM", "Shapes_input": "形狀", "Apply Manual Risk/Reward": "套用手動風險/回報", "Market Closed": "市場關閉", "Sydney": "雪梨", "Indicators": "技術指標", "close": "收盤", "q_input": "Q指", "You are notified": "您已被通知", "Font Icons": "字體圖標", "%D_input": "%D", "Border Color": "邊框顏色", "Offset_input": "偏移", "Risk": "風險", "Price Scale": "價格刻度", "HV_input": "HV", "Seconds": "秒", "Settings": "設定", "Start_input": "開始", "Elliott Impulse Wave (12345)": "艾略特脈衝波浪(12345)", "Hours": "小時", "Send to Back": "傳送回去", "Color 4_input": "顏色4", "Los Angeles": "洛杉磯", "Prices": "價格", "Hollow Candles": "空心蠟燭線", "July": "七月", "Create Horizontal Line": "建立水平線", "Minute": "細級", "Cycle": "循環", "ADX Smoothing_input": "ADX平滑化", "One color for all lines": "所有直線一個顏色", "m_dates": "分", "(H + L + C)/3": "(最高 + 最低 + 收盤)/3", "Candles": "K線", "We_day_of_week": "我們", "Width (% of the Box)": "寬度(箱子的%)", "%d minute": "%d 分", "Go to...": "前往到...", "Pip Size": "Pip 大小", "Wednesday": "週三", "This drawing is used in alert. If you remove the drawing, the alert will be also removed. Do you want to remove the drawing anyway?": "此圖已用於一個快訊中。如果移除此圖,該快訊將一併移除。確定要移除此圖嗎?", "Show Countdown": "顯示時間倒數", "Show alert label line": "顯示快訊標籤線", "Down Wave 2 or B": "下跌波2或B", "MA_input": "MA", "Length2_input": "長度2", "not authorized": "未經授權", "Session Volume_study": "交易時段成交量", "Image URL": "圖片URL", "Submicro": "亞微米級", "SMI Ergodic Oscillator_input": "SMI 遍歷指標", "Show Objects Tree": "顯示物件樹狀結構", "Primary": "基本級", "Price:": "價格:", "Bring to Front": "置於頂層", "Brush": "筆刷", "Not Now": "不是現在", "Yes": "是", "C_data_mode_connecting_letter": "C", "SMALen4_input": "簡單移動平均長度4", "Apply Default Drawing Template": "套用預設繪圖範本", "Compact": "緊湊", "Save As Default": "存為系統預設", "Target border color": "終點邊框顏色", "Invalid Symbol": "無效的代碼", "Inside Pitchfork": "內部分岔線", "yay Color 1_input": "yay 顏色 1", "Quandl is a huge financial database that we have connected to TradingView. Most of its data is EOD and is not updated in real-time, however the information may be extremely useful for fundamental analysis.": "Quandl是一個巨大的金融數據資料庫,我們已經將它連接到TradingView。它的大部分數據是EOD,非即時更新的,然而,這些資訊可能對基本面分析是非常有用的。", "Hide Marks On Bars": "隱藏Bar上的標記", "Cancel Order": "取消報單", "Kagi": "卡吉圖", "WMA Length_input": "WMA 長度", "Show Dividends on Chart": "在圖表上顯示股息", "Show Executions": "顯示信號執行", "Borders": "邊框", "Remove Indicators": "移除技術指標", "loading...": "載入中...", "Closed_line_tool_position": "已平倉", "Rectangle": "矩形", "Change Resolution": "變更解析度", "Indicator Arguments": "指標參數", "Symbol Description": "商品代碼描述", "Chande Momentum Oscillator_study": "錢德動量擺動指標", "Degree": "級別", " per order": " 根據訂單", "Line - HL/2": "線 - HL/2", "Supercycle": "超級週期", "Jun": "六月", "Least Squares Moving Average_study": "最小平方移動平均線", "Change Variance value": "變更方差值", "powered by ": "提供者 ", "Source_input": "來源", "Change Seconds To": "變更秒為", "%K_input": "%K", "Scales Text": "刻度文字", "Toronto": "多倫多", "Please enter template name": "請輸入範本名", "Symbol Name": "代碼名稱", "Tokyo": "東京", "Events Breaks": "經濟事件分隔線", "San Salvador": "聖撒爾瓦多", "Months": "月", "Symbol Info...": "商品代碼資訊...", "Elliott Wave Minor": "艾略特小型波", "Cross": "十字指針", "Measure (Shift + Click on the chart)": "測量(按住Shift 鍵再點圖表)", "Override Min Tick": "顯示最小刻度", "Show Positions": "顯示部位", "Dialog": "對話框", "Add To Text Notes": "新增到文字筆記", "Elliott Triple Combo Wave (WXYXZ)": "艾略特三重组合波浪(WXYXZ)", "Multiplier_input": "乘數", "Risk/Reward": "風險/報酬", "Base Line Periods_input": "基準線週期", "Show Dividends": "顯示股息", "Relative Strength Index_study": "相對強弱指數", "Modified Schiff Pitchfork": "調整希夫分岔線", "Top Labels": "熱門標籤", "Show Earnings": "顯示收益", "Line - Open": "線 - 開盤價", "Elliott Triangle Wave (ABCDE)": "艾略特三角波浪(ABCDE)", "Minuette": "微級", "Text Wrap": "自動換行", "Reverse Position": "平倉反向", "Elliott Minor Retracement": "艾略特小波浪回撤", "DPO_input": "區間震盪", "Pitchfan": "傾斜扇形", "Slash_hotkey": "刪減", "No symbols matched your criteria": "無代碼符合您的搜尋條件", "Icon": "圖示", "lengthRSI_input": "RSI長度", "Tuesday": "星期二", "Teeth Length_input": "齒距", "Indicator_input": "指標", "Box size assignment method": "箱子尺寸分配方法", "Open Interval Dialog": "開啟週期設置", "Shanghai": "上海", "Athens": "雅典", "Fib Speed Resistance Arcs": "費波那契速度阻力弧線", "Content": "内容", "middle": "中間", "Lock Cursor In Time": "鎖定時間游標", "Intermediate": "中級", "Eraser": "清除", "Relative Vigor Index_study": "相對能量指數", "Envelope_study": "包路線", "Symbol Labels": "商品代碼標籤", "Pre Market": "前市場", "Horizontal Line": "水平線", "O_in_legend": "開=", "Confirmation": "確認", "Lines:": "線條:", "hlc3": "高低3", "Buenos Aires": "布宜諾斯艾利斯", "X Cross": "X 交叉", "Bangkok": "曼谷", "Profit Level. Ticks:": "獲利。最小刻度數:", "Show Date/Time Range": "顯示日期/時間區間", "Level {0}": "等級{0}", "Favorites": "收藏", "Horz Grid Lines": "水平網格線", "-DI_input": "-DI", "Price Range": "價格範圍", "day": "天", "deviation_input": "偏差", "Account Size": "賬戶規模", "UTC": "世界統一時間", "Time Interval": "時間間隔", "Success text color": "成功的文字顏色", "ADX smoothing_input": "ADX平滑化", "%d hour": "%d 小時", "Order size": "報單數量", "Drawing Tools": "繪圖工具", "Save Drawing Template As": "儲存繪圖模板為", "Tokelau": "托克勞群島", "ohlc4": "開高低收4", "Traditional": "傳統", "Chaikin Money Flow_study": "蔡金資金流量", "Ease Of Movement_study": "簡易波動指標", "Defaults": "預設值", "Percent_input": "百分比", "Interval is not applicable": "週期不適用", "short_input": "短期", "Visual settings...": "視覺設置...", "RSI_input": "RSI", "Chatham Islands": "查塔姆群島", "Detrended Price Oscillator_input": "區間震蕩線(Detrended Price Oscillator)", "Mo_day_of_week": "週一", "Up Wave 4": "上漲波4", "center": "中心", "Vertical Line": "垂直線", "Bogota": "波哥大", "Show Splits on Chart": "在圖表上顯示股票分割", "Sorry, the Copy Link button doesn't work in your browser. Please select the link and copy it manually.": "抱歉,複製鏈接按鈕在您的瀏覽器無法使用,請選擇鏈接並手動複製。", "Levels Line": "等級線", "Events & Alerts": "事件 & 快訊", "May": "五月", "ROCLen4_input": "變化速率長度4", "Aroon Down_input": "阿隆向下(Aroon Down)", "Add To Watchlist": "新增到觀察清單", "Total": "總計", "Price": "價格", "left": "左邊", "Lock scale": "鎖定刻度", "Limit_input": "限價", "Change Days To": "變更日線為", "Price Oscillator_study": "價格震盪", "smalen1_input": "簡單移動平均長度1", "Drawing Template '{0}' already exists. Do you really want to replace it?": "繪圖模板'{0}'已經存在,確定要取代它?", "Show Middle Point": "顯示中間點", "KST_input": "應用確定指標", "Extend Right End": "右端延伸", "Base currency": "基幣", "Color based on previous close_input": "K線顏色基於前一個收盤價", "Price_input": "價格", "Gann Fan": "江恩扇", "EOD": "一天的結束", "Weeks": "週", "McGinley Dynamic_study": "McGinley 動態指標", "Relative Volatility Index_study": "相對離散指數", "Source Code...": "原始碼...", "PVT_input": "價量趨勢指標", "Show Hidden Tools": "顯示隱藏的工具", "Hull Moving Average_study": "船體移動平均線", "Symbol Prev. Close Value": "商品代碼的上一個收盤值", "Istanbul": "伊斯坦堡", "{0} chart by TradingView": "{0} 圖表由TradingView提供", "Right Shoulder": "右肩", "Remove Drawing Tools": "移除繪圖工具", "Friday": "星期五", "Zero_input": "零", "Company Comparison": "請輸入對比商品", "Stochastic Length_input": "隨機指標長度", "mult_input": "多元", "URL cannot be received": "無法接收URL", "Success back color": "成功的背景顏色", "E_data_mode_end_of_day_letter": "E", "Trend-Based Fib Extension": "斐波那契趨勢擴展", "Top": "頂部", "Double Curve": "雙曲線", "Stochastic RSI_study": "隨機相對擺盪", "Oops!": "哎呀!", "Horizontal Ray": "水平射線", "smalen3_input": "簡單移動平均長度3", "Ok": "確認", "Script Editor...": "腳本編輯器...", "Are you sure?": "您確定嗎?", "Trades on Chart": "圖表上的交易", "Listed Exchange": "列表交易所", "Error:": "錯誤:", "Fullscreen mode": "全螢幕模式", "Add Text Note For {0}": "新增 {0} 的文字筆記", "K_input": "K", "Do you really want to delete Drawing Template '{0}' ?": "確定刪除繪圖模「{0}」?", "ROCLen3_input": "變化速率長度3", "Micro": "微", "Text Color": "文字顏色", "Rename Chart Layout": "重新命名圖表版面", "Built-ins": "內嵌指標", "Background color 2": "背景顏色2", "Drawings Toolbar": "繪圖工具列", "Moving Average Channel_study": "移動平均線通道(Moving Average Channel)", "New Zealand": "紐西蘭", "CHOP_input": "CHOP", "Apply Defaults": "套用預設值", "% of equity": "% 權益", "Extended Alert Line": "延長快訊線", "Note": "註釋", "OK": "確認", "like": "個讚", "Show": "顯示", "{0} bars": "{0}根K线", "Lower_input": "更低", "Created ": "已建立 ", "Warning": "警告", "Elder's Force Index_study": "艾達爾強力指數(EFI)", "Show Earnings on Chart": "在圖表上顯示盈餘", "ATR_input": "ATR", "Low": "最低價", "Bollinger Bands %B_study": "布林線 %B", "Time Zone": "時區", "right": "右邊", "%d month": "%d 月", "Wrong value": "錯誤值", "Upper Band_input": "上限", "Sun": "星期日", "Rename...": "重新命名...", "start_input": "開始", "No indicators matched your criteria.": "沒有指標符合您的搜尋條件。", "Commission": "佣金", "Down Color": "下跌顏色", "Short length_input": "短期長度", "Kolkata": "加爾各答", "Submillennium": "子千年", "Technical Analysis": "技術分析", "Show Text": "顯示文字", "Channel": "管道", "FXCM CFD data is available only to FXCM account holders": "FXCM CFD 數據資料僅限 FXCM 帳號持有人可用", "Lagging Span 2 Periods_input": "遲行帶2個時期", "Connecting Line": "連接線", "Seoul": "首爾", "bottom": "底部", "Teeth_input": "齒", "Sig_input": "Sig", "Open Manage Drawings": "開啟繪圖管理", "Save New Chart Layout": "儲存新圖表版面", "Fib Channel": "費波那契通道", "Save Drawing Template As...": "儲存繪圖範本為...", "Minutes_interval": "分鐘", "Up Wave 2 or B": "上漲波2或B", "Columns": "柱狀圖", "Directional Movement_study": "動向指標", "roclen2_input": "變化速率長度2", "Apply WPT Down Wave": "套用WPT Down波", "Not applicable": "不適用", "Bollinger Bands %B_input": "布林通道 %B", "Default": "系統預設", "Singapore": "新加坡", "Template name": "範本名稱", "Indicator Values": "指標值", "Lips Length_input": "嘴唇長度", "Toggle Log Scale": "切換為對數縮放", "L_in_legend": "低=", "Remove custom interval": "移除自訂區間", "shortlen_input": "短期長度", "Quotes are delayed by {0} min": "報價延遲 {0} 分鐘", "Hide Events on Chart": "隱藏圖表中的事件", "Cash": "現金", "Profit Background Color": "利潤背景顏色", "Bar's Style": "圖表樣式", "Exponential_input": "指數化", "Down Wave 5": "下跌波5", "Previous": "上一個", "Stay In Drawing Mode": "保持繪圖模式", "Comment": "評論", "Connors RSI_study": "Connors RSI(CRSI)", "Bars": "美國線", "Show Labels": "顯示標籤", "Flat Top/Bottom": "平滑頂部/底部", "Symbol Type": "代碼類型", "December": "十二月", "Lock drawings": "鎖定繪圖", "Border color": "邊框顏色", "Change Seconds From": "變更秒自", "Left Labels": "左標籤", "Insert Indicator...": "插入指標...", "ADR_B_input": "ADR_B", "Paste %s": "貼上 %s", "Change Symbol...": "變更代碼...", "Timezone": "時區", "Invite-only script. You have been granted access.": "僅限邀請的腳本,您已被授予存取權限。", "Color 6_input": "顏色6", "Oct": "十月", "ATR Length": "平均真實波幅長度", "{0} financials by TradingView": "{0} 財務資料由TradingView提供", "Extend Lines Left": "左側延長線", "Feb": "二月", "Transparency": "透明度", "No": "否", "June": "六月", "Tweet": "推文", "Cyclic Lines": "循環線", "length28_input": "長度28", "ABCD Pattern": "ABCD 趨勢", "When selecting this checkbox the study template will set \"__interval__\" interval on a chart": "勾選此選項,研究範本將設定表格週期為「__interval__」", "Add": "增加", "Line - Low": "線 - 最低價", "Millennium": "千年", "On Balance Volume_study": "能量潮", "Apply Indicator on {0} ...": "在{0}上使用指標...", "NEW": "新", "Chart Layout Name": "圖表版面名稱", "Up bars": "上漲K棒", "Hull MA_input": "Hull MA", "Schiff": "希夫", "Lock Scale": "鎖定刻度", "distance: {0}": "距離:{0}", "Extended": "延長線", "Square": "方形", "log": "對數刻度", "NO": "否", "Top Margin": "上邊距", "Up fractals_input": "向上分形", "Insert Drawing Tool": "插入繪圖工具", "OHLC Values": "開高低收", "Correlation_input": "相關係數", "Session Breaks": "收盤時中斷", "Add {0} To Watchlist": "新增 {0} 到觀察清單", "Anchored Note": "錨點註釋", "lipsLength_input": "lipsLength", "low": "低點", "Apply Indicator on {0}": "在{0}上使用指標", "UpDown Length_input": "UpDown 長度", "Price Label": "價格標籤", "November": "十一月", "Tehran": "德黑蘭", "Balloon": "泡泡註解", "Track time": "追踪時間", "Background Color": "背景顏色", "an hour": "1小時", "Right Axis": "右軸", "D_data_mode_delayed_streaming_letter": "D", "VI -_input": "VI -", "slowLength_input": "慢線長度", "Click to set a point": "點擊以設點", "Save Indicator Template As...": "儲存指標範本為...", "Arrow Up": "向上箭頭", "n/a": "不適用", "Indicator Titles": "指標名稱", "Failure text color": "失敗的文字顏色", "Sa_day_of_week": "週六", "Net Volume_study": "淨量", "Error": "錯誤", "Edit Position": "編輯持倉", "RVI_input": "RVI", "Centered_input": "居中", "Recalculate On Every Tick": "每筆數據重新計算", "Left": "左", "Simple ma(oscillator)_input": "簡單移動平均(振盪器)", "Compare": "比較", "Fisher Transform_study": "弗雪變換", "Show Orders": "顯示訂單", "Zoom In": "放大", "Length EMA_input": "EMA 長度", "Enter a new chart layout name": "輸入新圖表版面名稱", "Signal Length_input": "信號長度", "FAILURE": "失敗", "Point Value": "點值", "D_interval_short": "天", "MA with EMA Cross_study": "MA與EAM交叉", "Label Up": "向上標籤", "Price Channel_study": "價格通道(Price Channel)", "Close": "收盤", "ParabolicSAR_input": "拋物線轉向指標(PSAR)", "Log Scale_scale_menu": "對數刻度", "MACD_input": "MACD", "Do not show this message again": "不再顯示此訊息", "{0} P&L: {1}": "{0}獲利&止損:{1}", "No Overlapping Labels": "無重疊標籤", "Arrow Mark Left": "向左箭頭", "Slow length_input": "慢線長度", "Line - Close": "線 - 收盤價", "(O + H + L + C)/4": "(開盤 + 最高 + 最低 + 收盤)/4", "Confirm Inputs": "確認參數", "Open_line_tool_position": "未平倉", "Lagging Span_input": "遲行帶", "Subminuette": "次微級", "Thursday": "星期四", "Arrow Down": "向下箭頭", "Vancouver": "溫哥華", "Triple EMA_study": "三重指數平滑平均線", "Elliott Correction Wave (ABC)": "艾略特校正波浪(ABC)", "Error while trying to create snapshot.": "建立快照時發生錯誤。", "Label Background": "標籤背景顏色", "Templates": "模板", "Please report the issue or click Reconnect.": "請回報問題或點擊重新連結。", "Normal": "一般", "Signal Labels": "信號標籤", "Delete Text Note": "刪除文字筆記", "compiling...": "編譯中...", "Detrended Price Oscillator_study": "區間震蕩線(Detrended Price Oscillator)", "Color 5_input": "顏色5", "Fixed Range_study": "固定範圍", "Up Wave 1 or A": "上漲波1或A", "Scale Price Chart Only": "僅縮放價格圖表", "Unmerge Up": "取消向上合併", "auto_scale": "自動", "Short period_input": "短周期", "Background": "背景", "Study Templates": "指標模板", "Up Color": "上漲顏色", "Apply Elliot Wave Intermediate": "套用艾略特中型波", "VWMA_input": "成交量加權移動均線(VWMA)", "Lower Deviation_input": "下偏差", "Save Interval": "儲存週期", "February": "二月", "Reverse": "反向", "Oops, something went wrong": "Oops,發生了錯誤", "Add to favorites": "加入收藏", "Median": "中線", "ADX_input": "ADX", "Remove": "移除", "len_input": "長度", "Arrow Mark Up": "向上箭頭", "April": "四月", "Active Symbol": "活躍代碼", "Extended Hours": "延長時間", "Crosses_input": "交叉", "Middle_input": "中間", "Read our blog for more info!": "閱覽我們的部落格,了解更多!", "Sync drawing to all charts": "同步繪圖到所有圖表", "LowerLimit_input": "下限帶", "Know Sure Thing_study": "應用確定指標", "Copy Chart Layout": "複製圖表版面", "Compare...": "比較...", "1. Slide your finger to select location for next anchor
    2. Tap anywhere to place the next anchor": "1. 請拖曳您的手指選擇下一個游標的放置地點
    2. 點擊任何一處即可定位", "Text Notes are available only on chart page. Please open a chart and then try again.": "文字筆記僅能在表格頁面上使用。請打開圖表再試一次。", "Color": "顏色", "Aroon Up_input": "阿隆向上(Aroon Up)", "Apply Elliot Wave Major": "套用艾略特主要波", "Scales Lines": "刻度線", "Type the interval number for munute charts (i.e. 5 if it is going to be a five minute chart). Or number plus letter for H (Hourly), D (Daily), W (Weekly), M (Monthly) intervals (i.e. D or 2H)": "鍵入分鐘圖表的間隔數(若為五分鐘圖表則輸入5)。 或數字加字母H(小時),D(每日),W(每週),M(每月)間隔(如D或2H)", "Ellipse": "橢圓形", "Up Wave C": "上漲波C", "Show Distance": "顯示距離", "Risk/Reward Ratio: {0}": "風險/報酬比:{0}", "Restore Size": "復原尺寸", "Volume Oscillator_study": "交易量擺盪", "Honolulu": "檀香山", "Williams Fractal_study": "威廉姆分型", "Merge Up": "向上合併", "Right Margin": "右邊距", "Moscow": "莫斯科", "Warsaw": "華沙"} \ No newline at end of file diff --git a/charting_library/static/tv-chart.017b428a4ef9c1e9362a.html b/charting_library/static/tv-chart.017b428a4ef9c1e9362a.html deleted file mode 100644 index 3058c993..00000000 --- a/charting_library/static/tv-chart.017b428a4ef9c1e9362a.html +++ /dev/null @@ -1 +0,0 @@ -
    \ No newline at end of file diff --git a/charting_library/static/tv-chart.0fe96f4607a34f9418bc.html b/charting_library/static/tv-chart.0fe96f4607a34f9418bc.html new file mode 100644 index 00000000..5fa90fcc --- /dev/null +++ b/charting_library/static/tv-chart.0fe96f4607a34f9418bc.html @@ -0,0 +1 @@ +
    \ No newline at end of file diff --git a/datafeeds/README.md b/datafeeds/README.md new file mode 100644 index 00000000..cc8ed3f2 --- /dev/null +++ b/datafeeds/README.md @@ -0,0 +1,3 @@ +# Charting Library Datafeeds + +This folder contains implementation of Charting Library Datafeeds. diff --git a/datafeeds/udf/.npmrc b/datafeeds/udf/.npmrc new file mode 100644 index 00000000..43c97e71 --- /dev/null +++ b/datafeeds/udf/.npmrc @@ -0,0 +1 @@ +package-lock=false diff --git a/datafeeds/udf/README.md b/datafeeds/udf/README.md new file mode 100644 index 00000000..eb16f9e5 --- /dev/null +++ b/datafeeds/udf/README.md @@ -0,0 +1,44 @@ +# UDF Compatible Datafeed + +This folder contains [UDF](https://github.com/tradingview/charting_library/wiki/UDF) datafeed adapter. It implements [JS API](https://github.com/tradingview/charting_library/wiki/JS%20API) and makes HTTP requests using [UDF](https://github.com/tradingview/charting_library/wiki/UDF) protocol. + +You can use this datafeed adapter to plug your data if you implement [UDF](https://github.com/tradingview/charting_library/wiki/UDF) on your server. You can also scrutinize how it works before writing your own adapter. + +This datafeed is implemented in [TypeScript](https://github.com/Microsoft/TypeScript/). + +## Folders content + +- `./src` folder contains the source code in TypeScript. + +- `./lib` folder contains transpiled in es5 code. So, if you do not know how to use TypeScript - you can modify these files to change the result bundle later. + +- `./dist` folder contains bundled JavaScript files which can be inlined into a page and used in the Widget Constructor. + +## Build & bundle + +Before building or bundling your code you need to run `npm install` to install dependencies. + +`package.json` contains some handy scripts to build or generate the bundle: +- `npm run compile` to compile TypeScript source code into JavaScript files (output will be in `./lib` folder) +- `npm run bundle-js` to bundle multiple JavaScript files into one bundle (it also bundle polyfills) +- `npm run build` to compile and bundle (it is a combination of all above commands) + +NOTE: if you want to minify the bundle code, you need to set `ENV` environment variable to a value different from `development`. + +For example: +```bash +export ENV=prod +npm run bundle-js # or npm run build +``` + +or + +```bash +ENV=prod npm run bundle-js +``` + +or + +```bash +ENV=prod npm run build +``` diff --git a/datafeeds/udf/dist/bundle.js b/datafeeds/udf/dist/bundle.js new file mode 100644 index 00000000..198c222e --- /dev/null +++ b/datafeeds/udf/dist/bundle.js @@ -0,0 +1 @@ +!function(e,t){"object"==typeof exports&&"undefined"!=typeof module?t(exports):"function"==typeof define&&define.amd?define(["exports"],t):t(e.Datafeeds={})}(this,function(e){"use strict";var t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var r in t)t.hasOwnProperty(r)&&(e[r]=t[r])};var r=!1;function s(e){if(r){var t=new Date;console.log(t.toLocaleTimeString()+"."+t.getMilliseconds()+"> "+e)}}function o(e){return void 0===e?"":"string"==typeof e?e:e.message}var i=function(){function e(e,t){this._datafeedUrl=e,this._requester=t}return e.prototype.getBars=function(e,t,r,s){var i=this,n={symbol:e.ticker||"",resolution:t,from:r,to:s};return new Promise(function(e,t){i._requester.sendRequest(i._datafeedUrl,"history",n).then(function(r){if("ok"===r.s||"no_data"===r.s){var s=[],o={noData:!1};if("no_data"===r.s)o.noData=!0,o.nextTime=r.nextTime;else for(var i=void 0!==r.v,n=void 0!==r.o,a=0;a0)){this._requestsPending=0;var t=function(t){r._requestsPending+=1,r._updateDataForSubscriber(t).then(function(){e._requestsPending-=1,s("DataPulseProvider: data for #"+t+" updated successfully, pending="+e._requestsPending)}).catch(function(r){e._requestsPending-=1,s("DataPulseProvider: data for #"+t+" updated with error="+o(r)+", pending="+e._requestsPending)})},r=this;for(var i in this._subscribers)t(i)}},e.prototype._updateDataForSubscriber=function(e){var t=this,r=this._subscribers[e],s=parseInt((Date.now()/1e3).toString()),o=s-function(e,t){var r=0;r="D"===e?t:"M"===e?31*t:"W"===e?7*t:t*parseInt(e)/1440;return 24*r*60*60}(r.resolution,10);return this._historyProvider.getBars(r.symbolInfo,r.resolution,o,s).then(function(r){t._onSubscriberDataReceived(e,r)})},e.prototype._onSubscriberDataReceived=function(e,t){if(this._subscribers.hasOwnProperty(e)){var r=t.bars;if(0!==r.length){var o=r[r.length-1],i=this._subscribers[e];if(!(null!==i.lastBarTime&&o.timei.lastBarTime){if(r.length<2)throw new Error("Not enough bars in history for proper pulse update. Need at least 2.");var n=r[r.length-2];i.listener(n)}i.lastBarTime=o.time,i.listener(o)}}}else s("DataPulseProvider: Data comes for already unsubscribed subscription #"+e)},e}();var a=function(){function e(e){this._subscribers={},this._requestsPending=0,this._quotesProvider=e,setInterval(this._updateQuotes.bind(this,1),1e4),setInterval(this._updateQuotes.bind(this,0),6e4)}return e.prototype.subscribeQuotes=function(e,t,r,o){this._subscribers[o]={symbols:e,fastSymbols:t,listener:r},s("QuotesPulseProvider: subscribed quotes with #"+o)},e.prototype.unsubscribeQuotes=function(e){delete this._subscribers[e],s("QuotesPulseProvider: unsubscribed quotes with #"+e)},e.prototype._updateQuotes=function(e){var t=this;if(!(this._requestsPending>0)){var r=function(r){i._requestsPending++;var n=i._subscribers[r];i._quotesProvider.getQuotes(1===e?n.fastSymbols:n.symbols).then(function(o){t._requestsPending--,t._subscribers.hasOwnProperty(r)&&(n.listener(o),s("QuotesPulseProvider: data for #"+r+" ("+e+") updated successfully, pending="+t._requestsPending))}).catch(function(i){t._requestsPending--,s("QuotesPulseProvider: data for #"+r+" ("+e+") updated with error="+o(i)+", pending="+t._requestsPending)})},i=this;for(var n in this._subscribers)r(n)}},e}();function u(e,t,r){var s=e[t];return Array.isArray(s)?s[r]:s}var c=function(){function e(e,t,r){this._exchangesList=["NYSE","FOREX","AMEX"],this._symbolsInfo={},this._symbolsList=[],this._datafeedUrl=e,this._datafeedSupportedResolutions=t,this._requester=r,this._readyPromise=this._init(),this._readyPromise.catch(function(e){console.error("SymbolsStorage: Cannot init, error="+e.toString())})}return e.prototype.resolveSymbol=function(e){var t=this;return this._readyPromise.then(function(){var r=t._symbolsInfo[e];return void 0===r?Promise.reject("invalid symbol"):Promise.resolve(r)})},e.prototype.searchSymbols=function(e,t,r,s){var o=this;return this._readyPromise.then(function(){var i=[],n=0===e.length;e=e.toUpperCase();for(var a=function(s){var a=o._symbolsInfo[s];if(void 0===a)return"continue";if(r.length>0&&a.type!==r)return"continue";if(t&&t.length>0&&a.exchange!==t)return"continue";var u=a.name.toUpperCase().indexOf(e),c=a.description.toUpperCase().indexOf(e);if((n||u>=0||c>=0)&&!i.some(function(e){return e.symbolInfo===a})){var l=u>=0?u:8e3+c;i.push({symbolInfo:a,weight:l})}},u=0,c=o._symbolsList;u-1};h.prototype.append=function(t,e){t=a(t),e=u(e);var r=this.map[t];this.map[t]=r?r+","+e:e},h.prototype.delete=function(t){delete this.map[a(t)]},h.prototype.get=function(t){return t=a(t),this.has(t)?this.map[t]:null},h.prototype.has=function(t){return this.map.hasOwnProperty(a(t))},h.prototype.set=function(t,e){this.map[a(t)]=u(e)},h.prototype.forEach=function(t,e){for(var r in this.map)this.map.hasOwnProperty(r)&&t.call(e,this.map[r],r,this)},h.prototype.keys=function(){var t=[];return this.forEach(function(e,r){t.push(r)}),f(t)},h.prototype.values=function(){var t=[];return this.forEach(function(e){t.push(e)}),f(t)},h.prototype.entries=function(){var t=[];return this.forEach(function(e,r){t.push([r,e])}),f(t)},e.iterable&&(h.prototype[Symbol.iterator]=h.prototype.entries);var i=["DELETE","GET","HEAD","OPTIONS","POST","PUT"];b.prototype.clone=function(){return new b(this,{body:this._bodyInit})},p.call(b.prototype),p.call(w.prototype),w.prototype.clone=function(){return new w(this._bodyInit,{status:this.status,statusText:this.statusText,headers:new h(this.headers),url:this.url})},w.error=function(){var t=new w(null,{status:0,statusText:""});return t.type="error",t};var s=[301,302,303,307,308];w.redirect=function(t,e){if(-1===s.indexOf(e))throw new RangeError("Invalid status code");return new w(null,{status:e,headers:{location:t}})},t.Headers=h,t.Request=b,t.Response=w,t.fetch=function(t,r){return new Promise(function(n,o){var i=new b(t,r),s=new XMLHttpRequest;s.onload=function(){var t,e,r={status:s.status,statusText:s.statusText,headers:(t=s.getAllResponseHeaders()||"",e=new h,t.split(/\r?\n/).forEach(function(t){var r=t.split(":"),n=r.shift().trim();if(n){var o=r.join(":").trim();e.append(n,o)}}),e)};r.url="responseURL"in s?s.responseURL:r.headers.get("X-Request-URL");var o="response"in s?s.response:s.responseText;n(new w(o,r))},s.onerror=function(){o(new TypeError("Network request failed"))},s.ontimeout=function(){o(new TypeError("Network request failed"))},s.open(i.method,i.url,!0),"include"===i.credentials&&(s.withCredentials=!0),"responseType"in s&&e.blob&&(s.responseType="blob"),i.headers.forEach(function(t,e){s.setRequestHeader(e,t)}),s.send(void 0===i._bodyInit?null:i._bodyInit)})},t.fetch.polyfill=!0}function a(t){if("string"!=typeof t&&(t=String(t)),/[^a-z0-9\-#$%&'*+.\^_`|~]/i.test(t))throw new TypeError("Invalid character in header field name");return t.toLowerCase()}function u(t){return"string"!=typeof t&&(t=String(t)),t}function f(t){var r={next:function(){var e=t.shift();return{done:void 0===e,value:e}}};return e.iterable&&(r[Symbol.iterator]=function(){return r}),r}function h(t){this.map={},t instanceof h?t.forEach(function(t,e){this.append(e,t)},this):Array.isArray(t)?t.forEach(function(t){this.append(t[0],t[1])},this):t&&Object.getOwnPropertyNames(t).forEach(function(e){this.append(e,t[e])},this)}function c(t){if(t.bodyUsed)return Promise.reject(new TypeError("Already read"));t.bodyUsed=!0}function d(t){return new Promise(function(e,r){t.onload=function(){e(t.result)},t.onerror=function(){r(t.error)}})}function l(t){var e=new FileReader,r=d(e);return e.readAsArrayBuffer(t),r}function y(t){if(t.slice)return t.slice(0);var e=new Uint8Array(t.byteLength);return e.set(new Uint8Array(t)),e.buffer}function p(){return this.bodyUsed=!1,this._initBody=function(t){if(this._bodyInit=t,t)if("string"==typeof t)this._bodyText=t;else if(e.blob&&Blob.prototype.isPrototypeOf(t))this._bodyBlob=t;else if(e.formData&&FormData.prototype.isPrototypeOf(t))this._bodyFormData=t;else if(e.searchParams&&URLSearchParams.prototype.isPrototypeOf(t))this._bodyText=t.toString();else if(e.arrayBuffer&&e.blob&&n(t))this._bodyArrayBuffer=y(t.buffer),this._bodyInit=new Blob([this._bodyArrayBuffer]);else{if(!e.arrayBuffer||!ArrayBuffer.prototype.isPrototypeOf(t)&&!o(t))throw new Error("unsupported BodyInit type");this._bodyArrayBuffer=y(t)}else this._bodyText="";this.headers.get("content-type")||("string"==typeof t?this.headers.set("content-type","text/plain;charset=UTF-8"):this._bodyBlob&&this._bodyBlob.type?this.headers.set("content-type",this._bodyBlob.type):e.searchParams&&URLSearchParams.prototype.isPrototypeOf(t)&&this.headers.set("content-type","application/x-www-form-urlencoded;charset=UTF-8"))},e.blob&&(this.blob=function(){var t=c(this);if(t)return t;if(this._bodyBlob)return Promise.resolve(this._bodyBlob);if(this._bodyArrayBuffer)return Promise.resolve(new Blob([this._bodyArrayBuffer]));if(this._bodyFormData)throw new Error("could not read FormData body as blob");return Promise.resolve(new Blob([this._bodyText]))},this.arrayBuffer=function(){return this._bodyArrayBuffer?c(this)||Promise.resolve(this._bodyArrayBuffer):this.blob().then(l)}),this.text=function(){var t,e,r,n=c(this);if(n)return n;if(this._bodyBlob)return t=this._bodyBlob,e=new FileReader,r=d(e),e.readAsText(t),r;if(this._bodyArrayBuffer)return Promise.resolve(function(t){for(var e=new Uint8Array(t),r=new Array(e.length),n=0;n-1?n:r),this.mode=e.mode||this.mode||null,this.referrer=null,("GET"===this.method||"HEAD"===this.method)&&o)throw new TypeError("Body not allowed for GET or HEAD requests");this._initBody(o)}function m(t){var e=new FormData;return t.trim().split("&").forEach(function(t){if(t){var r=t.split("="),n=r.shift().replace(/\+/g," "),o=r.join("=").replace(/\+/g," ");e.append(decodeURIComponent(n),decodeURIComponent(o))}}),e}function w(t,e){e||(e={}),this.type="default",this.status="status"in e?e.status:200,this.ok=this.status>=200&&this.status<300,this.statusText="statusText"in e?e.statusText:"OK",this.headers=new h(e.headers),this.url=e.url||"",this._initBody(t)}}("undefined"!=typeof self?self:window)}(); diff --git a/datafeeds/udf/lib/data-pulse-provider.js b/datafeeds/udf/lib/data-pulse-provider.js new file mode 100644 index 00000000..d6a12ded --- /dev/null +++ b/datafeeds/udf/lib/data-pulse-provider.js @@ -0,0 +1,107 @@ +import { getErrorMessage, logMessage, } from './helpers'; +var DataPulseProvider = /** @class */ (function () { + function DataPulseProvider(historyProvider, updateFrequency) { + this._subscribers = {}; + this._requestsPending = 0; + this._historyProvider = historyProvider; + setInterval(this._updateData.bind(this), updateFrequency); + } + DataPulseProvider.prototype.subscribeBars = function (symbolInfo, resolution, newDataCallback, listenerGuid) { + if (this._subscribers.hasOwnProperty(listenerGuid)) { + logMessage("DataPulseProvider: already has subscriber with id=" + listenerGuid); + return; + } + this._subscribers[listenerGuid] = { + lastBarTime: null, + listener: newDataCallback, + resolution: resolution, + symbolInfo: symbolInfo, + }; + logMessage("DataPulseProvider: subscribed for #" + listenerGuid + " - {" + symbolInfo.name + ", " + resolution + "}"); + }; + DataPulseProvider.prototype.unsubscribeBars = function (listenerGuid) { + delete this._subscribers[listenerGuid]; + logMessage("DataPulseProvider: unsubscribed for #" + listenerGuid); + }; + DataPulseProvider.prototype._updateData = function () { + var _this = this; + if (this._requestsPending > 0) { + return; + } + this._requestsPending = 0; + var _loop_1 = function (listenerGuid) { + this_1._requestsPending += 1; + this_1._updateDataForSubscriber(listenerGuid) + .then(function () { + _this._requestsPending -= 1; + logMessage("DataPulseProvider: data for #" + listenerGuid + " updated successfully, pending=" + _this._requestsPending); + }) + .catch(function (reason) { + _this._requestsPending -= 1; + logMessage("DataPulseProvider: data for #" + listenerGuid + " updated with error=" + getErrorMessage(reason) + ", pending=" + _this._requestsPending); + }); + }; + var this_1 = this; + for (var listenerGuid in this._subscribers) { + _loop_1(listenerGuid); + } + }; + DataPulseProvider.prototype._updateDataForSubscriber = function (listenerGuid) { + var _this = this; + var subscriptionRecord = this._subscribers[listenerGuid]; + var rangeEndTime = parseInt((Date.now() / 1000).toString()); + // BEWARE: please note we really need 2 bars, not the only last one + // see the explanation below. `10` is the `large enough` value to work around holidays + var rangeStartTime = rangeEndTime - periodLengthSeconds(subscriptionRecord.resolution, 10); + return this._historyProvider.getBars(subscriptionRecord.symbolInfo, subscriptionRecord.resolution, rangeStartTime, rangeEndTime) + .then(function (result) { + _this._onSubscriberDataReceived(listenerGuid, result); + }); + }; + DataPulseProvider.prototype._onSubscriberDataReceived = function (listenerGuid, result) { + // means the subscription was cancelled while waiting for data + if (!this._subscribers.hasOwnProperty(listenerGuid)) { + logMessage("DataPulseProvider: Data comes for already unsubscribed subscription #" + listenerGuid); + return; + } + var bars = result.bars; + if (bars.length === 0) { + return; + } + var lastBar = bars[bars.length - 1]; + var subscriptionRecord = this._subscribers[listenerGuid]; + if (subscriptionRecord.lastBarTime !== null && lastBar.time < subscriptionRecord.lastBarTime) { + return; + } + var isNewBar = subscriptionRecord.lastBarTime !== null && lastBar.time > subscriptionRecord.lastBarTime; + // Pulse updating may miss some trades data (ie, if pulse period = 10 secods and new bar is started 5 seconds later after the last update, the + // old bar's last 5 seconds trades will be lost). Thus, at fist we should broadcast old bar updates when it's ready. + if (isNewBar) { + if (bars.length < 2) { + throw new Error('Not enough bars in history for proper pulse update. Need at least 2.'); + } + var previousBar = bars[bars.length - 2]; + subscriptionRecord.listener(previousBar); + } + subscriptionRecord.lastBarTime = lastBar.time; + subscriptionRecord.listener(lastBar); + }; + return DataPulseProvider; +}()); +export { DataPulseProvider }; +function periodLengthSeconds(resolution, requiredPeriodsCount) { + var daysCount = 0; + if (resolution === 'D') { + daysCount = requiredPeriodsCount; + } + else if (resolution === 'M') { + daysCount = 31 * requiredPeriodsCount; + } + else if (resolution === 'W') { + daysCount = 7 * requiredPeriodsCount; + } + else { + daysCount = requiredPeriodsCount * parseInt(resolution) / (24 * 60); + } + return daysCount * 24 * 60 * 60; +} diff --git a/datafeeds/udf/lib/helpers.js b/datafeeds/udf/lib/helpers.js new file mode 100644 index 00000000..47904ec5 --- /dev/null +++ b/datafeeds/udf/lib/helpers.js @@ -0,0 +1,19 @@ +/** + * If you want to enable logs from datafeed set it to `true` + */ +var isLoggingEnabled = false; +export function logMessage(message) { + if (isLoggingEnabled) { + var now = new Date(); + console.log(now.toLocaleTimeString() + "." + now.getMilliseconds() + "> " + message); + } +} +export function getErrorMessage(error) { + if (error === undefined) { + return ''; + } + else if (typeof error === 'string') { + return error; + } + return error.message; +} diff --git a/datafeeds/udf/lib/history-provider.js b/datafeeds/udf/lib/history-provider.js new file mode 100644 index 00000000..4214ab6b --- /dev/null +++ b/datafeeds/udf/lib/history-provider.js @@ -0,0 +1,66 @@ +import { getErrorMessage, } from './helpers'; +var HistoryProvider = /** @class */ (function () { + function HistoryProvider(datafeedUrl, requester) { + this._datafeedUrl = datafeedUrl; + this._requester = requester; + } + HistoryProvider.prototype.getBars = function (symbolInfo, resolution, rangeStartDate, rangeEndDate) { + var _this = this; + var requestParams = { + symbol: symbolInfo.ticker || '', + resolution: resolution, + from: rangeStartDate, + to: rangeEndDate, + }; + return new Promise(function (resolve, reject) { + _this._requester.sendRequest(_this._datafeedUrl, 'history', requestParams) + .then(function (response) { + if (response.s !== 'ok' && response.s !== 'no_data') { + reject(response.errmsg); + return; + } + var bars = []; + var meta = { + noData: false, + }; + if (response.s === 'no_data') { + meta.noData = true; + meta.nextTime = response.nextTime; + } + else { + var volumePresent = response.v !== undefined; + var ohlPresent = response.o !== undefined; + for (var i = 0; i < response.t.length; ++i) { + var barValue = { + time: response.t[i] * 1000, + close: Number(response.c[i]), + open: Number(response.c[i]), + high: Number(response.c[i]), + low: Number(response.c[i]), + }; + if (ohlPresent) { + barValue.open = Number(response.o[i]); + barValue.high = Number(response.h[i]); + barValue.low = Number(response.l[i]); + } + if (volumePresent) { + barValue.volume = Number(response.v[i]); + } + bars.push(barValue); + } + } + resolve({ + bars: bars, + meta: meta, + }); + }) + .catch(function (reason) { + var reasonString = getErrorMessage(reason); + console.warn("HistoryProvider: getBars() failed, error=" + reasonString); + reject(reasonString); + }); + }); + }; + return HistoryProvider; +}()); +export { HistoryProvider }; diff --git a/datafeeds/udf/lib/iquotes-provider.js b/datafeeds/udf/lib/iquotes-provider.js new file mode 100644 index 00000000..e69de29b diff --git a/datafeeds/udf/lib/quotes-provider.js b/datafeeds/udf/lib/quotes-provider.js new file mode 100644 index 00000000..1cdde2ca --- /dev/null +++ b/datafeeds/udf/lib/quotes-provider.js @@ -0,0 +1,28 @@ +import { getErrorMessage, logMessage, } from './helpers'; +var QuotesProvider = /** @class */ (function () { + function QuotesProvider(datafeedUrl, requester) { + this._datafeedUrl = datafeedUrl; + this._requester = requester; + } + QuotesProvider.prototype.getQuotes = function (symbols) { + var _this = this; + return new Promise(function (resolve, reject) { + _this._requester.sendRequest(_this._datafeedUrl, 'quotes', { symbols: symbols }) + .then(function (response) { + if (response.s === 'ok') { + resolve(response.d); + } + else { + reject(response.errmsg); + } + }) + .catch(function (error) { + var errorMessage = getErrorMessage(error); + logMessage("QuotesProvider: getQuotes failed, error=" + errorMessage); + reject("network error: " + errorMessage); + }); + }); + }; + return QuotesProvider; +}()); +export { QuotesProvider }; diff --git a/datafeeds/udf/lib/quotes-pulse-provider.js b/datafeeds/udf/lib/quotes-pulse-provider.js new file mode 100644 index 00000000..25ab79d7 --- /dev/null +++ b/datafeeds/udf/lib/quotes-pulse-provider.js @@ -0,0 +1,51 @@ +import { getErrorMessage, logMessage, } from './helpers'; +var QuotesPulseProvider = /** @class */ (function () { + function QuotesPulseProvider(quotesProvider) { + this._subscribers = {}; + this._requestsPending = 0; + this._quotesProvider = quotesProvider; + setInterval(this._updateQuotes.bind(this, 1 /* Fast */), 10000 /* Fast */); + setInterval(this._updateQuotes.bind(this, 0 /* General */), 60000 /* General */); + } + QuotesPulseProvider.prototype.subscribeQuotes = function (symbols, fastSymbols, onRealtimeCallback, listenerGuid) { + this._subscribers[listenerGuid] = { + symbols: symbols, + fastSymbols: fastSymbols, + listener: onRealtimeCallback, + }; + logMessage("QuotesPulseProvider: subscribed quotes with #" + listenerGuid); + }; + QuotesPulseProvider.prototype.unsubscribeQuotes = function (listenerGuid) { + delete this._subscribers[listenerGuid]; + logMessage("QuotesPulseProvider: unsubscribed quotes with #" + listenerGuid); + }; + QuotesPulseProvider.prototype._updateQuotes = function (updateType) { + var _this = this; + if (this._requestsPending > 0) { + return; + } + var _loop_1 = function (listenerGuid) { + this_1._requestsPending++; + var subscriptionRecord = this_1._subscribers[listenerGuid]; + this_1._quotesProvider.getQuotes(updateType === 1 /* Fast */ ? subscriptionRecord.fastSymbols : subscriptionRecord.symbols) + .then(function (data) { + _this._requestsPending--; + if (!_this._subscribers.hasOwnProperty(listenerGuid)) { + return; + } + subscriptionRecord.listener(data); + logMessage("QuotesPulseProvider: data for #" + listenerGuid + " (" + updateType + ") updated successfully, pending=" + _this._requestsPending); + }) + .catch(function (reason) { + _this._requestsPending--; + logMessage("QuotesPulseProvider: data for #" + listenerGuid + " (" + updateType + ") updated with error=" + getErrorMessage(reason) + ", pending=" + _this._requestsPending); + }); + }; + var this_1 = this; + for (var listenerGuid in this._subscribers) { + _loop_1(listenerGuid); + } + }; + return QuotesPulseProvider; +}()); +export { QuotesPulseProvider }; diff --git a/datafeeds/udf/lib/requester.js b/datafeeds/udf/lib/requester.js new file mode 100644 index 00000000..6af926f9 --- /dev/null +++ b/datafeeds/udf/lib/requester.js @@ -0,0 +1,29 @@ +import { logMessage } from './helpers'; +var Requester = /** @class */ (function () { + function Requester(headers) { + if (headers) { + this._headers = headers; + } + } + Requester.prototype.sendRequest = function (datafeedUrl, urlPath, params) { + if (params !== undefined) { + var paramKeys = Object.keys(params); + if (paramKeys.length !== 0) { + urlPath += '?'; + } + urlPath += paramKeys.map(function (key) { + return encodeURIComponent(key) + "=" + encodeURIComponent(params[key].toString()); + }).join('&'); + } + logMessage('New request: ' + urlPath); + var options = {}; + if (this._headers !== undefined) { + options.headers = this._headers; + } + return fetch(datafeedUrl + "/" + urlPath, options) + .then(function (response) { return response.text(); }) + .then(function (responseTest) { return JSON.parse(responseTest); }); + }; + return Requester; +}()); +export { Requester }; diff --git a/datafeeds/udf/lib/symbols-storage.js b/datafeeds/udf/lib/symbols-storage.js new file mode 100644 index 00000000..b2677fca --- /dev/null +++ b/datafeeds/udf/lib/symbols-storage.js @@ -0,0 +1,169 @@ +import { getErrorMessage, logMessage, } from './helpers'; +function extractField(data, field, arrayIndex) { + var value = data[field]; + return Array.isArray(value) ? value[arrayIndex] : value; +} +var SymbolsStorage = /** @class */ (function () { + function SymbolsStorage(datafeedUrl, datafeedSupportedResolutions, requester) { + this._exchangesList = ['NYSE', 'FOREX', 'AMEX']; + this._symbolsInfo = {}; + this._symbolsList = []; + this._datafeedUrl = datafeedUrl; + this._datafeedSupportedResolutions = datafeedSupportedResolutions; + this._requester = requester; + this._readyPromise = this._init(); + this._readyPromise.catch(function (error) { + // seems it is impossible + console.error("SymbolsStorage: Cannot init, error=" + error.toString()); + }); + } + // BEWARE: this function does not consider symbol's exchange + SymbolsStorage.prototype.resolveSymbol = function (symbolName) { + var _this = this; + return this._readyPromise.then(function () { + var symbolInfo = _this._symbolsInfo[symbolName]; + if (symbolInfo === undefined) { + return Promise.reject('invalid symbol'); + } + return Promise.resolve(symbolInfo); + }); + }; + SymbolsStorage.prototype.searchSymbols = function (searchString, exchange, symbolType, maxSearchResults) { + var _this = this; + return this._readyPromise.then(function () { + var weightedResult = []; + var queryIsEmpty = searchString.length === 0; + searchString = searchString.toUpperCase(); + var _loop_1 = function (symbolName) { + var symbolInfo = _this._symbolsInfo[symbolName]; + if (symbolInfo === undefined) { + return "continue"; + } + if (symbolType.length > 0 && symbolInfo.type !== symbolType) { + return "continue"; + } + if (exchange && exchange.length > 0 && symbolInfo.exchange !== exchange) { + return "continue"; + } + var positionInName = symbolInfo.name.toUpperCase().indexOf(searchString); + var positionInDescription = symbolInfo.description.toUpperCase().indexOf(searchString); + if (queryIsEmpty || positionInName >= 0 || positionInDescription >= 0) { + var alreadyExists = weightedResult.some(function (item) { return item.symbolInfo === symbolInfo; }); + if (!alreadyExists) { + var weight = positionInName >= 0 ? positionInName : 8000 + positionInDescription; + weightedResult.push({ symbolInfo: symbolInfo, weight: weight }); + } + } + }; + for (var _i = 0, _a = _this._symbolsList; _i < _a.length; _i++) { + var symbolName = _a[_i]; + _loop_1(symbolName); + } + var result = weightedResult + .sort(function (item1, item2) { return item1.weight - item2.weight; }) + .slice(0, maxSearchResults) + .map(function (item) { + var symbolInfo = item.symbolInfo; + return { + symbol: symbolInfo.name, + full_name: symbolInfo.full_name, + description: symbolInfo.description, + exchange: symbolInfo.exchange, + params: [], + type: symbolInfo.type, + ticker: symbolInfo.name, + }; + }); + return Promise.resolve(result); + }); + }; + SymbolsStorage.prototype._init = function () { + var _this = this; + var promises = []; + var alreadyRequestedExchanges = {}; + for (var _i = 0, _a = this._exchangesList; _i < _a.length; _i++) { + var exchange = _a[_i]; + if (alreadyRequestedExchanges[exchange]) { + continue; + } + alreadyRequestedExchanges[exchange] = true; + promises.push(this._requestExchangeData(exchange)); + } + return Promise.all(promises) + .then(function () { + _this._symbolsList.sort(); + logMessage('SymbolsStorage: All exchanges data loaded'); + }); + }; + SymbolsStorage.prototype._requestExchangeData = function (exchange) { + var _this = this; + return new Promise(function (resolve, reject) { + _this._requester.sendRequest(_this._datafeedUrl, 'symbol_info', { group: exchange }) + .then(function (response) { + try { + _this._onExchangeDataReceived(exchange, response); + } + catch (error) { + reject(error); + return; + } + resolve(); + }) + .catch(function (reason) { + logMessage("SymbolsStorage: Request data for exchange '" + exchange + "' failed, reason=" + getErrorMessage(reason)); + resolve(); + }); + }); + }; + SymbolsStorage.prototype._onExchangeDataReceived = function (exchange, data) { + var symbolIndex = 0; + try { + var symbolsCount = data.symbol.length; + var tickerPresent = data.ticker !== undefined; + for (; symbolIndex < symbolsCount; ++symbolIndex) { + var symbolName = data.symbol[symbolIndex]; + var listedExchange = extractField(data, 'exchange-listed', symbolIndex); + var tradedExchange = extractField(data, 'exchange-traded', symbolIndex); + var fullName = tradedExchange + ':' + symbolName; + var ticker = tickerPresent ? extractField(data, 'ticker', symbolIndex) : symbolName; + var symbolInfo = { + ticker: ticker, + name: symbolName, + base_name: [listedExchange + ':' + symbolName], + full_name: fullName, + listed_exchange: listedExchange, + exchange: tradedExchange, + description: extractField(data, 'description', symbolIndex), + has_intraday: definedValueOrDefault(extractField(data, 'has-intraday', symbolIndex), false), + has_no_volume: definedValueOrDefault(extractField(data, 'has-no-volume', symbolIndex), false), + minmov: extractField(data, 'minmovement', symbolIndex) || extractField(data, 'minmov', symbolIndex) || 0, + minmove2: extractField(data, 'minmove2', symbolIndex) || extractField(data, 'minmov2', symbolIndex), + fractional: extractField(data, 'fractional', symbolIndex), + pricescale: extractField(data, 'pricescale', symbolIndex), + type: extractField(data, 'type', symbolIndex), + session: extractField(data, 'session-regular', symbolIndex), + timezone: extractField(data, 'timezone', symbolIndex), + supported_resolutions: definedValueOrDefault(extractField(data, 'supported-resolutions', symbolIndex), this._datafeedSupportedResolutions), + force_session_rebuild: extractField(data, 'force-session-rebuild', symbolIndex), + has_daily: definedValueOrDefault(extractField(data, 'has-daily', symbolIndex), true), + intraday_multipliers: definedValueOrDefault(extractField(data, 'intraday-multipliers', symbolIndex), ['1', '5', '15', '30', '60']), + has_weekly_and_monthly: extractField(data, 'has-weekly-and-monthly', symbolIndex), + has_empty_bars: extractField(data, 'has-empty-bars', symbolIndex), + volume_precision: definedValueOrDefault(extractField(data, 'volume-precision', symbolIndex), 0), + }; + this._symbolsInfo[ticker] = symbolInfo; + this._symbolsInfo[symbolName] = symbolInfo; + this._symbolsInfo[fullName] = symbolInfo; + this._symbolsList.push(symbolName); + } + } + catch (error) { + throw new Error("SymbolsStorage: API error when processing exchange " + exchange + " symbol #" + symbolIndex + " (" + data.symbol[symbolIndex] + "): " + error.message); + } + }; + return SymbolsStorage; +}()); +export { SymbolsStorage }; +function definedValueOrDefault(value, defaultValue) { + return value !== undefined ? value : defaultValue; +} diff --git a/datafeeds/udf/lib/udf-compatible-datafeed-base.js b/datafeeds/udf/lib/udf-compatible-datafeed-base.js new file mode 100644 index 00000000..4283fd74 --- /dev/null +++ b/datafeeds/udf/lib/udf-compatible-datafeed-base.js @@ -0,0 +1,243 @@ +import { getErrorMessage, logMessage, } from './helpers'; +import { HistoryProvider, } from './history-provider'; +import { DataPulseProvider } from './data-pulse-provider'; +import { QuotesPulseProvider } from './quotes-pulse-provider'; +import { SymbolsStorage } from './symbols-storage'; +function extractField(data, field, arrayIndex) { + var value = data[field]; + return Array.isArray(value) ? value[arrayIndex] : value; +} +/** + * This class implements interaction with UDF-compatible datafeed. + * See UDF protocol reference at https://github.com/tradingview/charting_library/wiki/UDF + */ +var UDFCompatibleDatafeedBase = /** @class */ (function () { + function UDFCompatibleDatafeedBase(datafeedURL, quotesProvider, requester, updateFrequency) { + if (updateFrequency === void 0) { updateFrequency = 10 * 1000; } + var _this = this; + this._configuration = defaultConfiguration(); + this._symbolsStorage = null; + this._datafeedURL = datafeedURL; + this._requester = requester; + this._historyProvider = new HistoryProvider(datafeedURL, this._requester); + this._quotesProvider = quotesProvider; + this._dataPulseProvider = new DataPulseProvider(this._historyProvider, updateFrequency); + this._quotesPulseProvider = new QuotesPulseProvider(this._quotesProvider); + this._configurationReadyPromise = this._requestConfiguration() + .then(function (configuration) { + if (configuration === null) { + configuration = defaultConfiguration(); + } + _this._setupWithConfiguration(configuration); + }); + } + UDFCompatibleDatafeedBase.prototype.onReady = function (callback) { + var _this = this; + this._configurationReadyPromise.then(function () { + callback(_this._configuration); + }); + }; + UDFCompatibleDatafeedBase.prototype.getQuotes = function (symbols, onDataCallback, onErrorCallback) { + this._quotesProvider.getQuotes(symbols).then(onDataCallback).catch(onErrorCallback); + }; + UDFCompatibleDatafeedBase.prototype.subscribeQuotes = function (symbols, fastSymbols, onRealtimeCallback, listenerGuid) { + this._quotesPulseProvider.subscribeQuotes(symbols, fastSymbols, onRealtimeCallback, listenerGuid); + }; + UDFCompatibleDatafeedBase.prototype.unsubscribeQuotes = function (listenerGuid) { + this._quotesPulseProvider.unsubscribeQuotes(listenerGuid); + }; + UDFCompatibleDatafeedBase.prototype.calculateHistoryDepth = function (resolution, resolutionBack, intervalBack) { + return undefined; + }; + UDFCompatibleDatafeedBase.prototype.getMarks = function (symbolInfo, startDate, endDate, onDataCallback, resolution) { + if (!this._configuration.supports_marks) { + return; + } + var requestParams = { + symbol: symbolInfo.ticker || '', + from: startDate, + to: endDate, + resolution: resolution, + }; + this._send('marks', requestParams) + .then(function (response) { + if (!Array.isArray(response)) { + var result = []; + for (var i = 0; i < response.id.length; ++i) { + result.push({ + id: extractField(response, 'id', i), + time: extractField(response, 'time', i), + color: extractField(response, 'color', i), + text: extractField(response, 'text', i), + label: extractField(response, 'label', i), + labelFontColor: extractField(response, 'labelFontColor', i), + minSize: extractField(response, 'minSize', i), + }); + } + response = result; + } + onDataCallback(response); + }) + .catch(function (error) { + logMessage("UdfCompatibleDatafeed: Request marks failed: " + getErrorMessage(error)); + onDataCallback([]); + }); + }; + UDFCompatibleDatafeedBase.prototype.getTimescaleMarks = function (symbolInfo, startDate, endDate, onDataCallback, resolution) { + if (!this._configuration.supports_timescale_marks) { + return; + } + var requestParams = { + symbol: symbolInfo.ticker || '', + from: startDate, + to: endDate, + resolution: resolution, + }; + this._send('timescale_marks', requestParams) + .then(function (response) { + if (!Array.isArray(response)) { + var result = []; + for (var i = 0; i < response.id.length; ++i) { + result.push({ + id: extractField(response, 'id', i), + time: extractField(response, 'time', i), + color: extractField(response, 'color', i), + label: extractField(response, 'label', i), + tooltip: extractField(response, 'tooltip', i), + }); + } + response = result; + } + onDataCallback(response); + }) + .catch(function (error) { + logMessage("UdfCompatibleDatafeed: Request timescale marks failed: " + getErrorMessage(error)); + onDataCallback([]); + }); + }; + UDFCompatibleDatafeedBase.prototype.getServerTime = function (callback) { + if (!this._configuration.supports_time) { + return; + } + this._send('time') + .then(function (response) { + var time = parseInt(response); + if (!isNaN(time)) { + callback(time); + } + }) + .catch(function (error) { + logMessage("UdfCompatibleDatafeed: Fail to load server time, error=" + getErrorMessage(error)); + }); + }; + UDFCompatibleDatafeedBase.prototype.searchSymbols = function (userInput, exchange, symbolType, onResult) { + if (this._configuration.supports_search) { + var params = { + limit: 30 /* SearchItemsLimit */, + query: userInput.toUpperCase(), + type: symbolType, + exchange: exchange, + }; + this._send('search', params) + .then(function (response) { + if (response.s !== undefined) { + logMessage("UdfCompatibleDatafeed: search symbols error=" + response.errmsg); + onResult([]); + return; + } + onResult(response); + }) + .catch(function (reason) { + logMessage("UdfCompatibleDatafeed: Search symbols for '" + userInput + "' failed. Error=" + getErrorMessage(reason)); + onResult([]); + }); + } + else { + if (this._symbolsStorage === null) { + throw new Error('UdfCompatibleDatafeed: inconsistent configuration (symbols storage)'); + } + this._symbolsStorage.searchSymbols(userInput, exchange, symbolType, 30 /* SearchItemsLimit */) + .then(onResult) + .catch(onResult.bind(null, [])); + } + }; + UDFCompatibleDatafeedBase.prototype.resolveSymbol = function (symbolName, onResolve, onError) { + logMessage('Resolve requested'); + var resolveRequestStartTime = Date.now(); + function onResultReady(symbolInfo) { + logMessage("Symbol resolved: " + (Date.now() - resolveRequestStartTime) + "ms"); + onResolve(symbolInfo); + } + if (!this._configuration.supports_group_request) { + var params = { + symbol: symbolName, + }; + this._send('symbols', params) + .then(function (response) { + if (response.s !== undefined) { + onError('unknown_symbol'); + } + else { + onResultReady(response); + } + }) + .catch(function (reason) { + logMessage("UdfCompatibleDatafeed: Error resolving symbol: " + getErrorMessage(reason)); + onError('unknown_symbol'); + }); + } + else { + if (this._symbolsStorage === null) { + throw new Error('UdfCompatibleDatafeed: inconsistent configuration (symbols storage)'); + } + this._symbolsStorage.resolveSymbol(symbolName).then(onResultReady).catch(onError); + } + }; + UDFCompatibleDatafeedBase.prototype.getBars = function (symbolInfo, resolution, rangeStartDate, rangeEndDate, onResult, onError) { + this._historyProvider.getBars(symbolInfo, resolution, rangeStartDate, rangeEndDate) + .then(function (result) { + onResult(result.bars, result.meta); + }) + .catch(onError); + }; + UDFCompatibleDatafeedBase.prototype.subscribeBars = function (symbolInfo, resolution, onTick, listenerGuid, onResetCacheNeededCallback) { + this._dataPulseProvider.subscribeBars(symbolInfo, resolution, onTick, listenerGuid); + }; + UDFCompatibleDatafeedBase.prototype.unsubscribeBars = function (listenerGuid) { + this._dataPulseProvider.unsubscribeBars(listenerGuid); + }; + UDFCompatibleDatafeedBase.prototype._requestConfiguration = function () { + return this._send('config') + .catch(function (reason) { + logMessage("UdfCompatibleDatafeed: Cannot get datafeed configuration - use default, error=" + getErrorMessage(reason)); + return null; + }); + }; + UDFCompatibleDatafeedBase.prototype._send = function (urlPath, params) { + return this._requester.sendRequest(this._datafeedURL, urlPath, params); + }; + UDFCompatibleDatafeedBase.prototype._setupWithConfiguration = function (configurationData) { + this._configuration = configurationData; + if (configurationData.exchanges === undefined) { + configurationData.exchanges = []; + } + if (!configurationData.supports_search && !configurationData.supports_group_request) { + throw new Error('Unsupported datafeed configuration. Must either support search, or support group request'); + } + if (configurationData.supports_group_request || !configurationData.supports_search) { + this._symbolsStorage = new SymbolsStorage(this._datafeedURL, configurationData.supported_resolutions || [], this._requester); + } + logMessage("UdfCompatibleDatafeed: Initialized with " + JSON.stringify(configurationData)); + }; + return UDFCompatibleDatafeedBase; +}()); +export { UDFCompatibleDatafeedBase }; +function defaultConfiguration() { + return { + supports_search: false, + supports_group_request: true, + supported_resolutions: ['1', '5', '15', '30', '60', '1D', '1W', '1M'], + supports_marks: false, + supports_timescale_marks: false, + }; +} diff --git a/datafeeds/udf/lib/udf-compatible-datafeed.js b/datafeeds/udf/lib/udf-compatible-datafeed.js new file mode 100644 index 00000000..9df87d6a --- /dev/null +++ b/datafeeds/udf/lib/udf-compatible-datafeed.js @@ -0,0 +1,17 @@ +import * as tslib_1 from "tslib"; +import { UDFCompatibleDatafeedBase } from './udf-compatible-datafeed-base'; +import { QuotesProvider } from './quotes-provider'; +import { Requester } from './requester'; +var UDFCompatibleDatafeed = /** @class */ (function (_super) { + tslib_1.__extends(UDFCompatibleDatafeed, _super); + function UDFCompatibleDatafeed(datafeedURL, updateFrequency) { + if (updateFrequency === void 0) { updateFrequency = 10 * 1000; } + var _this = this; + var requester = new Requester(); + var quotesProvider = new QuotesProvider(datafeedURL, requester); + _this = _super.call(this, datafeedURL, quotesProvider, requester, updateFrequency) || this; + return _this; + } + return UDFCompatibleDatafeed; +}(UDFCompatibleDatafeedBase)); +export { UDFCompatibleDatafeed }; diff --git a/datafeeds/udf/package.json b/datafeeds/udf/package.json new file mode 100644 index 00000000..a3ecc382 --- /dev/null +++ b/datafeeds/udf/package.json @@ -0,0 +1,20 @@ +{ + "private": true, + "dependencies": { + "promise-polyfill": "6.0.2", + "tslib": "1.7.1", + "whatwg-fetch": "2.0.3" + }, + "devDependencies": { + "rollup": "0.49.2", + "rollup-plugin-buble": "0.15.0", + "rollup-plugin-node-resolve": "3.0.0", + "rollup-plugin-uglify": "2.0.1", + "typescript": "2.5.3" + }, + "scripts": { + "compile": "tsc", + "bundle-js": "rollup -c rollup.config.js", + "build": "npm run compile && npm run bundle-js" + } +} diff --git a/datafeeds/udf/rollup.config.js b/datafeeds/udf/rollup.config.js new file mode 100644 index 00000000..4b958ddf --- /dev/null +++ b/datafeeds/udf/rollup.config.js @@ -0,0 +1,39 @@ +/* globals process */ + +var buble = require('rollup-plugin-buble'); +var uglify = require('rollup-plugin-uglify'); +var nodeResolve = require('rollup-plugin-node-resolve'); + +var environment = process.env.ENV || 'development'; +var isDevelopmentEnv = (environment === 'development'); + +module.exports = [ + { + input: 'lib/udf-compatible-datafeed.js', + name: 'Datafeeds', + sourceMap: false, + output: { + format: 'umd', + file: 'dist/bundle.js', + }, + plugins: [ + nodeResolve({ jsnext: true, main: true }), + buble(), + !isDevelopmentEnv && uglify({ output: { inline_script: true } }), + ], + }, + { + input: 'src/polyfills.es6', + sourceMap: false, + context: 'window', + output: { + format: 'iife', + file: 'dist/polyfills.js', + }, + plugins: [ + nodeResolve({ jsnext: true, main: true }), + buble(), + uglify({ output: { inline_script: true } }), + ], + }, +]; diff --git a/datafeeds/udf/src/data-pulse-provider.ts b/datafeeds/udf/src/data-pulse-provider.ts new file mode 100644 index 00000000..08cb1894 --- /dev/null +++ b/datafeeds/udf/src/data-pulse-provider.ts @@ -0,0 +1,144 @@ +import { + LibrarySymbolInfo, + SubscribeBarsCallback, +} from '../../../charting_library/datafeed-api'; + +import { + GetBarsResult, + HistoryProvider, +} from './history-provider'; + +import { + getErrorMessage, + logMessage, +} from './helpers'; + +interface DataSubscriber { + symbolInfo: LibrarySymbolInfo; + resolution: string; + lastBarTime: number | null; + listener: SubscribeBarsCallback; +} + +interface DataSubscribers { + [guid: string]: DataSubscriber; +} + +export class DataPulseProvider { + private readonly _subscribers: DataSubscribers = {}; + private _requestsPending: number = 0; + private readonly _historyProvider: HistoryProvider; + + public constructor(historyProvider: HistoryProvider, updateFrequency: number) { + this._historyProvider = historyProvider; + setInterval(this._updateData.bind(this), updateFrequency); + } + + public subscribeBars(symbolInfo: LibrarySymbolInfo, resolution: string, newDataCallback: SubscribeBarsCallback, listenerGuid: string): void { + if (this._subscribers.hasOwnProperty(listenerGuid)) { + logMessage(`DataPulseProvider: already has subscriber with id=${listenerGuid}`); + return; + } + + this._subscribers[listenerGuid] = { + lastBarTime: null, + listener: newDataCallback, + resolution: resolution, + symbolInfo: symbolInfo, + }; + + logMessage(`DataPulseProvider: subscribed for #${listenerGuid} - {${symbolInfo.name}, ${resolution}}`); + } + + public unsubscribeBars(listenerGuid: string): void { + delete this._subscribers[listenerGuid]; + logMessage(`DataPulseProvider: unsubscribed for #${listenerGuid}`); + } + + private _updateData(): void { + if (this._requestsPending > 0) { + return; + } + + this._requestsPending = 0; + for (const listenerGuid in this._subscribers) { // tslint:disable-line:forin + this._requestsPending += 1; + this._updateDataForSubscriber(listenerGuid) + .then(() => { + this._requestsPending -= 1; + logMessage(`DataPulseProvider: data for #${listenerGuid} updated successfully, pending=${this._requestsPending}`); + }) + .catch((reason?: string | Error) => { + this._requestsPending -= 1; + logMessage(`DataPulseProvider: data for #${listenerGuid} updated with error=${getErrorMessage(reason)}, pending=${this._requestsPending}`); + }); + } + } + + private _updateDataForSubscriber(listenerGuid: string): Promise { + const subscriptionRecord = this._subscribers[listenerGuid]; + + const rangeEndTime = parseInt((Date.now() / 1000).toString()); + + // BEWARE: please note we really need 2 bars, not the only last one + // see the explanation below. `10` is the `large enough` value to work around holidays + const rangeStartTime = rangeEndTime - periodLengthSeconds(subscriptionRecord.resolution, 10); + + return this._historyProvider.getBars(subscriptionRecord.symbolInfo, subscriptionRecord.resolution, rangeStartTime, rangeEndTime) + .then((result: GetBarsResult) => { + this._onSubscriberDataReceived(listenerGuid, result); + }); + } + + private _onSubscriberDataReceived(listenerGuid: string, result: GetBarsResult): void { + // means the subscription was cancelled while waiting for data + if (!this._subscribers.hasOwnProperty(listenerGuid)) { + logMessage(`DataPulseProvider: Data comes for already unsubscribed subscription #${listenerGuid}`); + return; + } + + const bars = result.bars; + if (bars.length === 0) { + return; + } + + const lastBar = bars[bars.length - 1]; + const subscriptionRecord = this._subscribers[listenerGuid]; + + if (subscriptionRecord.lastBarTime !== null && lastBar.time < subscriptionRecord.lastBarTime) { + return; + } + + const isNewBar = subscriptionRecord.lastBarTime !== null && lastBar.time > subscriptionRecord.lastBarTime; + + // Pulse updating may miss some trades data (ie, if pulse period = 10 secods and new bar is started 5 seconds later after the last update, the + // old bar's last 5 seconds trades will be lost). Thus, at fist we should broadcast old bar updates when it's ready. + if (isNewBar) { + if (bars.length < 2) { + throw new Error('Not enough bars in history for proper pulse update. Need at least 2.'); + } + + const previousBar = bars[bars.length - 2]; + subscriptionRecord.listener(previousBar); + } + + subscriptionRecord.lastBarTime = lastBar.time; + subscriptionRecord.listener(lastBar); + } +} + +function periodLengthSeconds(resolution: string, requiredPeriodsCount: number): number { + let daysCount = 0; + + if (resolution === 'D') { + daysCount = requiredPeriodsCount; + } else if (resolution === 'M') { + daysCount = 31 * requiredPeriodsCount; + } else if (resolution === 'W') { + daysCount = 7 * requiredPeriodsCount; + } else { + daysCount = requiredPeriodsCount * parseInt(resolution) / (24 * 60); + } + + return daysCount * 24 * 60 * 60; +} diff --git a/datafeeds/udf/src/helpers.ts b/datafeeds/udf/src/helpers.ts new file mode 100644 index 00000000..c5fb4f8b --- /dev/null +++ b/datafeeds/udf/src/helpers.ts @@ -0,0 +1,37 @@ +export interface RequestParams { + [paramName: string]: string | string[] | number; +} + +export interface UdfResponse { + s: string; +} + +export interface UdfOkResponse extends UdfResponse { + s: 'ok'; +} + +export interface UdfErrorResponse { + s: 'error'; + errmsg: string; +} + +/** + * If you want to enable logs from datafeed set it to `true` + */ +const isLoggingEnabled = false; +export function logMessage(message: string): void { + if (isLoggingEnabled) { + const now = new Date(); + console.log(`${now.toLocaleTimeString()}.${now.getMilliseconds()}> ${message}`); + } +} + +export function getErrorMessage(error: string | Error | undefined): string { + if (error === undefined) { + return ''; + } else if (typeof error === 'string') { + return error; + } + + return error.message; +} diff --git a/datafeeds/udf/src/history-provider.ts b/datafeeds/udf/src/history-provider.ts new file mode 100644 index 00000000..791ef364 --- /dev/null +++ b/datafeeds/udf/src/history-provider.ts @@ -0,0 +1,119 @@ +import { + Bar, + HistoryMetadata, + LibrarySymbolInfo, +} from '../../../charting_library/datafeed-api'; + +import { + getErrorMessage, + RequestParams, + UdfErrorResponse, + UdfOkResponse, + UdfResponse, +} from './helpers'; + +import { Requester } from './requester'; + +interface HistoryPartialDataResponse extends UdfOkResponse { + t: number[]; + c: number[]; + o?: never; + h?: never; + l?: never; + v?: never; +} + +interface HistoryFullDataResponse extends UdfOkResponse { + t: number[]; + c: number[]; + o: number[]; + h: number[]; + l: number[]; + v: number[]; +} + +interface HistoryNoDataResponse extends UdfResponse { + s: 'no_data'; + nextTime?: number; +} + +type HistoryResponse = HistoryFullDataResponse | HistoryPartialDataResponse | HistoryNoDataResponse; + +export interface GetBarsResult { + bars: Bar[]; + meta: HistoryMetadata; +} + +export class HistoryProvider { + private _datafeedUrl: string; + private readonly _requester: Requester; + + public constructor(datafeedUrl: string, requester: Requester) { + this._datafeedUrl = datafeedUrl; + this._requester = requester; + } + + public getBars(symbolInfo: LibrarySymbolInfo, resolution: string, rangeStartDate: number, rangeEndDate: number): Promise { + const requestParams: RequestParams = { + symbol: symbolInfo.ticker || '', + resolution: resolution, + from: rangeStartDate, + to: rangeEndDate, + }; + + return new Promise((resolve: (result: GetBarsResult) => void, reject: (reason: string) => void) => { + this._requester.sendRequest(this._datafeedUrl, 'history', requestParams) + .then((response: HistoryResponse | UdfErrorResponse) => { + if (response.s !== 'ok' && response.s !== 'no_data') { + reject(response.errmsg); + return; + } + + const bars: Bar[] = []; + const meta: HistoryMetadata = { + noData: false, + }; + + if (response.s === 'no_data') { + meta.noData = true; + meta.nextTime = response.nextTime; + } else { + const volumePresent = response.v !== undefined; + const ohlPresent = response.o !== undefined; + + for (let i = 0; i < response.t.length; ++i) { + const barValue: Bar = { + time: response.t[i] * 1000, + close: Number(response.c[i]), + open: Number(response.c[i]), + high: Number(response.c[i]), + low: Number(response.c[i]), + }; + + if (ohlPresent) { + barValue.open = Number((response as HistoryFullDataResponse).o[i]); + barValue.high = Number((response as HistoryFullDataResponse).h[i]); + barValue.low = Number((response as HistoryFullDataResponse).l[i]); + } + + if (volumePresent) { + barValue.volume = Number((response as HistoryFullDataResponse).v[i]); + } + + bars.push(barValue); + } + } + + resolve({ + bars: bars, + meta: meta, + }); + }) + .catch((reason?: string | Error) => { + const reasonString = getErrorMessage(reason); + console.warn(`HistoryProvider: getBars() failed, error=${reasonString}`); + reject(reasonString); + }); + }); + } +} diff --git a/datafeeds/udf/src/iquotes-provider.ts b/datafeeds/udf/src/iquotes-provider.ts new file mode 100644 index 00000000..23702f19 --- /dev/null +++ b/datafeeds/udf/src/iquotes-provider.ts @@ -0,0 +1,14 @@ +import { QuoteData } from '../../../charting_library/datafeed-api'; + +import { + UdfOkResponse, +} from './helpers'; + +export interface UdfQuotesResponse extends UdfOkResponse { + d: QuoteData[]; +} + +export interface IQuotesProvider { + // tslint:disable-next-line:variable-name tv-variable-name + getQuotes(symbols: string[]): Promise; +} diff --git a/datafeeds/udf/src/polyfills.es6 b/datafeeds/udf/src/polyfills.es6 new file mode 100644 index 00000000..471a1563 --- /dev/null +++ b/datafeeds/udf/src/polyfills.es6 @@ -0,0 +1,2 @@ +import 'promise-polyfill'; +import 'whatwg-fetch'; diff --git a/datafeeds/udf/src/quotes-provider.ts b/datafeeds/udf/src/quotes-provider.ts new file mode 100644 index 00000000..6e07070f --- /dev/null +++ b/datafeeds/udf/src/quotes-provider.ts @@ -0,0 +1,37 @@ +import { UdfQuotesResponse, IQuotesProvider } from './iquotes-provider'; +import { QuoteData } from '../../../charting_library/datafeed-api'; + +import { + getErrorMessage, + logMessage, + UdfErrorResponse, +} from './helpers'; +import { Requester } from './requester'; + +export class QuotesProvider implements IQuotesProvider { + private readonly _datafeedUrl: string; + private readonly _requester: Requester; + + public constructor(datafeedUrl: string, requester: Requester) { + this._datafeedUrl = datafeedUrl; + this._requester = requester; + } + + public getQuotes(symbols: string[]): Promise { + return new Promise((resolve: (data: QuoteData[]) => void, reject: (reason: string) => void) => { + this._requester.sendRequest(this._datafeedUrl, 'quotes', { symbols: symbols }) + .then((response: UdfQuotesResponse | UdfErrorResponse) => { + if (response.s === 'ok') { + resolve(response.d); + } else { + reject(response.errmsg); + } + }) + .catch((error?: string | Error) => { + const errorMessage = getErrorMessage(error); + logMessage(`QuotesProvider: getQuotes failed, error=${errorMessage}`); + reject(`network error: ${errorMessage}`); + }); + }); + } +} diff --git a/datafeeds/udf/src/quotes-pulse-provider.ts b/datafeeds/udf/src/quotes-pulse-provider.ts new file mode 100644 index 00000000..2f5581ac --- /dev/null +++ b/datafeeds/udf/src/quotes-pulse-provider.ts @@ -0,0 +1,85 @@ +import { + QuoteData, + QuotesCallback, +} from '../../../charting_library/datafeed-api'; + +import { + getErrorMessage, + logMessage, +} from './helpers'; + +import { IQuotesProvider } from './iquotes-provider'; + +interface QuoteSubscriber { + symbols: string[]; + fastSymbols: string[]; + listener: QuotesCallback; +} + +interface QuoteSubscribers { + [listenerId: string]: QuoteSubscriber; +} + +const enum SymbolsType { + General, + Fast, +} + +const enum UpdateTimeouts { + Fast = 10 * 1000, + General = 60 * 1000, +} + +export class QuotesPulseProvider { + private readonly _quotesProvider: IQuotesProvider; + private readonly _subscribers: QuoteSubscribers = {}; + private _requestsPending: number = 0; + + public constructor(quotesProvider: IQuotesProvider) { + this._quotesProvider = quotesProvider; + + setInterval(this._updateQuotes.bind(this, SymbolsType.Fast), UpdateTimeouts.Fast); + setInterval(this._updateQuotes.bind(this, SymbolsType.General), UpdateTimeouts.General); + } + + public subscribeQuotes(symbols: string[], fastSymbols: string[], onRealtimeCallback: QuotesCallback, listenerGuid: string): void { + this._subscribers[listenerGuid] = { + symbols: symbols, + fastSymbols: fastSymbols, + listener: onRealtimeCallback, + }; + + logMessage(`QuotesPulseProvider: subscribed quotes with #${listenerGuid}`); + } + + public unsubscribeQuotes(listenerGuid: string): void { + delete this._subscribers[listenerGuid]; + logMessage(`QuotesPulseProvider: unsubscribed quotes with #${listenerGuid}`); + } + + private _updateQuotes(updateType: SymbolsType): void { + if (this._requestsPending > 0) { + return; + } + + for (const listenerGuid in this._subscribers) { // tslint:disable-line:forin + this._requestsPending++; + + const subscriptionRecord = this._subscribers[listenerGuid]; + this._quotesProvider.getQuotes(updateType === SymbolsType.Fast ? subscriptionRecord.fastSymbols : subscriptionRecord.symbols) + .then((data: QuoteData[]) => { + this._requestsPending--; + if (!this._subscribers.hasOwnProperty(listenerGuid)) { + return; + } + + subscriptionRecord.listener(data); + logMessage(`QuotesPulseProvider: data for #${listenerGuid} (${updateType}) updated successfully, pending=${this._requestsPending}`); + }) + .catch((reason?: string | Error) => { + this._requestsPending--; + logMessage(`QuotesPulseProvider: data for #${listenerGuid} (${updateType}) updated with error=${getErrorMessage(reason)}, pending=${this._requestsPending}`); + }); + } + } +} diff --git a/datafeeds/udf/src/requester.ts b/datafeeds/udf/src/requester.ts new file mode 100644 index 00000000..8c41cfeb --- /dev/null +++ b/datafeeds/udf/src/requester.ts @@ -0,0 +1,37 @@ +import { RequestParams, UdfResponse, UdfErrorResponse, logMessage } from './helpers'; + +export class Requester { + private _headers: object | undefined; + + public constructor(headers?: object) { + if (headers) { + this._headers = headers; + } + } + + public sendRequest(datafeedUrl: string, urlPath: string, params?: RequestParams): Promise; + public sendRequest(datafeedUrl: string, urlPath: string, params?: RequestParams): Promise; + public sendRequest(datafeedUrl: string, urlPath: string, params?: RequestParams): Promise { + if (params !== undefined) { + const paramKeys = Object.keys(params); + if (paramKeys.length !== 0) { + urlPath += '?'; + } + + urlPath += paramKeys.map((key: string) => { + return `${encodeURIComponent(key)}=${encodeURIComponent(params[key].toString())}`; + }).join('&'); + } + + logMessage('New request: ' + urlPath); + + const options: RequestInit = {}; + if (this._headers !== undefined) { + options.headers = this._headers; + } + + return fetch(`${datafeedUrl}/${urlPath}`, options) + .then((response: Response) => response.text()) + .then((responseTest: string) => JSON.parse(responseTest)); + } +} diff --git a/datafeeds/udf/src/symbols-storage.ts b/datafeeds/udf/src/symbols-storage.ts new file mode 100644 index 00000000..bd267d32 --- /dev/null +++ b/datafeeds/udf/src/symbols-storage.ts @@ -0,0 +1,266 @@ +import { + LibrarySymbolInfo, + SearchSymbolResultItem, +} from '../../../charting_library/datafeed-api'; + +import { + getErrorMessage, + logMessage, +} from './helpers'; + +import { Requester } from './requester'; + +interface SymbolInfoMap { + [symbol: string]: LibrarySymbolInfo | undefined; +} + +interface ExchangeDataResponseOptionalValues { + 'ticker': string; + + 'minmov2': number; + 'minmove2': number; + + 'minmov': number; + 'minmovement': number; + + 'supported-resolutions': string[]; + + 'force-session-rebuild': boolean; + + 'has-intraday': boolean; + 'has-daily': boolean; + 'has-weekly-and-monthly': boolean; + 'has-empty-bars': boolean; + 'has-no-volume': boolean; + + 'intraday-multipliers': string[]; + + 'volume-precision': number; +} + +interface ExchangeDataResponseMandatoryValues { + 'type': string; + 'timezone': LibrarySymbolInfo['timezone']; + 'description': string; + + 'exchange-listed': string; + 'exchange-traded': string; + + 'session-regular': string; + + 'fractional': boolean; + + 'pricescale': number; +} + +// Here is some black magic with types to get compile-time checks of names and types +type ValueOrArray = T | T[]; +type ExchangeDataResponse = + { + symbol: string[]; + } & + { + [K in keyof ExchangeDataResponseMandatoryValues]: ValueOrArray; + } & + { + [K in keyof ExchangeDataResponseOptionalValues]?: ValueOrArray; + }; + +function extractField(data: ExchangeDataResponse, field: Field, arrayIndex: number): ExchangeDataResponseMandatoryValues[Field]; +function extractField(data: ExchangeDataResponse, field: Field, arrayIndex: number): ExchangeDataResponseOptionalValues[Field] | undefined; +function extractField(data: ExchangeDataResponse, field: Field, arrayIndex: number): (ExchangeDataResponseMandatoryValues & ExchangeDataResponseOptionalValues)[Field] | undefined { + const value = data[field]; + return Array.isArray(value) ? value[arrayIndex] : value; +} + +export class SymbolsStorage { + private readonly _exchangesList: string[] = ['NYSE', 'FOREX', 'AMEX']; + private readonly _symbolsInfo: SymbolInfoMap = {}; + private readonly _symbolsList: string[] = []; + private readonly _datafeedUrl: string; + private readonly _readyPromise: Promise; + private readonly _datafeedSupportedResolutions: string[]; + private readonly _requester: Requester; + + public constructor(datafeedUrl: string, datafeedSupportedResolutions: string[], requester: Requester) { + this._datafeedUrl = datafeedUrl; + this._datafeedSupportedResolutions = datafeedSupportedResolutions; + this._requester = requester; + this._readyPromise = this._init(); + this._readyPromise.catch((error: Error) => { + // seems it is impossible + console.error(`SymbolsStorage: Cannot init, error=${error.toString()}`); + }); + } + + // BEWARE: this function does not consider symbol's exchange + public resolveSymbol(symbolName: string): Promise { + return this._readyPromise.then(() => { + const symbolInfo = this._symbolsInfo[symbolName]; + if (symbolInfo === undefined) { + return Promise.reject('invalid symbol'); + } + + return Promise.resolve(symbolInfo); + }); + } + + public searchSymbols(searchString: string, exchange: string, symbolType: string, maxSearchResults: number): Promise { + interface WeightedItem { + symbolInfo: LibrarySymbolInfo; + weight: number; + } + + return this._readyPromise.then(() => { + const weightedResult: WeightedItem[] = []; + const queryIsEmpty = searchString.length === 0; + + searchString = searchString.toUpperCase(); + + for (const symbolName of this._symbolsList) { + const symbolInfo = this._symbolsInfo[symbolName]; + + if (symbolInfo === undefined) { + continue; + } + + if (symbolType.length > 0 && symbolInfo.type !== symbolType) { + continue; + } + + if (exchange && exchange.length > 0 && symbolInfo.exchange !== exchange) { + continue; + } + + const positionInName = symbolInfo.name.toUpperCase().indexOf(searchString); + const positionInDescription = symbolInfo.description.toUpperCase().indexOf(searchString); + + if (queryIsEmpty || positionInName >= 0 || positionInDescription >= 0) { + const alreadyExists = weightedResult.some((item: WeightedItem) => item.symbolInfo === symbolInfo); + if (!alreadyExists) { + const weight = positionInName >= 0 ? positionInName : 8000 + positionInDescription; + weightedResult.push({ symbolInfo: symbolInfo, weight: weight }); + } + } + } + + const result = weightedResult + .sort((item1: WeightedItem, item2: WeightedItem) => item1.weight - item2.weight) + .slice(0, maxSearchResults) + .map((item: WeightedItem) => { + const symbolInfo = item.symbolInfo; + return { + symbol: symbolInfo.name, + full_name: symbolInfo.full_name, + description: symbolInfo.description, + exchange: symbolInfo.exchange, + params: [], + type: symbolInfo.type, + ticker: symbolInfo.name, + }; + }); + + return Promise.resolve(result); + }); + } + + private _init(): Promise { + interface BooleanMap { + [key: string]: boolean | undefined; + } + + const promises: Promise[] = []; + const alreadyRequestedExchanges: BooleanMap = {}; + + for (const exchange of this._exchangesList) { + if (alreadyRequestedExchanges[exchange]) { + continue; + } + + alreadyRequestedExchanges[exchange] = true; + promises.push(this._requestExchangeData(exchange)); + } + + return Promise.all(promises) + .then(() => { + this._symbolsList.sort(); + logMessage('SymbolsStorage: All exchanges data loaded'); + }); + } + + private _requestExchangeData(exchange: string): Promise { + return new Promise((resolve: () => void, reject: (error: Error) => void) => { + this._requester.sendRequest(this._datafeedUrl, 'symbol_info', { group: exchange }) + .then((response: ExchangeDataResponse) => { + try { + this._onExchangeDataReceived(exchange, response); + } catch (error) { + reject(error); + return; + } + + resolve(); + }) + .catch((reason?: string | Error) => { + logMessage(`SymbolsStorage: Request data for exchange '${exchange}' failed, reason=${getErrorMessage(reason)}`); + resolve(); + }); + }); + } + + private _onExchangeDataReceived(exchange: string, data: ExchangeDataResponse): void { + let symbolIndex = 0; + + try { + const symbolsCount = data.symbol.length; + const tickerPresent = data.ticker !== undefined; + + for (; symbolIndex < symbolsCount; ++symbolIndex) { + const symbolName = data.symbol[symbolIndex]; + const listedExchange = extractField(data, 'exchange-listed', symbolIndex); + const tradedExchange = extractField(data, 'exchange-traded', symbolIndex); + const fullName = tradedExchange + ':' + symbolName; + + const ticker = tickerPresent ? (extractField(data, 'ticker', symbolIndex) as string) : symbolName; + + const symbolInfo: LibrarySymbolInfo = { + ticker: ticker, + name: symbolName, + base_name: [listedExchange + ':' + symbolName], + full_name: fullName, + listed_exchange: listedExchange, + exchange: tradedExchange, + description: extractField(data, 'description', symbolIndex), + has_intraday: definedValueOrDefault(extractField(data, 'has-intraday', symbolIndex), false), + has_no_volume: definedValueOrDefault(extractField(data, 'has-no-volume', symbolIndex), false), + minmov: extractField(data, 'minmovement', symbolIndex) || extractField(data, 'minmov', symbolIndex) || 0, + minmove2: extractField(data, 'minmove2', symbolIndex) || extractField(data, 'minmov2', symbolIndex), + fractional: extractField(data, 'fractional', symbolIndex), + pricescale: extractField(data, 'pricescale', symbolIndex), + type: extractField(data, 'type', symbolIndex), + session: extractField(data, 'session-regular', symbolIndex), + timezone: extractField(data, 'timezone', symbolIndex), + supported_resolutions: definedValueOrDefault(extractField(data, 'supported-resolutions', symbolIndex), this._datafeedSupportedResolutions), + force_session_rebuild: extractField(data, 'force-session-rebuild', symbolIndex), + has_daily: definedValueOrDefault(extractField(data, 'has-daily', symbolIndex), true), + intraday_multipliers: definedValueOrDefault(extractField(data, 'intraday-multipliers', symbolIndex), ['1', '5', '15', '30', '60']), + has_weekly_and_monthly: extractField(data, 'has-weekly-and-monthly', symbolIndex), + has_empty_bars: extractField(data, 'has-empty-bars', symbolIndex), + volume_precision: definedValueOrDefault(extractField(data, 'volume-precision', symbolIndex), 0), + }; + + this._symbolsInfo[ticker] = symbolInfo; + this._symbolsInfo[symbolName] = symbolInfo; + this._symbolsInfo[fullName] = symbolInfo; + + this._symbolsList.push(symbolName); + } + } catch (error) { + throw new Error(`SymbolsStorage: API error when processing exchange ${exchange} symbol #${symbolIndex} (${data.symbol[symbolIndex]}): ${error.message}`); + } + } +} + +function definedValueOrDefault(value: T | undefined, defaultValue: T): T { + return value !== undefined ? value : defaultValue; +} diff --git a/datafeeds/udf/src/udf-compatible-datafeed-base.ts b/datafeeds/udf/src/udf-compatible-datafeed-base.ts new file mode 100644 index 00000000..3dfa8f42 --- /dev/null +++ b/datafeeds/udf/src/udf-compatible-datafeed-base.ts @@ -0,0 +1,355 @@ +import { + DatafeedConfiguration, + ErrorCallback, + GetMarksCallback, + HistoryCallback, + HistoryDepth, + IDatafeedChartApi, + IDatafeedQuotesApi, + IExternalDatafeed, + LibrarySymbolInfo, + Mark, + OnReadyCallback, + QuotesCallback, + ResolutionBackValues, + ResolutionString, + ResolveCallback, + SearchSymbolResultItem, + SearchSymbolsCallback, + ServerTimeCallback, + SubscribeBarsCallback, + TimescaleMark, +} from '../../../charting_library/datafeed-api'; + +import { + getErrorMessage, + logMessage, + RequestParams, + UdfErrorResponse, +} from './helpers'; + +import { + GetBarsResult, + HistoryProvider, +} from './history-provider'; + +import { IQuotesProvider } from './iquotes-provider'; +import { DataPulseProvider } from './data-pulse-provider'; +import { QuotesPulseProvider } from './quotes-pulse-provider'; +import { SymbolsStorage } from './symbols-storage'; +import { Requester } from './requester'; + +export interface UdfCompatibleConfiguration extends DatafeedConfiguration { + // tslint:disable + supports_search?: boolean; + supports_group_request?: boolean; + // tslint:enable +} + +export interface ResolveSymbolResponse extends LibrarySymbolInfo { + s: undefined; +} + +// it is hack to let's TypeScript make code flow analysis +export interface UdfSearchSymbolsResponse extends Array { + s?: undefined; +} + +export const enum Constants { + SearchItemsLimit = 30, +} + +type UdfDatafeedMarkType = { + [K in keyof T]: T[K] | T[K][]; +} & { + id: (string | number)[]; +}; + +type UdfDatafeedMark = UdfDatafeedMarkType; +type UdfDatafeedTimescaleMark = UdfDatafeedMarkType; + +function extractField(data: UdfDatafeedMark, field: Field, arrayIndex: number): Mark[Field]; +function extractField(data: UdfDatafeedTimescaleMark, field: Field, arrayIndex: number): TimescaleMark[Field]; +function extractField(data: UdfDatafeedMark & UdfDatafeedTimescaleMark, field: Field, arrayIndex: number): (TimescaleMark & Mark)[Field] { + const value = data[field]; + return Array.isArray(value) ? value[arrayIndex] : value; +} + +/** + * This class implements interaction with UDF-compatible datafeed. + * See UDF protocol reference at https://github.com/tradingview/charting_library/wiki/UDF + */ +export class UDFCompatibleDatafeedBase implements IExternalDatafeed, IDatafeedQuotesApi, IDatafeedChartApi { + protected _configuration: UdfCompatibleConfiguration = defaultConfiguration(); + private readonly _datafeedURL: string; + private readonly _configurationReadyPromise: Promise; + + private _symbolsStorage: SymbolsStorage | null = null; + + private readonly _historyProvider: HistoryProvider; + private readonly _dataPulseProvider: DataPulseProvider; + + private readonly _quotesProvider: IQuotesProvider; + private readonly _quotesPulseProvider: QuotesPulseProvider; + + private readonly _requester: Requester; + + protected constructor(datafeedURL: string, quotesProvider: IQuotesProvider, requester: Requester, updateFrequency: number = 10 * 1000) { + this._datafeedURL = datafeedURL; + this._requester = requester; + this._historyProvider = new HistoryProvider(datafeedURL, this._requester); + this._quotesProvider = quotesProvider; + + this._dataPulseProvider = new DataPulseProvider(this._historyProvider, updateFrequency); + this._quotesPulseProvider = new QuotesPulseProvider(this._quotesProvider); + + this._configurationReadyPromise = this._requestConfiguration() + .then((configuration: UdfCompatibleConfiguration | null) => { + if (configuration === null) { + configuration = defaultConfiguration(); + } + + this._setupWithConfiguration(configuration); + }); + } + + public onReady(callback: OnReadyCallback): void { + this._configurationReadyPromise.then(() => { + callback(this._configuration); + }); + } + + public getQuotes(symbols: string[], onDataCallback: QuotesCallback, onErrorCallback: (msg: string) => void): void { + this._quotesProvider.getQuotes(symbols).then(onDataCallback).catch(onErrorCallback); + } + + public subscribeQuotes(symbols: string[], fastSymbols: string[], onRealtimeCallback: QuotesCallback, listenerGuid: string): void { + this._quotesPulseProvider.subscribeQuotes(symbols, fastSymbols, onRealtimeCallback, listenerGuid); + } + + public unsubscribeQuotes(listenerGuid: string): void { + this._quotesPulseProvider.unsubscribeQuotes(listenerGuid); + } + + public calculateHistoryDepth(resolution: ResolutionString, resolutionBack: ResolutionBackValues, intervalBack: number): HistoryDepth | undefined { + return undefined; + } + + public getMarks(symbolInfo: LibrarySymbolInfo, startDate: number, endDate: number, onDataCallback: GetMarksCallback, resolution: ResolutionString): void { + if (!this._configuration.supports_marks) { + return; + } + + const requestParams: RequestParams = { + symbol: symbolInfo.ticker || '', + from: startDate, + to: endDate, + resolution: resolution, + }; + + this._send('marks', requestParams) + .then((response: Mark[] | UdfDatafeedMark) => { + if (!Array.isArray(response)) { + const result: Mark[] = []; + for (let i = 0; i < response.id.length; ++i) { + result.push({ + id: extractField(response, 'id', i), + time: extractField(response, 'time', i), + color: extractField(response, 'color', i), + text: extractField(response, 'text', i), + label: extractField(response, 'label', i), + labelFontColor: extractField(response, 'labelFontColor', i), + minSize: extractField(response, 'minSize', i), + }); + } + + response = result; + } + + onDataCallback(response); + }) + .catch((error?: string | Error) => { + logMessage(`UdfCompatibleDatafeed: Request marks failed: ${getErrorMessage(error)}`); + onDataCallback([]); + }); + } + + public getTimescaleMarks(symbolInfo: LibrarySymbolInfo, startDate: number, endDate: number, onDataCallback: GetMarksCallback, resolution: ResolutionString): void { + if (!this._configuration.supports_timescale_marks) { + return; + } + + const requestParams: RequestParams = { + symbol: symbolInfo.ticker || '', + from: startDate, + to: endDate, + resolution: resolution, + }; + + this._send('timescale_marks', requestParams) + .then((response: TimescaleMark[] | UdfDatafeedTimescaleMark) => { + if (!Array.isArray(response)) { + const result: TimescaleMark[] = []; + for (let i = 0; i < response.id.length; ++i) { + result.push({ + id: extractField(response, 'id', i), + time: extractField(response, 'time', i), + color: extractField(response, 'color', i), + label: extractField(response, 'label', i), + tooltip: extractField(response, 'tooltip', i), + }); + } + + response = result; + } + + onDataCallback(response); + }) + .catch((error?: string | Error) => { + logMessage(`UdfCompatibleDatafeed: Request timescale marks failed: ${getErrorMessage(error)}`); + onDataCallback([]); + }); + } + + public getServerTime(callback: ServerTimeCallback): void { + if (!this._configuration.supports_time) { + return; + } + + this._send('time') + .then((response: string) => { + const time = parseInt(response); + if (!isNaN(time)) { + callback(time); + } + }) + .catch((error?: string | Error) => { + logMessage(`UdfCompatibleDatafeed: Fail to load server time, error=${getErrorMessage(error)}`); + }); + } + + public searchSymbols(userInput: string, exchange: string, symbolType: string, onResult: SearchSymbolsCallback): void { + if (this._configuration.supports_search) { + const params: RequestParams = { + limit: Constants.SearchItemsLimit, + query: userInput.toUpperCase(), + type: symbolType, + exchange: exchange, + }; + + this._send('search', params) + .then((response: UdfSearchSymbolsResponse | UdfErrorResponse) => { + if (response.s !== undefined) { + logMessage(`UdfCompatibleDatafeed: search symbols error=${response.errmsg}`); + onResult([]); + return; + } + + onResult(response); + }) + .catch((reason?: string | Error) => { + logMessage(`UdfCompatibleDatafeed: Search symbols for '${userInput}' failed. Error=${getErrorMessage(reason)}`); + onResult([]); + }); + } else { + if (this._symbolsStorage === null) { + throw new Error('UdfCompatibleDatafeed: inconsistent configuration (symbols storage)'); + } + + this._symbolsStorage.searchSymbols(userInput, exchange, symbolType, Constants.SearchItemsLimit) + .then(onResult) + .catch(onResult.bind(null, [])); + } + } + + public resolveSymbol(symbolName: string, onResolve: ResolveCallback, onError: ErrorCallback): void { + logMessage('Resolve requested'); + + const resolveRequestStartTime = Date.now(); + function onResultReady(symbolInfo: LibrarySymbolInfo): void { + logMessage(`Symbol resolved: ${Date.now() - resolveRequestStartTime}ms`); + onResolve(symbolInfo); + } + + if (!this._configuration.supports_group_request) { + const params: RequestParams = { + symbol: symbolName, + }; + + this._send('symbols', params) + .then((response: ResolveSymbolResponse | UdfErrorResponse) => { + if (response.s !== undefined) { + onError('unknown_symbol'); + } else { + onResultReady(response); + } + }) + .catch((reason?: string | Error) => { + logMessage(`UdfCompatibleDatafeed: Error resolving symbol: ${getErrorMessage(reason)}`); + onError('unknown_symbol'); + }); + } else { + if (this._symbolsStorage === null) { + throw new Error('UdfCompatibleDatafeed: inconsistent configuration (symbols storage)'); + } + + this._symbolsStorage.resolveSymbol(symbolName).then(onResultReady).catch(onError); + } + } + + public getBars(symbolInfo: LibrarySymbolInfo, resolution: ResolutionString, rangeStartDate: number, rangeEndDate: number, onResult: HistoryCallback, onError: ErrorCallback): void { + this._historyProvider.getBars(symbolInfo, resolution, rangeStartDate, rangeEndDate) + .then((result: GetBarsResult) => { + onResult(result.bars, result.meta); + }) + .catch(onError); + } + + public subscribeBars(symbolInfo: LibrarySymbolInfo, resolution: ResolutionString, onTick: SubscribeBarsCallback, listenerGuid: string, onResetCacheNeededCallback: () => void): void { + this._dataPulseProvider.subscribeBars(symbolInfo, resolution, onTick, listenerGuid); + } + + public unsubscribeBars(listenerGuid: string): void { + this._dataPulseProvider.unsubscribeBars(listenerGuid); + } + + protected _requestConfiguration(): Promise { + return this._send('config') + .catch((reason?: string | Error) => { + logMessage(`UdfCompatibleDatafeed: Cannot get datafeed configuration - use default, error=${getErrorMessage(reason)}`); + return null; + }); + } + + private _send(urlPath: string, params?: RequestParams): Promise { + return this._requester.sendRequest(this._datafeedURL, urlPath, params); + } + + private _setupWithConfiguration(configurationData: UdfCompatibleConfiguration): void { + this._configuration = configurationData; + + if (configurationData.exchanges === undefined) { + configurationData.exchanges = []; + } + + if (!configurationData.supports_search && !configurationData.supports_group_request) { + throw new Error('Unsupported datafeed configuration. Must either support search, or support group request'); + } + + if (configurationData.supports_group_request || !configurationData.supports_search) { + this._symbolsStorage = new SymbolsStorage(this._datafeedURL, configurationData.supported_resolutions || [], this._requester); + } + + logMessage(`UdfCompatibleDatafeed: Initialized with ${JSON.stringify(configurationData)}`); + } +} + +function defaultConfiguration(): UdfCompatibleConfiguration { + return { + supports_search: false, + supports_group_request: true, + supported_resolutions: ['1', '5', '15', '30', '60', '1D', '1W', '1M'], + supports_marks: false, + supports_timescale_marks: false, + }; +} diff --git a/datafeeds/udf/src/udf-compatible-datafeed.ts b/datafeeds/udf/src/udf-compatible-datafeed.ts new file mode 100644 index 00000000..f13c589e --- /dev/null +++ b/datafeeds/udf/src/udf-compatible-datafeed.ts @@ -0,0 +1,11 @@ +import { UDFCompatibleDatafeedBase } from './udf-compatible-datafeed-base'; +import { QuotesProvider } from './quotes-provider'; +import { Requester } from './requester'; + +export class UDFCompatibleDatafeed extends UDFCompatibleDatafeedBase { + public constructor(datafeedURL: string, updateFrequency: number = 10 * 1000) { + const requester = new Requester(); + const quotesProvider = new QuotesProvider(datafeedURL, requester); + super(datafeedURL, quotesProvider, requester, updateFrequency); + } +} diff --git a/datafeeds/udf/tsconfig.json b/datafeeds/udf/tsconfig.json new file mode 100644 index 00000000..58c7322d --- /dev/null +++ b/datafeeds/udf/tsconfig.json @@ -0,0 +1,25 @@ +{ + "compilerOptions": { + "baseUrl": "./src", + "importHelpers": true, + "lib": [ + "dom", + "es2015.promise", + "es2015.symbol.wellknown", + "es5" + ], + "module": "es6", + "moduleResolution": "node", + "noEmitOnError": true, + "noFallthroughCasesInSwitch": true, + "noImplicitReturns": true, + "noUnusedLocals": true, + "outDir": "./lib/", + "sourceMap": false, + "strict": true, + "target": "es5" + }, + "include": [ + "./src/**/*.ts" + ] +} diff --git a/index.html b/index.html index 04ea2ef4..7d9b6082 100644 --- a/index.html +++ b/index.html @@ -8,11 +8,9 @@ - - - - + + - - - - - - - - -
    - - - \ No newline at end of file diff --git a/mobile_black.html b/mobile_black.html index b7f3cb23..cd6be172 100644 --- a/mobile_black.html +++ b/mobile_black.html @@ -8,10 +8,9 @@ - - - + + - - - - - - - - - -
    - - - \ No newline at end of file + + + + + TradingView Charting Library demo -- Mobile (white) + + + + + + + + + + + + + + +
    + + + diff --git a/test.html b/test.html index e433f811..b483f929 100644 --- a/test.html +++ b/test.html @@ -8,12 +8,9 @@ - - - - - + +
").append(o).appendTo(i),$("").append($.t("Trend Line")).appendTo(i),this.bindControl(new a(o,t.visible,!0,this.model(),"Change Fib Retracement Line Visibility")),n=$("").appendTo(i),s=d(n),this.bindControl(new h(s,t.color,!0,this.model(),"Change Fib Retracement Line Color",0)),r=$("").appendTo(i),f=u(),f.appendTo(r),this.bindControl(new l(f,t.linewidth,parseInt,this.model(),"Change Fib Retracement Line Width")),m=$("").appendTo(i),g=p(),g.render().appendTo(m),this.bindControl(new c(g,t.linestyle,parseInt,!0,this.model(),"Change Fib Retracement Line Style"))),v=this._linetool.properties().levelsStyle,y=$("
").appendTo(y),$(""+$.t("Levels Line")+"").appendTo(y),r=$("").appendTo(y),f=u(),f.appendTo(r),this.bindControl(new l(f,v.linewidth,parseInt,this.model(),"Change Fib Retracement Line Width")),m=$("").appendTo(y),g=p(),g.render().appendTo(m),this.bindControl(new c(g,v.linestyle,parseInt,!0,this.model(),"Change Fib Retracement Line Style")),this._table=$(document.createElement("table")).appendTo(this._div),this._table.attr("cellspacing","0"),this._table.attr("cellpadding","2"),b={},w=0;w<24;w++)S=w%8,y=b[S],T="level"+(w+1),b[S]=this.addLevelEditor(this._linetool.properties()[T],y);this.addOneColorPropertyWidget(this._table),C=$("").appendTo(this._div),x=$("").appendTo(C),this._linetool.properties().extendLines&&(P=$(""),L=$("").appendTo(C),M=$(""),L=$("]","i"),St=/checked\s*(?:[^=]|=\s*.checked.)/i,Mt=/\/(java|ecma)script/i,Dt=/^\s*",""],legend:[1,"
","
"],thead:[1,"
").append(L).appendTo(x)),this._linetool.properties().extendLeft&&(k=$(""),L=$("").append(L).appendTo(x)),this._linetool.properties().extendRight&&(I=$(""),L=$("").append(L).appendTo(x)),this._linetool.properties().reverse&&(A=$(""),L=$("").append(L).appendTo(x)), -E=$("
").append(L).appendTo(E),D=$(""),L=$("").append(L).appendTo(E),O=$(""),L=$("").append(L).appendTo(E),V=$("").appendTo(this._div),B=$(""),R=$(""),y=$(""),y.append("").append(B).append("").append(R),y.appendTo(V),N=$("
"+$.t("Labels")+" 
").appendTo(this._div),y=$("").appendTo(N),F=$(""),$("]","i"),be=/checked\s*(?:[^=]|=\s*.checked.)/i,_e=/\/(java|ecma)script/i,we=/^\s*",""],legend:[1,"
","
"],thead:[1,"
").append(F).appendTo(y),this.createLabeledCell($.t("Background"),F).appendTo(y),z=_(),$("").append(z).appendTo(y),this.bindControl(new a(D,this._linetool.properties().showPrices,!0,this.model(),"Change Gann Fan Prices Visibility")),this.bindControl(new a(M,this._linetool.properties().showCoeffs,!0,this.model(),"Change Gann Fan Levels Visibility")),this.bindControl(new a(F,this._linetool.properties().fillBackground,!0,this.model(),"Change Fib Retracement Background Visibility")),this.bindControl(new l(z,this._linetool.properties().transparency,!0,this.model(),"Change Fib Retracement Background Transparency")),this._linetool.properties().extendLines&&this.bindControl(new a(P,this._linetool.properties().extendLines,!0,this.model(),"Change Fib Retracement Extend Lines")),this._linetool.properties().extendLeft&&this.bindControl(new a(k,this._linetool.properties().extendLeft,!0,this.model(),"Change Fib Retracement Extend Lines")),this._linetool.properties().extendRight&&this.bindControl(new a(I,this._linetool.properties().extendRight,!0,this.model(),"Change Fib Retracement Extend Lines")),this._linetool.properties().reverse&&this.bindControl(new a(A,this._linetool.properties().reverse,!0,this.model(),"Change Fib Retracement Reverse")),this.bindControl(new c(B,this._linetool.properties().horzLabelsAlign,null,!0,this.model(),"Change Fib Labels Horizontal Alignment")),this.bindControl(new c(R,this._linetool.properties().vertLabelsAlign,null,!0,this.model(),"Change Fib Labels Vertical Alignment")),this.bindControl(new a(O,this._linetool.properties().coeffsAsPercents,!0,this.model(),"Change Fib Retracement Coeffs As Percents")),this.loadData()},o.prototype.widget=function(){return this._div},t.exports=o},function(t,e,i){(function(e){"use strict";function o(t,e,i){this.pane=t,this._isLeft=o.isLeft(e),this._properties=t.chart().properties().scalesProperties,this._disableContextMenu=!!i,this.jqCell=$(document.createElement("td")), -this.jqCell.addClass("chart-markup-table"),this.jqCell.addClass("price-axis"),this.jqCell.width(25),this._dv=$("
"),this._dv.css("width","100%"),this._dv.css("height","100%"),this._dv.css("position","relative"),this._dv.css("overflow","hidden"),this._dv.appendTo(this.jqCell),this.canvas=f(this._dv,new m(16,16)),$(this.canvas).css("position","absolute"),$(this.canvas).css("z-order","2"),$(this.canvas).css("left",0),$(this.canvas).css("top",0),this.ctx=this.canvas.getContext("2d"),this.top_canvas=f(this._dv,new m(16,16)),$(this.top_canvas).css("position","absolute"),$(this.top_canvas).css("z-order","1"),$(this.top_canvas).css("left",0),$(this.top_canvas).css("top",0),this.top_ctx=this.top_canvas.getContext("2d"),this._textWidthCache=new s,this.restoreDefaultCursor(),this.update(),g(this.jqCell,this,!0),this.dialog=this.pane.chart().dialog,this.contextMenu=null,this.actions={},this._isVisible=!0,this.priceScale().onMarksChanged.subscribe(this,this.onMarksChanged)}var n,s,r,a,l,h,c,d,p,u,_,f,m,g,v,y,b;i(494),n=i(1).LineDataSource,s=i(159),r=i(47),a=r.Action,l=r.ActionSeparator,h=i(101),c=i(604),d=i(21),p=i(120),u=p.resizeCanvas,_=p.clearRect,f=p.addCanvasTo,m=p.Size,g=i(106).setMouseEventHandler,v=i(33).trackEvent,y=i(163).makeFont,b=i(12).getLogger("Chart.PriceAxisWidget"),o.prototype._BORDER_SIZE=1,o.prototype._OFFSET_SIZE=1,o.prototype._TICK_LENGTH=3,o.LHS=1,o.RHS=2,o.isLeft=function(t){return t===o.LHS||t!==o.RHS&&(b.logDebug("PriceAxisWidget.isLeft: wrong side"),!1)},o.prototype.backgroundColor=function(){return this.pane.chart().properties().paneProperties.background.value()},o.prototype.lineColor=function(){return this._properties.lineColor.value()},o.prototype.textColor=function(){return this._properties.textColor.value()},o.prototype.fontSize=function(){return this._properties.fontSize.value()},o.prototype.baseFont=function(){return y(this.fontSize(),"Arial","")},o.prototype.rendererOptions=function(){var t,e,i;return this._rendererOptions||(this._rendererOptions={isLeft:this._isLeft,width:0,height:0,borderSize:this._BORDER_SIZE,offsetSize:this._OFFSET_SIZE,tickLength:this._TICK_LENGTH,fontSize:NaN,font:"",widthCache:new s,_tickmarksCache:new c(11,"Arial","","#000"),color:""}),t=this._rendererOptions,e=!1,t.color!==this.textColor()&&(t.color=this.textColor(),e=!0),t.fontSize!==this.fontSize()&&(i=this.fontSize(),t.fontSize=i,t.font=this.baseFont(),t.paddingTop=Math.floor(i/4.5),t.paddingBottom=Math.ceil(i/4.5),t.paddingInner=Math.max(Math.ceil(i/3-t.tickLength/2),0),t.paddingOuter=Math.ceil(i/3),t.baselineOffset=Math.round(i/10),t.widthCache.reset(),e=!0),e&&t._tickmarksCache.reset(t.fontSize,"Arial","",t.color),this.size&&(t.width=this.size.w,t.height=this.size.h),this._rendererOptions},o.prototype.mouseDownEvent=function(t){var i,o;!this.priceScale().isEmpty()&&e.enabled("chart_zoom")&&(i=this.pane.chart().model(),o=this.pane.state(),this._mousedown=!0,this.setCursor("ns-resize"),i.startScalePrice(o,this.priceScale(),t.localY))},o.prototype.pressedMouseMoveEvent=function(t){ -var e=this.pane.chart().model(),i=this.pane.state(),o=this.priceScale();e.scalePriceTo(i,o,t.localY)},o.prototype.mouseDownOutsideEvent=function(t){var e=this.pane.chart().model(),i=this.pane.state(),o=this.priceScale();this._mousedown&&(this._mousedown=!1,e.endScalePrice(i,o),this.restoreDefaultCursor())},o.prototype.mouseUpEvent=function(t){var e=this.pane.chart().model(),i=this.pane.state(),o=this.priceScale();this._mousedown=!1,e.endScalePrice(i,o),this.restoreDefaultCursor()},o.prototype._initActions=function(t){var e,n,s,r,l;this.pane.state()&&(e=i(5).ActionBinder,n=this,this.actions.reset=new a({text:$.t("Reset Scale"),shortcut:"Alt+R"}),this.actions.reset.callbacks().subscribe(this,o.prototype.reset),s=function(t){this._undoModel.setLockScaleProperty(this._property,t.checked,n.priceScale().mainSource(),this._undoText)},delete this.actions.setLockScale,this.priceScale().mainSource()instanceof TradingView.Series&&(this.actions.setLockScale=new a({text:$.t("Lock Scale"),checkable:!0,checked:this.priceScale().mainSource().properties().lockScale.value()}),this._lockScaleBinding=new e(this.actions.setLockScale,this.priceScale().mainSource().properties().lockScale,this.pane.chart().model(),"Lock Scale",s),this._lockScaleBinding.setValue(this.priceScale().mainSource().properties().lockScale.value())),r=function(){this._undoModel.setAutoScaleProperty(this._property,this.value(),n.priceScale(),this._undoText)},this.actions.setAutoScale=new a({text:$.t("Auto Scale"),checkable:!0,checked:!0}),this._autoScaleBinding=new e(this.actions.setAutoScale,this.priceScale().properties().autoScale,this.pane.chart().model(),"Undo AutoScale",r),this._autoScaleBinding.setValue(this._autoScaleBinding.property().value()),this.actions.setPercentage=new a({text:$.t("Percentage",{context:"scale_menu"}),checkable:!0,checked:!1}),l=function(){this._undoModel.setPercentProperty(this._property,this.value(),n.priceScale(),this._undoText)},this.actions.setPercentage.binding=new e(this.actions.setPercentage,this.priceScale().properties().percentage,this.pane.chart().model(),"Undo Percentage",l),this.actions.setLog=new a({text:$.t("Log Scale",{context:"scale_menu"}),checkable:!0,checked:!1}),this.actions.setLog.binding=new e(this.actions.setLog,this.priceScale().properties().log,this.pane.chart().model(),"Undo Log Scale"),this.actions.alignLabels=new a({text:$.t("Precise Labels",{context:"scale_menu"}),checkable:!0,checked:!1}),this.actions.alignLabels.binding=new e(this.actions.alignLabels,this.priceScale().properties().alignLabels,this.pane.chart().model(),"Precise Labels"),this._updateScalesActions())},o.prototype._updateScalesActions=function(){var t=this.priceScale(),e=t.mainSource()instanceof TradingView.Series,i=t.mainSource().properties();this.actions.setPercentage.setEnabled(!(t.isLog()||e&&i.lockScale.value()||e&&i.style.value()===TradingView.Series.STYLE_PNF)),this.actions.setLog.setEnabled(!(t.isPercent()||e&&i.lockScale.value()||e&&i.style.value()===TradingView.Series.STYLE_PNF)), -this.actions.setAutoScale.setChecked(t._properties.autoScale.value()),this.actions.setAutoScale.setEnabled(!t.properties().autoScaleDisabled.value())},o.prototype.mouseClickEvent=function(t){},o.prototype.mouseDoubleClickEvent=function(t){this.reset(),v("GUI","Double click price scale")},o.prototype.contextMenuEvent=function(t,i){!this._disableContextMenu&&e.enabled("scales_context_menu")&&this._createContextMenu().show(t)},o.prototype._createContextMenu=function(){return h.createMenu(this.getContextMenuActions())},o.prototype.getContextMenuActions=function(){var t,i;return this._initActions(),t=this.pane.chart().actions(),i=[],i.push(this.actions.reset,new l,t.showLeftAxis,t.showRightAxis,new l,this.actions.setAutoScale),this.actions.setLockScale&&i.push(this.actions.setLockScale),i.push(t.scaleSeriesOnly,new l,this.actions.setPercentage,this.actions.setLog,new l),e.enabled("fundamental_widget")||i.push(t.showSymbolLabelsAction,t.showSeriesLastValue),i.push(t.showStudyPlotNamesAction,t.showStudyLastValue),e.enabled("countdown")&&i.push(t.showCountdown),i.push(this.actions.alignLabels),!TradingView.onWidget()&&e.enabled("show_chart_property_page")&&e.enabled("chart_property_page_scales")&&t.scalesProperties&&i.push(new l,t.scalesProperties),i},o.prototype.backLabels=function(t){var e,i,o,n,s,r=[],a=this.priceScale().orderedSources().slice(),l=this.pane,h=l.chart().model(),c=l.state(),d=[],p=h.sourceBeingMoved()||h.lineBeingEdited()||h.lineBeingCreated();if(p&&d.push(p),h.selectedSource()&&d.push(h.selectedSource()),h.hoveredSource()&&d.push(h.hoveredSource()),this.priceScale()===c.defaultPriceScale())for(e=this.pane.state().dataSources(),i=0;i0&&(t=Math.max(e.widthCache.measureText(i,o[0].label),e.widthCache.measureText(i,o[o.length-1].label))),n=this.backLabels(!0),s=n.length;s--;)(r=e.widthCache.measureText(i,n[s].text()))>t&&(t=r);return Math.ceil(e.offsetSize+e.borderSize+e.tickLength+e.paddingInner+e.paddingOuter+t)},o.prototype.setSize=function(t){this.size&&this.size.equals(t)||(this.size=t,u(this.canvas,t),u(this.top_canvas,t),this.jqCell.css({width:t.w,"min-width":t.w,height:t.h}))},o.prototype.update=function(){},o.prototype._hightlightBackground=function(t,e,i){var o,n,s,r,a,l,h=e[0].price,c=e[0].price;for(o=1;o0&&(u=n[0].floatCoordinate())}if(r=_.filter(function(t){return t.floatCoordinate()<=u}),a=_.filter(function(t){return t.floatCoordinate()>u}),r.sort(function(t,e){return e.floatCoordinate()-t.floatCoordinate()}),r.length&&a.length&&a.push(r[0]),a.sort(function(t,e){return t.floatCoordinate()-e.floatCoordinate()}),_.forEach(function(t){t._fixedCoordinate=t.coordinate()}),l=this.priceScale().properties(),l.alignLabels&&l.alignLabels.value()){for(e=1;ec._fixedCoordinate-d&&(p=c._fixedCoordinate-d,h._fixedCoordinate=p);for(s=1;s=0;o--)this.backColorers[o].applyBarStyle(t,e,n,i);return this.applyBarStyle(t,e,n,i),n},i.prototype.pushBackBarColorer=function(t){this.backColorers.push(t)},i.prototype.applyBarStyle=function(t,e,i){throw Error("This function is supposed to be reimplemented in a subclass")},inherit(o,i), -o.prototype.applyBarStyle=function(t,e,i,o){var n,s,r,a,l,h,c,d,p,u,_;switch(i||(i={}),i.barColor=null,i.barBorderColor=null,i.barWickColor=null,i.isBarHollow=null,i.isBarUp=null,i.upColor=null,i.downColor=null,i.isTwoColorBar=null,n=this._series.properties(),n.style.value()){case TradingView.Series.STYLE_LINE:i.barColor=n.lineStyle.color.value();break;case TradingView.Series.STYLE_AREA:i.barColor=n.areaStyle.linecolor.value();break;case TradingView.Series.STYLE_BARS:s=n.barStyle.upColor.value(),r=n.barStyle.downColor.value(),a=s,l=r,h=this.findBar(t,!1,o),n.barStyle.barColorsOnPrevClose.value()?(c=this.findPrevBar(t,!1,o),i.barColor=c[TradingView.CLOSE_PLOT]<=h[TradingView.CLOSE_PLOT]?s:r,i.barBorderColor=c[TradingView.CLOSE_PLOT]<=h[TradingView.CLOSE_PLOT]?a:l):(i.barColor=h[TradingView.OPEN_PLOT]<=h[TradingView.CLOSE_PLOT]?s:r,i.barBorderColor=h[TradingView.OPEN_PLOT]<=h[TradingView.CLOSE_PLOT]?a:l);break;case TradingView.Series.STYLE_CANDLES:s=n.candleStyle.upColor.value(),r=n.candleStyle.downColor.value(),a=n.candleStyle.borderUpColor?n.candleStyle.borderUpColor.value():n.candleStyle.borderColor.value(),l=n.candleStyle.borderDownColor?n.candleStyle.borderDownColor.value():n.candleStyle.borderColor.value(),d=n.candleStyle.wickUpColor?n.candleStyle.wickUpColor.value():n.candleStyle.wickColor.value(),p=n.candleStyle.wickDownColor?n.candleStyle.wickDownColor.value():n.candleStyle.wickColor.value(),h=this.findBar(t,!1,o),n.candleStyle.barColorsOnPrevClose.value()?(c=this.findPrevBar(t,!1,o),u=c[TradingView.CLOSE_PLOT]<=h[TradingView.CLOSE_PLOT]):u=h[TradingView.OPEN_PLOT]<=h[TradingView.CLOSE_PLOT],i.barColor=u?s:r,i.barBorderColor=u?a:l,i.barWickColor=u?d:p;break;case TradingView.Series.STYLE_HOLLOW_CANDLES:s=n.hollowCandleStyle.upColor.value(),r=n.hollowCandleStyle.downColor.value(),a=n.hollowCandleStyle.borderUpColor?n.hollowCandleStyle.borderUpColor.value():n.hollowCandleStyle.borderColor.value(),l=n.hollowCandleStyle.borderDownColor?n.hollowCandleStyle.borderDownColor.value():n.hollowCandleStyle.borderColor.value(),d=n.hollowCandleStyle.wickUpColor?n.hollowCandleStyle.wickUpColor.value():n.hollowCandleStyle.wickColor.value(),p=n.hollowCandleStyle.wickDownColor?n.hollowCandleStyle.wickDownColor.value():n.hollowCandleStyle.wickColor.value(),h=this.findBar(t,!1,o),c=this.findPrevBar(t,!1,o),c[TradingView.CLOSE_PLOT]<=h[TradingView.CLOSE_PLOT]?(i.barColor=s,i.barBorderColor=a,i.barWickColor=d):(i.barColor=r,i.barBorderColor=l,i.barWickColor=p),h[TradingView.OPEN_PLOT]<=h[TradingView.CLOSE_PLOT]?i.isBarHollow=!0:i.isBarHollow=!1;break;case TradingView.Series.STYLE_HEIKEN_ASHI:s=n.haStyle.upColor.value(),r=n.haStyle.downColor.value(),a=n.haStyle.borderUpColor.value(),l=n.haStyle.borderDownColor.value(),d=n.haStyle.wickUpColor.value(),p=n.haStyle.wickDownColor.value(),h=this.findBar(t,e,o),n.haStyle.barColorsOnPrevClose.value()?(c=this.findPrevBar(t,e,o),u=c[TradingView.CLOSE_PLOT]<=h[TradingView.CLOSE_PLOT]):u=h[TradingView.OPEN_PLOT]<=h[TradingView.CLOSE_PLOT],i.barColor=u?s:r,i.barBorderColor=u?a:l, -i.barWickColor=u?d:p;break;case TradingView.Series.STYLE_RENKO:h=this.findBar(t,e,o),u=h[TradingView.OPEN_PLOT]<=h[TradingView.CLOSE_PLOT],s=e?n.renkoStyle.upColorProjection.value():n.renkoStyle.upColor.value(),r=e?n.renkoStyle.downColorProjection.value():n.renkoStyle.downColor.value(),a=e?n.renkoStyle.borderUpColorProjection.value():n.renkoStyle.borderUpColor.value(),l=e?n.renkoStyle.borderDownColorProjection.value():n.renkoStyle.borderDownColor.value(),i.barColor=u?s:r,i.barBorderColor=u?a:l,i.isBarUp=u;break;case TradingView.Series.STYLE_PB:h=this.findBar(t,e,o),u=h[TradingView.OPEN_PLOT]<=h[TradingView.CLOSE_PLOT],s=e?n.pbStyle.upColorProjection.value():n.pbStyle.upColor.value(),r=e?n.pbStyle.downColorProjection.value():n.pbStyle.downColor.value(),a=e?n.pbStyle.borderUpColorProjection.value():n.pbStyle.borderUpColor.value(),l=e?n.pbStyle.borderDownColorProjection.value():n.pbStyle.borderDownColor.value(),i.barColor=u?s:r,i.barBorderColor=u?a:l,i.isBarUp=u;break;case TradingView.Series.STYLE_KAGI:i.upColor=e?n.kagiStyle.upColorProjection.value():n.kagiStyle.upColor.value(),i.downColor=e?n.kagiStyle.downColorProjection.value():n.kagiStyle.downColor.value(),_=null,h=this.findBar(t,e,o),h[TradingView.LOW_PLOT]0,s=e?n.pnfStyle.upColorProjection.value():n.pnfStyle.upColor.value(),r=e?n.pnfStyle.downColorProjection.value():n.pnfStyle.downColor.value(),i.isBarUp=u,i.barColor=u?s:r}return i},o.prototype.getSeriesBars=function(t){return t?this._series.nsBars():this._series.bars()},o.prototype._findBarFieldValue=function(t,e,i){var o=this.getSeriesBars(i).valueAt(t);if(void 0!==o)return o[e]},o.prototype.findBar=function(t,e,i){return i?i.value:this.getSeriesBars(e).valueAt(t)||[]},o.prototype.findPrevBar=function(t,e,i){var o,n;return i&&i.previousValue?i.previousValue:(o=this._series.bars(),n=o._search(t,TradingView.SEARCH_EXACT),n>0?this._series.bars()._valueAt(n-1):[])},inherit(n,i),n.prototype.applyBarStyle=function(t,e,i){var o,n,s,r,a,l,h,c,d,p,u,_,f;return i||(i={}),e?i:(o=this._study.properties(),o.visible.value()?(n=this._study.metaInfo(),(s=this._study.data())&&0!==s.size()?(r=n.plots[this._plotIndex],a=o.styles[r.id],a.visible&&!a.visible.value()?i:(l=this._study.offset(r.id),(h=s.valueAt(t-l))?null==(c=h[this._plotIndex+1])?i:(c=Math.round(c),d=n.plots[this._plotIndex].palette,p=o.palettes,u=p[d],_=n.palettes[d].valToIndex?n.palettes[d].valToIndex[c]:c,f=u.colors[_].color.value(),i.barColor=f,i.upColor=f.color,i.downColor=f.color,i):i)):i):i)},e.SeriesBarColorer=o,e.StudyBarColorer=n},function(t,e,i){ -"use strict";var o=i(21),n={_fontHeightCache:{},_parsedColorCache:{}};n._parseColor=function(t){var e,i,o;return this._parsedColorCache[t]?this._parsedColorCache[t]:(e=document.createElement("div"),e.style.color=t,i=e.style.color.match(/^rgb\s*\(\s*(\d+)\s*,\s*(\d+)\s*,\s*(\d+)\s*\)$/i)||e.style.color.match(/^rgba\s*\(\s*(\d+)\s*,\s*(\d+)\s*,\s*(\d+)\s*\,\s*(\d*\.?\d+)\s*\)$/i),o={r:i[1],g:i[2],b:i[3],a:i[4]||"1"},this._parsedColorCache[t]=o,o)},n.getColorFromProperties=function(t,e){var i=1-e.value()/100,o=this._parseColor(t.value());return"rgba("+o.r+","+o.g+","+o.b+","+i+")"},n.setColorToProperties=function(t,e,i){var o,n=this._parseColor(t);e.setValue("rgb("+n.r+","+n.g+","+n.b+")"),o=100*(1-n.a),i.setValue(Math.max(0,Math.min(o,100)))},n._parseFont=function(t){var e,i,o=document.createElement("div");return o.style.font=t,e=o.style.fontSize.match(/(\d+)pt/),i=e&&e[0]===o.style.fontSize,{family:o.style.fontFamily,size:i?e[1]:"",bold:"bold"===o.style.fontWeight,italic:"italic"===o.style.fontStyle}},n.getFontFromProperties=function(t,e,i,o){return[i.value()?"bold":"",o.value()?"italic":"",e.value()+"pt",t.value()].join(" ")},n.setFontToProperties=function(t,e,i,o,n){var s=this._parseFont(t);s.family.length>0&&e.setValue(s.family),s.size.length>0&&i.setValue(s.size),o.setValue(s.bold),n.setValue(s.italic)},n.fontHeight=function(t){var e,i;return this._fontHeightCache[t]||(e=document.createElement("span"),e.appendChild(document.createTextNode("height")),document.body.appendChild(e),e.style.cssText="font: "+t+"; white-space: nowrap; display: inline;",i=e.offsetHeight,document.body.removeChild(e),this._fontHeightCache[t]=Math.ceil(i)),this._fontHeightCache[t]},n.drawPolyHoverOrPress=function(t,e,i,o){o?(t.save(),t.fillStyle="rgba(0, 0, 0, 0.15)",CanvasEx.drawPoly(t,e,!0),t.restore()):i&&(t.save(),t.fillStyle="rgba(0, 0, 0, 0.1)",CanvasEx.drawPoly(t,e,!0),t.restore())},n.repaint=function(t){var e=new o(o.LIGHT_UPDATE);e.force=!0,t.invalidate(e)},n.roundToMinTick=function(t,e){var i=t.mainSource().base(),o=1/i;return o*Math.round(e/o)},t.exports=n},function(t,e){"use strict";function i(t){if(t)return"QUANDL"===t.exchange?"Quandl.com":["BMFBOVESPA","ASX","BME","NAG","TSE","TFX","NZX","BCBA","TWSE","EURONEXT","TOCOM","BMV","SIX"].includes(t.exchange)?"ICE Data services":void 0}t.exports=i},function(t,e,i){"use strict";function o(){}var n=i(334),s=i(353),r=i(44).assert;o.isValid=function(t){return!(!n[t]&&!s[t])},o.create=function(t,e,i,a,l){var h;return r(o.isValid(t),"Unknown line tool: "+t),h=n[t]||s[t], -"LineToolVbPFixed"===t?new h(e,i,a,l):"LineToolRegressionTrend"===t?new h(e,i,a):["LineStudyMtpAnalysis","LineStudyMtpDecisionPoint","LineStudyMtpRiskReward","LineStudyMtpElliotWaveMain","LineStudyMtpElliotWaveMajor","LineStudyMtpElliotWaveMinor","LineStudyMtpDownWave1OrA","LineStudyMtpDownWave2OrB","LineStudyMtpDownWave3","LineStudyMtpDownWave4","LineStudyMtpDownWave5","LineStudyMtpDownWaveC","LineStudyMtpUpWave1OrA","LineStudyMtpUpWave2OrB","LineStudyMtpUpWave3","LineStudyMtpUpWave4","LineStudyMtpUpWave5","LineStudyMtpUpWaveC"].indexOf(t)>=0?new h(e,i,a):new h(e,i)},t.exports=o},function(t,e,i){"use strict";function o(t,e){a.call(this,t,e),this._rendererCache={},this._numericFormatter=new f,this._invalidated=!0}function n(t,e){this._constructor="LineTool5PointsPattern";var i=e||new u("linetool5pointspattern");l.call(this,t,new o(this,t),i)}function s(t,e){this._constructor="LineToolCypherPattern";var i=e||new u("linetoolcypherpattern");l.call(this,t,new r(this,t),i)}function r(t,e){a.call(this,t,e),this._rendererCache={},this._numericFormatter=new f,this._invalidated=!0}var a=i(9),l=i(1).LineDataSource,h=i(11).TrendLineRenderer,c=i(119).TriangleRenderer,d=i(16).TextRenderer,p=i(6),u=i(7).DefaultProperty,_=i(121).DateTimeFormatter,f=i(26).NumericFormatter;inherit(o,a),o.prototype.renderer=function(){var t,e,i,o,n,s,r,a,u,_;return this._invalidated&&(this.updateImpl(),this._invalidated=!1),this._points.length<2?null:(t=this._source.properties(),e=new p,i=[this._points[0],this._points[1],this._points.length<3?this._points[1]:this._points[2]],o=this,n=function(e,i){return{points:[e],text:i,color:t.textcolor.value(),vertAlign:"middle",horzAlign:"center",font:t.font.value(),offsetX:0,offsetY:0,bold:t.bold&&t.bold.value(),italic:t.italic&&t.italic.value(),fontsize:t.fontsize.value(),backgroundColor:o._source.properties().color.value(),backgroundRoundRect:4}},s=function(t,e){return{points:[t,e],width:o._model.timeScale().width(),height:o._source.priceScale().height(),color:o._source.properties().color.value(),linewidth:1,linestyle:CanvasEx.LINESTYLE_SOLID,extendleft:!1,extendright:!1,leftend:l.LINEEND_NORMAL,rightend:l.LINEEND_NORMAL}},r={},r.points=i,r.color=t.color.value(),r.linewidth=t.linewidth.value(),r.backcolor=t.backgroundColor.value(),r.fillBackground=t.fillBackground.value(),r.transparency=t.transparency.value(),e.append(new c(r)),this._points.length>3&&(i=[this._points[2],this._points[3],5===this._points.length?this._points[4]:this._points[3]],r={},r.points=i,r.color=t.color.value(),r.linewidth=t.linewidth.value(),r.backcolor=t.backgroundColor.value(),r.fillBackground=t.fillBackground.value(),r.transparency=t.transparency.value(),e.append(new c(r))),this._points.length>=3&&(a=this._points[0].add(this._points[2]).scaled(.5),u=n(a,this._numericFormatter.format(this._ABRetracement)),e.append(new d(u,this._rendererCache))),this._points.length>=4&&(a=this._points[1].add(this._points[3]).scaled(.5),_=s(this._points[1],this._points[3]),e.append(new h(_)),u=n(a,this._numericFormatter.format(this._BCRetracement)), -e.append(new d(u,this._rendererCache))),this._points.length>=5&&(a=this._points[2].add(this._points[4]).scaled(.5),u=n(a,this._numericFormatter.format(this._CDRetracement)),e.append(new d(u,this._rendererCache)),_=s(this._points[0],this._points[4]),e.append(new h(_)),a=this._points[0].add(this._points[4]).scaled(.5),u=n(a,this._numericFormatter.format(this._XDRetracement)),e.append(new d(u,this._rendererCache))),u=n(this._points[0],"X"),this._points[1].y>this._points[0].y?(u.vertAlign="bottom",u.offsetY=-10):(u.vertAlign="top",u.offsetY=5),e.append(new d(u,this._rendererCache)),u=n(this._points[1],"A"),this._points[1].y2&&(u=n(this._points[2],"B"),this._points[2].y3&&(u=n(this._points[3],"C"),this._points[3].y4&&(u=n(this._points[4],"D"),this._points[4].y=3&&(t=this._source.points()[0],e=this._source.points()[1],i=this._source.points()[2],this._ABRetracement=Math.round(1e3*Math.abs((i.price-e.price)/(e.price-t.price)))/1e3),this._source.points().length>=4&&(o=this._source.points()[3],this._BCRetracement=Math.round(1e3*Math.abs((o.price-i.price)/(i.price-e.price)))/1e3),this._source.points().length>=5&&(n=this._source.points()[4],this._CDRetracement=Math.round(1e3*Math.abs((n.price-o.price)/(o.price-i.price)))/1e3,this._XDRetracement=Math.round(1e3*Math.abs((n.price-e.price)/(e.price-t.price)))/1e3)},inherit(n,l),n.prototype.pointsCount=function(){return 5},n.prototype.title=function(){return"XABCD Pattern"},n.prototype._tooltipFieldsHash={time0:{title:"Date 1",value:null},price0:{title:"Price 1",value:null},time1:{title:"Date 2",value:null},price1:{title:"Price 2",value:null},time2:{title:"Date 3",value:null},price2:{title:"Price 3",value:null},time3:{title:"Date 4",value:null},price3:{title:"Price 4",value:null},time4:{title:"Date 5",value:null},price4:{title:"Price 5",value:null}},n.prototype._updateTooltip=function(){var t,e,i,o,n,s=this._tooltipFieldsHash,r=this.points().m_values;r[0]&&(e=this._model.timeScale().indexToUserTime(r[0].index),s.time0.value=e?new _(this._model.mainSeries().isDWM()).format(e):0,s.price0.value=this._model.mainSeries()._formatter.format(r[0].price)),r[1]&&(t=this._model.timeScale().indexToUserTime(r[1].index),s.time1.value=t?new _(this._model.mainSeries().isDWM()).format(t):0,s.price1.value=this._model.mainSeries()._formatter.format(r[1].price)), -r[2]&&(i=this._model.timeScale().indexToUserTime(r[2].index),s.time2.value=i?new _(this._model.mainSeries().isDWM()).format(i):0,s.price2.value=this._model.mainSeries()._formatter.format(r[2].price)),r[3]&&(o=this._model.timeScale().indexToUserTime(r[3].index),s.time3.value=o?new _(this._model.mainSeries().isDWM()).format(o):0,s.price3.value=this._model.mainSeries()._formatter.format(r[3].price)),r[4]&&(n=this._model.timeScale().indexToUserTime(r[4].index),s.time4.value=t?new _(this._model.mainSeries().isDWM()).format(n):0,s.price4.value=this._model.mainSeries()._formatter.format(r[4].price))},n.prototype.tooltip=function(){return this._updateTooltip(),this._formatTooltip()},inherit(s,n),inherit(r,o),r.prototype.update=function(){this._invalidated=!0},r.prototype.updateImpl=function(){var t,e,i,o,n;a.prototype.update.call(this),this._source.points().length>=3&&(t=this._source.points()[0],e=this._source.points()[1],i=this._source.points()[2],this._ABRetracement=Math.round(1e3*Math.abs((i.price-e.price)/(e.price-t.price)))/1e3),this._source.points().length>=4&&(o=this._source.points()[3],this._BCRetracement=Math.round(1e3*Math.abs((o.price-t.price)/(e.price-t.price)))/1e3),this._source.points().length>=5&&(n=this._source.points()[4],this._CDRetracement=Math.round(1e3*Math.abs((n.price-o.price)/(o.price-i.price)))/1e3,this._XDRetracement=Math.round(1e3*Math.abs((n.price-o.price)/(t.price-o.price)))/1e3)},e.LineTool5PointsPattern=n,e.LineToolCypherPattern=s},function(t,e,i){"use strict";function o(t,e){r.call(this,t,e),this._invalidated=!0,this._model=e,this._source=t}function n(t,e){this._constructor="LineToolBrush";var i=e||new d("linetoolbrush");a.call(this,t,new o(this,t),i),this._finished=!1}var s=i(2),r=i(9),a=i(1).LineDataSource,l=i(92),h=i(68).SelectionRenderer,c=i(6),d=i(7).DefaultProperty;inherit(o,r),o.prototype.update=function(){this._invalidated=!0},o.prototype._smoothArray=function(t,e){var i,o,n,r,a,l=Array(t.length);for(i=0;i0&&(o=[t.points[0],t.points[t.points.length-1]],i.append(new h({points:o}))),i):new l(t)},inherit(n,a),n.prototype.pointsCount=function(){return-1},n.prototype.finished=function(){return this._finished},n.prototype.finish=function(){this._finished=!0,this._lastPoint=null,this.normalizePoints(),this.createServerPoints()},n.prototype.title=function(){return"Brush"},n.prototype.percentDistance=function(t,e){return Math.abs((e-t)/t)},n.prototype.addPoint=function(t){var e,i,o;return!!this._finished||(this._lastPoint=null,this._points.length>0&&(e=this._points[this._points.length-1],i=this.pointToScreenPoint(e)[1],o=this.pointToScreenPoint(t)[1],o.substract(i).length()<2)?this._finished:(a.prototype.addPoint.call(this,t),this._finished))},n.prototype.restorePoints=function(t,e,i){a.prototype.restorePoints.call(this,t,e,i),this._finished=!0},t.exports=n},function(t,e,i){"use strict";function o(t,e){this._data=t,t.lines=this.wordWrap(t.text,t.wordWrapWidth),this._textSizeCache=e}function n(t,e){a.call(this,t,e),this._textSizeCache={},this._invalidated=!0}function s(t,e){this._constructor="LineToolCallout";var i=e||new p("linetoolcallout");l.call(this,t,new n(this,t),i),this._barOffset=0,this._timeScale=t.timeScale()}var r=i(2),a=i(9),l=i(1).LineDataSource,h=i(48).DataSource,c=i(8),d=i(6),p=i(7).DefaultProperty,u=i(14);o.ROUND_RADIUS=8,o.TEXT_MARGINS=2,function(){function t(){var t=document.createElement("canvas");t.width=0,t.height=0,e=t.getContext("2d"),t=null}var e;o.prototype.wordWrap=function(i,o){var n,s,r,a,l,h,c,d,p;if(e||t(),o=+o,i+="",n=i.split(/[^\S\r\n]*(?:\r\n|\r|\n|$)/),n[n.length-1]||n.pop(),!isFinite(o)||o<=0)return n;for(e.font=this.fontStyle(),s=[],r=0;r0&&e.measureText(h.slice(0,3*--c-1).join("")).width>o;);if(c>0)s.push(h.slice(0,3*c-1).join("")),h.splice(0,3*c);else{if(d=h[0]+(h[1]||""),p=1===p?1:~~(o/e.measureText(d)*d.length),e.measureText(d.substr(0,p)).width<=o)for(;e.measureText(d.substr(0,p+1)).width<=o;)p++;else for(;p>1&&e.measureText(d.substr(0,--p)).width>o;);p<1&&(p=1),s.push(d.substr(0,p)),h[0]=d.substr(p),h[1]=""}if((l=e.measureText(h.join("")).width)<=o){s.push(h.join(""));break}}return s}}(),o.prototype.hitTest=function(t){var e,i,o,n,s;return this._data.points.length<2?null:(e=this._data.points[0],i=this._data.points[1],o=3,e.substract(t).length()=n&&t.x<=n+this._textSizeCache.totalWidth&&t.y>=s&&t.y<=s+this._textSizeCache.totalHeight?new c(c.MOVEPOINT):null))},o.prototype.fontStyle=function(){ -return(this._data.bold?"bold ":"")+(this._data.italic?"italic ":"")+this._data.fontSize+"px "+this._data.font},o.prototype.draw=function(t){var e,i,n,s,r,a,l,h,c,d,p,_,f,m;if(!(this._data.points.length<2)){for(e=this._data.points[0].clone(),i=this._data.points[1].clone(),t.lineCap="butt",t.strokeStyle=this._data.bordercolor,t.lineWidth=this._data.linewidth,t.textBaseline="bottom",t.font=this.fontStyle(),n=this._data.fontSize*this._data.lines.length,s=this._data.wordWrapWidth||this._data.lines.reduce(function(e,i){return Math.max(e,t.measureText(i).width)},0),this._textSizeCache.textHeight=n,this._textSizeCache.textHeight=s,r=o.ROUND_RADIUS,a=o.TEXT_MARGINS,l=s+2*a+2*r,h=n+2*a+2*r,this._textSizeCache.totalWidth=l,this._textSizeCache.totalHeight=h,c=i.x-l/2,d=i.y-h/2,p=0,_=s+2*a>2*r,f=n+2*a>2*r,e.x>c+l?p=20:e.x>c&&(p=10),e.y>d+h?p+=2:e.y>d&&(p+=1),t.save(),t.translate(c,d),e.x-=c,e.y-=d,i.x-=c,i.y-=d,t.beginPath(),t.moveTo(r,0),10===p?_?(t.lineTo(i.x-r,0),t.lineTo(e.x,e.y),t.lineTo(i.x+r,0),t.lineTo(l-r,0)):(t.lineTo(e.x,e.y),t.lineTo(l-r,0)):t.lineTo(l-r,0),20===p?(t.lineTo(e.x,e.y),t.lineTo(l,r)):t.arcTo(l,0,l,r,r),21===p?f?(t.lineTo(l,i.y-r),t.lineTo(e.x,e.y),t.lineTo(l,i.y+r),t.lineTo(l,h-r)):(t.lineTo(e.x,e.y),t.lineTo(l,h-r)):t.lineTo(l,h-r),22===p?(t.lineTo(e.x,e.y),t.lineTo(l-r,h)):t.arcTo(l,h,l-r,h,r),12===p?_?(t.lineTo(i.x+r,h),t.lineTo(e.x,e.y),t.lineTo(i.x-r,h),t.lineTo(r,h)):(t.lineTo(e.x,e.y),t.lineTo(r,h)):t.lineTo(r,h),2===p?(t.lineTo(e.x,e.y),t.lineTo(0,h-r)):t.arcTo(0,h,0,h-r,r),1===p?f?(t.lineTo(0,i.y+r),t.lineTo(e.x,e.y),t.lineTo(0,i.y-r),t.lineTo(0,r)):(t.lineTo(e.x,e.y),t.lineTo(0,r)):t.lineTo(0,r),0===p?(t.lineTo(e.x,e.y),t.lineTo(r,0)):t.arcTo(0,0,r,0,r),t.stroke(),t.fillStyle=u.generateColor(this._data.backcolor,this._data.transparency),t.fill(),t.fillStyle=this._data.color,d=r+a+this._data.fontSize,c=r+a,m=0;m>1)+o.ROUND_RADIUS+o.TEXT_MARGINS,a.y),h.data=1,s.append(this.createLineAnchor({points:[h]}))),s):n):new d},inherit(s,l),s.MIN_WIDTH=100,s.prototype.pointsCount=function(){return 2},s.prototype.title=function(){return"Callout"},s.prototype.correctPoints=function(t){var e=this._currentMovingPoint.index-this._startMovingPoint.index,i=this._currentMovingPoint.price-this._startMovingPoint.price,o=t[1];o.index+=e,o.price+=i,t[1]=o},s.prototype.addPoint=function(t){var e=l.prototype.addPoint.call(this,t);return e&&this._calculateBarOffset(),e},s.prototype._calculateBarOffset=function(){this.points().length>1&&(this._barOffset=this.points()[1].index-this.points()[0].index)},s.prototype.setLastPoint=function(t){l.prototype.setLastPoint.call(this,t),2===this.points().length&&this._calculateBarOffset()},s.prototype.setPoint=function(t,e){var i,n,r,a,h;switch(t){case 0:l.prototype.setPoint.call(this,t,e),this._calculateBarOffset();break;case 1:if(i=this.properties(),!i.wordWrapWidth)return;if(n=this._points,r=this._dragStartLeftEdgeIndex,a=Math.round((e.index-r)/2),isFinite(r)&&isFinite(a)){if(n[1]={index:r+a,price:n[1].price},this._calculateBarOffset(),this.normalizePoints(),h=this._timeScale.indexToCoordinate(r+2*a)-this._timeScale.indexToCoordinate(r)-o.ROUND_RADIUS-o.TEXT_MARGINS,!isFinite(h))return;i.wordWrapWidth.setValue(Math.max(s.MIN_WIDTH,h));break}n[1]=e,this._calculateBarOffset(),this.normalizePoints()}},s.prototype.startDragPoint=function(t,e){var i=this.properties();1===t&&i.wordWrap&&i.wordWrap.value()&&(this._dragStartLeftEdgeIndex=2*this.points()[1].index-e.index)},s.prototype.move=function(t){l.prototype.move.call(this,t),this._calculateBarOffset()},s.prototype.state=function(t){var e=l.prototype.state.call(this,t);return e.barOffset=this._barOffset,e},s.prototype.restoreData=function(t){t.barOffset?this._barOffset=t.barOffset:this._calculateBarOffset(),this._calculatePoint2()},s.prototype.setPriceScale=function(t){h.prototype.setPriceScale.call(this,t),t&&t.priceRange()&&this._calculatePoint2()},s.prototype._calculatePoint2=function(){var t,e;this._model.lineBeingEdited()!==this&&this._model.sourceBeingMoved()!==this&&(this._points.length<2||(t=this.points()[0],e=this.points()[1],this._points[1]={price:e.price,index:t.index+this._barOffset}))},t.exports=s},function(t,e,i){(function(t){"use strict";function o(t,e){this._pane=t,this._timeScale=e}function n(t){this._line=t}function s(t,e){this._data=t,this._adapter=e}function r(t,e){h.call(this,t,e),this._invalidated=!0}function a(t,e){this._adapter=new n(this),this._constructor="LineToolExecution";var i=e||new u("linetoolexecution");this.customization={forcePriceAxisLabel:!1,disableSelection:!0,disableErasing:!0},c.call(this,t,new r(this,t),i)}var l=i(2),h=i(9),c=i(1).LineDataSource,d=i(197),p=i(8),u=i(7).DefaultProperty;o.prototype._cachedByBarIndexOrderedExecutions={},o.recreateOrderedByBarsSourcesCache=function(t){var e,i,n,s,r;for(o.clearOrderedByBarsSourcesCache(),e=o.prototype,i=t.orderedSources(), -n=0;nh.lastBar()||i=0;--d)if((p=c[d])instanceof a&&p._adapter._index===i&&p._adapter.getDirection()===f){if(p===t._line)break;u=p._adapter._height(),_=m?_+u:_-u}return{x:e.indexToCoordinate(i),y:_}},n.prototype._height=function(){var t,e=this.getArrowHeight(),i=this.getArrowSpacing();return this.getText()&&d.fontHeight(this.getFont()),t=10,e+i+0+t},n.prototype.getIndex=function(){return this._line._model.timeScale().m_points.lastTimePointIndex()-this._line.points()[0].index},n.prototype.setIndex=function(t){var e,i=this._line._model.timeScale(),o=i.m_points.lastTimePointIndex(),n=o-Math.abs(t);return this._line.startMoving(this._line.points()[0]),e=TradingView.merge({},this._line.points()[0]),e.index=n,this._line.move(e),this._line.endMoving(),this},n.prototype.getTime=function(){return this._unixtime},n.prototype.setTime=function(t){var e=this._line._model.mainSeries();return this._unixtime=ChartApiInstance.alignTimePoint?ChartApiInstance.alignTimePoint(t,e.interval(),e.symbolInfo()):t,this._line.restorePoints([{offset:0,price:this.getPrice(),time_t:this._unixtime}],[]),this._line.createServerPoints(),this},n.prototype.getPrice=function(){return this._line.points().length>0?this._line.points()[0].price:this._line._timePoint.length>0?this._line._timePoint[0].price:void 0},n.prototype.setPrice=function(t){return this._line.points().length>0&&(this._line.points()[0].price=t),this._line._timePoint.length>0&&(this._line._timePoint[0].price=t),this},n.prototype.getText=function(){return this._line.properties().text.value()},n.prototype.setText=function(t){return this._line.properties().text.setValue(t||""),this._line.updateAllViewsAndRedraw(),this},n.prototype.getArrowHeight=function(){return this._line.properties().arrowHeight.value()},n.prototype.setArrowHeight=function(t){return this._line.properties().arrowHeight.setValue(t||5),this},n.prototype.getArrowSpacing=function(){return this._line.properties().arrowSpacing.value()},n.prototype.setArrowSpacing=function(t){return this._line.properties().arrowSpacing.setValue(t||1),this},n.prototype.getDirection=function(){ -return this._line.properties().direction.value()},n.prototype.setDirection=function(t){return this._line.properties().direction.setValue(t||"buy"),this},n.prototype.getArrowColor=function(){return d.getColorFromProperties(this._line.properties().arrowColor,this._line.properties().arrowTransparency)},n.prototype.setArrowColor=function(t){return d.setColorToProperties(t,this._line.properties().arrowColor,this._line.properties().arrowTransparency),this},n.prototype.getTextColor=function(){return d.getColorFromProperties(this._line.properties().textColor,this._line.properties().textTransparency)},n.prototype.setTextColor=function(t){return d.setColorToProperties(t,this._line.properties().textColor,this._line.properties().textTransparency),this},n.prototype.getFont=function(){return d.getFontFromProperties(this._line.properties().fontFamily,this._line.properties().fontSize,this._line.properties().fontBold,this._line.properties().fontItalic)},n.prototype.setFont=function(t){return d.setFontToProperties(t,this._line.properties().fontFamily,this._line.properties().fontSize,this._line.properties().fontBold,this._line.properties().fontItalic),this},n.prototype.setTooltip=function(t){return null==t?t="":t+="",this._line.properties().tooltip.setValue(t),this},n.prototype.getTooltip=function(){return this._line.properties().tooltip.value()},n.prototype.remove=function(){this._line._model.removeSource(this._line),delete this._line},s.prototype._textWidth=function(t){var e,i;return 0===this._adapter.getText().length?0:(t.save(),t.font=this._adapter.getFont(),e=5,i=t.measureText(this._adapter.getText()).width,t.restore(),e+i)},s.prototype._drawArrow=function(t,e,i){var o,n;t.save(),t.strokeStyle=this._adapter.getArrowColor(),t.fillStyle=this._adapter.getArrowColor(),o=this._adapter.getArrowHeight(),n=this._adapter.getDirection(),t.translate(e,i),"buy"!==n&&t.rotate(Math.PI),CanvasEx.drawArrow(t,0,0,0,o),t.restore()},s.prototype._drawText=function(t,e,i){var o,n,s=this._adapter.getText();s&&(t.save(),t.textAlign="center",t.textBaseline="middle",t.font=this._adapter.getFont(),t.fillStyle=this._adapter.getTextColor(),o=e+this._textWidth(t)/2,n=i+d.fontHeight(this._adapter.getFont())/2,t.fillText(s,o,n-1),t.restore())},s.prototype.draw=function(t){var e,i,o,n,s,r,l,h;!this._data.points||this._data.points.length=e-2&&t.x<=e+2&&t.y>=n&&t.y<=s?(r=this._adapter.getTooltip(),new p(p.CUSTOM,{ -mouseDownHandler:function(){TradingView.TradingWidget&&TradingView.TradingWidget.journalDialog()},tooltip:""!==r?{text:r,rect:{x:e,y:n,w:2,h:s-n}}:null})):void 0},inherit(r,h),r.prototype._renderer=null,r.prototype._rendererCached=!1,r.prototype.update=function(){this._invalidated=!0},r.prototype.updateImpl=function(){h.prototype.update.call(this),this._renderer=null,this._rendererCached=!1,this._invalidated=!1},r.prototype.renderer=function(t){var e,i,o,n,r,a,h,c;return this._invalidated&&this.updateImpl(),this._rendererCached?this._renderer:(this._rendererCached=!0,e=this._source,i=e.points(),0===i.length?null:(o=e._adapter,n=e._model.timeScale(),r=this._source._model.paneForSource(this._source).executionsPositionController(),a=r.getXYCoordinate(o,n,i[0].index),!isFinite(a.y)||a.y<0||a.y>t||a.x<0?(this._renderer=null,null):(h=[new l.Point(a.x,a.y)],c={points:h},this._renderer=new s(c,o),this._renderer)))},inherit(a,c),a.POINTS_COUNT=1,a.skipMagnetting=!0,a.prototype.pointsCount=function(){return a.POINTS_COUNT},a.prototype.title=function(){return"Execution"},a.prototype.hasContextMenu=function(){return!1},a.prototype.state=function(){return null},a.prototype.updateAllViews=function(){return this._model.properties().tradingProperties.showExecutions.value()?c.prototype.updateAllViews.call(this):null},a.prototype.priceAxisViews=function(t,e){return this._model.properties().tradingProperties.showExecutions.value()?c.prototype.priceAxisViews.call(this,t,e):null},a.prototype.paneViews=function(e){return TradingView.printing&&!t.enabled("snapshot_trading_drawings")?null:this._model.properties().tradingProperties.showExecutions.value()?c.prototype.paneViews.call(this,e):null},a.prototype.userEditEnabled=function(){return!1},a.prototype.showInObjectTree=function(){return!1},e.ExecutionsPositionController=o,e.LineToolExecution=a}).call(e,i(3))},function(t,e,i){"use strict";function o(){d.call(this)}function n(t,e,i){this._data=t,this._hittest=e||new _(_.MOVEPOINT),this._backHittest=i||new _(_.MOVEPOINT_BACKGROUND)}function s(t,e){l.call(this,t,e),this._rendererCache={},this._invalidated=!0,this._numericFormatter=new m}function r(t,e){this._constructor="LineToolFibCircles";var i=e||this.createPropertiesObject("linetoolfibcircles");h.call(this,t,new s(this,t),i),t._fibCirclesLabelsCache||(t._fibCirclesLabelsCache=new o)}var a=i(2),l=i(9),h=i(1).LineDataSource,c=i(23),d=i(88),p=i(11).TrendLineRenderer,u=i(91),_=i(8),f=i(6),m=i(26).NumericFormatter,g=i(14);inherit(o,d),o.prototype.levelsCount=function(){return r.LevelsCount},n.prototype.draw=function(t){var e,i,o,n,s,r,a,l;t.lineCap="butt",t.strokeStyle=this._data.color,t.lineWidth=this._data.linewidth,t.lineStyle=this._data.linestyle,e=this._data.points[0],i=this._data.points[1],o=Math.abs(e.x-i.x),n=Math.abs(e.y-i.y),s=e.add(i).scaled(.5),o<1||n<1||(this._data.wholePoints&&(a=this._data.wholePoints[0],l=this._data.wholePoints[1],r=Math.abs(a.x-l.x)),t.save(),t.translate(s.x,s.y),t.scale(1,n/o),t.beginPath(),t.arc(0,0,o/2,0,2*Math.PI,!1),t.restore(),t.stroke(), -this._data.fillBackground&&(this._data.wholePoints&&(t.translate(s.x,s.y),t.scale(1,n/o),t.arc(0,0,r/2,0,2*Math.PI,!0)),t.fillStyle=g.generateColor(this._data.backcolor,this._data.transparency,!0),t.fill()))},n.prototype.hitTest=function(t){var e,i,o,n,s,r,l,h,c,d,p;return this._data.points.length<2?null:(e=this._data.points[0],i=this._data.points[1],o=.5*Math.abs(e.x-i.x),n=Math.abs(e.x-i.x),s=Math.abs(e.y-i.y),r=e.add(i).scaled(.5),l=t.substract(r),n<1||s<1?null:(h=(i.y-e.y)/(i.x-e.x),l.y/=h,c=l.x*l.x+l.y*l.y,d=c-o*o,d=a.sign(d)*Math.sqrt(Math.abs(d/o)),p=3,Math.abs(d)0&&(c.wholePoints=this._levels[a-1].points),c.fillBackground=i,c.transparency=o,d=new _(_.MOVEPOINT,null,l.index),t.append(new n(c,d)),e.showCoeffs.value()){if(!(m=this._cacheState.preparedCells.cells[this._levels[a].index-1]))continue;g={left:m.left,top:s.topByRow(this._cacheState.row),width:m.width,height:s.rowHeight(this._cacheState.row)},v={left:Math.round(l.labelPoint.x-g.width),top:Math.round(l.labelPoint.y-g.height/2),width:m.width,height:g.height},y=new u(r,g,v),t.append(y)}return e.trendline.visible.value()&&(b={points:[this._points[0],this._points[1]],width:this._model.timeScale().width(),height:this._source.priceScale().height(),color:e.trendline.color.value(),linewidth:e.trendline.linewidth.value(),linestyle:e.trendline.linestyle.value(),extendleft:!1,extendright:!1,leftend:h.LINEEND_NORMAL,rightend:h.LINEEND_NORMAL},t.append(new p(b))),this.addAnchors(t),t},inherit(r,h),r.LevelsCount=11,r.prototype.pointsCount=function(){return 2},r.prototype.title=function(){ -return"Fib Circles"},r.prototype.processErase=function(t,e){var i="level"+e,o=this.properties()[i].visible;t.setProperty(o,!1,"Erase level line")},r.prototype.createPropertiesObject=function(t,e,i){return new c(t,e,i,{range:[1,11]})},e.EllipseRendererSimple=n,e.LineToolFibCircles=r},function(t,e,i){"use strict";function o(){h.call(this)}function n(t,e){d.call(this,t,e),this._rendererCache={},this._invalidated=!0}function s(t,e){this._constructor="LineToolFibRetracement";var i=e||this.createPropertiesObject("linetoolfibretracement");c.call(this,t,new n(this,t),i),this.version=s.version,this._properties._stateVersion=1,t._fibRetracementLabelsCache||(t._fibRetracementLabelsCache=new o)}var r=i(2),a=i(23),l=i(45).RectangleTransparencyRenderer,h=i(88),c=i(1).LineDataSource,d=i(9),p=i(11).TrendLineRenderer,u=i(91),_=i(8),f=i(6);inherit(o,h),o.prototype.levelsCount=function(){return s.LevelsCount},inherit(n,d),n.prototype.update=function(){this._invalidated=!0},n.prototype._updateImpl=function(){var t,e,i,o,n,r,a,l,h,c,p,u,_,f;if(d.prototype.update.call(this),this._cacheState=this._model._fibRetracementLabelsCache.updateSource(this._source),!(this._source.points().length<2)&&this._source.priceScale()&&!this._source.priceScale().isEmpty()&&!this._model.timeScale().isEmpty()&&(t=this._source.points()[0],e=this._source.points()[1],i=!1,o=this._source.properties(),o.reverse&&o.reverse.value()&&(i=o.reverse.value()),this._levels=[],n=i?e.price-t.price:t.price-e.price,r=i?t.price:e.price,!this._source.priceScale().isPercent()||null!==(a=this._source.ownerSource().firstValue())))for(l=1;l<=s.LevelsCount;l++)h="level"+l,c=o[h],c.visible.value()&&(p=c.coeff.value(),u=c.color.value(),_=r+p*n,this._source.priceScale().isPercent()&&(_=this._source.priceScale().priceRange().convertToPercent(_,a)),f=this._source.priceScale().priceToCoordinate(_),this._levels.push({color:u,y:f,linewidth:o.levelsStyle.linewidth.value(),linestyle:o.levelsStyle.linestyle.value(),index:l}))},n.prototype.renderer=function(){var t,e,i,o,n,s,a,h,d,m,g,v,y,b,w,S,T,C,x,P,L,k;if(this._invalidated&&(this._updateImpl(),this._invalidated=!1),t=new f,this._points.length<2)return t;for(e=this._points[0],i=this._points[1],o=Math.min(e.x,i.x),n=Math.max(e.x,i.x),s=this._source.properties(),a=s.fillBackground.value(),h=s.transparency.value(),d=s.extendLines.value()?this._model.timeScale().width():n,m=this._model._fibRetracementLabelsCache,g=m.canvas().get(0),v=0;v0&&a&&(y=this._levels[v-1],e=new r.Point(o,this._levels[v].y),i=new r.Point(d,y.y),b={},b.points=[e,i],b.color=this._levels[v].color,b.linewidth=0,b.backcolor=this._levels[v].color,b.fillBackground=!0,b.transparency=h,t.append(new l(b))),e=new r.Point(o,this._levels[v].y),i=new r.Point(n,this._levels[v].y),w={points:[e,i],width:this._model.timeScale().width(),height:this._source.priceScale().height(),color:this._levels[v].color,linewidth:this._levels[v].linewidth,linestyle:this._levels[v].linestyle,extendleft:!1,extendright:s.extendLines.value(),leftend:c.LINEEND_NORMAL, -rightend:c.LINEEND_NORMAL},S=new _(_.MOVEPOINT,null,this._levels[v].index),t.append(new p(w,S)),s.showCoeffs.value()||s.showPrices.value()){if(!this._cacheState.preparedCells)continue;if(!(T=this._cacheState.preparedCells.cells[this._levels[v].index-1]))continue;switch(s.horzLabelsAlign.value()){case"left":C=e;break;case"center":C=e.add(i).scaled(.5),C.x+=T.width/2,C.x=Math.round(C.x);break;case"right":s.extendLines.value()?C=new r.Point(d-4,this._levels[v].y):(C=new r.Point(d+4,this._levels[v].y),C.x+=T.width,C.x=Math.round(C.x))}x={left:T.left,top:m.topByRow(this._cacheState.row),width:T.width,height:m.rowHeight(this._cacheState.row)},P={left:C.x-x.width,top:C.y,width:T.width,height:x.height},L=s.vertLabelsAlign.value(),"middle"===L&&(P.top-=P.height/2),"bottom"===L&&(P.top-=P.height),k=new u(g,x,P),t.append(k)}return s.trendline.visible.value()&&(w={points:[this._points[0],this._points[1]],width:this._model.timeScale().width(),height:this._source.priceScale().height(),color:s.trendline.color.value(),linewidth:s.trendline.linewidth.value(),linestyle:s.trendline.linestyle.value(),extendleft:!1,extendright:!1,leftend:c.LINEEND_NORMAL,rightend:c.LINEEND_NORMAL},t.append(new p(w))),this.addAnchors(t),t},inherit(s,c),s.version=2,s.LevelsCount=24,s.prototype.stop=function(){c.prototype.stop.call(this),this._model._fibRetracementLabelsCache.removeSource(this.id())},s.prototype.pointsCount=function(){return 2},s.prototype.title=function(){return"Fib Retracement"},s.prototype.migrateVersion=function(t,e,i){1===t&&this.properties().extendLines.setValue(!0)},s.prototype.processErase=function(t,e){var i="level"+e,o=this.properties()[i].visible;t.setProperty(o,!1,"Erase level line")},s.prototype.createPropertiesObject=function(t,e,i){return new a(t,e,i,{range:[1,24],names:["coeff","color","visible"]})},t.exports=s},function(t,e,i){"use strict";function o(){d.call(this)}function n(t,e,i){this._data=t,this._hittest=e||new _(_.MOVEPOINT),this._backHittest=i||new _(_.MOVEPOINT_BACKGROUND),this._rendererCache={}}function s(t,e){h.call(this,t,e),this._rendererCache={},this._levels=[],this._invalidated=!0}function r(t,e){this._constructor="LineToolFibSpeedResistanceArcs";var i=e||this.createPropertiesObject("linetoolfibwedge");l.call(this,t,new s(this,t),i),t._fibWedgeLabelsCache||(t._fibWedgeLabelsCache=new o)}var a=i(2),l=i(1).LineDataSource,h=i(9),c=i(23),d=i(88),p=i(11).TrendLineRenderer,u=i(91),_=i(8),f=i(6),m=i(14);inherit(o,d),o.prototype.levelsCount=function(){return r.LevelsCount},n.prototype.draw=function(t){if(t.strokeStyle=this._data.color,t.lineWidth=this._data.linewidth,t.beginPath(),t.arc(this._data.center.x,this._data.center.y,this._data.radius,this._data.edge1,this._data.edge2,!0),t.stroke(),this._data.fillBackground){if(t.arc(this._data.center.x,this._data.center.y,this._data.prevRadius,this._data.edge2,this._data.edge1,!1),this._data.gradient){var e=t.createRadialGradient(this._data.center.x,this._data.center.y,this._data.prevRadius,this._data.center.x,this._data.center.y,this._data.radius) -;e.addColorStop(0,m.generateColor(this._data.color1,this._data.transparency)),e.addColorStop(1,m.generateColor(this._data.color2,this._data.transparency)),t.fillStyle=e}else t.fillStyle=m.generateColor(this._data.color,this._data.transparency,!0);t.fill()}},n.prototype.hitTest=function(t){var e,i,o,n,s,r,a,l,h,c=t.substract(this._data.center).length();return Math.abs(c-this._data.radius)<=4&&(e=t.substract(this._data.p1).length(),i=t.substract(this._data.p2).length(),o=Math.max(e,i),n=this._data.p1.substract(this._data.p2).length(),o<=n)?this._hittest:this._data.fillBackground&&c<=this._data.radius&&(s=this._data.p1.substract(this._data.center).normalized(),r=this._data.p2.substract(this._data.center).normalized(),c=t.substract(this._data.center).normalized(),a=s.dotProduct(r),l=c.dotProduct(s),h=c.dotProduct(r),l>=a&&h>=a)?this._backHittest:null},inherit(s,h),s.prototype.update=function(){this._invalidated=!0},s.prototype._updateImpl=function(){var t,e,i,o,n,s,r,l,c,d,p,u,_,f,m,g,v,y,b;if(h.prototype.update.call(this),this._cacheState=this._source.getCache().updateSource(this._source),this._levels=[],!(this._points.length<3))for(t=this._points,e=t[0],i=t[1],o=t[2],n=i.substract(e).normalized(),s=o.substract(e).normalized(),r=new a.Point(1,0),l=new a.Point(0,1),c=Math.acos(n.dotProduct(r)),n.dotProduct(l)<0&&(c=2*Math.PI-c),this._edge1=c,d=Math.acos(s.dotProduct(r)),s.dotProduct(l)<0&&(d=2*Math.PI-d),this._edge2=d,cMath.PI&&(this._edge1=Math.min(c,d),this._edge2=Math.max(c,d)-2*Math.PI),p=this._source.properties(),u=1;u<=this._source.getCache().levelsCount();u++)_="level"+u,f=p[_],f.visible.value()&&(m=f.coeff.value(),g=f.color.value(),v=i.substract(e).length()*m,y=n.add(s).scaled(.5).normalized().scaled(v),b=e.add(y),this._levels.push({coeff:m,color:g,radius:v,labelPoint:b,p1:e.add(n.scaled(v)),p2:e.add(s.scaled(v)),linewidth:f.linewidth.value(),linestyle:f.linestyle.value(),index:u}))},s.prototype.renderer=function(){var t,e,i,o,s,r,a,h,c,d,m,g,v,y,b,w,S,T,C,x;if(this._invalidated&&(this._updateImpl(),this._invalidated=!1),t=new f,this._points.length<2)return t;if(e=this._source.properties(),i=this._points,o=i[0],s=i[1],r={points:[o,s],width:this._model.timeScale().width(),height:this._source.priceScale().height(),color:e.trendline.color.value(),linewidth:e.trendline.visible.value()?e.trendline.linewidth.value():0,linestyle:e.trendline.linestyle.value(),extendleft:!1,extendright:!1,leftend:l.LINEEND_NORMAL,rightend:l.LINEEND_NORMAL},t.append(new p(r)),this._points.length<3)return this.addAnchors(t),t;for(a=i[2],h=a.data,c=s.substract(o).length(),d=a.substract(o).normalized(),a=o.add(d.scaled(c)),a.data=h,r={points:[o,a],width:this._model.timeScale().width(),height:this._source.priceScale().height(),color:e.trendline.color.value(),linewidth:e.trendline.visible.value()?e.trendline.linewidth.value():0,linestyle:e.trendline.linestyle.value(),extendleft:!1,extendright:!1,leftend:l.LINEEND_NORMAL,rightend:l.LINEEND_NORMAL}, -t.append(new p(r)),m=this._model._fibWedgeLabelsCache,g=m.canvas().get(0),v=this._levels.length-1;v>=0;v--)if(y=this._levels[v],b={},b.center=this._points[0],b.radius=y.radius,b.prevRadius=v>0?this._levels[v-1].radius:0,b.edge=this._edge,b.color=y.color,b.linewidth=y.linewidth,b.edge1=this._edge1,b.edge2=this._edge2,b.p1=y.p1,b.p2=y.p2,b.fillBackground=e.fillBackground.value(),b.transparency=e.transparency.value(),w=new _(_.MOVEPOINT,null,y.index),t.append(new n(b,w)),e.showCoeffs.value()){if(!(S=this._cacheState.preparedCells.cells[this._levels[v].index-1]))continue;T={left:S.left,top:m.topByRow(this._cacheState.row),width:S.width,height:m.rowHeight(this._cacheState.row)},C={left:Math.round(y.labelPoint.x-T.width),top:Math.round(y.labelPoint.y-T.height/2),width:S.width,height:T.height},x=new u(g,T,C),t.append(x)}return this.isAnchorsRequired()&&(i=[o,s],this._model.lineBeingCreated()!==this._source&&i.push(a),t.append(this.createLineAnchor({points:i}))),t},inherit(r,l),r.LevelsCount=11,r.prototype.getCache=function(){return this._model._fibWedgeLabelsCache||(this._model._fibWedgeLabelsCache=new o),this._model._fibWedgeLabelsCache},r.prototype.pointsCount=function(){return 3},r.prototype.title=function(){return"Fib Wedge"},r.prototype.setPoint=function(t,e){var i,o,n,s,r,a,h;l.prototype.setPoint.call(this,t,e),this._recursiveGuard||(this._recursiveGuard=!0,2===t?(i=this.pointToScreenPoint(this._points[0])[0],o=this.pointToScreenPoint(this._points[1])[0],n=this.pointToScreenPoint(this._points[2])[0],s=n.substract(i).length(),r=o.substract(i).normalized(),o=i.add(r.scaled(s)),a=this.screenPointToPoint(o),this._properties.points[1].price.setValue(a.price),this._properties.points[1].bar.setValue(a.index)):(i=this.pointToScreenPoint(this._points[0])[0],o=this.pointToScreenPoint(this._points[1])[0],n=this.pointToScreenPoint(this._points[2])[0],h=o.substract(i).length(),r=n.substract(i).normalized(),n=i.add(r.scaled(h)),a=this.screenPointToPoint(n),this._properties.points[2].price.setValue(a.price),this._properties.points[2].bar.setValue(a.index)),this._recursiveGuard=!1)},r.prototype.addPoint=function(t){var e,i,o,n,s,r,a,h;return 2===this._points.length&&(e=this.pointToScreenPoint(this._points[0])[0],i=this.pointToScreenPoint(this._points[1])[0],this.priceScale().isPercent()&&(o=this.ownerSource().firstValue(),t.price=this.priceScale().priceRange().convertFromPercent(t.price,o)),n=this.pointToScreenPoint(t)[0],s=i.substract(e).length(),r=n.substract(e).normalized(),n=e.add(r.scaled(s)),a=this.priceScale().coordinateToPrice(n.y),h=Math.round(this._model.timeScale().coordinateToIndex(n.x)),t={index:h,price:a}),l.prototype.addPoint.call(this,t)},r.prototype.processErase=function(t,e){var i="level"+e,o=this.properties()[i].visible;t.setProperty(o,!1,"Erase level line")},r.prototype.createPropertiesObject=function(t,e,i){return new c(t,e,i,{range:[1,11]})},e.ArcWedgeRenderer=n,e.FibWedgePaneView=s,e.LineToolFibWedge=r},function(t,e,i){"use strict";function o(t,e){h.call(this,t,e),this._invalidated=!0}function n(t,e,i){ -this._source=t,this._index=e,this._bars=i||[]}function s(t,e,i){this._source=t,_.call(this,"linetoolghostfeed",e,i)}function r(t,e,i){var n,a;this._constructor="LineToolGhostFeed",e?(n=e,n._source=this):n=new s(this),i||(a=Math.round(t.mainSeries().data().calculateATR()),n.averageHL.setValue(a)),l.call(this,t,new o(this,t),n),this._segments=[],n.averageHL.listeners().subscribe(this,r.prototype.regenerate),n.variance.listeners().subscribe(this,r.prototype.regenerate),n.points||n.addProperty("points"),this._currentAverageHL=this._properties.averageHL.value(),this._currentVariance=this._properties.variance.value(),this._currentInterval=t.mainSeries().interval()}var a=i(2),l=i(1).LineDataSource,h=i(9),c=i(11).TrendLineRenderer,d=i(8),p=i(59).PaneRendererCandles,u=i(6),_=i(7).DefaultProperty;inherit(o,h),o.prototype.update=function(){h.prototype.update.call(this),this._invalidated=!0},o.prototype.udpateImpl=function(){var t=this;this._segments=[],t._points.length<2||(this._segments=this._source.segments().map(function(e,i){var o,n,s,r,l,h,c,d,p,u,_,f=t._source.points();return i>=t._points.length-1?null:(o=t._points[i].x,n=f[i].price,s=f[i+1].price,r=f[i+1].index-f[i].index,l=t._model.timeScale().barSpacing()*a.sign(r),h=(s-n)/(e.bars().length-1),c=t._source.properties(),d=c.candleStyle.upColor.value(),p=c.candleStyle.downColor.value(),u=c.candleStyle.borderUpColor.value(),_=c.candleStyle.borderDownColor.value(),{bars:e.bars().map(function(e,i){var s=e.c>=e.o;return{time:o+i*l,open:t.priceToCoordinate(e.o+n+i*h),high:t.priceToCoordinate(e.h+n+i*h),low:t.priceToCoordinate(e.l+n+i*h),close:t.priceToCoordinate(e.c+n+i*h),color:s?d:p,borderColor:s?u:_,hollow:!1}})})}).filter(function(t){return!!t}))},o.prototype.renderer=function(){var t,e,i,o,n,s,r,a,h,_,f,m,g;for(this._invalidated&&(this.udpateImpl(),this._invalidated=!1),t=new u,e=1;e0&&(e=this._points[this._points.length-1],e.index===t.index)){for(this._lastPoint=null,this.normalizePoints(),this.createServerPoints(),i=0;i1&&this.generateBars(this._points.length-2),o||this._finished},r.prototype.finish=function(){this._finished=!0,this._lastPoint=null,this.normalizePoints(),this.createServerPoints()},r.prototype.setPoint=function(t,e,i){var o,n,s;l.prototype.setPoint.call(this,t,e,i),t>0&&(o=this.points()[t-1],n=e.index-o.index,this._segments[t-1].setSize(Math.abs(n))),t0),t.stroke(),t.restore()},inherit(n,a),n.prototype.update=function(){this._invalidated=!0},n.prototype.updateImpl=function(){var t,e,i,o,n,s,l,h,c,d,p,u,_,f;a.prototype.update.call(this),this._points.length>0&&void 0!==this._source._angle&&(t=this._points[0],e=Math.cos(this._source._angle),i=-Math.sin(this._source._angle),o=new r.Point(e,i),this._secondPoint=t.addScaled(o,this._source._distance),this._secondPoint.data=1),this._label=null,this._source.points().length<2||(t=this._source.points()[0],n=this._source.points()[1],s=[],this._source.properties().showPriceRange.value()&&this._source.priceScale()&&(c=n.price-t.price,d=c/t.price,l=this._source.priceScale().formatter().format(c)+" ("+(new m).format(100*d)+")",p=this._model.mainSeries().base(),p&&(u=Math.round(c*p),l+=", "+u),s.push("priceRange")),_=this._source.properties().showBarsRange.value(),_&&(h="",f=n.index-t.index,h+=$.t("{0} bars").format(f),s.push("barsRange")),this._label=[l,h].filter(function(t){return t}).join("\n")||null,this._icons=s)},n.prototype.renderer=function(){var t,e,i,n,s,r,a,h,f,m;return this._invalidated&&(this.updateImpl(),this._invalidated=!1),t=new _,e={},i=this.isAnchorsRequired(),n=i||this._source.properties().alwaysShowStats.value(),this._secondPoint&&this._points.length>0&&(e.points=[this._points[0],this._secondPoint],e.width=this._model.timeScale().width(),e.height=this._source.priceScale().height(),e.color=this._source.properties().linecolor.value(),e.linewidth=this._source.properties().linewidth.value(),e.linestyle=this._source.properties().linestyle.value(),e.extendleft=this._source.properties().extendLeft.value(), -e.extendright=this._source.properties().extendRight.value(),e.leftend=l.LINEEND_NORMAL,e.rightend=l.LINEEND_NORMAL,t.append(new u(e)),n&&this._label&&2===this._points.length&&(s={points:[this._secondPoint],text:this._label,color:this._source.properties().textcolor.value(),font:d.LABEL_FONT,fontsize:d.LABEL_FONTSIZE,lineSpacing:d.LABEL_LINESPACING,backgroundColor:d.LABEL_BGCOLOR,borderColor:d.LABEL_BORDERCOLOR,borderWidth:1,padding:d.LABEL_PADDING,paddingLeft:30,doNotAlignText:!0,icons:this._icons},r=d.LABEL_OFFSET,this._points[1].y=2&&this._source.getAlertIsActive(function(i){t.append(new TradingView.PaneRendererClockIcon({point1:e.points[0],point2:e.points[1],color:i?e.color:defaults("chartproperties.alertsProperties.drawingIcon.color")}))}),this._secondPoint&&this._points.length>0&&i&&t.append(this.createLineAnchor({points:[this._points[0],this._secondPoint]})),t},inherit(s,l),s.AngleProperty=function(t){e.call(this),this._lineSource=t},inherit(s.AngleProperty,e),s.AngleProperty.prototype.value=function(){var t=this._lineSource._angle,e=180*t/Math.PI;return Math.round(e)},s.AngleProperty.prototype.setValue=function(t){var e,i,o,n,s,a,l=t*Math.PI/180;this._lineSource._angle=l,e=this._lineSource.pointToScreenPoint(this._lineSource.points()[0])[0],i=Math.cos(this._lineSource._angle),o=-Math.sin(this._lineSource._angle),n=new r.Point(i,o),s=e.addScaled(n,this._lineSource._distance),a=this._lineSource.screenPointToPoint(s),this._lineSource._points[1]=a,this._lineSource._model.updateSource(this._lineSource),this._lineSource.updateAllViews(),this._lineSource._model.updateSource(this._lineSource)},s.prototype.pointsCount=function(){return 2},s.prototype.title=function(){return"Trend Angle"},s.prototype._calculateAngle=function(){var t,e=this.pointToScreenPoint(this.points()[0])[0],i=this.pointToScreenPoint(this.points()[1])[0],o=i.substract(e);o.length()>0?(o=o.normalized(),this._angle=Math.acos(o.x),o.y>0&&(this._angle=-this._angle),this._distance=i.substract(e).length()):delete this._angle,t=this.properties(),t.hasOwnProperty("angle")&&this.properties().angle.listeners().fire(this.properties().angle)},s.prototype.addPoint=function(t,e){ -var i=l.prototype.addPoint.call(this,t,e);return i&&this._calculateAngle(),i},s.prototype.setLastPoint=function(t,e){l.prototype.setLastPoint.call(this,t,e),this.points().length>1&&this._calculateAngle()},s.prototype.axisPoints=function(){var t,e,i,o,n,s;return this.points().length<2?[]:(t=[this.points()[0]],e=this.pointToScreenPoint(this.points()[0])[1],i=Math.cos(this._angle)*this._distance,o=-Math.sin(this._angle)*this._distance,n=e.add(new r.Point(i,o)),s=this.screenPointToPoint(n),t.push(s),t)},s.prototype.setPoint=function(t,e,i){l.prototype.setPoint.call(this,t,e,i),this.points().length>1&&1===t&&this._calculateAngle()},s.prototype.restoreData=function(t){this._angle=t.angle,this._distance=t.distance},s.prototype.state=function(t){var e=l.prototype.state.call(this,t);return e.angle=this._angle,e.distance=this._distance,e},s.prototype.cloneData=function(t){this._angle=t._angle,this._distance=t._distance},s.prototype.canHasAlert=function(){return!0},s.prototype._getAlertPlots=function(){return[this._linePointsToAlertPlot(this._points,null,this.properties().extendLeft.value(),this.properties().extendRight.value())]},t.exports=s}).call(e,i(24))},function(t,e,i){(function(e,o){"use strict";function n(t,i,s){var r,a;this.m_timeScale=t,r=i.rightAxisProperties.state(),r.autoScale=!0,this.m_rightPriceScale=new h(new e(r),s.properties().scalesProperties),a=i.leftAxisProperties.state(),a.autoScale=!0,this.m_leftPriceScale=new h(new e(a),s.properties().scalesProperties),this.m_dataSources=[],this.m_height=0,this.m_width=0,this.m_mainDataSource=null,this._properties=i,this._model=s,this._tagsChanged=new o,i.topMargin.listeners().subscribe(this,n.prototype._updateMargins),i.bottomMargin.listeners().subscribe(this,n.prototype._updateMargins),this._updateMargins(),this._stretchFactor=n.DEFAULT_STRETCH_FACTOR,this._isInInsertManyDataSourcesState=!1,this._lastLineDataSourceZOrder=null,this._maximized=!1,this._isMainPane=!1}var s=i(203).ExecutionsPositionController,r=i(1).LineDataSource,a=i(48).PriceDataSource,l=i(12).getLogger("Chart.Pane"),h=i(210);n.DEFAULT_STRETCH_FACTOR=1e3,n.PANE_ANIMATION_DURATION=500,n.sortSourcesPreOrdered={"Volume@tv-basicstudies":0,ChartEventsSource:1,"ESD$TV_DIVIDENDS@tv-scripting":2,"ESD$TV_SPLITS@tv-scripting":3,"ESD$TV_EARNINGS@tv-scripting":4,LineToolOrder:5,LineToolPosition:6,LineToolExecution:7},n.prototype.destroy=function(){this._properties.topMargin.listeners().unsubscribe(this,n.prototype._updateMargins),this._properties.bottomMargin.listeners().unsubscribe(this,n.prototype._updateMargins)},n.prototype.setPaneSize=function(t){var e={large:1,medium:.6,small:.3,tiny:.15};if(!e[t])throw Error("Unknown size enum value: "+t);this._stretchFactor=e[t]*n.DEFAULT_STRETCH_FACTOR},n.sortSources=function(t){return t.map(function(t){var e,i,o=t._constructor;return isFunction(t.metaInfo)&&(o=t.metaInfo().id),i=n.sortSourcesPreOrdered[o]||0,e=i>0?1/0:i<0?-1/0:t.zorder(),[t,i,e]}).sort(function(t,e){return t[1]-e[1]||t[2]-e[2]}).map(function(t){return t[0]})},n.prototype._updateMargins=function(){ -var t,e,i=.01*this._properties.topMargin.value(),o=.01*this._properties.bottomMargin.value();for(this.m_leftPriceScale.setTopMargin(i),this.m_leftPriceScale.setBottomMargin(o),this.m_rightPriceScale.setTopMargin(i),this.m_rightPriceScale.setBottomMargin(o),t=0;to)&&(o=i));return null===o&&(o=this.getZOrderMinMax().minZOrder-1),this.m_dataSources.forEach(function(t){t.zorder()>o&&t.setZorder(t.zorder()+1)}),o+1}, -n.prototype.beginInsertManyLineDataSources=function(){this._isInInsertManyDataSourcesState=!0,this._lastLineDataSourceZOrder=null},n.prototype.endInsertManyLineDataSources=function(){this._isInInsertManyDataSourcesState=!1,this._lastLineDataSourceZOrder=null},n.prototype.addDataSource=function(t,e,i){var o;t instanceof r&&!i?(o=null!==this._lastLineDataSourceZOrder?this._lastLineDataSourceZOrder:this._newZOrderForLineTool(),this._isInInsertManyDataSourcesState&&(this._lastLineDataSourceZOrder=o)):o=this.getZOrderMinMax().minZOrder-1,this.insertDataSource(t,e,o)},n.prototype.insertDataSource=function(t,i,o){var s,r,l;this.m_dataSources.push(t),s=!1,t===this._model.mainSeries()?(this.m_mainDataSource=t,s=!0):null===this.m_mainDataSource&&(this.m_mainDataSource=t,s=!0),t._isOverlay=!1,null!==i||this.canHaveMoreNoScaleSources()||(i=this.rightPriceScale()),null===i&&(r=this.m_rightPriceScale.topMargin(),l=this.m_rightPriceScale.bottomMargin(),t.metaInfo&&"Volume@tv-basicstudies"===t.metaInfo().id&&(r=.75,l=0),i=new h(new e(this._properties.overlayPropreties.state()),this._model.properties().scalesProperties),i.setHeight(this.m_height),i.setTopMargin(r),i.setBottomMargin(l),t._isOverlay=!0),i.addDataSource(t,this._isInInsertManyDataSourcesState),t.setPriceScale(i),t.onTagsChanged&&t.onTagsChanged().subscribe(this,n.prototype.onSourceTagsChanged),t.setZorder(o),s&&this._processMainSourceChange(),this._tagsChanged.fire(),TradingView.isInherited(t.constructor,a)&&this.recalculatePriceScale(i),this.invalidateSourcesCache()},n.prototype.removeDataSource=function(t,e){var i,o=this.m_dataSources.indexOf(t);if(-1===o)return void l.logDebug("removeDataSource: invalid data source");t._isOverlay=!1,this.m_dataSources.splice(o,1),t!==this.m_mainDataSource||e||(this.m_mainDataSource=null),i=null,-1!==this.m_leftPriceScale.dataSources().indexOf(t)?(this.m_leftPriceScale.removeDataSource(t),i=this.m_leftPriceScale):-1!==this.m_rightPriceScale.dataSources().indexOf(t)&&(this.m_rightPriceScale.removeDataSource(t),i=this.m_rightPriceScale),t.onTagsChanged&&t.onTagsChanged().unsubscribe(this,n.prototype.onSourceTagsChanged),TradingView.isInherited(t.constructor,a)&&this._processMainSourceChange(),this._tagsChanged.fire(),i&&TradingView.isInherited(t.constructor,a)&&this.recalculatePriceScale(i),this.invalidateSourcesCache()},n.prototype.startScalePrice=function(t,e){t.startScale(e)},n.prototype.scalePriceTo=function(t,e){t.scaleTo(e),this.updateAllViews()},n.prototype.endScalePrice=function(t){t.endScale()},n.prototype.startScrollPrice=function(t,e){t.startScroll(e)},n.prototype.scrollPriceTo=function(t,e){t.scrollTo(e),this.updateAllViews()},n.prototype.endScrollPrice=function(t){t.endScroll()},n.prototype.setPriceAutoScale=function(t,e){if(t.setAutoScale(e),this.timeScale().isEmpty())return void t.setPriceRange(null);this.recalculatePriceScale(t)},n.prototype.restorePriceScaleState=function(t,e){t.restoreState(e),this.updateAllViews()},n.prototype.updateAllViews=function(){ -for(var t=0;te&&(e=o.zorder());return{minZOrder:t,maxZOrder:e}},n.prototype.isZOrderAvailable=function(t){var e,i;for(e=0;e0&&e<0?(n=a[l-1].zorder(),s=t.zorder(),a[l-1].setZorder(s),t.setZorder(n)):l0&&(r=a[l+1].zorder(),s=t.zorder(),a[l+1].setZorder(s),t.setZorder(r)),this.invalidateSourcesCache()},n.prototype.onSourceTagsChanged=function(){this._tagsChanged.fire()},n.prototype.onTagsChanged=function(){return this._tagsChanged},n.prototype.dumpPriceScale=function(t){var e,i,o,n=t.dataSources(),s=[];for(e=0;e=0;t--)TradingView.isInherited(this.m_dataSources[t].constructor,TradingView.Series)&&this.m_dataSources.splice(t,1)},n.prototype.nonOverlayPricesSourcesCount=function(){return this.m_dataSources.filter(function(t){return(!t.properties().linkedToSeries||!t.properties().linkedToSeries.value())&&(TradingView.isInherited(t.constructor,a)&&t.showInObjectTree()&&!t.isNoScale())}).length},n.prototype.canHaveMoreNoScaleSources=function(){return this.nonOverlayPricesSourcesCount()>1},n.prototype.actionNoScaleIsEnabled=function(t){return!(!this.isOverlay(t)&&TradingView.isInherited(t.constructor,a))||this.canHaveMoreNoScaleSources()},n.prototype.executionsPositionController=function(){return this._executionsPositionController||(this._executionsPositionController=new s(this,this._model.timeScale())),this._executionsPositionController},n.prototype.isLast=function(){var t=this._model.panes();return t[t.length-1]===this},n.prototype.setMaximized=function(t){this._maximized=t},n.prototype.isMaximized=function(){return this._maximized},n.prototype.isMainPane=function(){var t=this._model.mainSeries(),e=!1;return this.m_dataSources.forEach(function(i){e||(e=i===t)}),this._isMainPane=e,e},n.prototype.properties=function(){return this._properties},t.exports=n}).call(e,i(24),i(15))},function(t,e,i){(function(e,o){"use strict";function n(t,e){if(this.m_base=t,this.m_integralDividers=e,this.m_fractionalDividers=[],l.isBaseDecimal(this.m_base))this.m_fractionalDividers=[2,2.5,2];else for(var i=this.m_base;1!==i;){if(i%2==0)this.m_fractionalDividers.push(2),i/=2;else{if(i%5!=0)throw new RangeError("unexpected base");this.m_fractionalDividers.push(2),this.m_fractionalDividers.push(2.5),i/=5}if(this.m_fractionalDividers.length>100)throw Error("something wrong with base")}}function s(t,e,i){this.m_marks=[],this.m_base=e,this.m_priceScale=t,this._formatter=i,i&&(this._cache=new h(function(t){return i.format(t)})),this._currentFormatBase=0}function r(t){for(var e=1;t*e!==Math.round(t*e);)e*=10;return e}function a(t,i){function n(){var t,e,i=r.m_dataSources;for(t=0;tn+s&&l.greaterOrEqual(r,n,s)&&l.greaterOrEqual(r,i*o,s)&&l.greaterOrEqual(r,1,s);++a,o=this.m_integralDividers[a%this.m_integralDividers.length])r/=o;if(r<=n+s&&(r=n),r=Math.max(1,r),this.m_fractionalDividers.length>0&&l.equal(r,1,s))for(a=0,o=this.m_fractionalDividers[0];r>n+s&&l.greaterOrEqual(r,i*o,s);++a,o=this.m_fractionalDividers[a%this.m_fractionalDividers.length])r/=o;return r},s.prototype.TICK_DENSITY=2.5,s.prototype.base=function(){return this.m_base},s.prototype.setBase=function(t){if(t<0)throw new RangeError("base < 0");this.m_base=t},s.prototype.fontHeight=function(){return this.m_priceScale.fontSize()},s.prototype.tickSpan=function(t,e){var i,o,s,r,a,h,c;if(t=e?1:-1,n=Math.max(i,e),s=Math.min(i,e),i=n,e=s,i!==e)for(a=this.tickSpan(i,e),l=i%a,l+=l<0?a:0,this.m_marks=[],this._formatter||(c=r(a),this._cache&&this._currentFormatBase===c||(d=new u(c),this._cache=new h(function(t){return d.format(t)}))),p=null,_=i-l;_>e;_-=a)f=this.m_priceScale.priceToCoordinate(_), -null!==p&&Math.abs(f-p)30)throw new RangeError("invalid margin");this.m_topMargin=t,this._internalHeightCache=void 0,this._marksCache=null},a.prototype.bottomMargin=function(){return Math.max(this.m_bottomMargin,this._studyBottomMargin)},a.prototype.setBottomMargin=function(t){if(!isNumber(t))throw new TypeError("invalid margin");if(t<0||t>30)throw new RangeError("invalid margin");this.m_bottomMargin=t,this._internalHeightCache=void 0,this._marksCache=null},a.prototype.internalHeight=function(){if(this._internalHeightCache)return this._internalHeightCache;var t=this.height()*(1-this.topMargin()-this.bottomMargin());return this._internalHeightCache=t,t},a.prototype.priceRange=function(){return this.makeSureItIsValid(),this.m_priceRange},a.prototype.setPriceRange=function(t){if(!t instanceof o)throw new TypeError("incorrect price range");this.m_priceRange&&this.m_priceRange.equals(t)||(this.m_priceRange=t,this._marksCache=null)},a.prototype.isEmpty=function(){return this.makeSureItIsValid(),0===this.m_height||!this.m_priceRange||this.m_priceRange.isEmpty()},a.prototype.invertedCoordinate=function(t){return this.height()-1-t},a._logicalOffset=4,a._coordOffset=1e-4,a.prototype.log10=function(t){return Math.log(t)/Math.log(10)},a.prototype._toLog=function(t){var e,i=Math.abs(t);return i<1e-6?0:(e=this.log10(i+a._coordOffset)+a._logicalOffset,t<0?-e:e)},a.prototype.priceToLogical=function(t){return this.isLog()&&t?this._toLog(t):t},a.prototype._fromLog=function(t){var e,i=Math.abs(t);return i<1e-6?0:(e=Math.pow(10,i-a._logicalOffset)-a._coordOffset,t<0?-e:e)},a.prototype.logicalToPrice=function(t){return this.isLog()?this._fromLog(t):t},a.prototype.priceToCoordinate=function(t,e){var i,o;return this.makeSureItIsValid(),this.isEmpty()?0:(t=this.priceToLogical(t),i=this.bottomMargin()*this.height()+(this.internalHeight()-1)*(t-this.priceRange().minValue())/(this.priceRange().maxValue()-this.priceRange().minValue()),o=this.invertedCoordinate(i),e?o:Math.round(o))},a.prototype.pricesToCoordinates=function(t){this.pricesToCoordinatesEx(t,function(t){return t.y},function(t,e){ -t.y=e})},a.prototype.pricesToCoordinatesEx=function(t,e,i){var o,n,s,r,a,l,h,c,d;if(this.makeSureItIsValid(),o=this.bottomMargin()*this.height(),n=this.priceRange().minValue(),s=this.priceRange().maxValue(),r=this.internalHeight()-1,a=r/(s-n),this.isLog())for(l=0;l50?this.m_priceRange=t:(e.setBarSpacing(s),e._correctOffset()),this.mainSource().model().mainSeries().requestMoreData()}},a.prototype.endScale=function(){this.isPercentage()||null!==this.m_scaleStartPoint&&(this.m_scaleStartPoint=null,this.m_priceRangeSnapshot=null)},a.prototype.startScroll=function(t){this.isAutoScale()||null===this.m_scrollStartPoint&&null===this.m_priceRangeSnapshot&&(this.isEmpty()||(this.m_scrollStartPoint=t,this.m_priceRangeSnapshot=this.priceRange().clone()))},a.prototype.scrollTo=function(t){var e,i,o;this._marksCache=null,this.isAutoScale()||null!==this.m_scrollStartPoint&&(e=this.priceRange().length()/(this.height()-1),i=t-this.m_scrollStartPoint,o=i*e,this.m_priceRange=this.m_priceRangeSnapshot.clone(),this.m_priceRange.shift(o))},a.prototype.endScroll=function(){this.isAutoScale()||null!==this.m_scrollStartPoint&&(this.m_scrollStartPoint=null,this.m_priceRangeSnapshot=null)},a.prototype.state=function(){var t={};return t.m_priceRange=this.priceRange()?this.priceRange().serialize():null,t.m_isAutoScale=this.isAutoScale(),t.m_isPercentage=this._properties.percentage.value(),t.m_isLog=this._properties.log.value(),t.m_height=this.m_height,t.m_topMargin=this.m_topMargin,t.m_bottomMargin=this.m_bottomMargin,t},a.prototype.restoreState=function(t){var e=t.m_priceRange;if(void 0===e)throw new TypeError("invalid state");if(void 0===t.m_isAutoScale)throw new TypeError("invalid state");void 0!==t.m_isPercentage&&this._properties.percentage.setValue(t.m_isPercentage),void 0!==t.m_isLog&&this._properties.log.setValue(t.m_isLog),this.m_priceRange=e?new o(e):null,void 0!==t.m_height&&(this.m_height=Math.max(0,t.m_height)),this.setAutoScale(t.m_isAutoScale),void 0!==t.m_topMargin&&(this.m_topMargin=t.m_topMargin),void 0!==t.m_bottomMargin&&(this.m_bottomMargin=t.m_bottomMargin),this._mainSource=void 0,this._scaleSeriesOnly=!1},a.prototype.mainSource=function(){var t,e;if(void 0!==this._mainSource)return this._mainSource;for(t=void 0,e=0;e.01||Math.abs(i-this._studyTopMargin)>.01)&&(this._studyBottomMargin=n,this._studyTopMargin=i,this._marksCache=null,this._internalHeightCache=null),t?(t.minValue()===t.maxValue()&&(t=new o(t.minValue()-.5,t.maxValue()+.5)),this.setPriceRange(t)):this.m_priceRange||this.setPriceRange(new o(-.5,.5)),this._invalidatedForRange.isValid=!0}},a.prototype.sourcesToUpdateViews=function(){var t,e;if(!this._sourcesToUpdateViews)for(this._sourcesToUpdateViews=[],t=0;t
","
"],tr:[2,"","
"],td:[3,"","
"],col:[2,"","
"],area:[1,"",""],_default:[0,"",""]},Ce=l(bt),xe.optgroup=xe.option,xe.tbody=xe.tfoot=xe.colgroup=xe.caption=xe.thead,xe.th=xe.td,xt.support.htmlSerialize||(xe._default=[1,"div
","
"]),xt.fn.extend({text:function(e){return xt.access(this,function(e){ +return void 0===e?xt.text(this):this.empty().append((this[0]&&this[0].ownerDocument||bt).createTextNode(e))},null,e,arguments.length)},wrapAll:function(e){if(xt.isFunction(e))return this.each(function(t){xt(this).wrapAll(e.call(this,t))});if(this[0]){var t=xt(e,this[0].ownerDocument).eq(0).clone(!0);this[0].parentNode&&t.insertBefore(this[0]),t.map(function(){for(var e=this;e.firstChild&&1===e.firstChild.nodeType;)e=e.firstChild;return e}).append(this)}return this},wrapInner:function(e){return xt.isFunction(e)?this.each(function(t){xt(this).wrapInner(e.call(this,t))}):this.each(function(){var t=xt(this),n=t.contents();n.length?n.wrapAll(e):t.append(e)})},wrap:function(e){var t=xt.isFunction(e);return this.each(function(n){xt(this).wrapAll(t?e.call(this,n):e)})},unwrap:function(){return this.parent().each(function(){xt.nodeName(this,"body")||xt(this).replaceWith(this.childNodes)}).end()},append:function(){return this.domManip(arguments,!0,function(e){1===this.nodeType&&this.appendChild(e)})},prepend:function(){return this.domManip(arguments,!0,function(e){1===this.nodeType&&this.insertBefore(e,this.firstChild)})},before:function(){if(this[0]&&this[0].parentNode)return this.domManip(arguments,!1,function(e){this.parentNode.insertBefore(e,this)});if(arguments.length){var e=xt.clean(arguments);return e.push.apply(e,this.toArray()),this.pushStack(e,"before",arguments)}},after:function(){if(this[0]&&this[0].parentNode)return this.domManip(arguments,!1,function(e){this.parentNode.insertBefore(e,this.nextSibling)});if(arguments.length){var e=this.pushStack(this,"after",arguments);return e.push.apply(e,xt.clean(arguments)),e}},remove:function(e,t){for(var n,r=0;null!=(n=this[r]);r++)e&&!xt.filter(e,[n]).length||(t||1!==n.nodeType||(xt.cleanData(n.getElementsByTagName("*")),xt.cleanData([n])),n.parentNode&&n.parentNode.removeChild(n));return this},empty:function(){for(var e,t=0;null!=(e=this[t]);t++)for(1===e.nodeType&&xt.cleanData(e.getElementsByTagName("*"));e.firstChild;)e.removeChild(e.firstChild);return this},clone:function(e,t){return e=null!=e&&e,t=null==t?e:t,this.map(function(){return xt.clone(this,e,t)})},html:function(e){return xt.access(this,function(e){var t=this[0]||{},n=0,r=this.length;if(void 0===e)return 1===t.nodeType?t.innerHTML.replace(le,""):null;if("string"==typeof e&&!ge.test(e)&&(xt.support.leadingWhitespace||!fe.test(e))&&!xe[(de.exec(e)||["",""])[1].toLowerCase()]){e=e.replace(pe,"<$1>");try{for(;n1&&s0?this.clone(!0):this).get(),xt(s[r])[t](i),a=a.concat(i);return this.pushStack(a,e,s.selector)}}),xt.extend({clone:function(e,t,n){var r,o,i,a=xt.support.html5Clone||xt.isXMLDoc(e)||!ve.test("<"+e.nodeName+">")?e.cloneNode(!0):y(e);if(!(xt.support.noCloneEvent&&xt.support.noCloneChecked||1!==e.nodeType&&11!==e.nodeType||xt.isXMLDoc(e)))for(d(e,a),r=h(e),o=h(a),i=0;r[i];++i)o[i]&&d(r[i],o[i]);if(t&&(p(e,a),n))for(r=h(e),o=h(a),i=0;r[i];++i)p(r[i],o[i]);return r=o=null,a},clean:function(e,t,n,r){var o,i,a,s,u,c,f,p,d,h,m,y,v,b,_,w=[];for(t=t||bt,void 0===t.createElement&&(t=t.ownerDocument||t[0]&&t[0].ownerDocument||bt),s=0;null!=(u=e[s]);s++)if("number"==typeof u&&(u+=""),u){if("string"==typeof u)if(me.test(u)){for(u=u.replace(pe,"<$1>"),c=(de.exec(u)||["",""])[1].toLowerCase(),f=xe[c]||xe._default,p=f[0],d=t.createElement("div"),h=Ce.childNodes,t===bt?Ce.appendChild(d):l(t).appendChild(d),d.innerHTML=f[1]+u+f[2];p--;)d=d.lastChild;if(!xt.support.tbody)for(y=he.test(u),v="table"!==c||y?""!==f[1]||y?[]:d.childNodes:d.firstChild&&d.firstChild.childNodes,a=v.length-1;a>=0;--a)xt.nodeName(v[a],"tbody")&&!v[a].childNodes.length&&v[a].parentNode.removeChild(v[a]);!xt.support.leadingWhitespace&&fe.test(u)&&d.insertBefore(t.createTextNode(fe.exec(u)[0]),d.firstChild),u=d.childNodes,d&&(d.parentNode.removeChild(d), +h.length>0&&(m=h[h.length-1])&&m.parentNode&&m.parentNode.removeChild(m))}else u=t.createTextNode(u);if(!xt.support.appendChecked)if(u[0]&&"number"==typeof(b=u.length))for(a=0;a1)},xt.extend({cssHooks:{opacity:{get:function(e,t){if(t){var n=Ae(e,"opacity");return""===n?"1":n}return e.style.opacity}}},cssNumber:{fillOpacity:!0,fontWeight:!0,lineHeight:!0,opacity:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{float:xt.support.cssFloat?"cssFloat":"styleFloat"},style:function(e,t,n,r){if(e&&3!==e.nodeType&&8!==e.nodeType&&e.style){var o,i,a=xt.camelCase(t),s=e.style,u=xt.cssHooks[a];if(t=xt.cssProps[a]||a,void 0===n)return u&&"get"in u&&void 0!==(o=u.get(e,!1,r))?o:s[t];if(!(i=typeof n,"string"===i&&(o=Oe.exec(n))&&(n=+(o[1]+1)*+o[2]+parseFloat(xt.css(e,t)),i="number"),null==n||"number"===i&&isNaN(n)||("number"!==i||xt.cssNumber[a]||(n+="px"),u&&"set"in u&&void 0===(n=u.set(e,n)))))try{s[t]=n}catch(e){}}},css:function(e,t,n){var r,o;return t=xt.camelCase(t),o=xt.cssHooks[t],t=xt.cssProps[t]||t,"cssFloat"===t&&(t="float"),o&&"get"in o&&void 0!==(r=o.get(e,!0,n))?r:Ae?Ae(e,t):void 0},swap:function(e,t,n){var r,o,i={};for(o in t)i[o]=e.style[o],e.style[o]=t[o];r=n.call(e);for(o in t)e.style[o]=i[o];return r}}),xt.curCSS=xt.css,bt.defaultView&&bt.defaultView.getComputedStyle&&(Le=function(e,t){var n,r,o,i,a=e.style;return t=t.replace(Ee,"-$1").toLowerCase(),(r=e.ownerDocument.defaultView)&&(o=r.getComputedStyle(e,null))&&(""!==(n=o.getPropertyValue(t))||xt.contains(e.ownerDocument.documentElement,e)||(n=xt.style(e,t))),!xt.support.pixelMargin&&o&&Ne.test(t)&&Me.test(n)&&(i=a.width,a.width=n,n=o.width,a.width=i),n}),bt.documentElement.currentStyle&&(Ie=function(e,t){var n,r,o,i=e.currentStyle&&e.currentStyle[t],a=e.style;return null==i&&a&&(o=a[t])&&(i=o),Me.test(i)&&(n=a.left,r=e.runtimeStyle&&e.runtimeStyle.left,r&&(e.runtimeStyle.left=e.currentStyle.left), +a.left="fontSize"===t?"1em":i,i=a.pixelLeft+"px",a.left=n,r&&(e.runtimeStyle.left=r)),""===i?"auto":i}),Ae=Le||Ie,xt.each(["height","width"],function(e,t){xt.cssHooks[t]={get:function(e,n,r){if(n)return 0!==e.offsetWidth?v(e,t,r):xt.swap(e,De,function(){return v(e,t,r)})},set:function(e,t){return Se.test(t)?t+"px":t}}}),xt.support.opacity||(xt.cssHooks.opacity={get:function(e,t){return ke.test((t&&e.currentStyle?e.currentStyle.filter:e.style.filter)||"")?parseFloat(RegExp.$1)/100+"":t?"1":""},set:function(e,t){var n=e.style,r=e.currentStyle,o=xt.isNumeric(t)?"alpha(opacity="+100*t+")":"",i=r&&r.filter||n.filter||"";n.zoom=1,t>=1&&""===xt.trim(i.replace(Te,""))&&(n.removeAttribute("filter"),r&&!r.filter)||(n.filter=Te.test(i)?i.replace(Te,o):i+" "+o)}}),xt(function(){xt.support.reliableMarginRight||(xt.cssHooks.marginRight={get:function(e,t){return xt.swap(e,{display:"inline-block"},function(){return t?Ae(e,"margin-right"):e.style.marginRight})}})}),xt.expr&&xt.expr.filters&&(xt.expr.filters.hidden=function(e){var t=e.offsetWidth,n=e.offsetHeight;return 0===t&&0===n||!xt.support.reliableHiddenOffsets&&"none"===(e.style&&e.style.display||xt.css(e,"display"))},xt.expr.filters.visible=function(e){return!xt.expr.filters.hidden(e)}),xt.each({margin:"",padding:"",border:"Width"},function(e,t){xt.cssHooks[e+t]={expand:function(n){var r,o="string"==typeof n?n.split(" "):[n],i={};for(r=0;r<4;r++)i[e+Pe[r]+t]=o[r]||o[r-2]||o[0];return i}}}),je=/%20/g,Re=/\[\]$/,Fe=/\r?\n/g,Ue=/#.*$/,He=/^(.*?):[ \t]*([^\r\n]*)\r?$/gm,Ye=/^(?:color|date|datetime|datetime-local|email|hidden|month|number|password|range|search|tel|text|time|url|week)$/i,We=/^(?:about|app|app\-storage|.+\-extension|file|res|widget):$/,Be=/^(?:GET|HEAD)$/,Ve=/^\/\//,qe=/\?/,ze=/)<[^<]*)*<\/script>/gi,$e=/^(?:select|textarea)/i,Ge=/\s+/,Ke=/([?&])_=[^&]*/,Xe=/^([\w\+\.\-]+:)(?:\/\/([^\/?#:]*)(?::(\d+))?)?/,Qe=xt.fn.load,Je={},Ze={},nt="*/*";try{et=wt.href}catch(e){et=bt.createElement("a"),et.href="",et=et.href}tt=Xe.exec(et.toLowerCase())||[],xt.fn.extend({load:function(e,t,n){var r,o,i,a;return"string"!=typeof e&&Qe?Qe.apply(this,arguments):this.length?(r=e.indexOf(" "),r>=0&&(o=e.slice(r,e.length),e=e.slice(0,r)),i="GET",t&&(xt.isFunction(t)?(n=t,t=void 0):"object"==typeof t&&(t=xt.param(t,xt.ajaxSettings.traditional),i="POST")),a=this,xt.ajax({url:e,type:i,dataType:"html",data:t,complete:function(e,t,r){r=e.responseText,e.isResolved()&&(e.done(function(e){r=e}),a.html(o?xt("
").append(r.replace(ze,"")).find(o):r)),n&&a.each(n,[r,t,e])}}),this):this},serialize:function(){return xt.param(this.serializeArray())},serializeArray:function(){return this.map(function(){return this.elements?xt.makeArray(this.elements):this}).filter(function(){return this.name&&!this.disabled&&(this.checked||$e.test(this.nodeName)||Ye.test(this.type))}).map(function(e,t){var n=xt(this).val();return null==n?null:xt.isArray(n)?xt.map(n,function(e,n){return{name:t.name,value:e.replace(Fe,"\r\n")}}):{name:t.name,value:n.replace(Fe,"\r\n")}}).get()}}), +xt.each("ajaxStart ajaxStop ajaxComplete ajaxError ajaxSuccess ajaxSend".split(" "),function(e,t){xt.fn[t]=function(e){return this.on(t,e)}}),xt.each(["get","post"],function(e,t){xt[t]=function(e,n,r,o){return xt.isFunction(n)&&(o=o||r,r=n,n=void 0),xt.ajax({type:t,url:e,data:n,success:r,dataType:o})}}),xt.extend({getScript:function(e,t){return xt.get(e,void 0,t,"script")},getJSON:function(e,t,n){return xt.get(e,t,n,"json")},ajaxSetup:function(e,t){return t?w(e,xt.ajaxSettings):(t=e,e=xt.ajaxSettings),w(e,t),e},ajaxSettings:{url:et,isLocal:We.test(tt[1]),global:!0,type:"GET",contentType:"application/x-www-form-urlencoded; charset=UTF-8",processData:!0,async:!0,accepts:{xml:"application/xml, text/xml",html:"text/html",text:"text/plain",json:"application/json, text/javascript","*":nt},contents:{xml:/xml/,html:/html/,json:/json/},responseFields:{xml:"responseXML",text:"responseText"},converters:{"* text":window.String,"text html":!0,"text json":xt.parseJSON,"text xml":xt.parseXML},flatOptions:{context:!0,url:!0}},ajaxPrefilter:b(Je),ajaxTransport:b(Ze),ajax:function(e,t){function n(e,t,n,l){if(2!==y){y=2,m&&clearTimeout(m),h=void 0,p=l||"",w.readyState=e>0?4:0;var f,d,g,b,_,x=t,k=n?C(r,w,n):void 0;if(e>=200&&e<300||304===e)if(r.ifModified&&((b=w.getResponseHeader("Last-Modified"))&&(xt.lastModified[c]=b),(_=w.getResponseHeader("Etag"))&&(xt.etag[c]=_)),304===e)x="notmodified",f=!0;else try{d=T(r,k),x="success",f=!0}catch(e){x="parsererror",g=e}else g=x,x&&!e||(x="error",e<0&&(e=0));w.status=e,w.statusText=""+(t||x),f?a.resolveWith(o,[d,x,w]):a.rejectWith(o,[w,x,g]),w.statusCode(u),u=void 0,v&&i.trigger("ajax"+(f?"Success":"Error"),[w,r,f?d:g]),s.fireWith(o,[w,x]),v&&(i.trigger("ajaxComplete",[w,r]),--xt.active||xt.event.trigger("ajaxStop"))}}var r,o,i,a,s,u,c,l,f,p,d,h,m,g,y,v,b,w,x,k;if("object"==typeof e&&(t=e,e=void 0),t=t||{},r=xt.ajaxSetup({},t),o=r.context||r,i=o!==r&&(o.nodeType||o instanceof xt)?xt(o):xt.event,a=xt.Deferred(),s=xt.Callbacks("once memory"),u=r.statusCode||{},l={},f={},y=0,w={readyState:0,setRequestHeader:function(e,t){if(!y){var n=e.toLowerCase();e=f[n]=f[n]||e,l[e]=t}return this},getAllResponseHeaders:function(){return 2===y?p:null},getResponseHeader:function(e){var t;if(2===y){if(!d)for(d={};t=He.exec(p);)d[t[1].toLowerCase()]=t[2];t=d[e.toLowerCase()]}return void 0===t?null:t},overrideMimeType:function(e){return y||(r.mimeType=e),this},abort:function(e){return e=e||"abort",h&&h.abort(e),n(0,e),this}},a.promise(w),w.success=w.done,w.error=w.fail,w.complete=s.add,w.statusCode=function(e){if(e){var t;if(y<2)for(t in e)u[t]=[u[t],e[t]];else t=e[w.status],w.then(t,t)}return this},r.url=((e||r.url)+"").replace(Ue,"").replace(Ve,tt[1]+"//"),r.dataTypes=xt.trim(r.dataType||"*").toLowerCase().split(Ge),null==r.crossDomain&&(g=Xe.exec(r.url.toLowerCase()),r.crossDomain=!(!g||g[1]==tt[1]&&g[2]==tt[2]&&(g[3]||("http:"===g[1]?80:443))==(tt[3]||("http:"===tt[1]?80:443)))),r.data&&r.processData&&"string"!=typeof r.data&&(r.data=xt.param(r.data,r.traditional)),_(Je,r,t,w),2===y)return!1;v=r.global, +r.type=r.type.toUpperCase(),r.hasContent=!Be.test(r.type),v&&0==xt.active++&&xt.event.trigger("ajaxStart"),r.hasContent||(r.data&&(r.url+=(qe.test(r.url)?"&":"?")+r.data,delete r.data),c=r.url,!1===r.cache&&(x=xt.now(),k=r.url.replace(Ke,"$1_="+x),r.url=k+(k===r.url?(qe.test(r.url)?"&":"?")+"_="+x:""))),(r.data&&r.hasContent&&!1!==r.contentType||t.contentType)&&w.setRequestHeader("Content-Type",r.contentType),r.ifModified&&(c=c||r.url,xt.lastModified[c]&&w.setRequestHeader("If-Modified-Since",xt.lastModified[c]),xt.etag[c]&&w.setRequestHeader("If-None-Match",xt.etag[c])),w.setRequestHeader("Accept",r.dataTypes[0]&&r.accepts[r.dataTypes[0]]?r.accepts[r.dataTypes[0]]+("*"!==r.dataTypes[0]?", "+nt+"; q=0.01":""):r.accepts["*"]);for(b in r.headers)w.setRequestHeader(b,r.headers[b]);if(r.beforeSend&&(!1===r.beforeSend.call(o,w,r)||2===y))return w.abort(),!1;for(b in{success:1,error:1,complete:1})w[b](r[b]);if(h=_(Ze,r,t,w)){w.readyState=1,v&&i.trigger("ajaxSend",[w,r]),r.async&&r.timeout>0&&(m=setTimeout(function(){w.abort("timeout")},r.timeout));try{y=1,h.send(l,n)}catch(e){if(!(y<2))throw e;n(-1,e)}}else n(-1,"No Transport");return w},param:function(e,t){var n,r=[],o=function(e,t){t=xt.isFunction(t)?t():t,r[r.length]=encodeURIComponent(e)+"="+encodeURIComponent(t)};if(void 0===t&&(t=xt.ajaxSettings.traditional),xt.isArray(e)||e.jquery&&!xt.isPlainObject(e))xt.each(e,function(){o(this.name,this.value)});else for(n in e)x(n,e[n],t,o);return r.join("&").replace(je,"+")}}),xt.extend({active:0,lastModified:{},etag:{}}),rt=xt.now(),ot=/(\=)\?(&|$)|\?\?/i,xt.ajaxSetup({jsonp:"callback",jsonpCallback:function(){return xt.expando+"_"+rt++}}),xt.ajaxPrefilter("json jsonp",function(e,t,n){var r,o,i,a,s,u,c="string"==typeof e.data&&/^application\/x\-www\-form\-urlencoded/.test(e.contentType);if("jsonp"===e.dataTypes[0]||!1!==e.jsonp&&(ot.test(e.url)||c&&ot.test(e.data)))return o=e.jsonpCallback=xt.isFunction(e.jsonpCallback)?e.jsonpCallback():e.jsonpCallback,i=window[o],a=e.url,s=e.data,u="$1"+o+"$2",!1!==e.jsonp&&(a=a.replace(ot,u),e.url===a&&(c&&(s=s.replace(ot,u)),e.data===s&&(a+=(/\?/.test(a)?"&":"?")+e.jsonp+"="+o))),e.url=a,e.data=s,window[o]=function(e){r=[e]},n.always(function(){window[o]=i,r&&xt.isFunction(i)&&window[o](r[0])}),e.converters["script json"]=function(){return r||xt.error(o+" was not called"),r[0]},e.dataTypes[0]="json","script"}),xt.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/javascript|ecmascript/},converters:{"text script":function(e){return xt.globalEval(e),e}}}),xt.ajaxPrefilter("script",function(e){void 0===e.cache&&(e.cache=!1),e.crossDomain&&(e.type="GET",e.global=!1)}),xt.ajaxTransport("script",function(e){if(e.crossDomain){var t,n=bt.head||bt.getElementsByTagName("head")[0]||bt.documentElement;return{send:function(r,o){t=bt.createElement("script"),t.async="async",e.scriptCharset&&(t.charset=e.scriptCharset),t.src=e.url,t.onload=t.onreadystatechange=function(e,r){ +(r||!t.readyState||/loaded|complete/.test(t.readyState))&&(t.onload=t.onreadystatechange=null,n&&t.parentNode&&n.removeChild(t),t=void 0,r||o(200,"success"))},n.insertBefore(t,n.firstChild)},abort:function(){t&&t.onload(0,1)}}}}),it=!!window.ActiveXObject&&function(){for(var e in st)st[e](0,1)},at=0,xt.ajaxSettings.xhr=window.ActiveXObject?function(){return!this.isLocal&&k()||E()}:k,function(e){xt.extend(xt.support,{ajax:!!e,cors:!!e&&"withCredentials"in e})}(xt.ajaxSettings.xhr()),xt.support.ajax&&xt.ajaxTransport(function(e){if(!e.crossDomain||xt.support.cors){var t;return{send:function(n,r){var o,i,a=e.xhr();if(e.username?a.open(e.type,e.url,e.async,e.username,e.password):a.open(e.type,e.url,e.async),e.xhrFields)for(i in e.xhrFields)a[i]=e.xhrFields[i];e.mimeType&&a.overrideMimeType&&a.overrideMimeType(e.mimeType),e.crossDomain||n["X-Requested-With"]||(n["X-Requested-With"]="XMLHttpRequest");try{for(i in n)a.setRequestHeader(i,n[i])}catch(e){}a.send(e.hasContent&&e.data||null),t=function(n,i){var s,u,c,l,f;try{if(t&&(i||4===a.readyState))if(t=void 0,o&&(a.onreadystatechange=xt.noop,it&&delete st[o]),i)4!==a.readyState&&a.abort();else{s=a.status,c=a.getAllResponseHeaders(),l={},f=a.responseXML,f&&f.documentElement&&(l.xml=f);try{l.text=a.responseText}catch(n){}try{u=a.statusText}catch(e){u=""}s||!e.isLocal||e.crossDomain?1223===s&&(s=204):s=l.text?200:404}}catch(e){i||r(-1,e)}l&&r(s,u,l,c)},e.async&&4!==a.readyState?(o=++at,it&&(st||(st={},xt(window).unload(it)),st[o]=t),a.onreadystatechange=t):t()},abort:function(){t&&t(0,1)}}}}),ut={},ft=/^(?:toggle|show|hide)$/,pt=/^([+\-]=)?([\d+.\-]+)([a-z%]*)$/i,ht=[["height","marginTop","marginBottom","paddingTop","paddingBottom"],["width","marginLeft","marginRight","paddingLeft","paddingRight"],["opacity"]],xt.fn.extend({show:function(e,t,n){var r,o,i,a;if(e||0===e)return this.animate(O("show",3),e,t,n);for(i=0,a=this.length;i=s.duration+this.startTime){this.now=this.end,this.pos=this.state=1,this.update(),s.animatedProperties[this.prop]=!0;for(t in s.animatedProperties)!0!==s.animatedProperties[t]&&(i=!1);if(i){if(null==s.overflow||xt.support.shrinkWrapBlocks||xt.each(["","X","Y"],function(e,t){a.style["overflow"+t]=s.overflow[e]}),s.hide&&xt(a).hide(),s.hide||s.show)for(t in s.animatedProperties)xt.style(a,t,s.orig[t]),xt.removeData(a,"fxshow"+t,!0),xt.removeData(a,"toggle"+t,!0);r=s.complete,r&&(s.complete=!1,r.call(a))}return!1}return s.duration==1/0?this.now=o:(n=o-this.startTime,this.state=n/s.duration,this.pos=xt.easing[s.animatedProperties[this.prop]](this.state,n,0,1,s.duration),this.now=this.start+(this.end-this.start)*this.pos),this.update(),!0}},xt.extend(xt.fx,{tick:function(){for(var e,t=xt.timers,n=0;n-1,u={},c={},s?(c=r.position(),l=c.top,f=c.left):(l=parseFloat(i)||0,f=parseFloat(a)||0),xt.isFunction(t)&&(t=t.call(e,n,o)),null!=t.top&&(u.top=t.top-o.top+l),null!=t.left&&(u.left=t.left-o.left+f),"using"in t?t.using.call(e,u):r.css(u)}},xt.fn.extend({position:function(){if(!this[0])return null;var e=this[0],t=this.offsetParent(),n=this.offset(),r=vt.test(t[0].nodeName)?{top:0,left:0}:t.offset();return n.top-=parseFloat(xt.css(e,"marginTop"))||0,n.left-=parseFloat(xt.css(e,"marginLeft"))||0,r.top+=parseFloat(xt.css(t[0],"borderTopWidth"))||0,r.left+=parseFloat(xt.css(t[0],"borderLeftWidth"))||0,{top:n.top-r.top,left:n.left-r.left}},offsetParent:function(){return this.map(function(){for(var e=this.offsetParent||bt.body;e&&!vt.test(e.nodeName)&&"static"===xt.css(e,"position");)e=e.offsetParent;return e})}}),xt.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(e,t){var n=/Y/.test(t);xt.fn[e]=function(r){return xt.access(this,function(e,r,o){var i=D(e);if(void 0===o)return i?t in i?i[t]:xt.support.boxModel&&i.document.documentElement[r]||i.document.body[r]:e[r];i?i.scrollTo(n?xt(i).scrollLeft():o,n?o:xt(i).scrollTop()):e[r]=o},e,r,arguments.length,null)}}),xt.each({Height:"height",Width:"width" +},function(e,t){var n="client"+e,r="scroll"+e,o="offset"+e;xt.fn["inner"+e]=function(){var e=this[0];return e?e.style?parseFloat(xt.css(e,t,"padding")):this[t]():null},xt.fn["outer"+e]=function(e){var n=this[0];return n?n.style?parseFloat(xt.css(n,t,e?"margin":"border")):this[t]():null},xt.fn[t]=function(e){return xt.access(this,function(e,t,i){var a,s,u,c;return xt.isWindow(e)?(a=e.document,s=a.documentElement[n],xt.support.boxModel&&s||a.body&&a.body[n]||s):9===e.nodeType?(a=e.documentElement,a[n]>=a[r]?a[n]:Math.max(e.body[r],a[r],e.body[o],a[o])):void 0===i?(u=xt.css(e,t),c=parseFloat(u),xt.isNumeric(c)?c:u):void xt(e).css(t,i)},t,e,arguments.length,null)}}),e.exports=window.jQuery=window.$=xt},,function(e,t,n){"use strict";var r=n(66),o=r;e.exports=o},function(e,t){"use strict";function n(e){var t,n,r=arguments.length-1,o="Minified React error #"+e+"; visit http://facebook.github.io/react/docs/error-decoder.html?invariant="+e;for(t=0;t0)for(n in Hr)r=Hr[n],void 0!==(o=t[r])&&(e[r]=o);return e}function m(e){h(this,e),this._d=new Date(null!=e._d?e._d.getTime():NaN),!1===Yr&&(Yr=!0,t.updateOffset(this),Yr=!1)}function g(e){ +return e instanceof m||null!=e&&null!=e._isAMomentObject}function y(e){return e<0?Math.ceil(e):Math.floor(e)}function v(e){var t=+e,n=0;return 0!==t&&isFinite(t)&&(n=y(t)),n}function b(e,t,n){var r,o=Math.min(e.length,t.length),i=Math.abs(e.length-t.length),a=0;for(r=0;r0;){if(r=C(o.slice(0,t).join("-")))return r;if(n&&n.length>=t&&b(o,n,!0)>=t-1)break;t--}i++}return null}function C(t){var r=null;if(!Wr[t]&&void 0!==e&&e&&e.exports)try{r=Rn._abbr,n(724)("./"+t),T(r)}catch(e){}return Wr[t]}function T(e,t){var n;return e&&(n=void 0===t?E(e):k(e,t))&&(Rn=n),Rn._abbr}function k(e,t){return null!==t?(t.abbr=e,Wr[e]=Wr[e]||new _,Wr[e].set(t),T(e),Wr[e]):(delete Wr[e],null)}function E(e){var t;if(e&&e._locale&&e._locale._abbr&&(e=e._locale._abbr),!e)return Rn;if(!o(e)){if(t=C(e))return t;e=[e]}return x(e)}function S(e,t){var n=e.toLowerCase();Br[n]=Br[n+"s"]=Br[t]=e}function M(e){return"string"==typeof e?Br[e]||Br[e.toLowerCase()]:void 0}function O(e){var t,n,r={};for(n in e)s(e,n)&&(t=M(n))&&(r[t]=e[n]);return r}function N(e,n){return function(r){return null!=r?(P(this,e,r),t.updateOffset(this,n),this):D(this,e)}}function D(e,t){return e._d["get"+(e._isUTC?"UTC":"")+t]()}function P(e,t,n){return e._d["set"+(e._isUTC?"UTC":"")+t](n)}function A(e,t){var n;if("object"==typeof e)for(n in e)this.set(n,e[n]);else if(e=M(e),"function"==typeof this[e])return this[e](t);return this}function L(e,t,n){var r=""+Math.abs(e),o=t-r.length;return(e>=0?n?"+":"":"-")+(""+Math.pow(10,Math.max(0,o))).substr(1)+r}function I(e,t,n,r){var o=r;"string"==typeof r&&(o=function(){return this[r]()}),e&&($r[e]=o),t&&($r[t[0]]=function(){return L(o.apply(this,arguments),t[1],t[2])}),n&&($r[n]=function(){return this.localeData().ordinal(o.apply(this,arguments),e)})}function j(e){return e.match(/\[[\s\S]/)?e.replace(/^\[|\]$/g,""):e.replace(/\\/g,"")}function R(e){var t,n,r=e.match(Vr);for(t=0,n=r.length;t=0&&qr.test(e);)e=e.replace(qr,n),qr.lastIndex=0,r-=1;return e}function H(e){return"function"==typeof e&&"[object Function]"===Object.prototype.toString.call(e)}function Y(e,t,n){uo[e]=H(t)?t:function(e){return e&&n?n:t}}function W(e,t){return s(uo,e)?uo[e](t._strict,t._locale):RegExp(B(e))}function B(e){return e.replace("\\","").replace(/\\(\[)|\\(\])|\[([^\]\[]*)\]|\\(.)/g,function(e,t,n,r,o){return t||n||r||o}).replace(/[-\/\\^$*+?.()|[\]{}]/g,"\\$&")}function V(e,t){var n,r=t;for("string"==typeof e&&(e=[e]),"number"==typeof t&&(r=function(e,n){n[t]=v(e)}), +n=0;n11?fo:n[po]<1||n[po]>$(n[lo],n[fo])?po:n[ho]<0||n[ho]>24||24===n[ho]&&(0!==n[mo]||0!==n[go]||0!==n[yo])?ho:n[mo]<0||n[mo]>59?mo:n[go]<0||n[go]>59?go:n[yo]<0||n[yo]>999?yo:-1,f(e)._overflowDayOfYear&&(tpo)&&(t=po),f(e).overflow=t),e}function te(e){!1===t.suppressDeprecationWarnings&&"undefined"!=typeof console&&console.warn&&console.warn("Deprecation warning: "+e)}function ne(e,t){var n=!0;return u(function(){return n&&(te(e+"\n"+Error().stack),n=!1),t.apply(this,arguments)},t)}function re(e,t){Hn[e]||(te(t),Hn[e]=!0)}function oe(e){var t,n,r=e._i,o=Yn.exec(r);if(o){for(f(e).iso=!0,t=0,n=Wn.length;to&&(i-=7),i0?e:e-1,dayOfYear:i>0?i:ue(e-1)+i}}function ve(e){var t=Math.round((this.clone().startOf("day")-this.clone().startOf("year"))/864e5)+1;return null==e?t:this.add(e-t,"d")}function be(e,t,n){return null!=e?e:null!=t?t:n}function _e(e){var t=new Date;return e._useUTC?[t.getUTCFullYear(),t.getUTCMonth(),t.getUTCDate()]:[t.getFullYear(),t.getMonth(),t.getDate()]}function we(e){var t,n,r,o,i=[];if(!e._d){for(r=_e(e),e._w&&null==e._a[po]&&null==e._a[fo]&&xe(e),e._dayOfYear&&(o=be(e._a[lo],r[lo]),e._dayOfYear>ue(o)&&(f(e)._overflowDayOfYear=!0),n=se(o,0,e._dayOfYear),e._a[fo]=n.getUTCMonth(),e._a[po]=n.getUTCDate()),t=0;t<3&&null==e._a[t];++t)e._a[t]=i[t]=r[t];for(;t<7;t++)e._a[t]=i[t]=null==e._a[t]?2===t?1:0:e._a[t];24===e._a[ho]&&0===e._a[mo]&&0===e._a[go]&&0===e._a[yo]&&(e._nextDay=!0,e._a[ho]=0),e._d=(e._useUTC?se:ae).apply(null,i),null!=e._tzm&&e._d.setUTCMinutes(e._d.getUTCMinutes()-e._tzm),e._nextDay&&(e._a[ho]=24)}}function xe(e){var t,n,r,o,i,a,s;t=e._w,null!=t.GG||null!=t.W||null!=t.E?(i=1,a=4,n=be(t.GG,e._a[lo],fe(De(),1,4).year),r=be(t.W,1),o=be(t.E,1)):(i=e._locale._week.dow,a=e._locale._week.doy,n=be(t.gg,e._a[lo],fe(De(),i,a).year),r=be(t.w,1),null!=t.d?(o=t.d)0&&f(e).unusedInput.push(a),s=s.slice(s.indexOf(r)+r.length),c+=r.length),$r[i]?(r?f(e).empty=!1:f(e).unusedTokens.push(i),z(i,r,e)):e._strict&&!r&&f(e).unusedTokens.push(i);f(e).charsLeftOver=u-c,s.length>0&&f(e).unusedInput.push(s),!0===f(e).bigHour&&e._a[ho]<=12&&e._a[ho]>0&&(f(e).bigHour=void 0),e._a[ho]=Te(e._locale,e._a[ho],e._meridiem),we(e),ee(e)}function Te(e,t,n){var r;return null==n?t:null!=e.meridiemHour?e.meridiemHour(t,n):null!=e.isPM?(r=e.isPM(n),r&&t<12&&(t+=12),r||12!==t||(t=0),t):t}function ke(e){var t,n,r,o,i;if(0===e._f.length)return f(e).invalidFormat=!0,void(e._d=new Date(NaN));for(o=0;othis.clone().month(0).utcOffset()||this.utcOffset()>this.clone().month(5).utcOffset()}function Ge(){var e,t;return void 0!==this._isDSTShifted?this._isDSTShifted:(e={},h(e,this),e=Me(e),e._a?(t=e._isUTC?c(e._a):De(e._a),this._isDSTShifted=this.isValid()&&b(e._a,t.toArray())>0):this._isDSTShifted=!1,this._isDSTShifted)}function Ke(){return!this._isUTC}function Xe(){return this._isUTC}function Qe(){return this._isUTC&&0===this._offset}function Je(e,t){var n,r,o,i=e,a=null;return je(e)?i={ms:e._milliseconds,d:e._days,M:e._months}:"number"==typeof e?(i={},t?i[t]=e:i.milliseconds=e):(a=Xn.exec(e))?(n="-"===a[1]?-1:1,i={y:0,d:v(a[po])*n,h:v(a[ho])*n,m:v(a[mo])*n,s:v(a[go])*n,ms:v(a[yo])*n}):(a=Qn.exec(e))?(n="-"===a[1]?-1:1,i={y:Ze(a[2],n),M:Ze(a[3],n),d:Ze(a[4],n),h:Ze(a[5],n),m:Ze(a[6],n),s:Ze(a[7],n),w:Ze(a[8],n) +}):null==i?i={}:"object"==typeof i&&("from"in i||"to"in i)&&(o=tt(De(i.from),De(i.to)),i={},i.ms=o.milliseconds,i.M=o.months),r=new Ie(i),je(e)&&s(e,"_locale")&&(r._locale=e._locale),r}function Ze(e,t){var n=e&&parseFloat(e.replace(",","."));return(isNaN(n)?0:n)*t}function et(e,t){var n={milliseconds:0,months:0};return n.months=t.month()-e.month()+12*(t.year()-e.year()),e.clone().add(n.months,"M").isAfter(t)&&--n.months,n.milliseconds=+t-+e.clone().add(n.months,"M"),n}function tt(e,t){var n;return t=Ue(t,e),e.isBefore(t)?n=et(e,t):(n=et(t,e),n.milliseconds=-n.milliseconds,n.months=-n.months),n}function nt(e,t){return function(n,r){var o,i;return null===r||isNaN(+r)||(re(t,"moment()."+t+"(period, number) is deprecated. Please use moment()."+t+"(number, period)."),i=n,n=r,r=i),n="string"==typeof n?+n:n,o=Je(n,r),rt(this,o,e),this}}function rt(e,n,r,o){var i=n._milliseconds,a=n._days,s=n._months;o=null==o||o,i&&e._d.setTime(+e._d+i*r),a&&P(e,"Date",D(e,"Date")+a*r),s&&Q(e,D(e,"Month")+s*r),o&&t.updateOffset(e,a||s)}function ot(e,t){var n=e||De(),r=Ue(n,this).startOf("day"),o=this.diff(r,"days",!0),i=o<-6?"sameElse":o<-1?"lastWeek":o<0?"lastDay":o<1?"sameDay":o<2?"nextDay":o<7?"nextWeek":"sameElse";return this.format(t&&t[i]||this.localeData().calendar(i,this,De(n)))}function it(){return new m(this)}function at(e,t){return t=M(void 0!==t?t:"millisecond"),"millisecond"===t?(e=g(e)?e:De(e),+this>+e):(g(e)?+e:+De(e))<+this.clone().startOf(t)}function st(e,t){var n;return t=M(void 0!==t?t:"millisecond"),"millisecond"===t?(e=g(e)?e:De(e),+this<+e):(n=g(e)?+e:+De(e),+this.clone().endOf(t)11?n?"pm":"PM":n?"am":"AM"}function Xt(e,t){t[yo]=v(1e3*("0."+e))}function Qt(){return this._isUTC?"UTC":""}function Jt(){return this._isUTC?"Coordinated Universal Time":""}function Zt(e){return De(1e3*e)}function en(){return De.apply(null,arguments).parseZone()} +function tn(e,t,n){var r=this._calendar[e];return"function"==typeof r?r.call(t,n):r}function nn(e){var t=this._longDateFormat[e],n=this._longDateFormat[e.toUpperCase()];return t||!n?t:(this._longDateFormat[e]=n.replace(/MMMM|MM|DD|dddd/g,function(e){return e.slice(1)}),this._longDateFormat[e])}function rn(){return this._invalidDate}function on(e){return this._ordinal.replace("%d",e)}function an(e){return e}function sn(e,t,n,r){var o=this._relativeTime[n];return"function"==typeof o?o(e,t,n,r):o.replace(/%d/i,e)}function un(e,t){var n=this._relativeTime[e>0?"future":"past"];return"function"==typeof n?n(t):n.replace(/%s/i,t)}function cn(e){var t,n;for(n in e)t=e[n],"function"==typeof t?this[n]=t:this["_"+n]=t;this._ordinalParseLenient=RegExp(this._ordinalParse.source+"|\\d{1,2}")}function ln(e,t,n,r){var o=E(),i=c().set(r,t);return o[n](i,e)}function fn(e,t,n,r,o){var i,a;if("number"==typeof e&&(t=e,e=void 0),e=e||"",null!=t)return ln(e,t,n,o);for(a=[],i=0;i=0&&a>=0&&s>=0||i<=0&&a<=0&&s<=0||(i+=864e5*wn(Tn(s)+a),a=0,s=0),u.milliseconds=i%1e3,e=y(i/1e3),u.seconds=e%60,t=y(e/60),u.minutes=t%60,n=y(t/60),u.hours=n%24,a+=y(n/24),o=y(Cn(a)),s+=o,a-=wn(Tn(o)),r=y(s/12),s%=12,u.days=a,u.months=s,u.years=r,this}function Cn(e){return 4800*e/146097}function Tn(e){return 146097*e/4800}function kn(e){var t,n,r=this._milliseconds;if("month"===(e=M(e))||"year"===e)return t=this._days+r/864e5,n=this._months+Cn(t),"month"===e?n:n/12;switch(t=this._days+Math.round(Tn(this._months)),e){case"week":return t/7+r/6048e5;case"day":return t+r/864e5;case"hour":return 24*t+r/36e5;case"minute":return 1440*t+r/6e4;case"second":return 86400*t+r/1e3;case"millisecond":return Math.floor(864e5*t)+r;default:throw Error("Unknown unit "+e)}}function En(){return this._milliseconds+864e5*this._days+this._months%12*2592e6+31536e6*v(this._months/12)}function Sn(e){return function(){return this.as(e)}}function Mn(e){return e=M(e),this[e+"s"]()}function On(e){return function(){return this._data[e]}}function Nn(){return y(this.days()/7)}function Dn(e,t,n,r,o){return o.relativeTime(t||1,!!n,e,r)}function Pn(e,t,n){ +var r=Je(e).abs(),o=jr(r.as("s")),i=jr(r.as("m")),a=jr(r.as("h")),s=jr(r.as("d")),u=jr(r.as("M")),c=jr(r.as("y")),l=o0,l[4]=n,Dn.apply(null,l)}function An(e,t){return void 0!==Rr[e]&&(void 0===t?Rr[e]:(Rr[e]=t,!0))}function Ln(e){var t=this.localeData(),n=Pn(this,!e,t);return e&&(n=t.pastFuture(+this,n)),t.postformat(n)}function In(){var e,t,n,r,o,i,a,s,u=Fr(this._milliseconds)/1e3,c=Fr(this._days),l=Fr(this._months),f=y(u/60),p=y(f/60);return u%=60,f%=60,e=y(l/12),l%=12,t=e,n=l,r=c,o=p,i=f,a=u,s=this.asSeconds(),s?(s<0?"-":"")+"P"+(t?t+"Y":"")+(n?n+"M":"")+(r?r+"D":"")+(o||i||a?"T":"")+(o?o+"H":"")+(i?i+"M":"")+(a?a+"S":""):"P0D"}var jn,Rn,Fn,Un,Hn,Yn,Wn,Bn,Vn,qn,zn,$n,Gn,Kn,Xn,Qn,Jn,Zn,er,tr,nr,rr,or,ir,ar,sr,ur,cr,lr,fr,pr,dr,hr,mr,gr,yr,vr,br,_r,wr,xr,Cr,Tr,kr,Er,Sr,Mr,Or,Nr,Dr,Pr,Ar,Lr,Ir,jr,Rr,Fr,Ur,Hr=t.momentProperties=[],Yr=!1,Wr={},Br={},Vr=/(\[[^\[]*\])|(\\)?(Mo|MM?M?M?|Do|DDDo|DD?D?D?|ddd?d?|do?|w[o|w]?|W[o|W]?|Q|YYYYYY|YYYYY|YYYY|YY|gg(ggg?)?|GG(GGG?)?|e|E|a|A|hh?|HH?|mm?|ss?|S{1,9}|x|X|zz?|ZZ?|.)/g,qr=/(\[[^\[]*\])|(\\)?(LTS|LT|LL?L?L?|l{1,4})/g,zr={},$r={},Gr=/\d/,Kr=/\d\d/,Xr=/\d{3}/,Qr=/\d{4}/,Jr=/[+-]?\d{6}/,Zr=/\d\d?/,eo=/\d{1,3}/,to=/\d{1,4}/,no=/[+-]?\d{1,6}/,ro=/\d+/,oo=/[+-]?\d+/,io=/Z|[+-]\d\d:?\d\d/gi,ao=/[+-]?\d+(\.\d{1,3})?/,so=/[0-9]*['a-z\u00A0-\u05FF\u0700-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF]+|[\u0600-\u06FF\/]+(\s*?[\u0600-\u06FF]+){1,2}/i,uo={},co={},lo=0,fo=1,po=2,ho=3,mo=4,go=5,yo=6;for(I("M",["MM",2],"Mo",function(){return this.month()+1}),I("MMM",0,0,function(e){return this.localeData().monthsShort(this,e)}),I("MMMM",0,0,function(e){return this.localeData().months(this,e)}),S("month","M"),Y("M",Zr),Y("MM",Zr,Kr),Y("MMM",so),Y("MMMM",so),V(["M","MM"],function(e,t){t[fo]=v(e)-1}),V(["MMM","MMMM"],function(e,t,n,r){var o=n._locale.monthsParse(e,r,n._strict);null!=o?t[fo]=o:f(n).invalidMonth=e}),Fn="January_February_March_April_May_June_July_August_September_October_November_December".split("_"),Un="Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec".split("_"),Hn={},t.suppressDeprecationWarnings=!1,Yn=/^\s*(?:[+-]\d{6}|\d{4})-(?:(\d\d-\d\d)|(W\d\d$)|(W\d\d-\d)|(\d\d\d))((T| )(\d\d(:\d\d(:\d\d(\.\d+)?)?)?)?([\+\-]\d\d(?::?\d\d)?|\s*Z)?)?$/,Wn=[["YYYYYY-MM-DD",/[+-]\d{6}-\d{2}-\d{2}/],["YYYY-MM-DD",/\d{4}-\d{2}-\d{2}/],["GGGG-[W]WW-E",/\d{4}-W\d{2}-\d/],["GGGG-[W]WW",/\d{4}-W\d{2}/],["YYYY-DDD",/\d{4}-\d{3}/]],Bn=[["HH:mm:ss.SSSS",/(T| )\d\d:\d\d:\d\d\.\d+/],["HH:mm:ss",/(T| )\d\d:\d\d:\d\d/],["HH:mm",/(T| )\d\d:\d\d/],["HH",/(T| )\d\d/]],Vn=/^\/?Date\((\-?\d+)/i,t.createFromInputFallback=ne("moment construction falls back to js Date. This is discouraged and will be removed in upcoming major release. Please refer to https://github.com/moment/moment/issues/1407 for more info.",function(e){e._d=new Date(e._i+(e._useUTC?" UTC":""))}),I(0,["YY",2],0,function(){return this.year()%100}),I(0,["YYYY",4],0,"year"), +I(0,["YYYYY",5],0,"year"),I(0,["YYYYYY",6,!0],0,"year"),S("year","y"),Y("Y",oo),Y("YY",Zr,Kr),Y("YYYY",to,Qr),Y("YYYYY",no,Jr),Y("YYYYYY",no,Jr),V(["YYYYY","YYYYYY"],lo),V("YYYY",function(e,n){n[lo]=2===e.length?t.parseTwoDigitYear(e):v(e)}),V("YY",function(e,n){n[lo]=t.parseTwoDigitYear(e)}),t.parseTwoDigitYear=function(e){return v(e)+(v(e)>68?1900:2e3)},qn=N("FullYear",!1),I("w",["ww",2],"wo","week"),I("W",["WW",2],"Wo","isoWeek"),S("week","w"),S("isoWeek","W"),Y("w",Zr),Y("ww",Zr,Kr),Y("W",Zr),Y("WW",Zr,Kr),q(["w","ww","W","WW"],function(e,t,n,r){t[r.substr(0,1)]=v(e)}),zn={dow:0,doy:6},I("DDD",["DDDD",3],"DDDo","dayOfYear"),S("dayOfYear","DDD"),Y("DDD",eo),Y("DDDD",Xr),V(["DDD","DDDD"],function(e,t,n){n._dayOfYear=v(e)}),t.ISO_8601=function(){},$n=ne("moment().min is deprecated, use moment.min instead. https://github.com/moment/moment/issues/1548",function(){var e=De.apply(null,arguments);return ethis?this:e}),Re("Z",":"),Re("ZZ",""),Y("Z",io),Y("ZZ",io),V(["Z","ZZ"],function(e,t,n){n._useUTC=!0,n._tzm=Fe(e)}),Kn=/([\+\-]|\d\d)/gi,t.updateOffset=function(){},Xn=/(\-)?(?:(\d*)\.)?(\d+)\:(\d+)(?:\:(\d+)\.?(\d{3})?)?/,Qn=/^(-)?P(?:(?:([0-9,.]*)Y)?(?:([0-9,.]*)M)?(?:([0-9,.]*)D)?(?:T(?:([0-9,.]*)H)?(?:([0-9,.]*)M)?(?:([0-9,.]*)S)?)?|([0-9,.]*)W)$/,Je.fn=Ie.prototype,Jn=nt(1,"add"),Zn=nt(-1,"subtract"),t.defaultFormat="YYYY-MM-DDTHH:mm:ssZ",er=ne("moment().lang() is deprecated. Instead, use moment().localeData() to get the language configuration. Use moment().locale() to change languages.",function(e){return void 0===e?this.localeData():this.locale(e)}),I(0,["gg",2],0,function(){return this.weekYear()%100}),I(0,["GG",2],0,function(){return this.isoWeekYear()%100}),Dt("gggg","weekYear"),Dt("ggggg","weekYear"),Dt("GGGG","isoWeekYear"),Dt("GGGGG","isoWeekYear"),S("weekYear","gg"),S("isoWeekYear","GG"),Y("G",oo),Y("g",oo),Y("GG",Zr,Kr),Y("gg",Zr,Kr),Y("GGGG",to,Qr),Y("gggg",to,Qr),Y("GGGGG",no,Jr),Y("ggggg",no,Jr),q(["gggg","ggggg","GGGG","GGGGG"],function(e,t,n,r){t[r.substr(0,2)]=v(e)}),q(["gg","GG"],function(e,n,r,o){n[o]=t.parseTwoDigitYear(e)}),I("Q",0,0,"quarter"),S("quarter","Q"),Y("Q",Gr),V("Q",function(e,t){t[fo]=3*(v(e)-1)}),I("D",["DD",2],"Do","date"),S("date","D"),Y("D",Zr),Y("DD",Zr,Kr),Y("Do",function(e,t){return e?t._ordinalParse:t._ordinalParseLenient}),V(["D","DD"],po),V("Do",function(e,t){t[po]=v(e.match(Zr)[0],10)}),tr=N("Date",!0),I("d",0,"do","day"),I("dd",0,0,function(e){return this.localeData().weekdaysMin(this,e)}),I("ddd",0,0,function(e){return this.localeData().weekdaysShort(this,e)}),I("dddd",0,0,function(e){return this.localeData().weekdays(this,e)}),I("e",0,0,"weekday"),I("E",0,0,"isoWeekday"),S("day","d"),S("weekday","e"),S("isoWeekday","E"),Y("d",Zr),Y("e",Zr),Y("E",Zr),Y("dd",so),Y("ddd",so),Y("dddd",so),q(["dd","ddd","dddd"],function(e,t,n){var r=n._locale.weekdaysParse(e);null!=r?t.d=r:f(n).invalidWeekday=e}), +q(["d","e","E"],function(e,t,n,r){t[r]=v(e)}),nr="Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),rr="Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"),or="Su_Mo_Tu_We_Th_Fr_Sa".split("_"),I("H",["HH",2],0,"hour"),I("h",["hh",2],0,function(){return this.hours()%12||12}),zt("a",!0),zt("A",!1),S("hour","h"),Y("a",$t),Y("A",$t),Y("H",Zr),Y("h",Zr),Y("HH",Zr,Kr),Y("hh",Zr,Kr),V(["H","HH"],ho),V(["a","A"],function(e,t,n){n._isPm=n._locale.isPM(e),n._meridiem=e}),V(["h","hh"],function(e,t,n){t[ho]=v(e),f(n).bigHour=!0}),ir=/[ap]\.?m?\.?/i,ar=N("Hours",!0),I("m",["mm",2],0,"minute"),S("minute","m"),Y("m",Zr),Y("mm",Zr,Kr),V(["m","mm"],mo),sr=N("Minutes",!1),I("s",["ss",2],0,"second"),S("second","s"),Y("s",Zr),Y("ss",Zr,Kr),V(["s","ss"],go),ur=N("Seconds",!1),I("S",0,0,function(){return~~(this.millisecond()/100)}),I(0,["SS",2],0,function(){return~~(this.millisecond()/10)}),I(0,["SSS",3],0,"millisecond"),I(0,["SSSS",4],0,function(){return 10*this.millisecond()}),I(0,["SSSSS",5],0,function(){return 100*this.millisecond()}),I(0,["SSSSSS",6],0,function(){return 1e3*this.millisecond()}),I(0,["SSSSSSS",7],0,function(){return 1e4*this.millisecond()}),I(0,["SSSSSSSS",8],0,function(){return 1e5*this.millisecond()}),I(0,["SSSSSSSSS",9],0,function(){return 1e6*this.millisecond()}),S("millisecond","ms"),Y("S",eo,Gr),Y("SS",eo,Kr),Y("SSS",eo,Xr),cr="SSSS";cr.length<=9;cr+="S")Y(cr,ro);for(cr="S";cr.length<=9;cr+="S")V(cr,Xt);return lr=N("Milliseconds",!1),I("z",0,0,"zoneAbbr"),I("zz",0,0,"zoneName"),fr=m.prototype,fr.add=Jn,fr.calendar=ot,fr.clone=it,fr.diff=lt,fr.endOf=xt,fr.format=ht,fr.from=mt,fr.fromNow=gt,fr.to=yt,fr.toNow=vt,fr.get=A,fr.invalidAt=Nt,fr.isAfter=at,fr.isBefore=st,fr.isBetween=ut,fr.isSame=ct,fr.isValid=Mt,fr.lang=er,fr.locale=bt,fr.localeData=_t,fr.max=Gn,fr.min=$n,fr.parsingFlags=Ot,fr.set=A,fr.startOf=wt,fr.subtract=Zn,fr.toArray=Et,fr.toObject=St,fr.toDate=kt,fr.toISOString=dt,fr.toJSON=dt,fr.toString=pt,fr.unix=Tt,fr.valueOf=Ct,fr.year=qn,fr.isLeapYear=le,fr.weekYear=At,fr.isoWeekYear=Lt,fr.quarter=fr.quarters=Rt,fr.month=J,fr.daysInMonth=Z,fr.week=fr.weeks=me,fr.isoWeek=fr.isoWeeks=ge,fr.weeksInYear=jt,fr.isoWeeksInYear=It,fr.date=tr,fr.day=fr.days=Bt,fr.weekday=Vt,fr.isoWeekday=qt,fr.dayOfYear=ve,fr.hour=fr.hours=ar,fr.minute=fr.minutes=sr,fr.second=fr.seconds=ur,fr.millisecond=fr.milliseconds=lr,fr.utcOffset=Ye,fr.utc=Be,fr.local=Ve,fr.parseZone=qe,fr.hasAlignedHourOffset=ze,fr.isDST=$e,fr.isDSTShifted=Ge,fr.isLocal=Ke,fr.isUtcOffset=Xe,fr.isUtc=Qe,fr.isUTC=Qe,fr.zoneAbbr=Qt,fr.zoneName=Jt,fr.dates=ne("dates accessor is deprecated. Use date instead.",tr),fr.months=ne("months accessor is deprecated. Use month instead",J),fr.years=ne("years accessor is deprecated. Use year instead",qn),fr.zone=ne("moment().zone is deprecated, use moment().utcOffset instead. https://github.com/moment/moment/issues/1779",We),pr=fr,dr={sameDay:"[Today at] LT",nextDay:"[Tomorrow at] LT",nextWeek:"dddd [at] LT",lastDay:"[Yesterday at] LT",lastWeek:"[Last] dddd [at] LT",sameElse:"L"},hr={LTS:"h:mm:ss A",LT:"h:mm A", +L:"MM/DD/YYYY",LL:"MMMM D, YYYY",LLL:"MMMM D, YYYY h:mm A",LLLL:"dddd, MMMM D, YYYY h:mm A"},mr="Invalid date",gr="%d",yr=/\d{1,2}/,vr={future:"in %s",past:"%s ago",s:"a few seconds",m:"a minute",mm:"%d minutes",h:"an hour",hh:"%d hours",d:"a day",dd:"%d days",M:"a month",MM:"%d months",y:"a year",yy:"%d years"},br=_.prototype,br._calendar=dr,br.calendar=tn,br._longDateFormat=hr,br.longDateFormat=nn,br._invalidDate=mr,br.invalidDate=rn,br._ordinal=gr,br.ordinal=on,br._ordinalParse=yr,br.preparse=an,br.postformat=an,br._relativeTime=vr,br.relativeTime=sn,br.pastFuture=un,br.set=cn,br.months=G,br._months=Fn,br.monthsShort=K,br._monthsShort=Un,br.monthsParse=X,br.week=pe,br._week=zn,br.firstDayOfYear=he,br.firstDayOfWeek=de,br.weekdays=Ut,br._weekdays=nr,br.weekdaysMin=Yt,br._weekdaysMin=or,br.weekdaysShort=Ht,br._weekdaysShort=rr,br.weekdaysParse=Wt,br.isPM=Gt,br._meridiemParse=ir,br.meridiem=Kt,T("en",{ordinalParse:/\d{1,2}(th|st|nd|rd)/,ordinal:function(e){var t=e%10;return e+(1===v(e%100/10)?"th":1===t?"st":2===t?"nd":3===t?"rd":"th")}}),t.lang=ne("moment.lang is deprecated. Use moment.locale instead.",T),t.langData=ne("moment.langData is deprecated. Use moment.localeData instead.",E),_r=Math.abs,wr=Sn("ms"),xr=Sn("s"),Cr=Sn("m"),Tr=Sn("h"),kr=Sn("d"),Er=Sn("w"),Sr=Sn("M"),Mr=Sn("y"),Or=On("milliseconds"),Nr=On("seconds"),Dr=On("minutes"),Pr=On("hours"),Ar=On("days"),Lr=On("months"),Ir=On("years"),jr=Math.round,Rr={s:45,m:45,h:22,d:26,M:11},Fr=Math.abs,Ur=Ie.prototype,Ur.abs=yn,Ur.add=bn,Ur.subtract=_n,Ur.as=kn,Ur.asMilliseconds=wr,Ur.asSeconds=xr,Ur.asMinutes=Cr,Ur.asHours=Tr,Ur.asDays=kr,Ur.asWeeks=Er,Ur.asMonths=Sr,Ur.asYears=Mr,Ur.valueOf=En,Ur._bubble=xn,Ur.get=Mn,Ur.milliseconds=Or,Ur.seconds=Nr,Ur.minutes=Dr,Ur.hours=Pr,Ur.days=Ar,Ur.weeks=Nn,Ur.months=Lr,Ur.years=Ir,Ur.humanize=Ln,Ur.toISOString=In,Ur.toString=In,Ur.toJSON=In,Ur.locale=bt,Ur.localeData=_t,Ur.toIsoString=ne("toIsoString() is deprecated. Please use toISOString() instead (notice the capitals)",In),Ur.lang=er,I("X",0,0,"unix"),I("x",0,0,"valueOf"),Y("x",oo),Y("X",ao),V("X",function(e,t,n){n._d=new Date(1e3*parseFloat(e,10))}),V("x",function(e,t,n){n._d=new Date(v(e))}),t.version="2.10.6",r(De),t.fn=pr,t.min=Ae,t.max=Le,t.utc=c,t.unix=Zt,t.months=pn,t.isDate=i,t.locale=T,t.invalid=d,t.duration=Je,t.isMoment=g,t.weekdays=hn,t.parseZone=en,t.localeData=E,t.isDuration=je,t.monthsShort=dn,t.weekdaysMin=gn,t.defineLocale=k,t.weekdaysShort=mn,t.normalizeUnits=M,t.relativeTimeThreshold=An,t})}).call(t,n(78)(e))},,,function(e,t,n){var r=n(252)("wks"),o=n(152),i=n(35).Symbol,a="function"==typeof i;(e.exports=function(e){return r[e]||(r[e]=a&&i[e]||(a?i:o)("Symbol."+e))}).store=r},,,,,,,function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}var o=n(1074),i=r(o),a=n(460),s=r(a);e.exports={TransitionGroup:s.default,CSSTransitionGroup:i.default}},,,,function(e,t){e.exports=function(e){return"object"==typeof e?null!==e:"function"==typeof e}},,,function(e,t,n){"use strict";function r(e,t,n){return $.isNaN(t)?e:tn?n:Math.round(t)} +function o(e,t,n){return $.isNaN(t)?e:tn?n:Math.round(1e4*t)/1e4}function i(e){return r(0,e,255)}function a(e){return r(0,e,255)}function s(e){return r(0,e,255)}function u(e){return o(0,e,1)}function c(e,t,n){return[i(e),a(t),s(n)]}function l(e,t){return e[0]===t[0]&&e[1]===t[1]&&e[2]===t[2]}function f(e,t,n,r){var o,c,l;return Array.isArray(e)?(o=e,r=t,[o[0],o[1],o[2],u(r)]):(c=e,l=t,n=n||0,r=r||0,[i(c),a(l),s(n),u(r)])}function p(e,t){return e[0]===t[0]&&e[1]===t[1]&&e[2]===t[2]&&e[3]===t[3]}function d(e){return o(0,e,1)}function h(e){return o(0,e,1)}function m(e){return o(0,e,1)}function g(e){return o(0,e,1)}function y(e){return o(0,e,1)}function v(e,t,n){return[d(e),h(t),g(n)]}function b(e,t){return e[0]===t[0]&&e[1]===t[1]&&e[2]===t[2]}function _(e,t,n){return[d(e),m(t),y(n)]}function w(e,t){return e[0]===t[0]&&e[1]===t[1]&&e[2]===t[2]}function x(e){var t,n=e[0],r=e[1],o=e[2],i=n/255,a=r/255,s=o/255,u=Math.min(i,a,s),c=Math.max(i,a,s),l=0,f=0,p=(u+c)/2;if(u===c)l=0,f=0;else switch(t=c-u,f=p>.5?t/(2-c-u):t/(c+u),c){case i:l=((a-s)/t+(a1&&(n-=1),n<1/6?e+6*(t-e)*n:n<.5?t:n<2/3?e+(t-e)*(2/3-n)*6:e}function T(e){var t,n,r,o,u,c=e[0],l=e[1],f=e[2];return 0===l?t=n=r=f:(o=f<.5?f*(1+l):f+l-f*l,u=2*f-o,t=C(u,o,c+1/3),n=C(u,o,c),r=C(u,o,c-1/3)),[i(255*t),a(255*n),s(255*r)]}function k(e){var t=e[0],n=e[1],r=e[2],o=t/255,i=n/255,a=r/255,s=Math.min(o,i,a),u=Math.max(o,i,a),c=u-s,l=0,f=0===u?0:c/u,p=u;if(u===s)l=0;else switch(u){case t:l=((i-a)/c+(i255)throw Error("invalid threshold value, valid values are [0, 255]");return S(e)>=t?"white":"black"}function B(e){var t,n,r,o,i;if(e=e.toLowerCase(),L(K,e)){if(null!==(t=R(K[e])))return t;throw Error("Invalid named color definition")}return null!==(n=I(e))?n:null!==(r=R(e))?r:null!==(o=U(e))?o:(i=H(e),null!==i?i:null)}function V(e){var t=B(e);if(null!==t)return t;throw Error("Passed color string does not match any of the known color representations")}function q(e){var t,n,r,o,i,a,s,u;if(e=e.toLowerCase(),L(K,e)){if(null!==(t=R(K[e])))return n=t[0],r=t[1],o=t[2],[n,r,o,1];throw Error("Invalid named color definition")}return null!==(i=I(e))?(n=i[0],r=i[1],o=i[2],[n,r,o,1]):null!==(a=R(e))?(n=a[0],r=a[1],o=a[2],[n,r,o,1]):null!==(s=U(e))?(n=s[0],r=s[1],o=s[2],[n,r,o,1]):(u=H(e),null!==u?u:null)}function z(e){var t=q(e);if(null!==t)return t;throw Error("Passed color string does not match any of the known color representations")}var $,G,K,X,Q,J,Z;Object.defineProperty(t,"__esModule",{value:!0}),$=n(333),t.normalizeRedComponent=i,t.normalizeGreenComponent=a,t.normalizeBlueComponent=s,t.normalizeAlphaComponent=u,t.rgb=c,t.areEqualRgb=l,t.rgba=f,t.areEqualRgba=p,t.normalizeHue=d,t.normalizeHslSaturation=h,t.normalizeHsvSaturation=m,t.normalizeLightness=g,t.normalizeValue=y,t.hsl=v,t.areEqualHsl=b,t.hsv=_,t.areEqualHsv=w,t.rgbToHsl=x,t.hslToRgb=T,t.rgbToHsv=k,t.hsvToRgb=E,G=[.199,.687,.114],t.rgbToGrayscale=S,t.distanceRgb=M,t.invertRgb=O,t.darkenRgb=N,t.blendRgba=D,t.shiftRgb=P,t.shiftColor=A,K={aliceblue:"#f0f8ff",antiquewhite:"#faebd7",aqua:"#00ffff",aquamarine:"#7fffd4",azure:"#f0ffff",beige:"#f5f5dc",bisque:"#ffe4c4",black:"#000000",blanchedalmond:"#ffebcd",blue:"#0000ff",blueviolet:"#8a2be2",brown:"#a52a2a",burlywood:"#deb887",cadetblue:"#5f9ea0",chartreuse:"#7fff00",chocolate:"#d2691e",coral:"#ff7f50",cornflowerblue:"#6495ed",cornsilk:"#fff8dc",crimson:"#dc143c",cyan:"#00ffff",darkblue:"#00008b",darkcyan:"#008b8b",darkgoldenrod:"#b8860b",darkgray:"#a9a9a9",darkgreen:"#006400",darkkhaki:"#bdb76b",darkmagenta:"#8b008b",darkolivegreen:"#556b2f",darkorange:"#ff8c00",darkorchid:"#9932cc",darkred:"#8b0000",darksalmon:"#e9967a",darkseagreen:"#8fbc8f",darkslateblue:"#483d8b",darkslategray:"#2f4f4f",darkturquoise:"#00ced1",darkviolet:"#9400d3",deeppink:"#ff1493",deepskyblue:"#00bfff",dimgray:"#696969",dodgerblue:"#1e90ff",feldspar:"#d19275",firebrick:"#b22222",floralwhite:"#fffaf0",forestgreen:"#228b22",fuchsia:"#ff00ff",gainsboro:"#dcdcdc",ghostwhite:"#f8f8ff",gold:"#ffd700",goldenrod:"#daa520",gray:"#808080",green:"#008000",greenyellow:"#adff2f",honeydew:"#f0fff0",hotpink:"#ff69b4",indianred:"#cd5c5c",indigo:"#4b0082",ivory:"#fffff0",khaki:"#f0e68c",lavender:"#e6e6fa",lavenderblush:"#fff0f5",lawngreen:"#7cfc00",lemonchiffon:"#fffacd",lightblue:"#add8e6",lightcoral:"#f08080",lightcyan:"#e0ffff",lightgoldenrodyellow:"#fafad2",lightgreen:"#90ee90",lightgrey:"#d3d3d3",lightpink:"#ffb6c1", +lightsalmon:"#ffa07a",lightseagreen:"#20b2aa",lightskyblue:"#87cefa",lightslateblue:"#8470ff",lightslategray:"#778899",lightsteelblue:"#b0c4de",lightyellow:"#ffffe0",lime:"#00ff00",limegreen:"#32cd32",linen:"#faf0e6",magenta:"#ff00ff",maroon:"#800000",mediumaquamarine:"#66cdaa",mediumblue:"#0000cd",mediumorchid:"#ba55d3",mediumpurple:"#9370d8",mediumseagreen:"#3cb371",mediumslateblue:"#7b68ee",mediumspringgreen:"#00fa9a",mediumturquoise:"#48d1cc",mediumvioletred:"#c71585",midnightblue:"#191970",mintcream:"#f5fffa",mistyrose:"#ffe4e1",moccasin:"#ffe4b5",navajowhite:"#ffdead",navy:"#000080",oldlace:"#fdf5e6",olive:"#808000",olivedrab:"#6b8e23",orange:"#ffa500",orangered:"#ff4500",orchid:"#da70d6",palegoldenrod:"#eee8aa",palegreen:"#98fb98",paleturquoise:"#afeeee",palevioletred:"#d87093",papayawhip:"#ffefd5",peachpuff:"#ffdab9",peru:"#cd853f",pink:"#ffc0cb",plum:"#dda0dd",powderblue:"#b0e0e6",purple:"#800080",red:"#ff0000",rosybrown:"#bc8f8f",royalblue:"#4169e1",saddlebrown:"#8b4513",salmon:"#fa8072",sandybrown:"#f4a460",seagreen:"#2e8b57",seashell:"#fff5ee",sienna:"#a0522d",silver:"#c0c0c0",skyblue:"#87ceeb",slateblue:"#6a5acd",slategray:"#708090",snow:"#fffafa",springgreen:"#00ff7f",steelblue:"#4682b4",tan:"#d2b48c",teal:"#008080",thistle:"#d8bfd8",tomato:"#ff6347",turquoise:"#40e0d0",violet:"#ee82ee",violetred:"#d02090",wheat:"#f5deb3",white:"#ffffff",whitesmoke:"#f5f5f5",yellow:"#ffff00",yellowgreen:"#9acd32"},function(e){function t(e){return[i(parseInt(e[1],10)),a(parseInt(e[2],10)),s(parseInt(e[3],10))]}e.re=/^rgb\(\s*(-?\d{1,10})\s*,\s*(-?\d{1,10})\s*,\s*(-?\d{1,10})\s*\)$/,e.parse=t}(X||(X={})),t.rgbToString=j,function(e){function t(e){return[i(parseInt(e[1],16)),a(parseInt(e[2],16)),s(parseInt(e[3],16))]}e.re=/^#([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})$/,e.parse=t}(Q||(Q={})),t.rgbToHexString=F,function(e){function t(e){return[i(parseInt(e[1]+e[1],16)),a(parseInt(e[2]+e[2],16)),s(parseInt(e[3]+e[3],16))]}e.re=/^#([0-9a-fA-F])([0-9a-fA-F])([0-9a-fA-F])$/,e.parse=t}(J||(J={})),function(e){function t(e){return[i(parseInt(e[1],10)),a(parseInt(e[2],10)),s(parseInt(e[3],10)),u(parseFloat(e[4]))]}e.re=/^rgba\(\s*(-?\d{1,10})\s*,\s*(-?\d{1,10})\s*,\s*(-?\d{1,10})\s*,\s*(-?[\d]{0,10}(?:\.\d+)?)\s*\)$/,e.parse=t}(Z||(Z={})),t.rgbaToString=Y,t.rgbToBlackWhiteString=W,t.tryParseRgb=B,t.parseRgb=V,t.tryParseRgba=q,t.parseRgba=z},function(e,t,n){(function(t){e.exports=t.Mustache=n(725)}).call(t,function(){return this}())},function(e,t,n){"use strict";e.exports=n(1023)},,,function(e,t){e.exports=function(e){try{return!!e()}catch(e){return!0}}},function(e,t,n){var r=n(29),o=n(342),i=n(151),a=Object.defineProperty;t.f=n(79)?Object.defineProperty:function(e,t,n){if(r(e),t=i(t,!0),r(n),o)try{return a(e,t,n)}catch(e){}if("get"in n||"set"in n)throw TypeError("Accessors not supported!");return"value"in n&&(e[t]=n.value),e}},function(e,t){"use strict";var n=!("undefined"==typeof window||!window.document||!window.document.createElement),r={canUseDOM:n,canUseWorkers:"undefined"!=typeof Worker, +canUseEventListeners:n&&!(!window.addEventListener&&!window.attachEvent),canUseViewport:n&&!!window.screen,isInWorker:!n};e.exports=r},,,,,,function(e,t){"use strict";function n(e){return function(){return e}}var r=function(){};r.thatReturns=n,r.thatReturnsFalse=n(!1),r.thatReturnsTrue=n(!0),r.thatReturnsNull=n(null),r.thatReturnsThis=function(){return this},r.thatReturnsArgument=function(e){return e},e.exports=r},,,,,,function(e,t){var n={}.hasOwnProperty;e.exports=function(e,t){return n.call(e,t)}},,,function(e,t,n){"use strict";var r=null;e.exports={debugTool:r}},,,function(e,t){e.exports=function(e){return e.webpackPolyfill||(e.deprecate=function(){},e.paths=[],e.children=[],e.webpackPolyfill=1),e}},function(e,t,n){e.exports=!n(58)(function(){return 7!=Object.defineProperty({},"a",{get:function(){return 7}}).a})},,,,,,,function(e,t,n){e.exports=n(1007)()},function(e,t,n){"use strict";function r(){p.ReactReconcileTransaction&&T||d("123")}function o(){this.reinitializeTransaction(),this.dirtyComponentsLength=null,this.callbackQueue=m.getPooled(),this.reconcileTransaction=p.ReactReconcileTransaction.getPooled(!0)}function i(e,t,n,o,i,a){return r(),T.batchedUpdates(e,t,n,o,i,a)}function a(e,t){return e._mountOrder-t._mountOrder}function s(e){var t,n,r,o,i,s,u=e.dirtyComponentsLength;for(u!==_.length&&d("124",u,_.length),_.sort(a),w++,t=0;t0?o(r(e),9007199254740991):0}},function(e,t){"use strict";var n=window.Modernizr=function(e,t,n){function r(e){v.cssText=e}function o(e,t){return typeof e===t}function i(e,t){return!!~(""+e).indexOf(t)}function a(e,t){var r,o;for(r in e)if(o=e[r],!i(o,"-")&&v[o]!==n)return"pfx"!=t||o;return!1}function s(e,t,r){var i,a;for(i in e)if((a=t[e[i]])!==n)return!1===r?e[i]:o(a,"function")?a.bind(r||t):a;return!1}function u(e,t,n){var r=e.charAt(0).toUpperCase()+e.slice(1),i=(e+" "+w.join(r+" ")+r).split(" ");return o(t,"string")||o(t,"undefined")?a(i,t):(i=(e+" "+x.join(r+" ")+r).split(" "),s(i,t,n))}var c,l,f,p="2.8.3",d={},h=!0,m=t.documentElement,g="modernizr",y=t.createElement(g),v=y.style,b=" -webkit- -moz- -o- -ms- ".split(" "),_="Webkit Moz O ms",w=_.split(" "),x=_.toLowerCase().split(" "),C={},T=[],k=T.slice,E=function(e,n,r,o){var i,a,s,u,c=t.createElement("div"),l=t.body,f=l||t.createElement("body");if(parseInt(r,10))for(;r--;)s=t.createElement("div"),s.id=o?o[r]:g+(r+1),c.appendChild(s);return i='­",c.id=g,(l?c:f).innerHTML+=i,f.appendChild(c),l||(f.style.background="",f.style.overflow="hidden",u=m.style.overflow,m.style.overflow="hidden",m.appendChild(f)),a=n(c,e),l?c.parentNode.removeChild(c):(f.parentNode.removeChild(f),m.style.overflow=u),!!a},S=function(){function e(e,i){i=i||t.createElement(r[e]||"div"),e="on"+e;var a=e in i;return a||(i.setAttribute||(i=t.createElement("div")),i.setAttribute&&i.removeAttribute&&(i.setAttribute(e,""),a=o(i[e],"function"),o(i[e],"undefined")||(i[e]=n),i.removeAttribute(e))),i=null,a}var r={select:"input",change:"input",submit:"form",reset:"form",error:"img",load:"img",abort:"img"};return e}(),M={}.hasOwnProperty;l=o(M,"undefined")||o(M.call,"undefined")?function(e,t){return t in e&&o(e.constructor.prototype[t],"undefined")}:function(e,t){return M.call(e,t)},Function.prototype.bind||(Function.prototype.bind=function(e){var t,n,r=this;if("function"!=typeof r)throw new TypeError;return t=k.call(arguments,1),n=function(){var o,i,a;return this instanceof n?(o=function(){},o.prototype=r.prototype,i=new o,a=r.apply(i,t.concat(k.call(arguments))),Object(a)===a?a:i):r.apply(e,t.concat(k.call(arguments)))}}),C.flexbox=function(){return u("flexWrap")},C.canvas=function(){var e=t.createElement("canvas");return!!e.getContext&&!!e.getContext("2d")},C.canvastext=function(){return!!d.canvas&&!!o(t.createElement("canvas").getContext("2d").fillText,"function")},C.touch=function(){var n;return"ontouchstart"in e||e.DocumentTouch&&t instanceof DocumentTouch?n=!0:E("@media ("+b.join("touch-enabled),(")+g+"){#modernizr{top:9px;position:absolute}}",function(e){n=9===e.offsetTop}),n}, +C.history=function(){return!!e.history&&!!history.pushState},C.draganddrop=function(){var e=t.createElement("div");return"draggable"in e||"ondragstart"in e&&"ondrop"in e},C.websockets=function(){return"WebSocket"in e||"MozWebSocket"in e},C.multiplebgs=function(){return r("background:url(https://),url(https://),red url(https://)"),/(url\s*\(.*?){3}/.test(v.background)},C.csscolumns=function(){return u("columnCount")},C.csstransitions=function(){return u("transition")},C.localstorage=function(){try{return localStorage.setItem(g,g),localStorage.removeItem(g),!0}catch(e){return!1}};for(f in C)l(C,f)&&(c=f.toLowerCase(),d[c]=C[f](),T.push((d[c]?"":"no-")+c));return d.addTest=function(e,t){if("object"==typeof e)for(var r in e)l(e,r)&&d.addTest(r,e[r]);else{if(e=e.toLowerCase(),d[e]!==n)return d;t="function"==typeof t?t():t,void 0!==h&&h&&(m.className+=" feature-"+(t?"":"no-")+e),d[e]=t}return d},r(""),y=null,d._version=p,d._prefixes=b,d._domPrefixes=x,d._cssomPrefixes=w,d.hasEvent=S,d.testProp=function(e){return a([e])},d.testAllProps=u,d.testStyles=E,m.className=m.className.replace(/(^|\s)no-js(\s|$)/,"$1$2")+(h?" feature-js feature-"+T.join(" feature-"):""),d}(window,document);!n.touch||"onorientationchange"in window||(n.touch=!1,document.documentElement.className=document.documentElement.className.replace("feature-touch","feature-no-touch")),n.addTest("pointerevents",function(){var e,t=document.createElement("x"),n=document.documentElement,r=window.getComputedStyle,o=!1;return"pointerEvents"in t.style&&(t.style.pointerEvents="auto",t.style.pointerEvents="x",n.appendChild(t),r&&(e=r(t,""),o=!!e&&"auto"===e.pointerEvents),n.removeChild(t),!!o)}),n.addTest("flexbox",n.testAllProps("flexBasis","1px",!0))},function(e,t,n){"use strict";function r(e,t,n,r){var o,i,s,u;this.dispatchConfig=e,this._targetInst=t,this.nativeEvent=n,o=this.constructor.Interface;for(i in o)o.hasOwnProperty(i)&&(s=o[i],s?this[i]=s(n):"target"===i?this.target=r:this[i]=n[i]);return u=null!=n.defaultPrevented?n.defaultPrevented:!1===n.returnValue,this.isDefaultPrevented=u?a.thatReturnsTrue:a.thatReturnsFalse,this.isPropagationStopped=a.thatReturnsFalse,this}var o=n(30),i=n(120),a=n(66),s=(n(24),["dispatchConfig","_targetInst","nativeEvent","isDefaultPrevented","isPropagationStopped","_dispatchListeners","_dispatchInstances"]),u={type:null,target:null,currentTarget:a.thatReturnsNull,eventPhase:null,bubbles:null,cancelable:null,timeStamp:function(e){return e.timeStamp||Date.now()},defaultPrevented:null,isTrusted:null};o(r.prototype,{preventDefault:function(){this.defaultPrevented=!0;var e=this.nativeEvent;e&&(e.preventDefault?e.preventDefault():"unknown"!=typeof e.returnValue&&(e.returnValue=!1),this.isDefaultPrevented=a.thatReturnsTrue)},stopPropagation:function(){var e=this.nativeEvent;e&&(e.stopPropagation?e.stopPropagation():"unknown"!=typeof e.cancelBubble&&(e.cancelBubble=!0),this.isPropagationStopped=a.thatReturnsTrue)},persist:function(){this.isPersistent=a.thatReturnsTrue},isPersistent:a.thatReturnsFalse,destructor:function(){ +var e,t,n=this.constructor.Interface;for(e in n)this[e]=null;for(t=0;t1){for(f=Array(u),p=0;p1){for(d=Array(p),h=0;h-1&&n.observers[e].splice(r,1)}else delete n.observers[e]})},e.prototype.emit=function(e){for(var t=arguments.length,n=Array(t>1?t-1:0),r=1;r-1?e.replace(/###/g,"."):e}for(var o,i="string"!=typeof t?[].concat(t):t.split(".");i.length>1;){if(!e)return{};o=r(i.shift()),!e[o]&&n&&(e[o]=new n),e=e[o]}return e?{obj:e,k:r(i.shift())}:{}}function i(e,t,n){var r=o(e,t,Object);r.obj[r.k]=n}function a(e,t,n,r){var i=o(e,t,Object),a=i.obj,s=i.k;a[s]=a[s]||[],r&&(a[s]=a[s].concat(n)),r||a[s].push(n)}function s(e,t){var n=o(e,t),r=n.obj,i=n.k;if(r)return r[i]}function u(e,t,n){for(var r in t)r in e?"string"==typeof e[r]||e[r]instanceof String||"string"==typeof t[r]||t[r]instanceof String?n&&(e[r]=t[r]):u(e[r],t[r],n):e[r]=t[r];return e}function c(e){return e.replace(/[\-\[\]\/\{\}\(\)\*\+\?\.\\\^\$\|]/g,"\\$&")}function l(e){return"string"==typeof e?e.replace(/[&<>"'\/]/g,function(e){return f[e]}):e}Object.defineProperty(t,"__esModule",{value:!0}),t.makeString=n,t.copy=r,t.setPath=i,t.pushPath=a,t.getPath=s,t.deepExtend=u,t.regexEscape=c,t.escape=l;var f={"&":"&","<":"<",">":">",'"':""","'":"'","/":"/"}},,,,,function(e,t,n){"use strict";function r(e){return"button"===e||"input"===e||"select"===e||"textarea"===e}function o(e,t,n){switch(e){case"onClick":case"onClickCapture":case"onDoubleClick":case"onDoubleClickCapture":case"onMouseDown":case"onMouseDownCapture":case"onMouseMove":case"onMouseMoveCapture":case"onMouseUp":case"onMouseUpCapture":return!(!n.disabled||!r(t));default:return!1}}var i=n(25),a=n(291),s=n(292),u=n(296),c=n(451),l=n(452),f=(n(17),{}),p=null,d=function(e,t){e&&(s.executeDispatchesInOrder(e,t),e.isPersistent()||e.constructor.release(e))},h=function(e){return d(e,!0)},m=function(e){return d(e,!1)},g=function(e){return"."+e._rootNodeID},y={injection:{injectEventPluginOrder:a.injectEventPluginOrder,injectEventPluginsByName:a.injectEventPluginsByName},putListener:function(e,t,n){var r,o,s;"function"!=typeof n&&i("94",t,typeof n),r=g(e),o=f[t]||(f[t]={}),o[r]=n,(s=a.registrationNameModules[t])&&s.didPutListener&&s.didPutListener(e,t,n)},getListener:function(e,t){var n,r=f[t];return o(t,e._currentElement.type,e._currentElement.props)?null:(n=g(e),r&&r[n])},deleteListener:function(e,t){var n,r,o=a.registrationNameModules[t];o&&o.willDeleteListener&&o.willDeleteListener(e,t),(n=f[t])&&(r=g(e),delete n[r])},deleteAllListeners:function(e){var t,n,r=g(e);for(t in f)f.hasOwnProperty(t)&&f[t][r]&&(n=a.registrationNameModules[t],n&&n.willDeleteListener&&n.willDeleteListener(e,t),delete f[t][r])},extractEvents:function(e,t,n,r){var o,i,s,u,l=a.plugins;for(i=0;i=0&&i0?0:s-1;return arguments.length<3&&(o=n[a?a[c]:c],c+=e),t(n,r,o,a,c,s)}}function i(e){return function(t,n,r){var o,i;for(n=c(n,r),o=h(t),i=e>0?0:o-1;i>=0&&i0?a=i>=0?i:Math.max(i+s,a):s=i>=0?Math.min(i+1,s):i+s+1;else if(n&&i&&s)return i=n(r,o),r[i]===o?i:-1;if(o!==o)return i=t(R.call(r,a,s),q.isNaN),i>=0?i+a:-1;for(i=e>0?a:s-1;i>=0&&i=0&&t<=d},q.each=q.forEach=function(e,t,n){var r,o,i;if(t=u(t,n),m(e))for(r=0,o=e.length;r=0},q.invoke=function(e,t){var n=R.call(arguments,2),r=q.isFunction(t);return q.map(e,function(e){var o=r?t:e[t];return null==o?o:o.apply(e,n)})},q.pluck=function(e,t){return q.map(e,q.property(t))},q.where=function(e,t){return q.filter(e,q.matcher(t))},q.findWhere=function(e,t){return q.find(e,q.matcher(t))},q.max=function(e,t,n){var r,o,i,a,s=-1/0,u=-1/0;if(null==t&&null!=e)for(e=m(e)?e:q.values(e),i=0,a=e.length;is&&(s=r);else t=c(t,n),q.each(e,function(e,n,r){((o=t(e,n,r))>u||o===-1/0&&s===-1/0)&&(s=e,u=o)});return s},q.min=function(e,t,n){var r,o,i,a,s=1/0,u=1/0;if(null==t&&null!=e)for(e=m(e)?e:q.values(e), +i=0,a=e.length;ir||void 0===n)return 1;if(nt?(s&&(clearTimeout(s),s=null),u=l,i=e.apply(r,o),s||(r=o=null)):s||!1===n.trailing||(s=setTimeout(a,c)),i}},q.debounce=function(e,t,n){var r,o,i,a,s,u=function(){var c=q.now()-a;c=0?r=setTimeout(u,t-c):(r=null,n||(s=e.apply(i,o),r||(i=o=null)))};return function(){i=this,o=arguments,a=q.now();var c=n&&!r;return r||(r=setTimeout(u,t)),c&&(s=e.apply(i,o),i=o=null),s}},q.wrap=function(e,t){return q.partial(t,e)},q.negate=function(e){return function(){return!e.apply(this,arguments)}},q.compose=function(){var e=arguments,t=e.length-1;return function(){for(var n=t,r=e[t].apply(this,arguments);n--;)r=e[n].call(this,r);return r}},q.after=function(e,t){return function(){if(--e<1)return t.apply(this,arguments)}},q.before=function(e,t){var n;return function(){return--e>0&&(n=t.apply(this,arguments)),e<=1&&(t=null),n}},q.once=q.partial(q.before,2),b=!{toString:null}.propertyIsEnumerable("toString"),_=["valueOf","isPrototypeOf","toString","propertyIsEnumerable","hasOwnProperty","toLocaleString"],q.keys=function(e){var t,n;if(!q.isObject(e))return[];if(Y)return Y(e);t=[];for(n in e)q.has(e,n)&&t.push(n);return b&&s(e,t),t},q.allKeys=function(e){var t,n;if(!q.isObject(e))return[];t=[];for(n in e)t.push(n);return b&&s(e,t),t},q.values=function(e){var t,n=q.keys(e),r=n.length,o=Array(r);for(t=0;t":">",'"':""","'":"'","`":"`"},C=q.invert(x),T=function(e){var t=function(t){return e[t]},n="(?:"+q.keys(e).join("|")+")",r=RegExp(n),o=RegExp(n,"g");return function(e){return e=null==e?"":""+e,r.test(e)?e.replace(o,t):e}},q.escape=T(x),q.unescape=T(C),q.result=function(e,t,n){var r=null==e?void 0:e[t];return void 0===r&&(r=n),q.isFunction(r)?r.call(e):r},k=0,q.uniqueId=function(e){var t=++k+"";return e?e+t:t},q.templateSettings={evaluate:/<%([\s\S]+?)%>/g,interpolate:/<%=([\s\S]+?)%>/g,escape:/<%-([\s\S]+?)%>/g},E=/(.)^/,S={"'":"'","\\":"\\","\r":"r","\n":"n","\u2028":"u2028","\u2029":"u2029"},M=/\\|'|\r|\n|\u2028|\u2029/g,O=function(e){return"\\"+S[e]},q.template=function(e,t,n){var r,o,i,a,s,u;!t&&n&&(t=n),t=q.defaults({},t,q.templateSettings),r=RegExp([(t.escape||E).source,(t.interpolate||E).source,(t.evaluate||E).source].join("|")+"|$","g"),o=0,i="__p+='",e.replace(r,function(t,n,r,a,s){return i+=e.slice(o,s).replace(M,O),o=s+t.length,n?i+="'+\n((__t=("+n+"))==null?'':_.escape(__t))+\n'":r?i+="'+\n((__t=("+r+"))==null?'':__t)+\n'":a&&(i+="';\n"+a+"\n__p+='"),t}),i+="';\n",t.variable||(i="with(obj||{}){\n"+i+"}\n"),i="var __t,__p='',__j=Array.prototype.join,print=function(){__p+=__j.call(arguments,'');};\n"+i+"return __p;\n";try{a=Function(t.variable||"obj","_",i)}catch(e){throw e.source=i,e}return s=function(e){return a.call(this,e,q)},u=t.variable||"obj",s.source="function("+u+"){\n"+i+"}",s},q.chain=function(e){var t=q(e);return t._chain=!0,t},N=function(e,t){return e._chain?q(t).chain():t},q.mixin=function(e){q.each(q.functions(e),function(t){var n=q[t]=e[t];q.prototype[t]=function(){var e=[this._wrapped];return j.apply(e,arguments),N(this,n.apply(q,e))}})},q.mixin(q),q.each(["pop","push","reverse","shift","sort","splice","unshift"],function(e){var t=A[e];q.prototype[e]=function(){var n=this._wrapped;return t.apply(n,arguments),"shift"!==e&&"splice"!==e||0!==n.length||delete n[0],N(this,n)}}),q.each(["concat","join","slice"],function(e){var t=A[e];q.prototype[e]=function(){return N(this,t.apply(this._wrapped,arguments))}}),q.prototype.value=function(){return this._wrapped},q.prototype.valueOf=q.prototype.toJSON=q.prototype.value,q.prototype.toString=function(){return""+this._wrapped},r=[],void 0!==(o=function(){return q}.apply(t,r))&&(e.exports=o)}).call(this)},,function(e,t){e.exports={}},function(e,t){e.exports=!1},function(e,t,n){ +var r=n(29),o=n(531),i=n(238),a=n(251)("IE_PROTO"),s=function(){},u="prototype",c=function(){var e,t=n(237)("iframe"),r=i.length,o="<",a=">";for(t.style.display="none",n(341).appendChild(t),t.src="javascript:",e=t.contentWindow.document,e.open(),e.write(o+"script"+a+"document.F=Object"+o+"/script"+a),e.close(),c=e.F;r--;)delete c[u][i[r]];return c()};e.exports=Object.create||function(e,t){var n;return null!==e?(s[u]=r(e),n=new s,s[u]=null,n[a]=e):n=c(),void 0===t?n:o(n,t)}},function(e,t){t.f=Object.getOwnPropertySymbols},function(e,t,n){var r=n(199),o=Math.max,i=Math.min;e.exports=function(e,t){return e=r(e),e<0?o(e+t,0):i(e,t)}},function(e,t){var n=Math.ceil,r=Math.floor;e.exports=function(e){return isNaN(e=+e)?0:(e>0?r:n)(e)}},,,function(e,t,n){"use strict";var r={};e.exports=r},,,,,,,,,,,,,,,,,,,function(e,t,n){"use strict";function r(e){return Object.prototype.hasOwnProperty.call(e,m)||(e[m]=d++,f[e[m]]={}),f[e[m]]}var o,i=n(30),a=n(291),s=n(1038),u=n(450),c=n(1070),l=n(302),f={},p=!1,d=0,h={topAbort:"abort",topAnimationEnd:c("animationend")||"animationend",topAnimationIteration:c("animationiteration")||"animationiteration",topAnimationStart:c("animationstart")||"animationstart",topBlur:"blur",topCanPlay:"canplay",topCanPlayThrough:"canplaythrough",topChange:"change",topClick:"click",topCompositionEnd:"compositionend",topCompositionStart:"compositionstart",topCompositionUpdate:"compositionupdate",topContextMenu:"contextmenu",topCopy:"copy",topCut:"cut",topDoubleClick:"dblclick",topDrag:"drag",topDragEnd:"dragend",topDragEnter:"dragenter",topDragExit:"dragexit",topDragLeave:"dragleave",topDragOver:"dragover",topDragStart:"dragstart",topDrop:"drop",topDurationChange:"durationchange",topEmptied:"emptied",topEncrypted:"encrypted",topEnded:"ended",topError:"error",topFocus:"focus",topInput:"input",topKeyDown:"keydown",topKeyPress:"keypress",topKeyUp:"keyup",topLoadedData:"loadeddata",topLoadedMetadata:"loadedmetadata",topLoadStart:"loadstart",topMouseDown:"mousedown",topMouseMove:"mousemove",topMouseOut:"mouseout",topMouseOver:"mouseover",topMouseUp:"mouseup",topPaste:"paste",topPause:"pause",topPlay:"play",topPlaying:"playing",topProgress:"progress",topRateChange:"ratechange",topScroll:"scroll",topSeeked:"seeked",topSeeking:"seeking",topSelectionChange:"selectionchange",topStalled:"stalled",topSuspend:"suspend",topTextInput:"textInput",topTimeUpdate:"timeupdate",topTouchCancel:"touchcancel",topTouchEnd:"touchend",topTouchMove:"touchmove",topTouchStart:"touchstart",topTransitionEnd:c("transitionend")||"transitionend",topVolumeChange:"volumechange",topWaiting:"waiting",topWheel:"wheel"},m="_reactListenersID"+(Math.random()+"").slice(2),g=i({},s,{ReactEventListener:null,injection:{injectReactEventListener:function(e){e.setHandleTopLevel(g.handleTopLevel),g.ReactEventListener=e}},setEnabled:function(e){g.ReactEventListener&&g.ReactEventListener.setEnabled(e)},isEnabled:function(){return!(!g.ReactEventListener||!g.ReactEventListener.isEnabled())},listenTo:function(e,t){ +var n,o,i=t,s=r(i),u=a.registrationNameDependencies[e];for(n=0;n]/;e.exports=r},function(e,t,n){"use strict";var r,o,i=n(60),a=n(290),s=/^[ \r\n\t\f]/,u=/<(!--|link|noscript|meta|script|style)[ \r\n\t\f\/>]/,c=n(298),l=c(function(e,t){if(e.namespaceURI!==a.svg||"innerHTML"in e)e.innerHTML=t;else{r=r||document.createElement("div"),r.innerHTML=""+t+"";for(var n=r.firstChild;n.firstChild;)e.appendChild(n.firstChild)}});i.canUseDOM&&(o=document.createElement("div"),o.innerHTML=" ",""===o.innerHTML&&(l=function(e,t){if(e.parentNode&&e.parentNode.replaceChild(e,e),s.test(t)||"<"===t[0]&&u.test(t)){e.innerHTML=String.fromCharCode(65279)+t;var n=e.firstChild;1===n.data.length?e.removeChild(n):n.deleteData(0,1)}else e.innerHTML=t}),o=null),e.exports=l},,,,,,,,,,,function(e,t){e.exports=function(e,t,n,r){if(!(e instanceof t)||void 0!==r&&r in e)throw TypeError(n+": incorrect invocation!");return e}},function(e,t,n){var r=n(50),o=n(35).document,i=r(o)&&r(o.createElement);e.exports=function(e){return i?o.createElement(e):{}}},function(e,t){e.exports="constructor,hasOwnProperty,isPrototypeOf,propertyIsEnumerable,toLocaleString,toString,valueOf".split(",")},function(e,t,n){var r=n(39)("match");e.exports=function(e){var t=/./;try{"/./"[e](t)}catch(n){try{return t[r]=!1,!"/./"[e](t)}catch(e){}}return!0}},function(e,t,n){var r=n(99),o=n(347),i=n(344),a=n(29),s=n(89),u=n(357),c={},l={};t=e.exports=function(e,t,n,f,p){var d,h,m,g,y=p?function(){return e}:u(e),v=r(n,f,t?2:1),b=0;if("function"!=typeof y)throw TypeError(e+" is not iterable!");if(i(y)){for(d=s(e.length);d>b;b++)if((g=t?v(a(h=e[b])[0],h[1]):v(e[b]))===c||g===l)return g}else for(m=y.call(e);!(h=m.next()).done;)if((g=o(m,v,h.value,t))===c||g===l)return g},t.BREAK=c,t.RETURN=l},function(e,t,n){var r=n(111);e.exports=Object("z").propertyIsEnumerable(0)?Object:function(e){return"String"==r(e)?e.split(""):Object(e)}},function(e,t,n){"use strict";var r=n(195),o=n(6),i=n(129),a=n(113),s=n(72),u=n(194),c=n(348),l=n(150),f=n(148),p=n(39)("iterator"),d=!([].keys&&"next"in[].keys()),h="keys",m="values",g=function(){return this};e.exports=function(e,t,n,y,v,b,_){var w,x,C,T,k,E,S,M,O,N,D,P;if(c(n,t,y),w=function(e){if(!d&&e in k)return k[e];switch(e){case h:case m:return function(){return new n(this,e)}}return function(){return new n(this,e)}},x=t+" Iterator",C=v==m,T=!1,k=e.prototype,E=k[p]||k["@@iterator"]||v&&k[v],S=E||w(v),M=v?C?w("entries"):S:void 0,O="Array"==t?k.entries||E:E, +O&&(P=f(O.call(new e)))!==Object.prototype&&(l(P,x,!0),r||s(P,p)||a(P,p,g)),C&&E&&E.name!==m&&(T=!0,S=function(){return E.call(this)}),r&&!_||!d&&!T&&k[p]||a(k,p,S),u[t]=S,u[x]=g,v)if(N={values:C?S:w(m),keys:b?S:w(h),entries:M},_)for(D in N)D in k||i(k,D,N[D]);else o(o.P+o.F*(d||T),t,N);return N}},function(e,t,n){var r,o=n(39)("iterator"),i=!1;try{r=[7][o](),r.return=function(){i=!0},Array.from(r,function(){throw 2})}catch(e){}e.exports=function(e,t){var n,r,a;if(!t&&!i)return!1;n=!1;try{r=[7],a=r[o](),a.next=function(){return{done:n=!0}},r[o]=function(){return a},e(r)}catch(e){}return n}},function(e,t){var n=Math.expm1;e.exports=!n||n(10)>22025.465794806718||n(10)<22025.465794806718||-2e-17!=n(-2e-17)?function(e){return 0==(e=+e)?e:e>-1e-6&&e<1e-6?e+e*e/2:Math.exp(e)-1}:n},function(e,t){e.exports=Math.sign||function(e){return 0==(e=+e)||e!=e?e:e<0?-1:1}},function(e,t,n){var r=n(152)("meta"),o=n(50),i=n(72),a=n(59).f,s=0,u=Object.isExtensible||function(){return!0},c=!n(58)(function(){return u(Object.preventExtensions({}))}),l=function(e){a(e,r,{value:{i:"O"+ ++s,w:{}}})},f=function(e,t){if(!o(e))return"symbol"==typeof e?e:("string"==typeof e?"S":"P")+e;if(!i(e,r)){if(!u(e))return"F";if(!t)return"E";l(e)}return e[r].i},p=function(e,t){if(!i(e,r)){if(!u(e))return!0;if(!t)return!1;l(e)}return e[r].w},d=function(e){return c&&h.NEED&&u(e)&&!i(e,r)&&l(e),e},h=e.exports={KEY:r,NEED:!1,fastKey:f,getWeak:p,onFreeze:d}},function(e,t,n){var r=n(351),o=n(238).concat("length","prototype");t.f=Object.getOwnPropertyNames||function(e){return r(e,o)}},function(e,t,n){var r=n(129);e.exports=function(e,t,n){for(var o in t)r(e,o,t[o],n);return e}},function(e,t,n){var r=n(50),o=n(29),i=function(e,t){if(o(e),!r(t)&&null!==t)throw TypeError(t+": can't set as prototype!")};e.exports={set:Object.setPrototypeOf||("__proto__"in{}?function(e,t,r){try{r=n(99)(Function.call,n(127).f(Object.prototype,"__proto__").set,2),r(e,[]),t=!(e instanceof Array)}catch(e){t=!0}return function(e,n){return i(e,n),t?e.__proto__=n:r(e,n),e}}({},!1):void 0),check:i}},function(e,t,n){"use strict";var r=n(35),o=n(59),i=n(79),a=n(39)("species");e.exports=function(e){var t=r[e];i&&t&&!t[a]&&o.f(t,a,{configurable:!0,get:function(){return this}})}},function(e,t,n){var r=n(252)("keys"),o=n(152);e.exports=function(e){return r[e]||(r[e]=o(e))}},function(e,t,n){var r=n(35),o="__core-js_shared__",i=r[o]||(r[o]={});e.exports=function(e){return i[e]||(i[e]={})}},function(e,t,n){var r=n(527),o=n(112);e.exports=function(e,t,n){if(r(t))throw TypeError("String#"+n+" doesn't accept regex!");return o(e)+""}},function(e,t){e.exports="\t\n\v\f\r   ᠎              \u2028\u2029\ufeff"},,,,,,function(e,t){"use strict";function n(e,t){return e===t?0!==e||0!==t||1/e==1/t:e!==e&&t!==t}function r(e,t){var r,i,a;if(n(e,t))return!0;if("object"!=typeof e||null===e||"object"!=typeof t||null===t)return!1;if(r=Object.keys(e),i=Object.keys(t),r.length!==i.length)return!1;for(a=0;a0&&void 0!==arguments[0]?arguments[0]:n.props.includeMargin;n.props.shouldMeasure&&(n._node.parentNode||n._setDOMNode(),e=n.getDimensions(n._node,r),t="function"==typeof n.props.children,n._propsToMeasure.some(function(r){if(e[r]!==n._lastDimensions[r])return n.props.onMeasure(e),t&&void 0!==n&&n.setState({dimensions:e}),n._lastDimensions=e,!0}))},n.state={dimensions:{width:0,height:0,top:0,right:0,bottom:0,left:0}},n._node=null,n._propsToMeasure=n._getPropsToMeasure(e),n._lastDimensions={},n}return a(t,e),s(t,[{key:"componentDidMount",value:function(){var e=this;this._setDOMNode(),this.measure(),this.resizeObserver=new h.default(function(){return e.measure()}),this.resizeObserver.observe(this._node)}},{key:"componentWillReceiveProps",value:function(e){var t=(e.config,e.whitelist),n=e.blacklist;this.props.whitelist===t&&this.props.blacklist===n||(this._propsToMeasure=this._getPropsToMeasure({whitelist:t,blacklist:n}))}},{key:"componentWillUnmount",value:function(){this.resizeObserver.disconnect(this._node),this._node=null}},{key:"_setDOMNode",value:function(){this._node=p.default.findDOMNode(this)}},{key:"getDimensions",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:this._node,t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:this.props.includeMargin;return(0,g.default)(e,{margin:t})}},{ +key:"_getPropsToMeasure",value:function(e){var t=e.whitelist,n=e.blacklist;return t.filter(function(e){return n.indexOf(e)<0})}},{key:"render",value:function(){var e=this.props.children;return u.Children.only("function"==typeof e?e(this.state.dimensions):e)}}]),t}(u.Component);y.propTypes={whitelist:l.default.array,blacklist:l.default.array,includeMargin:l.default.bool,useClone:l.default.bool,cloneOptions:l.default.object,shouldMeasure:l.default.bool,onMeasure:l.default.func},y.defaultProps={whitelist:["width","height","top","right","bottom","left"],blacklist:[],includeMargin:!0,useClone:!1,cloneOptions:{},shouldMeasure:!0,onMeasure:function(){return null}},t.default=y,e.exports=t.default},function(t,n){t.exports=e},function(e,t,n){(function(t){"use strict";var r,o,i,a="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};"production"!==t.env.NODE_ENV?(r="function"==typeof Symbol&&Symbol.for&&Symbol.for("react.element")||60103,o=function(e){return"object"===(void 0===e?"undefined":a(e))&&null!==e&&e.$$typeof===r},i=!0,e.exports=n(5)(o,i)):e.exports=n(12)()}).call(t,n(4))},function(e,t){"use strict";function n(){throw Error("setTimeout has not been defined")}function r(){throw Error("clearTimeout has not been defined")}function o(e){if(l===setTimeout)return setTimeout(e,0);if((l===n||!l)&&setTimeout)return l=setTimeout,setTimeout(e,0);try{return l(e,0)}catch(t){try{return l.call(null,e,0)}catch(t){return l.call(this,e,0)}}}function i(e){if(f===clearTimeout)return clearTimeout(e);if((f===r||!f)&&clearTimeout)return f=clearTimeout,clearTimeout(e);try{return f(e)}catch(t){try{return f.call(null,e)}catch(t){return f.call(this,e)}}}function a(){h&&p&&(h=!1,p.length?d=p.concat(d):m=-1,d.length&&s())}function s(){var e,t;if(!h){for(e=o(a),h=!0,t=d.length;t;){for(p=d,d=[];++m1)for(t=1;t1?t-1:0),r=1;r2?n-2:0),i=2;i1&&void 0!==arguments[1]?arguments[1]:{},n=e.getBoundingClientRect(),r=void 0,o=void 0,i=void 0;return t.margin&&(i=(0,a.default)(getComputedStyle(e))),t.margin?(r=i.left+n.width+i.right,o=i.top+n.height+i.bottom):(r=n.width,o=n.height),{width:r,height:o,top:n.top,right:n.right,bottom:n.bottom,left:n.left}}Object.defineProperty(t,"__esModule",{value:!0}),t.default=o;var i=n(16),a=r(i);e.exports=t.default},function(e,t){"use strict";function n(e){return e=e||{},{top:r(e.marginTop),right:r(e.marginRight),bottom:r(e.marginBottom),left:r(e.marginLeft)}}Object.defineProperty(t,"__esModule",{value:!0}),t.default=n;var r=function(e){return parseInt(e)||0};e.exports=t.default}])})},function(e,t,n){"use strict";function r(e,t){return Array.isArray(t)&&(t=t[1]),t?t.nextSibling:e.firstChild}function o(e,t,n){f.insertTreeBefore(e,t,n)}function i(e,t,n){Array.isArray(t)?s(e,t[0],t[1],n):g(e,t,n)}function a(e,t){if(Array.isArray(t)){var n=t[1];t=t[0],u(e,t,n),e.removeChild(n)}e.removeChild(t)}function s(e,t,n,r){for(var o,i=t;;){if(o=i.nextSibling,g(e,i,r),i===n)break;i=o}}function u(e,t,n){for(;;){var r=t.nextSibling;if(r===n)break;e.removeChild(r)}}function c(e,t,n){var r=e.parentNode,o=e.nextSibling;o===t?n&&g(r,document.createTextNode(n),o):n?(m(o,n),u(r,o,t)):u(r,e,t)}var l,f=n(137),p=n(1015),d=(n(32),n(75),n(298)),h=n(225),m=n(458),g=d(function(e,t,n){e.insertBefore(t,n)}),y=p.dangerouslyReplaceNodeWithMarkup;l={dangerouslyReplaceNodeWithMarkup:y,replaceDelimitedText:c,processUpdates:function(e,t){var n,s;for(n=0;n-1||a("96",e),!c.plugins[n]){t.extractEvents||a("97",e),c.plugins[n]=t,r=t.eventTypes;for(i in r)o(r[i],t,i)||a("98",i,e)}}function o(e,t,n){var r,o,s;if(c.eventNameDispatchConfigs.hasOwnProperty(n)&&a("99",n),c.eventNameDispatchConfigs[n]=e,r=e.phasedRegistrationNames){for(o in r)r.hasOwnProperty(o)&&(s=r[o],i(s,t,n));return!0}return!!e.registrationName&&(i(e.registrationName,t,n),!0)}function i(e,t,n){c.registrationNameModules[e]&&a("100",e),c.registrationNameModules[e]=t,c.registrationNameDependencies[e]=t.eventTypes[n].dependencies}var a=n(25),s=(n(17),null),u={},c={plugins:[],eventNameDispatchConfigs:{},registrationNameModules:{},registrationNameDependencies:{},possibleRegistrationNames:null,injectEventPluginOrder:function(e){s&&a("101"),s=Array.prototype.slice.call(e),r()},injectEventPluginsByName:function(e){var t,n,o=!1;for(t in e)e.hasOwnProperty(t)&&(n=e[t],u.hasOwnProperty(t)&&u[t]===n||(u[t]&&a("102",t),u[t]=n,o=!0));o&&r()},getPluginModuleForEvent:function(e){var t,n,r,o=e.dispatchConfig;if(o.registrationName)return c.registrationNameModules[o.registrationName]||null;if(void 0!==o.phasedRegistrationNames){t=o.phasedRegistrationNames;for(n in t)if(t.hasOwnProperty(n)&&(r=c.registrationNameModules[t[n]]))return r}return null},_resetEventPlugins:function(){var e,t,n,r,o;s=null;for(e in u)u.hasOwnProperty(e)&&delete u[e];c.plugins.length=0,t=c.eventNameDispatchConfigs;for(n in t)t.hasOwnProperty(n)&&delete t[n];r=c.registrationNameModules;for(o in r)r.hasOwnProperty(o)&&delete r[o]}};e.exports=c},function(e,t,n){"use strict";function r(e){return"topMouseUp"===e||"topTouchEnd"===e||"topTouchCancel"===e}function o(e){return"topMouseMove"===e||"topTouchMove"===e}function i(e){return"topMouseDown"===e||"topTouchStart"===e}function a(e,t,n,r){var o=e.type||"unknown-event";e.currentTarget=h.getNodeFromInstance(r),t?g.invokeGuardedCallbackWithCatch(o,n,e):g.invokeGuardedCallback(o,n,e),e.currentTarget=null}function s(e,t){var n,r=e._dispatchListeners,o=e._dispatchInstances;if(Array.isArray(r))for(n=0;n0&&n.length<20?t+" (keys: "+n.join(", ")+")":t)}function i(e,t){var n=s.get(e);return n||null}var a=n(25),s=(n(92),n(167)),u=(n(75),n(87)),c=(n(17),n(24),{isMounted:function(e){var t;return!!(t=s.get(e))&&!!t._renderedComponent},enqueueCallback:function(e,t,n){c.validateCallback(t,n);var o=i(e);if(!o)return null;o._pendingCallbacks?o._pendingCallbacks.push(t):o._pendingCallbacks=[t],r(o)},enqueueCallbackInternal:function(e,t){e._pendingCallbacks?e._pendingCallbacks.push(t):e._pendingCallbacks=[t],r(e)},enqueueForceUpdate:function(e){var t=i(e,"forceUpdate");t&&(t._pendingForceUpdate=!0,r(t))},enqueueReplaceState:function(e,t,n){var o=i(e,"replaceState");o&&(o._pendingStateQueue=[t],o._pendingReplaceState=!0,void 0!==n&&null!==n&&(c.validateCallback(n,"replaceState"),o._pendingCallbacks?o._pendingCallbacks.push(n):o._pendingCallbacks=[n]),r(o))},enqueueSetState:function(e,t){var n,o;(n=i(e,"setState"))&&(o=n._pendingStateQueue||(n._pendingStateQueue=[]),o.push(t),r(n))},enqueueElementInternal:function(e,t,n){e._pendingElement=t,e._context=n,r(e)},validateCallback:function(e,t){e&&"function"!=typeof e&&a("122",t,o(e))}});e.exports=c},function(e,t){"use strict";var n=function(e){return"undefined"!=typeof MSApp&&MSApp.execUnsafeLocalFunction?function(t,n,r,o){MSApp.execUnsafeLocalFunction(function(){return e(t,n,r,o)})}:e};e.exports=n},function(e,t){"use strict";function n(e){var t,n=e.keyCode;return"charCode"in e?0===(t=e.charCode)&&13===n&&(t=13):t=n,t>=32||13===t?t:0}e.exports=n},function(e,t){"use strict";function n(e){var t,n=this,r=n.nativeEvent;return r.getModifierState?r.getModifierState(e):!!(t=o[e])&&!!r[t]}function r(e){return n}var o={Alt:"altKey",Control:"ctrlKey",Meta:"metaKey",Shift:"shiftKey"};e.exports=r},function(e,t){"use strict";function n(e){var t=e.target||e.srcElement||window;return t.correspondingUseElement&&(t=t.correspondingUseElement),3===t.nodeType?t.parentNode:t}e.exports=n},function(e,t,n){"use strict";function r(e,t){var n,r,a;return!(!i.canUseDOM||t&&!("addEventListener"in document))&&(n="on"+e,r=n in document,r||(a=document.createElement("div"),a.setAttribute(n,"return;"),r="function"==typeof a[n]),!r&&o&&"wheel"===e&&(r=document.implementation.hasFeature("Events.wheel","3.0")),r)}var o,i=n(60);i.canUseDOM&&(o=document.implementation&&document.implementation.hasFeature&&!0!==document.implementation.hasFeature("","")),e.exports=r},function(e,t){"use strict";function n(e,t){var n,r,o=null===e||!1===e,i=null===t||!1===t;return o||i?o===i:(n=typeof e,r=typeof t,"string"===n||"number"===n?"string"===r||"number"===r:"object"===r&&e.type===t.type&&e.key===t.key)}e.exports=n},function(e,t,n){"use strict";var r=(n(30),n(66)),o=(n(24),r);e.exports=o},,,,,,,,,,,,,,,,,function(e,t,n){"use strict";function r(){return new Promise(function(e){n.e(0,function(t){n(514),e()})})}Object.defineProperty(t,"__esModule",{value:!0}),n(22), +t.lazyVelocity=r,$.fn.velocity=function(){var e,t=this,n=[];for(e=0;e0)}function i(e){return Math.round(1e10*e)/1e10}function a(e,t){var n=e/t,r=Math.floor(n),o=n-r;return o>2e-10?i(o>.5?(r+1)*t:r*t):e}Object.defineProperty(t,"__esModule",{value:!0}),t.isNumber=n,t.isInteger=r,t.isNaN=o,t.fixComputationError=i,t.alignTo=a},,function(e,t,n){var r=n(88),o=n(89),i=n(198);e.exports=function(e){return function(t,n,a){var s,u=r(t),c=o(u.length),l=i(a,c);if(e&&n!=n){for(;c>l;)if((s=u[l++])!=s)return!0}else for(;c>l;l++)if((e||l in u)&&u[l]===n)return e||l||0;return!e&&-1}}},function(e,t,n){var r=n(99),o=n(241),i=n(130),a=n(89),s=n(521);e.exports=function(e,t){var n=1==e,u=2==e,c=3==e,l=4==e,f=6==e,p=5==e||f,d=t||s;return function(t,s,h){for(var m,g,y=i(t),v=o(y),b=r(s,h,3),_=a(v.length),w=0,x=n?d(t,_):u?d(t,0):void 0;_>w;w++)if((p||w in v)&&(m=v[w],g=b(m,w,y),e))if(n)x[w]=g;else if(g)switch(e){case 3:return!0;case 5:return m;case 6:return w;case 2:x.push(m)}else if(l)return!1;return f?-1:c||l?l:x}}},function(e,t,n){var r=n(111),o=n(39)("toStringTag"),i="Arguments"==r(function(){return arguments}()),a=function(e,t){try{return e[t]}catch(e){}};e.exports=function(e){var t,n,s;return void 0===e?"Undefined":null===e?"Null":"string"==typeof(n=a(t=Object(e),o))?n:i?r(t):"Object"==(s=r(t))&&"function"==typeof t.callee?"Arguments":s}},function(e,t,n){"use strict";var r=n(59).f,o=n(196),i=n(248),a=n(99),s=n(236),u=n(112),c=n(240),l=n(242),f=n(349),p=n(250),d=n(79),h=n(246).fastKey,m=d?"_s":"size",g=function(e,t){var n,r=h(t);if("F"!==r)return e._i[r];for(n=e._f;n;n=n.n)if(n.k==t)return n};e.exports={getConstructor:function(e,t,n,l){var f=e(function(e,r){s(e,f,t,"_i"),e._i=o(null),e._f=void 0,e._l=void 0,e[m]=0,void 0!=r&&c(r,n,e[l],e)});return i(f.prototype,{clear:function(){for(var e=this,t=e._i,n=e._f;n;n=n.n)n.r=!0,n.p&&(n.p=n.p.n=void 0),delete t[n.i];e._f=e._l=void 0,e[m]=0},delete:function(e){var t,n,r=this,o=g(r,e);return o&&(t=o.n,n=o.p,delete r._i[o.i],o.r=!0,n&&(n.n=t),t&&(t.p=n),r._f==o&&(r._f=t),r._l==o&&(r._l=n),r[m]--),!!o},forEach:function(e){s(this,f,"forEach");for(var t,n=a(e,arguments.length>1?arguments[1]:void 0,3);t=t?t.n:this._f;)for(n(t.v,t.k,this);t&&t.r;)t=t.p},has:function(e){return!!g(this,e)}}),d&&r(f.prototype,"size",{get:function(){return u(this[m])}}),f},def:function(e,t,n){var r,o,i=g(e,t);return i?i.v=n:(e._l=i={i:o=h(t,!0),k:t,v:n,p:r=e._l,n:void 0,r:!1},e._f||(e._f=i),r&&(r.n=i),e[m]++,"F"!==o&&(e._i[o]=i)),e},getEntry:g,setStrong:function(e,t,n){l(e,t,function(e,t){this._t=e,this._k=t,this._l=void 0},function(){for(var e=this,t=e._k,n=e._l;n&&n.r;)n=n.p;return e._t&&(e._l=n=n?n.n:e._t._f)?"keys"==t?f(0,n.k):"values"==t?f(0,n.v):f(0,[n.k,n.v]):(e._t=void 0,f(1))},n?"entries":"values",!n,!0),p(t)}}},function(e,t,n){"use strict" +;var r=n(35),o=n(6),i=n(129),a=n(248),s=n(246),u=n(240),c=n(236),l=n(50),f=n(58),p=n(243),d=n(150),h=n(526);e.exports=function(e,t,n,m,g,y){var v,b,_,w,x,C=r[e],T=C,k=g?"set":"add",E=T&&T.prototype,S={},M=function(e){var t=E[e];i(E,e,"delete"==e?function(e){return!(y&&!l(e))&&t.call(this,0===e?0:e)}:"has"==e?function(e){return!(y&&!l(e))&&t.call(this,0===e?0:e)}:"get"==e?function(e){return y&&!l(e)?void 0:t.call(this,0===e?0:e)}:"add"==e?function(e){return t.call(this,0===e?0:e),this}:function(e,n){return t.call(this,0===e?0:e,n),this})};return"function"==typeof T&&(y||E.forEach&&!f(function(){(new T).entries().next()}))?(v=new T,b=v[k](y?{}:-0,1)!=v,_=f(function(){v.has(1)}),w=p(function(e){new T(e)}),x=!y&&f(function(){for(var e=new T,t=5;t--;)e[k](t,t);return!e.has(-0)}),w||(T=t(function(t,n){c(t,T,e);var r=h(new C,t,T);return void 0!=n&&u(n,g,r[k],r),r}),T.prototype=E,E.constructor=T),(_||x)&&(M("delete"),M("has"),g&&M("get")),(x||b)&&M(k),y&&E.clear&&delete E.clear):(T=m.getConstructor(t,e,g,k),a(T.prototype,n),s.NEED=!0),d(T,e),S[e]=T,o(o.G+o.W+o.F*(T!=C),S),y||m.setStrong(T,e,g),T}},function(e,t,n){"use strict";var r=n(59),o=n(114);e.exports=function(e,t,n){t in e?r.f(e,t,o(0,n)):e[t]=n}},function(e,t,n){e.exports=n(35).document&&document.documentElement},function(e,t,n){e.exports=!n(79)&&!n(58)(function(){return 7!=Object.defineProperty(n(237)("div"),"a",{get:function(){return 7}}).a})},function(e,t){e.exports=function(e,t,n){var r=void 0===n;switch(t.length){case 0:return r?e():e.call(n);case 1:return r?e(t[0]):e.call(n,t[0]);case 2:return r?e(t[0],t[1]):e.call(n,t[0],t[1]);case 3:return r?e(t[0],t[1],t[2]):e.call(n,t[0],t[1],t[2]);case 4:return r?e(t[0],t[1],t[2],t[3]):e.call(n,t[0],t[1],t[2],t[3])}return e.apply(n,t)}},function(e,t,n){var r=n(194),o=n(39)("iterator"),i=Array.prototype;e.exports=function(e){return void 0!==e&&(r.Array===e||i[o]===e)}},function(e,t,n){var r=n(111);e.exports=Array.isArray||function(e){return"Array"==r(e)}},function(e,t,n){var r=n(50),o=Math.floor;e.exports=function(e){return!r(e)&&isFinite(e)&&o(e)===e}},function(e,t,n){var r=n(29);e.exports=function(e,t,n,o){try{return o?t(r(n)[0],n[1]):t(n)}catch(t){var i=e.return;throw void 0!==i&&r(i.call(e)),t}}},function(e,t,n){"use strict";var r=n(196),o=n(114),i=n(150),a={};n(113)(a,n(39)("iterator"),function(){return this}),e.exports=function(e,t,n){e.prototype=r(a,{next:o(1,n)}),i(e,t+" Iterator")}},function(e,t){e.exports=function(e,t){return{value:t,done:!!e}}},function(e,t){e.exports=Math.log1p||function(e){return(e=+e)>-1e-8&&e<1e-8?e-e*e/2:Math.log(1+e)}},function(e,t,n){var r=n(72),o=n(88),i=n(335)(!1),a=n(251)("IE_PROTO");e.exports=function(e,t){var n,s=o(e),u=0,c=[];for(n in s)n!=a&&r(s,n)&&c.push(n);for(;t.length>u;)r(s,n=t[u++])&&(~i(c,n)||c.push(n));return c}},function(e,t,n){var r=n(128),o=n(88),i=n(149).f;e.exports=function(e){return function(t){for(var n,a=o(t),s=r(a),u=s.length,c=0,l=[];u>c;)i.call(a,n=s[c++])&&l.push(e?[n,a[n]]:a[n]);return l}}},function(e,t,n){var r=n(199),o=n(112);e.exports=function(e){ +return function(t,n){var i,a,s=o(t)+"",u=r(n),c=s.length;return u<0||u>=c?e?"":void 0:(i=s.charCodeAt(u),i<55296||i>56319||u+1===c||(a=s.charCodeAt(u+1))<56320||a>57343?e?s.charAt(u):i:e?s.slice(u,u+2):a-56320+(i-55296<<10)+65536)}}},function(e,t,n){var r=n(6),o=n(112),i=n(58),a=n(254),s="["+a+"]",u="​…",c=RegExp("^"+s+s+"*"),l=RegExp(s+s+"*$"),f=function(e,t,n){var o={},s=i(function(){return!!a[e]()||u[e]()!=u}),c=o[e]=s?t(p):a[e];n&&(o[n]=c),r(r.P+r.F*s,"String",o)},p=f.trim=function(e,t){return e=o(e)+"",1&t&&(e=e.replace(c,"")),2&t&&(e=e.replace(l,"")),e};e.exports=f},function(e,t,n){var r,o,i,a=n(99),s=n(343),u=n(341),c=n(237),l=n(35),f=l.process,p=l.setImmediate,d=l.clearImmediate,h=l.MessageChannel,m=0,g={},y="onreadystatechange",v=function(){var e,t=+this;g.hasOwnProperty(t)&&(e=g[t],delete g[t],e())},b=function(e){v.call(e.data)};p&&d||(p=function(e){for(var t=[],n=1;arguments.length>n;)t.push(arguments[n++]);return g[++m]=function(){s("function"==typeof e?e:Function(e),t)},r(m),m},d=function(e){delete g[e]},"process"==n(111)(f)?r=function(e){f.nextTick(a(v,e,1))}:h?(o=new h,i=o.port2,o.port1.onmessage=b,r=a(i.postMessage,i,1)):l.addEventListener&&"function"==typeof postMessage&&!l.importScripts?(r=function(e){l.postMessage(e+"","*")},l.addEventListener("message",b,!1)):r=y in c("script")?function(e){u.appendChild(c("script"))[y]=function(){u.removeChild(this),v.call(e)}}:function(e){setTimeout(a(v,e,1),0)}),e.exports={set:p,clear:d}},function(e,t,n){t.f=n(39)},function(e,t,n){var r=n(337),o=n(39)("iterator"),i=n(194);e.exports=n(126).getIteratorMethod=function(e){if(void 0!=e)return e[o]||e["@@iterator"]||i[r(e)]}},function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=!("undefined"==typeof window||!window.document||!window.document.createElement),e.exports=t.default},,,function(e,t,n){"use strict";var r=n(66),o={listen:function(e,t,n){return e.addEventListener?(e.addEventListener(t,n,!1),{remove:function(){e.removeEventListener(t,n,!1)}}):e.attachEvent?(e.attachEvent("on"+t,n),{remove:function(){e.detachEvent("on"+t,n)}}):void 0},capture:function(e,t,n){return e.addEventListener?(e.addEventListener(t,n,!0),{remove:function(){e.removeEventListener(t,n,!0)}}):{remove:r}},registerDefault:function(){}};e.exports=o},function(e,t){"use strict";function n(e){try{e.focus()}catch(e){}}e.exports=n},function(e,t){"use strict";function n(e){if(void 0===(e=e||("undefined"!=typeof document?document:void 0)))return null;try{return e.activeElement||e.body}catch(t){return e.body}}e.exports=n},,,,,,,,,,,,function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}function o(e){return e.interpolation={unescapeSuffix:"HTML"},e.interpolation.prefix=e.interpolationPrefix||"__",e.interpolation.suffix=e.interpolationSuffix||"__",e.interpolation.escapeValue=e.escapeInterpolation||!1,e.interpolation.nestingPrefix=e.reusePrefix||"$t(",e.interpolation.nestingSuffix=e.reuseSuffix||")",e}function i(e){return e.resStore&&(e.resources=e.resStore), +e.ns&&e.ns.defaultNs?(e.defaultNS=e.ns.defaultNs,e.ns=e.ns.namespaces):e.defaultNS=e.ns||"translation",e.fallbackToDefaultNS&&e.defaultNS&&(e.fallbackNS=e.defaultNS),e.saveMissing=e.sendMissing,e.saveMissingTo=e.sendMissingTo||"current",e.returnNull=!e.fallbackOnNull,e.returnEmptyString=!e.fallbackOnEmpty,e.returnObjects=e.returnObjectTrees,e.joinArrays="\n",e.returnedObjectHandler=e.objectTreeKeyHandler,e.parseMissingKeyHandler=e.parseMissingKey,e.appendNamespaceToMissingKey=!0,e.nsSeparator=e.nsseparator,e.keySeparator=e.keyseparator,"sprintf"===e.shortcutFunction&&(e.overloadTranslationOptionHandler=function(e){var t,n=[];for(t=1;t1&&~~(e/10)%10!=1}function n(e,n,r){var o=e+" ";switch(r){case"m":return n?"minuta":"minutę";case"mm":return o+(t(e)?"minuty":"minut");case"h":return n?"godzina":"godzinę";case"hh":return o+(t(e)?"godziny":"godzin");case"MM":return o+(t(e)?"miesiące":"miesięcy");case"yy":return o+(t(e)?"lata":"lat")}}var r="styczeń_luty_marzec_kwiecień_maj_czerwiec_lipiec_sierpień_wrzesień_październik_listopad_grudzień".split("_"),o="stycznia_lutego_marca_kwietnia_maja_czerwca_lipca_sierpnia_września_października_listopada_grudnia".split("_");return e.defineLocale("pl",{months:function(e,t){return""===t?"("+o[e.month()]+"|"+r[e.month()]+")":/D MMMM/.test(t)?o[e.month()]:r[e.month()]},monthsShort:"sty_lut_mar_kwi_maj_cze_lip_sie_wrz_paź_lis_gru".split("_"), +weekdays:"niedziela_poniedziałek_wtorek_środa_czwartek_piątek_sobota".split("_"),weekdaysShort:"nie_pon_wt_śr_czw_pt_sb".split("_"),weekdaysMin:"N_Pn_Wt_Śr_Cz_Pt_So".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[Dziś o] LT",nextDay:"[Jutro o] LT",nextWeek:"[W] dddd [o] LT",lastDay:"[Wczoraj o] LT",lastWeek:function(){switch(this.day()){case 0:return"[W zeszłą niedzielę o] LT";case 3:return"[W zeszłą środę o] LT";case 6:return"[W zeszłą sobotę o] LT";default:return"[W zeszły] dddd [o] LT"}},sameElse:"L"},relativeTime:{future:"za %s",past:"%s temu",s:"kilka sekund",m:n,mm:n,h:n,hh:n,d:"1 dzień",dd:"%d dni",M:"miesiąc",MM:n,y:"rok",yy:n},ordinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}})})},function(e,t,n){!function(e,t){t(n(36))}(0,function(e){"use strict";return e.defineLocale("pt-br",{months:"Janeiro_Fevereiro_Março_Abril_Maio_Junho_Julho_Agosto_Setembro_Outubro_Novembro_Dezembro".split("_"),monthsShort:"Jan_Fev_Mar_Abr_Mai_Jun_Jul_Ago_Set_Out_Nov_Dez".split("_"),weekdays:"Domingo_Segunda-Feira_Terça-Feira_Quarta-Feira_Quinta-Feira_Sexta-Feira_Sábado".split("_"),weekdaysShort:"Dom_Seg_Ter_Qua_Qui_Sex_Sáb".split("_"),weekdaysMin:"Dom_2ª_3ª_4ª_5ª_6ª_Sáb".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D [de] MMMM [de] YYYY",LLL:"D [de] MMMM [de] YYYY [às] HH:mm",LLLL:"dddd, D [de] MMMM [de] YYYY [às] HH:mm"},calendar:{sameDay:"[Hoje às] LT",nextDay:"[Amanhã às] LT",nextWeek:"dddd [às] LT",lastDay:"[Ontem às] LT",lastWeek:function(){return 0===this.day()||6===this.day()?"[Último] dddd [às] LT":"[Última] dddd [às] LT"},sameElse:"L"},relativeTime:{future:"em %s",past:"%s atrás",s:"poucos segundos",m:"um minuto",mm:"%d minutos",h:"uma hora",hh:"%d horas",d:"um dia",dd:"%d dias",M:"um mês",MM:"%d meses",y:"um ano",yy:"%d anos"},ordinalParse:/\d{1,2}º/,ordinal:"%dº"})})},function(e,t,n){!function(e,t){t(n(36))}(0,function(e){"use strict";return e.defineLocale("pt",{months:"Janeiro_Fevereiro_Março_Abril_Maio_Junho_Julho_Agosto_Setembro_Outubro_Novembro_Dezembro".split("_"),monthsShort:"Jan_Fev_Mar_Abr_Mai_Jun_Jul_Ago_Set_Out_Nov_Dez".split("_"),weekdays:"Domingo_Segunda-Feira_Terça-Feira_Quarta-Feira_Quinta-Feira_Sexta-Feira_Sábado".split("_"),weekdaysShort:"Dom_Seg_Ter_Qua_Qui_Sex_Sáb".split("_"),weekdaysMin:"Dom_2ª_3ª_4ª_5ª_6ª_Sáb".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D [de] MMMM [de] YYYY",LLL:"D [de] MMMM [de] YYYY HH:mm",LLLL:"dddd, D [de] MMMM [de] YYYY HH:mm"},calendar:{sameDay:"[Hoje às] LT",nextDay:"[Amanhã às] LT",nextWeek:"dddd [às] LT",lastDay:"[Ontem às] LT",lastWeek:function(){return 0===this.day()||6===this.day()?"[Último] dddd [às] LT":"[Última] dddd [às] LT"},sameElse:"L"},relativeTime:{future:"em %s",past:"há %s",s:"segundos",m:"um minuto",mm:"%d minutos",h:"uma hora",hh:"%d horas",d:"um dia",dd:"%d dias",M:"um mês",MM:"%d meses",y:"um ano",yy:"%d anos"},ordinalParse:/\d{1,2}º/,ordinal:"%dº",week:{dow:1,doy:4}})}) +},function(e,t,n){!function(e,t){t(n(36))}(0,function(e){"use strict";function t(e,t){var n=e.split("_");return t%10==1&&t%100!=11?n[0]:t%10>=2&&t%10<=4&&(t%100<10||t%100>=20)?n[1]:n[2]}function n(e,n,r){var o={mm:n?"минута_минуты_минут":"минуту_минуты_минут",hh:"час_часа_часов",dd:"день_дня_дней",MM:"месяц_месяца_месяцев",yy:"год_года_лет"};return"m"===r?n?"минута":"минуту":e+" "+t(o[r],+e)}function r(e,t){return{nominative:"январь_февраль_март_апрель_май_июнь_июль_август_сентябрь_октябрь_ноябрь_декабрь".split("_"),accusative:"января_февраля_марта_апреля_мая_июня_июля_августа_сентября_октября_ноября_декабря".split("_")}[/D[oD]?(\[[^\[\]]*\]|\s+)+MMMM?/.test(t)?"accusative":"nominative"][e.month()]}function o(e,t){return{nominative:"янв_фев_март_апр_май_июнь_июль_авг_сен_окт_ноя_дек".split("_"),accusative:"янв_фев_мар_апр_мая_июня_июля_авг_сен_окт_ноя_дек".split("_")}[/D[oD]?(\[[^\[\]]*\]|\s+)+MMMM?/.test(t)?"accusative":"nominative"][e.month()]}function i(e,t){return{nominative:"воскресенье_понедельник_вторник_среда_четверг_пятница_суббота".split("_"),accusative:"воскресенье_понедельник_вторник_среду_четверг_пятницу_субботу".split("_")}[/\[ ?[Вв] ?(?:прошлую|следующую|эту)? ?\] ?dddd/.test(t)?"accusative":"nominative"][e.day()]}return e.defineLocale("ru",{months:r,monthsShort:o,weekdays:i,weekdaysShort:"вс_пн_вт_ср_чт_пт_сб".split("_"),weekdaysMin:"вс_пн_вт_ср_чт_пт_сб".split("_"),monthsParse:[/^янв/i,/^фев/i,/^мар/i,/^апр/i,/^ма[й|я]/i,/^июн/i,/^июл/i,/^авг/i,/^сен/i,/^окт/i,/^ноя/i,/^дек/i],longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY г.",LLL:"D MMMM YYYY г., HH:mm",LLLL:"dddd, D MMMM YYYY г., HH:mm"},calendar:{sameDay:"[Сегодня в] LT",nextDay:"[Завтра в] LT",lastDay:"[Вчера в] LT",nextWeek:function(){return 2===this.day()?"[Во] dddd [в] LT":"[В] dddd [в] LT"},lastWeek:function(e){if(e.week()===this.week())return 2===this.day()?"[Во] dddd [в] LT":"[В] dddd [в] LT";switch(this.day()){case 0:return"[В прошлое] dddd [в] LT";case 1:case 2:case 4:return"[В прошлый] dddd [в] LT";case 3:case 5:case 6:return"[В прошлую] dddd [в] LT"}},sameElse:"L"},relativeTime:{future:"через %s",past:"%s назад",s:"несколько секунд",m:n,mm:n,h:"час",hh:n,d:"день",dd:n,M:"месяц",MM:n,y:"год",yy:n},meridiemParse:/ночи|утра|дня|вечера/i,isPM:function(e){return/^(дня|вечера)$/.test(e)},meridiem:function(e,t,n){return e<4?"ночи":e<12?"утра":e<17?"дня":"вечера"},ordinalParse:/\d{1,2}-(й|го|я)/,ordinal:function(e,t){switch(t){case"M":case"d":case"DDD":return e+"-й";case"D":return e+"-го";case"w":case"W":return e+"-я";default:return e}},week:{dow:1,doy:7}})})},function(e,t,n){!function(e,t){t(n(36))}(0,function(e){"use strict";var t={1:"'inci",5:"'inci",8:"'inci",70:"'inci",80:"'inci",2:"'nci",7:"'nci",20:"'nci",50:"'nci",3:"'üncü",4:"'üncü",100:"'üncü",6:"'ncı",9:"'uncu",10:"'uncu",30:"'uncu",60:"'ıncı",90:"'ıncı"};return e.defineLocale("tr",{months:"Ocak_Şubat_Mart_Nisan_Mayıs_Haziran_Temmuz_Ağustos_Eylül_Ekim_Kasım_Aralık".split("_"),monthsShort:"Oca_Şub_Mar_Nis_May_Haz_Tem_Ağu_Eyl_Eki_Kas_Ara".split("_"), +weekdays:"Pazar_Pazartesi_Salı_Çarşamba_Perşembe_Cuma_Cumartesi".split("_"),weekdaysShort:"Paz_Pts_Sal_Çar_Per_Cum_Cts".split("_"),weekdaysMin:"Pz_Pt_Sa_Ça_Pe_Cu_Ct".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[bugün saat] LT",nextDay:"[yarın saat] LT",nextWeek:"[haftaya] dddd [saat] LT",lastDay:"[dün] LT",lastWeek:"[geçen hafta] dddd [saat] LT",sameElse:"L"},relativeTime:{future:"%s sonra",past:"%s önce",s:"birkaç saniye",m:"bir dakika",mm:"%d dakika",h:"bir saat",hh:"%d saat",d:"bir gün",dd:"%d gün",M:"bir ay",MM:"%d ay",y:"bir yıl",yy:"%d yıl"},ordinalParse:/\d{1,2}'(inci|nci|üncü|ncı|uncu|ıncı)/,ordinal:function(e){if(0===e)return e+"'ıncı";var n=e%10,r=e%100-n,o=e>=100?100:null;return e+(t[n]||t[r]||t[o])},week:{dow:1,doy:7}})})},,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,function(e,t){"use strict";!function(e){function t(t){var n=t||window.event,r=[].slice.call(arguments,1),o=0,i=0,a=0;return t=e.event.fix(n),t.type="mousewheel",n.wheelDelta&&(o=n.wheelDelta/120),n.detail&&(o=-n.detail/3),a=o,void 0!==n.axis&&n.axis===n.HORIZONTAL_AXIS&&(a=0,i=-1*o),void 0!==n.wheelDeltaY&&(a=n.wheelDeltaY/120),void 0!==n.wheelDeltaX&&(i=-1*n.wheelDeltaX/120),r.unshift(t,o,i,a),(e.event.dispatch||e.event.handle).apply(this,r)}var n,r=["wheel","mousewheel","DOMMouseScroll","MozMousePixelScroll"],o=["mousewheel","DomMouseScroll","MozMousePixelScroll"];if(e.event.fixHooks)for(n=r.length;n;)e.event.fixHooks[r[--n]]=e.event.mouseHooks;e.event.special.mousewheel={setup:function(){if(this.addEventListener)for(var e=o.length;e;)this.addEventListener(o[--e],t,!1);else this.onmousewheel=t},teardown:function(){if(this.removeEventListener)for(var e=o.length;e;)this.removeEventListener(o[--e],t,!1);else this.onmousewheel=null}},e.fn.extend({mousewheel:function(e){return e?this.bind("mousewheel",e):this.trigger("mousewheel")},unmousewheel:function(e){return this.unbind("mousewheel",e)}})}(jQuery)},function(e,t,n){"use strict";var r=n(53),o=r.rgba,i=r.areEqualRgb,a=r.areEqualRgba,s=r.normalizeHue,u=r.normalizeHsvSaturation,c=r.normalizeValue,l=r.hsv,f=r.rgbToHsv,p=r.hsvToRgb,d=r.rgbToString,h=r.rgbaToString,m=r.parseRgb,g=r.parseRgba,y=n(708);!function(e){function t(e){return""===e?e:h(g(e))}function n(e){e&&(e.join||(e=e?(""+e).split(","):[]),b=e)}function r(w){function x(t){var n=!1,r=m(t);return e.each(b,function(e,t){if(i(m(t),r))return n=!0,!1}),!n&&(b=[d(r)].concat(b.slice(0,v-1)),!0)}function C(t,n,r){var i=e(this);t=h(o(m(t),n)),T.call(this,t),i.removeData("tvcolorpicker").removeData("tvcolorpicker-custom-color"),r&&(O(),i.blur())}function T(t){var n=e(this);n.val(t),n.change(),t?n.trigger("pick-color",t):n.trigger("pick-transparent"),k.call(this,t)}function k(t){if(""===t)return void e(this).addClass("tvcolorpicker-gradient-widget");e(this).removeClass("tvcolorpicker-gradient-widget"),e(this).css({backgroundColor:t,color:t})}function E(t,n){var r,o,a,s,u,c;return n=n||{},r=this,o=e(r).val().toLowerCase(), +a=document.createElement("table"),s=document.createElement("tbody"),a.appendChild(s),c=0,e.each(t,function(t,a){var l,f;c++,t%v==0&&(u=e("
").appendTo(s)),l=e('').appendTo(u),f=e('
').appendTo(l).find(".tvcolorpicker-swatch").data("color",a),n.addClass&&f.addClass(n.addClass),a&&(a=a.toLowerCase(),o&&i(m(o),m(a))&&f.addClass("active"),f.css({backgroundColor:a}).data("color",a),f.bind("click",function(){C.call(r,a,N.val(),!0)}))}),e(a).addClass("tvcolorpicker-table"),c?a:e()}function S(t,n,r){var o,i=e(t).offset(),a={left:e(document).scrollLeft(),top:e(document).scrollTop()},s={width:e(t).outerWidth(),height:e(t).outerHeight()},u={width:e(window).width(),height:e(window).height()},c={width:e(n).outerWidth(),height:e(n).outerHeight()};switch("function"==typeof r.direction?r.direction():r.direction){default:case"down":o={top:i.top+s.height+r.offset,left:i.left+r.drift};break;case"right":o={top:i.top+r.drift,left:i.left+s.width+r.offset}}o.top+c.height>u.height+a.top&&(o.top=u.height-c.height+a.top),i.left+c.width>u.width&&(o.left=u.width-c.width),o.left+="px",o.top+="px",n.css(o)}function M(t){function n(e){var t=e.originalEvent,n=e.offsetX||e.layerX||t&&(t.offsetX||t.layerX)||0,r=e.offsetY||e.layerY||t&&(t.offsetY||t.layerY)||0;D.css({left:n+"px",top:r+"px"}),W[0]=s(n/F),W[1]=u(1-r/R),L.css({backgroundColor:d(p(l(W[0],W[1],1)))}),x()}function r(t){1==t.which&&(U=!1,q.is(".opened")&&e(V).get(0).focus())}function i(t){var n=t.pageY,r=e(j),o=r.offset().top,i=n-o;return i>r.height()?r.height():i<0?0:i}function v(e){var t=i(e);I.css({top:t+"px"}),W[2]=c(1-Math.max(0,Math.min(t,R))/R),x()}function w(t){1==t.which&&(H=!1,e(document).unbind("mouseup",w),q.is(".opened")&&e(V).get(0).focus())}function x(){var e,t;Y&&(Y=!1,q.find(".tvcolorpicker-swatch.active").removeClass("active")),e=o(p(W),N.val()),a(g(V.val().toUpperCase()),e)||(t=h(e),V.data("tvcolorpicker-custom-color",t),T.call(V,t))}var k,M,O,D,P,A,L,I,j,R,F,U,H,Y,W,B=!1,V=e(this),q=e('
'),z=e('
').appendTo(q);return z.append(E.call(this,["rgb(0, 0, 0)","rgb(66, 66, 66)","rgb(101, 101, 101)","rgb(152, 152, 152)","rgb(182, 182, 182)","rgb(203, 203, 203)","rgb(216, 216, 216)","rgb(238, 238, 238)","rgb(242, 242, 242)","rgb(255, 255, 255)"])),z.append(E.call(this,["rgb(151, 0, 0)","rgb(255, 0, 0)","rgb(255, 152, 0)","rgb(255, 255, 0)","rgb(0, 255, 0)","rgb(0, 255, 255)","rgb(73, 133, 231)","rgb(0, 0, 255)","rgb(152, 0, 255)","rgb(255, 0, 255)"])), +z.append(E.call(this,["rgb(230, 184, 175)","rgb(244, 204, 204)","rgb(252, 229, 205)","rgb(255, 242, 204)","rgb(217, 234, 211)","rgb(208, 224, 227)","rgb(201, 218, 248)","rgb(207, 226, 243)","rgb(217, 210, 233)","rgb(234, 209, 220)","rgb(221, 126, 107)","rgb(234, 153, 153)","rgb(249, 203, 156)","rgb(255, 229, 153)","rgb(182, 215, 168)","rgb(162, 196, 201)","rgb(164, 194, 244)","rgb(159, 197, 232)","rgb(180, 167, 214)","rgb(213, 166, 189)","rgb(204, 65, 37)","rgb(224, 102, 102)","rgb(246, 178, 107)","rgb(255, 217, 102)","rgb(147, 196, 125)","rgb(118, 165, 175)","rgb(109, 158, 235)","rgb(111, 168, 220)","rgb(142, 124, 195)","rgb(194, 123, 160)","rgb(166, 28, 0)","rgb(204, 0, 0)","rgb(230, 145, 56)","rgb(241, 194, 50)","rgb(106, 168, 79)","rgb(69, 129, 142)","rgb(60, 120, 216)","rgb(61, 133, 198)","rgb(103, 78, 167)","rgb(166, 77, 121)","rgb(133, 32, 12)","rgb(153, 0, 0)","rgb(180, 95, 6)","rgb(191, 144, 0)","rgb(56, 118, 29)","rgb(19, 79, 92)","rgb(17, 85, 204)","rgb(11, 83, 148)","rgb(53, 28, 117)","rgb(116, 27, 71)","rgb(91, 15, 0)","rgb(102, 0, 0)","rgb(120, 63, 4)","rgb(127, 96, 0)","rgb(39, 78, 19)","rgb(12, 52, 61)","rgb(28, 69, 135)","rgb(7, 55, 99)","rgb(32, 18, 77)","rgb(76, 17, 48)"])),k=e('
').css({display:"none"}).appendTo(q),M=e('
').appendTo(k),O=e('
').appendTo(M),D=e('
').appendTo(O),P=e('
').appendTo(O),A=e('
').appendTo(M),L=e('
').appendTo(A),I=e('
').appendTo(L),j=e('
').appendTo(L),N=y(e(this),t.hideTransparency),N.initEvents(),N.updateColor(),N.$el.appendTo(q),N.val(g(V.val()||_)[3]),R=O.height(),F=O.width(),U=!1,H=!1,Y=!0,W=[0,0,.5],P.bind("mousedown",function(t){1==t.which&&(U=!0,e(document).bind("mouseup",r),n(t),t.preventDefault())}),P.bind("mousemove",function(e){U&&(n(e),e.preventDefault())}),e(N).on("change",function(){if(B)return void x();C.call(this,e(this).val()||_,N.val())}.bind(this)),e(N).on("afterChange",function(){e(this).focus()}.bind(this)),A.bind("mousedown",function(t){1==t.which&&(H=!0,e(document).bind("mouseup",w),v(t),t.preventDefault())}),e(document).bind("mousemove",function(e){H&&(v(e),e.preventDefault())}),e(''+window.t("Custom color...")+"").appendTo(q).bind("click",function(){var t,n=e(this).is(".active");n||k.css({minWidth:z.width()+"px",minHeight:z.height()+"px"}),e(this)[n?"removeClass":"addClass"]("active"),B=e(this).is(".active"),k.css({display:n?"none":"block"}),z.css({display:n?"block":"none"}),n?V.removeData("tvcolorpicker-custom-color"):(R=O.height(),F=O.width(),t=m(V.val()||_),W=f(t),D.css({left:~~(W[0]*F)+"px",top:~~((1-W[1])*R)+"px"}),I.css({top:~~((1-W[2])*R)+"px"}),L.css({backgroundColor:d(p(l(W[0],W[1],1)))}))}),q.append(e(E.call(this,b,{addClass:"tvcolorpicker-user" +})).addClass("tvcolorpicker-user-swatches")),e(document.body).append(q),S(V,q,t),q}function O(){e(".tvcolorpicker-popup").removeClass("opened").remove(),e(N).off("change"),e(N).off("afterChange"),e(D).data("tvcolorpicker",null),e(D).each(function(){var t,n=e(this).data("tvcolorpicker-custom-color");n&&(x(n)&&e(this).trigger("customcolorchange",[b]),e(this).data("tvcolorpicker-custom-color",null)),t=e(this).data("tvcolorpicker-previous-color"),t&&t!=e(this).val()&&e(this).trigger("change"),e(this).removeData("tvcolorpicker-previous-color")})}var N,D;return w=e.extend({},r.options,w||{}),D=this,w&&"customColors"in w&&n(w.customColors),this.each(function(){function n(){var e=t(a.val());k.call(a,e)}var r,o,i,a=e(this);a.val(t(a.val())),r=null,o=!1,a.addClass("tvcolorpicker-widget").attr("autocomplete","off").attr("readonly",!0),i=function(){a.data("tvcolorpicker")||(O.call(a),r=M.call(a,w),a.data("tvcolorpicker-custom-color",null),a.data("tvcolorpicker",r),a.data("tvcolorpicker-previous-color",a.val()),r.bind("mousedown click",function(t){e(t.target).parents().andSelf().is(r)&&(a.focus(),o=!0,setTimeout(function(){o=!1},0))}))},a.on("touchstart",i),a.focus(i),O.call(a),a.bind("blur",function(e){o?e.stopPropagation():O.call(a)}),a.change(function(e){n()}),n()})}var v,b,_;if(!e)throw Error("This program cannot be run in DOS mode");r.setCustomColors=n,e.fn.tvcolorpicker=r,v=10,b=[],_="rgb(14, 15, 16)",r.options={direction:"down",offset:0,drift:0}}(window.jQuery)},,function(e,t){function n(){throw Error("setTimeout has not been defined")}function r(){throw Error("clearTimeout has not been defined")}function o(e){if(l===setTimeout)return setTimeout(e,0);if((l===n||!l)&&setTimeout)return l=setTimeout,setTimeout(e,0);try{return l(e,0)}catch(t){try{return l.call(null,e,0)}catch(t){return l.call(this,e,0)}}}function i(e){if(f===clearTimeout)return clearTimeout(e);if((f===r||!f)&&clearTimeout)return f=clearTimeout,clearTimeout(e);try{return f(e)}catch(t){try{return f.call(null,e)}catch(t){return f.call(this,e)}}}function a(){d&&h&&(d=!1,h.length?p=h.concat(p):m=-1,p.length&&s())}function s(){var e,t;if(!d){for(e=o(a),d=!0,t=p.length;t;){for(h=p,p=[];++m1)for(t=1;t.":"function"==typeof t?" Instead of passing a class like Foo, pass React.createElement(Foo) or .":null!=t&&void 0!==t.props?" This may be caused by unintentionally loading two independent copies of React.":""),a=y.createElement(U,{child:t}),e?(u=C.get(e),s=u._processChildContext(u._context)):s=M,l=p(n)){if(f=l._currentElement,m=f.props.child,D(m,t))return g=l._renderedComponent.getPublicInstance(),v=r&&function(){r.call(g)},d._updateRootComponent(l,a,s,n,v),g;d.unmountComponentAtNode(n)}return b=o(n),_=b&&!!i(b),w=c(n),x=_&&!l&&!w,T=d._renderNewRootComponent(a,n,x,s)._renderedComponent.getPublicInstance(),r&&r.call(T),T},render:function(e,t,n){return d._renderSubtreeIntoContainer(null,e,t,n)},unmountComponentAtNode:function(e){var t;return l(e)||h("40"),(t=p(e))?(delete R[t._instance.rootID],S.batchedUpdates(u,t,e,!1),!0):(c(e),1===e.nodeType&&e.hasAttribute(A),!1)},_mountImageIntoNode:function(e,t,n,i,a){var s,u,c,f,p,d;if(l(t)||h("41"),i){if(s=o(t),T.canReuseMarkup(e,s))return void b.precacheNode(n,s);u=s.getAttribute(T.CHECKSUM_ATTR_NAME),s.removeAttribute(T.CHECKSUM_ATTR_NAME),c=s.outerHTML,s.setAttribute(T.CHECKSUM_ATTR_NAME,u),f=e,p=r(f,c),d=" (client) "+f.substring(p-20,p+20)+"\n (server) "+c.substring(p-20,p+20),t.nodeType===I&&h("42",d)}if(t.nodeType===I&&h("43"),a.useCreateElement){for(;t.lastChild;)t.removeChild(t.lastChild);m.insertTreeBefore(t,e,null)}else N(t,e),b.precacheNode(n,t.firstChild)}},e.exports=d},function(e,t,n){"use strict" +;var r=n(25),o=n(140),i=(n(17),{HOST:0,COMPOSITE:1,EMPTY:2,getType:function(e){return null===e||!1===e?i.EMPTY:o.isValidElement(e)?"function"==typeof e.type?i.COMPOSITE:i.HOST:void r("26",e)}});e.exports=i},function(e,t){"use strict";var n={currentScrollLeft:0,currentScrollTop:0,refreshScrollValues:function(e){n.currentScrollLeft=e.x,n.currentScrollTop=e.y}};e.exports=n},function(e,t,n){"use strict";function r(e,t){return null==t&&o("30"),null==e?t:Array.isArray(e)?Array.isArray(t)?(e.push.apply(e,t),e):(e.push(t),e):Array.isArray(t)?[e].concat(t):[e,t]}var o=n(25);n(17);e.exports=r},function(e,t){"use strict";function n(e,t,n){Array.isArray(e)?e.forEach(t,n):e&&t.call(n,e)}e.exports=n},function(e,t,n){"use strict";function r(e){for(var t;(t=e._renderedNodeType)===o.COMPOSITE;)e=e._renderedComponent;return t===o.HOST?e._renderedComponent:t===o.EMPTY?null:void 0}var o=n(449);e.exports=r},function(e,t,n){"use strict";function r(){return!i&&o.canUseDOM&&(i="textContent"in document.documentElement?"textContent":"innerText"),i}var o=n(60),i=null;e.exports=r},function(e,t,n){"use strict";function r(e){var t=e.type,n=e.nodeName;return n&&"input"===n.toLowerCase()&&("checkbox"===t||"radio"===t)}function o(e){return e._wrapperState.valueTracker}function i(e,t){e._wrapperState.valueTracker=t}function a(e){delete e._wrapperState.valueTracker}function s(e){var t;return e&&(t=r(e)?""+e.checked:e.value),t}var u=n(32),c={_getTrackerFromNode:function(e){return o(u.getInstanceFromNode(e))},track:function(e){var t,n,s,c;o(e)||(t=u.getNodeFromInstance(e),n=r(t)?"checked":"value",s=Object.getOwnPropertyDescriptor(t.constructor.prototype,n),c=""+t[n],t.hasOwnProperty(n)||"function"!=typeof s.get||"function"!=typeof s.set||(Object.defineProperty(t,n,{enumerable:s.enumerable,configurable:!0,get:function(){return s.get.call(this)},set:function(e){c=""+e,s.set.call(this,e)}}),i(e,{getValue:function(){return c},setValue:function(e){c=""+e},stopTracking:function(){a(e),delete t[n]}})))},updateValueIfChanged:function(e){var t,n,r;return!!e&&((t=o(e))?(n=t.getValue(),(r=s(u.getNodeFromInstance(e)))!==n&&(t.setValue(r),!0)):(c.track(e),!0))},stopTracking:function(e){var t=o(e);t&&t.stopTracking()}};e.exports=c},function(e,t,n){"use strict";function r(e){if(e){var t=e.getName();if(t)return" Check the render method of `"+t+"`."}return""}function o(e){return"function"==typeof e&&void 0!==e.prototype&&"function"==typeof e.prototype.mountComponent&&"function"==typeof e.prototype.receiveComponent}function i(e,t){var n,s,u,p;return null===e||!1===e?n=c.create(i):"object"==typeof e?(s=e,u=s.type,"function"!=typeof u&&"string"!=typeof u&&(p="",p+=r(s._owner),a("130",null==u?u:typeof u,p)),"string"==typeof s.type?n=l.createInternalComponent(s):o(s.type)?(n=new s.type(s),n.getHostNode||(n.getHostNode=n.getNativeNode)):n=new f(s)):"string"==typeof e||"number"==typeof e?n=l.createInstanceForText(e):a("131",typeof e),n._mountIndex=0,n._mountImage=null,n}var a=n(25),s=n(30),u=n(1022),c=n(444),l=n(446),f=(n(1085),n(17),n(24),function(e){this.construct(e)}) +;s(f.prototype,u,{_instantiateReactComponent:i}),e.exports=i},function(e,t){"use strict";function n(e){var t=e&&e.nodeName&&e.nodeName.toLowerCase();return"input"===t?!!r[e.type]:"textarea"===t}var r={color:!0,date:!0,datetime:!0,"datetime-local":!0,email:!0,month:!0,number:!0,password:!0,range:!0,search:!0,tel:!0,text:!0,time:!0,url:!0,week:!0};e.exports=n},function(e,t,n){"use strict";var r=n(60),o=n(224),i=n(225),a=function(e,t){if(t){var n=e.firstChild;if(n&&n===e.lastChild&&3===n.nodeType)return void(n.nodeValue=t)}e.textContent=t};r.canUseDOM&&("textContent"in document.documentElement||(a=function(e,t){if(3===e.nodeType)return void(e.nodeValue=t);i(e,o(t))})),e.exports=a},function(e,t,n){"use strict";function r(e,t){return e&&"object"==typeof e&&null!=e.key?c.escape(e.key):t.toString(36)}function o(e,t,n,i){var p,d,h,m,g,y,v,b,_,w,x,C,T=typeof e;if("undefined"!==T&&"boolean"!==T||(e=null),null===e||"string"===T||"number"===T||"object"===T&&e.$$typeof===s)return n(i,e,""===t?l+r(e,0):t),1;if(h=0,m=""===t?l:t+f,Array.isArray(e))for(g=0;g2?arguments[2]:void 0,l=Math.min((void 0===c?a:o(c,a))-u,a-s),f=1;for(u0;)u in n?n[s]=n[u]:delete n[s],s+=f,u+=f;return n}},function(e,t,n){"use strict";var r=n(130),o=n(198),i=n(89);e.exports=function(e){for(var t=r(this),n=i(t.length),a=arguments.length,s=o(a>1?arguments[1]:void 0,n),u=a>2?arguments[2]:void 0,c=void 0===u?n:o(u,n);c>s;)t[s++]=e;return t}},function(e,t,n){var r=n(50),o=n(345),i=n(39)("species");e.exports=function(e){var t;return o(e)&&(t=e.constructor,"function"!=typeof t||t!==Array&&!o(t.prototype)||(t=void 0),r(t)&&null===(t=t[i])&&(t=void 0)),void 0===t?Array:t}},function(e,t,n){var r=n(520);e.exports=function(e,t){return new(r(e))(t)}},function(e,t,n){"use strict";var r=n(124),o=n(50),i=n(343),a=[].slice,s={},u=function(e,t,n){if(!(t in s)){for(var r=[],o=0;oa;)n.call(e,s=t[a++])&&u.push(s);return u}},function(e,t,n){"use strict";var r=n(29);e.exports=function(){var e=r(this),t="";return e.global&&(t+="g"),e.ignoreCase&&(t+="i"),e.multiline&&(t+="m"),e.unicode&&(t+="u"),e.sticky&&(t+="y"),t}},function(e,t,n){var r=n(50),o=n(249).set;e.exports=function(e,t,n){var i,a=t.constructor;return a!==n&&"function"==typeof a&&(i=a.prototype)!==n.prototype&&r(i)&&o&&o(e,i),e}},function(e,t,n){var r=n(50),o=n(111),i=n(39)("match");e.exports=function(e){var t;return r(e)&&(void 0!==(t=e[i])?!!t:"RegExp"==o(e))}},function(e,t,n){var r=n(128),o=n(88);e.exports=function(e,t){for(var n,i=o(e),a=r(i),s=a.length,u=0;s>u;)if(i[n=a[u++]]===t)return n}},function(e,t,n){var r=n(35),o=n(355).set,i=r.MutationObserver||r.WebKitMutationObserver,a=r.process,s=r.Promise,u="process"==n(111)(a);e.exports=function(){var e,t,n,c,l,f,p=function(){var r,o;for(u&&(r=a.domain)&&r.exit();e;){o=e.fn,e=e.next;try{o()}catch(r){throw e?n():t=void 0,r}}t=void 0,r&&r.enter()};return u?n=function(){a.nextTick(p)}:i?(c=!0,l=document.createTextNode(""),new i(p).observe(l,{characterData:!0}),n=function(){l.data=c=!c}):s&&s.resolve?(f=s.resolve(),n=function(){f.then(p)}):n=function(){o.call(r,p)},function(r){var o={fn:r,next:void 0};t&&(t.next=o),e||(e=o,n()),t=o}}},function(e,t,n){"use strict" +;var r=n(128),o=n(197),i=n(149),a=n(130),s=n(241),u=Object.assign;e.exports=!u||n(58)(function(){var e={},t={},n=Symbol(),r="abcdefghijklmnopqrst";return e[n]=7,r.split("").forEach(function(e){t[e]=e}),7!=u({},e)[n]||Object.keys(u({},t)).join("")!=r})?function(e,t){for(var n,u,c,l,f,p=a(e),d=arguments.length,h=1,m=o.f,g=i.f;d>h;)for(n=s(arguments[h++]),u=m?r(n).concat(m(n)):r(n),c=u.length,l=0;c>l;)g.call(n,f=u[l++])&&(p[f]=n[f]);return p}:u},function(e,t,n){var r=n(59),o=n(29),i=n(128);e.exports=n(79)?Object.defineProperties:function(e,t){o(e);for(var n,a=i(t),s=a.length,u=0;s>u;)r.f(e,n=a[u++],t[n]);return e}},function(e,t,n){var r=n(88),o=n(247).f,i={}.toString,a="object"==typeof window&&window&&Object.getOwnPropertyNames?Object.getOwnPropertyNames(window):[],s=function(e){try{return o(e)}catch(e){return a.slice()}};e.exports.f=function(e){return a&&"[object Window]"==i.call(e)?s(e):o(r(e))}},function(e,t,n){var r=n(247),o=n(197),i=n(29),a=n(35).Reflect;e.exports=a&&a.ownKeys||function(e){var t=r.f(i(e)),n=o.f;return n?t.concat(n(e)):t}},function(e,t,n){var r=n(35).parseFloat,o=n(354).trim;e.exports=1/r(n(254)+"-0")!=-1/0?function(e){var t=o(e+"",3),n=r(t);return 0===n&&"-"==t.charAt(0)?-0:n}:r},function(e,t,n){var r=n(35).parseInt,o=n(354).trim,i=n(254),a=/^[\-+]?0[xX]/;e.exports=8!==r(i+"08")||22!==r(i+"0x16")?function(e,t){var n=o(e+"",3);return r(n,t>>>0||(a.test(n)?16:10))}:r},function(e,t){e.exports=Object.is||function(e,t){return e===t?0!==e||1/e==1/t:e!=e&&t!=t}},function(e,t,n){var r=n(29),o=n(124),i=n(39)("species");e.exports=function(e,t){var n,a=r(e).constructor;return void 0===a||void 0==(n=r(a)[i])?t:o(n)}},function(e,t,n){"use strict";var r=n(199),o=n(112);e.exports=function(e){var t=o(this)+"",n="",i=r(e);if(i<0||i==1/0)throw RangeError("Count can't be negative");for(;i>0;(i>>>=1)&&(t+=t))1&i&&(n+=t);return n}},function(e,t,n){var r=n(35),o=n(126),i=n(195),a=n(356),s=n(59).f;e.exports=function(e){var t=o.Symbol||(o.Symbol=i?{}:r.Symbol||{});"_"==e.charAt(0)||e in t||s(t,e,{value:a.f(e)})}},function(e,t,n){var r=n(6);r(r.P,"Array",{copyWithin:n(518)}),n(125)("copyWithin")},function(e,t,n){var r=n(6);r(r.P,"Array",{fill:n(519)}),n(125)("fill")},function(e,t,n){"use strict";var r=n(6),o=n(336)(6),i="findIndex",a=!0;i in[]&&Array(1)[i](function(){a=!1}),r(r.P+r.F*a,"Array",{findIndex:function(e){return o(this,e,arguments.length>1?arguments[1]:void 0)}}),n(125)(i)},function(e,t,n){"use strict";var r=n(6),o=n(336)(5),i="find",a=!0;i in[]&&Array(1)[i](function(){a=!1}),r(r.P+r.F*a,"Array",{find:function(e){return o(this,e,arguments.length>1?arguments[1]:void 0)}}),n(125)(i)},function(e,t,n){"use strict";var r=n(99),o=n(6),i=n(130),a=n(347),s=n(344),u=n(89),c=n(340),l=n(357);o(o.S+o.F*!n(243)(function(e){Array.from(e)}),"Array",{from:function(e){var t,n,o,f,p=i(e),d="function"==typeof this?this:Array,h=arguments.length,m=h>1?arguments[1]:void 0,g=void 0!==m,y=0,v=l(p);if(g&&(m=r(m,h>2?arguments[2]:void 0,2)),void 0==v||d==Array&&s(v))for(t=u(p.length), +n=new d(t);t>y;y++)c(n,y,g?m(p[y],y):p[y]);else for(f=v.call(p),n=new d;!(o=f.next()).done;y++)c(n,y,g?a(f,m,[o.value,y],!0):o.value);return n.length=y,n}})},function(e,t,n){"use strict";var r=n(125),o=n(349),i=n(194),a=n(88);e.exports=n(242)(Array,"Array",function(e,t){this._t=a(e),this._i=0,this._k=t},function(){var e=this._t,t=this._k,n=this._i++;return!e||n>=e.length?(this._t=void 0,o(1)):"keys"==t?o(0,n):"values"==t?o(0,e[n]):o(0,[n,e[n]])},"values"),i.Arguments=i.Array,r("keys"),r("values"),r("entries")},function(e,t,n){"use strict";var r=n(6),o=n(340);r(r.S+r.F*n(58)(function(){function e(){}return!(Array.of.call(e)instanceof e)}),"Array",{of:function(){for(var e=0,t=arguments.length,n=new("function"==typeof this?this:Array)(t);t>e;)o(n,e,arguments[e++]);return n.length=t,n}})},function(e,t,n){n(250)("Array")},function(e,t,n){var r=n(39)("toPrimitive"),o=Date.prototype;r in o||n(113)(o,r,n(523))},function(e,t,n){var r=Date.prototype,o="Invalid Date",i="toString",a=r[i],s=r.getTime;new Date(NaN)+""!=o&&n(129)(r,i,function(){var e=s.call(this);return e===e?a.call(this):o})},function(e,t,n){"use strict";var r=n(50),o=n(148),i=n(39)("hasInstance"),a=Function.prototype;i in a||n(59).f(a,i,{value:function(e){if("function"!=typeof this||!r(e))return!1;if(!r(this.prototype))return e instanceof this;for(;e=o(e);)if(this.prototype===e)return!0;return!1}})},function(e,t,n){var r=n(59).f,o=n(114),i=n(72),a=Function.prototype,s=/^\s*function ([^ (]*)/,u="name",c=Object.isExtensible||function(){return!0};u in a||n(79)&&r(a,u,{configurable:!0,get:function(){try{var e=this,t=(""+e).match(s)[1];return i(e,u)||!c(e)||r(e,u,o(5,t)),t}catch(e){return""}}})},function(e,t,n){"use strict";var r=n(338);e.exports=n(339)("Map",function(e){return function(){return e(this,arguments.length>0?arguments[0]:void 0)}},{get:function(e){var t=r.getEntry(this,e);return t&&t.v},set:function(e,t){return r.def(this,0===e?0:e,t)}},r,!0)},function(e,t,n){var r=n(6),o=n(350),i=Math.sqrt,a=Math.acosh;r(r.S+r.F*!(a&&710==Math.floor(a(Number.MAX_VALUE))&&a(1/0)==1/0),"Math",{acosh:function(e){return(e=+e)<1?NaN:e>94906265.62425156?Math.log(e)+Math.LN2:o(e-1+i(e-1)*i(e+1))}})},function(e,t,n){function r(e){return isFinite(e=+e)&&0!=e?e<0?-r(-e):Math.log(e+Math.sqrt(e*e+1)):e}var o=n(6),i=Math.asinh;o(o.S+o.F*!(i&&1/i(0)>0),"Math",{asinh:r})},function(e,t,n){var r=n(6),o=Math.atanh;r(r.S+r.F*!(o&&1/o(-0)<0),"Math",{atanh:function(e){return 0==(e=+e)?e:Math.log((1+e)/(1-e))/2}})},function(e,t,n){var r=n(6),o=n(245);r(r.S,"Math",{cbrt:function(e){return o(e=+e)*Math.pow(Math.abs(e),1/3)}})},function(e,t,n){var r=n(6);r(r.S,"Math",{clz32:function(e){return(e>>>=0)?31-Math.floor(Math.log(e+.5)*Math.LOG2E):32}})},function(e,t,n){var r=n(6),o=Math.exp;r(r.S,"Math",{cosh:function(e){return(o(e=+e)+o(-e))/2}})},function(e,t,n){var r=n(6),o=n(244);r(r.S+r.F*(o!=Math.expm1),"Math",{expm1:o})},function(e,t,n){var r=n(6),o=n(245),i=Math.pow,a=i(2,-52),s=i(2,-23),u=i(2,127)*(2-s),c=i(2,-126),l=function(e){return e+1/a-1/a};r(r.S,"Math",{fround:function(e){ +var t,n,r=Math.abs(e),i=o(e);return ru||n!=n?i*(1/0):i*n)}})},function(e,t,n){var r=n(6),o=Math.abs;r(r.S,"Math",{hypot:function(e,t){for(var n,r,i=0,a=0,s=arguments.length,u=0;a0?(r=n/u,i+=r*r):i+=n;return u===1/0?1/0:u*Math.sqrt(i)}})},function(e,t,n){var r=n(6),o=Math.imul;r(r.S+r.F*n(58)(function(){return-5!=o(4294967295,5)||2!=o.length}),"Math",{imul:function(e,t){var n=65535,r=+e,o=+t,i=n&r,a=n&o;return 0|i*a+((n&r>>>16)*a+i*(n&o>>>16)<<16>>>0)}})},function(e,t,n){var r=n(6);r(r.S,"Math",{log10:function(e){return Math.log(e)/Math.LN10}})},function(e,t,n){var r=n(6);r(r.S,"Math",{log1p:n(350)})},function(e,t,n){var r=n(6);r(r.S,"Math",{log2:function(e){return Math.log(e)/Math.LN2}})},function(e,t,n){var r=n(6);r(r.S,"Math",{sign:n(245)})},function(e,t,n){var r=n(6),o=n(244),i=Math.exp;r(r.S+r.F*n(58)(function(){return-2e-17!=!Math.sinh(-2e-17)}),"Math",{sinh:function(e){return Math.abs(e=+e)<1?(o(e)-o(-e))/2:(i(e-1)-i(-e-1))*(Math.E/2)}})},function(e,t,n){var r=n(6),o=n(244),i=Math.exp;r(r.S,"Math",{tanh:function(e){var t=o(e=+e),n=o(-e);return t==1/0?1:n==1/0?-1:(t-n)/(i(e)+i(-e))}})},function(e,t,n){var r=n(6);r(r.S,"Math",{trunc:function(e){return(e>0?Math.floor:Math.ceil)(e)}})},function(e,t,n){var r=n(6);r(r.S,"Number",{EPSILON:Math.pow(2,-52)})},function(e,t,n){var r=n(6),o=n(35).isFinite;r(r.S,"Number",{isFinite:function(e){return"number"==typeof e&&o(e)}})},function(e,t,n){var r=n(6);r(r.S,"Number",{isInteger:n(346)})},function(e,t,n){var r=n(6);r(r.S,"Number",{isNaN:function(e){return e!=e}})},function(e,t,n){var r=n(6),o=n(346),i=Math.abs;r(r.S,"Number",{isSafeInteger:function(e){return o(e)&&i(e)<=9007199254740991}})},function(e,t,n){var r=n(6);r(r.S,"Number",{MAX_SAFE_INTEGER:9007199254740991})},function(e,t,n){var r=n(6);r(r.S,"Number",{MIN_SAFE_INTEGER:-9007199254740991})},function(e,t,n){var r=n(6),o=n(534);r(r.S+r.F*(Number.parseFloat!=o),"Number",{parseFloat:o})},function(e,t,n){var r=n(6),o=n(535);r(r.S+r.F*(Number.parseInt!=o),"Number",{parseInt:o})},function(e,t,n){"use strict";var r=n(6),o=n(58),i=n(517),a=1..toPrecision;r(r.P+r.F*(o(function(){return"1"!==a.call(1,void 0)})||!o(function(){a.call({})})),"Number",{toPrecision:function(e){var t=i(this,"Number#toPrecision: incorrect invocation!");return void 0===e?a.call(t):a.call(t,e)}})},function(e,t,n){var r=n(6);r(r.S+r.F,"Object",{assign:n(530)})},function(e,t,n){var r=n(6);r(r.S,"Object",{is:n(536)})},function(e,t,n){var r=n(6);r(r.S,"Object",{setPrototypeOf:n(249).set})},function(e,t,n){"use strict";var r,o,i,a,s,u,c,l,f,p,d,h,m,g,y,v,b,_=n(195),w=n(35),x=n(99),C=n(337),T=n(6),k=n(50),E=n(124),S=n(236),M=n(240),O=n(537),N=n(355).set,D=n(529)(),P="Promise",A=w.TypeError,L=w.process,I=w[P];L=w.process,r="process"==C(L),o=function(){},u=!!function(){try{var e=I.resolve(1),t=(e.constructor={})[n(39)("species")]=function(e){e(o,o)};return(r||"function"==typeof PromiseRejectionEvent)&&e.then(o)instanceof t}catch(e){}}(),c=function(e,t){ +return e===t||e===I&&t===s},l=function(e){var t;return!(!k(e)||"function"!=typeof(t=e.then))&&t},f=function(e){return c(I,e)?new p(e):new a(e)},p=a=function(e){var t,n;this.promise=new e(function(e,r){if(void 0!==t||void 0!==n)throw A("Bad Promise constructor");t=e,n=r}),this.resolve=E(t),this.reject=E(n)},d=function(e){try{e()}catch(e){return{error:e}}},h=function(e,t){if(!e._n){e._n=!0;var n=e._c;D(function(){for(var r=e._v,o=1==e._s,i=0,a=function(t){var n,i,a=o?t.ok:t.fail,s=t.resolve,u=t.reject,c=t.domain;try{a?(o||(2==e._h&&y(e),e._h=1),!0===a?n=r:(c&&c.enter(),n=a(r),c&&c.exit()),n===t.promise?u(A("Promise-chain cycle")):(i=l(n))?i.call(n,s,u):s(n)):u(r)}catch(e){u(e)}};n.length>i;)a(n[i++]);e._c=[],e._n=!1,t&&!e._h&&m(e)})}},m=function(e){N.call(w,function(){var t,n,o,i=e._v;if(g(e)&&(t=d(function(){r?L.emit("unhandledRejection",i,e):(n=w.onunhandledrejection)?n({promise:e,reason:i}):(o=w.console)&&o.error&&o.error("Unhandled promise rejection",i)}),e._h=r||g(e)?2:1),e._a=void 0,t)throw t.error})},g=function(e){if(1==e._h)return!1;for(var t,n=e._a||e._c,r=0;n.length>r;)if(t=n[r++],t.fail||!g(t.promise))return!1;return!0},y=function(e){N.call(w,function(){var t;r?L.emit("rejectionHandled",e):(t=w.onrejectionhandled)&&t({promise:e,reason:e._v})})},v=function(e){var t=this;t._d||(t._d=!0,t=t._w||t,t._v=e,t._s=2,t._a||(t._a=t._c.slice()),h(t,!0))},b=function(e){var t,n=this;if(!n._d){n._d=!0,n=n._w||n;try{if(n===e)throw A("Promise can't be resolved itself");(t=l(e))?D(function(){var r={_w:n,_d:!1};try{t.call(e,x(b,r,1),x(v,r,1))}catch(e){v.call(r,e)}}):(n._v=e,n._s=1,h(n,!1))}catch(e){v.call({_w:n,_d:!1},e)}}},u||(I=function(e){S(this,I,P,"_h"),E(e),i.call(this);try{e(x(b,this,1),x(v,this,1))}catch(e){v.call(this,e)}},i=function(e){this._c=[],this._a=void 0,this._s=0,this._d=!1,this._v=void 0,this._h=0,this._n=!1},i.prototype=n(248)(I.prototype,{then:function(e,t){var n=f(O(this,I));return n.ok="function"!=typeof e||e,n.fail="function"==typeof t&&t,n.domain=r?L.domain:void 0,this._c.push(n),this._a&&this._a.push(n),this._s&&h(this,!1),n.promise},catch:function(e){return this.then(void 0,e)}}),p=function(){var e=new i;this.promise=e,this.resolve=x(b,e,1),this.reject=x(v,e,1)}),T(T.G+T.W+T.F*!u,{Promise:I}),n(150)(I,P),n(250)(P),s=n(126)[P],T(T.S+T.F*!u,P,{reject:function(e){var t=f(this);return(0,t.reject)(e),t.promise}}),T(T.S+T.F*(_||!u),P,{resolve:function(e){if(e instanceof I&&c(e.constructor,this))return e;var t=f(this);return(0,t.resolve)(e),t.promise}}),T(T.S+T.F*!(u&&n(243)(function(e){I.all(e).catch(o)})),P,{all:function(e){var t=this,n=f(t),r=n.resolve,o=n.reject,i=d(function(){var n=[],i=0,a=1;M(e,!1,function(e){var s=i++,u=!1;n.push(void 0),a++,t.resolve(e).then(function(e){u||(u=!0,n[s]=e,--a||r(n))},o)}),--a||r(n)});return i&&o(i.error),n.promise},race:function(e){var t=this,n=f(t),r=n.reject,o=d(function(){M(e,!1,function(e){t.resolve(e).then(n.resolve,r)})});return o&&r(o.error),n.promise}})},function(e,t,n){var r=n(6),o=n(124),i=n(29),a=(n(35).Reflect||{}).apply,s=Function.apply +;r(r.S+r.F*!n(58)(function(){a(function(){})}),"Reflect",{apply:function(e,t,n){var r=o(e),u=i(n);return a?a(r,t,u):s.call(r,t,u)}})},function(e,t,n){var r=n(6),o=n(196),i=n(124),a=n(29),s=n(50),u=n(58),c=n(522),l=(n(35).Reflect||{}).construct,f=u(function(){function e(){}return!(l(function(){},[],e)instanceof e)}),p=!u(function(){l(function(){})});r(r.S+r.F*(f||p),"Reflect",{construct:function(e,t){var n,r,u,d,h;if(i(e),a(t),n=arguments.length<3?e:i(arguments[2]),p&&!f)return l(e,t,n);if(e==n){switch(t.length){case 0:return new e;case 1:return new e(t[0]);case 2:return new e(t[0],t[1]);case 3:return new e(t[0],t[1],t[2]);case 4:return new e(t[0],t[1],t[2],t[3])}return r=[null],r.push.apply(r,t),new(c.apply(e,r))}return u=n.prototype,d=o(s(u)?u:Object.prototype),h=Function.apply.call(e,d,t),s(h)?h:d}})},function(e,t,n){var r=n(59),o=n(6),i=n(29),a=n(151);o(o.S+o.F*n(58)(function(){Reflect.defineProperty(r.f({},1,{value:1}),1,{value:2})}),"Reflect",{defineProperty:function(e,t,n){i(e),t=a(t,!0),i(n);try{return r.f(e,t,n),!0}catch(e){return!1}}})},function(e,t,n){var r=n(6),o=n(127).f,i=n(29);r(r.S,"Reflect",{deleteProperty:function(e,t){var n=o(i(e),t);return!(n&&!n.configurable)&&delete e[t]}})},function(e,t,n){"use strict";var r=n(6),o=n(29),i=function(e){this._t=o(e),this._i=0;var t,n=this._k=[];for(t in e)n.push(t)};n(348)(i,"Object",function(){var e,t=this,n=t._k;do{if(t._i>=n.length)return{value:void 0,done:!0}}while(!((e=n[t._i++])in t._t));return{value:e,done:!1}}),r(r.S,"Reflect",{enumerate:function(e){return new i(e)}})},function(e,t,n){var r=n(127),o=n(6),i=n(29);o(o.S,"Reflect",{getOwnPropertyDescriptor:function(e,t){return r.f(i(e),t)}})},function(e,t,n){var r=n(6),o=n(148),i=n(29);r(r.S,"Reflect",{getPrototypeOf:function(e){return o(i(e))}})},function(e,t,n){function r(e,t){var n,s,l=arguments.length<3?e:arguments[2];return c(e)===l?e[t]:(n=o.f(e,t))?a(n,"value")?n.value:void 0!==n.get?n.get.call(l):void 0:u(s=i(e))?r(s,t,l):void 0}var o=n(127),i=n(148),a=n(72),s=n(6),u=n(50),c=n(29);s(s.S,"Reflect",{get:r})},function(e,t,n){var r=n(6);r(r.S,"Reflect",{has:function(e,t){return t in e}})},function(e,t,n){var r=n(6),o=n(29),i=Object.isExtensible;r(r.S,"Reflect",{isExtensible:function(e){return o(e),!i||i(e)}})},function(e,t,n){var r=n(6);r(r.S,"Reflect",{ownKeys:n(533)})},function(e,t,n){var r=n(6),o=n(29),i=Object.preventExtensions;r(r.S,"Reflect",{preventExtensions:function(e){o(e);try{return i&&i(e),!0}catch(e){return!1}}})},function(e,t,n){var r=n(6),o=n(249);o&&r(r.S,"Reflect",{setPrototypeOf:function(e,t){o.check(e,t);try{return o.set(e,t),!0}catch(e){return!1}}})},function(e,t,n){function r(e,t,n){var u,p,d=arguments.length<4?e:arguments[3],h=i.f(l(e),t);if(!h){if(f(p=a(e)))return r(p,t,n,d);h=c(0)}return s(h,"value")?!(!1===h.writable||!f(d))&&(u=i.f(d,t)||c(0),u.value=n,o.f(d,t,u),!0):void 0!==h.set&&(h.set.call(d,n),!0)}var o=n(59),i=n(127),a=n(148),s=n(72),u=n(6),c=n(114),l=n(29),f=n(50);u(u.S,"Reflect",{set:r})},function(e,t,n){n(79)&&"g"!=/./g.flags&&n(59).f(RegExp.prototype,"flags",{ +configurable:!0,get:n(525)})},function(e,t,n){"use strict";var r=n(338);e.exports=n(339)("Set",function(e){return function(){return e(this,arguments.length>0?arguments[0]:void 0)}},{add:function(e){return r.def(this,e=0===e?0:e,e)}},r)},function(e,t,n){"use strict";var r=n(6),o=n(353)(!1);r(r.P,"String",{codePointAt:function(e){return o(this,e)}})},function(e,t,n){"use strict";var r=n(6),o=n(89),i=n(253),a="endsWith",s=""[a];r(r.P+r.F*n(239)(a),"String",{endsWith:function(e){var t=i(this,e,a),n=arguments.length>1?arguments[1]:void 0,r=o(t.length),u=void 0===n?r:Math.min(o(n),r),c=e+"";return s?s.call(t,c,u):t.slice(u-c.length,u)===c}})},function(e,t,n){var r=n(6),o=n(198),i=String.fromCharCode,a=String.fromCodePoint;r(r.S+r.F*(!!a&&1!=a.length),"String",{fromCodePoint:function(e){for(var t,n=[],r=arguments.length,a=0;r>a;){if(t=+arguments[a++],o(t,1114111)!==t)throw RangeError(t+" is not a valid code point");n.push(t<65536?i(t):i(55296+((t-=65536)>>10),t%1024+56320))}return n.join("")}})},function(e,t,n){"use strict";var r=n(6),o=n(253),i="includes";r(r.P+r.F*n(239)(i),"String",{includes:function(e){return!!~o(this,e,i).indexOf(e,arguments.length>1?arguments[1]:void 0)}})},function(e,t,n){"use strict";var r=n(353)(!0);n(242)(String,"String",function(e){this._t=e+"",this._i=0},function(){var e,t=this._t,n=this._i;return n>=t.length?{value:void 0,done:!0}:(e=r(t,n),this._i+=e.length,{value:e,done:!1})})},function(e,t,n){var r=n(6),o=n(88),i=n(89);r(r.S,"String",{raw:function(e){for(var t=o(e.raw),n=i(t.length),r=arguments.length,a=[],s=0;n>s;)a.push(t[s++]+""),s1?arguments[1]:void 0,t.length)),r=e+"";return s?s.call(t,r,n):t.slice(n,n+r.length)===r}})},function(e,t,n){"use strict";var r,o,i=n(35),a=n(72),s=n(79),u=n(6),c=n(129),l=n(246).KEY,f=n(58),p=n(252),d=n(150),h=n(152),m=n(39),g=n(356),y=n(539),v=n(528),b=n(524),_=n(345),w=n(29),x=n(88),C=n(151),T=n(114),k=n(196),E=n(532),S=n(127),M=n(59),O=n(128),N=S.f,D=M.f,P=E.f,A=i.Symbol,L=i.JSON,I=L&&L.stringify,j="prototype",R=m("_hidden"),F=m("toPrimitive"),U={}.propertyIsEnumerable,H=p("symbol-registry"),Y=p("symbols"),W=p("op-symbols"),B=Object[j],V="function"==typeof A,q=i.QObject,z=!q||!q[j]||!q[j].findChild,$=s&&f(function(){return 7!=k(D({},"a",{get:function(){return D(this,"a",{value:7}).a}})).a})?function(e,t,n){var r=N(B,t);r&&delete B[t],D(e,t,n),r&&e!==B&&D(B,t,r)}:D,G=function(e){var t=Y[e]=k(A[j]);return t._k=e,t},K=V&&"symbol"==typeof A.iterator?function(e){return"symbol"==typeof e}:function(e){return e instanceof A},X=function(e,t,n){return e===B&&X(W,t,n),w(e),t=C(t,!0),w(n),a(Y,t)?(n.enumerable?(a(e,R)&&e[R][t]&&(e[R][t]=!1),n=k(n,{enumerable:T(0,!1)})):(a(e,R)||D(e,R,T(1,{})),e[R][t]=!0),$(e,t,n)):D(e,t,n)},Q=function(e,t){w(e) +;for(var n,r=b(t=x(t)),o=0,i=r.length;i>o;)X(e,n=r[o++],t[n]);return e},J=function(e,t){return void 0===t?k(e):Q(k(e),t)},Z=function(e){var t=U.call(this,e=C(e,!0));return!(this===B&&a(Y,e)&&!a(W,e))&&(!(t||!a(this,e)||!a(Y,e)||a(this,R)&&this[R][e])||t)},ee=function(e,t){if(e=x(e),t=C(t,!0),e!==B||!a(Y,t)||a(W,t)){var n=N(e,t);return!n||!a(Y,t)||a(e,R)&&e[R][t]||(n.enumerable=!0),n}},te=function(e){for(var t,n=P(x(e)),r=[],o=0;n.length>o;)a(Y,t=n[o++])||t==R||t==l||r.push(t);return r},ne=function(e){for(var t,n=e===B,r=P(n?W:x(e)),o=[],i=0;r.length>i;)!a(Y,t=r[i++])||n&&!a(B,t)||o.push(Y[t]);return o};for(V||(A=function(){var e,t;if(this instanceof A)throw TypeError("Symbol is not a constructor!");return e=h(arguments.length>0?arguments[0]:void 0),t=function(n){this===B&&t.call(W,n),a(this,R)&&a(this[R],e)&&(this[R][e]=!1),$(this,e,T(1,n))},s&&z&&$(B,e,{configurable:!0,set:t}),G(e)},c(A[j],"toString",function(){return this._k}),S.f=ee,M.f=X,n(247).f=E.f=te,n(149).f=Z,n(197).f=ne,s&&!n(195)&&c(B,"propertyIsEnumerable",Z,!0),g.f=function(e){return G(m(e))}),u(u.G+u.W+u.F*!V,{Symbol:A}),r="hasInstance,isConcatSpreadable,iterator,match,replace,search,species,split,toPrimitive,toStringTag,unscopables".split(","),o=0;r.length>o;)m(r[o++]);for(r=O(m.store),o=0;r.length>o;)y(r[o++]);u(u.S+u.F*!V,"Symbol",{for:function(e){return a(H,e+="")?H[e]:H[e]=A(e)},keyFor:function(e){if(K(e))return v(H,e);throw TypeError(e+" is not a symbol!")},useSetter:function(){z=!0},useSimple:function(){z=!1}}),u(u.S+u.F*!V,"Object",{create:J,defineProperty:X,defineProperties:Q,getOwnPropertyDescriptor:ee,getOwnPropertyNames:te,getOwnPropertySymbols:ne}),L&&u(u.S+u.F*(!V||f(function(){var e=A();return"[null]"!=I([e])||"{}"!=I({a:e})||"{}"!=I(Object(e))})),"JSON",{stringify:function(e){if(void 0!==e&&!K(e)){for(var t,n,r=[e],o=1;arguments.length>o;)r.push(arguments[o++]);return t=r[1],"function"==typeof t&&(n=t),!n&&_(t)||(t=function(e,t){if(n&&(t=n.call(this,e,t)),!K(t))return t}),r[1]=t,I.apply(L,r)}}}),A[j][F]||n(113)(A[j],F,A[j].valueOf),d(A,"Symbol"),d(Math,"Math",!0),d(i.JSON,"JSON",!0)},function(e,t,n){"use strict";var r=n(6),o=n(335)(!0);r(r.P,"Array",{includes:function(e){return o(this,e,arguments.length>1?arguments[1]:void 0)}}),n(125)("includes")},function(e,t,n){var r=n(6),o=n(352)(!0);r(r.S,"Object",{entries:function(e){return o(e)}})},function(e,t,n){var r=n(6),o=n(352)(!1);r(r.S,"Object",{values:function(e){return o(e)}})},function(e,t,n){"use strict";function r(e){return e}function o(e,t,n){function o(e,t){var n=v.hasOwnProperty(t)?v[t]:null;C.hasOwnProperty(t)&&u("OVERRIDE_BASE"===n,"ReactClassInterface: You are attempting to override `%s` from your class specification. Ensure that your method names do not overlap with React methods.",t),e&&u("DEFINE_MANY"===n||"DEFINE_MANY_MERGED"===n,"ReactClassInterface: You are attempting to define `%s` on your component more than once. This conflict may be due to a mixin.",t)}function c(e,n){var r,a,s,c,l,f,h,m,g;if(n){ +u("function"!=typeof n,"ReactClass: You're attempting to use a component class or function as a mixin. Instead, just use a regular object."),u(!t(n),"ReactClass: You're attempting to use a component as a mixin. Instead, just use a regular object."),r=e.prototype,a=r.__reactAutoBindPairs,n.hasOwnProperty(i)&&_.mixins(e,n.mixins);for(s in n)n.hasOwnProperty(s)&&s!==i&&(c=n[s],l=r.hasOwnProperty(s),o(l,s),_.hasOwnProperty(s)?_[s](e,c):(f=v.hasOwnProperty(s),h="function"==typeof c,m=h&&!f&&!l&&!1!==n.autobind,m?(a.push(s,c),r[s]=c):l?(g=v[s],u(f&&("DEFINE_MANY_MERGED"===g||"DEFINE_MANY"===g),"ReactClass: Unexpected spec policy %s for key %s when mixing in component specs.",g,s),"DEFINE_MANY_MERGED"===g?r[s]=p(r[s],c):"DEFINE_MANY"===g&&(r[s]=d(r[s],c))):r[s]=c))}}function l(e,t){var n,r,o,i;if(t)for(n in t)if(r=t[n],t.hasOwnProperty(n)){if(o=n in _,u(!o,'ReactClass: You are attempting to define a reserved property, `%s`, that shouldn\'t be on the "statics" key. Define it as an instance property instead; it will still be accessible on the constructor.',n),n in e)return i=b.hasOwnProperty(n)?b[n]:null,u("DEFINE_MANY_MERGED"===i,"ReactClass: You are attempting to define `%s` on your component more than once. This conflict may be due to a mixin.",n),void(e[n]=p(e[n],r));e[n]=r}}function f(e,t){u(e&&t&&"object"==typeof e&&"object"==typeof t,"mergeIntoWithNoDuplicateKeys(): Cannot merge non-objects.");for(var n in t)t.hasOwnProperty(n)&&(u(void 0===e[n],"mergeIntoWithNoDuplicateKeys(): Tried to merge two objects with the same key: `%s`. This conflict may be due to a mixin; in particular, this may be caused by two getInitialState() or getDefaultProps() methods returning objects with clashing keys.",n),e[n]=t[n]);return e}function p(e,t){return function(){var n,r=e.apply(this,arguments),o=t.apply(this,arguments);return null==r?o:null==o?r:(n={},f(n,r),f(n,o),n)}}function d(e,t){return function(){e.apply(this,arguments),t.apply(this,arguments)}}function h(e,t){var n=t.bind(e);return n}function m(e){var t,n,r,o=e.__reactAutoBindPairs;for(t=0;t":"<"+e+">",s[e]=!a.firstChild),s[e]?p[e]:null}var o=n(60),i=n(17),a=o.canUseDOM?document.createElement("div"):null,s={},u=[1,'"],c=[1,"
","
"],l=[3,"","
"],f=[1,'',""],p={"*":[1,"?
","
"],area:[1,"",""],col:[2,"","
"],legend:[1,"
","
"],param:[1,"",""],tr:[2,"","
"],optgroup:u,option:u,caption:c,colgroup:c,tbody:c,tfoot:c,thead:c,td:l,th:l};["circle","clipPath","defs","ellipse","g","image","line","linearGradient","mask","path","pattern","polygon","polyline","radialGradient","rect","stop","text","tspan"].forEach(function(e){p[e]=f,s[e]=!0}),e.exports=r},function(e,t){"use strict";function n(e){return e.Window&&e instanceof e.Window?{x:e.pageXOffset||e.document.documentElement.scrollLeft,y:e.pageYOffset||e.document.documentElement.scrollTop}:{x:e.scrollLeft,y:e.scrollTop}}e.exports=n},function(e,t){"use strict";function n(e){return e.replace(r,"-$1").toLowerCase()}var r=/([A-Z])/g;e.exports=n},function(e,t,n){"use strict";function r(e){return o(e).replace(i,"-ms-")}var o=n(681),i=/^ms-/;e.exports=r},function(e,t){"use strict";function n(e){var t=e?e.ownerDocument||e:document,n=t.defaultView||window;return!(!e||!("function"==typeof n.Node?e instanceof n.Node:"object"==typeof e&&"number"==typeof e.nodeType&&"string"==typeof e.nodeName))}e.exports=n},function(e,t,n){"use strict";function r(e){return o(e)&&3==e.nodeType}var o=n(683);e.exports=r},function(e,t){"use strict";function n(e){var t={};return function(n){return t.hasOwnProperty(n)||(t[n]=e.call(this,n)),t[n]}}e.exports=n},,,,,,,,,,,,,,,,,,,,,,,function(e,t){"use strict";var n=function(){function e(e,t){this.mouseFlag=!1,this.accuracy=2,this.value=1,this.colorInput=e,this.$el=$('
'),t&&this.$el.hide(),this.$gradient=$('
').appendTo(this.$el),this.$roller=$('').appendTo(this.$gradient)}return e.prototype.calculateRollerPosition=function(e){var t=e.pageX,n=this.$gradient.offset().left,r=t-n,o=this.$gradient.width();return r>o?100:r<0?0:~~(r/o*100)},e.prototype.toRgb=function(e){var t;return~e.indexOf("#")?e:(t=e.match(/[0-9.]+/g),t?"rgb("+t.slice(0,3).join(", ")+")":"rgb(127, 127, 127)") +},e.prototype.setValue=function(e){if(1===e)return void(this.value=e);this.value=e.toFixed(this.accuracy)},e.prototype.updateRoller=function(){this.$roller.css("left",100-100*this.value+"%")},e.prototype.rollerMoveHandler=function(e){if(this.mouseFlag){var t=this.calculateRollerPosition(e);this.setValue((100-t)/100),$(this).trigger("change",[this.val()]),this.$roller.css("left",t+"%")}e.preventDefault()},e.prototype.mouseupHandler=function(e){this.mouseFlag&&(this.mouseFlag=!1,$(this).trigger("afterChange",[this.val()]))},e.prototype.initEvents=function(){var e=function(e){return this.rollerMoveHandler(e)}.bind(this),t=function(n){return $(document).off("mousemove mouseup",e),$(document).off("mouseup",t),this.mouseupHandler(n)}.bind(this);this.$el.on("mousedown",function(n){this.mouseFlag=!0,$(document).on("mousemove mouseup",e),$(document).on("mouseup",t),n.preventDefault()}.bind(this)),this.colorInput.on("change",function(e){this.updateColor()}.bind(this))},e.prototype.removeEvents=function(){},e.prototype.updateColor=function(){var e=this.colorInput.val()||"black",t=this.toRgb(e),n=["-moz-linear-gradient(left, %COLOR 0%, transparent 100%)","-webkit-gradient(linear, left top, right top, color-stop(0%,%COLOR), color-stop(100%,transparent))","-webkit-linear-gradient(left, %COLOR 0%,transparent 100%)","-o-linear-gradient(left, %COLOR 0%,transparent 100%)","linear-gradient(to right, %COLOR 0%,transparent 100%)"];$.browser.msie?this.$gradient.css("filter","progid:DXImageTransform.Microsoft.gradient(startColorstr='"+t+"', EndColor=0, GradientType=1)"):n.forEach(function(e){this.$gradient.css("background-image",e.replace(/%COLOR/,t))}.bind(this))},e.prototype.val=function(e){return void 0!==e&&(this.setValue(+e),this.updateRoller()),this.value},function(t,n){return new e(t,n)}}();e.exports=n},,,,function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}function o(e){var t,n;if(e&&e.__esModule)return e;if(t={},null!=e)for(n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n]);return t.default=e,t}function i(e,t){var n,r,o,i=Object.getOwnPropertyNames(t);for(n=0;n-1?n[1].toLowerCase():n[0]))},e.prototype.formatLanguageCode=function(e){var t,n;return"string"==typeof e&&e.indexOf("-")>-1?(t=["hans","hant","latn","cyrl","cans","mong","arab"],n=e.split("-"),this.options.lowerCaseLng?n=n.map(function(e){return e.toLowerCase()}):2===n.length?(n[0]=n[0].toLowerCase(),n[1]=n[1].toUpperCase(),t.indexOf(n[1].toLowerCase())>-1&&(n[1]=i(n[1].toLowerCase()))):3===n.length&&(n[0]=n[0].toLowerCase(),2===n[1].length&&(n[1]=n[1].toUpperCase()),"sgn"!==n[0]&&2===n[2].length&&(n[2]=n[2].toUpperCase()),t.indexOf(n[1].toLowerCase())>-1&&(n[1]=i(n[1].toLowerCase())),t.indexOf(n[2].toLowerCase())>-1&&(n[2]=i(n[2].toLowerCase()))),n.join("-")):this.options.cleanCode||this.options.lowerCaseLng?e.toLowerCase():e},e.prototype.isWhitelisted=function(e,t){return("languageOnly"===this.options.load||this.options.nonExplicitWhitelist&&!t)&&(e=this.getLanguagePartFromCode(e)),!this.whitelist||!this.whitelist.length||this.whitelist.indexOf(e)>-1},e.prototype.toResolveHierarchy=function(e,t){var n,r,o=this;return t=t||this.options.fallbackLng||[],"string"==typeof t&&(t=[t]),n=[],r=function(e){var t=!(arguments.length<=1||void 0===arguments[1])&&arguments[1];o.isWhitelisted(e,t)?n.push(e):o.logger.warn("rejecting non-whitelisted language code: "+e)}, +"string"==typeof e&&e.indexOf("-")>-1?("languageOnly"!==this.options.load&&r(this.formatLanguageCode(e),!0),"currentOnly"!==this.options.load&&r(this.getLanguagePartFromCode(e))):"string"==typeof e&&r(this.formatLanguageCode(e)),t.forEach(function(e){n.indexOf(e)<0&&r(o.formatLanguageCode(e))}),n},e}(),t.default=u},function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}function o(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function i(){var e={};return c.forEach(function(t){t.lngs.forEach(function(n){return e[n]={numbers:t.nr,plurals:l[t.fc]}})}),e}var a,s,u,c,l,f;Object.defineProperty(t,"__esModule",{value:!0}),a="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol?"symbol":typeof e},s=n(100),u=r(s),c=[{lngs:["ach","ak","am","arn","br","fil","gun","ln","mfe","mg","mi","oc","tg","ti","tr","uz","wa"],nr:[1,2],fc:1},{lngs:["af","an","ast","az","bg","bn","ca","da","de","dev","el","en","eo","es","es_ar","et","eu","fi","fo","fur","fy","gl","gu","ha","he","hi","hu","hy","ia","it","kn","ku","lb","mai","ml","mn","mr","nah","nap","nb","ne","nl","nn","no","nso","pa","pap","pms","ps","pt","pt_br","rm","sco","se","si","so","son","sq","sv","sw","ta","te","tk","ur","yo"],nr:[1,2],fc:2},{lngs:["ay","bo","cgg","fa","id","ja","jbo","ka","kk","km","ko","ky","lo","ms","sah","su","th","tt","ug","vi","wo","zh"],nr:[1],fc:3},{lngs:["be","bs","dz","hr","ru","sr","uk"],nr:[1,2,5],fc:4},{lngs:["ar"],nr:[0,1,2,3,11,100],fc:5},{lngs:["cs","sk"],nr:[1,2,5],fc:6},{lngs:["csb","pl"],nr:[1,2,5],fc:7},{lngs:["cy"],nr:[1,2,3,8],fc:8},{lngs:["fr"],nr:[1,2],fc:9},{lngs:["ga"],nr:[1,2,3,7,11],fc:10},{lngs:["gd"],nr:[1,2,3,20],fc:11},{lngs:["is"],nr:[1,2],fc:12},{lngs:["jv"],nr:[0,1],fc:13},{lngs:["kw"],nr:[1,2,3,4],fc:14},{lngs:["lt"],nr:[1,2,10],fc:15},{lngs:["lv"],nr:[1,2,0],fc:16},{lngs:["mk"],nr:[1,2],fc:17},{lngs:["mnk"],nr:[0,1,2],fc:18},{lngs:["mt"],nr:[1,2,11,20],fc:19},{lngs:["or"],nr:[2,1],fc:2},{lngs:["ro"],nr:[1,2,20],fc:20},{lngs:["sl"],nr:[5,1,2,3],fc:21}],l={1:function(e){return+(e>1)},2:function(e){return+(1!=e)},3:function(e){return 0},4:function(e){return+(e%10==1&&e%100!=11?0:e%10>=2&&e%10<=4&&(e%100<10||e%100>=20)?1:2)},5:function(e){return+(0===e?0:1==e?1:2==e?2:e%100>=3&&e%100<=10?3:e%100>=11?4:5)},6:function(e){return+(1==e?0:e>=2&&e<=4?1:2)},7:function(e){return+(1==e?0:e%10>=2&&e%10<=4&&(e%100<10||e%100>=20)?1:2)},8:function(e){return+(1==e?0:2==e?1:8!=e&&11!=e?2:3)},9:function(e){return+(e>=2)},10:function(e){return+(1==e?0:2==e?1:e<7?2:e<11?3:4)},11:function(e){return+(1==e||11==e?0:2==e||12==e?1:e>2&&e<20?2:3)},12:function(e){return+(e%10!=1||e%100==11)},13:function(e){return+(0!==e)},14:function(e){return+(1==e?0:2==e?1:3==e?2:3)},15:function(e){return+(e%10==1&&e%100!=11?0:e%10>=2&&(e%100<10||e%100>=20)?1:2)},16:function(e){return+(e%10==1&&e%100!=11?0:0!==e?1:2)},17:function(e){return+(1==e||e%10==1?0:1)},18:function(e){return+(0==e?0:1==e?1:2)}, +19:function(e){return+(1==e?0:0===e||e%100>1&&e%100<11?1:e%100>10&&e%100<20?2:3)},20:function(e){return+(1==e?0:0===e||e%100>0&&e%100<20?1:2)},21:function(e){return+(e%100==1?1:e%100==2?2:e%100==3||e%100==4?3:0)}},f=function(){function e(t){var n=arguments.length<=1||void 0===arguments[1]?{}:arguments[1];o(this,e),this.languageUtils=t,this.options=n,this.logger=u.default.create("pluralResolver"),this.rules=i()}return e.prototype.addRule=function(e,t){this.rules[e]=t},e.prototype.getRule=function(e){return this.rules[this.languageUtils.getLanguagePartFromCode(e)]},e.prototype.needsPlural=function(e){var t=this.getRule(e);return!(t&&t.numbers.length<=1)},e.prototype.getSuffix=function(e,t){var n,r=this,o=this.getRule(e);return o?(n=function(){var e,n,i;return 1===o.numbers.length?{v:""}:(e=o.noAbs?o.plurals(t):o.plurals(Math.abs(t)),n=o.numbers[e],2===o.numbers.length&&1===o.numbers[0]&&(2===n?n="plural":1===n&&(n="")),i=function(){return r.options.prepend&&""+n?r.options.prepend+""+n:""+n},"v1"===r.options.compatibilityJSON?1===n?{v:""}:"number"==typeof n?{v:"_plural_"+n}:{v:i()}:"v2"===r.options.compatibilityJSON||2===o.numbers.length&&1===o.numbers[0]?{v:i()}:2===o.numbers.length&&1===o.numbers[0]?{v:i()}:{v:r.options.prepend&&""+e?r.options.prepend+""+e:""+e})}(),"object"===(void 0===n?"undefined":a(n))?n.v:void 0):(this.logger.warn("no plural rule found for: "+e),"")},e}(),t.default=f},function(e,t,n){"use strict";function r(e){var t,n;if(e&&e.__esModule)return e;if(t={},null!=e)for(n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n]);return t.default=e,t}function o(e){return e&&e.__esModule?e:{default:e}}function i(e,t){var n,r,o,i=Object.getOwnPropertyNames(t);for(n=0;n-1&&this.options.ns.splice(t,1)},t.prototype.getResource=function(e,t,n){var r,o=arguments.length<=3||void 0===arguments[3]?{}:arguments[3],i=o.keySeparator||this.options.keySeparator;return void 0===i&&(i="."),r=[e,t],n&&"string"!=typeof n&&(r=r.concat(n)),n&&"string"==typeof n&&(r=r.concat(i?n.split(i):n)),e.indexOf(".")>-1&&(r=e.split(".")),d.getPath(this.data,r)},t.prototype.addResource=function(e,t,n,r){var o,i=arguments.length<=4||void 0===arguments[4]?{silent:!1}:arguments[4],a=this.options.keySeparator;void 0===a&&(a="."),o=[e,t],n&&(o=o.concat(a?n.split(a):n)),e.indexOf(".")>-1&&(o=e.split("."),r=t,t=o[1]),this.addNamespaces(t),d.setPath(this.data,o,r),i.silent||this.emit("added",e,t,n,r)},t.prototype.addResources=function(e,t,n){for(var r in n)"string"==typeof n[r]&&this.addResource(e,t,r,n[r],{silent:!0});this.emit("added",e,t,n)},t.prototype.addResourceBundle=function(e,t,n,r,o){var i,a=[e,t];e.indexOf(".")>-1&&(a=e.split("."),r=n,n=t,t=a[1]),this.addNamespaces(t),i=d.getPath(this.data,a)||{},r?d.deepExtend(i,n,o):i=c({},i,n),d.setPath(this.data,a,i),this.emit("added",e,t,n)},t.prototype.removeResourceBundle=function(e,t){this.hasResourceBundle(e,t)&&delete this.data[e][t],this.removeNamespaces(t),this.emit("removed",e,t)},t.prototype.hasResourceBundle=function(e,t){return void 0!==this.getResource(e,t)},t.prototype.getResourceBundle=function(e,t){return t||(t=this.options.defaultNS),"v1"===this.options.compatibilityAPI?c({},this.getResource(e,t)):this.getResource(e,t)},t.prototype.toJSON=function(){return this.data},t}(f.default),t.default=h},function(e,t,n){"use strict";function r(e){var t,n;if(e&&e.__esModule)return e;if(t={},null!=e)for(n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n]);return t.default=e,t}function o(e){return e&&e.__esModule?e:{default:e}}function i(e,t){var n,r,o,i=Object.getOwnPropertyNames(t);for(n=0;n-1&&(r=e.split(o),n=r[0],e=r[1]),"string"==typeof n&&(n=[n]),{key:e,namespaces:n}},t.prototype.translate=function(e){var t,n,r,o,i,a,s,u,f,p,d,h,m,g,y,b,_=arguments.length<=1||void 0===arguments[1]?{}:arguments[1];if("object"!==(void 0===_?"undefined":l(_))?_=this.options.overloadTranslationOptionHandler(arguments):"v1"===this.options.compatibilityAPI&&(_=v.convertTOptions(_)),void 0===e||null===e||""===e)return"";if("number"==typeof e&&(e+=""),"string"==typeof e&&(e=[e]),(t=_.lng||this.language)&&"cimode"===t.toLowerCase())return e[e.length-1];if(n=_.keySeparator||this.options.keySeparator||".",r=this.extractFromKey(e[e.length-1],_),o=r.key,i=r.namespaces,a=i[i.length-1],s=this.resolve(e,_),u=Object.prototype.toString.apply(s),f=["[object Number]","[object Function]","[object RegExp]"],p=void 0!==_.joinArrays?_.joinArrays:this.options.joinArrays,s&&"string"!=typeof s&&f.indexOf(u)<0&&(!p||"[object Array]"!==u)){if(!_.returnObjects&&!this.options.returnObjects)return this.logger.warn("accessing an object - but returnObjects options is not enabled!"),this.options.returnedObjectHandler?this.options.returnedObjectHandler(o,s,_):"key '"+o+" ("+this.language+")' returned an object instead of string.";d="[object Array]"===u?[]:{};for(h in s)d[h]=this.translate(""+o+n+h,c({joinArrays:!1,ns:i},_));s=d}else if(p&&"[object Array]"===u)(s=s.join(p))&&(s=this.extendTranslation(s,o,_));else{if(m=!1,g=!1,this.isValidLookup(s)||void 0===_.defaultValue||(m=!0,s=_.defaultValue),this.isValidLookup(s)||(g=!0,s=o),g||m){if(this.logger.log("missingKey",t,a,o,s),y=[],"fallback"===this.options.saveMissingTo&&this.options.fallbackLng&&this.options.fallbackLng[0])for(b=0;b1?t-1:0),r=1;r1?t-1:0),r=1;r1?t-1:0),r=1;r=0?"rtl":"ltr":"rtl"},t.prototype.createInstance=function(){return new t(arguments.length<=0||void 0===arguments[0]?{}:arguments[0],arguments[1])},t.prototype.cloneInstance=function(){var e=this,n=arguments.length<=0||void 0===arguments[0]?{}:arguments[0],r=arguments[1],o=new t(l({},n,this.options,{isClone:!0}),r);return["store","translator","services","language"].forEach(function(t){o[t]=e[t]}),o},t}(h.default),t.default=new L},function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}var o,i;Object.defineProperty(t,"__esModule",{value:!0}),o=n(720),i=r(o),t.default=i.default},function(e,t,n){var r,o,i;!function(a){o=[n(22)],r=a,void 0!==(i="function"==typeof r?r.apply(t,o):r)&&(e.exports=i)}(function(e){function t(e){return s.raw?e:encodeURIComponent(e)}function n(e){return s.raw?e:decodeURIComponent(e)}function r(e){return t(s.json?JSON.stringify(e):e+"")}function o(e){0===e.indexOf('"')&&(e=e.slice(1,-1).replace(/\\"/g,'"').replace(/\\\\/g,"\\"));try{return e=decodeURIComponent(e.replace(a," ")),s.json?JSON.parse(e):e}catch(e){}}function i(t,n){var r=s.raw?t:o(t);return e.isFunction(n)?n(r):r}var a=/\+/g,s=e.cookie=function(o,a,u){var c,l,f,p,d,h,m,g,y;if(void 0!==a&&!e.isFunction(a))return u=e.extend({},s.defaults,u),"number"==typeof u.expires&&(c=u.expires,l=u.expires=new Date,l.setTime(+l+864e5*c)),document.cookie=t(o)+"="+r(a)+(u.expires?"; expires="+u.expires.toUTCString():"")+(u.path?"; path="+u.path:"")+(u.domain?"; domain="+u.domain:"")+(u.secure?"; secure":"");for(f=o?void 0:{},p=document.cookie?document.cookie.split("; "):[],d=0,h=p.length;d"'`=\/]/g,function(e){return b[e]})}function u(t,n){function o(){if(d&&!h)for(;p.length;)delete u[p.pop()];else p=[];d=!1,h=!1}function i(e){if("string"==typeof e&&(e=e.split(w,2)),!g(e)||2!==e.length)throw Error("Invalid tags: "+e);m=RegExp(r(e[0])+"\\s*"),y=RegExp("\\s*"+r(e[1])),v=RegExp("\\s*"+r("}"+e[1]))}var s,u,p,d,h,m,y,v,b,k,E,S,M,O,N,D,P;if(!t)return[];for(s=[],u=[],p=[],d=!1,h=!1,i(n||e.tags),b=new f(t);!b.eos();){if(k=b.pos,S=b.scanUntil(m))for(D=0,P=S.length;D0?s[s.length-1][4]:i;break;default:a.push(t)}return i}function f(e){this.string=e,this.tail=e,this.pos=0}function p(e,t){this.view=e,this.cache={".":this.view},this.parent=t}function d(){this.cache={}}var h,m=Object.prototype.toString,g=Array.isArray||function(e){return"[object Array]"===m.call(e)},y=RegExp.prototype.test,v=/\S/,b={"&":"&","<":"<",">":">",'"':""","'":"'","/":"/","`":"`","=":"="},_=/\s*/,w=/\s+/,x=/\s*=/,C=/\s*\}/,T=/#|\^|\/|>|\{|&|=|!/;f.prototype.eos=function(){return""===this.tail},f.prototype.scan=function(e){var t,n=this.tail.match(e);return n&&0===n.index?(t=n[0], +this.tail=this.tail.substring(t.length),this.pos+=t.length,t):""},f.prototype.scanUntil=function(e){var t,n=this.tail.search(e);switch(n){case-1:t=this.tail,this.tail="";break;case 0:t="";break;default:t=this.tail.substring(0,n),this.tail=this.tail.substring(n)}return this.pos+=t.length,t},p.prototype.push=function(e){return new p(e,this)},p.prototype.lookup=function(e){var n,r,i,a,s,u=this.cache;if(u.hasOwnProperty(e))n=u[e];else{for(r=this,s=!1;r;){if(e.indexOf(".")>0)for(n=r.view,i=e.split("."),a=0;null!=n&&a"===i?a=this.renderPartial(o,t,n,r):"&"===i?a=this.unescapedValue(o,t):"name"===i?a=this.escapedValue(o,t):"text"===i&&(a=this.rawValue(o)),void 0!==a&&(c+=a);return c},d.prototype.renderSection=function(e,n,r,o){function i(e){return u.render(e,n,r)}var a,s,u=this,c="",l=n.lookup(e[1]);if(l){if(g(l))for(a=0,s=l.length;a","/":"?","\\":"|"}},e.each(["keydown","keyup","keypress"],function(){e.event.special[this]={add:t}})}(jQuery)},,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,function(e,t){"use strict";!function(){var e,t,n,r,o,i;window.parent!==window&&window.CanvasRenderingContext2D&&window.TextMetrics&&(t=window.CanvasRenderingContext2D.prototype)&&t.hasOwnProperty("font")&&t.hasOwnProperty("mozTextStyle")&&"function"==typeof t.__lookupSetter__&&(n=t.__lookupSetter__("font"))&&(t.__defineSetter__("font",function(e){try{return n.call(this,e)}catch(e){if("NS_ERROR_FAILURE"!==e.name)throw e}}),r=t.measureText,e=function(){this.width=0,this.isFake=!0,this.__proto__=window.TextMetrics.prototype},t.measureText=function(t){try{return r.apply(this,arguments)}catch(t){if("NS_ERROR_FAILURE"!==t.name)throw t;return new e}},o=t.fillText,t.fillText=function(e,t,n,r){try{o.apply(this,arguments)}catch(e){if("NS_ERROR_FAILURE"!==e.name)throw e}},i=t.strokeText,t.strokeText=function(e,t,n,r){try{i.apply(this,arguments)}catch(e){if("NS_ERROR_FAILURE"!==e.name)throw e}})}()},function(e,t){!function(){var e,t,n,r,o=document.createElement("a").classList;o&&(e=Object.getPrototypeOf(o),t=e.add,n=e.remove,r=e.toggle,o.add("a","b"),o.toggle("a",!0),o.contains("b")||(e.add=function(e){for(var n=0;nn)&&(r.top%1n)||(o=Math.round(parseFloat(l.css("margin-left")))||0,i=Math.round(parseFloat(l.css("margin-top")))||0,l.css({"margin-left":o+"px","margin-top":i+"px"}),a=c.getBoundingClientRect(),s=-a.left%1,s>0&&(s-=1),s<-.5&&(s+=1),u=-a.top%1,u>0&&(u-=1),u<-.5&&(u+=1),l.css({"margin-left":o+s+"px","margin-top":i+u+"px"})))}),this}}(jQuery)},function(e,t){"use strict";!function(e,t){function n(){this._state=[],this._defaults={classHolder:"sbHolder",classHolderDisabled:"sbHolderDisabled",classHolderOpen:"sbHolderOpen",classSelector:"sbSelector",classOptions:"sbOptions",classGroup:"sbGroup",classSub:"sbSub",classDisabled:"sbDisabled",classToggleOpen:"sbToggleOpen",classToggle:"sbToggle",classSeparator:"sbSeparator",useCustomPrependWithSelector:"",customPrependSelectorClass:"",speed:200,slidesUp:!1,effect:"slide",onChange:null,beforeOpen:null,onOpen:null,onClose:null}}function r(t,n,r,o){function i(){n.removeClass(t.settings.customPrependSelectorClass),t._lastSelectorPrepend&&(t._lastSelectorPrepend.remove(),delete t._lastSelectorPrepend),r.data("custom-option-prepend")&&(t.settings.customPrependSelectorClass&&n.addClass(t.settings.customPrependSelectorClass),t._lastSelectorPrepend=e(r.data("custom-option-prepend")).clone(),n[t.settings.useCustomPrependWithSelector](t._lastSelectorPrepend))}t.settings.useCustomPrependWithSelector&&(o?t._onAttachCallback=i:i())}var o="selectbox",i=!1,a=!0 +;e.extend(n.prototype,{_refreshSelectbox:function(e,t){if(!e)return i;var n=this._getInst(e);return null==n?i:(this._fillList(e,n,t),a)},_isOpenSelectbox:function(e){return e?this._getInst(e).isOpen:i},_isDisabledSelectbox:function(e){return e?this._getInst(e).isDisabled:i},_attachSelectbox:function(t,n){function r(){var t,n=this.attr("id").split("_")[1];for(t in u._state)t!==n&&u._state.hasOwnProperty(t)&&e(":input[sb='"+t+"']")[0]&&u._closeSelectbox(e(":input[sb='"+t+"']")[0])}function a(n){s.children().each(function(r){var o,i=e(this);if(i.is(":selected")){if(38==n&&r>0)return o=e(s.children()[r-1]),u._changeSelectbox(t,o.val(),o.text()),!1;if(40==n&&r",{id:"sbHolder_"+c.uid,class:c.settings.classHolder}),m=s.data("selectbox-css"),m&&l.css(m),f=e("",{id:"sbSelector_"+c.uid,href:"#",class:c.settings.classSelector,click:function(n){n.preventDefault(),n.stopPropagation(),r.apply(e(this),[]);var o=e(this).attr("id").split("_")[1];u._state[o]?u._closeSelectbox(t):(u._openSelectbox(t),p.focus())},keyup:function(e){a(e.keyCode)}}),p=e("",{id:"sbToggle_"+c.uid,href:"#",class:c.settings.classToggle,click:function(n){n.preventDefault(),n.stopPropagation(),r.apply(e(this),[]);var o=e(this).attr("id").split("_")[1];u._state[o]?u._closeSelectbox(t):(u._openSelectbox(t),p.focus())},keyup:function(e){a(e.keyCode)}}),e('
').appendTo(p),p.appendTo(l),d=e("
").addClass("ui-effects-wrapper").css({fontSize:"100%",background:"transparent",border:"none",margin:0,padding:0});return t.wrap(r),r=t.parent(),"static"==t.css("position")?(r.css({position:"relative"}),t.css({position:"relative"})):(e.extend(n,{position:t.css("position"),zIndex:t.css("z-index")}),e.each(["top","left","bottom","right"],function(e,r){n[r]=t.css(r),isNaN(parseInt(n[r],10))&&(n[r]="auto")}),t.css({position:"relative",top:0,left:0,right:"auto",bottom:"auto"})),r.css(n).show()},removeWrapper:function(e){return e.parent().is(".ui-effects-wrapper")?e.parent().replaceWith(e):e},setTransition:function(t,n,r,o){return o=o||{},e.each(n,function(e,n){unit=t.cssUnit(n),unit[0]>0&&(o[n]=unit[0]*r+unit[1])}),o}}),e.fn.extend({effect:function(t,n,r,o){ +var i=s.apply(this,arguments),a={options:i[1],duration:i[2],callback:i[3]},u=a.options.mode,c=e.effects[t];return e.fx.off||!c?u?this[u](a.duration,a.callback):this.each(function(){a.callback&&a.callback.call(this)}):c.call(this,a)},_show:e.fn.show,show:function(e){if(u(e))return this._show.apply(this,arguments);var t=s.apply(this,arguments);return t[1].mode="show",this.effect.apply(this,t)},_hide:e.fn.hide,hide:function(e){if(u(e))return this._hide.apply(this,arguments);var t=s.apply(this,arguments);return t[1].mode="hide",this.effect.apply(this,t)},__toggle:e.fn.toggle,toggle:function(t){if(u(t)||"boolean"==typeof t||e.isFunction(t))return this.__toggle.apply(this,arguments);var n=s.apply(this,arguments);return n[1].mode="toggle",this.effect.apply(this,n)},cssUnit:function(t){var n=this.css(t),r=[];return e.each(["em","px","%","pt"],function(e,t){n.indexOf(t)>0&&(r=[parseFloat(n),t])}),r}}),e.easing.jswing=e.easing.swing,e.extend(e.easing,{def:"easeOutQuad",swing:function(t,n,r,o,i){return e.easing[e.easing.def](t,n,r,o,i)},easeInQuad:function(e,t,n,r,o){return r*(t/=o)*t+n},easeOutQuad:function(e,t,n,r,o){return-r*(t/=o)*(t-2)+n},easeInOutQuad:function(e,t,n,r,o){return(t/=o/2)<1?r/2*t*t+n:-r/2*(--t*(t-2)-1)+n},easeInCubic:function(e,t,n,r,o){return r*(t/=o)*t*t+n},easeOutCubic:function(e,t,n,r,o){return r*((t=t/o-1)*t*t+1)+n},easeInOutCubic:function(e,t,n,r,o){return(t/=o/2)<1?r/2*t*t*t+n:r/2*((t-=2)*t*t+2)+n},easeInQuart:function(e,t,n,r,o){return r*(t/=o)*t*t*t+n},easeOutQuart:function(e,t,n,r,o){return-r*((t=t/o-1)*t*t*t-1)+n},easeInOutQuart:function(e,t,n,r,o){return(t/=o/2)<1?r/2*t*t*t*t+n:-r/2*((t-=2)*t*t*t-2)+n},easeInQuint:function(e,t,n,r,o){return r*(t/=o)*t*t*t*t+n},easeOutQuint:function(e,t,n,r,o){return r*((t=t/o-1)*t*t*t*t+1)+n},easeInOutQuint:function(e,t,n,r,o){return(t/=o/2)<1?r/2*t*t*t*t*t+n:r/2*((t-=2)*t*t*t*t+2)+n},easeInSine:function(e,t,n,r,o){return-r*Math.cos(t/o*(Math.PI/2))+r+n},easeOutSine:function(e,t,n,r,o){return r*Math.sin(t/o*(Math.PI/2))+n},easeInOutSine:function(e,t,n,r,o){return-r/2*(Math.cos(Math.PI*t/o)-1)+n},easeInExpo:function(e,t,n,r,o){return 0==t?n:r*Math.pow(2,10*(t/o-1))+n},easeOutExpo:function(e,t,n,r,o){return t==o?n+r:r*(1-Math.pow(2,-10*t/o))+n},easeInOutExpo:function(e,t,n,r,o){return 0==t?n:t==o?n+r:(t/=o/2)<1?r/2*Math.pow(2,10*(t-1))+n:r/2*(2-Math.pow(2,-10*--t))+n},easeInCirc:function(e,t,n,r,o){return-r*(Math.sqrt(1-(t/=o)*t)-1)+n},easeOutCirc:function(e,t,n,r,o){return r*Math.sqrt(1-(t=t/o-1)*t)+n},easeInOutCirc:function(e,t,n,r,o){return(t/=o/2)<1?-r/2*(Math.sqrt(1-t*t)-1)+n:r/2*(Math.sqrt(1-(t-=2)*t)+1)+n},easeInElastic:function(e,t,n,r,o){var i=0,a=r;return 0==t?n:1==(t/=o)?n+r:(i||(i=.3*o),a=9||t.button?this._mouseStarted?(this._mouseDrag(t),t.preventDefault()):(this._mouseDistanceMet(t)&&this._mouseDelayMet(t)&&(this._mouseStarted=!1!==this._mouseStart(this._mouseDownEvent,t),this._mouseStarted?this._mouseDrag(t):this._mouseUp(t)),!this._mouseStarted):this._mouseUp(t)},_mouseUp:function(t){return e(document).unbind("mousemove."+this.widgetName,this._mouseMoveDelegate).unbind("mouseup."+this.widgetName,this._mouseUpDelegate), +this._mouseStarted&&(this._mouseStarted=!1,t.target==this._mouseDownEvent.target&&e.data(t.target,this.widgetName+".preventClickEvent",!0),this._mouseStop(t)),!1},_mouseDistanceMet:function(e){return Math.max(Math.abs(this._mouseDownEvent.pageX-e.pageX),Math.abs(this._mouseDownEvent.pageY-e.pageY))>=this.options.distance},_mouseDelayMet:function(e){return this.mouseDelayMet},_mouseStart:function(e){},_mouseDrag:function(e){},_mouseStop:function(e){},_mouseCapture:function(e){return!0}})}(jQuery)},function(e,t){!function(e,t){e.ui=e.ui||{};var n=/left|center|right/,r=/top|center|bottom/,o="center",i=e.fn.position,a=e.fn.offset;e.fn.position=function(t){if(!t||!t.of)return i.apply(this,arguments);t=e.extend({},t);var a,s,u,c=e(t.of),l=c[0],f=(t.collision||"flip").split(" "),p=t.offset?t.offset.split(" "):[0,0];return 9===l.nodeType?(a=c.width(),s=c.height(),u={top:0,left:0}):l.setTimeout?(a=c.width(),s=c.height(),u={top:c.scrollTop(),left:c.scrollLeft()}):l.preventDefault?(t.at="left top",a=s=0,u={top:t.of.pageY,left:t.of.pageX}):(a=c.outerWidth(),s=c.outerHeight(),u=c.offset()),e.each(["my","at"],function(){var e=(t[this]||"").split(" ");1===e.length&&(e=n.test(e[0])?e.concat([o]):r.test(e[0])?[o].concat(e):[o,o]),e[0]=n.test(e[0])?e[0]:o,e[1]=r.test(e[1])?e[1]:o,t[this]=e}),1===f.length&&(f[1]=f[0]),p[0]=parseInt(p[0],10)||0,1===p.length&&(p[1]=p[0]),p[1]=parseInt(p[1],10)||0,"right"===t.at[0]?u.left+=a:t.at[0]===o&&(u.left+=a/2),"bottom"===t.at[1]?u.top+=s:t.at[1]===o&&(u.top+=s/2),u.left+=p[0],u.top+=p[1],this.each(function(){var n,r=e(this),i=r.outerWidth(),c=r.outerHeight(),l=parseInt(e.curCSS(this,"marginLeft",!0))||0,d=parseInt(e.curCSS(this,"marginTop",!0))||0,h=i+l+(parseInt(e.curCSS(this,"marginRight",!0))||0),m=c+d+(parseInt(e.curCSS(this,"marginBottom",!0))||0),g=e.extend({},u);"right"===t.my[0]?g.left-=i:t.my[0]===o&&(g.left-=i/2),"bottom"===t.my[1]?g.top-=c:t.my[1]===o&&(g.top-=c/2),g.left=Math.round(g.left),g.top=Math.round(g.top),n={left:g.left-l,top:g.top-d},e.each(["left","top"],function(r,o){e.ui.position[f[r]]&&e.ui.position[f[r]][o](g,{targetWidth:a,targetHeight:s,elemWidth:i,elemHeight:c,collisionPosition:n,collisionWidth:h,collisionHeight:m,offset:p,my:t.my,at:t.at})}),e.fn.bgiframe&&r.bgiframe(),r.offset(e.extend(g,{using:t.using}))})},e.ui.position={fit:{left:function(t,n){var r=e(window),o=n.collisionPosition.left+n.collisionWidth-r.width()-r.scrollLeft();t.left=o>0?t.left-o:Math.max(t.left-n.collisionPosition.left,t.left)},top:function(t,n){var r=e(window),o=n.collisionPosition.top+n.collisionHeight-r.height()-r.scrollTop();t.top=o>0?t.top-o:Math.max(t.top-n.collisionPosition.top,t.top)}},flip:{left:function(t,n){if(n.at[0]!==o){var r=e(window),i=n.collisionPosition.left+n.collisionWidth-r.width()-r.scrollLeft(),a="left"===n.my[0]?-n.elemWidth:"right"===n.my[0]?n.elemWidth:0,s="left"===n.at[0]?n.targetWidth:-n.targetWidth,u=-2*n.offset[0];t.left+=n.collisionPosition.left<0?a+s+u:i>0?a+s+u:0}},top:function(t,n){if(n.at[1]!==o){ +var r=e(window),i=n.collisionPosition.top+n.collisionHeight-r.height()-r.scrollTop(),a="top"===n.my[1]?-n.elemHeight:"bottom"===n.my[1]?n.elemHeight:0,s="top"===n.at[1]?n.targetHeight:-n.targetHeight,u=-2*n.offset[1];t.top+=n.collisionPosition.top<0?a+s+u:i>0?a+s+u:0}}}},e.offset.setOffset||(e.offset.setOffset=function(t,n){/static/.test(e.curCSS(t,"position"))&&(t.style.position="relative");var r=e(t),o=r.offset(),i=parseInt(e.curCSS(t,"top",!0),10)||0,a=parseInt(e.curCSS(t,"left",!0),10)||0,s={top:n.top-o.top+i,left:n.left-o.left+a};"using"in n?n.using.call(t,s):r.css(s)},e.fn.offset=function(t){var n=this[0];return n&&n.ownerDocument?t?this.each(function(){e.offset.setOffset(this,t)}):a.call(this):null})}(jQuery)},,,,function(e,t){!function(e,t){var n,r;e.cleanData?(n=e.cleanData,e.cleanData=function(t){for(var r,o=0;null!=(r=t[o]);o++)e(r).triggerHandler("remove");n(t)}):(r=e.fn.remove,e.fn.remove=function(t,n){return this.each(function(){return n||t&&!e.filter(t,[this]).length||e("*",this).add([this]).each(function(){e(this).triggerHandler("remove")}),r.call(e(this),t,n)})}),e.widget=function(t,n,r){var o,i,a=t.split(".")[0];t=t.split(".")[1],o=a+"-"+t,r||(r=n,n=e.Widget),e.expr[":"][o]=function(n){return!!e.data(n,t)},e[a]=e[a]||{},e[a][t]=function(e,t){arguments.length&&this._createWidget(e,t)},i=new n,i.options=e.extend(!0,{},i.options),e[a][t].prototype=e.extend(!0,i,{namespace:a,widgetName:t,widgetEventPrefix:e[a][t].prototype.widgetEventPrefix||t,widgetBaseClass:o},r),e.widget.bridge(t,e[a][t])},e.widget.bridge=function(n,r){e.fn[n]=function(o){var i="string"==typeof o,a=Array.prototype.slice.call(arguments,1),s=this;return o=!i&&a.length?e.extend.apply(null,[!0,o].concat(a)):o,i&&"_"===o.charAt(0)?s:(i?this.each(function(){var r=e.data(this,n),i=r&&e.isFunction(r[o])?r[o].apply(r,a):r;if(i!==r&&i!==t)return s=i,!1}):this.each(function(){var t=e.data(this,n);t?t.option(o||{})._init():e.data(this,n,new r(o,this))}),s)}},e.Widget=function(e,t){arguments.length&&this._createWidget(e,t)},e.Widget.prototype={widgetName:"widget",widgetEventPrefix:"",options:{disabled:!1},_createWidget:function(t,n){e.data(n,this.widgetName,this),this.element=e(n),this.options=e.extend(!0,{},this.options,this._getCreateOptions(),t);var r=this;this.element.bind("remove."+this.widgetName,function(){r.destroy()}),this._create(),this._trigger("create"),this._init()},_getCreateOptions:function(){return e.metadata&&e.metadata.get(this.element[0])[this.widgetName]},_create:function(){},_init:function(){},destroy:function(){this.element.unbind("."+this.widgetName).removeData(this.widgetName),this.widget().unbind("."+this.widgetName).removeAttr("aria-disabled").removeClass(this.widgetBaseClass+"-disabled ui-state-disabled")},widget:function(){return this.element},option:function(n,r){var o=n;if(0===arguments.length)return e.extend({},this.options);if("string"==typeof n){if(r===t)return this.options[n];o={},o[n]=r}return this._setOptions(o),this},_setOptions:function(t){var n=this;return e.each(t,function(e,t){n._setOption(e,t)}),this}, +_setOption:function(e,t){return this.options[e]=t,"disabled"===e&&this.widget()[t?"addClass":"removeClass"](this.widgetBaseClass+"-disabled ui-state-disabled").attr("aria-disabled",t),this},enable:function(){return this._setOption("disabled",!1)},disable:function(){return this._setOption("disabled",!0)},_trigger:function(t,n,r){var o,i,a=this.options[t];if(n=e.Event(n),n.type=(t===this.widgetEventPrefix?t:this.widgetEventPrefix+t).toLowerCase(),r=r||{},n.originalEvent)for(o=e.event.props.length;o;)i=e.event.props[--o],n[i]=n.originalEvent[i];return this.element.trigger(n,r),!(e.isFunction(a)&&!1===a.call(this.element[0],n,r)||n.isDefaultPrevented())}}}(jQuery)},,function(e,t,n){(function(t){"use strict";if(t._babelPolyfill)throw Error("only one instance of babel/polyfill is allowed");t._babelPolyfill=!0,n(608),n(580),n(581),n(582),n(551),n(550),n(579),n(570),n(571),n(572),n(573),n(574),n(575),n(576),n(577),n(578),n(553),n(554),n(555),n(556),n(557),n(558),n(559),n(560),n(561),n(562),n(563),n(564),n(565),n(566),n(567),n(568),n(569),n(602),n(605),n(604),n(600),n(601),n(603),n(606),n(607),n(549),n(548),n(544),n(546),n(540),n(541),n(543),n(542),n(547),n(545),n(598),n(583),n(552),n(599),n(584),n(585),n(586),n(587),n(588),n(591),n(589),n(590),n(592),n(593),n(594),n(595),n(597),n(596),n(609),n(611),n(610),e.exports=n(126)}).call(t,function(){return this}())},function(e,t){"use strict";!function(){var e,t,n,r,o,i,a=function(){};for(void 0===window.console&&(window.console={}),e=window.console,t=["dir","log","time","info","warn","count","clear","debug","error","group","trace","assert","dirxml","profile","timeEnd","groupEnd","profileEnd","timeStamp","exception","table","notifyFirebug","groupCollapsed","getFirebugElement","firebug","userObjects","someMethodForAssetHashChange"],n=0,r=t.length;n "+o.stack+")

"):window.__tv_js_errors.push(e+" (found at "+t+", line "+n+" at time "+a+")"),i)try{i.apply(window,arguments)}catch(e){}}}()},function(e,t,n){"use strict";function r(e,t,n,r,o){}e.exports=r},function(e,t,n){"use strict";var r=n(66),o=n(17),i=n(438);e.exports=function(){function e(e,t,n,r,a,s){s!==i&&o(!1,"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")}function t(){return e}e.isRequired=e;var n={array:e,bool:e,func:e,number:e,object:e,string:e,symbol:e,any:e,arrayOf:t,element:e,instanceOf:t,node:e,objectOf:t,oneOf:t,oneOfType:t,shape:t};return n.checkPropTypes=r,n.PropTypes=n,n}},function(e,t,n){"use strict";var r=n(66),o=n(17),i=n(24),a=n(438),s=n(1006);e.exports=function(e,t){function n(e){var t=e&&(S&&e[S]||e[M]);if("function"==typeof t)return t}function u(e,t){ +return e===t?0!==e||1/e==1/t:e!==e&&t!==t}function c(e){this.message=e,this.stack=""}function l(e){function n(n,r,i,s,u,l,f){if(s=s||O,l=l||i,f!==a)if(t)o(!1,"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");else;return null==r[i]?n?new c(null===r[i]?"The "+u+" `"+l+"` is marked as required in `"+s+"`, but its value is `null`.":"The "+u+" `"+l+"` is marked as required in `"+s+"`, but its value is `undefined`."):null:e(r,i,s,u,l)}var r;return r=n.bind(null,!1),r.isRequired=n.bind(null,!0),r}function f(e){function t(t,n,r,o,i,a){var s,u=t[n];return C(u)!==e?(s=T(u),new c("Invalid "+o+" `"+i+"` of type `"+s+"` supplied to `"+r+"`, expected `"+e+"`.")):null}return l(t)}function p(){return l(r.thatReturnsNull)}function d(e){function t(t,n,r,o,i){var s,u,l,f;if("function"!=typeof e)return new c("Property `"+i+"` of component `"+r+"` has invalid PropType notation inside arrayOf.");if(s=t[n],!Array.isArray(s))return u=C(s),new c("Invalid "+o+" `"+i+"` of type `"+u+"` supplied to `"+r+"`, expected an array.");for(l=0;l8&&O<=11),m=32,g=String.fromCharCode(m),y={beforeInput:{phasedRegistrationNames:{bubbled:"onBeforeInput",captured:"onBeforeInputCapture"},dependencies:["topCompositionEnd","topKeyPress","topTextInput","topPaste"]},compositionEnd:{phasedRegistrationNames:{bubbled:"onCompositionEnd",captured:"onCompositionEndCapture"},dependencies:["topBlur","topCompositionEnd","topKeyDown","topKeyPress","topKeyUp","topMouseDown"]},compositionStart:{phasedRegistrationNames:{bubbled:"onCompositionStart",captured:"onCompositionStartCapture"},dependencies:["topBlur","topCompositionStart","topKeyDown","topKeyPress","topKeyUp","topMouseDown"]},compositionUpdate:{phasedRegistrationNames:{bubbled:"onCompositionUpdate",captured:"onCompositionUpdateCapture"},dependencies:["topBlur","topCompositionUpdate","topKeyDown","topKeyPress","topKeyUp","topMouseDown"]}},v=!1,b=null,_={eventTypes:y,extractEvents:function(e,t,n,r){return[c(e,t,n,r),p(e,t,n,r)]}},e.exports=_},function(e,t,n){"use strict";var r,o,i=n(439),a=n(60),s=(n(75),n(675),n(1064)),u=n(682),c=n(685),l=(n(24),c(function(e){return u(e)})),f=!1,p="cssFloat";if(a.canUseDOM){r=document.createElement("div").style;try{r.font=""}catch(e){f=!0}void 0===document.documentElement.style.cssFloat&&(p="styleFloat")}o={createMarkupForStyles:function(e,t){var n,r,o,i="";for(n in e)e.hasOwnProperty(n)&&(r=0===n.indexOf("--"),null!=(o=e[n])&&(i+=l(n)+":",i+=s(n,o,t,r)+";"));return i||null},setValueForStyles:function(e,t,n){var r,o,a,u,c,l;r=e.style;for(o in t)if(t.hasOwnProperty(o))if(a=0===o.indexOf("--"),u=s(o,t[o],n,a),"float"!==o&&"cssFloat"!==o||(o=p), +a)r.setProperty(o,u);else if(u)r[o]=u;else if(c=f&&i.shorthandPropertyExpansions[o])for(l in c)r[l]="";else r[o]=""}},e.exports=o},function(e,t,n){"use strict";function r(e,t,n){var r=M.getPooled(A.change,e,t,n);return r.type="change",T.accumulateTwoPhaseDispatches(r),r}function o(e){var t=e.nodeName&&e.nodeName.toLowerCase();return"select"===t||"input"===t&&"file"===e.type}function i(e){var t=r(I,e,N(e));S.batchedUpdates(a,t)}function a(e){C.enqueueEvents(e),C.processEventQueue(!1)}function s(e,t){L=e,I=t,L.attachEvent("onchange",i)}function u(){L&&(L.detachEvent("onchange",i),L=null,I=null)}function c(e,t){var n=O.updateValueIfChanged(e),r=!0===t.simulated&&x._allowSimulatedPassThrough;if(n||r)return e}function l(e,t){if("topChange"===e)return t}function f(e,t,n){"topFocus"===e?(u(),s(t,n)):"topBlur"===e&&u()}function p(e,t){L=e,I=t,L.attachEvent("onpropertychange",h)}function d(){L&&(L.detachEvent("onpropertychange",h),L=null,I=null)}function h(e){"value"===e.propertyName&&c(I,e)&&i(e)}function m(e,t,n){"topFocus"===e?(d(),p(t,n)):"topBlur"===e&&d()}function g(e,t,n){if("topSelectionChange"===e||"topKeyUp"===e||"topKeyDown"===e)return c(I,n)}function y(e){var t=e.nodeName;return t&&"input"===t.toLowerCase()&&("checkbox"===e.type||"radio"===e.type)}function v(e,t,n){if("topClick"===e)return c(t,n)}function b(e,t,n){if("topInput"===e||"topChange"===e)return c(t,n)}function _(e,t){var n,r;null!=e&&(n=e._wrapperState||t._wrapperState)&&n.controlled&&"number"===t.type&&(r=""+t.value,t.getAttribute("value")!==r&&t.setAttribute("value",r))}var w,x,C=n(165),T=n(166),k=n(60),E=n(32),S=n(87),M=n(91),O=n(455),N=n(301),D=n(302),P=n(457),A={change:{phasedRegistrationNames:{bubbled:"onChange",captured:"onChangeCapture"},dependencies:["topBlur","topChange","topClick","topFocus","topInput","topKeyDown","topKeyUp","topSelectionChange"]}},L=null,I=null,j=!1;k.canUseDOM&&(j=D("change")&&(!document.documentMode||document.documentMode>8)),w=!1,k.canUseDOM&&(w=D("input")&&(!("documentMode"in document)||document.documentMode>9)),x={eventTypes:A,_allowSimulatedPassThrough:!0,_isInputEventSupported:w,extractEvents:function(e,t,n,i){var a,s,u,c=t?E.getNodeFromInstance(t):window;if(o(c)?j?a=l:s=f:P(c)?w?a=b:(a=g,s=m):y(c)&&(a=v),a&&(u=a(e,t,n)))return r(u,n,i);s&&s(e,c,t),"topBlur"===e&&_(t,c)}},e.exports=x},function(e,t,n){"use strict";var r=n(25),o=n(137),i=n(60),a=n(678),s=n(66),u=(n(17),{dangerouslyReplaceNodeWithMarkup:function(e,t){if(i.canUseDOM||r("56"),t||r("57"),"HTML"===e.nodeName&&r("58"),"string"==typeof t){var n=a(t,s)[0];e.parentNode.replaceChild(n,e)}else o.replaceChildWithTree(e,t)}});e.exports=u},function(e,t){"use strict";var n=["ResponderEventPlugin","SimpleEventPlugin","TapEventPlugin","EnterLeaveEventPlugin","ChangeEventPlugin","SelectEventPlugin","BeforeInputEventPlugin"];e.exports=n},function(e,t,n){"use strict";var r=n(166),o=n(32),i=n(222),a={mouseEnter:{registrationName:"onMouseEnter",dependencies:["topMouseOut","topMouseOver"]},mouseLeave:{registrationName:"onMouseLeave", +dependencies:["topMouseOut","topMouseOver"]}},s={eventTypes:a,extractEvents:function(e,t,n,s){var u,c,l,f,p,d,h,m,g;return"topMouseOver"===e&&(n.relatedTarget||n.fromElement)?null:"topMouseOut"!==e&&"topMouseOver"!==e?null:(s.window===s?u=s:(c=s.ownerDocument,u=c?c.defaultView||c.parentWindow:window),"topMouseOut"===e?(l=t,p=n.relatedTarget||n.toElement,f=p?o.getClosestInstanceFromNode(p):null):(l=null,f=t),l===f?null:(d=null==l?u:o.getNodeFromInstance(l),h=null==f?u:o.getNodeFromInstance(f),m=i.getPooled(a.mouseLeave,l,n,s),m.type="mouseleave",m.target=d,m.relatedTarget=h,g=i.getPooled(a.mouseEnter,f,n,s),g.type="mouseenter",g.target=h,g.relatedTarget=d,r.accumulateEnterLeaveDispatches(m,g,l,f),[m,g]))}};e.exports=s},function(e,t,n){"use strict";function r(e){this._root=e,this._startText=this.getText(),this._fallbackText=null}var o=n(30),i=n(120),a=n(454);o(r.prototype,{destructor:function(){this._root=null,this._startText=null,this._fallbackText=null},getText:function(){return"value"in this._root?this._root.value:this._root[a()]},getData:function(){var e,t,n,r,o,i,a,s;if(this._fallbackText)return this._fallbackText;for(t=this._startText,n=t.length,o=this.getText(),i=o.length,e=0;e1?1-r:void 0,this._fallbackText=o.slice(e,s),this._fallbackText}}),i.addPoolingTo(r),e.exports=r},function(e,t,n){"use strict";var r=n(138),o=r.injection.MUST_USE_PROPERTY,i=r.injection.HAS_BOOLEAN_VALUE,a=r.injection.HAS_NUMERIC_VALUE,s=r.injection.HAS_POSITIVE_NUMERIC_VALUE,u=r.injection.HAS_OVERLOADED_BOOLEAN_VALUE,c={isCustomAttribute:RegExp.prototype.test.bind(RegExp("^(data|aria)-["+r.ATTRIBUTE_NAME_CHAR+"]*$")),Properties:{accept:0,acceptCharset:0,accessKey:0,action:0,allowFullScreen:i,allowTransparency:0,alt:0,as:0,async:i,autoComplete:0,autoPlay:i,capture:i,cellPadding:0,cellSpacing:0,charSet:0,challenge:0,checked:o|i,cite:0,classID:0,className:0,cols:s,colSpan:0,content:0,contentEditable:0,contextMenu:0,controls:i,coords:0,crossOrigin:0,data:0,dateTime:0,default:i,defer:i,dir:0,disabled:i,download:u,draggable:0,encType:0,form:0,formAction:0,formEncType:0,formMethod:0,formNoValidate:i,formTarget:0,frameBorder:0,headers:0,height:0,hidden:i,high:0,href:0,hrefLang:0,htmlFor:0,httpEquiv:0,icon:0,id:0,inputMode:0,integrity:0,is:0,keyParams:0,keyType:0,kind:0,label:0,lang:0,list:0,loop:i,low:0,manifest:0,marginHeight:0,marginWidth:0,max:0,maxLength:0,media:0,mediaGroup:0,method:0,min:0,minLength:0,multiple:o|i,muted:o|i,name:0,nonce:0,noValidate:i,open:i,optimum:0,pattern:0,placeholder:0,playsInline:i,poster:0,preload:0,profile:0,radioGroup:0,readOnly:i,referrerPolicy:0,rel:0,required:i,reversed:i,role:0,rows:s,rowSpan:a,sandbox:0,scope:0,scoped:i,scrolling:0,seamless:i,selected:o|i,shape:0,size:s,sizes:0,span:s,spellCheck:0,src:0,srcDoc:0,srcLang:0,srcSet:0,start:a,step:0,style:0,summary:0,tabIndex:0,target:0,title:0,type:0,useMap:0,value:0,width:0,wmode:0,wrap:0,about:0,datatype:0,inlist:0,prefix:0,property:0,resource:0,typeof:0,vocab:0,autoCapitalize:0, +autoCorrect:0,autoSave:0,color:0,itemProp:0,itemScope:i,itemType:0,itemID:0,itemRef:0,results:0,security:0,unselectable:0},DOMAttributeNames:{acceptCharset:"accept-charset",className:"class",htmlFor:"for",httpEquiv:"http-equiv"},DOMPropertyNames:{},DOMMutationMethods:{value:function(e,t){if(null==t)return e.removeAttribute("value");"number"!==e.type||!1===e.hasAttribute("value")?e.setAttribute("value",""+t):e.validity&&!e.validity.badInput&&e.ownerDocument.activeElement!==e&&e.setAttribute("value",""+t)}}};e.exports=c},function(e,t,n){(function(t){"use strict";function r(e,t,n,r){var o=void 0===e[n];null!=t&&o&&(e[n]=a(t,!0))}var o,i=n(139),a=n(456),s=(n(293),n(303)),u=n(459);n(24);o={instantiateChildren:function(e,t,n,o){if(null==e)return null;var i={};return u(e,r,i),i},updateChildren:function(e,t,n,r,o,u,c,l,f){var p,d,h,m,g,y;if(t||e){for(p in t)t.hasOwnProperty(p)&&(d=e&&e[p],h=d&&d._currentElement,m=t[p],null!=d&&s(h,m)?(i.receiveComponent(d,m,o,l),t[p]=d):(d&&(r[p]=i.getHostNode(d),i.unmountComponent(d,!1)),g=a(m,!0),t[p]=g,y=i.mountComponent(g,o,u,c,l,f),n.push(y)));for(p in e)!e.hasOwnProperty(p)||t&&t.hasOwnProperty(p)||(d=e[p],r[p]=i.getHostNode(d),i.unmountComponent(d,!1))}},unmountChildren:function(e,t){var n,r;for(n in e)e.hasOwnProperty(n)&&(r=e[n],i.unmountComponent(r,t))}},e.exports=o}).call(t,n(436))},function(e,t,n){"use strict";var r=n(289),o=n(1028),i={processChildrenUpdates:o.dangerouslyProcessChildrenUpdates,replaceNodeWithMarkup:r.dangerouslyReplaceNodeWithMarkup};e.exports=i},function(e,t,n){"use strict";function r(e){}function o(e,t){}function i(e){return!(!e.prototype||!e.prototype.isReactComponent)}function a(e){return!(!e.prototype||!e.prototype.isPureReactComponent)}var s,u,c,l,f,p,d=n(25),h=n(30),m=n(140),g=n(295),y=n(92),v=n(296),b=n(167),_=(n(75),n(449)),w=n(139);s=n(202),n(17),u=n(260),c=n(303),n(24),l={ImpureClass:0,PureClass:1,StatelessFunctional:2},r.prototype.render=function(){var e=b.get(this)._currentElement.type,t=e(this.props,this.context,this.updater);return o(e,t),t},f=1,p={construct:function(e){this._currentElement=e,this._rootNodeID=0,this._compositeType=null,this._instance=null,this._hostParent=null,this._hostContainerInfo=null,this._updateBatchNumber=null,this._pendingElement=null,this._pendingStateQueue=null,this._pendingReplaceState=!1,this._pendingForceUpdate=!1,this._renderedNodeType=null,this._renderedComponent=null,this._context=null,this._mountOrder=0,this._topLevelWrapper=null,this._pendingCallbacks=null,this._calledComponentWillUnmount=!1},mountComponent:function(e,t,n,u){var c,p,h,g,y,v,_,w,x;return this._context=u,this._mountOrder=f++,this._hostParent=t,this._hostContainerInfo=n,c=this._currentElement.props,p=this._processContext(u),h=this._currentElement.type,g=e.getUpdateQueue(),y=i(h),v=this._constructComponent(y,c,p,g),y||null!=v&&null!=v.render?a(h)?this._compositeType=l.PureClass:this._compositeType=l.ImpureClass:(_=v,o(h,_),null===v||!1===v||m.isValidElement(v)||d("105",h.displayName||h.name||"Component"),v=new r(h), +this._compositeType=l.StatelessFunctional),v.props=c,v.context=p,v.refs=s,v.updater=g,this._instance=v,b.set(v,this),w=v.state,void 0===w&&(v.state=w=null),("object"!=typeof w||Array.isArray(w))&&d("106",this.getName()||"ReactCompositeComponent"),this._pendingStateQueue=null,this._pendingReplaceState=!1,this._pendingForceUpdate=!1,x=v.unstable_handleError?this.performInitialMountWithErrorHandling(_,t,n,e,u):this.performInitialMount(_,t,n,e,u),v.componentDidMount&&e.getReactMountReady().enqueue(v.componentDidMount,v),x},_constructComponent:function(e,t,n,r){return this._constructComponentWithoutOwner(e,t,n,r)},_constructComponentWithoutOwner:function(e,t,n,r){var o=this._currentElement.type;return e?new o(t,n,r):o(t,n,r)},performInitialMountWithErrorHandling:function(e,t,n,r,o){var i,a=r.checkpoint();try{i=this.performInitialMount(e,t,n,r,o)}catch(s){r.rollback(a),this._instance.unstable_handleError(s),this._pendingStateQueue&&(this._instance.state=this._processPendingState(this._instance.props,this._instance.context)),a=r.checkpoint(),this._renderedComponent.unmountComponent(!0),r.rollback(a),i=this.performInitialMount(e,t,n,r,o)}return i},performInitialMount:function(e,t,n,r,o){var i,a,s=this._instance,u=0;return s.componentWillMount&&(s.componentWillMount(),this._pendingStateQueue&&(s.state=this._processPendingState(s.props,s.context))),void 0===e&&(e=this._renderValidatedComponent()),i=_.getType(e),this._renderedNodeType=i,a=this._instantiateReactComponent(e,i!==_.EMPTY),this._renderedComponent=a,w.mountComponent(a,r,t,n,this._processChildContext(o),u)},getHostNode:function(){return w.getHostNode(this._renderedComponent)},unmountComponent:function(e){var t,n;this._renderedComponent&&(t=this._instance,t.componentWillUnmount&&!t._calledComponentWillUnmount&&(t._calledComponentWillUnmount=!0,e?(n=this.getName()+".componentWillUnmount()",v.invokeGuardedCallback(n,t.componentWillUnmount.bind(t))):t.componentWillUnmount()),this._renderedComponent&&(w.unmountComponent(this._renderedComponent,e),this._renderedNodeType=null,this._renderedComponent=null,this._instance=null),this._pendingStateQueue=null,this._pendingReplaceState=!1,this._pendingForceUpdate=!1,this._pendingCallbacks=null,this._pendingElement=null,this._context=null,this._rootNodeID=0,this._topLevelWrapper=null,b.remove(t))},_maskContext:function(e){var t,n,r=this._currentElement.type,o=r.contextTypes;if(!o)return s;t={};for(n in o)t[n]=e[n];return t},_processContext:function(e){var t=this._maskContext(e);return t},_processChildContext:function(e){var t,n,r=this._currentElement.type,o=this._instance;if(o.getChildContext&&(t=o.getChildContext()),t){"object"!=typeof r.childContextTypes&&d("107",this.getName()||"ReactCompositeComponent");for(n in t)n in r.childContextTypes||d("108",this.getName()||"ReactCompositeComponent",n);return h({},e,t)}return e},_checkContextTypes:function(e,t,n){},receiveComponent:function(e,t,n){var r=this._currentElement,o=this._context;this._pendingElement=null,this.updateComponent(t,r,e,o,n)},performUpdateIfNecessary:function(e){ +null!=this._pendingElement?w.receiveComponent(this,this._pendingElement,e,this._context):null!==this._pendingStateQueue||this._pendingForceUpdate?this.updateComponent(e,this._currentElement,this._currentElement,this._context,this._context):this._updateBatchNumber=null},updateComponent:function(e,t,n,r,o){var i,a,s,c,f,p,h=this._instance;null==h&&d("136",this.getName()||"ReactCompositeComponent"),i=!1,this._context===o?a=h.context:(a=this._processContext(o),i=!0),s=t.props,c=n.props,t!==n&&(i=!0),i&&h.componentWillReceiveProps&&h.componentWillReceiveProps(c,a),f=this._processPendingState(c,a),p=!0,this._pendingForceUpdate||(h.shouldComponentUpdate?p=h.shouldComponentUpdate(c,f,a):this._compositeType===l.PureClass&&(p=!u(s,c)||!u(h.state,f))),this._updateBatchNumber=null,p?(this._pendingForceUpdate=!1,this._performComponentUpdate(n,c,f,a,e,o)):(this._currentElement=n,this._context=o,h.props=c,h.state=f,h.context=a)},_processPendingState:function(e,t){var n,r,o,i=this._instance,a=this._pendingStateQueue,s=this._pendingReplaceState;if(this._pendingReplaceState=!1,this._pendingStateQueue=null,!a)return i.state;if(s&&1===a.length)return a[0];for(n=h({},s?a[0]:i.state),r=s?1:0;r=0||null!=t.is}function m(e){var t=e.type;d(t),this._currentElement=e,this._tag=t.toLowerCase(),this._namespaceURI=null,this._renderedChildren=null,this._previousStyle=null,this._previousStyleCopy=null,this._hostNode=null,this._hostParent=null,this._rootNodeID=0,this._domID=0,this._hostContainerInfo=null,this._wrapperState=null,this._topLevelWrapper=null, +this._flags=0}var g,y,v,b,_,w,x,C,T=n(25),k=n(30),E=n(1011),S=n(1013),M=n(137),O=n(290),N=n(138),D=n(441),P=n(165),A=n(291),L=n(221),I=n(442),j=n(32),R=n(1029),F=n(1030),U=n(443),H=n(1033),Y=(n(75),n(1042)),W=n(1047),B=(n(66),n(224)),V=(n(17),n(302),n(260),n(455)),q=(n(304),n(24),I),z=P.deleteListener,$=j.getNodeFromInstance,G=L.listenTo,K=A.registrationNameModules,X={string:!0,number:!0},Q="style",J="__html",Z={children:null,dangerouslySetInnerHTML:null,suppressContentEditableWarning:null},ee=11;g={topAbort:"abort",topCanPlay:"canplay",topCanPlayThrough:"canplaythrough",topDurationChange:"durationchange",topEmptied:"emptied",topEncrypted:"encrypted",topEnded:"ended",topError:"error",topLoadedData:"loadeddata",topLoadedMetadata:"loadedmetadata",topLoadStart:"loadstart",topPause:"pause",topPlay:"play",topPlaying:"playing",topProgress:"progress",topRateChange:"ratechange",topSeeked:"seeked",topSeeking:"seeking",topStalled:"stalled",topSuspend:"suspend",topTimeUpdate:"timeupdate",topVolumeChange:"volumechange",topWaiting:"waiting"},y={area:!0,base:!0,br:!0,col:!0,embed:!0,hr:!0,img:!0,input:!0,keygen:!0,link:!0,meta:!0,param:!0,source:!0,track:!0,wbr:!0},v={listing:!0,pre:!0,textarea:!0},b=k({menuitem:!0},y),_=/^[a-zA-Z][a-zA-Z:_\.\-\d]*$/,w={},x={}.hasOwnProperty,C=1,m.displayName="ReactDOMComponent",m.Mixin={mountComponent:function(e,t,n,r){var i,a,p,d,h,m,g,v,b,_,w;switch(this._rootNodeID=C++,this._domID=n._idCounter++,this._hostParent=t,this._hostContainerInfo=n,i=this._currentElement.props,this._tag){case"audio":case"form":case"iframe":case"img":case"link":case"object":case"source":case"video":this._wrapperState={listeners:null},e.getReactMountReady().enqueue(f,this);break;case"input":R.mountWrapper(this,i,t),i=R.getHostProps(this,i),e.getReactMountReady().enqueue(l,this),e.getReactMountReady().enqueue(f,this);break;case"option":F.mountWrapper(this,i,t),i=F.getHostProps(this,i);break;case"select":U.mountWrapper(this,i,t),i=U.getHostProps(this,i),e.getReactMountReady().enqueue(f,this);break;case"textarea":H.mountWrapper(this,i,t),i=H.getHostProps(this,i),e.getReactMountReady().enqueue(l,this),e.getReactMountReady().enqueue(f,this)}switch(o(this,i),null!=t?(a=t._namespaceURI,p=t._tag):n._tag&&(a=n._namespaceURI,p=n._tag),(null==a||a===O.svg&&"foreignobject"===p)&&(a=O.html),a===O.html&&("svg"===this._tag?a=O.svg:"math"===this._tag&&(a=O.mathml)),this._namespaceURI=a,e.useCreateElement?(h=n._ownerDocument,a===O.html?"script"===this._tag?(g=h.createElement("div"),v=this._currentElement.type,g.innerHTML="<"+v+">",m=g.removeChild(g.firstChild)):m=i.is?h.createElement(this._currentElement.type,i.is):h.createElement(this._currentElement.type):m=h.createElementNS(a,this._currentElement.type),j.precacheNode(this,m),this._flags|=q.hasCachedChildNodes,this._hostParent||D.setAttributeForRoot(m),this._updateDOMProperties(null,i,e),b=M(m),this._createInitialChildren(e,i,r,b),d=b):(_=this._createOpenTagMarkupAndPutListeners(e,i),w=this._createContentMarkup(e,i,r), +d=!w&&y[this._tag]?_+"/>":_+">"+w+""),this._tag){case"input":e.getReactMountReady().enqueue(s,this),i.autoFocus&&e.getReactMountReady().enqueue(E.focusDOMComponent,this);break;case"textarea":e.getReactMountReady().enqueue(u,this),i.autoFocus&&e.getReactMountReady().enqueue(E.focusDOMComponent,this);break;case"select":case"button":i.autoFocus&&e.getReactMountReady().enqueue(E.focusDOMComponent,this);break;case"option":e.getReactMountReady().enqueue(c,this)}return d},_createOpenTagMarkupAndPutListeners:function(e,t){var n,r,o,a="<"+this._currentElement.type;for(n in t)t.hasOwnProperty(n)&&null!=(r=t[n])&&(K.hasOwnProperty(n)?r&&i(this,n,r,e):(n===Q&&(r&&(r=this._previousStyleCopy=k({},t.style)),r=S.createMarkupForStyles(r,this)),o=null,null!=this._tag&&h(this._tag,t)?Z.hasOwnProperty(n)||(o=D.createMarkupForCustomAttribute(n,r)):o=D.createMarkupForProperty(n,r),o&&(a+=" "+o)));return e.renderToStaticMarkup?a:(this._hostParent||(a+=" "+D.createMarkupForRoot()),a+=" "+D.createMarkupForID(this._domID))},_createContentMarkup:function(e,t,n){var r,o,i,a="",s=t.dangerouslySetInnerHTML;return null!=s?null!=s.__html&&(a=s.__html):(r=X[typeof t.children]?t.children:null,o=null!=r?null:t.children,null!=r?a=B(r):null!=o&&(i=this.mountChildren(o,e,n),a=i.join(""))),v[this._tag]&&"\n"===a.charAt(0)?"\n"+a:a},_createInitialChildren:function(e,t,n,r){var o,i,a,s,u=t.dangerouslySetInnerHTML;if(null!=u)null!=u.__html&&M.queueHTML(r,u.__html);else if(o=X[typeof t.children]?t.children:null,i=null!=o?null:t.children,null!=o)""!==o&&M.queueText(r,o);else if(null!=i)for(a=this.mountChildren(i,e,n),s=0;st.end?(n=t.end,r=t.start):(n=t.start,r=t.end),o.moveToElementText(e),o.moveStart("character",n),o.setEndPoint("EndToStart",o),o.moveEnd("character",r-n),o.select()}function s(e,t){var n,r,o,i,a,s,u,f;window.getSelection&&(n=window.getSelection(),r=e[l()].length,o=Math.min(t.start,r),i=void 0===t.end?o:Math.min(t.end,r),!n.extend&&o>i&&(a=i,i=o,o=a),s=c(e,o),u=c(e,i),s&&u&&(f=document.createRange(),f.setStart(s.node,s.offset),n.removeAllRanges(),o>i?(n.addRange(f),n.extend(u.node,u.offset)):(f.setEnd(u.node,u.offset),n.addRange(f))))}var u=n(60),c=n(1069),l=n(454),f=u.canUseDOM&&"selection"in document&&!("getSelection"in window),p={getOffsets:f?o:i,setOffsets:f?a:s};e.exports=p},function(e,t,n){"use strict";var r=n(25),o=n(30),i=n(289),a=n(137),s=n(32),u=n(224),c=(n(17),n(304),function(e){this._currentElement=e,this._stringText=""+e,this._hostNode=null,this._hostParent=null,this._domID=0,this._mountIndex=0,this._closingComment=null,this._commentNodes=null});o(c.prototype,{mountComponent:function(e,t,n,r){var o,i,c,l,f,p,d,h;return o=n._idCounter++,i=" react-text: "+o+" ",c=" /react-text ",this._domID=o,this._hostParent=t,e.useCreateElement?(l=n._ownerDocument,f=l.createComment(i),p=l.createComment(c),d=a(l.createDocumentFragment()),a.queueChild(d,a(f)),this._stringText&&a.queueChild(d,a(l.createTextNode(this._stringText))),a.queueChild(d,a(p)),s.precacheNode(this,f),this._closingComment=p,d):(h=u(this._stringText),e.renderToStaticMarkup?h:"\x3c!--"+i+"--\x3e"+h+"\x3c!--"+c+"--\x3e")},receiveComponent:function(e,t){var n,r;e!==this._currentElement&&(this._currentElement=e,(n=""+e)!==this._stringText&&(this._stringText=n,r=this.getHostNode(),i.replaceDelimitedText(r[0],r[1],n)))},getHostNode:function(){var e,t,n=this._commentNodes;if(n)return n;if(!this._closingComment)for(e=s.getNodeFromInstance(this),t=e.nextSibling;;){if(null==t&&r("67",this._domID),8===t.nodeType&&" /react-text "===t.nodeValue){this._closingComment=t;break}t=t.nextSibling}return n=[this._hostNode,this._closingComment],this._commentNodes=n,n},unmountComponent:function(){this._closingComment=null,this._commentNodes=null,s.uncacheNode(this)}}),e.exports=c},function(e,t,n){"use strict";function r(){this._rootNodeID&&l.updateWrapper(this)}function o(e){var t=this._currentElement.props,n=s.executeOnChange(t,e);return c.asap(r,this),n}var i=n(25),a=n(30),s=n(294),u=n(32),c=n(87),l=(n(17),n(24),{getHostProps:function(e,t){ +return null!=t.dangerouslySetInnerHTML&&i("91"),a({},t,{value:void 0,defaultValue:void 0,children:""+e._wrapperState.initialValue,onChange:e._wrapperState.onChange})},mountWrapper:function(e,t){var n,r,a,u;n=s.getValue(t),r=n,null==n&&(a=t.defaultValue,u=t.children,null!=u&&(null!=a&&i("92"),Array.isArray(u)&&(u.length<=1||i("93"),u=u[0]),a=""+u),null==a&&(a=""),r=a),e._wrapperState={initialValue:""+r,listeners:null,onChange:o.bind(e)}},updateWrapper:function(e){var t,n=e._currentElement.props,r=u.getNodeFromInstance(e),o=s.getValue(n);null!=o&&(t=""+o,t!==r.value&&(r.value=t),null==n.defaultValue&&(r.defaultValue=t)),null!=n.defaultValue&&(r.defaultValue=n.defaultValue)},postMountWrapper:function(e){var t=u.getNodeFromInstance(e),n=t.textContent;n===e._wrapperState.initialValue&&(t.value=n)}});e.exports=l},function(e,t,n){"use strict";function r(e,t){var n,r,o,i,a;"_hostNode"in e||u("33"),"_hostNode"in t||u("33"),n=0;for(r=e;r;r=r._hostParent)n++;for(o=0,i=t;i;i=i._hostParent)o++;for(;n-o>0;)e=e._hostParent,n--;for(;o-n>0;)t=t._hostParent,o--;for(a=n;a--;){if(e===t)return e;e=e._hostParent,t=t._hostParent}return null}function o(e,t){"_hostNode"in e||u("35"),"_hostNode"in t||u("35");for(;t;){if(t===e)return!0;t=t._hostParent}return!1}function i(e){return"_hostNode"in e||u("36"),e._hostParent}function a(e,t,n){for(var r,o=[];e;)o.push(e),e=e._hostParent;for(r=o.length;r-- >0;)t(o[r],"captured",n);for(r=0;r0;)n(a[s],"captured",i)}var u=n(25);n(17);e.exports={isAncestor:o,getLowestCommonAncestor:r,getParentInstance:i,traverseTwoPhase:a,traverseEnterLeave:s}},function(e,t,n){"use strict";function r(){this.reinitializeTransaction()}var o,i,a=n(30),s=n(87),u=n(223),c=n(66),l={initialize:c,close:function(){i.isBatchingUpdates=!1}},f={initialize:c,close:s.flushBatchedUpdates.bind(s)},p=[f,l];a(r.prototype,u,{getTransactionWrappers:function(){return p}}),o=new r,i={isBatchingUpdates:!1,batchedUpdates:function(e,t,n,r,a,s){var u=i.isBatchingUpdates;return i.isBatchingUpdates=!0,u?e(t,n,r,a,s):o.perform(e,null,t,n,r,a,s)}},e.exports=i},function(e,t,n){"use strict";function r(){C||(C=!0,v.EventEmitter.injectReactEventListener(y),v.EventPluginHub.injectEventPluginOrder(s),v.EventPluginUtils.injectComponentTree(p),v.EventPluginUtils.injectTreeTraversal(h),v.EventPluginHub.injectEventPluginsByName({SimpleEventPlugin:x,EnterLeaveEventPlugin:u,ChangeEventPlugin:a,SelectEventPlugin:w,BeforeInputEventPlugin:i}),v.HostComponent.injectGenericComponentClass(f),v.HostComponent.injectTextComponentClass(m),v.DOMProperty.injectDOMPropertyConfig(o),v.DOMProperty.injectDOMPropertyConfig(c),v.DOMProperty.injectDOMPropertyConfig(_),v.EmptyComponent.injectEmptyComponentFactory(function(e){return new d(e)}),v.Updates.injectReconcileTransaction(b),v.Updates.injectBatchingStrategy(g),v.Component.injectEnvironment(l))} +var o=n(1010),i=n(1012),a=n(1014),s=n(1016),u=n(1017),c=n(1019),l=n(1021),f=n(1024),p=n(32),d=n(1026),h=n(1034),m=n(1032),g=n(1035),y=n(1039),v=n(1040),b=n(1045),_=n(1050),w=n(1051),x=n(1052),C=!1;e.exports={inject:r}},function(e,t){"use strict";var n="function"==typeof Symbol&&Symbol.for&&Symbol.for("react.element")||60103;e.exports=n},function(e,t,n){"use strict";function r(e){o.enqueueEvents(e),o.processEventQueue(!1)}var o=n(165),i={handleTopLevel:function(e,t,n,i){r(o.extractEvents(e,t,n,i))}};e.exports=i},function(e,t,n){"use strict";function r(e){for(var t,n;e._hostParent;)e=e._hostParent;return t=p.getNodeFromInstance(e),n=t.parentNode,p.getClosestInstanceFromNode(n)}function o(e,t){this.topLevelType=e,this.nativeEvent=t,this.ancestors=[]}function i(e){var t,n=h(e.nativeEvent),o=p.getClosestInstanceFromNode(n),i=o;do{e.ancestors.push(i),i=i&&r(i)}while(i);for(t=0;t/,i=/^<\!\-\-/,a={CHECKSUM_ATTR_NAME:"data-react-checksum",addChecksumToMarkup:function(e){var t=r(e);return i.test(e)?e:e.replace(o," "+a.CHECKSUM_ATTR_NAME+'="'+t+'"$&')},canReuseMarkup:function(e,t){var n=t.getAttribute(a.CHECKSUM_ATTR_NAME);return n=n&&parseInt(n,10),r(e)===n}};e.exports=a},function(e,t,n){"use strict";function r(e,t,n){return{type:"INSERT_MARKUP",content:e,fromIndex:null,fromNode:null,toIndex:n,afterNode:t}}function o(e,t,n){return{type:"MOVE_EXISTING",content:null,fromIndex:e._mountIndex,fromNode:d.getHostNode(e),toIndex:n,afterNode:t}}function i(e,t){return{type:"REMOVE_NODE",content:null,fromIndex:e._mountIndex,fromNode:t,toIndex:null,afterNode:null}}function a(e){return{type:"SET_MARKUP",content:e,fromIndex:null,fromNode:null,toIndex:null,afterNode:null}}function s(e){return{type:"TEXT_CONTENT",content:e,fromIndex:null, +fromNode:null,toIndex:null,afterNode:null}}function u(e,t){return t&&(e=e||[],e.push(t)),e}function c(e,t){p.processChildrenUpdates(e,t)}var l,f=n(25),p=n(295),d=(n(167),n(75),n(92),n(139)),h=n(1020),m=(n(66),n(1066));n(17);l={Mixin:{_reconcilerInstantiateChildren:function(e,t,n){return h.instantiateChildren(e,t,n)},_reconcilerUpdateChildren:function(e,t,n,r,o,i){var a,s=0;return a=m(t,s),h.updateChildren(e,a,n,r,o,this,this._hostContainerInfo,i,s),a},mountChildren:function(e,t,n){var r,o,i,a,s,u,c=this._reconcilerInstantiateChildren(e,t,n);this._renderedChildren=c,r=[],o=0;for(i in c)c.hasOwnProperty(i)&&(a=c[i],s=0,u=d.mountComponent(a,t,this,this._hostContainerInfo,n,s),a._mountIndex=o++,r.push(u));return r},updateTextContent:function(e){var t,n,r=this._renderedChildren;h.unmountChildren(r,!1);for(t in r)r.hasOwnProperty(t)&&f("118");n=[s(e)],c(this,n)},updateMarkup:function(e){var t,n,r=this._renderedChildren;h.unmountChildren(r,!1);for(t in r)r.hasOwnProperty(t)&&f("118");n=[a(e)],c(this,n)},updateChildren:function(e,t,n){this._updateChildren(e,t,n)},_updateChildren:function(e,t,n){var r,o,i,a,s,l,f,p,h=this._renderedChildren,m={},g=[],y=this._reconcilerUpdateChildren(h,e,g,m,t,n);if(y||h){r=null,i=0,a=0,s=0,l=null;for(o in y)y.hasOwnProperty(o)&&(f=h&&h[o],p=y[o],f===p?(r=u(r,this.moveChild(f,l,i,a)),a=Math.max(f._mountIndex,a),f._mountIndex=i):(f&&(a=Math.max(f._mountIndex,a)),r=u(r,this._mountChildAtIndex(p,g[s],l,i,t,n)),s++),i++,l=d.getHostNode(p));for(o in m)m.hasOwnProperty(o)&&(r=u(r,this._unmountChild(h[o],m[o])));r&&c(this,r),this._renderedChildren=y}},unmountChildren:function(e){var t=this._renderedChildren;h.unmountChildren(t,e),this._renderedChildren=null},moveChild:function(e,t,n,r){if(e._mountIndex=t)return{node:o,offset:t-i};i=a}o=n(r(o))}}e.exports=o},function(e,t,n){"use strict";function r(e,t){var n={};return n[e.toLowerCase()]=t.toLowerCase(),n["Webkit"+e]="webkit"+t,n["Moz"+e]="moz"+t,n["ms"+e]="MS"+t,n["O"+e]="o"+t.toLowerCase(),n}function o(e){var t,n;if(s[e])return s[e];if(!a[e])return e;t=a[e];for(n in t)if(t.hasOwnProperty(n)&&n in u)return s[e]=t[n];return""}var i=n(60),a={animationend:r("Animation","AnimationEnd"),animationiteration:r("Animation","AnimationIteration"),animationstart:r("Animation","AnimationStart"),transitionend:r("Transition","TransitionEnd")},s={},u={};i.canUseDOM&&(u=document.createElement("div").style,"AnimationEvent"in window||(delete a.animationend.animation,delete a.animationiteration.animation,delete a.animationstart.animation),"TransitionEvent"in window||delete a.transitionend.transition),e.exports=o},function(e,t,n){"use strict";function r(e){return'"'+o(e)+'"'}var o=n(224);e.exports=r},function(e,t,n){"use strict";var r=n(448);e.exports=r.renderSubtreeIntoContainer},,function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}function o(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function i(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function a(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e, +enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}var s,u,c,l,f,p,d,h,m,g,y,v;t.__esModule=!0,s=Object.assign||function(e){var t,n,r;for(t=1;t0;)n[r]=arguments[r+1];return n.reduce(function(n,r){return n+e(t["border-"+r+"-width"])},0)}function r(t){var n,r,o,i,a=["top","right","bottom","left"],s={};for(n=0,r=a;n0},M.prototype.connect_=function(){_&&!this.connected_&&(document.addEventListener("transitionend",this.onTransitionEnd_),window.addEventListener("resize",this.refresh),S?(this.mutationsObserver_=new MutationObserver(this.refresh),this.mutationsObserver_.observe(document,{attributes:!0,childList:!0,characterData:!0,subtree:!0})):(document.addEventListener("DOMSubtreeModified",this.refresh),this.mutationEventsAdded_=!0),this.connected_=!0)},M.prototype.disconnect_=function(){_&&this.connected_&&(document.removeEventListener("transitionend",this.onTransitionEnd_),window.removeEventListener("resize",this.refresh),this.mutationsObserver_&&this.mutationsObserver_.disconnect(),this.mutationEventsAdded_&&document.removeEventListener("DOMSubtreeModified",this.refresh),this.mutationsObserver_=null,this.mutationEventsAdded_=!1,this.connected_=!1)},M.prototype.onTransitionEnd_=function(e){var t,n=e.propertyName;void 0===n&&(n=""),(t=E.some(function(e){return!!~n.indexOf(e)}))&&this.refresh()},M.getInstance=function(){return this.instance_||(this.instance_=new M),this.instance_},M.instance_=null,l=function(e,t){var n,r,o;for(n=0,r=Object.keys(t);n0},y="undefined"!=typeof WeakMap?new WeakMap:new b,v=function(e){var t,n;if(!(this instanceof v))throw new TypeError("Cannot call a class as a function.");if(!arguments.length)throw new TypeError("1 argument required, but only 0 present.");t=M.getInstance(),n=new g(e,t,this),y.set(this,n)},["observe","unobserve","disconnect"].forEach(function(e){v.prototype[e]=function(){return(t=y.get(this))[e].apply(t,arguments);var t}}),function(){return void 0!==w.ResizeObserver?w.ResizeObserver:v}()})}).call(t,function(){return this}())},,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),n(993),n(1002),n(997),n(998),n(996)},,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,function(e,t,n){"use strict";var r=function(){};e.exports=r},function(e,t){!function(e){"use strict";function t(e){if("string"!=typeof e&&(e+=""),/[^a-z0-9\-#$%&'*+.\^_`|~]/i.test(e))throw new TypeError("Invalid character in header field name");return e.toLowerCase()}function n(e){return"string"!=typeof e&&(e+=""),e}function r(e){var t={next:function(){var t=e.shift();return{done:void 0===t,value:t}}};return y.iterable&&(t[Symbol.iterator]=function(){return t}),t}function o(e){this.map={},e instanceof o?e.forEach(function(e,t){this.append(t,e)},this):e&&Object.getOwnPropertyNames(e).forEach(function(t){this.append(t,e[t])},this)}function i(e){if(e.bodyUsed)return Promise.reject(new TypeError("Already read"));e.bodyUsed=!0}function a(e){return new Promise(function(t,n){e.onload=function(){t(e.result)},e.onerror=function(){n(e.error)}})}function s(e){var t=new FileReader,n=a(t);return t.readAsArrayBuffer(e),n}function u(e){var t=new FileReader,n=a(t);return t.readAsText(e),n}function c(e){var t,n=new Uint8Array(e),r=Array(n.length);for(t=0;t-1?t:e}function d(e,t){t=t||{};var n=t.body;if("string"==typeof e)this.url=e;else{if(e.bodyUsed)throw new TypeError("Already read");this.url=e.url,this.credentials=e.credentials,t.headers||(this.headers=new o(e.headers)),this.method=e.method,this.mode=e.mode,n||null==e._bodyInit||(n=e._bodyInit,e.bodyUsed=!0)}if(this.credentials=t.credentials||this.credentials||"omit",!t.headers&&this.headers||(this.headers=new o(t.headers)),this.method=p(t.method||this.method||"GET"),this.mode=t.mode||this.mode||null,this.referrer=null,("GET"===this.method||"HEAD"===this.method)&&n)throw new TypeError("Body not allowed for GET or HEAD requests");this._initBody(n)}function h(e){var t=new FormData;return e.trim().split("&").forEach(function(e){var n,r,o;e&&(n=e.split("="),r=n.shift().replace(/\+/g," "),o=n.join("=").replace(/\+/g," "),t.append(decodeURIComponent(r),decodeURIComponent(o)))}),t}function m(e){var t=new o;return e.split("\r\n").forEach(function(e){var n,r=e.split(":"),o=r.shift().trim();o&&(n=r.join(":").trim(),t.append(o,n))}),t}function g(e,t){t||(t={}),this.type="default",this.status="status"in t?t.status:200,this.ok=this.status>=200&&this.status<300,this.statusText="statusText"in t?t.statusText:"OK",this.headers=new o(t.headers), +this.url=t.url||"",this._initBody(e)}var y,v,b,_,w,x;e.fetch||(y={searchParams:"URLSearchParams"in e,iterable:"Symbol"in e&&"iterator"in Symbol,blob:"FileReader"in e&&"Blob"in e&&function(){try{return new Blob,!0}catch(e){return!1}}(),formData:"FormData"in e,arrayBuffer:"ArrayBuffer"in e},y.arrayBuffer&&(v=["[object Int8Array]","[object Uint8Array]","[object Uint8ClampedArray]","[object Int16Array]","[object Uint16Array]","[object Int32Array]","[object Uint32Array]","[object Float32Array]","[object Float64Array]"],b=function(e){return e&&DataView.prototype.isPrototypeOf(e)},_=ArrayBuffer.isView||function(e){return e&&v.indexOf(Object.prototype.toString.call(e))>-1}),o.prototype.append=function(e,r){e=t(e),r=n(r);var o=this.map[e];o||(o=[],this.map[e]=o),o.push(r)},o.prototype.delete=function(e){delete this.map[t(e)]},o.prototype.get=function(e){var n=this.map[t(e)];return n?n[0]:null},o.prototype.getAll=function(e){return this.map[t(e)]||[]},o.prototype.has=function(e){return this.map.hasOwnProperty(t(e))},o.prototype.set=function(e,r){this.map[t(e)]=[n(r)]},o.prototype.forEach=function(e,t){Object.getOwnPropertyNames(this.map).forEach(function(n){this.map[n].forEach(function(r){e.call(t,r,n,this)},this)},this)},o.prototype.keys=function(){var e=[];return this.forEach(function(t,n){e.push(n)}),r(e)},o.prototype.values=function(){var e=[];return this.forEach(function(t){e.push(t)}),r(e)},o.prototype.entries=function(){var e=[];return this.forEach(function(t,n){e.push([n,t])}),r(e)},y.iterable&&(o.prototype[Symbol.iterator]=o.prototype.entries),w=["DELETE","GET","HEAD","OPTIONS","POST","PUT"],d.prototype.clone=function(){return new d(this,{body:this._bodyInit})},f.call(d.prototype),f.call(g.prototype),g.prototype.clone=function(){return new g(this._bodyInit,{status:this.status,statusText:this.statusText,headers:new o(this.headers),url:this.url})},g.error=function(){var e=new g(null,{status:0,statusText:""});return e.type="error",e},x=[301,302,303,307,308],g.redirect=function(e,t){if(-1===x.indexOf(t))throw new RangeError("Invalid status code");return new g(null,{status:t,headers:{location:e}})},e.Headers=o,e.Request=d,e.Response=g,e.fetch=function(e,t){return new Promise(function(n,r){var o=new d(e,t),i=new XMLHttpRequest;i.onload=function(){var e,t={status:i.status,statusText:i.statusText,headers:m(i.getAllResponseHeaders()||"")};t.url="responseURL"in i?i.responseURL:t.headers.get("X-Request-URL"),e="response"in i?i.response:i.responseText,n(new g(e,t))},i.onerror=function(){r(new TypeError("Network request failed"))},i.ontimeout=function(){r(new TypeError("Network request failed"))},i.open(o.method,o.url,!0),"include"===o.credentials&&(i.withCredentials=!0),"responseType"in i&&y.blob&&(i.responseType="blob"),o.headers.forEach(function(e,t){i.setRequestHeader(t,e)}),i.send(void 0===o._bodyInit?null:o._bodyInit)})},e.fetch.polyfill=!0)}("undefined"!=typeof self?self:this)}]); \ No newline at end of file diff --git a/charting_library/static/bundles/vendors.7b89b40661ed8fd3d2ce.js b/charting_library/static/bundles/vendors.7b89b40661ed8fd3d2ce.js deleted file mode 100644 index 600c116e..00000000 --- a/charting_library/static/bundles/vendors.7b89b40661ed8fd3d2ce.js +++ /dev/null @@ -1,157 +0,0 @@ -!function(t){function e(i){if(n[i])return n[i].exports;var r=n[i]={exports:{},id:i,loaded:!1};return t[i].call(r.exports,r,r.exports,e),r.loaded=!0,r.exports}var n,i,r=window.webpackJsonp;window.webpackJsonp=function(o,s){for(var a,l,u=0,c=[];u=0===n})}function g(t){var e=pt.split("|"),n=t.createDocumentFragment();if(n.createElement)for(;e.length;)n.createElement(e.pop());return n}function m(t,e){ -return Te.nodeName(t,"table")?t.getElementsByTagName("tbody")[0]||t.appendChild(t.ownerDocument.createElement("tbody")):t}function y(t,e){if(1===e.nodeType&&Te.hasData(t)){var n,i,r,o=Te._data(t),s=Te._data(e,o),a=o.events;if(a){delete s.handle,s.events={};for(n in a)for(i=0,r=a[n].length;i0){if("border"!==n)for(;r").appendTo(e),i=n.css("display");n.remove(),"none"!==i&&""!==i||(pe||(pe=Se.createElement("iframe"),pe.frameBorder=pe.width=pe.height=0),e.appendChild(pe),ge&&pe.createElement||(ge=(pe.contentWindow||pe.contentDocument).document,ge.write((Te.support.boxModel?"":"")+""),ge.close()),n=ge.createElement(t),ge.body.appendChild(n),i=Te.css(n,"display"),e.removeChild(pe)),de[t]=i}return de[t]}function j(t){return Te.isWindow(t)?t:9===t.nodeType&&(t.defaultView||t.parentWindow)}var F,H,Y,z,R,W,V,B,U,q,$,G,X,K,Q,J,Z,tt,et,nt,it,rt,ot,st,at,lt,ut,ct,ht,ft,dt,pt,gt,mt,yt,vt,bt,_t,wt,xt,kt,St,Mt,Dt,Tt,Ct,Pt,Ot,Et,Nt,Lt,At,It,jt,Ft,Ht,Yt,zt,Rt,Wt,Vt,Bt,Ut,qt,$t,Gt,Xt,Kt,Qt,Jt,Zt,te,ee,ne,ie,re,oe,se,ae,le,ue,ce,he,fe,de,pe,ge,me,ye,ve,be,_e,we,xe,ke,Se=o.document,Me=o.navigator,De=o.location,Te=function(){function t(){if(!a.isReady){try{Se.documentElement.doScroll("left")}catch(e){return void setTimeout(t,1)}a.ready()}}var e,n,i,r,a=function(t,n){return new a.fn.init(t,n,e)},l=o.jQuery,u=o.$,c=/^(?:[^#<]*(<[\w\W]+>)[^>]*$|#([\w\-]*)$)/,h=/\S/,f=/^\s+/,d=/\s+$/,p=/^<(\w+)\s*\/?>(?:<\/\1>)?$/,g=/^[\],:{}\s]*$/,m=/\\(?:["\\\/bfnrt]|u[0-9a-fA-F]{4})/g,y=/"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g,v=/(?:^|:|,)(?:\s*\[)+/g,b=/(webkit)[ \/]([\w.]+)/,_=/(opera)(?:.*version)?[ \/]([\w.]+)/,w=/(msie) ([\w.]+)/,x=/(mozilla)(?:.*? rv:([\w.]+))?/,k=/-([a-z]|[0-9])/gi,S=/^-ms-/,M=function(t,e){return(e+"").toUpperCase()},D=Me.userAgent,T=Object.prototype.toString,C=Object.prototype.hasOwnProperty,P=Array.prototype.push,O=Array.prototype.slice,E=String.prototype.trim,N=Array.prototype.indexOf,L={};return a.fn=a.prototype={constructor:a,init:function(t,e,n){var i,r,o,l;if(!t)return this;if(t.nodeType)return this.context=this[0]=t,this.length=1,this;if("body"===t&&!e&&Se.body)return this.context=Se,this[0]=Se.body,this.selector=t,this.length=1,this;if("string"==typeof t){ -if(!(i="<"===t.charAt(0)&&">"===t.charAt(t.length-1)&&t.length>=3?[null,t,null]:c.exec(t))||!i[1]&&e)return!e||e.jquery?(e||n).find(t):this.constructor(e).find(t);if(i[1])return e=e instanceof a?e[0]:e,l=e?e.ownerDocument||e:Se,o=p.exec(t),o?a.isPlainObject(e)?(t=[Se.createElement(o[1])],a.fn.attr.call(t,e,!0)):t=[l.createElement(o[1])]:(o=a.buildFragment([i[1]],[l]),t=(o.cacheable?a.clone(o.fragment):o.fragment).childNodes),a.merge(this,t);if((r=Se.getElementById(i[2]))&&r.parentNode){if(r.id!==i[2])return n.find(t);this.length=1,this[0]=r}return this.context=Se,this.selector=t,this}return a.isFunction(t)?n.ready(t):(t.selector!==s&&(this.selector=t.selector,this.context=t.context),a.makeArray(t,this))},selector:"",jquery:"1.7.2",length:0,size:function(){return this.length},toArray:function(){return O.call(this,0)},get:function(t){return null==t?this.toArray():t<0?this[this.length+t]:this[t]},pushStack:function(t,e,n){var i=this.constructor();return a.isArray(t)?P.apply(i,t):a.merge(i,t),i.prevObject=this,i.context=this.context,"find"===e?i.selector=this.selector+(this.selector?" ":"")+n:e&&(i.selector=this.selector+"."+e+"("+n+")"),i},each:function(t,e){return a.each(this,t,e)},ready:function(t){return a.bindReady(),i.add(t),this},eq:function(t){return t=+t,-1===t?this.slice(t):this.slice(t,t+1)},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},slice:function(){return this.pushStack(O.apply(this,arguments),"slice",O.call(arguments).join(","))},map:function(t){return this.pushStack(a.map(this,function(e,n){return t.call(e,n,e)}))},end:function(){return this.prevObject||this.constructor(null)},push:P,sort:[].sort,splice:[].splice},a.fn.init.prototype=a.fn,a.extend=a.fn.extend=function(){var t,e,n,i,r,o,l=arguments[0]||{},u=1,c=arguments.length,h=!1;for("boolean"==typeof l&&(h=l,l=arguments[1]||{},u=2),"object"==typeof l||a.isFunction(l)||(l={}),c===u&&(l=this,--u);u0)return;i.fireWith(Se,[a]),a.fn.trigger&&a(Se).trigger("ready").off("ready")}},bindReady:function(){if(!i){if(i=a.Callbacks("once memory"),"complete"===Se.readyState)return setTimeout(a.ready,1);if(Se.addEventListener)Se.addEventListener("DOMContentLoaded",r,!1),o.addEventListener("load",a.ready,!1);else if(Se.attachEvent){Se.attachEvent("onreadystatechange",r),o.attachEvent("onload",a.ready);var e=!1;try{e=null==o.frameElement}catch(t){}Se.documentElement.doScroll&&e&&t()}}},isFunction:function(t){return"function"===a.type(t)},isArray:Array.isArray||function(t){return"array"===a.type(t)},isWindow:function(t){ -return null!=t&&t==t.window},isNumeric:function(t){return!isNaN(parseFloat(t))&&isFinite(t)},type:function(t){return null==t?t+"":L[T.call(t)]||"object"},isPlainObject:function(t){if(!t||"object"!==a.type(t)||t.nodeType||a.isWindow(t))return!1;try{if(t.constructor&&!C.call(t,"constructor")&&!C.call(t.constructor.prototype,"isPrototypeOf"))return!1}catch(t){return!1}var e;for(e in t);return e===s||C.call(t,e)},isEmptyObject:function(t){for(var e in t)return!1;return!0},error:function(t){throw Error(t)},parseJSON:function(t){return"string"==typeof t&&t?(t=a.trim(t),o.JSON&&o.JSON.parse?o.JSON.parse(t):g.test(t.replace(m,"@").replace(y,"]").replace(v,""))?Function("return "+t)():void a.error("Invalid JSON: "+t)):null},parseXML:function(t){if("string"!=typeof t||!t)return null;var e,n;try{o.DOMParser?(n=new DOMParser,e=n.parseFromString(t,"text/xml")):(e=new ActiveXObject("Microsoft.XMLDOM"),e.async="false",e.loadXML(t))}catch(t){e=s}return e&&e.documentElement&&!e.getElementsByTagName("parsererror").length||a.error("Invalid XML: "+t),e},noop:function(){},globalEval:function(t){t&&h.test(t)&&(o.execScript||function(t){o.eval.call(o,t)})(t)},camelCase:function(t){return t.replace(S,"ms-").replace(k,M)},nodeName:function(t,e){return t.nodeName&&t.nodeName.toUpperCase()===e.toUpperCase()},each:function(t,e,n){var i,r=0,o=t.length,l=o===s||a.isFunction(t);if(n)if(l){for(i in t)if(!1===e.apply(t[i],n))break}else for(;r0&&t[0]&&t[u-1]||0===u||a.isArray(t)))for(;l1?F.call(arguments,0):e,--a||l.resolveWith(l,i)}}function n(t){return function(e){s[t]=arguments.length>1?F.call(arguments,0):e,l.notifyWith(u,s)}}var i=F.call(arguments,0),r=0,o=i.length,s=Array(o),a=o,l=o<=1&&t&&Te.isFunction(t.promise)?t:Te.Deferred(),u=l.promise();if(o>1){for(;r
a",e=d.getElementsByTagName("*"),n=d.getElementsByTagName("a")[0],!e||!e.length||!n)return{};i=Se.createElement("select"),r=i.appendChild(Se.createElement("option")),a=d.getElementsByTagName("input")[0],t={leadingWhitespace:3===d.firstChild.nodeType,tbody:!d.getElementsByTagName("tbody").length,htmlSerialize:!!d.getElementsByTagName("link").length,style:/top/.test(n.getAttribute("style")),hrefNormalized:"/a"===n.getAttribute("href"),opacity:/^0.55/.test(n.style.opacity),cssFloat:!!n.style.cssFloat,checkOn:"on"===a.value,optSelected:r.selected,getSetAttribute:"t"!==d.className,enctype:!!Se.createElement("form").enctype,html5Clone:"<:nav>"!==Se.createElement("nav").cloneNode(!0).outerHTML,submitBubbles:!0,changeBubbles:!0,focusinBubbles:!1,deleteExpando:!0,noCloneEvent:!0,inlineBlockNeedsLayout:!1,shrinkWrapBlocks:!1,reliableMarginRight:!0,pixelMargin:!0},Te.boxModel=t.boxModel="CSS1Compat"===Se.compatMode,a.checked=!0,t.noCloneChecked=a.cloneNode(!0).checked,i.disabled=!0,t.optDisabled=!r.disabled;try{delete d.test}catch(e){t.deleteExpando=!1}if(!d.addEventListener&&d.attachEvent&&d.fireEvent&&(d.attachEvent("onclick",function(){t.noCloneEvent=!1}),d.cloneNode(!0).fireEvent("onclick")),a=Se.createElement("input"),a.value="t",a.setAttribute("type","radio"),t.radioValue="t"===a.value,a.setAttribute("checked","checked"),a.setAttribute("name","t"),d.appendChild(a),l=Se.createDocumentFragment(),l.appendChild(d.lastChild),t.checkClone=l.cloneNode(!0).cloneNode(!0).lastChild.checked,t.appendChecked=a.checked,l.removeChild(a),l.appendChild(d),d.attachEvent)for(h in{submit:1,change:1,focusin:1})c="on"+h,f=c in d,f||(d.setAttribute(c,"return;"),f="function"==typeof d[c]),t[h+"Bubbles"]=f;return l.removeChild(d),l=i=r=d=a=null,Te(function(){var e,n,i,r,a,l,c,h,p,g,m,y,v=Se.getElementsByTagName("body")[0];v&&(c=1,y="padding:0;margin:0;border:",g="position:absolute;top:0;left:0;width:1px;height:1px;",m=y+"0;visibility:hidden;",h="style='"+g+y+"5px solid #000;", -p="
",e=Se.createElement("div"),e.style.cssText=m+"width:0;height:0;position:static;top:0;margin-top:"+c+"px",v.insertBefore(e,v.firstChild),d=Se.createElement("div"),e.appendChild(d),d.innerHTML="
t
",u=d.getElementsByTagName("td"),f=0===u[0].offsetHeight,u[0].style.display="",u[1].style.display="none",t.reliableHiddenOffsets=f&&0===u[0].offsetHeight,o.getComputedStyle&&(d.innerHTML="",l=Se.createElement("div"),l.style.width="0",l.style.marginRight="0",d.style.width="2px",d.appendChild(l),t.reliableMarginRight=0===(parseInt((o.getComputedStyle(l,null)||{marginRight:0}).marginRight,10)||0)),s!==d.style.zoom&&(d.innerHTML="",d.style.width=d.style.padding="1px",d.style.border=0,d.style.overflow="hidden",d.style.display="inline",d.style.zoom=1,t.inlineBlockNeedsLayout=3===d.offsetWidth,d.style.display="block",d.style.overflow="visible",d.innerHTML="
",t.shrinkWrapBlocks=3!==d.offsetWidth),d.style.cssText=g+m,d.innerHTML=p,n=d.firstChild,i=n.firstChild,r=n.nextSibling.firstChild.firstChild,a={doesNotAddBorder:5!==i.offsetTop,doesAddBorderForTableAndCells:5===r.offsetTop},i.style.position="fixed",i.style.top="20px",a.fixedPosition=20===i.offsetTop||15===i.offsetTop,i.style.position=i.style.top="",n.style.overflow="hidden",n.style.position="relative",a.subtractsBorderForOverflowNotVisible=-5===i.offsetTop,a.doesNotIncludeMarginInBodyOffset=v.offsetTop!==c,o.getComputedStyle&&(d.style.marginTop="1%",t.pixelMargin="1%"!==(o.getComputedStyle(d,null)||{marginTop:0}).marginTop),s!==e.style.zoom&&(e.style.zoom=1),v.removeChild(e),l=d=e=null,Te.extend(t,a))}),t}(),H=/^(?:\{.*\}|\[.*\])$/,Y=/([A-Z])/g,Te.extend({cache:{},uuid:0,expando:"jQuery"+(Te.fn.jquery+Math.random()).replace(/\D/g,""),noData:{embed:!0,object:"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000",applet:!0},hasData:function(t){return!!(t=t.nodeType?Te.cache[t[Te.expando]]:t[Te.expando])&&!u(t)},data:function(t,e,n,i){if(Te.acceptData(t)){var r,o,a,l=Te.expando,u="string"==typeof e,c=t.nodeType,h=c?Te.cache:t,f=c?t[l]:t[l]&&l,d="events"===e;if(f&&h[f]&&(d||i||h[f].data)||!u||n!==s)return f||(c?t[l]=f=++Te.uuid:f=l),h[f]||(h[f]={},c||(h[f].toJSON=Te.noop)),"object"!=typeof e&&"function"!=typeof e||(i?h[f]=Te.extend(h[f],e):h[f].data=Te.extend(h[f].data,e)),r=o=h[f],i||(o.data||(o.data={}),o=o.data),n!==s&&(o[Te.camelCase(e)]=n),d&&!o[e]?r.events:(u?null==(a=o[e])&&(a=o[Te.camelCase(e)]):a=o,a)}},removeData:function(t,e,n){if(Te.acceptData(t)){var i,r,o,s=Te.expando,a=t.nodeType,l=a?Te.cache:t,c=a?t[s]:s;if(l[c]){if(e&&(i=n?l[c]:l[c].data)){Te.isArray(e)||(e in i?e=[e]:(e=Te.camelCase(e),e=e in i?[e]:e.split(" ")));for(r=0,o=e.length;r1,null,!1))},removeData:function(t){return this.each(function(){Te.removeData(this,t)})}}),Te.extend({_mark:function(t,e){t&&(e=(e||"fx")+"mark",Te._data(t,e,(Te._data(t,e)||0)+1))},_unmark:function(t,e,n){if(!0!==t&&(n=e,e=t,t=!1),e){n=n||"fx";var i=n+"mark",r=t?0:(Te._data(e,i)||1)-1;r?Te._data(e,i,r):(Te.removeData(e,i,!0),c(e,n,"mark"))}},queue:function(t,e,n){var i;if(t)return e=(e||"fx")+"queue",i=Te._data(t,e),n&&(!i||Te.isArray(n)?i=Te._data(t,e,Te.makeArray(n)):i.push(n)),i||[]},dequeue:function(t,e){e=e||"fx";var n=Te.queue(t,e),i=n.shift(),r={};"inprogress"===i&&(i=n.shift()),i&&("fx"===e&&n.unshift("inprogress"),Te._data(t,e+".run",r),i.call(t,function(){Te.dequeue(t,e)},r)),n.length||(Te.removeData(t,e+"queue "+e+".run",!0),c(t,e,"queue"))}}),Te.fn.extend({queue:function(t,e){var n=2;return"string"!=typeof t&&(e=t,t="fx",n--),arguments.length1)},removeAttr:function(t){return this.each(function(){ -Te.removeAttr(this,t)})},prop:function(t,e){return Te.access(this,Te.prop,t,e,arguments.length>1)},removeProp:function(t){return t=Te.propFix[t]||t,this.each(function(){try{this[t]=s,delete this[t]}catch(t){}})},addClass:function(t){var e,n,i,r,o,s,a;if(Te.isFunction(t))return this.each(function(e){Te(this).addClass(t.call(this,e,this.className))});if(t&&"string"==typeof t)for(e=t.split(R),n=0,i=this.length;n-1)return!0;return!1},val:function(t){var e,n,i,r=this[0];{if(arguments.length)return i=Te.isFunction(t),this.each(function(n){var r,o=Te(this);1===this.nodeType&&(r=i?t.call(this,n,o.val()):t,null==r?r="":"number"==typeof r?r+="":Te.isArray(r)&&(r=Te.map(r,function(t){return null==t?"":t+""})),(e=Te.valHooks[this.type]||Te.valHooks[this.nodeName.toLowerCase()])&&"set"in e&&e.set(this,r,"value")!==s||(this.value=r))});if(r)return(e=Te.valHooks[r.type]||Te.valHooks[r.nodeName.toLowerCase()])&&"get"in e&&(n=e.get(r,"value"))!==s?n:(n=r.value,"string"==typeof n?n.replace(W,""):null==n?"":n)}}}),Te.extend({valHooks:{option:{get:function(t){var e=t.attributes.value;return!e||e.specified?t.value:t.text}},select:{get:function(t){var e,n,i,r,o=t.selectedIndex,s=[],a=t.options,l="select-one"===t.type;if(o<0)return null;for(n=l?o:0,i=l?o+1:a.length;n=0}),n.length||(t.selectedIndex=-1),n}}},attrFn:{val:!0,css:!0,html:!0,text:!0,data:!0,width:!0,height:!0,offset:!0},attr:function(t,e,n,i){ -var r,o,a,l=t.nodeType;if(t&&3!==l&&8!==l&&2!==l)return i&&e in Te.attrFn?Te(t)[e](n):s===t.getAttribute?Te.prop(t,e,n):(a=1!==l||!Te.isXMLDoc(t),a&&(e=e.toLowerCase(),o=Te.attrHooks[e]||(q.test(e)?X:G)),n!==s?null===n?void Te.removeAttr(t,e):o&&"set"in o&&a&&(r=o.set(t,n,e))!==s?r:(t.setAttribute(e,""+n),n):o&&"get"in o&&a&&null!==(r=o.get(t,e))?r:(r=t.getAttribute(e),null===r?s:r))},removeAttr:function(t,e){var n,i,r,o,s,a=0;if(e&&1===t.nodeType)for(i=e.toLowerCase().split(R),o=i.length;a=0}})}),Q=/^(?:textarea|input|select)$/i,J=/^([^\.]*)?(?:\.(.+))?$/,Z=/(?:^|\s)hover(\.\S+)?\b/,tt=/^key/,et=/^(?:mouse|contextmenu)|click/,nt=/^(?:focusinfocus|focusoutblur)$/,it=/^(\w*)(?:#([\w\-]+))?(?:\.([\w\-]+))?$/,rt=function(t){var e=it.exec(t);return e&&(e[1]=(e[1]||"").toLowerCase(),e[3]=e[3]&&RegExp("(?:^|\\s)"+e[3]+"(?:\\s|$)")),e},ot=function(t,e){var n=t.attributes||{};return(!e[1]||t.nodeName.toLowerCase()===e[1])&&(!e[2]||(n.id||{}).value===e[2])&&(!e[3]||e[3].test((n.class||{}).value))},st=function(t){return Te.event.special.hover?t:t.replace(Z,"mouseenter$1 mouseleave$1")},Te.event={add:function(t,e,n,i,r){var o,a,l,u,c,h,f,d,p,g,m;if(3!==t.nodeType&&8!==t.nodeType&&e&&n&&(o=Te._data(t))){for(n.handler&&(p=n,n=p.handler,r=p.selector),n.guid||(n.guid=Te.guid++),l=o.events,l||(o.events=l={}),a=o.handle,a||(o.handle=a=function(t){return s===Te||t&&Te.event.triggered===t.type?s:Te.event.dispatch.apply(a.elem,arguments)},a.elem=t),e=Te.trim(st(e)).split(" "),u=0;u=0&&(m=m.slice(0,-1),a=!0),m.indexOf(".")>=0&&(y=m.split("."),m=y.shift(),y.sort()),n&&!Te.event.customEvent[m]||Te.event.global[m]))if(t="object"==typeof t?t[Te.expando]?t:new Te.Event(m,t):new Te.Event(m),t.type=m,t.isTrigger=!0,t.exclusive=a,t.namespace=y.join("."),t.namespace_re=t.namespace?RegExp("(^|\\.)"+y.join("\\.(?:.*\\.)?")+"(\\.|$)"):null,h=m.indexOf(":")<0?"on"+m:"",n){if(t.result=s,t.target||(t.target=n),e=null!=e?Te.makeArray(e):[],e.unshift(t),f=Te.event.special[m]||{},!f.trigger||!1!==f.trigger.apply(n,e)){if(p=[[n,f.bindType||m]],!i&&!f.noBubble&&!Te.isWindow(n)){for(g=f.delegateType||m,u=nt.test(g+m)?n:n.parentNode,c=null;u;u=u.parentNode)p.push([u,g]),c=u;c&&c===n.ownerDocument&&p.push([c.defaultView||c.parentWindow||o,g])}for(l=0;lp&&v.push({elem:this,matches:d.slice(p)}),e=0;e0?this.on(e,null,t,n):this.trigger(e)},Te.attrFn&&(Te.attrFn[e]=!0),tt.test(e)&&(Te.event.fixHooks[e]=Te.event.keyHooks),et.test(e)&&(Te.event.fixHooks[e]=Te.event.mouseHooks)}),function(){function t(t,e,n,i,r,o){var s,a,l,u;for(s=0,a=i.length;s0){c=u;break}u=u[t]}r[a]=c}}var n,i,r,o,a,l,u,c,h,f,d=/((?:\((?:\([^()]+\)|[^()]+)+\)|\[(?:\[[^\[\]]*\]|['"][^'"]*['"]|[^\[\]'"]+)+\]|\\.|[^ >+~,(\[\\]+)+|[>+~])(\s*,\s*)?((?:.|\r|\n)*)/g,p="sizcache"+(Math.random()+"").replace(".",""),g=0,m=Object.prototype.toString,y=!1,v=!0,b=/\\/g,_=/\r\n/g,w=/\W/;[0,0].sort(function(){return v=!1,0}),n=function(t,e,i,s){var a,l,c,h,p,g,y,v,b,_,w,x,k;if(i=i||[],e=e||Se,a=e,1!==e.nodeType&&9!==e.nodeType)return[];if(!t||"string"!=typeof t)return i;_=!0,w=n.isXML(e),x=[],k=t;do{if(d.exec(""),(l=d.exec(k))&&(k=l[3],x.push(l[1]),l[2])){p=l[3];break}}while(l);if(x.length>1&&o.exec(t))if(2===x.length&&r.relative[x[0]])c=f(x[0]+x[1],e,s);else for(c=r.relative[x[0]]?[e]:n(x.shift(),e);x.length;)t=x.shift(),r.relative[t]&&(t+=x.shift()),c=f(t,c,s);else if(!s&&x.length>1&&9===e.nodeType&&!w&&r.match.ID.test(x[0])&&!r.match.ID.test(x[x.length-1])&&(g=n.find(x.shift(),e,w),e=g.expr?n.filter(g.expr,g.set)[0]:g.set[0]),e)for(g=s?{expr:x.pop(),set:u(s)}:n.find(x.pop(),1!==x.length||"~"!==x[0]&&"+"!==x[0]||!e.parentNode?e:e.parentNode,w),c=g.expr?n.filter(g.expr,g.set):g.set,x.length>0?h=u(c):_=!1;x.length;)y=x.pop(),v=y,r.relative[y]?v=x.pop():y="",null==v&&(v=e),r.relative[y](h,v,w);else h=x=[];if(h||(h=c),h||n.error(y||t),"[object Array]"===m.call(h))if(_)if(e&&1===e.nodeType)for(b=0;null!=h[b];b++)h[b]&&(!0===h[b]||1===h[b].nodeType&&n.contains(e,h[b]))&&i.push(c[b]);else for(b=0;null!=h[b];b++)h[b]&&1===h[b].nodeType&&i.push(c[b]);else i.push.apply(i,h);else u(h,i);return p&&(n(p,a,i,s),n.uniqueSort(i)),i},n.uniqueSort=function(t){if(c&&(y=v,t.sort(c),y))for(var e=1;e0},n.find=function(t,e,n){var i,o,a,l,u,c;if(!t)return[];for(o=0,a=r.order.length;o":function(t,e){var i,r,o="string"==typeof e,s=0,a=t.length;if(o&&!w.test(e))for(e=e.toLowerCase();s=0)?n||i.push(s):n&&(e[a]=!1));return!1},ID:function(t){return t[1].replace(b,"")},TAG:function(t,e){return t[1].replace(b,"").toLowerCase()},CHILD:function(t){if("nth"===t[1]){t[2]||n.error(t[0]),t[2]=t[2].replace(/^\+|\s*/g,"");var e=/(-?)(\d*)(?:n([+\-]?\d*))?/.exec("even"===t[2]&&"2n"||"odd"===t[2]&&"2n+1"||!/\D/.test(t[2])&&"0n+"+t[2]||t[2]);t[2]=e[1]+(e[2]||1)-0,t[3]=e[3]-0}else t[2]&&n.error(t[0]);return t[0]=g++,t},ATTR:function(t,e,n,i,o,s){var a=t[1]=t[1].replace(b,"");return!s&&r.attrMap[a]&&(t[1]=r.attrMap[a]),t[4]=(t[4]||t[5]||"").replace(b,""),"~="===t[2]&&(t[4]=" "+t[4]+" "),t},PSEUDO:function(t,e,i,o,s){if("not"===t[1]){if(!((d.exec(t[3])||"").length>1||/^\w/.test(t[3]))){var a=n.filter(t[3],e,i,!0^s);return i||o.push.apply(o,a),!1}t[3]=n(t[3],null,null,e)}else if(r.match.POS.test(t[0])||r.match.CHILD.test(t[0]))return!0;return t},POS:function(t){return t.unshift(!0),t}},filters:{enabled:function(t){return!1===t.disabled&&"hidden"!==t.type},disabled:function(t){return!0===t.disabled},checked:function(t){return!0===t.checked},selected:function(t){return t.parentNode&&t.parentNode.selectedIndex,!0===t.selected},parent:function(t){return!!t.firstChild},empty:function(t){return!t.firstChild},has:function(t,e,i){return!!n(i[3],t).length},header:function(t){return/h\d/i.test(t.nodeName)},text:function(t){var e=t.getAttribute("type"),n=t.type;return"input"===t.nodeName.toLowerCase()&&"text"===n&&(e===n||null===e)},radio:function(t){return"input"===t.nodeName.toLowerCase()&&"radio"===t.type},checkbox:function(t){return"input"===t.nodeName.toLowerCase()&&"checkbox"===t.type},file:function(t){return"input"===t.nodeName.toLowerCase()&&"file"===t.type},password:function(t){return"input"===t.nodeName.toLowerCase()&&"password"===t.type},submit:function(t){var e=t.nodeName.toLowerCase();return("input"===e||"button"===e)&&"submit"===t.type},image:function(t){return"input"===t.nodeName.toLowerCase()&&"image"===t.type},reset:function(t){var e=t.nodeName.toLowerCase();return("input"===e||"button"===e)&&"reset"===t.type},button:function(t){var e=t.nodeName.toLowerCase();return"input"===e&&"button"===t.type||"button"===e},input:function(t){return/input|select|textarea|button/i.test(t.nodeName)},focus:function(t){return t===t.ownerDocument.activeElement}},setFilters:{first:function(t,e){return 0===e},last:function(t,e,n,i){return e===i.length-1},even:function(t,e){return e%2==0},odd:function(t,e){return e%2==1},lt:function(t,e,n){return en[3]-0},nth:function(t,e,n){return n[3]-0===e},eq:function(t,e,n){return n[3]-0===e}},filter:{PSEUDO:function(t,e,o,s){var a,l,u,c=e[1],h=r.filters[c];if(h)return h(t,o,e,s);if("contains"===c)return(t.textContent||t.innerText||i([t])||"").indexOf(e[3])>=0;if("not"===c){for(a=e[3],l=0, -u=a.length;l=0}},ID:function(t,e){return 1===t.nodeType&&t.getAttribute("id")===e},TAG:function(t,e){return"*"===e&&1===t.nodeType||!!t.nodeName&&t.nodeName.toLowerCase()===e},CLASS:function(t,e){return(" "+(t.className||t.getAttribute("class"))+" ").indexOf(e)>-1},ATTR:function(t,e){var i=e[1],o=n.attr?n.attr(t,i):r.attrHandle[i]?r.attrHandle[i](t):null!=t[i]?t[i]:t.getAttribute(i),s=o+"",a=e[2],l=e[4];return null==o?"!="===a:!a&&n.attr?null!=o:"="===a?s===l:"*="===a?s.indexOf(l)>=0:"~="===a?(" "+s+" ").indexOf(l)>=0:l?"!="===a?s!==l:"^="===a?0===s.indexOf(l):"$="===a?s.substr(s.length-l.length)===l:"|="===a&&(s===l||s.substr(0,l.length+1)===l+"-"):s&&!1!==o},POS:function(t,e,n,i){var o=e[2],s=r.setFilters[o];if(s)return s(t,n,e,i)}}},o=r.match.POS,a=function(t,e){return"\\"+(e-0+1)};for(l in r.match)r.match[l]=RegExp(r.match[l].source+"(?![^\\[]*\\])(?![^\\(]*\\))"),r.leftMatch[l]=RegExp("(^(?:.|\\r|\\n)*?)"+r.match[l].source.replace(/\\(\d+)/g,a));r.match.globalPOS=o,u=function(t,e){return t=Array.prototype.slice.call(t,0),e?(e.push.apply(e,t),e):t};try{Array.prototype.slice.call(Se.documentElement.childNodes,0)[0].nodeType}catch(t){u=function(t,e){var n,i=0,r=e||[];if("[object Array]"===m.call(t))Array.prototype.push.apply(r,t);else if("number"==typeof t.length)for(n=t.length;i",n.insertBefore(t,n.firstChild),Se.getElementById(e)&&(r.find.ID=function(t,e,n){if(s!==e.getElementById&&!n){var i=e.getElementById(t[1]);return i?i.id===t[1]||s!==i.getAttributeNode&&i.getAttributeNode("id").nodeValue===t[1]?[i]:s:[]}},r.filter.ID=function(t,e){var n=s!==t.getAttributeNode&&t.getAttributeNode("id") -;return 1===t.nodeType&&n&&n.nodeValue===e}),n.removeChild(t),n=t=null}(),function(){var t=Se.createElement("div");t.appendChild(Se.createComment("")),t.getElementsByTagName("*").length>0&&(r.find.TAG=function(t,e){var n,i,r=e.getElementsByTagName(t[1]);if("*"===t[1]){for(n=[],i=0;r[i];i++)1===r[i].nodeType&&n.push(r[i]);r=n}return r}),t.innerHTML="",t.firstChild&&s!==t.firstChild.getAttribute&&"#"!==t.firstChild.getAttribute("href")&&(r.attrHandle.href=function(t){return t.getAttribute("href",2)}),t=null}(),Se.querySelectorAll&&function(){var t,e=n,i=Se.createElement("div");if(i.innerHTML="

",!i.querySelectorAll||0!==i.querySelectorAll(".TEST").length){n=function(t,i,o,s){var a,l,c,h,f,d,p;if(i=i||Se,!s&&!n.isXML(i)){if((a=/^(\w+$)|^\.([\w\-]+$)|^#([\w\-]+$)/.exec(t))&&(1===i.nodeType||9===i.nodeType)){if(a[1])return u(i.getElementsByTagName(t),o);if(a[2]&&r.find.CLASS&&i.getElementsByClassName)return u(i.getElementsByClassName(a[2]),o)}if(9===i.nodeType){if("body"===t&&i.body)return u([i.body],o);if(a&&a[3]){if(!(l=i.getElementById(a[3]))||!l.parentNode)return u([],o);if(l.id===a[3])return u([l],o)}try{return u(i.querySelectorAll(t),o)}catch(t){}}else if(1===i.nodeType&&"object"!==i.nodeName.toLowerCase()){c=i,h=i.getAttribute("id"),f=h||"__sizzle__",d=i.parentNode,p=/^\s*[+~]/.test(t),h?f=f.replace(/'/g,"\\$&"):i.setAttribute("id",f),p&&d&&(i=i.parentNode);try{if(!p||d)return u(i.querySelectorAll("[id='"+f+"'] "+t),o)}catch(t){}finally{h||c.removeAttribute("id")}}}return e(t,i,o,s)};for(t in e)n[t]=e[t];i=null}}(),function(){var t,e,i=Se.documentElement,o=i.matchesSelector||i.mozMatchesSelector||i.webkitMatchesSelector||i.msMatchesSelector;if(o){t=!o.call(Se.createElement("div"),"div"),e=!1;try{o.call(Se.documentElement,"[test!='']:sizzle")}catch(t){e=!0}n.matchesSelector=function(i,s){if(s=s.replace(/\=\s*([^'"\]]*)\s*\]/g,"='$1']"),!n.isXML(i))try{if(e||!r.match.PSEUDO.test(s)&&!/!=/.test(s)){var a=o.call(i,s);if(a||!t||i.document&&11!==i.document.nodeType)return a}}catch(t){}return n(s,null,null,[i]).length>0}}}(),function(){var t=Se.createElement("div");t.innerHTML="
",t.getElementsByClassName&&0!==t.getElementsByClassName("e").length&&(t.lastChild.className="e",1!==t.getElementsByClassName("e").length&&(r.order.splice(1,0,"CLASS"),r.find.CLASS=function(t,e,n){if(s!==e.getElementsByClassName&&!n)return e.getElementsByClassName(t[1])},t=null))}(),Se.documentElement.contains?n.contains=function(t,e){return t!==e&&(!t.contains||t.contains(e))}:Se.documentElement.compareDocumentPosition?n.contains=function(t,e){return!!(16&t.compareDocumentPosition(e))}:n.contains=function(){return!1},n.isXML=function(t){var e=(t?t.ownerDocument||t:0).documentElement;return!!e&&"HTML"!==e.nodeName},f=function(t,e,i){for(var o,s,a,l=[],u="",c=e.nodeType?[e]:e;o=r.match.PSEUDO.exec(t);)u+=o[0],t=t.replace(r.match.PSEUDO,"");for(t=r.relative[t]?t+"*":t,s=0,a=c.length;s0)for(o=r;o=0:Te.filter(t,this).length>0:this.filter(t).length>0)},closest:function(t,e){var n,i,r,o,s=[],a=this[0];if(Te.isArray(t)){for(r=1;a&&a.ownerDocument&&a!==e;){for(n=0;n-1:Te.find.matchesSelector(a,t)){s.push(a);break}if(!(a=a.parentNode)||!a.ownerDocument||a===e||11===a.nodeType)break}return s=s.length>1?Te.unique(s):s,this.pushStack(s,"closest",t)},index:function(t){return t?"string"==typeof t?Te.inArray(this[0],Te(t)):Te.inArray(t.jquery?t[0]:t,this):this[0]&&this[0].parentNode?this.prevAll().length:-1},add:function(t,e){var n="string"==typeof t?Te(t,e):Te.makeArray(t&&t.nodeType?[t]:t),i=Te.merge(this.get(),n);return this.pushStack(d(n[0])||d(i[0])?i:Te.unique(i))},andSelf:function(){return this.add(this.prevObject)}}),Te.each({parent:function(t){var e=t.parentNode;return e&&11!==e.nodeType?e:null},parents:function(t){return Te.dir(t,"parentNode")},parentsUntil:function(t,e,n){return Te.dir(t,"parentNode",n)},next:function(t){return Te.nth(t,2,"nextSibling")},prev:function(t){return Te.nth(t,2,"previousSibling")},nextAll:function(t){return Te.dir(t,"nextSibling")},prevAll:function(t){return Te.dir(t,"previousSibling")},nextUntil:function(t,e,n){return Te.dir(t,"nextSibling",n)},prevUntil:function(t,e,n){return Te.dir(t,"previousSibling",n)},siblings:function(t){return Te.sibling((t.parentNode||{}).firstChild,t)},children:function(t){return Te.sibling(t.firstChild)},contents:function(t){return Te.nodeName(t,"iframe")?t.contentDocument||t.contentWindow.document:Te.makeArray(t.childNodes)}},function(t,e){Te.fn[t]=function(n,i){var r=Te.map(this,e,n);return at.test(t)||(i=n),i&&"string"==typeof i&&(r=Te.filter(i,r)),r=this.length>1&&!dt[t]?Te.unique(r):r,(this.length>1||ut.test(i))&<.test(t)&&(r=r.reverse()),this.pushStack(r,t,ht.call(arguments).join(","))}}),Te.extend({filter:function(t,e,n){ -return n&&(t=":not("+t+")"),1===e.length?Te.find.matchesSelector(e[0],t)?[e[0]]:[]:Te.find.matches(t,e)},dir:function(t,e,n){for(var i=[],r=t[e];r&&9!==r.nodeType&&(n===s||1!==r.nodeType||!Te(r).is(n));)1===r.nodeType&&i.push(r),r=r[e];return i},nth:function(t,e,n,i){e=e||1;for(var r=0;t&&(1!==t.nodeType||++r!==e);t=t[n]);return t},sibling:function(t,e){for(var n=[];t;t=t.nextSibling)1===t.nodeType&&t!==e&&n.push(t);return n}}),pt="abbr|article|aside|audio|bdi|canvas|data|datalist|details|figcaption|figure|footer|header|hgroup|mark|meter|nav|output|progress|section|summary|time|video",gt=/ jQuery\d+="(?:\d+|null)"/g,mt=/^\s+/,yt=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/gi,vt=/<([\w:]+)/,bt=/
","
"],tr:[2,"","
"],td:[3,"","
"],col:[2,"","
"],area:[1,"",""],_default:[0,"",""]},Ct=g(Se),Tt.optgroup=Tt.option,Tt.tbody=Tt.tfoot=Tt.colgroup=Tt.caption=Tt.thead,Tt.th=Tt.td,Te.support.htmlSerialize||(Tt._default=[1,"div
","
"]),Te.fn.extend({text:function(t){return Te.access(this,function(t){return t===s?Te.text(this):this.empty().append((this[0]&&this[0].ownerDocument||Se).createTextNode(t))},null,t,arguments.length)},wrapAll:function(t){if(Te.isFunction(t))return this.each(function(e){Te(this).wrapAll(t.call(this,e))});if(this[0]){var e=Te(t,this[0].ownerDocument).eq(0).clone(!0);this[0].parentNode&&e.insertBefore(this[0]),e.map(function(){for(var t=this;t.firstChild&&1===t.firstChild.nodeType;)t=t.firstChild;return t}).append(this)}return this},wrapInner:function(t){return Te.isFunction(t)?this.each(function(e){Te(this).wrapInner(t.call(this,e))}):this.each(function(){var e=Te(this),n=e.contents();n.length?n.wrapAll(t):e.append(t)})},wrap:function(t){var e=Te.isFunction(t);return this.each(function(n){Te(this).wrapAll(e?t.call(this,n):t)})},unwrap:function(){return this.parent().each(function(){Te.nodeName(this,"body")||Te(this).replaceWith(this.childNodes)}).end()},append:function(){return this.domManip(arguments,!0,function(t){1===this.nodeType&&this.appendChild(t)})},prepend:function(){return this.domManip(arguments,!0,function(t){1===this.nodeType&&this.insertBefore(t,this.firstChild)})},before:function(){if(this[0]&&this[0].parentNode)return this.domManip(arguments,!1,function(t){this.parentNode.insertBefore(t,this)});if(arguments.length){var t=Te.clean(arguments);return t.push.apply(t,this.toArray()),this.pushStack(t,"before",arguments)}},after:function(){if(this[0]&&this[0].parentNode)return this.domManip(arguments,!1,function(t){this.parentNode.insertBefore(t,this.nextSibling)});if(arguments.length){ -var t=this.pushStack(this,"after",arguments);return t.push.apply(t,Te.clean(arguments)),t}},remove:function(t,e){for(var n,i=0;null!=(n=this[i]);i++)t&&!Te.filter(t,[n]).length||(e||1!==n.nodeType||(Te.cleanData(n.getElementsByTagName("*")),Te.cleanData([n])),n.parentNode&&n.parentNode.removeChild(n));return this},empty:function(){for(var t,e=0;null!=(t=this[e]);e++)for(1===t.nodeType&&Te.cleanData(t.getElementsByTagName("*"));t.firstChild;)t.removeChild(t.firstChild);return this},clone:function(t,e){return t=null!=t&&t,e=null==e?t:e,this.map(function(){return Te.clone(this,t,e)})},html:function(t){return Te.access(this,function(t){var e=this[0]||{},n=0,i=this.length;if(t===s)return 1===e.nodeType?e.innerHTML.replace(gt,""):null;if("string"==typeof t&&!wt.test(t)&&(Te.support.leadingWhitespace||!mt.test(t))&&!Tt[(vt.exec(t)||["",""])[1].toLowerCase()]){t=t.replace(yt,"<$1>");try{for(;n1&&l0?this.clone(!0):this).get(),Te(a[i])[e](o),s=s.concat(o);return this.pushStack(s,t,a.selector)}}),Te.extend({clone:function(t,e,n){var i,r,o,s=Te.support.html5Clone||Te.isXMLDoc(t)||!kt.test("<"+t.nodeName+">")?t.cloneNode(!0):x(t);if(!(Te.support.noCloneEvent&&Te.support.noCloneChecked||1!==t.nodeType&&11!==t.nodeType||Te.isXMLDoc(t)))for(v(t,s),i=b(t),r=b(s),o=0;i[o];++o)r[o]&&v(i[o],r[o]);if(e&&(y(t,s),n))for(i=b(t),r=b(s),o=0;i[o];++o)y(i[o],r[o]);return i=r=null,s},clean:function(t,e,n,i){var r,o,a,l,u,c,h,f,d,p,m,y,v,b,_,x=[];for(e=e||Se,s===e.createElement&&(e=e.ownerDocument||e[0]&&e[0].ownerDocument||Se),l=0;null!=(u=t[l]);l++)if("number"==typeof u&&(u+=""),u){if("string"==typeof u)if(_t.test(u)){for(u=u.replace(yt,"<$1>"),c=(vt.exec(u)||["",""])[1].toLowerCase(),h=Tt[c]||Tt._default,f=h[0],d=e.createElement("div"),p=Ct.childNodes,e===Se?Ct.appendChild(d):g(e).appendChild(d),d.innerHTML=h[1]+u+h[2];f--;)d=d.lastChild;if(!Te.support.tbody)for(y=bt.test(u),v="table"!==c||y?""!==h[1]||y?[]:d.childNodes:d.firstChild&&d.firstChild.childNodes,a=v.length-1;a>=0;--a)Te.nodeName(v[a],"tbody")&&!v[a].childNodes.length&&v[a].parentNode.removeChild(v[a]);!Te.support.leadingWhitespace&&mt.test(u)&&d.insertBefore(e.createTextNode(mt.exec(u)[0]),d.firstChild),u=d.childNodes,d&&(d.parentNode.removeChild(d),p.length>0&&(m=p[p.length-1])&&m.parentNode&&m.parentNode.removeChild(m))}else u=e.createTextNode(u);if(!Te.support.appendChecked)if(u[0]&&"number"==typeof(b=u.length))for(a=0;a1)},Te.extend({cssHooks:{opacity:{get:function(t,e){if(e){var n=Ht(t,"opacity");return""===n?"1":n}return t.style.opacity}}},cssNumber:{fillOpacity:!0,fontWeight:!0,lineHeight:!0,opacity:!0,orphans:!0,widows:!0, -zIndex:!0,zoom:!0},cssProps:{float:Te.support.cssFloat?"cssFloat":"styleFloat"},style:function(t,e,n,i){if(t&&3!==t.nodeType&&8!==t.nodeType&&t.style){var r,o,a=Te.camelCase(e),l=t.style,u=Te.cssHooks[a];if(e=Te.cssProps[a]||a,n===s)return u&&"get"in u&&(r=u.get(t,!1,i))!==s?r:l[e];if(!(o=typeof n,"string"===o&&(r=At.exec(n))&&(n=+(r[1]+1)*+r[2]+parseFloat(Te.css(t,e)),o="number"),null==n||"number"===o&&isNaN(n)||("number"!==o||Te.cssNumber[a]||(n+="px"),u&&"set"in u&&(n=u.set(t,n))===s)))try{l[e]=n}catch(t){}}},css:function(t,e,n){var i,r;return e=Te.camelCase(e),r=Te.cssHooks[e],e=Te.cssProps[e]||e,"cssFloat"===e&&(e="float"),r&&"get"in r&&(i=r.get(t,!0,n))!==s?i:Ht?Ht(t,e):s},swap:function(t,e,n){var i,r,o={};for(r in e)o[r]=t.style[r],t.style[r]=e[r];i=n.call(t);for(r in e)t.style[r]=o[r];return i}}),Te.curCSS=Te.css,Se.defaultView&&Se.defaultView.getComputedStyle&&(Yt=function(t,e){var n,i,r,o,s=t.style;return e=e.replace(Et,"-$1").toLowerCase(),(i=t.ownerDocument.defaultView)&&(r=i.getComputedStyle(t,null))&&(""!==(n=r.getPropertyValue(e))||Te.contains(t.ownerDocument.documentElement,t)||(n=Te.style(t,e))),!Te.support.pixelMargin&&r&&It.test(e)&&Lt.test(n)&&(o=s.width,s.width=n,n=r.width,s.width=o),n}),Se.documentElement.currentStyle&&(zt=function(t,e){var n,i,r,o=t.currentStyle&&t.currentStyle[e],s=t.style;return null==o&&s&&(r=s[e])&&(o=r),Lt.test(o)&&(n=s.left,i=t.runtimeStyle&&t.runtimeStyle.left,i&&(t.runtimeStyle.left=t.currentStyle.left),s.left="fontSize"===e?"1em":o,o=s.pixelLeft+"px",s.left=n,i&&(t.runtimeStyle.left=i)),""===o?"auto":o}),Ht=Yt||zt,Te.each(["height","width"],function(t,e){Te.cssHooks[e]={get:function(t,n,i){if(n)return 0!==t.offsetWidth?k(t,e,i):Te.swap(t,jt,function(){return k(t,e,i)})},set:function(t,e){return Nt.test(e)?e+"px":e}}}),Te.support.opacity||(Te.cssHooks.opacity={get:function(t,e){return Ot.test((e&&t.currentStyle?t.currentStyle.filter:t.style.filter)||"")?parseFloat(RegExp.$1)/100+"":e?"1":""},set:function(t,e){var n=t.style,i=t.currentStyle,r=Te.isNumeric(e)?"alpha(opacity="+100*e+")":"",o=i&&i.filter||n.filter||"";n.zoom=1,e>=1&&""===Te.trim(o.replace(Pt,""))&&(n.removeAttribute("filter"),i&&!i.filter)||(n.filter=Pt.test(o)?o.replace(Pt,r):o+" "+r)}}),Te(function(){Te.support.reliableMarginRight||(Te.cssHooks.marginRight={get:function(t,e){return Te.swap(t,{display:"inline-block"},function(){return e?Ht(t,"margin-right"):t.style.marginRight})}})}),Te.expr&&Te.expr.filters&&(Te.expr.filters.hidden=function(t){var e=t.offsetWidth,n=t.offsetHeight;return 0===e&&0===n||!Te.support.reliableHiddenOffsets&&"none"===(t.style&&t.style.display||Te.css(t,"display"))},Te.expr.filters.visible=function(t){return!Te.expr.filters.hidden(t)}),Te.each({margin:"",padding:"",border:"Width"},function(t,e){Te.cssHooks[t+e]={expand:function(n){var i,r="string"==typeof n?n.split(" "):[n],o={};for(i=0;i<4;i++)o[t+Ft[i]+e]=r[i]||r[i-2]||r[0];return o}}}),Rt=/%20/g,Wt=/\[\]$/,Vt=/\r?\n/g,Bt=/#.*$/,Ut=/^(.*?):[ \t]*([^\r\n]*)\r?$/gm, -qt=/^(?:color|date|datetime|datetime-local|email|hidden|month|number|password|range|search|tel|text|time|url|week)$/i,$t=/^(?:about|app|app\-storage|.+\-extension|file|res|widget):$/,Gt=/^(?:GET|HEAD)$/,Xt=/^\/\//,Kt=/\?/,Qt=/)<[^<]*)*<\/script>/gi,Jt=/^(?:select|textarea)/i,Zt=/\s+/,te=/([?&])_=[^&]*/,ee=/^([\w\+\.\-]+:)(?:\/\/([^\/?#:]*)(?::(\d+))?)?/,ne=Te.fn.load,ie={},re={},ae="*/*";try{oe=De.href}catch(t){oe=Se.createElement("a"),oe.href="",oe=oe.href}se=ee.exec(oe.toLowerCase())||[],Te.fn.extend({load:function(t,e,n){var i,r,o,a;return"string"!=typeof t&&ne?ne.apply(this,arguments):this.length?(i=t.indexOf(" "),i>=0&&(r=t.slice(i,t.length),t=t.slice(0,i)),o="GET",e&&(Te.isFunction(e)?(n=e,e=s):"object"==typeof e&&(e=Te.param(e,Te.ajaxSettings.traditional),o="POST")),a=this,Te.ajax({url:t,type:o,dataType:"html",data:e,complete:function(t,e,i){i=t.responseText,t.isResolved()&&(t.done(function(t){i=t}),a.html(r?Te("
").append(i.replace(Qt,"")).find(r):i)),n&&a.each(n,[i,e,t])}}),this):this},serialize:function(){return Te.param(this.serializeArray())},serializeArray:function(){return this.map(function(){return this.elements?Te.makeArray(this.elements):this}).filter(function(){return this.name&&!this.disabled&&(this.checked||Jt.test(this.nodeName)||qt.test(this.type))}).map(function(t,e){var n=Te(this).val();return null==n?null:Te.isArray(n)?Te.map(n,function(t,n){return{name:e.name,value:t.replace(Vt,"\r\n")}}):{name:e.name,value:n.replace(Vt,"\r\n")}}).get()}}),Te.each("ajaxStart ajaxStop ajaxComplete ajaxError ajaxSuccess ajaxSend".split(" "),function(t,e){Te.fn[e]=function(t){return this.on(e,t)}}),Te.each(["get","post"],function(t,e){Te[e]=function(t,n,i,r){return Te.isFunction(n)&&(r=r||i,i=n,n=s),Te.ajax({type:e,url:t,data:n,success:i,dataType:r})}}),Te.extend({getScript:function(t,e){return Te.get(t,s,e,"script")},getJSON:function(t,e,n){return Te.get(t,e,n,"json")},ajaxSetup:function(t,e){return e?D(t,Te.ajaxSettings):(e=t,t=Te.ajaxSettings),D(t,e),t},ajaxSettings:{url:oe,isLocal:$t.test(se[1]),global:!0,type:"GET",contentType:"application/x-www-form-urlencoded; charset=UTF-8",processData:!0,async:!0,accepts:{xml:"application/xml, text/xml",html:"text/html",text:"text/plain",json:"application/json, text/javascript","*":ae},contents:{xml:/xml/,html:/html/,json:/json/},responseFields:{xml:"responseXML",text:"responseText"},converters:{"* text":o.String,"text html":!0,"text json":Te.parseJSON,"text xml":Te.parseXML},flatOptions:{context:!0,url:!0}},ajaxPrefilter:S(ie),ajaxTransport:S(re),ajax:function(t,e){function n(t,e,n,h){if(2!==v){v=2,m&&clearTimeout(m),g=s,d=h||"",w.readyState=t>0?4:0;var f,p,y,_,x,k=e,S=n?C(i,w,n):s;if(t>=200&&t<300||304===t)if(i.ifModified&&((_=w.getResponseHeader("Last-Modified"))&&(Te.lastModified[c]=_),(x=w.getResponseHeader("Etag"))&&(Te.etag[c]=x)),304===t)k="notmodified",f=!0;else try{p=P(i,S),k="success",f=!0}catch(t){k="parsererror",y=t}else y=k,k&&!t||(k="error",t<0&&(t=0));w.status=t,w.statusText=""+(e||k), -f?a.resolveWith(r,[p,k,w]):a.rejectWith(r,[w,k,y]),w.statusCode(u),u=s,b&&o.trigger("ajax"+(f?"Success":"Error"),[w,i,f?p:y]),l.fireWith(r,[w,k]),b&&(o.trigger("ajaxComplete",[w,i]),--Te.active||Te.event.trigger("ajaxStop"))}}var i,r,o,a,l,u,c,h,f,d,p,g,m,y,v,b,_,w,x,k;if("object"==typeof t&&(e=t,t=s),e=e||{},i=Te.ajaxSetup({},e),r=i.context||i,o=r!==i&&(r.nodeType||r instanceof Te)?Te(r):Te.event,a=Te.Deferred(),l=Te.Callbacks("once memory"),u=i.statusCode||{},h={},f={},v=0,w={readyState:0,setRequestHeader:function(t,e){if(!v){var n=t.toLowerCase();t=f[n]=f[n]||t,h[t]=e}return this},getAllResponseHeaders:function(){return 2===v?d:null},getResponseHeader:function(t){var e;if(2===v){if(!p)for(p={};e=Ut.exec(d);)p[e[1].toLowerCase()]=e[2];e=p[t.toLowerCase()]}return e===s?null:e},overrideMimeType:function(t){return v||(i.mimeType=t),this},abort:function(t){return t=t||"abort",g&&g.abort(t),n(0,t),this}},a.promise(w),w.success=w.done,w.error=w.fail,w.complete=l.add,w.statusCode=function(t){if(t){var e;if(v<2)for(e in t)u[e]=[u[e],t[e]];else e=t[w.status],w.then(e,e)}return this},i.url=((t||i.url)+"").replace(Bt,"").replace(Xt,se[1]+"//"),i.dataTypes=Te.trim(i.dataType||"*").toLowerCase().split(Zt),null==i.crossDomain&&(y=ee.exec(i.url.toLowerCase()),i.crossDomain=!(!y||y[1]==se[1]&&y[2]==se[2]&&(y[3]||("http:"===y[1]?80:443))==(se[3]||("http:"===se[1]?80:443)))),i.data&&i.processData&&"string"!=typeof i.data&&(i.data=Te.param(i.data,i.traditional)),M(ie,i,e,w),2===v)return!1;b=i.global,i.type=i.type.toUpperCase(),i.hasContent=!Gt.test(i.type),b&&0==Te.active++&&Te.event.trigger("ajaxStart"),i.hasContent||(i.data&&(i.url+=(Kt.test(i.url)?"&":"?")+i.data,delete i.data),c=i.url,!1===i.cache&&(x=Te.now(),k=i.url.replace(te,"$1_="+x),i.url=k+(k===i.url?(Kt.test(i.url)?"&":"?")+"_="+x:""))),(i.data&&i.hasContent&&!1!==i.contentType||e.contentType)&&w.setRequestHeader("Content-Type",i.contentType),i.ifModified&&(c=c||i.url,Te.lastModified[c]&&w.setRequestHeader("If-Modified-Since",Te.lastModified[c]),Te.etag[c]&&w.setRequestHeader("If-None-Match",Te.etag[c])),w.setRequestHeader("Accept",i.dataTypes[0]&&i.accepts[i.dataTypes[0]]?i.accepts[i.dataTypes[0]]+("*"!==i.dataTypes[0]?", "+ae+"; q=0.01":""):i.accepts["*"]);for(_ in i.headers)w.setRequestHeader(_,i.headers[_]);if(i.beforeSend&&(!1===i.beforeSend.call(r,w,i)||2===v))return w.abort(),!1;for(_ in{success:1,error:1,complete:1})w[_](i[_]);if(g=M(re,i,e,w)){w.readyState=1,b&&o.trigger("ajaxSend",[w,i]),i.async&&i.timeout>0&&(m=setTimeout(function(){w.abort("timeout")},i.timeout));try{v=1,g.send(h,n)}catch(t){if(!(v<2))throw t;n(-1,t)}}else n(-1,"No Transport");return w},param:function(t,e){var n,i=[],r=function(t,e){e=Te.isFunction(e)?e():e,i[i.length]=encodeURIComponent(t)+"="+encodeURIComponent(e)};if(e===s&&(e=Te.ajaxSettings.traditional),Te.isArray(t)||t.jquery&&!Te.isPlainObject(t))Te.each(t,function(){r(this.name,this.value)});else for(n in t)T(n,t[n],e,r);return i.join("&").replace(Rt,"+")}}),Te.extend({active:0,lastModified:{},etag:{}}),le=Te.now(), -ue=/(\=)\?(&|$)|\?\?/i,Te.ajaxSetup({jsonp:"callback",jsonpCallback:function(){return Te.expando+"_"+le++}}),Te.ajaxPrefilter("json jsonp",function(t,e,n){var i,r,s,a,l,u,c="string"==typeof t.data&&/^application\/x\-www\-form\-urlencoded/.test(t.contentType);if("jsonp"===t.dataTypes[0]||!1!==t.jsonp&&(ue.test(t.url)||c&&ue.test(t.data)))return r=t.jsonpCallback=Te.isFunction(t.jsonpCallback)?t.jsonpCallback():t.jsonpCallback,s=o[r],a=t.url,l=t.data,u="$1"+r+"$2",!1!==t.jsonp&&(a=a.replace(ue,u),t.url===a&&(c&&(l=l.replace(ue,u)),t.data===l&&(a+=(/\?/.test(a)?"&":"?")+t.jsonp+"="+r))),t.url=a,t.data=l,o[r]=function(t){i=[t]},n.always(function(){o[r]=s,i&&Te.isFunction(s)&&o[r](i[0])}),t.converters["script json"]=function(){return i||Te.error(r+" was not called"),i[0]},t.dataTypes[0]="json","script"}),Te.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/javascript|ecmascript/},converters:{"text script":function(t){return Te.globalEval(t),t}}}),Te.ajaxPrefilter("script",function(t){t.cache===s&&(t.cache=!1),t.crossDomain&&(t.type="GET",t.global=!1)}),Te.ajaxTransport("script",function(t){if(t.crossDomain){var e,n=Se.head||Se.getElementsByTagName("head")[0]||Se.documentElement;return{send:function(i,r){e=Se.createElement("script"),e.async="async",t.scriptCharset&&(e.charset=t.scriptCharset),e.src=t.url,e.onload=e.onreadystatechange=function(t,i){(i||!e.readyState||/loaded|complete/.test(e.readyState))&&(e.onload=e.onreadystatechange=null,n&&e.parentNode&&n.removeChild(e),e=s,i||r(200,"success"))},n.insertBefore(e,n.firstChild)},abort:function(){e&&e.onload(0,1)}}}}),ce=!!o.ActiveXObject&&function(){for(var t in fe)fe[t](0,1)},he=0,Te.ajaxSettings.xhr=o.ActiveXObject?function(){return!this.isLocal&&O()||E()}:O,function(t){Te.extend(Te.support,{ajax:!!t,cors:!!t&&"withCredentials"in t})}(Te.ajaxSettings.xhr()),Te.support.ajax&&Te.ajaxTransport(function(t){if(!t.crossDomain||Te.support.cors){var e;return{send:function(n,i){var r,a,l=t.xhr();if(t.username?l.open(t.type,t.url,t.async,t.username,t.password):l.open(t.type,t.url,t.async),t.xhrFields)for(a in t.xhrFields)l[a]=t.xhrFields[a];t.mimeType&&l.overrideMimeType&&l.overrideMimeType(t.mimeType),t.crossDomain||n["X-Requested-With"]||(n["X-Requested-With"]="XMLHttpRequest");try{for(a in n)l.setRequestHeader(a,n[a])}catch(t){}l.send(t.hasContent&&t.data||null),e=function(n,o){var a,u,c,h,f;try{if(e&&(o||4===l.readyState))if(e=s,r&&(l.onreadystatechange=Te.noop,ce&&delete fe[r]),o)4!==l.readyState&&l.abort();else{a=l.status,c=l.getAllResponseHeaders(),h={},f=l.responseXML,f&&f.documentElement&&(h.xml=f);try{h.text=l.responseText}catch(n){}try{u=l.statusText}catch(t){u=""}a||!t.isLocal||t.crossDomain?1223===a&&(a=204):a=h.text?200:404}}catch(t){o||i(-1,t)}h&&i(a,u,h,c)},t.async&&4!==l.readyState?(r=++he,ce&&(fe||(fe={},Te(o).unload(ce)),fe[r]=e),l.onreadystatechange=e):e()},abort:function(){e&&e(0,1)}}}}),de={},me=/^(?:toggle|show|hide)$/,ye=/^([+\-]=)?([\d+.\-]+)([a-z%]*)$/i, -be=[["height","marginTop","marginBottom","paddingTop","paddingBottom"],["width","marginLeft","marginRight","paddingLeft","paddingRight"],["opacity"]],Te.fn.extend({show:function(t,e,n){var i,r,o,s;if(t||0===t)return this.animate(A("show",3),t,e,n);for(o=0,s=this.length;o=a.duration+this.startTime){this.now=this.end,this.pos=this.state=1,this.update(),a.animatedProperties[this.prop]=!0;for(e in a.animatedProperties)!0!==a.animatedProperties[e]&&(o=!1);if(o){if(null==a.overflow||Te.support.shrinkWrapBlocks||Te.each(["","X","Y"],function(t,e){s.style["overflow"+e]=a.overflow[t]}),a.hide&&Te(s).hide(),a.hide||a.show)for(e in a.animatedProperties)Te.style(s,e,a.orig[e]),Te.removeData(s,"fxshow"+e,!0),Te.removeData(s,"toggle"+e,!0);i=a.complete,i&&(a.complete=!1,i.call(s))}return!1} -return a.duration==1/0?this.now=r:(n=r-this.startTime,this.state=n/a.duration,this.pos=Te.easing[a.animatedProperties[this.prop]](this.state,n,0,1,a.duration),this.now=this.start+(this.end-this.start)*this.pos),this.update(),!0}},Te.extend(Te.fx,{tick:function(){for(var t,e=Te.timers,n=0;n-1,l={},u={},a?(u=i.position(),c=u.top,h=u.left):(c=parseFloat(o)||0,h=parseFloat(s)||0), -Te.isFunction(e)&&(e=e.call(t,n,r)),null!=e.top&&(l.top=e.top-r.top+c),null!=e.left&&(l.left=e.left-r.left+h),"using"in e?e.using.call(t,l):i.css(l)}},Te.fn.extend({position:function(){if(!this[0])return null;var t=this[0],e=this.offsetParent(),n=this.offset(),i=ke.test(e[0].nodeName)?{top:0,left:0}:e.offset();return n.top-=parseFloat(Te.css(t,"marginTop"))||0,n.left-=parseFloat(Te.css(t,"marginLeft"))||0,i.top+=parseFloat(Te.css(e[0],"borderTopWidth"))||0,i.left+=parseFloat(Te.css(e[0],"borderLeftWidth"))||0,{top:n.top-i.top,left:n.left-i.left}},offsetParent:function(){return this.map(function(){for(var t=this.offsetParent||Se.body;t&&!ke.test(t.nodeName)&&"static"===Te.css(t,"position");)t=t.offsetParent;return t})}}),Te.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(t,e){var n=/Y/.test(e);Te.fn[t]=function(i){return Te.access(this,function(t,i,r){var o=j(t);if(r===s)return o?e in o?o[e]:Te.support.boxModel&&o.document.documentElement[i]||o.document.body[i]:t[i];o?o.scrollTo(n?Te(o).scrollLeft():r,n?r:Te(o).scrollTop()):t[i]=r},t,i,arguments.length,null)}}),Te.each({Height:"height",Width:"width"},function(t,e){var n="client"+t,i="scroll"+t,r="offset"+t;Te.fn["inner"+t]=function(){var t=this[0];return t?t.style?parseFloat(Te.css(t,e,"padding")):this[e]():null},Te.fn["outer"+t]=function(t){var n=this[0];return n?n.style?parseFloat(Te.css(n,e,t?"margin":"border")):this[e]():null},Te.fn[e]=function(t){return Te.access(this,function(t,e,o){var a,l,u,c;return Te.isWindow(t)?(a=t.document,l=a.documentElement[n],Te.support.boxModel&&l||a.body&&a.body[n]||l):9===t.nodeType?(a=t.documentElement,a[n]>=a[i]?a[n]:Math.max(t.body[i],a[i],t.body[r],a[r])):o===s?(u=Te.css(t,e),c=parseFloat(u),Te.isNumeric(c)?c:u):void Te(t).css(e,o)},e,t,arguments.length,null)}}),o.jQuery=o.$=Te,n(385)&&n(385).jQuery&&(i=[],(r=function(){return Te}.apply(e,i))!==s&&(t.exports=r))}(window),t.exports=$},function(t,e,n){var i=n(29);t.exports=function(t){if(!i(t))throw TypeError(t+" is not an object!");return t}},,function(t,e){var n=t.exports="undefined"!=typeof window&&window.Math==Math?window:"undefined"!=typeof self&&self.Math==Math?self:Function("return this")();"number"==typeof __g&&(__g=n)},,function(t,e,n){var i=n(183)("wks"),r=n(112),o=n(20).Symbol,s="function"==typeof o;(t.exports=function(t){return i[t]||(i[t]=s&&o[t]||(s?o:r)("Symbol."+t))}).store=i},,,,,,,function(t,e){t.exports=function(t){return"object"==typeof t?null!==t:"function"==typeof t}},function(t,e,n){(function(e){t.exports=e.Mustache=n(570)}).call(e,function(){return this}())},,,,,,,function(t,e,n){"use strict";function i(t,e,n){return B.isNaN(e)?t:en?n:Math.round(e)}function r(t,e,n){return B.isNaN(e)?t:en?n:Math.round(1e4*e)/1e4}function o(t){return i(0,t,255)}function s(t){return i(0,t,255)}function a(t){return i(0,t,255)}function l(t){return r(0,t,1)}function u(t,e,n){return[o(t),s(e),a(n)]}function c(t,e){return t[0]===e[0]&&t[1]===e[1]&&t[2]===e[2]}function h(t,e,n,i){var r,u,c;return Array.isArray(t)?(r=t,i=e,[r[0],r[1],r[2],l(i)]):(u=t, -c=e,n=n||0,i=i||0,[o(u),s(c),a(n),l(i)])}function f(t,e){return t[0]===e[0]&&t[1]===e[1]&&t[2]===e[2]&&t[3]===e[3]}function d(t){return r(0,t,1)}function p(t){return r(0,t,1)}function g(t){return r(0,t,1)}function m(t){return r(0,t,1)}function y(t){return r(0,t,1)}function v(t,e,n){return[d(t),p(e),m(n)]}function b(t,e){return t[0]===e[0]&&t[1]===e[1]&&t[2]===e[2]}function _(t,e,n){return[d(t),g(e),y(n)]}function w(t,e){return t[0]===e[0]&&t[1]===e[1]&&t[2]===e[2]}function x(t){var e,n=t[0],i=t[1],r=t[2],o=n/255,s=i/255,a=r/255,l=Math.min(o,s,a),u=Math.max(o,s,a),c=0,h=0,f=(l+u)/2;if(l===u)c=0,h=0;else switch(e=u-l,h=f>.5?e/(2-u-l):e/(u+l),u){case o:c=((s-a)/e+(s1&&(n-=1),n<1/6?t+6*(e-t)*n:n<.5?e:n<2/3?t+(e-t)*(2/3-n)*6:t}function S(t){var e,n,i,r,l,u=t[0],c=t[1],h=t[2];return 0===c?e=n=i=h:(r=h<.5?h*(1+c):h+c-h*c,l=2*h-r,e=k(l,r,u+1/3),n=k(l,r,u),i=k(l,r,u-1/3)),[o(255*e),s(255*n),a(255*i)]}function M(t){var e=t[0],n=t[1],i=t[2],r=e/255,o=n/255,s=i/255,a=Math.min(r,o,s),l=Math.max(r,o,s),u=l-a,c=0,h=0===l?0:u/l,f=l;if(l===a)c=0;else switch(l){case e:c=((o-s)/u+(o0)for(n in zi)i=zi[n],void 0!==(r=e[i])&&(t[i]=r);return t}function g(t){p(this,t),this._d=new Date(null!=t._d?t._d.getTime():NaN),!1===Ri&&(Ri=!0,e.updateOffset(this),Ri=!1)}function m(t){return t instanceof g||null!=t&&null!=t._isAMomentObject}function y(t){return t<0?Math.ceil(t):Math.floor(t)}function v(t){var e=+t,n=0;return 0!==e&&isFinite(e)&&(n=y(e)),n}function b(t,e,n){var i,r=Math.min(t.length,e.length),o=Math.abs(t.length-e.length),s=0;for(i=0;i0;){if(i=k(r.slice(0,e).join("-")))return i;if(n&&n.length>=e&&b(r,n,!0)>=e-1)break;e--}o++}return null}function k(e){var i=null;if(!Wi[e]&&void 0!==t&&t&&t.exports)try{i=Fn._abbr,n(569)("./"+e),S(i)}catch(t){}return Wi[e]}function S(t,e){var n;return t&&(n=void 0===e?D(t):M(t,e))&&(Fn=n),Fn._abbr}function M(t,e){return null!==e?(e.abbr=t,Wi[t]=Wi[t]||new _,Wi[t].set(e),S(t),Wi[t]):(delete Wi[t],null)}function D(t){var e;if(t&&t._locale&&t._locale._abbr&&(t=t._locale._abbr),!t)return Fn;if(!r(t)){if(e=k(t))return e;t=[t]}return x(t)}function T(t,e){var n=t.toLowerCase();Vi[n]=Vi[n+"s"]=Vi[e]=t}function C(t){return"string"==typeof t?Vi[t]||Vi[t.toLowerCase()]:void 0}function P(t){var e,n,i={};for(n in t)a(t,n)&&(e=C(n))&&(i[e]=t[n]);return i}function O(t,n){return function(i){return null!=i?(N(this,t,i),e.updateOffset(this,n),this):E(this,t)}}function E(t,e){return t._d["get"+(t._isUTC?"UTC":"")+e]()}function N(t,e,n){return t._d["set"+(t._isUTC?"UTC":"")+e](n)}function L(t,e){var n;if("object"==typeof t)for(n in t)this.set(n,t[n]);else if(t=C(t),"function"==typeof this[t])return this[t](e);return this}function A(t,e,n){var i=""+Math.abs(t),r=e-i.length;return(t>=0?n?"+":"":"-")+(""+Math.pow(10,Math.max(0,r))).substr(1)+i}function I(t,e,n,i){var r=i;"string"==typeof i&&(r=function(){return this[i]()}),t&&($i[t]=r),e&&($i[e[0]]=function(){return A(r.apply(this,arguments),e[1],e[2])}),n&&($i[n]=function(){return this.localeData().ordinal(r.apply(this,arguments),t)})}function j(t){return t.match(/\[[\s\S]/)?t.replace(/^\[|\]$/g,""):t.replace(/\\/g,"")}function F(t){var e,n,i=t.match(Bi);for(e=0,n=i.length;e=0&&Ui.test(t);)t=t.replace(Ui,n),Ui.lastIndex=0,i-=1;return t}function z(t){return"function"==typeof t&&"[object Function]"===Object.prototype.toString.call(t)}function R(t,e,n){lr[t]=z(e)?e:function(t){return t&&n?n:e}}function W(t,e){return a(lr,t)?lr[t](e._strict,e._locale):RegExp(V(t))}function V(t){return t.replace("\\","").replace(/\\(\[)|\\(\])|\[([^\]\[]*)\]|\\(.)/g,function(t,e,n,i,r){return e||n||i||r}).replace(/[-\/\\^$*+?.()|[\]{}]/g,"\\$&")}function B(t,e){var n,i=e;for("string"==typeof t&&(t=[t]),"number"==typeof e&&(i=function(t,n){n[e]=v(t)}),n=0;n11?hr:n[fr]<1||n[fr]>$(n[cr],n[hr])?fr:n[dr]<0||n[dr]>24||24===n[dr]&&(0!==n[pr]||0!==n[gr]||0!==n[mr])?dr:n[pr]<0||n[pr]>59?pr:n[gr]<0||n[gr]>59?gr:n[mr]<0||n[mr]>999?mr:-1,h(t)._overflowDayOfYear&&(efr)&&(e=fr),h(t).overflow=e),t}function et(t){!1===e.suppressDeprecationWarnings&&"undefined"!=typeof console&&console.warn&&console.warn("Deprecation warning: "+t)}function nt(t,e){var n=!0;return l(function(){return n&&(et(t+"\n"+Error().stack),n=!1),e.apply(this,arguments)},e)}function it(t,e){zn[t]||(et(e),zn[t]=!0)}function rt(t){var e,n,i=t._i,r=Rn.exec(i);if(r){for(h(t).iso=!0,e=0,n=Wn.length;er&&(o-=7),o0?t:t-1,dayOfYear:o>0?o:lt(t-1)+o}}function vt(t){var e=Math.round((this.clone().startOf("day")-this.clone().startOf("year"))/864e5)+1;return null==t?e:this.add(t-e,"d")}function bt(t,e,n){return null!=t?t:null!=e?e:n}function _t(t){var e=new Date;return t._useUTC?[e.getUTCFullYear(),e.getUTCMonth(),e.getUTCDate()]:[e.getFullYear(),e.getMonth(),e.getDate()]}function wt(t){var e,n,i,r,o=[];if(!t._d){for(i=_t(t),t._w&&null==t._a[fr]&&null==t._a[hr]&&xt(t),t._dayOfYear&&(r=bt(t._a[cr],i[cr]),t._dayOfYear>lt(r)&&(h(t)._overflowDayOfYear=!0),n=at(r,0,t._dayOfYear),t._a[hr]=n.getUTCMonth(),t._a[fr]=n.getUTCDate()),e=0;e<3&&null==t._a[e];++e)t._a[e]=o[e]=i[e];for(;e<7;e++)t._a[e]=o[e]=null==t._a[e]?2===e?1:0:t._a[e];24===t._a[dr]&&0===t._a[pr]&&0===t._a[gr]&&0===t._a[mr]&&(t._nextDay=!0,t._a[dr]=0),t._d=(t._useUTC?at:st).apply(null,o),null!=t._tzm&&t._d.setUTCMinutes(t._d.getUTCMinutes()-t._tzm),t._nextDay&&(t._a[dr]=24)}}function xt(t){var e,n,i,r,o,s,a;e=t._w,null!=e.GG||null!=e.W||null!=e.E?(o=1,s=4,n=bt(e.GG,t._a[cr],ht(Et(),1,4).year),i=bt(e.W,1),r=bt(e.E,1)):(o=t._locale._week.dow,s=t._locale._week.doy,n=bt(e.gg,t._a[cr],ht(Et(),o,s).year),i=bt(e.w,1),null!=e.d?(r=e.d)0&&h(t).unusedInput.push(s),a=a.slice(a.indexOf(i)+i.length),u+=i.length),$i[o]?(i?h(t).empty=!1:h(t).unusedTokens.push(o),q(o,i,t)):t._strict&&!i&&h(t).unusedTokens.push(o);h(t).charsLeftOver=l-u,a.length>0&&h(t).unusedInput.push(a),!0===h(t).bigHour&&t._a[dr]<=12&&t._a[dr]>0&&(h(t).bigHour=void 0),t._a[dr]=St(t._locale,t._a[dr],t._meridiem),wt(t),tt(t)}function St(t,e,n){var i;return null==n?e:null!=t.meridiemHour?t.meridiemHour(e,n):null!=t.isPM?(i=t.isPM(n),i&&e<12&&(e+=12),i||12!==e||(e=0),e):e}function Mt(t){var e,n,i,r,o;if(0===t._f.length)return h(t).invalidFormat=!0,void(t._d=new Date(NaN));for(r=0;rthis.clone().month(0).utcOffset()||this.utcOffset()>this.clone().month(5).utcOffset()}function Gt(){var t,e;return void 0!==this._isDSTShifted?this._isDSTShifted:(t={},p(t,this),t=Ct(t), -t._a?(e=t._isUTC?u(t._a):Et(t._a),this._isDSTShifted=this.isValid()&&b(t._a,e.toArray())>0):this._isDSTShifted=!1,this._isDSTShifted)}function Xt(){return!this._isUTC}function Kt(){return this._isUTC}function Qt(){return this._isUTC&&0===this._offset}function Jt(t,e){var n,i,r,o=t,s=null;return jt(t)?o={ms:t._milliseconds,d:t._days,M:t._months}:"number"==typeof t?(o={},e?o[e]=t:o.milliseconds=t):(s=Kn.exec(t))?(n="-"===s[1]?-1:1,o={y:0,d:v(s[fr])*n,h:v(s[dr])*n,m:v(s[pr])*n,s:v(s[gr])*n,ms:v(s[mr])*n}):(s=Qn.exec(t))?(n="-"===s[1]?-1:1,o={y:Zt(s[2],n),M:Zt(s[3],n),d:Zt(s[4],n),h:Zt(s[5],n),m:Zt(s[6],n),s:Zt(s[7],n),w:Zt(s[8],n)}):null==o?o={}:"object"==typeof o&&("from"in o||"to"in o)&&(r=ee(Et(o.from),Et(o.to)),o={},o.ms=r.milliseconds,o.M=r.months),i=new It(o),jt(t)&&a(t,"_locale")&&(i._locale=t._locale),i}function Zt(t,e){var n=t&&parseFloat(t.replace(",","."));return(isNaN(n)?0:n)*e}function te(t,e){var n={milliseconds:0,months:0};return n.months=e.month()-t.month()+12*(e.year()-t.year()),t.clone().add(n.months,"M").isAfter(e)&&--n.months,n.milliseconds=+e-+t.clone().add(n.months,"M"),n}function ee(t,e){var n;return e=Yt(e,t),t.isBefore(e)?n=te(t,e):(n=te(e,t),n.milliseconds=-n.milliseconds,n.months=-n.months),n}function ne(t,e){return function(n,i){var r,o;return null===i||isNaN(+i)||(it(e,"moment()."+e+"(period, number) is deprecated. Please use moment()."+e+"(number, period)."),o=n,n=i,i=o),n="string"==typeof n?+n:n,r=Jt(n,i),ie(this,r,t),this}}function ie(t,n,i,r){var o=n._milliseconds,s=n._days,a=n._months;r=null==r||r,o&&t._d.setTime(+t._d+o*i),s&&N(t,"Date",E(t,"Date")+s*i),a&&Q(t,E(t,"Month")+a*i),r&&e.updateOffset(t,s||a)}function re(t,e){var n=t||Et(),i=Yt(n,this).startOf("day"),r=this.diff(i,"days",!0),o=r<-6?"sameElse":r<-1?"lastWeek":r<0?"lastDay":r<1?"sameDay":r<2?"nextDay":r<7?"nextWeek":"sameElse";return this.format(e&&e[o]||this.localeData().calendar(o,this,Et(n)))}function oe(){return new g(this)}function se(t,e){return e=C(void 0!==e?e:"millisecond"),"millisecond"===e?(t=m(t)?t:Et(t),+this>+t):(m(t)?+t:+Et(t))<+this.clone().startOf(e)}function ae(t,e){var n;return e=C(void 0!==e?e:"millisecond"),"millisecond"===e?(t=m(t)?t:Et(t),+this<+t):(n=m(t)?+t:+Et(t),+this.clone().endOf(e)11?n?"pm":"PM":n?"am":"AM"}function Ke(t,e){e[mr]=v(1e3*("0."+t))}function Qe(){return this._isUTC?"UTC":""}function Je(){return this._isUTC?"Coordinated Universal Time":""}function Ze(t){return Et(1e3*t)}function tn(){return Et.apply(null,arguments).parseZone()}function en(t,e,n){var i=this._calendar[t];return"function"==typeof i?i.call(e,n):i}function nn(t){var e=this._longDateFormat[t],n=this._longDateFormat[t.toUpperCase()];return e||!n?e:(this._longDateFormat[t]=n.replace(/MMMM|MM|DD|dddd/g,function(t){return t.slice(1)}),this._longDateFormat[t])}function rn(){return this._invalidDate}function on(t){return this._ordinal.replace("%d",t)}function sn(t){return t}function an(t,e,n,i){var r=this._relativeTime[n];return"function"==typeof r?r(t,e,n,i):r.replace(/%d/i,t)}function ln(t,e){var n=this._relativeTime[t>0?"future":"past"];return"function"==typeof n?n(e):n.replace(/%s/i,e)}function un(t){var e,n;for(n in t)e=t[n],"function"==typeof e?this[n]=e:this["_"+n]=e;this._ordinalParseLenient=RegExp(this._ordinalParse.source+"|\\d{1,2}")}function cn(t,e,n,i){var r=D(),o=u().set(i,e);return r[n](o,t)}function hn(t,e,n,i,r){var o,s;if("number"==typeof t&&(e=t,t=void 0),t=t||"",null!=e)return cn(t,e,n,r);for(s=[],o=0;o=0&&s>=0&&a>=0||o<=0&&s<=0&&a<=0||(o+=864e5*wn(Sn(a)+s),s=0,a=0),l.milliseconds=o%1e3,t=y(o/1e3),l.seconds=t%60,e=y(t/60),l.minutes=e%60,n=y(e/60),l.hours=n%24,s+=y(n/24),r=y(kn(s)),a+=r,s-=wn(Sn(r)),i=y(a/12),a%=12,l.days=s,l.months=a,l.years=i,this}function kn(t){return 4800*t/146097}function Sn(t){return 146097*t/4800}function Mn(t){var e,n,i=this._milliseconds;if("month"===(t=C(t))||"year"===t)return e=this._days+i/864e5,n=this._months+kn(e), -"month"===t?n:n/12;switch(e=this._days+Math.round(Sn(this._months)),t){case"week":return e/7+i/6048e5;case"day":return e+i/864e5;case"hour":return 24*e+i/36e5;case"minute":return 1440*e+i/6e4;case"second":return 86400*e+i/1e3;case"millisecond":return Math.floor(864e5*e)+i;default:throw Error("Unknown unit "+t)}}function Dn(){return this._milliseconds+864e5*this._days+this._months%12*2592e6+31536e6*v(this._months/12)}function Tn(t){return function(){return this.as(t)}}function Cn(t){return t=C(t),this[t+"s"]()}function Pn(t){return function(){return this._data[t]}}function On(){return y(this.days()/7)}function En(t,e,n,i,r){return r.relativeTime(e||1,!!n,t,i)}function Nn(t,e,n){var i=Jt(t).abs(),r=ji(i.as("s")),o=ji(i.as("m")),s=ji(i.as("h")),a=ji(i.as("d")),l=ji(i.as("M")),u=ji(i.as("y")),c=r0,c[4]=n,En.apply(null,c)}function Ln(t,e){return void 0!==Fi[t]&&(void 0===e?Fi[t]:(Fi[t]=e,!0))}function An(t){var e=this.localeData(),n=Nn(this,!t,e);return t&&(n=e.pastFuture(+this,n)),e.postformat(n)}function In(){var t,e,n,i,r,o,s,a,l=Hi(this._milliseconds)/1e3,u=Hi(this._days),c=Hi(this._months),h=y(l/60),f=y(h/60);return l%=60,h%=60,t=y(c/12),c%=12,e=t,n=c,i=u,r=f,o=h,s=l,a=this.asSeconds(),a?(a<0?"-":"")+"P"+(e?e+"Y":"")+(n?n+"M":"")+(i?i+"D":"")+(r||o||s?"T":"")+(r?r+"H":"")+(o?o+"M":"")+(s?s+"S":""):"P0D"}var jn,Fn,Hn,Yn,zn,Rn,Wn,Vn,Bn,Un,qn,$n,Gn,Xn,Kn,Qn,Jn,Zn,ti,ei,ni,ii,ri,oi,si,ai,li,ui,ci,hi,fi,di,pi,gi,mi,yi,vi,bi,_i,wi,xi,ki,Si,Mi,Di,Ti,Ci,Pi,Oi,Ei,Ni,Li,Ai,Ii,ji,Fi,Hi,Yi,zi=e.momentProperties=[],Ri=!1,Wi={},Vi={},Bi=/(\[[^\[]*\])|(\\)?(Mo|MM?M?M?|Do|DDDo|DD?D?D?|ddd?d?|do?|w[o|w]?|W[o|W]?|Q|YYYYYY|YYYYY|YYYY|YY|gg(ggg?)?|GG(GGG?)?|e|E|a|A|hh?|HH?|mm?|ss?|S{1,9}|x|X|zz?|ZZ?|.)/g,Ui=/(\[[^\[]*\])|(\\)?(LTS|LT|LL?L?L?|l{1,4})/g,qi={},$i={},Gi=/\d/,Xi=/\d\d/,Ki=/\d{3}/,Qi=/\d{4}/,Ji=/[+-]?\d{6}/,Zi=/\d\d?/,tr=/\d{1,3}/,er=/\d{1,4}/,nr=/[+-]?\d{1,6}/,ir=/\d+/,rr=/[+-]?\d+/,or=/Z|[+-]\d\d:?\d\d/gi,sr=/[+-]?\d+(\.\d{1,3})?/,ar=/[0-9]*['a-z\u00A0-\u05FF\u0700-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF]+|[\u0600-\u06FF\/]+(\s*?[\u0600-\u06FF]+){1,2}/i,lr={},ur={},cr=0,hr=1,fr=2,dr=3,pr=4,gr=5,mr=6;for(I("M",["MM",2],"Mo",function(){return this.month()+1}),I("MMM",0,0,function(t){return this.localeData().monthsShort(this,t)}),I("MMMM",0,0,function(t){return this.localeData().months(this,t)}),T("month","M"),R("M",Zi),R("MM",Zi,Xi),R("MMM",ar),R("MMMM",ar),B(["M","MM"],function(t,e){e[hr]=v(t)-1}),B(["MMM","MMMM"],function(t,e,n,i){var r=n._locale.monthsParse(t,i,n._strict);null!=r?e[hr]=r:h(n).invalidMonth=t}),Hn="January_February_March_April_May_June_July_August_September_October_November_December".split("_"),Yn="Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec".split("_"),zn={},e.suppressDeprecationWarnings=!1, -Rn=/^\s*(?:[+-]\d{6}|\d{4})-(?:(\d\d-\d\d)|(W\d\d$)|(W\d\d-\d)|(\d\d\d))((T| )(\d\d(:\d\d(:\d\d(\.\d+)?)?)?)?([\+\-]\d\d(?::?\d\d)?|\s*Z)?)?$/,Wn=[["YYYYYY-MM-DD",/[+-]\d{6}-\d{2}-\d{2}/],["YYYY-MM-DD",/\d{4}-\d{2}-\d{2}/],["GGGG-[W]WW-E",/\d{4}-W\d{2}-\d/],["GGGG-[W]WW",/\d{4}-W\d{2}/],["YYYY-DDD",/\d{4}-\d{3}/]],Vn=[["HH:mm:ss.SSSS",/(T| )\d\d:\d\d:\d\d\.\d+/],["HH:mm:ss",/(T| )\d\d:\d\d:\d\d/],["HH:mm",/(T| )\d\d:\d\d/],["HH",/(T| )\d\d/]],Bn=/^\/?Date\((\-?\d+)/i,e.createFromInputFallback=nt("moment construction falls back to js Date. This is discouraged and will be removed in upcoming major release. Please refer to https://github.com/moment/moment/issues/1407 for more info.",function(t){t._d=new Date(t._i+(t._useUTC?" UTC":""))}),I(0,["YY",2],0,function(){return this.year()%100}),I(0,["YYYY",4],0,"year"),I(0,["YYYYY",5],0,"year"),I(0,["YYYYYY",6,!0],0,"year"),T("year","y"),R("Y",rr),R("YY",Zi,Xi),R("YYYY",er,Qi),R("YYYYY",nr,Ji),R("YYYYYY",nr,Ji),B(["YYYYY","YYYYYY"],cr),B("YYYY",function(t,n){n[cr]=2===t.length?e.parseTwoDigitYear(t):v(t)}),B("YY",function(t,n){n[cr]=e.parseTwoDigitYear(t)}),e.parseTwoDigitYear=function(t){return v(t)+(v(t)>68?1900:2e3)},Un=O("FullYear",!1),I("w",["ww",2],"wo","week"),I("W",["WW",2],"Wo","isoWeek"),T("week","w"),T("isoWeek","W"),R("w",Zi),R("ww",Zi,Xi),R("W",Zi),R("WW",Zi,Xi),U(["w","ww","W","WW"],function(t,e,n,i){e[i.substr(0,1)]=v(t)}),qn={dow:0,doy:6},I("DDD",["DDDD",3],"DDDo","dayOfYear"),T("dayOfYear","DDD"),R("DDD",tr),R("DDDD",Ki),B(["DDD","DDDD"],function(t,e,n){n._dayOfYear=v(t)}),e.ISO_8601=function(){},$n=nt("moment().min is deprecated, use moment.min instead. https://github.com/moment/moment/issues/1548",function(){var t=Et.apply(null,arguments);return tthis?this:t}),Ft("Z",":"),Ft("ZZ",""),R("Z",or),R("ZZ",or),B(["Z","ZZ"],function(t,e,n){n._useUTC=!0,n._tzm=Ht(t)}),Xn=/([\+\-]|\d\d)/gi,e.updateOffset=function(){},Kn=/(\-)?(?:(\d*)\.)?(\d+)\:(\d+)(?:\:(\d+)\.?(\d{3})?)?/,Qn=/^(-)?P(?:(?:([0-9,.]*)Y)?(?:([0-9,.]*)M)?(?:([0-9,.]*)D)?(?:T(?:([0-9,.]*)H)?(?:([0-9,.]*)M)?(?:([0-9,.]*)S)?)?|([0-9,.]*)W)$/,Jt.fn=It.prototype,Jn=ne(1,"add"),Zn=ne(-1,"subtract"),e.defaultFormat="YYYY-MM-DDTHH:mm:ssZ",ti=nt("moment().lang() is deprecated. Instead, use moment().localeData() to get the language configuration. Use moment().locale() to change languages.",function(t){return void 0===t?this.localeData():this.locale(t)}),I(0,["gg",2],0,function(){return this.weekYear()%100}),I(0,["GG",2],0,function(){return this.isoWeekYear()%100}),Ee("gggg","weekYear"),Ee("ggggg","weekYear"),Ee("GGGG","isoWeekYear"),Ee("GGGGG","isoWeekYear"),T("weekYear","gg"),T("isoWeekYear","GG"),R("G",rr),R("g",rr),R("GG",Zi,Xi),R("gg",Zi,Xi),R("GGGG",er,Qi),R("gggg",er,Qi),R("GGGGG",nr,Ji),R("ggggg",nr,Ji),U(["gggg","ggggg","GGGG","GGGGG"],function(t,e,n,i){e[i.substr(0,2)]=v(t)}),U(["gg","GG"],function(t,n,i,r){n[r]=e.parseTwoDigitYear(t) -}),I("Q",0,0,"quarter"),T("quarter","Q"),R("Q",Gi),B("Q",function(t,e){e[hr]=3*(v(t)-1)}),I("D",["DD",2],"Do","date"),T("date","D"),R("D",Zi),R("DD",Zi,Xi),R("Do",function(t,e){return t?e._ordinalParse:e._ordinalParseLenient}),B(["D","DD"],fr),B("Do",function(t,e){e[fr]=v(t.match(Zi)[0],10)}),ei=O("Date",!0),I("d",0,"do","day"),I("dd",0,0,function(t){return this.localeData().weekdaysMin(this,t)}),I("ddd",0,0,function(t){return this.localeData().weekdaysShort(this,t)}),I("dddd",0,0,function(t){return this.localeData().weekdays(this,t)}),I("e",0,0,"weekday"),I("E",0,0,"isoWeekday"),T("day","d"),T("weekday","e"),T("isoWeekday","E"),R("d",Zi),R("e",Zi),R("E",Zi),R("dd",ar),R("ddd",ar),R("dddd",ar),U(["dd","ddd","dddd"],function(t,e,n){var i=n._locale.weekdaysParse(t);null!=i?e.d=i:h(n).invalidWeekday=t}),U(["d","e","E"],function(t,e,n,i){e[i]=v(t)}),ni="Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),ii="Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"),ri="Su_Mo_Tu_We_Th_Fr_Sa".split("_"),I("H",["HH",2],0,"hour"),I("h",["hh",2],0,function(){return this.hours()%12||12}),qe("a",!0),qe("A",!1),T("hour","h"),R("a",$e),R("A",$e),R("H",Zi),R("h",Zi),R("HH",Zi,Xi),R("hh",Zi,Xi),B(["H","HH"],dr),B(["a","A"],function(t,e,n){n._isPm=n._locale.isPM(t),n._meridiem=t}),B(["h","hh"],function(t,e,n){e[dr]=v(t),h(n).bigHour=!0}),oi=/[ap]\.?m?\.?/i,si=O("Hours",!0),I("m",["mm",2],0,"minute"),T("minute","m"),R("m",Zi),R("mm",Zi,Xi),B(["m","mm"],pr),ai=O("Minutes",!1),I("s",["ss",2],0,"second"),T("second","s"),R("s",Zi),R("ss",Zi,Xi),B(["s","ss"],gr),li=O("Seconds",!1),I("S",0,0,function(){return~~(this.millisecond()/100)}),I(0,["SS",2],0,function(){return~~(this.millisecond()/10)}),I(0,["SSS",3],0,"millisecond"),I(0,["SSSS",4],0,function(){return 10*this.millisecond()}),I(0,["SSSSS",5],0,function(){return 100*this.millisecond()}),I(0,["SSSSSS",6],0,function(){return 1e3*this.millisecond()}),I(0,["SSSSSSS",7],0,function(){return 1e4*this.millisecond()}),I(0,["SSSSSSSS",8],0,function(){return 1e5*this.millisecond()}),I(0,["SSSSSSSSS",9],0,function(){return 1e6*this.millisecond()}),T("millisecond","ms"),R("S",tr,Gi),R("SS",tr,Xi),R("SSS",tr,Ki),ui="SSSS";ui.length<=9;ui+="S")R(ui,ir);for(ui="S";ui.length<=9;ui+="S")B(ui,Ke);return ci=O("Milliseconds",!1),I("z",0,0,"zoneAbbr"),I("zz",0,0,"zoneName"),hi=g.prototype,hi.add=Jn,hi.calendar=re,hi.clone=oe,hi.diff=ce,hi.endOf=xe,hi.format=pe,hi.from=ge,hi.fromNow=me,hi.to=ye,hi.toNow=ve,hi.get=L,hi.invalidAt=Oe,hi.isAfter=se,hi.isBefore=ae,hi.isBetween=le,hi.isSame=ue,hi.isValid=Ce,hi.lang=ti,hi.locale=be,hi.localeData=_e,hi.max=Gn,hi.min=$n,hi.parsingFlags=Pe,hi.set=L,hi.startOf=we,hi.subtract=Zn,hi.toArray=De,hi.toObject=Te,hi.toDate=Me,hi.toISOString=de,hi.toJSON=de,hi.toString=fe,hi.unix=Se,hi.valueOf=ke,hi.year=Un,hi.isLeapYear=ct,hi.weekYear=Le,hi.isoWeekYear=Ae,hi.quarter=hi.quarters=Fe,hi.month=J,hi.daysInMonth=Z,hi.week=hi.weeks=gt,hi.isoWeek=hi.isoWeeks=mt,hi.weeksInYear=je,hi.isoWeeksInYear=Ie,hi.date=ei,hi.day=hi.days=Ve,hi.weekday=Be,hi.isoWeekday=Ue,hi.dayOfYear=vt, -hi.hour=hi.hours=si,hi.minute=hi.minutes=ai,hi.second=hi.seconds=li,hi.millisecond=hi.milliseconds=ci,hi.utcOffset=Rt,hi.utc=Vt,hi.local=Bt,hi.parseZone=Ut,hi.hasAlignedHourOffset=qt,hi.isDST=$t,hi.isDSTShifted=Gt,hi.isLocal=Xt,hi.isUtcOffset=Kt,hi.isUtc=Qt,hi.isUTC=Qt,hi.zoneAbbr=Qe,hi.zoneName=Je,hi.dates=nt("dates accessor is deprecated. Use date instead.",ei),hi.months=nt("months accessor is deprecated. Use month instead",J),hi.years=nt("years accessor is deprecated. Use year instead",Un),hi.zone=nt("moment().zone is deprecated, use moment().utcOffset instead. https://github.com/moment/moment/issues/1779",Wt),fi=hi,di={sameDay:"[Today at] LT",nextDay:"[Tomorrow at] LT",nextWeek:"dddd [at] LT",lastDay:"[Yesterday at] LT",lastWeek:"[Last] dddd [at] LT",sameElse:"L"},pi={LTS:"h:mm:ss A",LT:"h:mm A",L:"MM/DD/YYYY",LL:"MMMM D, YYYY",LLL:"MMMM D, YYYY h:mm A",LLLL:"dddd, MMMM D, YYYY h:mm A"},gi="Invalid date",mi="%d",yi=/\d{1,2}/,vi={future:"in %s",past:"%s ago",s:"a few seconds",m:"a minute",mm:"%d minutes",h:"an hour",hh:"%d hours",d:"a day",dd:"%d days",M:"a month",MM:"%d months",y:"a year",yy:"%d years"},bi=_.prototype,bi._calendar=di,bi.calendar=en,bi._longDateFormat=pi,bi.longDateFormat=nn,bi._invalidDate=gi,bi.invalidDate=rn,bi._ordinal=mi,bi.ordinal=on,bi._ordinalParse=yi,bi.preparse=sn,bi.postformat=sn,bi._relativeTime=vi,bi.relativeTime=an,bi.pastFuture=ln,bi.set=un,bi.months=G,bi._months=Hn,bi.monthsShort=X,bi._monthsShort=Yn,bi.monthsParse=K,bi.week=ft,bi._week=qn,bi.firstDayOfYear=pt,bi.firstDayOfWeek=dt,bi.weekdays=Ye,bi._weekdays=ni,bi.weekdaysMin=Re,bi._weekdaysMin=ri,bi.weekdaysShort=ze,bi._weekdaysShort=ii,bi.weekdaysParse=We,bi.isPM=Ge,bi._meridiemParse=oi,bi.meridiem=Xe,S("en",{ordinalParse:/\d{1,2}(th|st|nd|rd)/,ordinal:function(t){var e=t%10;return t+(1===v(t%100/10)?"th":1===e?"st":2===e?"nd":3===e?"rd":"th")}}),e.lang=nt("moment.lang is deprecated. Use moment.locale instead.",S),e.langData=nt("moment.langData is deprecated. Use moment.localeData instead.",D),_i=Math.abs,wi=Tn("ms"),xi=Tn("s"),ki=Tn("m"),Si=Tn("h"),Mi=Tn("d"),Di=Tn("w"),Ti=Tn("M"),Ci=Tn("y"),Pi=Pn("milliseconds"),Oi=Pn("seconds"),Ei=Pn("minutes"),Ni=Pn("hours"),Li=Pn("days"),Ai=Pn("months"),Ii=Pn("years"),ji=Math.round,Fi={s:45,m:45,h:22,d:26,M:11},Hi=Math.abs,Yi=It.prototype,Yi.abs=yn,Yi.add=bn,Yi.subtract=_n,Yi.as=Mn,Yi.asMilliseconds=wi,Yi.asSeconds=xi,Yi.asMinutes=ki,Yi.asHours=Si,Yi.asDays=Mi,Yi.asWeeks=Di,Yi.asMonths=Ti,Yi.asYears=Ci,Yi.valueOf=Dn,Yi._bubble=xn,Yi.get=Cn,Yi.milliseconds=Pi,Yi.seconds=Oi,Yi.minutes=Ei,Yi.hours=Ni,Yi.days=Li,Yi.weeks=On,Yi.months=Ai,Yi.years=Ii,Yi.humanize=An,Yi.toISOString=In,Yi.toString=In,Yi.toJSON=In,Yi.locale=be,Yi.localeData=_e,Yi.toIsoString=nt("toIsoString() is deprecated. Please use toISOString() instead (notice the capitals)",In),Yi.lang=ti,I("X",0,0,"unix"),I("x",0,0,"valueOf"),R("x",rr),R("X",sr),B("X",function(t,e,n){n._d=new Date(1e3*parseFloat(t,10))}),B("x",function(t,e,n){n._d=new Date(v(t))}),e.version="2.10.6",i(Et),e.fn=fi,e.min=Lt,e.max=At,e.utc=u,e.unix=Ze,e.months=fn, -e.isDate=o,e.locale=S,e.invalid=d,e.duration=Jt,e.isMoment=m,e.weekdays=pn,e.parseZone=tn,e.localeData=D,e.isDuration=jt,e.monthsShort=dn,e.weekdaysMin=mn,e.defineLocale=M,e.weekdaysShort=gn,e.normalizeUnits=C,e.relativeTimeThreshold=Ln,e})}).call(e,n(50)(t))},,,,,,,,,,function(t,e){t.exports=function(t){return t.webpackPolyfill||(t.deprecate=function(){},t.paths=[],t.children=[],t.webpackPolyfill=1),t}},function(t,e){var n={}.hasOwnProperty;t.exports=function(t,e){return n.call(t,e)}},,,,function(t,e,n){t.exports=!n(38)(function(){return 7!=Object.defineProperty({},"a",{get:function(){return 7}}).a})},,,,,,function(t,e,n){var i=n(172),r=n(83);t.exports=function(t){return i(r(t))}},function(t,e,n){var i=n(136),r=Math.min;t.exports=function(t){return t>0?r(i(t),9007199254740991):0}},,,,,,,,,,,,function(t,e,n){var i=n(94);t.exports=function(t,e,n){if(i(t),void 0===e)return t;switch(n){case 1:return function(n){return t.call(e,n)};case 2:return function(n,i){return t.call(e,n,i)};case 3:return function(n,i,r){return t.call(e,n,i,r)}}return function(){return t.apply(e,arguments)}}},function(t,e){"use strict";function n(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}var i,r,o;Object.defineProperty(e,"__esModule",{value:!0}),i=Object.assign||function(t){var e,n,i;for(e=1;e'+t+"",u.id=m,(c?u:h).innerHTML+=o,h.appendChild(u),c||(h.style.background="",h.style.overflow="hidden",l=g.style.overflow,g.style.overflow="hidden",g.appendChild(h)),s=n(u,t),c?u.parentNode.removeChild(u):(h.parentNode.removeChild(h),g.style.overflow=l),!!s},T=function(){function t(t,o){o=o||e.createElement(i[t]||"div"),t="on"+t;var s=t in o;return s||(o.setAttribute||(o=e.createElement("div")),o.setAttribute&&o.removeAttribute&&(o.setAttribute(t,""),s=r(o[t],"function"),r(o[t],"undefined")||(o[t]=n),o.removeAttribute(t))),o=null,s}var i={select:"input",change:"input",submit:"form",reset:"form",error:"img",load:"img",abort:"img"};return t}(),C={}.hasOwnProperty;c=r(C,"undefined")||r(C.call,"undefined")?function(t,e){return e in t&&r(t.constructor.prototype[e],"undefined")}:function(t,e){return C.call(t,e)}, -Function.prototype.bind||(Function.prototype.bind=function(t){var e,n,i=this;if("function"!=typeof i)throw new TypeError;return e=M.call(arguments,1),n=function(){var r,o,s;return this instanceof n?(r=function(){},r.prototype=i.prototype,o=new r,s=i.apply(o,e.concat(M.call(arguments))),Object(s)===s?s:o):i.apply(t,e.concat(M.call(arguments)))}}),k.flexbox=function(){return l("flexWrap")},k.canvas=function(){var t=e.createElement("canvas");return!!t.getContext&&!!t.getContext("2d")},k.canvastext=function(){return!!d.canvas&&!!r(e.createElement("canvas").getContext("2d").fillText,"function")},k.touch=function(){var n;return"ontouchstart"in t||t.DocumentTouch&&e instanceof DocumentTouch?n=!0:D("@media ("+b.join("touch-enabled),(")+m+"){#modernizr{top:9px;position:absolute}}",function(t){n=9===t.offsetTop}),n},k.history=function(){return!!t.history&&!!history.pushState},k.draganddrop=function(){var t=e.createElement("div");return"draggable"in t||"ondragstart"in t&&"ondrop"in t},k.websockets=function(){return"WebSocket"in t||"MozWebSocket"in t},k.multiplebgs=function(){return i("background:url(https://),url(https://),red url(https://)"),/(url\s*\(.*?){3}/.test(v.background)},k.csscolumns=function(){return l("columnCount")},k.csstransitions=function(){return l("transition")},k.localstorage=function(){try{return localStorage.setItem(m,m),localStorage.removeItem(m),!0}catch(t){return!1}};for(h in k)c(k,h)&&(u=h.toLowerCase(),d[u]=k[h](),S.push((d[u]?"":"no-")+u));return d.addTest=function(t,e){if("object"==typeof t)for(var i in t)c(t,i)&&d.addTest(i,t[i]);else{if(t=t.toLowerCase(),d[t]!==n)return d;e="function"==typeof e?e():e,void 0!==p&&p&&(g.className+=" feature-"+(e?"":"no-")+t),d[t]=e}return d},i(""),y=null,d._version=f,d._prefixes=b,d._domPrefixes=x,d._cssomPrefixes=w,d.hasEvent=T,d.testProp=function(t){return s([t])},d.testAllProps=l,d.testStyles=D,g.className=g.className.replace(/(^|\s)no-js(\s|$)/,"$1$2")+(p?" feature-js feature-"+S.join(" feature-"):""),d}(window,document);!n.touch||"onorientationchange"in window||(n.touch=!1,document.documentElement.className=document.documentElement.className.replace("feature-touch","feature-no-touch")),n.addTest("pointerevents",function(){var t,e=document.createElement("x"),n=document.documentElement,i=window.getComputedStyle,r=!1;return"pointerEvents"in e.style&&(e.style.pointerEvents="auto",e.style.pointerEvents="x",n.appendChild(e),i&&(t=i(e,""),r=!!t&&"auto"===t.pointerEvents),n.removeChild(e),!!r)}),n.addTest("flexbox",n.testAllProps("flexBasis","1px",!0))},,,function(t,e,n){var i=n(51),r=n(100),o=n(182)("IE_PROTO"),s=Object.prototype;t.exports=Object.getPrototypeOf||function(t){return t=r(t),i(t,o)?t[o]:"function"==typeof t.constructor&&t instanceof t.constructor?t.constructor.prototype:t instanceof Object?s:null}},function(t,e){e.f={}.propertyIsEnumerable},function(t,e,n){var i=n(39).f,r=n(51),o=n(22)("toStringTag");t.exports=function(t,e,n){t&&!r(t=n?t:t.prototype,o)&&i(t,o,{configurable:!0,value:e})}},function(t,e,n){var i=n(29);t.exports=function(t,e){if(!i(t))return t -;var n,r;if(e&&"function"==typeof(n=t.toString)&&!i(r=n.call(t)))return r;if("function"==typeof(n=t.valueOf)&&!i(r=n.call(t)))return r;if(!e&&"function"==typeof(n=t.toString)&&!i(r=n.call(t)))return r;throw TypeError("Can't convert object to primitive value")}},function(t,e){var n=0,i=Math.random();t.exports=function(t){return"Symbol(".concat(void 0===t?"":t,")_",(++n+i).toString(36))}},,function(t,e){"use strict";function n(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}Object.defineProperty(e,"__esModule",{value:!0});var i=function(){function t(){n(this,t),this.observers={}}return t.prototype.on=function(t,e){var n=this;t.split(" ").forEach(function(t){n.observers[t]=n.observers[t]||[],n.observers[t].push(e)})},t.prototype.off=function(t,e){var n=this;this.observers[t]&&this.observers[t].forEach(function(){if(e){var i=n.observers[t].indexOf(e);i>-1&&n.observers[t].splice(i,1)}else delete n.observers[t]})},t.prototype.emit=function(t){for(var e=arguments.length,n=Array(e>1?e-1:0),i=1;i-1?t.replace(/###/g,"."):t}for(var r,o="string"!=typeof e?[].concat(e):e.split(".");o.length>1;){if(!t)return{};r=i(o.shift()),!t[r]&&n&&(t[r]=new n),t=t[r]}return t?{obj:t,k:i(o.shift())}:{}}function o(t,e,n){var i=r(t,e,Object);i.obj[i.k]=n}function s(t,e,n,i){var o=r(t,e,Object),s=o.obj,a=o.k;s[a]=s[a]||[],i&&(s[a]=s[a].concat(n)),i||s[a].push(n)}function a(t,e){var n=r(t,e),i=n.obj,o=n.k;if(i)return i[o]}function l(t,e,n){for(var i in e)i in t?"string"==typeof t[i]||t[i]instanceof String||"string"==typeof e[i]||e[i]instanceof String?n&&(t[i]=e[i]):l(t[i],e[i],n):t[i]=e[i];return t}function u(t){return t.replace(/[\-\[\]\/\{\}\(\)\*\+\?\.\\\^\$\|]/g,"\\$&")}function c(t){return"string"==typeof t?t.replace(/[&<>"'\/]/g,function(t){return h[t]}):t}Object.defineProperty(e,"__esModule",{value:!0}),e.makeString=n,e.copy=i,e.setPath=o,e.pushPath=s,e.getPath=a,e.deepExtend=l,e.regexEscape=u,e.escape=c;var h={"&":"&","<":"<",">":">",'"':""","'":"'","/":"/"}},,,,,,,,,,,,,,,function(t,e,n){var i,r;(function(){function n(t){function e(e,n,i,r,o,s){for(;o>=0&&o0?0:a-1;return arguments.length<3&&(r=n[s?s[u]:u],u+=t),e(n,i,r,s,u,a)}}function o(t){return function(e,n,i){var r,o;for(n=u(n,i),r=p(e),o=t>0?0:r-1;o>=0&&o0?s=o>=0?o:Math.max(o+a,s):a=o>=0?Math.min(o+1,a):o+a+1;else if(n&&o&&a)return o=n(i,r),i[o]===r?o:-1 -;if(r!==r)return o=e(F.call(i,s,a),U.isNaN),o>=0?o+s:-1;for(o=t>0?s:a-1;o>=0&&o=0&&e<=d},U.each=U.forEach=function(t,e,n){var i,r,o;if(e=l(e,n),g(t))for(i=0,r=t.length;i=0},U.invoke=function(t,e){var n=F.call(arguments,2),i=U.isFunction(e);return U.map(t,function(t){var r=i?e:t[e];return null==r?r:r.apply(t,n)})},U.pluck=function(t,e){return U.map(t,U.property(e))},U.where=function(t,e){return U.filter(t,U.matcher(e))},U.findWhere=function(t,e){return U.find(t,U.matcher(e))}, -U.max=function(t,e,n){var i,r,o,s,a=-1/0,l=-1/0;if(null==e&&null!=t)for(t=g(t)?t:U.values(t),o=0,s=t.length;oa&&(a=i);else e=u(e,n),U.each(t,function(t,n,i){((r=e(t,n,i))>l||r===-1/0&&a===-1/0)&&(a=t,l=r)});return a},U.min=function(t,e,n){var i,r,o,s,a=1/0,l=1/0;if(null==e&&null!=t)for(t=g(t)?t:U.values(t),o=0,s=t.length;oi||void 0===n)return 1;if(ne?(a&&(clearTimeout(a),a=null),l=c,o=t.apply(i,r),a||(i=r=null)):a||!1===n.trailing||(a=setTimeout(s,u)),o}},U.debounce=function(t,e,n){var i,r,o,s,a,l=function(){var u=U.now()-s;u=0?i=setTimeout(l,e-u):(i=null,n||(a=t.apply(o,r),i||(o=r=null)))};return function(){o=this,r=arguments,s=U.now();var u=n&&!i;return i||(i=setTimeout(l,e)),u&&(a=t.apply(o,r),o=r=null),a}},U.wrap=function(t,e){return U.partial(e,t)},U.negate=function(t){return function(){return!t.apply(this,arguments)}},U.compose=function(){var t=arguments,e=t.length-1;return function(){for(var n=e,i=t[e].apply(this,arguments);n--;)i=t[n].call(this,i);return i}},U.after=function(t,e){return function(){if(--t<1)return e.apply(this,arguments)}},U.before=function(t,e){var n;return function(){return--t>0&&(n=e.apply(this,arguments)),t<=1&&(e=null),n}},U.once=U.partial(U.before,2),b=!{toString:null}.propertyIsEnumerable("toString"),_=["valueOf","isPrototypeOf","toString","propertyIsEnumerable","hasOwnProperty","toLocaleString"],U.keys=function(t){var e,n;if(!U.isObject(t))return[];if(R)return R(t);e=[];for(n in t)U.has(t,n)&&e.push(n);return b&&a(t,e),e},U.allKeys=function(t){var e,n;if(!U.isObject(t))return[];e=[];for(n in t)e.push(n);return b&&a(t,e),e},U.values=function(t){ -var e,n=U.keys(t),i=n.length,r=Array(i);for(e=0;e":">",'"':""","'":"'","`":"`"},k=U.invert(x),S=function(t){var e=function(e){return t[e]},n="(?:"+U.keys(t).join("|")+")",i=RegExp(n),r=RegExp(n,"g");return function(t){return t=null==t?"":""+t,i.test(t)?t.replace(r,e):t}},U.escape=S(x),U.unescape=S(k),U.result=function(t,e,n){var i=null==t?void 0:t[e];return void 0===i&&(i=n),U.isFunction(i)?i.call(t):i},M=0,U.uniqueId=function(t){var e=++M+"";return t?t+e:e},U.templateSettings={evaluate:/<%([\s\S]+?)%>/g,interpolate:/<%=([\s\S]+?)%>/g,escape:/<%-([\s\S]+?)%>/g},D=/(.)^/,T={"'":"'","\\":"\\","\r":"r","\n":"n","\u2028":"u2028","\u2029":"u2029"},C=/\\|'|\r|\n|\u2028|\u2029/g,P=function(t){return"\\"+T[t]},U.template=function(t,e,n){var i,r,o,s,a,l;!e&&n&&(e=n),e=U.defaults({},e,U.templateSettings),i=RegExp([(e.escape||D).source,(e.interpolate||D).source,(e.evaluate||D).source].join("|")+"|$","g"),r=0,o="__p+='",t.replace(i,function(e,n,i,s,a){return o+=t.slice(r,a).replace(C,P),r=a+e.length,n?o+="'+\n((__t=("+n+"))==null?'':_.escape(__t))+\n'":i?o+="'+\n((__t=("+i+"))==null?'':__t)+\n'":s&&(o+="';\n"+s+"\n__p+='"),e}),o+="';\n",e.variable||(o="with(obj||{}){\n"+o+"}\n"),o="var __t,__p='',__j=Array.prototype.join,print=function(){__p+=__j.call(arguments,'');};\n"+o+"return __p;\n";try{s=Function(e.variable||"obj","_",o)}catch(t){throw t.source=o,t}return a=function(t){return s.call(this,t,U)},l=e.variable||"obj",a.source="function("+l+"){\n"+o+"}",a},U.chain=function(t){var e=U(t);return e._chain=!0,e},O=function(t,e){return t._chain?U(e).chain():e},U.mixin=function(t){U.each(U.functions(t),function(e){var n=U[e]=t[e];U.prototype[e]=function(){var t=[this._wrapped];return j.apply(t,arguments),O(this,n.apply(U,t))}})},U.mixin(U),U.each(["pop","push","reverse","shift","sort","splice","unshift"],function(t){var e=L[t];U.prototype[t]=function(){var n=this._wrapped;return e.apply(n,arguments),"shift"!==t&&"splice"!==t||0!==n.length||delete n[0],O(this,n)}}),U.each(["concat","join","slice"],function(t){var e=L[t] -;U.prototype[t]=function(){return O(this,e.apply(this._wrapped,arguments))}}),U.prototype.value=function(){return this._wrapped},U.prototype.valueOf=U.prototype.toJSON=U.prototype.value,U.prototype.toString=function(){return""+this._wrapped},i=[],void 0!==(r=function(){return U}.apply(e,i))&&(t.exports=r)}).call(this)},function(t,e){t.exports={}},function(t,e){t.exports=!1},function(t,e,n){var i=n(18),r=n(404),o=n(169),s=n(182)("IE_PROTO"),a=function(){},l="prototype",u=function(){var t,e=n(168)("iframe"),i=o.length,r="<",s=">";for(e.style.display="none",n(232).appendChild(e),e.src="javascript:",t=e.contentWindow.document,t.open(),t.write(r+"script"+s+"document.F=Object"+r+"/script"+s),t.close(),u=t.F;i--;)delete u[l][o[i]];return u()};t.exports=Object.create||function(t,e){var n;return null!==t?(a[l]=i(t),n=new a,a[l]=null,n[s]=t):n=u(),void 0===e?n:r(n,e)}},function(t,e){e.f=Object.getOwnPropertySymbols},function(t,e,n){var i=n(136),r=Math.max,o=Math.min;t.exports=function(t,e){return t=i(t),t<0?r(t+e,0):o(t,e)}},function(t,e){var n=Math.ceil,i=Math.floor;t.exports=function(t){return isNaN(t=+t)?0:(t>0?i:n)(t)}},,,,,,,,,,,,,,,,,,,,,,,,,,,,,,function(t,e,n){t.exports=n(387)},function(t,e){t.exports=function(t,e,n,i){if(!(t instanceof e)||void 0!==i&&i in t)throw TypeError(n+": incorrect invocation!");return t}},function(t,e,n){var i=n(29),r=n(20).document,o=i(r)&&i(r.createElement);t.exports=function(t){return o?r.createElement(t):{}}},function(t,e){t.exports="constructor,hasOwnProperty,isPrototypeOf,propertyIsEnumerable,toLocaleString,toString,valueOf".split(",")},function(t,e,n){var i=n(22)("match");t.exports=function(t){var e=/./;try{"/./"[t](e)}catch(n){try{return e[i]=!1,!"/./"[t](e)}catch(t){}}return!0}},function(t,e,n){var i=n(74),r=n(238),o=n(235),s=n(18),a=n(62),l=n(248),u={},c={};e=t.exports=function(t,e,n,h,f){var d,p,g,m,y=f?function(){return t}:l(t),v=i(n,h,e?2:1),b=0;if("function"!=typeof y)throw TypeError(t+" is not iterable!");if(o(y)){for(d=a(t.length);d>b;b++)if((m=e?v(s(p=t[b])[0],p[1]):v(t[b]))===u||m===c)return m}else for(g=y.call(t);!(p=g.next()).done;)if((m=r(g,v,p.value,e))===u||m===c)return m},e.BREAK=u,e.RETURN=c},function(t,e,n){var i=n(82);t.exports=Object("z").propertyIsEnumerable(0)?Object:function(t){return"String"==i(t)?t.split(""):Object(t)}},function(t,e,n){"use strict";var i=n(132),r=n(4),o=n(99),s=n(84),a=n(51),l=n(131),u=n(239),c=n(110),h=n(108),f=n(22)("iterator"),d=!([].keys&&"next"in[].keys()),p="keys",g="values",m=function(){return this};t.exports=function(t,e,n,y,v,b,_){var w,x,k,S,M,D,T,C,P,O,E,N;if(u(n,e,y),w=function(t){if(!d&&t in M)return M[t];switch(t){case p:case g:return function(){return new n(this,t)}}return function(){return new n(this,t)}},x=e+" Iterator",k=v==g,S=!1,M=t.prototype,D=M[f]||M["@@iterator"]||v&&M[v],T=D||w(v),C=v?k?w("entries"):T:void 0,P="Array"==e?M.entries||D:D,P&&(N=h(P.call(new t)))!==Object.prototype&&(c(N,x,!0),i||a(N,f)||s(N,f,m)),k&&D&&D.name!==g&&(S=!0,T=function(){return D.call(this)}),i&&!_||!d&&!S&&M[f]||s(M,f,T),l[e]=T,l[x]=m,v)if(O={ -values:k?T:w(g),keys:b?T:w(p),entries:C},_)for(E in O)E in M||o(M,E,O[E]);else r(r.P+r.F*(d||S),e,O);return O}},function(t,e,n){var i,r=n(22)("iterator"),o=!1;try{i=[7][r](),i.return=function(){o=!0},Array.from(i,function(){throw 2})}catch(t){}t.exports=function(t,e){var n,i,s;if(!e&&!o)return!1;n=!1;try{i=[7],s=i[r](),s.next=function(){return{done:n=!0}},i[r]=function(){return s},t(i)}catch(t){}return n}},function(t,e){var n=Math.expm1;t.exports=!n||n(10)>22025.465794806718||n(10)<22025.465794806718||-2e-17!=n(-2e-17)?function(t){return 0==(t=+t)?t:t>-1e-6&&t<1e-6?t+t*t/2:Math.exp(t)-1}:n},function(t,e){t.exports=Math.sign||function(t){return 0==(t=+t)||t!=t?t:t<0?-1:1}},function(t,e,n){var i=n(112)("meta"),r=n(29),o=n(51),s=n(39).f,a=0,l=Object.isExtensible||function(){return!0},u=!n(38)(function(){return l(Object.preventExtensions({}))}),c=function(t){s(t,i,{value:{i:"O"+ ++a,w:{}}})},h=function(t,e){if(!r(t))return"symbol"==typeof t?t:("string"==typeof t?"S":"P")+t;if(!o(t,i)){if(!l(t))return"F";if(!e)return"E";c(t)}return t[i].i},f=function(t,e){if(!o(t,i)){if(!l(t))return!0;if(!e)return!1;c(t)}return t[i].w},d=function(t){return u&&p.NEED&&l(t)&&!o(t,i)&&c(t),t},p=t.exports={KEY:i,NEED:!1,fastKey:h,getWeak:f,onFreeze:d}},function(t,e,n){var i=n(242),r=n(169).concat("length","prototype");e.f=Object.getOwnPropertyNames||function(t){return i(t,r)}},function(t,e,n){var i=n(99);t.exports=function(t,e,n){for(var r in e)i(t,r,e[r],n);return t}},function(t,e,n){var i=n(29),r=n(18),o=function(t,e){if(r(t),!i(e)&&null!==e)throw TypeError(e+": can't set as prototype!")};t.exports={set:Object.setPrototypeOf||("__proto__"in{}?function(t,e,i){try{i=n(74)(Function.call,n(97).f(Object.prototype,"__proto__").set,2),i(t,[]),e=!(t instanceof Array)}catch(t){e=!0}return function(t,n){return o(t,n),e?t.__proto__=n:i(t,n),t}}({},!1):void 0),check:o}},function(t,e,n){"use strict";var i=n(20),r=n(39),o=n(55),s=n(22)("species");t.exports=function(t){var e=i[t];o&&e&&!e[s]&&r.f(e,s,{configurable:!0,get:function(){return this}})}},function(t,e,n){var i=n(183)("keys"),r=n(112);t.exports=function(t){return i[t]||(i[t]=r(t))}},function(t,e,n){var i=n(20),r="__core-js_shared__",o=i[r]||(i[r]={});t.exports=function(t){return o[t]||(o[t]={})}},function(t,e,n){var i=n(400),r=n(83);t.exports=function(t,e,n){if(i(e))throw TypeError("String#"+n+" doesn't accept regex!");return r(t)+""}},function(t,e){t.exports="\t\n\v\f\r   ᠎              \u2028\u2029\ufeff"},,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,function(t,e,n){var i=n(61),r=n(62),o=n(135);t.exports=function(t){return function(e,n,s){var a,l=i(e),u=r(l.length),c=o(s,u);if(t&&n!=n){for(;u>c;)if((a=l[c++])!=a)return!0}else for(;u>c;c++)if((t||c in l)&&l[c]===n)return t||c||0;return!t&&-1}}},function(t,e,n){var i=n(74),r=n(172),o=n(100),s=n(62),a=n(394);t.exports=function(t,e){var n=1==t,l=2==t,u=3==t,c=4==t,h=6==t,f=5==t||h,d=e||a;return function(e,a,p){for(var g,m,y=o(e),v=r(y),b=i(a,p,3),_=s(v.length),w=0,x=n?d(e,_):l?d(e,0):void 0;_>w;w++)if((f||w in v)&&(g=v[w],m=b(g,w,y), -t))if(n)x[w]=m;else if(m)switch(t){case 3:return!0;case 5:return g;case 6:return w;case 2:x.push(g)}else if(c)return!1;return h?-1:u||c?c:x}}},function(t,e,n){var i=n(82),r=n(22)("toStringTag"),o="Arguments"==i(function(){return arguments}()),s=function(t,e){try{return t[e]}catch(t){}};t.exports=function(t){var e,n,a;return void 0===t?"Undefined":null===t?"Null":"string"==typeof(n=s(e=Object(t),r))?n:o?i(e):"Object"==(a=i(e))&&"function"==typeof e.callee?"Arguments":a}},function(t,e,n){"use strict";var i=n(39).f,r=n(133),o=n(179),s=n(74),a=n(167),l=n(83),u=n(171),c=n(173),h=n(240),f=n(181),d=n(55),p=n(177).fastKey,g=d?"_s":"size",m=function(t,e){var n,i=p(e);if("F"!==i)return t._i[i];for(n=t._f;n;n=n.n)if(n.k==e)return n};t.exports={getConstructor:function(t,e,n,c){var h=t(function(t,i){a(t,h,e,"_i"),t._i=r(null),t._f=void 0,t._l=void 0,t[g]=0,void 0!=i&&u(i,n,t[c],t)});return o(h.prototype,{clear:function(){for(var t=this,e=t._i,n=t._f;n;n=n.n)n.r=!0,n.p&&(n.p=n.p.n=void 0),delete e[n.i];t._f=t._l=void 0,t[g]=0},delete:function(t){var e,n,i=this,r=m(i,t);return r&&(e=r.n,n=r.p,delete i._i[r.i],r.r=!0,n&&(n.n=e),e&&(e.p=n),i._f==r&&(i._f=e),i._l==r&&(i._l=n),i[g]--),!!r},forEach:function(t){a(this,h,"forEach");for(var e,n=s(t,arguments.length>1?arguments[1]:void 0,3);e=e?e.n:this._f;)for(n(e.v,e.k,this);e&&e.r;)e=e.p},has:function(t){return!!m(this,t)}}),d&&i(h.prototype,"size",{get:function(){return l(this[g])}}),h},def:function(t,e,n){var i,r,o=m(t,e);return o?o.v=n:(t._l=o={i:r=p(e,!0),k:e,v:n,p:i=t._l,n:void 0,r:!1},t._f||(t._f=o),i&&(i.n=o),t[g]++,"F"!==r&&(t._i[r]=o)),t},getEntry:m,setStrong:function(t,e,n){c(t,e,function(t,e){this._t=t,this._k=e,this._l=void 0},function(){for(var t=this,e=t._k,n=t._l;n&&n.r;)n=n.p;return t._t&&(t._l=n=n?n.n:t._t._f)?"keys"==e?h(0,n.k):"values"==e?h(0,n.v):h(0,[n.k,n.v]):(t._t=void 0,h(1))},n?"entries":"values",!n,!0),f(e)}}},function(t,e,n){"use strict";var i=n(20),r=n(4),o=n(99),s=n(179),a=n(177),l=n(171),u=n(167),c=n(29),h=n(38),f=n(174),d=n(110),p=n(399);t.exports=function(t,e,n,g,m,y){var v,b,_,w,x,k=i[t],S=k,M=m?"set":"add",D=S&&S.prototype,T={},C=function(t){var e=D[t];o(D,t,"delete"==t?function(t){return!(y&&!c(t))&&e.call(this,0===t?0:t)}:"has"==t?function(t){return!(y&&!c(t))&&e.call(this,0===t?0:t)}:"get"==t?function(t){return y&&!c(t)?void 0:e.call(this,0===t?0:t)}:"add"==t?function(t){return e.call(this,0===t?0:t),this}:function(t,n){return e.call(this,0===t?0:t,n),this})};return"function"==typeof S&&(y||D.forEach&&!h(function(){(new S).entries().next()}))?(v=new S,b=v[M](y?{}:-0,1)!=v,_=h(function(){v.has(1)}),w=f(function(t){new S(t)}),x=!y&&h(function(){for(var t=new S,e=5;e--;)t[M](e,e);return!t.has(-0)}),w||(S=e(function(e,n){u(e,S,t);var i=p(new k,e,S);return void 0!=n&&l(n,m,i[M],i),i}),S.prototype=D,D.constructor=S),(_||x)&&(C("delete"),C("has"),m&&C("get")),(x||b)&&C(M),y&&D.clear&&delete D.clear):(S=g.getConstructor(e,t,m,M),s(S.prototype,n),a.NEED=!0),d(S,t),T[t]=S,r(r.G+r.W+r.F*(S!=k),T),y||g.setStrong(S,t,m),S}},function(t,e,n){"use strict" -;var i=n(39),r=n(85);t.exports=function(t,e,n){e in t?i.f(t,e,r(0,n)):t[e]=n}},function(t,e,n){t.exports=n(20).document&&document.documentElement},function(t,e,n){t.exports=!n(55)&&!n(38)(function(){return 7!=Object.defineProperty(n(168)("div"),"a",{get:function(){return 7}}).a})},function(t,e){t.exports=function(t,e,n){var i=void 0===n;switch(e.length){case 0:return i?t():t.call(n);case 1:return i?t(e[0]):t.call(n,e[0]);case 2:return i?t(e[0],e[1]):t.call(n,e[0],e[1]);case 3:return i?t(e[0],e[1],e[2]):t.call(n,e[0],e[1],e[2]);case 4:return i?t(e[0],e[1],e[2],e[3]):t.call(n,e[0],e[1],e[2],e[3])}return t.apply(n,e)}},function(t,e,n){var i=n(131),r=n(22)("iterator"),o=Array.prototype;t.exports=function(t){return void 0!==t&&(i.Array===t||o[r]===t)}},function(t,e,n){var i=n(82);t.exports=Array.isArray||function(t){return"Array"==i(t)}},function(t,e,n){var i=n(29),r=Math.floor;t.exports=function(t){return!i(t)&&isFinite(t)&&r(t)===t}},function(t,e,n){var i=n(18);t.exports=function(t,e,n,r){try{return r?e(i(n)[0],n[1]):e(n)}catch(e){var o=t.return;throw void 0!==o&&i(o.call(t)),e}}},function(t,e,n){"use strict";var i=n(133),r=n(85),o=n(110),s={};n(84)(s,n(22)("iterator"),function(){return this}),t.exports=function(t,e,n){t.prototype=i(s,{next:r(1,n)}),o(t,e+" Iterator")}},function(t,e){t.exports=function(t,e){return{value:e,done:!!t}}},function(t,e){t.exports=Math.log1p||function(t){return(t=+t)>-1e-8&&t<1e-8?t-t*t/2:Math.log(1+t)}},function(t,e,n){var i=n(51),r=n(61),o=n(226)(!1),s=n(182)("IE_PROTO");t.exports=function(t,e){var n,a=r(t),l=0,u=[];for(n in a)n!=s&&i(a,n)&&u.push(n);for(;e.length>l;)i(a,n=e[l++])&&(~o(u,n)||u.push(n));return u}},function(t,e,n){var i=n(98),r=n(61),o=n(109).f;t.exports=function(t){return function(e){for(var n,s=r(e),a=i(s),l=a.length,u=0,c=[];l>u;)o.call(s,n=a[u++])&&c.push(t?[n,s[n]]:s[n]);return c}}},function(t,e,n){var i=n(136),r=n(83);t.exports=function(t){return function(e,n){var o,s,a=r(e)+"",l=i(n),u=a.length;return l<0||l>=u?t?"":void 0:(o=a.charCodeAt(l),o<55296||o>56319||l+1===u||(s=a.charCodeAt(l+1))<56320||s>57343?t?a.charAt(l):o:t?a.slice(l,l+2):s-56320+(o-55296<<10)+65536)}}},function(t,e,n){var i=n(4),r=n(83),o=n(38),s=n(185),a="["+s+"]",l="​…",u=RegExp("^"+a+a+"*"),c=RegExp(a+a+"*$"),h=function(t,e,n){var r={},a=o(function(){return!!s[t]()||l[t]()!=l}),u=r[t]=a?e(f):s[t];n&&(r[n]=u),i(i.P+i.F*a,"String",r)},f=h.trim=function(t,e){return t=r(t)+"",1&e&&(t=t.replace(u,"")),2&e&&(t=t.replace(c,"")),t};t.exports=h},function(t,e,n){var i,r,o,s=n(74),a=n(234),l=n(232),u=n(168),c=n(20),h=c.process,f=c.setImmediate,d=c.clearImmediate,p=c.MessageChannel,g=0,m={},y="onreadystatechange",v=function(){var t,e=+this;m.hasOwnProperty(e)&&(t=m[e],delete m[e],t())},b=function(t){v.call(t.data)};f&&d||(f=function(t){for(var e=[],n=1;arguments.length>n;)e.push(arguments[n++]);return m[++g]=function(){a("function"==typeof t?t:Function(t),e)},i(g),g},d=function(t){delete m[t]},"process"==n(82)(h)?i=function(t){h.nextTick(s(v,t,1))}:p?(r=new p,o=r.port2,r.port1.onmessage=b, -i=s(o.postMessage,o,1)):c.addEventListener&&"function"==typeof postMessage&&!c.importScripts?(i=function(t){c.postMessage(t+"","*")},c.addEventListener("message",b,!1)):i=y in u("script")?function(t){l.appendChild(u("script"))[y]=function(){l.removeChild(this),v.call(t)}}:function(t){setTimeout(s(v,t,1),0)}),t.exports={set:f,clear:d}},function(t,e,n){e.f=n(22)},function(t,e,n){var i=n(228),r=n(22)("iterator"),o=n(131);t.exports=n(96).getIteratorMethod=function(t){if(void 0!=t)return t[r]||t["@@iterator"]||o[i(t)]}},,,,,,,,,,,,,,,,,function(t,e,n){"use strict";function i(t){return t&&t.__esModule?t:{default:t}}function r(t){return t.interpolation={unescapeSuffix:"HTML"},t.interpolation.prefix=t.interpolationPrefix||"__",t.interpolation.suffix=t.interpolationSuffix||"__",t.interpolation.escapeValue=t.escapeInterpolation||!1,t.interpolation.nestingPrefix=t.reusePrefix||"$t(",t.interpolation.nestingSuffix=t.reuseSuffix||")",t}function o(t){return t.resStore&&(t.resources=t.resStore),t.ns&&t.ns.defaultNs?(t.defaultNS=t.ns.defaultNs,t.ns=t.ns.namespaces):t.defaultNS=t.ns||"translation",t.fallbackToDefaultNS&&t.defaultNS&&(t.fallbackNS=t.defaultNS),t.saveMissing=t.sendMissing,t.saveMissingTo=t.sendMissingTo||"current",t.returnNull=!t.fallbackOnNull,t.returnEmptyString=!t.fallbackOnEmpty,t.returnObjects=t.returnObjectTrees,t.joinArrays="\n",t.returnedObjectHandler=t.objectTreeKeyHandler,t.parseMissingKeyHandler=t.parseMissingKey,t.appendNamespaceToMissingKey=!0,t.nsSeparator=t.nsseparator,t.keySeparator=t.keyseparator,"sprintf"===t.shortcutFunction&&(t.overloadTranslationOptionHandler=function(t){var e,n=[];for(e=1;e1&&~~(t/10)%10!=1}function n(t,n,i){var r=t+" ";switch(i){case"m":return n?"minuta":"minutę";case"mm":return r+(e(t)?"minuty":"minut");case"h":return n?"godzina":"godzinę";case"hh":return r+(e(t)?"godziny":"godzin");case"MM":return r+(e(t)?"miesiące":"miesięcy");case"yy":return r+(e(t)?"lata":"lat")}}var i="styczeń_luty_marzec_kwiecień_maj_czerwiec_lipiec_sierpień_wrzesień_październik_listopad_grudzień".split("_"),r="stycznia_lutego_marca_kwietnia_maja_czerwca_lipca_sierpnia_września_października_listopada_grudnia".split("_");return t.defineLocale("pl",{months:function(t,e){return""===e?"("+r[t.month()]+"|"+i[t.month()]+")":/D MMMM/.test(e)?r[t.month()]:i[t.month()]},monthsShort:"sty_lut_mar_kwi_maj_cze_lip_sie_wrz_paź_lis_gru".split("_"),weekdays:"niedziela_poniedziałek_wtorek_środa_czwartek_piątek_sobota".split("_"),weekdaysShort:"nie_pon_wt_śr_czw_pt_sb".split("_"),weekdaysMin:"N_Pn_Wt_Śr_Cz_Pt_So".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[Dziś o] LT",nextDay:"[Jutro o] LT",nextWeek:"[W] dddd [o] LT",lastDay:"[Wczoraj o] LT",lastWeek:function(){switch(this.day()){case 0:return"[W zeszłą niedzielę o] LT";case 3:return"[W zeszłą środę o] LT";case 6:return"[W zeszłą sobotę o] LT";default:return"[W zeszły] dddd [o] LT"}},sameElse:"L"},relativeTime:{future:"za %s",past:"%s temu",s:"kilka sekund",m:n,mm:n,h:n,hh:n,d:"1 dzień",dd:"%d dni",M:"miesiąc",MM:n,y:"rok",yy:n},ordinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}})})},function(t,e,n){!function(t,e){e(n(40))}(0,function(t){"use strict";return t.defineLocale("pt-br",{months:"Janeiro_Fevereiro_Março_Abril_Maio_Junho_Julho_Agosto_Setembro_Outubro_Novembro_Dezembro".split("_"),monthsShort:"Jan_Fev_Mar_Abr_Mai_Jun_Jul_Ago_Set_Out_Nov_Dez".split("_"),weekdays:"Domingo_Segunda-Feira_Terça-Feira_Quarta-Feira_Quinta-Feira_Sexta-Feira_Sábado".split("_"),weekdaysShort:"Dom_Seg_Ter_Qua_Qui_Sex_Sáb".split("_"),weekdaysMin:"Dom_2ª_3ª_4ª_5ª_6ª_Sáb".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D [de] MMMM [de] YYYY",LLL:"D [de] MMMM [de] YYYY [às] HH:mm",LLLL:"dddd, D [de] MMMM [de] YYYY [às] HH:mm"},calendar:{sameDay:"[Hoje às] LT",nextDay:"[Amanhã às] LT",nextWeek:"dddd [às] LT",lastDay:"[Ontem às] LT",lastWeek:function(){return 0===this.day()||6===this.day()?"[Último] dddd [às] LT":"[Última] dddd [às] LT"},sameElse:"L"},relativeTime:{future:"em %s",past:"%s atrás",s:"poucos segundos",m:"um minuto",mm:"%d minutos",h:"uma hora",hh:"%d horas",d:"um dia",dd:"%d dias",M:"um mês",MM:"%d meses",y:"um ano",yy:"%d anos"},ordinalParse:/\d{1,2}º/,ordinal:"%dº"})})},function(t,e,n){!function(t,e){e(n(40))}(0,function(t){"use strict";return t.defineLocale("pt",{months:"Janeiro_Fevereiro_Março_Abril_Maio_Junho_Julho_Agosto_Setembro_Outubro_Novembro_Dezembro".split("_"), -monthsShort:"Jan_Fev_Mar_Abr_Mai_Jun_Jul_Ago_Set_Out_Nov_Dez".split("_"),weekdays:"Domingo_Segunda-Feira_Terça-Feira_Quarta-Feira_Quinta-Feira_Sexta-Feira_Sábado".split("_"),weekdaysShort:"Dom_Seg_Ter_Qua_Qui_Sex_Sáb".split("_"),weekdaysMin:"Dom_2ª_3ª_4ª_5ª_6ª_Sáb".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D [de] MMMM [de] YYYY",LLL:"D [de] MMMM [de] YYYY HH:mm",LLLL:"dddd, D [de] MMMM [de] YYYY HH:mm"},calendar:{sameDay:"[Hoje às] LT",nextDay:"[Amanhã às] LT",nextWeek:"dddd [às] LT",lastDay:"[Ontem às] LT",lastWeek:function(){return 0===this.day()||6===this.day()?"[Último] dddd [às] LT":"[Última] dddd [às] LT"},sameElse:"L"},relativeTime:{future:"em %s",past:"há %s",s:"segundos",m:"um minuto",mm:"%d minutos",h:"uma hora",hh:"%d horas",d:"um dia",dd:"%d dias",M:"um mês",MM:"%d meses",y:"um ano",yy:"%d anos"},ordinalParse:/\d{1,2}º/,ordinal:"%dº",week:{dow:1,doy:4}})})},function(t,e,n){!function(t,e){e(n(40))}(0,function(t){"use strict";function e(t,e){var n=t.split("_");return e%10==1&&e%100!=11?n[0]:e%10>=2&&e%10<=4&&(e%100<10||e%100>=20)?n[1]:n[2]}function n(t,n,i){var r={mm:n?"минута_минуты_минут":"минуту_минуты_минут",hh:"час_часа_часов",dd:"день_дня_дней",MM:"месяц_месяца_месяцев",yy:"год_года_лет"};return"m"===i?n?"минута":"минуту":t+" "+e(r[i],+t)}function i(t,e){return{nominative:"январь_февраль_март_апрель_май_июнь_июль_август_сентябрь_октябрь_ноябрь_декабрь".split("_"),accusative:"января_февраля_марта_апреля_мая_июня_июля_августа_сентября_октября_ноября_декабря".split("_")}[/D[oD]?(\[[^\[\]]*\]|\s+)+MMMM?/.test(e)?"accusative":"nominative"][t.month()]}function r(t,e){return{nominative:"янв_фев_март_апр_май_июнь_июль_авг_сен_окт_ноя_дек".split("_"),accusative:"янв_фев_мар_апр_мая_июня_июля_авг_сен_окт_ноя_дек".split("_")}[/D[oD]?(\[[^\[\]]*\]|\s+)+MMMM?/.test(e)?"accusative":"nominative"][t.month()]}function o(t,e){return{nominative:"воскресенье_понедельник_вторник_среда_четверг_пятница_суббота".split("_"),accusative:"воскресенье_понедельник_вторник_среду_четверг_пятницу_субботу".split("_")}[/\[ ?[Вв] ?(?:прошлую|следующую|эту)? ?\] ?dddd/.test(e)?"accusative":"nominative"][t.day()]}return t.defineLocale("ru",{months:i,monthsShort:r,weekdays:o,weekdaysShort:"вс_пн_вт_ср_чт_пт_сб".split("_"),weekdaysMin:"вс_пн_вт_ср_чт_пт_сб".split("_"),monthsParse:[/^янв/i,/^фев/i,/^мар/i,/^апр/i,/^ма[й|я]/i,/^июн/i,/^июл/i,/^авг/i,/^сен/i,/^окт/i,/^ноя/i,/^дек/i],longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY г.",LLL:"D MMMM YYYY г., HH:mm",LLLL:"dddd, D MMMM YYYY г., HH:mm"},calendar:{sameDay:"[Сегодня в] LT",nextDay:"[Завтра в] LT",lastDay:"[Вчера в] LT",nextWeek:function(){return 2===this.day()?"[Во] dddd [в] LT":"[В] dddd [в] LT"},lastWeek:function(t){if(t.week()===this.week())return 2===this.day()?"[Во] dddd [в] LT":"[В] dddd [в] LT";switch(this.day()){case 0:return"[В прошлое] dddd [в] LT";case 1:case 2:case 4:return"[В прошлый] dddd [в] LT";case 3:case 5:case 6:return"[В прошлую] dddd [в] LT"}},sameElse:"L"},relativeTime:{future:"через %s",past:"%s назад", -s:"несколько секунд",m:n,mm:n,h:"час",hh:n,d:"день",dd:n,M:"месяц",MM:n,y:"год",yy:n},meridiemParse:/ночи|утра|дня|вечера/i,isPM:function(t){return/^(дня|вечера)$/.test(t)},meridiem:function(t,e,n){return t<4?"ночи":t<12?"утра":t<17?"дня":"вечера"},ordinalParse:/\d{1,2}-(й|го|я)/,ordinal:function(t,e){switch(e){case"M":case"d":case"DDD":return t+"-й";case"D":return t+"-го";case"w":case"W":return t+"-я";default:return t}},week:{dow:1,doy:7}})})},function(t,e,n){!function(t,e){e(n(40))}(0,function(t){"use strict";var e={1:"'inci",5:"'inci",8:"'inci",70:"'inci",80:"'inci",2:"'nci",7:"'nci",20:"'nci",50:"'nci",3:"'üncü",4:"'üncü",100:"'üncü",6:"'ncı",9:"'uncu",10:"'uncu",30:"'uncu",60:"'ıncı",90:"'ıncı"};return t.defineLocale("tr",{months:"Ocak_Şubat_Mart_Nisan_Mayıs_Haziran_Temmuz_Ağustos_Eylül_Ekim_Kasım_Aralık".split("_"),monthsShort:"Oca_Şub_Mar_Nis_May_Haz_Tem_Ağu_Eyl_Eki_Kas_Ara".split("_"),weekdays:"Pazar_Pazartesi_Salı_Çarşamba_Perşembe_Cuma_Cumartesi".split("_"),weekdaysShort:"Paz_Pts_Sal_Çar_Per_Cum_Cts".split("_"),weekdaysMin:"Pz_Pt_Sa_Ça_Pe_Cu_Ct".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[bugün saat] LT",nextDay:"[yarın saat] LT",nextWeek:"[haftaya] dddd [saat] LT",lastDay:"[dün] LT",lastWeek:"[geçen hafta] dddd [saat] LT",sameElse:"L"},relativeTime:{future:"%s sonra",past:"%s önce",s:"birkaç saniye",m:"bir dakika",mm:"%d dakika",h:"bir saat",hh:"%d saat",d:"bir gün",dd:"%d gün",M:"bir ay",MM:"%d ay",y:"bir yıl",yy:"%d yıl"},ordinalParse:/\d{1,2}'(inci|nci|üncü|ncı|uncu|ıncı)/,ordinal:function(t){if(0===t)return t+"'ıncı";var n=t%10,i=t%100-n,r=t>=100?100:null;return t+(e[n]||e[i]||e[r])},week:{dow:1,doy:7}})})},,,,,,,,,function(module,exports){"use strict";!function(t,e){function n(e){return!t(e).parents().andSelf().filter(function(){return"hidden"===t.curCSS(this,"visibility")||t.expr.filters.hidden(this)}).length}t.ui=t.ui||{},t.ui.version||(t.extend(t.ui,{version:"1.8.11",keyCode:{ALT:18,BACKSPACE:8,CAPS_LOCK:20,COMMA:188,COMMAND:91,COMMAND_LEFT:91,COMMAND_RIGHT:93,CONTROL:17,DELETE:46,DOWN:40,END:35,ENTER:13,ESCAPE:27,HOME:36,INSERT:45,LEFT:37,MENU:93,NUMPAD_ADD:107,NUMPAD_DECIMAL:110,NUMPAD_DIVIDE:111,NUMPAD_ENTER:108,NUMPAD_MULTIPLY:106,NUMPAD_SUBTRACT:109,PAGE_DOWN:34,PAGE_UP:33,PERIOD:190,RIGHT:39,SHIFT:16,SPACE:32,TAB:9,UP:38,WINDOWS:91}}),t.fn.extend({_focus:t.fn.focus,focus:function(e,n){return"number"==typeof e?this.each(function(){var i=this;setTimeout(function(){t(i).focus(),n&&n.call(i)},e)}):this._focus.apply(this,arguments)},scrollParent:function(){var e;return e=t.browser.msie&&/(static|relative)/.test(this.css("position"))||/absolute/.test(this.css("position"))?this.parents().filter(function(){return/(relative|absolute|fixed)/.test(t.curCSS(this,"position",1))&&/(auto|scroll)/.test(t.curCSS(this,"overflow",1)+t.curCSS(this,"overflow-y",1)+t.curCSS(this,"overflow-x",1))}).eq(0):this.parents().filter(function(){ -return/(auto|scroll)/.test(t.curCSS(this,"overflow",1)+t.curCSS(this,"overflow-y",1)+t.curCSS(this,"overflow-x",1))}).eq(0),/fixed/.test(this.css("position"))||!e.length?t(document):e},zIndex:function(n){if(n!==e)return this.css("zIndex",n);if(this.length){n=t(this[0]);for(var i;n.length&&n[0]!==document;){if(("absolute"===(i=n.css("position"))||"relative"===i||"fixed"===i)&&(i=parseInt(n.css("zIndex"),10),!isNaN(i)&&0!==i))return i;n=n.parent()}}return 0},disableSelection:function(){return this.bind((t.support.selectstart?"selectstart":"mousedown")+".ui-disableSelection",function(t){t.preventDefault()})},enableSelection:function(){return this.unbind(".ui-disableSelection")}}),t.each(["Width","Height"],function(n,i){function r(e,n,i,r){return t.each(o,function(){n-=parseFloat(t.curCSS(e,"padding"+this,!0))||0,i&&(n-=parseFloat(t.curCSS(e,"border"+this+"Width",!0))||0),r&&(n-=parseFloat(t.curCSS(e,"margin"+this,!0))||0)}),n}var o="Width"===i?["Left","Right"]:["Top","Bottom"],s=i.toLowerCase(),a={innerWidth:t.fn.innerWidth,innerHeight:t.fn.innerHeight,outerWidth:t.fn.outerWidth,outerHeight:t.fn.outerHeight};t.fn["inner"+i]=function(n){return n===e?a["inner"+i].call(this):this.each(function(){t(this).css(s,r(this,n)+"px")})},t.fn["outer"+i]=function(e,n){return"number"!=typeof e?a["outer"+i].call(this,e):this.each(function(){t(this).css(s,r(this,e,!0,n)+"px")})}}),t.extend(t.expr[":"],{data:function(e,n,i){return!!t.data(e,i[3])},focusable:function(e){var i=e.nodeName.toLowerCase(),r=t.attr(e,"tabindex");return"area"===i?(i=e.parentNode,r=i.name,!(!e.href||!r||"map"!==i.nodeName.toLowerCase())&&(!!(e=t("img[usemap=#"+r+"]")[0])&&n(e))):(/input|select|textarea|button|object/.test(i)?!e.disabled:"a"==i?e.href||!isNaN(r):!isNaN(r))&&n(e)},tabbable:function(e){var n=t.attr(e,"tabindex");return(isNaN(n)||n>=0)&&t(e).is(":focusable")}}),t(function(){var e=document.body,n=e.appendChild(n=document.createElement("div"));t.extend(n.style,{minHeight:"100px",height:"auto",padding:0,borderWidth:0}),t.support.minHeight=100===n.offsetHeight,t.support.selectstart="onselectstart"in n,e.removeChild(n).style.display="none"}),t.extend(t.ui,{plugin:{add:function(e,n,i){e=t.ui[e].prototype;for(var r in i)e.plugins[r]=e.plugins[r]||[],e.plugins[r].push([n,i[r]])},call:function(t,e,n){if((e=t.plugins[e])&&t.element[0].parentNode)for(var i=0;i0||(e[n]=1,i=e[n]>0,e[n]=0,i)},isOverAxis:function(t,e,n){return t>e&&t=9||e.button?this._mouseStarted?(this._mouseDrag(e),e.preventDefault()):(this._mouseDistanceMet(e)&&this._mouseDelayMet(e)&&((this._mouseStarted=!1!==this._mouseStart(this._mouseDownEvent,e))?this._mouseDrag(e):this._mouseUp(e)),!this._mouseStarted):this._mouseUp(e)},_mouseUp:function(e){return t(document).unbind("mousemove."+this.widgetName,this._mouseMoveDelegate).unbind("mouseup."+this.widgetName,this._mouseUpDelegate),this._mouseStarted&&(this._mouseStarted=!1,e.target==this._mouseDownEvent.target&&t.data(e.target,this.widgetName+".preventClickEvent",!0),this._mouseStop(e)),!1},_mouseDistanceMet:function(t){return Math.max(Math.abs(this._mouseDownEvent.pageX-t.pageX),Math.abs(this._mouseDownEvent.pageY-t.pageY))>=this.options.distance},_mouseDelayMet:function(){return this.mouseDelayMet},_mouseStart:function(){},_mouseDrag:function(){},_mouseStop:function(){},_mouseCapture:function(){return!0}})}(jQuery),function(t){t.ui=t.ui||{};var e=/left|center|right/,n=/top|center|bottom/,i=t.fn.position,r=t.fn.offset;t.fn.position=function(r){if(!r||!r.of)return i.apply(this,arguments);r=t.extend({},r);var o,s,a,l=t(r.of),u=l[0],c=(r.collision||"flip").split(" "),h=r.offset?r.offset.split(" "):[0,0];return 9===u.nodeType?(o=l.width(),s=l.height(),a={top:0,left:0}):u.setTimeout?(o=l.width(),s=l.height(),a={top:l.scrollTop(),left:l.scrollLeft()}):u.preventDefault?(r.at="left top",o=s=0,a={top:r.of.pageY,left:r.of.pageX}):(o=l.outerWidth(),s=l.outerHeight(),a=l.offset()),t.each(["my","at"],function(){var t=(r[this]||"").split(" ");1===t.length&&(t=e.test(t[0])?t.concat(["center"]):n.test(t[0])?["center"].concat(t):["center","center"]),t[0]=e.test(t[0])?t[0]:"center",t[1]=n.test(t[1])?t[1]:"center",r[this]=t}), -1===c.length&&(c[1]=c[0]),h[0]=parseInt(h[0],10)||0,1===h.length&&(h[1]=h[0]),h[1]=parseInt(h[1],10)||0,"right"===r.at[0]?a.left+=o:"center"===r.at[0]&&(a.left+=o/2),"bottom"===r.at[1]?a.top+=s:"center"===r.at[1]&&(a.top+=s/2),a.left+=h[0],a.top+=h[1],this.each(function(){var e,n=t(this),i=n.outerWidth(),l=n.outerHeight(),u=parseInt(t.curCSS(this,"marginLeft",!0))||0,f=parseInt(t.curCSS(this,"marginTop",!0))||0,d=i+u+(parseInt(t.curCSS(this,"marginRight",!0))||0),p=l+f+(parseInt(t.curCSS(this,"marginBottom",!0))||0),g=t.extend({},a);"right"===r.my[0]?g.left-=i:"center"===r.my[0]&&(g.left-=i/2),"bottom"===r.my[1]?g.top-=l:"center"===r.my[1]&&(g.top-=l/2),g.left=Math.round(g.left),g.top=Math.round(g.top),e={left:g.left-u,top:g.top-f},t.each(["left","top"],function(n,a){t.ui.position[c[n]]&&t.ui.position[c[n]][a](g,{targetWidth:o,targetHeight:s,elemWidth:i,elemHeight:l,collisionPosition:e,collisionWidth:d,collisionHeight:p,offset:h,my:r.my,at:r.at})}),t.fn.bgiframe&&n.bgiframe(),n.offset(t.extend(g,{using:r.using}))})},t.ui.position={fit:{left:function(e,n){var i=t(window);i=n.collisionPosition.left+n.collisionWidth-i.width()-i.scrollLeft(),e.left=i>0?e.left-i:Math.max(e.left-n.collisionPosition.left,e.left)},top:function(e,n){var i=t(window);i=n.collisionPosition.top+n.collisionHeight-i.height()-i.scrollTop(),e.top=i>0?e.top-i:Math.max(e.top-n.collisionPosition.top,e.top)}},flip:{left:function(e,n){var i,r,o,s;"center"!==n.at[0]&&(i=t(window),i=n.collisionPosition.left+n.collisionWidth-i.width()-i.scrollLeft(),r="left"===n.my[0]?-n.elemWidth:"right"===n.my[0]?n.elemWidth:0,o="left"===n.at[0]?n.targetWidth:-n.targetWidth,s=-2*n.offset[0],e.left+=n.collisionPosition.left<0?r+o+s:i>0?r+o+s:0)},top:function(e,n){var i,r,o,s;"center"!==n.at[1]&&(i=t(window),i=n.collisionPosition.top+n.collisionHeight-i.height()-i.scrollTop(),r="top"===n.my[1]?-n.elemHeight:"bottom"===n.my[1]?n.elemHeight:0,o="top"===n.at[1]?n.targetHeight:-n.targetHeight,s=-2*n.offset[1],e.top+=n.collisionPosition.top<0?r+o+s:i>0?r+o+s:0)}}},t.offset.setOffset||(t.offset.setOffset=function(e,n){/static/.test(t.curCSS(e,"position"))&&(e.style.position="relative");var i=t(e),r=i.offset(),o=parseInt(t.curCSS(e,"top",!0),10)||0,s=parseInt(t.curCSS(e,"left",!0),10)||0;r={top:n.top-r.top+o,left:n.left-r.left+s},"using"in n?n.using.call(e,r):i.css(r)},t.fn.offset=function(e){var n=this[0];return n&&n.ownerDocument?e?this.each(function(){t.offset.setOffset(this,e)}):r.call(this):null})}(jQuery),function(t){t.widget("ui.draggable",t.ui.mouse,{widgetEventPrefix:"drag",options:{addClasses:!0,appendTo:"parent",axis:!1,connectToSortable:!1,containment:!1,cursor:"auto",cursorAt:!1,grid:!1,handle:!1,helper:"original",iframeFix:!1,opacity:!1,refreshPositions:!1,revert:!1,revertDuration:500,scope:"default",scroll:!0,scrollSensitivity:20,scrollSpeed:20,snap:!1,snapMode:"both",snapTolerance:20,stack:!1,zIndex:!1},_create:function(){"original"!=this.options.helper||/^(?:r|a|f)/.test(this.element.css("position"))||(this.element[0].style.position="relative"), -this.options.addClasses&&this.element.addClass("ui-draggable"),this.options.disabled&&this.element.addClass("ui-draggable-disabled"),this._mouseInit()},destroy:function(){if(this.element.data("draggable"))return this.element.removeData("draggable").unbind(".draggable").removeClass("ui-draggable ui-draggable-dragging ui-draggable-disabled"),this._mouseDestroy(),this},_mouseCapture:function(e){var n=this.options;return!(this.helper||n.disabled||t(e.target).is(".ui-resizable-handle"))&&(this.handle=this._getHandle(e),!!this.handle)},_mouseStart:function(e){var n=this.options;return this.helper=this._createHelper(e),this._cacheHelperProportions(),t.ui.ddmanager&&(t.ui.ddmanager.current=this),this._cacheMargins(),this.cssPosition=this.helper.css("position"),this.scrollParent=this.helper.scrollParent(),this.offset=this.positionAbs=this.element.offset(),this.offset={top:this.offset.top-this.margins.top,left:this.offset.left-this.margins.left},t.extend(this.offset,{click:{left:e.pageX-this.offset.left,top:e.pageY-this.offset.top},parent:this._getParentOffset(),relative:this._getRelativeOffset()}),this.originalPosition=this.position=this._generatePosition(e),this.originalPageX=e.pageX,this.originalPageY=e.pageY,n.cursorAt&&this._adjustOffsetFromHelper(n.cursorAt),n.containment&&this._setContainment(),!1===this._trigger("start",e)?(this._clear(),!1):(this._cacheHelperProportions(),t.ui.ddmanager&&!n.dropBehaviour&&t.ui.ddmanager.prepareOffsets(this,e),this.helper.addClass("ui-draggable-dragging"),this._mouseDrag(e,!0),!0)},_mouseDrag:function(e,n){if(this.position=this._generatePosition(e),this.positionAbs=this._convertPositionTo("absolute"),!n){if(n=this._uiHash(),!1===this._trigger("drag",e,n))return this._mouseUp({}),!1;this.position=n.position}return this.options.axis&&"y"==this.options.axis||(this.helper[0].style.left=this.position.left+"px"),this.options.axis&&"x"==this.options.axis||(this.helper[0].style.top=this.position.top+"px"),t.ui.ddmanager&&t.ui.ddmanager.drag(this,e),!1},_mouseStop:function(e){var n,i=!1;return t.ui.ddmanager&&!this.options.dropBehaviour&&(i=t.ui.ddmanager.drop(this,e)),this.dropped&&(i=this.dropped,this.dropped=!1),!!(this.element[0]&&this.element[0].parentNode||"original"!=this.options.helper)&&("invalid"==this.options.revert&&!i||"valid"==this.options.revert&&i||!0===this.options.revert||t.isFunction(this.options.revert)&&this.options.revert.call(this.element,i)?(n=this,t(this.helper).animate(this.originalPosition,parseInt(this.options.revertDuration,10),function(){!1!==n._trigger("stop",e)&&n._clear()})):!1!==this._trigger("stop",e)&&this._clear(),!1)},cancel:function(){return this.helper.is(".ui-draggable-dragging")?this._mouseUp({}):this._clear(),this},_getHandle:function(e){var n=!this.options.handle||!t(this.options.handle,this.element).length;return t(this.options.handle,this.element).find("*").andSelf().each(function(){this==e.target&&(n=!0)}),n},_createHelper:function(e){var n=this.options -;return e=t.isFunction(n.helper)?t(n.helper.apply(this.element[0],[e])):"clone"==n.helper?this.element.clone():this.element,e.parents("body").length||e.appendTo("parent"==n.appendTo?this.element[0].parentNode:n.appendTo),e[0]!=this.element[0]&&!/(fixed|absolute)/.test(e.css("position"))&&e.css("position","absolute"),e},_adjustOffsetFromHelper:function(e){"string"==typeof e&&(e=e.split(" ")),t.isArray(e)&&(e={left:+e[0],top:+e[1]||0}),"left"in e&&(this.offset.click.left=e.left+this.margins.left),"right"in e&&(this.offset.click.left=this.helperProportions.width-e.right+this.margins.left),"top"in e&&(this.offset.click.top=e.top+this.margins.top),"bottom"in e&&(this.offset.click.top=this.helperProportions.height-e.bottom+this.margins.top)},_getParentOffset:function(){this.offsetParent=this.helper.offsetParent();var e=this.offsetParent.offset();return"absolute"==this.cssPosition&&this.scrollParent[0]!=document&&t.ui.contains(this.scrollParent[0],this.offsetParent[0])&&(e.left+=this.scrollParent.scrollLeft(),e.top+=this.scrollParent.scrollTop()),(this.offsetParent[0]==document.body||this.offsetParent[0].tagName&&"html"==this.offsetParent[0].tagName.toLowerCase()&&t.browser.msie)&&(e={top:0,left:0}),{top:e.top+(parseInt(this.offsetParent.css("borderTopWidth"),10)||0),left:e.left+(parseInt(this.offsetParent.css("borderLeftWidth"),10)||0)}},_getRelativeOffset:function(){if("relative"==this.cssPosition){var t=this.element.position();return{top:t.top-(parseInt(this.helper.css("top"),10)||0)+this.scrollParent.scrollTop(),left:t.left-(parseInt(this.helper.css("left"),10)||0)+this.scrollParent.scrollLeft()}}return{top:0,left:0}},_cacheMargins:function(){this.margins={left:parseInt(this.element.css("marginLeft"),10)||0,top:parseInt(this.element.css("marginTop"),10)||0,right:parseInt(this.element.css("marginRight"),10)||0,bottom:parseInt(this.element.css("marginBottom"),10)||0}},_cacheHelperProportions:function(){this.helperProportions={width:this.helper.outerWidth(),height:this.helper.outerHeight()}},_setContainment:function(){var e,n,i=this.options;"parent"==i.containment&&(i.containment=this.helper[0].parentNode),"document"!=i.containment&&"window"!=i.containment||(this.containment=[("document"==i.containment?0:t(window).scrollLeft())-this.offset.relative.left-this.offset.parent.left,("document"==i.containment?0:t(window).scrollTop())-this.offset.relative.top-this.offset.parent.top,("document"==i.containment?0:t(window).scrollLeft())+t("document"==i.containment?document:window).width()-this.helperProportions.width-this.margins.left,("document"==i.containment?0:t(window).scrollTop())+(t("document"==i.containment?document:window).height()||document.body.parentNode.scrollHeight)-this.helperProportions.height-this.margins.top]),/^(document|window|parent)$/.test(i.containment)||i.containment.constructor==Array?i.containment.constructor==Array&&(this.containment=i.containment):(e=t(i.containment)[0])&&(i=t(i.containment).offset(),n="hidden"!=t(e).css("overflow"), -this.containment=[i.left+(parseInt(t(e).css("borderLeftWidth"),10)||0)+(parseInt(t(e).css("paddingLeft"),10)||0),i.top+(parseInt(t(e).css("borderTopWidth"),10)||0)+(parseInt(t(e).css("paddingTop"),10)||0),i.left+(n?Math.max(e.scrollWidth,e.offsetWidth):e.offsetWidth)-(parseInt(t(e).css("borderLeftWidth"),10)||0)-(parseInt(t(e).css("paddingRight"),10)||0)-this.helperProportions.width-this.margins.left-this.margins.right,i.top+(n?Math.max(e.scrollHeight,e.offsetHeight):e.offsetHeight)-(parseInt(t(e).css("borderTopWidth"),10)||0)-(parseInt(t(e).css("paddingBottom"),10)||0)-this.helperProportions.height-this.margins.top-this.margins.bottom])},_convertPositionTo:function(e,n){n||(n=this.position),e="absolute"==e?1:-1;var i="absolute"!=this.cssPosition||this.scrollParent[0]!=document&&t.ui.contains(this.scrollParent[0],this.offsetParent[0])?this.scrollParent:this.offsetParent,r=/(html|body)/i.test(i[0].tagName);return{top:n.top+this.offset.relative.top*e+this.offset.parent.top*e-(t.browser.safari&&t.browser.version<526&&"fixed"==this.cssPosition?0:("fixed"==this.cssPosition?-this.scrollParent.scrollTop():r?0:i.scrollTop())*e),left:n.left+this.offset.relative.left*e+this.offset.parent.left*e-(t.browser.safari&&t.browser.version<526&&"fixed"==this.cssPosition?0:("fixed"==this.cssPosition?-this.scrollParent.scrollLeft():r?0:i.scrollLeft())*e)}},_generatePosition:function(e){var n=this.options,i="absolute"!=this.cssPosition||this.scrollParent[0]!=document&&t.ui.contains(this.scrollParent[0],this.offsetParent[0])?this.scrollParent:this.offsetParent,r=/(html|body)/i.test(i[0].tagName),o=e.pageX,s=e.pageY;return this.originalPosition&&(this.containment&&(e.pageX-this.offset.click.leftthis.containment[2]&&(o=this.containment[2]+this.offset.click.left),e.pageY-this.offset.click.top>this.containment[3]&&(s=this.containment[3]+this.offset.click.top)),n.grid&&(s=this.originalPageY+Math.round((s-this.originalPageY)/n.grid[1])*n.grid[1],s=this.containment&&(s-this.offset.click.topthis.containment[3])?s-this.offset.click.topthis.containment[2])?o-this.offset.click.left
').css({width:this.offsetWidth+"px",height:this.offsetHeight+"px",position:"absolute",opacity:"0.001",zIndex:1e3}).css(t(this).offset()).appendTo("body")})},stop:function(){t("div.ui-draggable-iframeFix").each(function(){this.parentNode.removeChild(this)})}}),t.ui.plugin.add("draggable","opacity",{start:function(e,n){e=t(n.helper),n=t(this).data("draggable").options,e.css("opacity")&&(n._opacity=e.css("opacity")),e.css("opacity",n.opacity)},stop:function(e,n){e=t(this).data("draggable").options,e._opacity&&t(n.helper).css("opacity",e._opacity)}}),t.ui.plugin.add("draggable","scroll",{start:function(){var e=t(this).data("draggable");e.scrollParent[0]!=document&&"HTML"!=e.scrollParent[0].tagName&&(e.overflowOffset=e.scrollParent.offset())},drag:function(e){var n=t(this).data("draggable"),i=n.options,r=!1;n.scrollParent[0]!=document&&"HTML"!=n.scrollParent[0].tagName?(i.axis&&"x"==i.axis||(n.overflowOffset.top+n.scrollParent[0].offsetHeight-e.pageY=0;c--)h=i.snapElements[c].left,f=h+i.snapElements[c].width,d=i.snapElements[c].top,p=d+i.snapElements[c].height,h-o').css({position:this.element.css("position"),width:this.element.outerWidth(),height:this.element.outerHeight(),top:this.element.css("top"),left:this.element.css("left")})),this.element=this.element.parent().data("resizable",this.element.data("resizable")),this.elementIsWrapper=!0,this.element.css({marginLeft:this.originalElement.css("marginLeft"),marginTop:this.originalElement.css("marginTop"),marginRight:this.originalElement.css("marginRight"),marginBottom:this.originalElement.css("marginBottom")}),this.originalElement.css({marginLeft:0,marginTop:0,marginRight:0,marginBottom:0}),this.originalResizeStyle=this.originalElement.css("resize"),this.originalElement.css("resize","none"),this._proportionallyResizeElements.push(this.originalElement.css({position:"static",zoom:1,display:"block"})),this.originalElement.css({margin:this.originalElement.css("margin")}),this._proportionallyResize()),this.handles=s.handles||(t(".ui-resizable-handle",this.element).length?{n:".ui-resizable-n",e:".ui-resizable-e",s:".ui-resizable-s",w:".ui-resizable-w",se:".ui-resizable-se",sw:".ui-resizable-sw",ne:".ui-resizable-ne",nw:".ui-resizable-nw"}:"e,s,se"),this.handles.constructor==String)for("all"==this.handles&&(this.handles="n,e,s,w,se,sw,ne,nw"),e=this.handles.split(","),this.handles={},n=0;n'),/sw|se|ne|nw/.test(i)&&r.css({zIndex:++s.zIndex}),"se"==i&&r.addClass("ui-icon ui-icon-gripsmall-diagonal-se"),this.handles[i]=".ui-resizable-"+i,this.element.append(r);this._renderAxis=function(e){var n,i,r;e=e||this.element;for(n in this.handles)this.handles[n].constructor==String&&(this.handles[n]=t(this.handles[n],this.element).show()),this.elementIsWrapper&&this.originalElement[0].nodeName.match(/textarea|input|select|button/i)&&(i=t(this.handles[n],this.element),r=0,r=/sw|ne|nw|se|n|s/.test(n)?i.outerHeight():i.outerWidth(),i="padding"+(/ne|nw|n/.test(n)?"Top":/se|sw|s/.test(n)?"Bottom":/^e$/.test(n)?"Right":"Left"),e.css(i,r),this._proportionallyResize()),t(this.handles[n])},this._renderAxis(this.element),this._handles=t(".ui-resizable-handle",this.element).disableSelection(),this._handles.mouseover(function(){if(!o.resizing){if(this.className)var t=this.className.match(/ui-resizable-(se|sw|ne|nw|n|e|s|w)/i);o.axis=t&&t[1]?t[1]:"se"}}),s.autoHide&&(this._handles.hide(),t(this.element).addClass("ui-resizable-autohide").hover(function(){t(this).removeClass("ui-resizable-autohide"),o._handles.show()},function(){o.resizing||(t(this).addClass("ui-resizable-autohide"),o._handles.hide())})),this._mouseInit()},destroy:function(){var e,n;return this._mouseDestroy(),e=function(e){ -t(e).removeClass("ui-resizable ui-resizable-disabled ui-resizable-resizing").removeData("resizable").unbind(".resizable").find(".ui-resizable-handle").remove()},this.elementIsWrapper&&(e(this.element),n=this.element,n.after(this.originalElement.css({position:n.css("position"),width:n.outerWidth(),height:n.outerHeight(),top:n.css("top"),left:n.css("left")})).remove()),this.originalElement.css("resize",this.originalResizeStyle),e(this.originalElement),this},_mouseCapture:function(e){var n,i=!1;for(n in this.handles)t(this.handles[n])[0]==e.target&&(i=!0);return!this.options.disabled&&i},_mouseStart:function(n){var i,r=this.options,o=this.element.position(),s=this.element;return this.resizing=!0,this.documentScroll={top:t(document).scrollTop(),left:t(document).scrollLeft()},(s.is(".ui-draggable")||/absolute/.test(s.css("position")))&&s.css({position:"absolute",top:o.top,left:o.left}),t.browser.opera&&/relative/.test(s.css("position"))&&s.css({position:"relative",top:"auto",left:"auto"}),this._renderProxy(),o=e(this.helper.css("left")),i=e(this.helper.css("top")),r.containment&&(o+=t(r.containment).scrollLeft()||0,i+=t(r.containment).scrollTop()||0),this.offset=this.helper.offset(),this.position={left:o,top:i},this.size=this._helper?{width:s.outerWidth(),height:s.outerHeight()}:{width:s.width(),height:s.height()},this.originalSize=this._helper?{width:s.outerWidth(),height:s.outerHeight()}:{width:s.width(),height:s.height()},this.originalPosition={left:o,top:i},this.sizeDiff={width:s.outerWidth()-s.width(),height:s.outerHeight()-s.height()},this.originalMousePosition={left:n.pageX,top:n.pageY},this.aspectRatio="number"==typeof r.aspectRatio?r.aspectRatio:this.originalSize.width/this.originalSize.height||1,r=t(".ui-resizable-"+this.axis).css("cursor"),t("body").css("cursor","auto"==r?this.axis+"-resize":r),s.addClass("ui-resizable-resizing"),this._propagate("start",n),!0},_mouseDrag:function(t){var e=this.helper,n=this.originalMousePosition,i=this._change[this.axis];return!!i&&(n=i.apply(this,[t,t.pageX-n.left||0,t.pageY-n.top||0]),(this._aspectRatio||t.shiftKey)&&(n=this._updateRatio(n,t)),n=this._respectSize(n,t),this._propagate("resize",t),e.css({top:this.position.top+"px",left:this.position.left+"px",width:this.size.width+"px",height:this.size.height+"px"}),!this._helper&&this._proportionallyResizeElements.length&&this._proportionallyResize(),this._updateCache(n),this._trigger("resize",t,this.ui()),!1)},_mouseStop:function(e){var n,i,r,o,s;return this.resizing=!1,n=this.options,i=this,this._helper&&(r=this._proportionallyResizeElements,o=r.length&&/textarea/i.test(r[0].nodeName),r=o&&t.ui.hasScroll(r[0],"left")?0:i.sizeDiff.height,o=o?0:i.sizeDiff.width,o={width:i.helper.width()-o,height:i.helper.height()-r},r=parseInt(i.element.css("left"),10)+(i.position.left-i.originalPosition.left)||null,s=parseInt(i.element.css("top"),10)+(i.position.top-i.originalPosition.top)||null,n.animate||this.element.css(t.extend(o,{top:s,left:r})),i.helper.height(i.size.height),i.helper.width(i.size.width), -this._helper&&!n.animate&&this._proportionallyResize()),t("body").css("cursor","auto"),this.element.removeClass("ui-resizable-resizing"),this._propagate("stop",e),this._helper&&this.helper.remove(),!1},_updateCache:function(t){this.offset=this.helper.offset(),n(t.left)&&(this.position.left=t.left),n(t.top)&&(this.position.top=t.top),n(t.height)&&(this.size.height=t.height),n(t.width)&&(this.size.width=t.width)},_updateRatio:function(t){var e=this.position,n=this.size,i=this.axis;return t.height?t.width=n.height*this.aspectRatio:t.width&&(t.height=n.width/this.aspectRatio),"sw"==i&&(t.left=e.left+(n.width-t.width),t.top=null),"nw"==i&&(t.top=e.top+(n.height-t.height),t.left=e.left+(n.width-t.width)),t},_respectSize:function(t){var e,i,r,o=this.options,s=this.axis,a=n(t.width)&&o.maxWidth&&o.maxWidtht.width,c=n(t.height)&&o.minHeight&&o.minHeight>t.height;return u&&(t.width=o.minWidth),c&&(t.height=o.minHeight),a&&(t.width=o.maxWidth),l&&(t.height=o.maxHeight),e=this.originalPosition.left+this.originalSize.width,i=this.position.top+this.size.height,r=/sw|nw|w/.test(s),s=/nw|ne|n/.test(s),u&&r&&(t.left=e-o.minWidth),a&&r&&(t.left=e-o.maxWidth),c&&s&&(t.top=i-o.minHeight),l&&s&&(t.top=i-o.maxHeight),(o=!t.width&&!t.height)&&!t.left&&t.top?t.top=null:o&&!t.top&&t.left&&(t.left=null),t},_proportionallyResize:function(){var e,n,i,r,o;if(this._proportionallyResizeElements.length)for(e=this.helper||this.element,n=0;n'),e=t.browser.msie&&t.browser.version<7,n=e?1:0,e=e?2:-1,this.helper.addClass(this._helper).css({width:this.element.outerWidth()+e,height:this.element.outerHeight()+e,position:"absolute",left:this.elementOffset.left-n+"px",top:this.elementOffset.top-n+"px",zIndex:++i.zIndex}),this.helper.appendTo("body").disableSelection()):this.helper=this.element},_change:{e:function(t,e){return{width:this.originalSize.width+e}},w:function(t,e){return{left:this.originalPosition.left+e,width:this.originalSize.width-e}},n:function(t,e,n){return{top:this.originalPosition.top+n,height:this.originalSize.height-n}},s:function(t,e,n){return{height:this.originalSize.height+n}},se:function(e,n,i){return t.extend(this._change.s.apply(this,arguments),this._change.e.apply(this,[e,n,i]))},sw:function(e,n,i){ -return t.extend(this._change.s.apply(this,arguments),this._change.w.apply(this,[e,n,i]))},ne:function(e,n,i){return t.extend(this._change.n.apply(this,arguments),this._change.e.apply(this,[e,n,i]))},nw:function(e,n,i){return t.extend(this._change.n.apply(this,arguments),this._change.w.apply(this,[e,n,i]))}},_propagate:function(e,n){t.ui.plugin.call(this,e,[n,this.ui()]),"resize"!=e&&this._trigger(e,n,this.ui())},plugins:{},ui:function(){return{originalElement:this.originalElement,element:this.element,helper:this.helper,position:this.position,size:this.size,originalSize:this.originalSize,originalPosition:this.originalPosition}}}),t.extend(t.ui.resizable,{version:"1.8.11"}),t.ui.plugin.add("resizable","alsoResize",{start:function(){var e=t(this).data("resizable").options,n=function(e){t(e).each(function(){var e=t(this);e.data("resizable-alsoresize",{width:parseInt(e.width(),10),height:parseInt(e.height(),10),left:parseInt(e.css("left"),10),top:parseInt(e.css("top"),10),position:e.css("position")})})};"object"!=typeof e.alsoResize||e.alsoResize.parentNode?n(e.alsoResize):e.alsoResize.length?(e.alsoResize=e.alsoResize[0],n(e.alsoResize)):t.each(e.alsoResize,function(t){n(t)})},resize:function(e,n){var i,r,o,s,a=t(this).data("resizable");e=a.options,i=a.originalSize,r=a.originalPosition,o={height:a.size.height-i.height||0,width:a.size.width-i.width||0,top:a.position.top-r.top||0,left:a.position.left-r.left||0},s=function(e,i){t(e).each(function(){var e=t(this),r=t(this).data("resizable-alsoresize"),s={},l=i&&i.length?i:e.parents(n.originalElement[0]).length?["width","height"]:["width","height","top","left"];t.each(l,function(t,e){(t=(r[e]||0)+(o[e]||0))&&t>=0&&(s[e]=t||null)}),t.browser.opera&&/relative/.test(e.css("position"))&&(a._revertToRelativePosition=!0,e.css({position:"absolute",top:"auto",left:"auto"})),e.css(s)})},"object"!=typeof e.alsoResize||e.alsoResize.nodeType?s(e.alsoResize):t.each(e.alsoResize,function(t,e){s(t,e)})},stop:function(){var e=t(this).data("resizable"),n=e.options,i=function(e){t(e).each(function(){var e=t(this);e.css({position:e.data("resizable-alsoresize").position})})};e._revertToRelativePosition&&(e._revertToRelativePosition=!1,"object"!=typeof n.alsoResize||n.alsoResize.nodeType?i(n.alsoResize):t.each(n.alsoResize,function(t){i(t)})),t(this).removeData("resizable-alsoresize")}}),t.ui.plugin.add("resizable","animate",{stop:function(e){var n,i=t(this).data("resizable"),r=i.options,o=i._proportionallyResizeElements,s=o.length&&/textarea/i.test(o[0].nodeName),a=s&&t.ui.hasScroll(o[0],"left")?0:i.sizeDiff.height;s={width:i.size.width-(s?0:i.sizeDiff.width),height:i.size.height-a},a=parseInt(i.element.css("left"),10)+(i.position.left-i.originalPosition.left)||null,n=parseInt(i.element.css("top"),10)+(i.position.top-i.originalPosition.top)||null,i.element.animate(t.extend(s,n&&a?{top:n,left:a}:{}),{duration:r.animateDuration,easing:r.animateEasing,step:function(){var n={width:parseInt(i.element.css("width"),10),height:parseInt(i.element.css("height"),10),top:parseInt(i.element.css("top"),10), -left:parseInt(i.element.css("left"),10)};o&&o.length&&t(o[0]).css({width:n.width,height:n.height}),i._updateCache(n),i._propagate("resize",e)}})}}),t.ui.plugin.add("resizable","containment",{start:function(){var n,i,r,o,s=t(this).data("resizable"),a=s.element,l=s.options.containment;(a=l instanceof t?l.get(0):/parent/.test(l)?a.parent().get(0):l)&&(s.containerElement=t(a),/document/.test(l)||l==document?(s.containerOffset={left:0,top:0},s.containerPosition={left:0,top:0},s.parentData={element:t(document),left:0,top:0,width:t(document).width(),height:t(document).height()||document.body.parentNode.scrollHeight}):(n=t(a),i=[],t(["Top","Right","Left","Bottom"]).each(function(t,r){i[t]=e(n.css("padding"+r))}),s.containerOffset=n.offset(),s.containerPosition=n.position(),s.containerSize={height:n.innerHeight()-i[3],width:n.innerWidth()-i[1]},l=s.containerOffset,r=s.containerSize.height,o=s.containerSize.width,o=t.ui.hasScroll(a,"left")?a.scrollWidth:o,r=t.ui.hasScroll(a)?a.scrollHeight:r,s.parentData={element:a,left:l.left,top:l.top,width:o,height:r}))},resize:function(e){var n,i,r=t(this).data("resizable"),o=r.options,s=r.containerOffset,a=r.position;e=r._aspectRatio||e.shiftKey,n={top:0,left:0},i=r.containerElement,i[0]!=document&&/static/.test(i.css("position"))&&(n=s),a.left<(r._helper?s.left:0)&&(r.size.width+=r._helper?r.position.left-s.left:r.position.left-n.left,e&&(r.size.height=r.size.width/o.aspectRatio),r.position.left=o.helper?s.left:0),a.top<(r._helper?s.top:0)&&(r.size.height+=r._helper?r.position.top-s.top:r.position.top,e&&(r.size.width=r.size.height*o.aspectRatio),r.position.top=r._helper?s.top:0),r.offset.left=r.parentData.left+r.position.left,r.offset.top=r.parentData.top+r.position.top,o=Math.abs((r._helper,r.offset.left-n.left+r.sizeDiff.width)),s=Math.abs((r._helper?r.offset.top-n.top:r.offset.top-s.top)+r.sizeDiff.height),a=r.containerElement.get(0)==r.element.parent().get(0),n=/relative|absolute/.test(r.containerElement.css("position")),a&&n&&(o-=r.parentData.left),o+r.size.width>=r.parentData.width&&(r.size.width=r.parentData.width-o,e&&(r.size.height=r.size.width/r.aspectRatio)),s+r.size.height>=r.parentData.height&&(r.size.height=r.parentData.height-s,e&&(r.size.width=r.size.height*r.aspectRatio))},stop:function(){var e=t(this).data("resizable"),n=e.options,i=e.containerOffset,r=e.containerPosition,o=e.containerElement,s=t(e.helper),a=s.offset(),l=s.outerWidth()-e.sizeDiff.width;s=s.outerHeight()-e.sizeDiff.height,e._helper&&!n.animate&&/relative/.test(o.css("position"))&&t(this).css({left:a.left-r.left-i.left,width:l,height:s}),e._helper&&!n.animate&&/static/.test(o.css("position"))&&t(this).css({left:a.left-r.left-i.left,width:l,height:s})}}),t.ui.plugin.add("resizable","ghost",{start:function(){var e=t(this).data("resizable"),n=e.options,i=e.size;e.ghost=e.originalElement.clone(),e.ghost.css({opacity:.25,display:"block",position:"relative",height:i.height,width:i.width,margin:0,left:0,top:0}).addClass("ui-resizable-ghost").addClass("string"==typeof n.ghost?n.ghost:""), -e.ghost.appendTo(e.helper)},resize:function(){var e=t(this).data("resizable");e.ghost&&e.ghost.css({position:"relative",height:e.size.height,width:e.size.width})},stop:function(){var e=t(this).data("resizable");e.ghost&&e.helper&&e.helper.get(0).removeChild(e.ghost.get(0))}}),t.ui.plugin.add("resizable","grid",{resize:function(){var e,n=t(this).data("resizable"),i=n.options,r=n.size,o=n.originalSize,s=n.originalPosition,a=n.axis;i.grid="number"==typeof i.grid?[i.grid,i.grid]:i.grid,e=Math.round((r.width-o.width)/(i.grid[0]||1))*(i.grid[0]||1),i=Math.round((r.height-o.height)/(i.grid[1]||1))*(i.grid[1]||1),/^(se|s|e)$/.test(a)?(n.size.width=o.width+e,n.size.height=o.height+i):/^(ne)$/.test(a)?(n.size.width=o.width+e,n.size.height=o.height+i,n.position.top=s.top-i):(/^(sw)$/.test(a)?(n.size.width=o.width+e,n.size.height=o.height+i):(n.size.width=o.width+e,n.size.height=o.height+i,n.position.top=s.top-i),n.position.left=s.left-e)}});var e=function(t){return parseInt(t,10)||0},n=function(t){return!isNaN(parseInt(t,10))}}(jQuery),function(t){t.widget("ui.sortable",t.ui.mouse,{widgetEventPrefix:"sort",options:{appendTo:"parent",axis:!1,connectWith:!1,containment:!1,cursor:"auto",cursorAt:!1,dropOnEmpty:!0,forcePlaceholderSize:!1,forceHelperSize:!1,grid:!1,handle:!1,helper:"original",items:"> *",opacity:!1,placeholder:!1,revert:!1,scroll:!0,scrollSensitivity:20,scrollSpeed:20,scope:"default",tolerance:"intersect",zIndex:1e3},_create:function(){this.containerCache={},this.element.addClass("ui-sortable"),this.refresh(),this.floating=!!this.items.length&&(/left|right/.test(this.items[0].item.css("float"))||/inline|table-cell/.test(this.items[0].item.css("display"))),this.offset=this.element.offset(),this._mouseInit()},destroy:function(){this.element.removeClass("ui-sortable ui-sortable-disabled").removeData("sortable").unbind(".sortable"),this._mouseDestroy();for(var t=this.items.length-1;t>=0;t--)this.items[t].item.removeData("sortable-item");return this},_setOption:function(e,n){"disabled"===e?(this.options[e]=n,this.widget()[n?"addClass":"removeClass"]("ui-sortable-disabled")):t.Widget.prototype._setOption.apply(this,arguments)},_mouseCapture:function(e,n){var i,r,o;return!this.reverting&&(!this.options.disabled&&"static"!=this.options.type&&(this._refreshItems(e),i=null,r=this,t(e.target).parents().each(function(){if(t.data(this,"sortable-item")==r)return i=t(this),!1}),t.data(e.target,"sortable-item")==r&&(i=t(e.target)),!!i&&(!(this.options.handle&&!n&&(o=!1,t(this.options.handle,i).find("*").andSelf().each(function(){this==e.target&&(o=!0)}),!o))&&(this.currentItem=i,this._removeCurrentsFromItems(),!0))))},_mouseStart:function(e,n,i){n=this.options;var r=this;if(this.currentContainer=this,this.refreshPositions(),this.helper=this._createHelper(e),this._cacheHelperProportions(),this._cacheMargins(),this.scrollParent=this.helper.scrollParent(),this.offset=this.currentItem.offset(),this.offset={top:this.offset.top-this.margins.top,left:this.offset.left-this.margins.left},this.helper.css("position","absolute"), -this.cssPosition=this.helper.css("position"),t.extend(this.offset,{click:{left:e.pageX-this.offset.left,top:e.pageY-this.offset.top},parent:this._getParentOffset(),relative:this._getRelativeOffset()}),this.originalPosition=this._generatePosition(e),this.originalPageX=e.pageX,this.originalPageY=e.pageY,n.cursorAt&&this._adjustOffsetFromHelper(n.cursorAt),this.domPosition={prev:this.currentItem.prev()[0],parent:this.currentItem.parent()[0]},this.helper[0]!=this.currentItem[0]&&this.currentItem.hide(),this._createPlaceholder(),n.containment&&this._setContainment(),n.cursor&&(t("body").css("cursor")&&(this._storedCursor=t("body").css("cursor")),t("body").css("cursor",n.cursor)),n.opacity&&(this.helper.css("opacity")&&(this._storedOpacity=this.helper.css("opacity")),this.helper.css("opacity",n.opacity)),n.zIndex&&(this.helper.css("zIndex")&&(this._storedZIndex=this.helper.css("zIndex")),this.helper.css("zIndex",n.zIndex)),this.scrollParent[0]!=document&&"HTML"!=this.scrollParent[0].tagName&&(this.overflowOffset=this.scrollParent.offset()),this._trigger("start",e,this._uiHash()),this._preserveHelperProportions||this._cacheHelperProportions(),!i)for(i=this.containers.length-1;i>=0;i--)this.containers[i]._trigger("activate",e,r._uiHash(this));return t.ui.ddmanager&&(t.ui.ddmanager.current=this),t.ui.ddmanager&&!n.dropBehaviour&&t.ui.ddmanager.prepareOffsets(this,e),this.dragging=!0,this.helper.addClass("ui-sortable-helper"),this._mouseDrag(e),!0},_mouseDrag:function(e){var n,i,r,o;for(this.position=this._generatePosition(e),this.positionAbs=this._convertPositionTo("absolute"),this.lastPositionAbs||(this.lastPositionAbs=this.positionAbs),this.options.scroll&&(n=this.options,i=!1,this.scrollParent[0]!=document&&"HTML"!=this.scrollParent[0].tagName?(this.overflowOffset.top+this.scrollParent[0].offsetHeight-e.pageY=0;n--)if(i=this.items[n],r=i.item[0],o=this._intersectsWithPointer(i),o&&!(r==this.currentItem[0]||this.placeholder[1==o?"next":"prev"]()[0]==r||t.ui.contains(this.placeholder[0],r)||"semi-dynamic"==this.options.type&&t.ui.contains(this.element[0],r))){if(this.direction=1==o?"down":"up","pointer"!=this.options.tolerance&&!this._intersectsWithSides(i))break;this._rearrange(e,i),this._trigger("change",e,this._uiHash());break}return this._contactContainers(e),t.ui.ddmanager&&t.ui.ddmanager.drag(this,e),this._trigger("sort",e,this._uiHash()),this.lastPositionAbs=this.positionAbs,!1},_mouseStop:function(e,n){if(e){if(t.ui.ddmanager&&!this.options.dropBehaviour&&t.ui.ddmanager.drop(this,e),this.options.revert){var i=this;n=i.placeholder.offset(),i.reverting=!0,t(this.helper).animate({left:n.left-this.offset.parent.left-i.margins.left+(this.offsetParent[0]==document.body?0:this.offsetParent[0].scrollLeft),top:n.top-this.offset.parent.top-i.margins.top+(this.offsetParent[0]==document.body?0:this.offsetParent[0].scrollTop)},parseInt(this.options.revert,10)||500,function(){i._clear(e)})}else this._clear(e,n);return!1}},cancel:function(){var e,n=this;if(this.dragging)for(this._mouseUp({target:null}),"original"==this.options.helper?this.currentItem.css(this._storedCSS).removeClass("ui-sortable-helper"):this.currentItem.show(),e=this.containers.length-1;e>=0;e--)this.containers[e]._trigger("deactivate",null,n._uiHash(this)),this.containers[e].containerCache.over&&(this.containers[e]._trigger("out",null,n._uiHash(this)),this.containers[e].containerCache.over=0);return this.placeholder&&(this.placeholder[0].parentNode&&this.placeholder[0].parentNode.removeChild(this.placeholder[0]),"original"!=this.options.helper&&this.helper&&this.helper[0].parentNode&&this.helper.remove(),t.extend(this,{helper:null,dragging:!1,reverting:!1,_noFinalSort:null}),this.domPosition.prev?t(this.domPosition.prev).after(this.currentItem):t(this.domPosition.parent).prepend(this.currentItem)),this},serialize:function(e){var n=this._getItemsAsjQuery(e&&e.connected),i=[];return e=e||{},t(n).each(function(){var n=(t(e.item||this).attr(e.attribute||"id")||"").match(e.expression||/(.+)[-=_](.+)/);n&&i.push((e.key||n[1]+"[]")+"="+(e.key&&e.expression?n[1]:n[2]))}),!i.length&&e.key&&i.push(e.key+"="),i.join("&")},toArray:function(e){var n=this._getItemsAsjQuery(e&&e.connected),i=[];return e=e||{},n.each(function(){i.push(t(e.item||this).attr(e.attribute||"id")||"")}),i},_intersectsWith:function(t){var e=this.positionAbs.left,n=e+this.helperProportions.width,i=this.positionAbs.top,r=i+this.helperProportions.height,o=t.left,s=o+t.width,a=t.top,l=a+t.height,u=this.offset.click.top,c=this.offset.click.left;return u=i+u>a&&i+uo&&e+ct[this.floating?"width":"height"]?u:o0?"down":"up")},_getDragHorizontalDirection:function(){var t=this.positionAbs.left-this.lastPositionAbs.left;return 0!=t&&(t>0?"right":"left")},refresh:function(t){return this._refreshItems(t),this.refreshPositions(),this},_connectWith:function(){var t=this.options;return t.connectWith.constructor==String?[t.connectWith]:t.connectWith},_getItemsAsjQuery:function(e){var n,i,r,o=[],s=[],a=this._connectWith();if(a&&e)for(e=a.length-1;e>=0;e--)for(n=t(a[e]),i=n.length-1;i>=0;i--)(r=t.data(n[i],"sortable"))&&r!=this&&!r.options.disabled&&s.push([t.isFunction(r.options.items)?r.options.items.call(r.element):t(r.options.items,r.element).not(".ui-sortable-helper").not(".ui-sortable-placeholder"),r]);for(s.push([t.isFunction(this.options.items)?this.options.items.call(this.element,null,{options:this.options,item:this.currentItem}):t(this.options.items,this.element).not(".ui-sortable-helper").not(".ui-sortable-placeholder"),this]),e=s.length-1;e>=0;e--)s[e][0].each(function(){o.push(this)});return t(o)},_removeCurrentsFromItems:function(){var t,e,n;for(t=this.currentItem.find(":data(sortable-item)"),e=0;e=0;o--)for(s=t(r[o]),a=s.length-1;a>=0;a--)(l=t.data(s[a],"sortable"))&&l!=this&&!l.options.disabled&&(i.push([t.isFunction(l.options.items)?l.options.items.call(l.element[0],e,{item:this.currentItem}):t(l.options.items,l.element),l]),this.containers.push(l));for(o=i.length-1;o>=0;o--)for(e=i[o][1],r=i[o][0],a=0,s=r.length;a=0;n--)i=this.items[n],r=this.options.toleranceElement?t(this.options.toleranceElement,i.item):i.item,e||(i.width=r.outerWidth(),i.height=r.outerHeight()),r=r.offset(),i.left=r.left,i.top=r.top;if(this.options.custom&&this.options.custom.refreshContainers)this.options.custom.refreshContainers.call(this);else for(n=this.containers.length-1;n>=0;n--)r=this.containers[n].element.offset(),this.containers[n].containerCache.left=r.left,this.containers[n].containerCache.top=r.top,this.containers[n].containerCache.width=this.containers[n].element.outerWidth(),this.containers[n].containerCache.height=this.containers[n].element.outerHeight();return this},_createPlaceholder:function(e){var n,i=e||this,r=i.options;r.placeholder&&r.placeholder.constructor!=String||(n=r.placeholder,r.placeholder={element:function(){var e=t(document.createElement(i.currentItem[0].nodeName)).addClass(n||i.currentItem[0].className+" ui-sortable-placeholder").removeClass("ui-sortable-helper")[0];return n||(e.style.visibility="hidden"),e},update:function(t,e){n&&!r.forcePlaceholderSize||(e.height()||e.height(i.currentItem.innerHeight()-parseInt(i.currentItem.css("paddingTop")||0,10)-parseInt(i.currentItem.css("paddingBottom")||0,10)),e.width()||e.width(i.currentItem.innerWidth()-parseInt(i.currentItem.css("paddingLeft")||0,10)-parseInt(i.currentItem.css("paddingRight")||0,10)))}}),i.placeholder=t(r.placeholder.element.call(i.element,i.currentItem)),i.currentItem.after(i.placeholder),r.placeholder.update(i,i.placeholder)},_contactContainers:function(e){var n,i,r,o,s,a;for(n=null,i=null,r=this.containers.length-1;r>=0;r--)t.ui.contains(this.currentItem[0],this.containers[r].element[0])||(this._intersectsWith(this.containers[r].containerCache)?n&&t.ui.contains(this.containers[r].element[0],n.element[0])||(n=this.containers[r],i=r):this.containers[r].containerCache.over&&(this.containers[r]._trigger("out",e,this._uiHash(this)),this.containers[r].containerCache.over=0));if(n)if(1===this.containers.length)this.containers[i]._trigger("over",e,this._uiHash(this)),this.containers[i].containerCache.over=1;else if(this.currentContainer!=this.containers[i]){for(n=1e4,r=null,o=this.positionAbs[this.containers[i].floating?"left":"top"],s=this.items.length-1;s>=0;s--)t.ui.contains(this.containers[i].element[0],this.items[s].item[0])&&(a=this.items[s][this.containers[i].floating?"left":"top"],Math.abs(a-o)this.containment[2]&&(n=this.containment[2]+this.offset.click.left),e.pageY-this.offset.click.top>this.containment[3]&&(i=this.containment[3]+this.offset.click.top)),r.grid&&(i=this.originalPageY+Math.round((i-this.originalPageY)/r.grid[1])*r.grid[1],i=this.containment&&(i-this.offset.click.topthis.containment[3])?i-this.offset.click.topthis.containment[2])?n-this.offset.click.left=0;r--)t.ui.contains(this.containers[r].element[0],this.currentItem[0])&&!n&&(i.push(function(t){return function(e){t._trigger("receive",e,this._uiHash(this))}}.call(this,this.containers[r])),i.push(function(t){return function(e){t._trigger("update",e,this._uiHash(this))}}.call(this,this.containers[r])));for(r=this.containers.length-1;r>=0;r--)n||i.push(function(t){return function(e){t._trigger("deactivate",e,this._uiHash(this))}}.call(this,this.containers[r])),this.containers[r].containerCache.over&&(i.push(function(t){return function(e){t._trigger("out",e,this._uiHash(this))}}.call(this,this.containers[r])),this.containers[r].containerCache.over=0);if(this._storedCursor&&t("body").css("cursor",this._storedCursor),this._storedOpacity&&this.helper.css("opacity",this._storedOpacity),this._storedZIndex&&this.helper.css("zIndex","auto"==this._storedZIndex?"":this._storedZIndex),this.dragging=!1,this.cancelHelperRemoval){if(!n){for(this._trigger("beforeStop",e,this._uiHash()),r=0;r"),n.values||(n.values=[this._valueMin(),this._valueMin()]),n.values.length&&2!==n.values.length&&(n.values=[n.values[0],n.values[0]])):this.range=t("
"),this.range.appendTo(this.element).addClass("ui-slider-range"),"min"!==n.range&&"max"!==n.range||this.range.addClass("ui-slider-range-"+n.range),this.range.addClass("ui-widget-header")),0===t(".ui-slider-handle",this.element).length&&t("").appendTo(this.element).addClass("ui-slider-handle"),n.values&&n.values.length)for(;t(".ui-slider-handle",this.element).length").appendTo(this.element).addClass("ui-slider-handle");this.handles=t(".ui-slider-handle",this.element).addClass("ui-state-default ui-corner-all"),this.handle=this.handles.eq(0),this.handles.add(this.range).filter("a").click(function(t){t.preventDefault()}).hover(function(){n.disabled||t(this).addClass("ui-state-hover")},function(){t(this).removeClass("ui-state-hover")}).focus(function(){n.disabled?t(this).blur():(t(".ui-slider .ui-state-focus").removeClass("ui-state-focus"),t(this).addClass("ui-state-focus"))}).blur(function(){t(this).removeClass("ui-state-focus")}),this.handles.each(function(e){t(this).data("index.ui-slider-handle",e)}),this.handles.keydown(function(n){var i,r,o,s=!0,a=t(this).data("index.ui-slider-handle");if(!e.options.disabled){switch(n.keyCode){case t.ui.keyCode.HOME:case t.ui.keyCode.END:case t.ui.keyCode.PAGE_UP:case t.ui.keyCode.PAGE_DOWN:case t.ui.keyCode.UP:case t.ui.keyCode.RIGHT:case t.ui.keyCode.DOWN:case t.ui.keyCode.LEFT:if(s=!1,!e._keySliding&&(e._keySliding=!0,t(this).addClass("ui-state-active"),!1===(i=e._start(n,a))))return}switch(o=e.options.step,i=r=e.options.values&&e.options.values.length?e.values(a):e.value(),n.keyCode){case t.ui.keyCode.HOME:r=e._valueMin();break;case t.ui.keyCode.END:r=e._valueMax();break;case t.ui.keyCode.PAGE_UP:r=e._trimAlignValue(i+(e._valueMax()-e._valueMin())/5);break;case t.ui.keyCode.PAGE_DOWN:r=e._trimAlignValue(i-(e._valueMax()-e._valueMin())/5);break;case t.ui.keyCode.UP:case t.ui.keyCode.RIGHT:if(i===e._valueMax())return;r=e._trimAlignValue(i+o);break;case t.ui.keyCode.DOWN:case t.ui.keyCode.LEFT:if(i===e._valueMin())return;r=e._trimAlignValue(i-o)}return e._slide(n,a,r),s}}).keyup(function(n){var i=t(this).data("index.ui-slider-handle");e._keySliding&&(e._keySliding=!1,e._stop(n,i),e._change(n,i), -t(this).removeClass("ui-state-active"))}),this._refreshValue(),this._animateOff=!1},destroy:function(){return this.handles.remove(),this.range.remove(),this.element.removeClass("ui-slider ui-slider-horizontal ui-slider-vertical ui-slider-disabled ui-widget ui-widget-content ui-corner-all").removeData("slider").unbind(".slider"),this._mouseDestroy(),this},_mouseCapture:function(e){var n,i,r,o,s,a=this.options;return!a.disabled&&(this.elementSize={width:this.element.outerWidth(),height:this.element.outerHeight()},this.elementOffset=this.element.offset(),n=this._normValueFromMouse({x:e.pageX,y:e.pageY}),i=this._valueMax()-this._valueMin()+1,o=this,this.handles.each(function(e){var a=Math.abs(n-o.values(e));i>a&&(i=a,r=t(this),s=e)}),!0===a.range&&this.values(1)===a.min&&(s+=1,r=t(this.handles[s])),!1!==this._start(e,s)&&(this._mouseSliding=!0,o._handleIndex=s,r.addClass("ui-state-active").focus(),a=r.offset(),this._clickOffset=t(e.target).parents().andSelf().is(".ui-slider-handle")?{left:e.pageX-a.left-r.width()/2,top:e.pageY-a.top-r.height()/2-(parseInt(r.css("borderTopWidth"),10)||0)-(parseInt(r.css("borderBottomWidth"),10)||0)+(parseInt(r.css("marginTop"),10)||0)}:{left:0,top:0},this.handles.hasClass("ui-state-hover")||this._slide(e,s,n),this._animateOff=!0))},_mouseStart:function(){return!0},_mouseDrag:function(t){var e=this._normValueFromMouse({x:t.pageX,y:t.pageY});return this._slide(t,this._handleIndex,e),!1},_mouseStop:function(t){return this.handles.removeClass("ui-state-active"),this._mouseSliding=!1,this._stop(t,this._handleIndex),this._change(t,this._handleIndex),this._clickOffset=this._handleIndex=null,this._animateOff=!1},_detectOrientation:function(){this.orientation="vertical"===this.options.orientation?"vertical":"horizontal"},_normValueFromMouse:function(t){var e;return"horizontal"===this.orientation?(e=this.elementSize.width,t=t.x-this.elementOffset.left-(this._clickOffset?this._clickOffset.left:0)):(e=this.elementSize.height,t=t.y-this.elementOffset.top-(this._clickOffset?this._clickOffset.top:0)),e=t/e,e>1&&(e=1),e<0&&(e=0),"vertical"===this.orientation&&(e=1-e),t=this._valueMax()-this._valueMin(),this._trimAlignValue(this._valueMin()+e*t)},_start:function(t,e){var n={handle:this.handles[e],value:this.value()};return this.options.values&&this.options.values.length&&(n.value=this.values(e),n.values=this.values()),this._trigger("start",t,n)},_slide:function(t,e,n){var i;this.options.values&&this.options.values.length?(i=this.values(e?0:1),2===this.options.values.length&&!0===this.options.range&&(0===e&&n>i||1===e&&n1&&(this.options.values[e]=this._trimAlignValue(n),this._refreshValue(),this._change(null,e)),!arguments.length)return this._values();if(!t.isArray(arguments[0]))return this.options.values&&this.options.values.length?this._values(e):this.value();for(i=this.options.values,r=arguments[0],o=0;o=this._valueMax()?this._valueMax():(e=this.options.step>0?this.options.step:1,n=(t-this._valueMin())%e,i=t-n,2*Math.abs(n)>=e&&(i+=n>0?e:-e),parseFloat(i.toFixed(5)))},_valueMin:function(){return this.options.min},_valueMax:function(){return this.options.max},_refreshValue:function(){var e,n,i,r,o,s=this.options.range,a=this.options,l=this,u=!this._animateOff&&a.animate,c={};this.options.values&&this.options.values.length?this.handles.each(function(i){e=(l.values(i)-l._valueMin())/(l._valueMax()-l._valueMin())*100,c["horizontal"===l.orientation?"left":"bottom"]=e+"%",t(this).stop(1,1)[u?"animate":"css"](c,a.animate),!0===l.options.range&&("horizontal"===l.orientation?(0===i&&l.range.stop(1,1)[u?"animate":"css"]({left:e+"%"},a.animate),1===i&&l.range[u?"animate":"css"]({width:e-n+"%"},{queue:!1,duration:a.animate})):(0===i&&l.range.stop(1,1)[u?"animate":"css"]({bottom:e+"%"},a.animate),1===i&&l.range[u?"animate":"css"]({height:e-n+"%"},{queue:!1,duration:a.animate}))),n=e}):(i=this.value(),r=this._valueMin(),o=this._valueMax(),e=o!==r?(i-r)/(o-r)*100:0, -c["horizontal"===l.orientation?"left":"bottom"]=e+"%",this.handle.stop(1,1)[u?"animate":"css"](c,a.animate),"min"===s&&"horizontal"===this.orientation&&this.range.stop(1,1)[u?"animate":"css"]({width:e+"%"},a.animate),"max"===s&&"horizontal"===this.orientation&&this.range[u?"animate":"css"]({width:100-e+"%"},{queue:!1,duration:a.animate}),"min"===s&&"vertical"===this.orientation&&this.range.stop(1,1)[u?"animate":"css"]({height:e+"%"},a.animate),"max"===s&&"vertical"===this.orientation&&this.range[u?"animate":"css"]({height:100-e+"%"},{queue:!1,duration:a.animate}))}}),t.extend(t.ui.slider,{version:"1.8.11"})}(jQuery),function(d,A){function K(){this.debug=!1,this._curInst=null,this._keyEvent=!1,this._disabledInputs=[],this._inDialog=this._datepickerShowing=!1,this._mainDivId="ui-datepicker-div",this._inlineClass="ui-datepicker-inline",this._appendClass="ui-datepicker-append",this._triggerClass="ui-datepicker-trigger",this._dialogClass="ui-datepicker-dialog",this._disableClass="ui-datepicker-disabled",this._unselectableClass="ui-datepicker-unselectable",this._currentClass="ui-datepicker-current-day",this._dayOverClass="ui-datepicker-days-cell-over",this.regional=[],this.regional[""]={closeText:"Done",prevText:"Prev",nextText:"Next",currentText:"Today",monthNames:["January","February","March","April","May","June","July","August","September","October","November","December"],monthNamesShort:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],dayNames:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],dayNamesShort:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],dayNamesMin:["Su","Mo","Tu","We","Th","Fr","Sa"],weekHeader:"Wk",dateFormat:"mm/dd/yy",firstDay:0,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""},this._defaults={showOn:"focus",showAnim:"fadeIn",showOptions:{},defaultDate:null,appendText:"",buttonText:"...",buttonImage:"",buttonImageOnly:!1,hideIfNoPrevNext:!1,navigationAsDateFormat:!1,gotoCurrent:!1,changeMonth:!1,changeYear:!1,yearRange:"c-10:c+10",showOtherMonths:!1,selectOtherMonths:!1,showWeek:!1,calculateWeek:this.iso8601Week,shortYearCutoff:"+10",minDate:null,maxDate:null,duration:"fast",beforeShowDay:null,beforeShow:null,onSelect:null,onChangeMonthYear:null,onClose:null,numberOfMonths:1,showCurrentAtPos:0,stepMonths:1,stepBigMonths:12,altField:"",altFormat:"",constrainInput:!0,showButtonPanel:!1,autoSize:!1},d.extend(this._defaults,this.regional[""]),this.dpDiv=d('
')}function F(t,e){d.extend(t,e);for(var n in e)null!=e[n]&&e[n]!=A||(t[n]=e[n]);return t}d.extend(d.ui,{datepicker:{version:"1.8.11"}});var y=(new Date).getTime();d.extend(K.prototype,{markerClassName:"hasDatepicker",log:function(){this.debug&&console.log.apply("",arguments)},_widgetDatepicker:function(){return this.dpDiv},setDefaults:function(t){return F(this._defaults,t||{}),this},_attachDatepicker:function(a,b){var e,f,i,c=null;for(e in this._defaults)if(f=a.getAttribute("date:"+e)){c=c||{} -;try{c[e]=eval(f)}catch(t){c[e]=f}}e=a.nodeName.toLowerCase(),f="div"==e||"span"==e,a.id||(this.uuid+=1,a.id="dp"+this.uuid),i=this._newInst(d(a),f),i.settings=d.extend({},b||{},c||{}),"input"==e?this._connectDatepicker(a,i):f&&this._inlineDatepicker(a,i)},_newInst:function(t,e){return{id:t[0].id.replace(/([^A-Za-z0-9_-])/g,"\\\\$1"),input:t,selectedDay:0,selectedMonth:0,selectedYear:0,drawMonth:0,drawYear:0,inline:e,dpDiv:e?d('
'):this.dpDiv}},_connectDatepicker:function(t,e){var n=d(t);e.append=d([]),e.trigger=d([]),n.hasClass(this.markerClassName)||(this._attachments(n,e),n.addClass(this.markerClassName).keydown(this._doKeyDown).keypress(this._doKeyPress).keyup(this._doKeyUp).bind("setData.datepicker",function(t,n,i){e.settings[n]=i}).bind("getData.datepicker",function(t,n){return this._get(e,n)}),this._autoSize(e),d.data(t,"datepicker",e))},_attachments:function(t,e){var n,i=this._get(e,"appendText"),r=this._get(e,"isRTL");e.append&&e.append.remove(),i&&(e.append=d(''+i+""),t[r?"before":"after"](e.append)),t.unbind("focus",this._showDatepicker),e.trigger&&e.trigger.remove(),i=this._get(e,"showOn"),"focus"!=i&&"both"!=i||t.focus(this._showDatepicker),"button"!=i&&"both"!=i||(i=this._get(e,"buttonText"),n=this._get(e,"buttonImage"),e.trigger=d(this._get(e,"buttonImageOnly")?d("").addClass(this._triggerClass).attr({src:n,alt:i,title:i}):d('').addClass(this._triggerClass).html(""==n?i:d("").attr({src:n,alt:i,title:i}))),t[r?"before":"after"](e.trigger),e.trigger.click(function(){return d.datepicker._datepickerShowing&&d.datepicker._lastInput==t[0]?d.datepicker._hideDatepicker():d.datepicker._showDatepicker(t[0]),!1}))},_autoSize:function(t){var e,n,i;this._get(t,"autoSize")&&!t.inline&&(e=new Date(2009,11,20),n=this._get(t,"dateFormat"),n.match(/[DM]/)&&(i=function(t){for(var e=0,n=0,i=0;ie&&(e=t[i].length,n=i);return n},e.setMonth(i(this._get(t,n.match(/MM/)?"monthNames":"monthNamesShort"))),e.setDate(i(this._get(t,n.match(/DD/)?"dayNames":"dayNamesShort"))+20-e.getDay())),t.input.attr("size",this._formatDate(t,e).length))},_inlineDatepicker:function(t,e){var n=d(t);n.hasClass(this.markerClassName)||(n.addClass(this.markerClassName).append(e.dpDiv).bind("setData.datepicker",function(t,n,i){e.settings[n]=i}).bind("getData.datepicker",function(t,n){return this._get(e,n)}),d.data(t,"datepicker",e),this._setDate(e,this._getDefaultDate(e),!0),this._updateDatepicker(e),this._updateAlternate(e),e.dpDiv.show())},_dialogDatepicker:function(t,e,n,i,r){return t=this._dialogInst,t||(this.uuid+=1,this._dialogInput=d(''),this._dialogInput.keydown(this._doKeyDown),d("body").append(this._dialogInput),t=this._dialogInst=this._newInst(this._dialogInput,!1),t.settings={}, -d.data(this._dialogInput[0],"datepicker",t)),F(t.settings,i||{}),e=e&&e.constructor==Date?this._formatDate(t,e):e,this._dialogInput.val(e),this._pos=r?r.length?r:[r.pageX,r.pageY]:null,this._pos||(this._pos=[document.documentElement.clientWidth/2-100+(document.documentElement.scrollLeft||document.body.scrollLeft),document.documentElement.clientHeight/2-150+(document.documentElement.scrollTop||document.body.scrollTop)]),this._dialogInput.css("left",this._pos[0]+20+"px").css("top",this._pos[1]+"px"),t.settings.onSelect=n,this._inDialog=!0,this.dpDiv.addClass(this._dialogClass),this._showDatepicker(this._dialogInput[0]),d.blockUI&&d.blockUI(this.dpDiv),d.data(this._dialogInput[0],"datepicker",t),this},_destroyDatepicker:function(t){var e,n=d(t),i=d.data(t,"datepicker");n.hasClass(this.markerClassName)&&(e=t.nodeName.toLowerCase(),d.removeData(t,"datepicker"),"input"==e?(i.append.remove(),i.trigger.remove(),n.removeClass(this.markerClassName).unbind("focus",this._showDatepicker).unbind("keydown",this._doKeyDown).unbind("keypress",this._doKeyPress).unbind("keyup",this._doKeyUp)):"div"!=e&&"span"!=e||n.removeClass(this.markerClassName).empty())},_enableDatepicker:function(t){var e,n=d(t),i=d.data(t,"datepicker");n.hasClass(this.markerClassName)&&(e=t.nodeName.toLowerCase(),"input"==e?(t.disabled=!1,i.trigger.filter("button").each(function(){this.disabled=!1}).end().filter("img").css({opacity:"1.0",cursor:""})):"div"!=e&&"span"!=e||n.children("."+this._inlineClass).children().removeClass("ui-state-disabled"),this._disabledInputs=d.map(this._disabledInputs,function(e){return e==t?null:e}))},_disableDatepicker:function(t){var e,n=d(t),i=d.data(t,"datepicker");n.hasClass(this.markerClassName)&&(e=t.nodeName.toLowerCase(),"input"==e?(t.disabled=!0,i.trigger.filter("button").each(function(){this.disabled=!0}).end().filter("img").css({opacity:"0.5",cursor:"default"})):"div"!=e&&"span"!=e||n.children("."+this._inlineClass).children().addClass("ui-state-disabled"),this._disabledInputs=d.map(this._disabledInputs,function(e){return e==t?null:e}),this._disabledInputs[this._disabledInputs.length]=t)},_isDisabledDatepicker:function(t){if(!t)return!1;for(var e=0;e-1},_doKeyUp:function(t){if(t=d.datepicker._getInst(t.target),t.input.val()!=t.lastVal)try{d.datepicker.parseDate(d.datepicker._get(t,"dateFormat"),t.input?t.input.val():null,d.datepicker._getFormatConfig(t))&&(d.datepicker._setDateFromField(t),d.datepicker._updateAlternate(t),d.datepicker._updateDatepicker(t))}catch(t){d.datepicker.log(t)}return!0},_showDatepicker:function(t){var e,n,i,r,o;t=t.target||t,"input"!=t.nodeName.toLowerCase()&&(t=d("input",t.parentNode)[0]),d.datepicker._isDisabledDatepicker(t)||d.datepicker._lastInput==t||(e=d.datepicker._getInst(t), -d.datepicker._curInst&&d.datepicker._curInst!=e&&d.datepicker._curInst.dpDiv.stop(!0,!0),n=d.datepicker._get(e,"beforeShow"),F(e.settings,n?n.apply(t,[t,e]):{}),e.lastVal=null,d.datepicker._lastInput=t,d.datepicker._setDateFromField(e),d.datepicker._inDialog&&(t.value=""),d.datepicker._pos||(d.datepicker._pos=d.datepicker._findPos(t),d.datepicker._pos[1]+=t.offsetHeight),i=!1,d(t).parents().each(function(){return!(i|="fixed"==d(this).css("position"))}),i&&d.browser.opera&&(d.datepicker._pos[0]-=document.documentElement.scrollLeft,d.datepicker._pos[1]-=document.documentElement.scrollTop),n={left:d.datepicker._pos[0],top:d.datepicker._pos[1]},d.datepicker._pos=null,e.dpDiv.empty(),e.dpDiv.css({position:"absolute",display:"block",top:"-1000px"}),d.datepicker._updateDatepicker(e),n=d.datepicker._checkOffset(e,n,i),e.dpDiv.css({position:d.datepicker._inDialog&&d.blockUI?"static":i?"fixed":"absolute",display:"none",left:n.left+"px",top:n.top+"px"}),e.inline||(n=d.datepicker._get(e,"showAnim"),r=d.datepicker._get(e,"duration"),o=function(){var t,n;d.datepicker._datepickerShowing=!0,t=e.dpDiv.find("iframe.ui-datepicker-cover"),t.length&&(n=d.datepicker._getBorders(e.dpDiv),t.css({left:-n[0],top:-n[1],width:e.dpDiv.outerWidth(),height:e.dpDiv.outerHeight()}))},e.dpDiv.zIndex(d(t).zIndex()+1),d.effects&&d.effects[n]?e.dpDiv.show(n,d.datepicker._get(e,"showOptions"),r,o):e.dpDiv[n||"show"](n?r:null,o),n&&r||o(),e.input.is(":visible")&&!e.input.is(":disabled")&&e.input.focus(),d.datepicker._curInst=e))},_updateDatepicker:function(t){var e,n,i=this,r=d.datepicker._getBorders(t.dpDiv);t.dpDiv.empty().append(this._generateHTML(t)),e=t.dpDiv.find("iframe.ui-datepicker-cover"),e.length&&e.css({left:-r[0],top:-r[1],width:t.dpDiv.outerWidth(),height:t.dpDiv.outerHeight()}),t.dpDiv.find("button, .ui-datepicker-prev, .ui-datepicker-next, .ui-datepicker-calendar td a").bind("mouseout",function(){d(this).removeClass("ui-state-hover"),-1!=this.className.indexOf("ui-datepicker-prev")&&d(this).removeClass("ui-datepicker-prev-hover"),-1!=this.className.indexOf("ui-datepicker-next")&&d(this).removeClass("ui-datepicker-next-hover")}).bind("mouseover",function(){i._isDisabledDatepicker(t.inline?t.dpDiv.parent()[0]:t.input[0])||(d(this).parents(".ui-datepicker-calendar").find("a").removeClass("ui-state-hover"),d(this).addClass("ui-state-hover"),-1!=this.className.indexOf("ui-datepicker-prev")&&d(this).addClass("ui-datepicker-prev-hover"),-1!=this.className.indexOf("ui-datepicker-next")&&d(this).addClass("ui-datepicker-next-hover"))}).end().find("."+this._dayOverClass+" a").trigger("mouseover").end(),r=this._getNumberOfMonths(t),e=r[1],e>1?t.dpDiv.addClass("ui-datepicker-multi-"+e).css("width",17*e+"em"):t.dpDiv.removeClass("ui-datepicker-multi-2 ui-datepicker-multi-3 ui-datepicker-multi-4").width(""),t.dpDiv[(1!=r[0]||1!=r[1]?"add":"remove")+"Class"]("ui-datepicker-multi"),t.dpDiv[(this._get(t,"isRTL")?"add":"remove")+"Class"]("ui-datepicker-rtl"), -t==d.datepicker._curInst&&d.datepicker._datepickerShowing&&t.input&&t.input.is(":visible")&&!t.input.is(":disabled")&&t.input[0]!=document.activeElement&&t.input.focus(),t.yearshtml&&(n=t.yearshtml,setTimeout(function(){n===t.yearshtml&&t.dpDiv.find("select.ui-datepicker-year:first").replaceWith(t.yearshtml),n=t.yearshtml=null},0))},_getBorders:function(t){var e=function(t){return{thin:1,medium:2,thick:3}[t]||t};return[parseFloat(e(t.css("border-left-width"))),parseFloat(e(t.css("border-top-width")))]},_checkOffset:function(t,e,n){var i=t.dpDiv.outerWidth(),r=t.dpDiv.outerHeight(),o=t.input?t.input.outerWidth():0,s=t.input?t.input.outerHeight():0,a=document.documentElement.clientWidth+d(document).scrollLeft(),l=document.documentElement.clientHeight+d(document).scrollTop();return e.left-=this._get(t,"isRTL")?i-o:0,e.left-=n&&e.left==t.input.offset().left?d(document).scrollLeft():0,e.top-=n&&e.top==t.input.offset().top+s?d(document).scrollTop():0,e.left-=Math.min(e.left,e.left+i>a&&a>i?Math.abs(e.left+i-a):0),e.top-=Math.min(e.top,e.top+r>l&&l>r?Math.abs(r+s):0),e},_findPos:function(t){for(var e=this._get(this._getInst(t),"isRTL");t&&("hidden"==t.type||1!=t.nodeType||d.expr.filters.hidden(t));)t=t[e?"previousSibling":"nextSibling"];return t=d(t).offset(),[t.left,t.top]},_hideDatepicker:function(t){var e,n,i=this._curInst;!i||t&&i!=d.data(t,"datepicker")||this._datepickerShowing&&(t=this._get(i,"showAnim"),e=this._get(i,"duration"),n=function(){d.datepicker._tidyDialog(i),this._curInst=null},d.effects&&d.effects[t]?i.dpDiv.hide(t,d.datepicker._get(i,"showOptions"),e,n):i.dpDiv["slideDown"==t?"slideUp":"fadeIn"==t?"fadeOut":"hide"](t?e:null,n),t||n(),(t=this._get(i,"onClose"))&&t.apply(i.input?i.input[0]:null,[i.input?i.input.val():"",i]),this._datepickerShowing=!1,this._lastInput=null,this._inDialog&&(this._dialogInput.css({position:"absolute",left:"0",top:"-100px"}),d.blockUI&&(d.unblockUI(),d("body").append(this.dpDiv))),this._inDialog=!1)},_tidyDialog:function(t){t.dpDiv.removeClass(this._dialogClass).unbind(".ui-datepicker-calendar")},_checkExternalClick:function(t){d.datepicker._curInst&&(t=d(t.target),t[0].id!=d.datepicker._mainDivId&&0==t.parents("#"+d.datepicker._mainDivId).length&&!t.hasClass(d.datepicker.markerClassName)&&!t.hasClass(d.datepicker._triggerClass)&&d.datepicker._datepickerShowing&&!(d.datepicker._inDialog&&d.blockUI)&&d.datepicker._hideDatepicker())},_adjustDate:function(t,e,n){t=d(t);var i=this._getInst(t[0]);this._isDisabledDatepicker(t[0])||(this._adjustInstDate(i,e+("M"==n?this._get(i,"showCurrentAtPos"):0),n),this._updateDatepicker(i))},_gotoToday:function(t){var e,n;t=d(t),e=this._getInst(t[0]),this._get(e,"gotoCurrent")&&e.currentDay?(e.selectedDay=e.currentDay,e.drawMonth=e.selectedMonth=e.currentMonth,e.drawYear=e.selectedYear=e.currentYear):(n=new Date,e.selectedDay=n.getDate(),e.drawMonth=e.selectedMonth=n.getMonth(),e.drawYear=e.selectedYear=n.getFullYear()),this._notifyChange(e),this._adjustDate(t)},_selectMonthYear:function(t,e,n){t=d(t);var i=this._getInst(t[0]) -;i._selectingMonthYear=!1,i["selected"+("M"==n?"Month":"Year")]=i["draw"+("M"==n?"Month":"Year")]=parseInt(e.options[e.selectedIndex].value,10),this._notifyChange(i),this._adjustDate(t)},_clickMonthYear:function(t){var e=this._getInst(d(t)[0]);e.input&&e._selectingMonthYear&&setTimeout(function(){e.input.focus()},0),e._selectingMonthYear=!e._selectingMonthYear},_selectDay:function(t,e,n,i){var r=d(t);d(i).hasClass(this._unselectableClass)||this._isDisabledDatepicker(r[0])||(r=this._getInst(r[0]),r.selectedDay=r.currentDay=d("a",i).html(),r.selectedMonth=r.currentMonth=e,r.selectedYear=r.currentYear=n,this._selectDate(t,this._formatDate(r,r.currentDay,r.currentMonth,r.currentYear)))},_clearDate:function(t){t=d(t),this._getInst(t[0]),this._selectDate(t,"")},_selectDate:function(t,e){t=this._getInst(d(t)[0]),e=null!=e?e:this._formatDate(t),t.input&&t.input.val(e),this._updateAlternate(t);var n=this._get(t,"onSelect");n?n.apply(t.input?t.input[0]:null,[e,t]):t.input&&t.input.trigger("change"),t.inline?this._updateDatepicker(t):(this._hideDatepicker(),this._lastInput=t.input[0],"object"!=typeof t.input[0]&&t.input.focus(),this._lastInput=null)},_updateAlternate:function(t){var e,n,i,r=this._get(t,"altField");r&&(e=this._get(t,"altFormat")||this._get(t,"dateFormat"),n=this._getDate(t),i=this.formatDate(e,n,this._getFormatConfig(t)),d(r).each(function(){d(this).val(i)}))},noWeekends:function(t){return t=t.getDay(),[t>0&&t<6,""]},iso8601Week:function(t){t=new Date(t.getTime()),t.setDate(t.getDate()+4-(t.getDay()||7));var e=t.getTime();return t.setMonth(0),t.setDate(1),Math.floor(Math.round((e-t)/864e5)/7)+1},parseDate:function(t,e,n){var i,r,o,s,a,l,u,c,h,f,d,p,g,m,y,v;if(null==t||null==e)throw"Invalid arguments";if(""==(e="object"==typeof e?""+e:e+""))return null;for(i=(n?n.shortYearCutoff:null)||this._defaults.shortYearCutoff,i="string"!=typeof i?i:(new Date).getFullYear()%100+parseInt(i,10),r=(n?n.dayNamesShort:null)||this._defaults.dayNamesShort,o=(n?n.dayNames:null)||this._defaults.dayNames,s=(n?n.monthNamesShort:null)||this._defaults.monthNamesShort,a=(n?n.monthNames:null)||this._defaults.monthNames,l=n=-1,u=-1,c=-1,h=!1,f=function(e){return(e=y+1-1)for(l=1,u=c;;){if(i=this._getDaysInMonth(n,l-1),u<=i)break;l++,u-=i}if(v=this._daylightSavingAdjust(new Date(n,l-1,u)),v.getFullYear()!=n||v.getMonth()+1!=l||v.getDate()!=u)throw"Invalid date";return v},ATOM:"yy-mm-dd",COOKIE:"D, dd M yy",ISO_8601:"yy-mm-dd",RFC_822:"D, d M y",RFC_850:"DD, dd-M-y",RFC_1036:"D, d M y",RFC_1123:"D, d M yy",RFC_2822:"D, d M yy",RSS:"D, d M y",TICKS:"!",TIMESTAMP:"@",W3C:"yy-mm-dd",_ticksTo1970:24*(718685+Math.floor(492.5)-Math.floor(19.7)+Math.floor(4.925))*60*60*1e7,formatDate:function(t,e,n){var i,r,o,s,a,l,u,c,h;if(!e)return"";if(i=(n?n.dayNamesShort:null)||this._defaults.dayNamesShort,r=(n?n.dayNames:null)||this._defaults.dayNames,o=(n?n.monthNamesShort:null)||this._defaults.monthNamesShort,n=(n?n.monthNames:null)||this._defaults.monthNames,s=function(e){return(e=h+112?t.getHours()+2:0),t):null},_setDate:function(t,e,n){var i=!e,r=t.selectedMonth,o=t.selectedYear;e=this._restrictMinMax(t,this._determineDate(t,e,new Date)),t.selectedDay=t.currentDay=e.getDate(),t.drawMonth=t.selectedMonth=t.currentMonth=e.getMonth(),t.drawYear=t.selectedYear=t.currentYear=e.getFullYear(),r==t.selectedMonth&&o==t.selectedYear||n||this._notifyChange(t),this._adjustInstDate(t),t.input&&t.input.val(i?"":this._formatDate(t))},_getDate:function(t){return!t.currentYear||t.input&&""==t.input.val()?null:this._daylightSavingAdjust(new Date(t.currentYear,t.currentMonth,t.currentDay))},_generateHTML:function(t){var e,n,i,r,o,s,a,l,u,c,h,f,p,g,m,v,b,_,w,x,k,S,M,D,T,C,P,O,E,N,L,A,I,j,F,H=new Date;if(H=this._daylightSavingAdjust(new Date(H.getFullYear(),H.getMonth(),H.getDate())),e=this._get(t,"isRTL"),n=this._get(t,"showButtonPanel"),i=this._get(t,"hideIfNoPrevNext"),r=this._get(t,"navigationAsDateFormat"),o=this._getNumberOfMonths(t),s=this._get(t,"showCurrentAtPos"),a=this._get(t,"stepMonths"),l=1!=o[0]||1!=o[1],u=this._daylightSavingAdjust(t.currentDay?new Date(t.currentYear,t.currentMonth,t.currentDay):new Date(9999,9,9)),c=this._getMinMaxDate(t,"min"),h=this._getMinMaxDate(t,"max"),s=t.drawMonth-s,f=t.drawYear,s<0&&(s+=12,f--),h)for(p=this._daylightSavingAdjust(new Date(h.getFullYear(),h.getMonth()-o[0]*o[1]+1,h.getDate())),p=c&&pp;)--s<0&&(s=11,f--);for(t.drawMonth=s,t.drawYear=f,p=this._get(t,"prevText"),p=r?this.formatDate(p,this._daylightSavingAdjust(new Date(f,s-a,1)),this._getFormatConfig(t)):p,p=this._canAdjustMonth(t,-1,f,s)?''+p+"":i?"":''+p+"",g=this._get(t,"nextText"),g=r?this.formatDate(g,this._daylightSavingAdjust(new Date(f,s+a,1)),this._getFormatConfig(t)):g, -i=this._canAdjustMonth(t,1,f,s)?''+g+"":i?"":''+g+"",a=this._get(t,"currentText"),g=this._get(t,"gotoCurrent")&&t.currentDay?u:H,a=r?this.formatDate(a,g,this._getFormatConfig(t)):a,r=t.inline?"":'",n=n?'
'+(e?r:"")+(this._isInRange(t,g)?'":"")+(e?"":r)+"
":"",r=parseInt(this._get(t,"firstDay"),10),r=isNaN(r)?0:r,a=this._get(t,"showWeek"),g=this._get(t,"dayNames"),this._get(t,"dayNamesShort"),m=this._get(t,"dayNamesMin"),v=this._get(t,"monthNames"),b=this._get(t,"monthNamesShort"),_=this._get(t,"beforeShowDay"),w=this._get(t,"showOtherMonths"),x=this._get(t,"selectOtherMonths"),this._get(t,"calculateWeek"),k=this._getDefaultDate(t),S="",M=0;M1)switch(T){case 0:O+=" ui-datepicker-group-first",P=" ui-corner-"+(e?"right":"left");break;case o[1]-1:O+=" ui-datepicker-group-last",P=" ui-corner-"+(e?"left":"right");break;default:O+=" ui-datepicker-group-middle",P=""}O+='">'}for(O+='
'+(/all|left/.test(P)&&0==M?e?i:p:"")+(/all|right/.test(P)&&0==M?e?p:i:"")+this._generateMonthYearHeader(t,s,f,c,h,M>0||T>0,v,b)+'
',E=a?'":"",P=0;P<7;P++)N=(P+r)%7,E+="=5?' class="ui-datepicker-week-end"':"")+'>'+m[N]+"";for(O+=E+"",E=this._getDaysInMonth(f,s),f==t.selectedYear&&s==t.selectedMonth&&(t.selectedDay=Math.min(t.selectedDay,E)),P=(this._getFirstDayOfMonth(f,s)-r+7)%7,E=l?6:Math.ceil((P+E)/7),N=this._daylightSavingAdjust(new Date(f,s,1-P)),L=0;L",A=a?'":"",P=0;P<7;P++)I=_?_.apply(t.input?t.input[0]:null,[N]):[!0,""],j=N.getMonth()!=s,F=j&&!x||!I[0]||c&&Nh, -A+='",N.setDate(N.getDate()+1),N=this._daylightSavingAdjust(N);O+=A+""}s++,s>11&&(s=0,f++),O+="
'+this._get(t,"weekHeader")+"
'+this._get(t,"calculateWeek")(N)+""+(j&&!w?" ":F?''+N.getDate()+"":''+N.getDate()+"")+"
"+(l?""+(o[0]>0&&T==o[1]-1?'
':""):""),D+=O}S+=D}return S+=n+(d.browser.msie&&parseInt(d.browser.version,10)<7&&!t.inline?'':""),t._keyEvent=!1,S},_generateMonthYearHeader:function(t,e,n,i,r,o,s,a){var l,u,c,h=this._get(t,"changeMonth"),f=this._get(t,"changeYear"),p=this._get(t,"showMonthAfterYear"),g='
',m="";if(o||!h)m+=''+s[e]+"";else{for(s=i&&i.getFullYear()==n,l=r&&r.getFullYear()==n,m+='"}if(p||(g+=m+(!o&&h&&f?"":" ")),t.yearshtml="",o||!f)g+=''+n+"";else{for(a=this._get(t,"yearRange").split(":"),c=(new Date).getFullYear(),s=function(t){return t=t.match(/c[+-].*/)?n+parseInt(t.substring(1),10):t.match(/[+-].*/)?c+parseInt(t,10):parseInt(t,10),isNaN(t)?c:t},e=s(a[0]),a=Math.max(e,s(a[1]||"")),e=i?Math.max(e,i.getFullYear()):e,a=r?Math.min(a,r.getFullYear()):a,t.yearshtml+='",d.browser.mozilla?g+='":(g+=t.yearshtml,t.yearshtml=null)}return g+=this._get(t,"yearSuffix"),p&&(g+=(!o&&h&&f?"":" ")+m),g+="
"},_adjustInstDate:function(t,e,n){var i=t.drawYear+("Y"==n?e:0),r=t.drawMonth+("M"==n?e:0);e=Math.min(t.selectedDay,this._getDaysInMonth(i,r))+("D"==n?e:0), -i=this._restrictMinMax(t,this._daylightSavingAdjust(new Date(i,r,e))),t.selectedDay=i.getDate(),t.drawMonth=t.selectedMonth=i.getMonth(),t.drawYear=t.selectedYear=i.getFullYear(),"M"!=n&&"Y"!=n||this._notifyChange(t)},_restrictMinMax:function(t,e){var n=this._getMinMaxDate(t,"min");return t=this._getMinMaxDate(t,"max"),e=n&&et?t:e},_notifyChange:function(t){var e=this._get(t,"onChangeMonthYear");e&&e.apply(t.input?t.input[0]:null,[t.selectedYear,t.selectedMonth+1,t])},_getNumberOfMonths:function(t){return t=this._get(t,"numberOfMonths"),null==t?[1,1]:"number"==typeof t?[1,t]:t},_getMinMaxDate:function(t,e){return this._determineDate(t,this._get(t,e+"Date"),null)},_getDaysInMonth:function(t,e){return 32-this._daylightSavingAdjust(new Date(t,e,32)).getDate()},_getFirstDayOfMonth:function(t,e){return new Date(t,e,1).getDay()},_canAdjustMonth:function(t,e,n,i){var r=this._getNumberOfMonths(t);return n=this._daylightSavingAdjust(new Date(n,i+(e<0?e:r[0]*r[1]),1)),e<0&&n.setDate(this._getDaysInMonth(n.getFullYear(),n.getMonth())),this._isInRange(t,n)},_isInRange:function(t,e){var n=this._getMinMaxDate(t,"min");return t=this._getMinMaxDate(t,"max"),(!n||e.getTime()>=n.getTime())&&(!t||e.getTime()<=t.getTime())},_getFormatConfig:function(t){var e=this._get(t,"shortYearCutoff");return e="string"!=typeof e?e:(new Date).getFullYear()%100+parseInt(e,10),{shortYearCutoff:e,dayNamesShort:this._get(t,"dayNamesShort"),dayNames:this._get(t,"dayNames"),monthNamesShort:this._get(t,"monthNamesShort"),monthNames:this._get(t,"monthNames")}},_formatDate:function(t,e,n,i){return e||(t.currentDay=t.selectedDay,t.currentMonth=t.selectedMonth,t.currentYear=t.selectedYear),e=e?"object"==typeof e?e:this._daylightSavingAdjust(new Date(i,n,e)):this._daylightSavingAdjust(new Date(t.currentYear,t.currentMonth,t.currentDay)),this.formatDate(this._get(t,"dateFormat"),e,this._getFormatConfig(t))}}),d.fn.datepicker=function(t){if(!this.length)return this;d.datepicker.initialized||(d(document).mousedown(d.datepicker._checkExternalClick).find("body").append(d.datepicker.dpDiv),d.datepicker.initialized=!0);var e=Array.prototype.slice.call(arguments,1);return"string"!=typeof t||"isDisabled"!=t&&"getDate"!=t&&"widget"!=t?"option"==t&&2==arguments.length&&"string"==typeof arguments[1]?d.datepicker["_"+t+"Datepicker"].apply(d.datepicker,[this[0]].concat(e)):this.each(function(){"string"==typeof t?d.datepicker["_"+t+"Datepicker"].apply(d.datepicker,[this].concat(e)):d.datepicker._attachDatepicker(this,t)}):d.datepicker["_"+t+"Datepicker"].apply(d.datepicker,[this[0]].concat(e))},d.datepicker=new K,d.datepicker.initialized=!1,d.datepicker.uuid=(new Date).getTime(),d.datepicker.version="1.8.11",window["DP_jQuery_"+y]=d}(jQuery),jQuery.effects||function(t,e){function n(e){var n -;return e&&e.constructor==Array&&3==e.length?e:(n=/rgb\(\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*\)/.exec(e))?[parseInt(n[1],10),parseInt(n[2],10),parseInt(n[3],10)]:(n=/rgb\(\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*\)/.exec(e))?[2.55*parseFloat(n[1]),2.55*parseFloat(n[2]),2.55*parseFloat(n[3])]:(n=/#([a-fA-F0-9]{2})([a-fA-F0-9]{2})([a-fA-F0-9]{2})/.exec(e))?[parseInt(n[1],16),parseInt(n[2],16),parseInt(n[3],16)]:(n=/#([a-fA-F0-9])([a-fA-F0-9])([a-fA-F0-9])/.exec(e))?[parseInt(n[1]+n[1],16),parseInt(n[2]+n[2],16),parseInt(n[3]+n[3],16)]:/rgba\(0, 0, 0, 0\)/.exec(e)?u.transparent:u[t.trim(e).toLowerCase()]}function i(e,i){var r;do{if(""!=(r=t.curCSS(e,i))&&"transparent"!=r||t.nodeName(e,"body"))break;i="backgroundColor"}while(e=e.parentNode);return n(r)}function r(){var t,e,n,i=document.defaultView?document.defaultView.getComputedStyle(this,null):this.currentStyle,r={};if(i&&i.length&&i[0]&&i[i[0]])for(n=i.length;n--;)t=i[n],"string"==typeof i[t]&&(e=t.replace(/\-(\w)/g,function(t,e){return e.toUpperCase()}),r[e]=i[t]);else for(t in i)"string"==typeof i[t]&&(r[t]=i[t]);return r}function o(e){var n,i;for(n in e)(null==(i=e[n])||t.isFunction(i)||n in h||/scrollbar/.test(n)||!/color/i.test(n)&&isNaN(parseFloat(i)))&&delete e[n];return e}function s(t,e){var n,i={_:0};for(n in e)t[n]!=e[n]&&(i[n]=e[n]);return i}function a(e,n,i,r){return"object"==typeof e&&(r=n,i=null,n=e,e=n.effect),t.isFunction(n)&&(r=n,i=null,n={}),("number"==typeof n||t.fx.speeds[n])&&(r=i,i=n,n={}),t.isFunction(i)&&(r=i,i=null),n=n||{},i=i||n.duration,i=t.fx.off?0:"number"==typeof i?i:i in t.fx.speeds?t.fx.speeds[i]:t.fx.speeds._default,r=r||n.complete,[e,n,i,r]}function l(e){return!(e&&"number"!=typeof e&&!t.fx.speeds[e])||"string"==typeof e&&!t.effects[e]}t.effects={},t.each(["backgroundColor","borderBottomColor","borderLeftColor","borderRightColor","borderTopColor","borderColor","color","outlineColor"],function(e,r){t.fx.step[r]=function(t){t.colorInit||(t.start=i(t.elem,r),t.end=n(t.end),t.colorInit=!0),t.elem.style[r]="rgb("+Math.max(Math.min(parseInt(t.pos*(t.end[0]-t.start[0])+t.start[0],10),255),0)+","+Math.max(Math.min(parseInt(t.pos*(t.end[1]-t.start[1])+t.start[1],10),255),0)+","+Math.max(Math.min(parseInt(t.pos*(t.end[2]-t.start[2])+t.start[2],10),255),0)+")"}});var u={aqua:[0,255,255],azure:[240,255,255],beige:[245,245,220],black:[0,0,0],blue:[0,0,255],brown:[165,42,42],cyan:[0,255,255],darkblue:[0,0,139],darkcyan:[0,139,139],darkgrey:[169,169,169],darkgreen:[0,100,0],darkkhaki:[189,183,107],darkmagenta:[139,0,139],darkolivegreen:[85,107,47],darkorange:[255,140,0],darkorchid:[153,50,204],darkred:[139,0,0],darksalmon:[233,150,122],darkviolet:[148,0,211],fuchsia:[255,0,255],gold:[255,215,0],green:[0,128,0],indigo:[75,0,130],khaki:[240,230,140],lightblue:[173,216,230],lightcyan:[224,255,255],lightgreen:[144,238,144],lightgrey:[211,211,211],lightpink:[255,182,193],lightyellow:[255,255,224],lime:[0,255,0],magenta:[255,0,255],maroon:[128,0,0],navy:[0,0,128],olive:[128,128,0], -orange:[255,165,0],pink:[255,192,203],purple:[128,0,128],violet:[128,0,128],red:[255,0,0],silver:[192,192,192],white:[255,255,255],yellow:[255,255,0],transparent:[255,255,255]},c=["add","remove","toggle"],h={border:1,borderBottom:1,borderColor:1,borderLeft:1,borderRight:1,borderTop:1,borderWidth:1,margin:1,padding:1};t.effects.animateClass=function(e,n,i,a){return t.isFunction(i)&&(a=i,i=null),this.queue("fx",function(){var l,u=t(this),h=u.attr("style")||" ",f=o(r.call(this)),d=u.attr("className");t.each(c,function(t,n){e[n]&&u[n+"Class"](e[n])}),l=o(r.call(this)),u.attr("className",d),u.animate(s(f,l),n,i,function(){t.each(c,function(t,n){e[n]&&u[n+"Class"](e[n])}),"object"==typeof u.attr("style")?(u.attr("style").cssText="",u.attr("style").cssText=h):u.attr("style",h),a&&a.apply(this,arguments)}),f=t.queue(this),l=f.splice(f.length-1,1)[0],f.splice(1,0,l),t.dequeue(this)})},t.fn.extend({_addClass:t.fn.addClass,addClass:function(e,n,i,r){return n?t.effects.animateClass.apply(this,[{add:e},n,i,r]):this._addClass(e)},_removeClass:t.fn.removeClass,removeClass:function(e,n,i,r){return n?t.effects.animateClass.apply(this,[{remove:e},n,i,r]):this._removeClass(e)},_toggleClass:t.fn.toggleClass,toggleClass:function(n,i,r,o,s){return"boolean"==typeof i||i===e?r?t.effects.animateClass.apply(this,[i?{add:n}:{remove:n},r,o,s]):this._toggleClass(n,i):t.effects.animateClass.apply(this,[{toggle:n},i,r,o])},switchClass:function(e,n,i,r,o){return t.effects.animateClass.apply(this,[{add:n,remove:e},i,r,o])}}),t.extend(t.effects,{version:"1.8.11",save:function(t,e){for(var n=0;n").addClass("ui-effects-wrapper").css({fontSize:"100%",background:"transparent",border:"none",margin:0,padding:0});return e.wrap(i),i=e.parent(),"static"==e.css("position")?(i.css({position:"relative"}),e.css({position:"relative"})):(t.extend(n,{position:e.css("position"),zIndex:e.css("z-index")}),t.each(["top","left","bottom","right"],function(t,i){n[i]=e.css(i),isNaN(parseInt(n[i],10))&&(n[i]="auto")}),e.css({position:"relative",top:0,left:0,right:"auto",bottom:"auto"})),i.css(n).show()},removeWrapper:function(t){return t.parent().is(".ui-effects-wrapper")?t.parent().replaceWith(t):t},setTransition:function(e,n,i,r){return r=r||{},t.each(n,function(t,n){unit=e.cssUnit(n),unit[0]>0&&(r[n]=unit[0]*i+unit[1])}),r}}),t.fn.extend({effect:function(e){var n,i=a.apply(this,arguments),r={ -options:i[1],duration:i[2],callback:i[3]};return i=r.options.mode,n=t.effects[e],t.fx.off||!n?i?this[i](r.duration,r.callback):this.each(function(){r.callback&&r.callback.call(this)}):n.call(this,r)},_show:t.fn.show,show:function(t){if(l(t))return this._show.apply(this,arguments);var e=a.apply(this,arguments);return e[1].mode="show",this.effect.apply(this,e)},_hide:t.fn.hide,hide:function(t){if(l(t))return this._hide.apply(this,arguments);var e=a.apply(this,arguments);return e[1].mode="hide",this.effect.apply(this,e)},__toggle:t.fn.toggle,toggle:function(e){if(l(e)||"boolean"==typeof e||t.isFunction(e))return this.__toggle.apply(this,arguments);var n=a.apply(this,arguments);return n[1].mode="toggle",this.effect.apply(this,n)},cssUnit:function(e){var n=this.css(e),i=[];return t.each(["em","px","%","pt"],function(t,e){n.indexOf(e)>0&&(i=[parseFloat(n),e])}),i}}),t.easing.jswing=t.easing.swing,t.extend(t.easing,{def:"easeOutQuad",swing:function(e,n,i,r,o){return t.easing[t.easing.def](e,n,i,r,o)},easeInQuad:function(t,e,n,i,r){return i*(e/=r)*e+n},easeOutQuad:function(t,e,n,i,r){return-i*(e/=r)*(e-2)+n},easeInOutQuad:function(t,e,n,i,r){return(e/=r/2)<1?i/2*e*e+n:-i/2*(--e*(e-2)-1)+n},easeInCubic:function(t,e,n,i,r){return i*(e/=r)*e*e+n},easeOutCubic:function(t,e,n,i,r){return i*((e=e/r-1)*e*e+1)+n},easeInOutCubic:function(t,e,n,i,r){return(e/=r/2)<1?i/2*e*e*e+n:i/2*((e-=2)*e*e+2)+n},easeInQuart:function(t,e,n,i,r){return i*(e/=r)*e*e*e+n},easeOutQuart:function(t,e,n,i,r){return-i*((e=e/r-1)*e*e*e-1)+n},easeInOutQuart:function(t,e,n,i,r){return(e/=r/2)<1?i/2*e*e*e*e+n:-i/2*((e-=2)*e*e*e-2)+n},easeInQuint:function(t,e,n,i,r){return i*(e/=r)*e*e*e*e+n},easeOutQuint:function(t,e,n,i,r){return i*((e=e/r-1)*e*e*e*e+1)+n},easeInOutQuint:function(t,e,n,i,r){return(e/=r/2)<1?i/2*e*e*e*e*e+n:i/2*((e-=2)*e*e*e*e+2)+n},easeInSine:function(t,e,n,i,r){return-i*Math.cos(e/r*(Math.PI/2))+i+n},easeOutSine:function(t,e,n,i,r){return i*Math.sin(e/r*(Math.PI/2))+n},easeInOutSine:function(t,e,n,i,r){return-i/2*(Math.cos(Math.PI*e/r)-1)+n},easeInExpo:function(t,e,n,i,r){return 0==e?n:i*Math.pow(2,10*(e/r-1))+n},easeOutExpo:function(t,e,n,i,r){return e==r?n+i:i*(1-Math.pow(2,-10*e/r))+n},easeInOutExpo:function(t,e,n,i,r){return 0==e?n:e==r?n+i:(e/=r/2)<1?i/2*Math.pow(2,10*(e-1))+n:i/2*(2-Math.pow(2,-10*--e))+n},easeInCirc:function(t,e,n,i,r){return-i*(Math.sqrt(1-(e/=r)*e)-1)+n},easeOutCirc:function(t,e,n,i,r){return i*Math.sqrt(1-(e=e/r-1)*e)+n},easeInOutCirc:function(t,e,n,i,r){return(e/=r/2)<1?-i/2*(Math.sqrt(1-e*e)-1)+n:i/2*(Math.sqrt(1-(e-=2)*e)+1)+n},easeInElastic:function(t,e,n,i,r){t=1.70158;var o=0,s=i;return 0==e?n:1==(e/=r)?n+i:(o||(o=.3*r),s