VERSION 1.13 @ 2018-08-24 09:41:58.695938

Volume Color is reversed in v1.13 dev #3227
XSS in indicatorsFile parameter #3210
Unknown 1 minute resolution in resolutions widget #3207
What does supports_group_request do? #3183
Improved documentation for intraday_multipliers #3176
Please run a spell checker over the Wiki #3172
Disable "This chart layout has more than 1000 drawings" popup #3158
Problem with drawings in `60S` resolution #3147
Pivot Points are same across Hourly and Daily Timeframe #3144
Add useful default for minSize in getMarks #3139
JS API from/to vs. startDate/endDate inconsistency #3136
Minor wiki error: three -> four #3134
Defaults for chart style and interval favorites does not work #3036
Add support to disable modify order #3015
Cannot read property 'contains' of null if chart container is not visible #2999
Spread/Ratio indicators #2875
Initial bars load glitch #2665
Bars are shifted when the exchange time is negative #2652
Question for previous close price line #2643
SymbolInfo ticker is mandatory, despite what docs say #2581
12/31/2017 is missing when TZ time is negative #2571
TERMINAL: notifications log tab in the bottom panel #2538
The problem with translating the timeframes into Russian. #2494
Adaptive top panel #2491
Session and Cookie #2484
Maximum call stack size exceeded #2477
1.12 custom save_load_adapter UI event exceptions #2448
How to change color to the up fractals of the Williams Fractals? #2425
 Timescale marks are not displayed correctly in version 1.11 #2423
Display "Delayed" status on the chart #2369
Add default quantity for symbols #2322
Add Market Depth in TradingTerminal #2316
TERMINAL: Change "Don't show order confirmations" from a broker #2261
Scale Ratio #2240
getBars not called after symbol change #2062
side_toolbar_in_fullscreen_mode doesn't work #2036
Adding link in market details widget #2021
Cannot read property 'favorite' of undefined (indicators) #1998
Add Pivot Points #1747
Multiple watchlists #1697
MACD EMA based #1300
Add Themes #1277
Change study default scale #1170
Show dialog when insert Correlation Coefficient #1169
How to get current status of log scale? #1050
Missing onVisibleRangeChange event #813
Synchronous XMLHttpRequest on the main thread is deprecated #773
"Hide All Drawing Tools" button doesn't hide the price of "Horizontal Line" #477
This commit is contained in:
Jenkins
2018-08-24 12:42:02 +03:00
parent 603a198aaf
commit daaa59f286
107 changed files with 1539 additions and 1392 deletions

View File

@@ -55,8 +55,8 @@ export interface IDatafeedQuotesApi {
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 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/Belgrade' | 'Europe/Berlin' | 'Europe/London' | 'Europe/Luxembourg' | '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' | 'Asia/Chongqing' | 'Asia/Jerusalem' | 'Asia/Kuwait' | 'Asia/Muscat' | 'Asia/Qatar' | 'Asia/Riyadh' | 'Pacific/Auckland' | 'Pacific/Chatham' | 'Pacific/Fakaofo' | 'Pacific/Honolulu' | 'America/Mexico_City' | 'Africa/Cairo' | 'Africa/Johannesburg' | 'Asia/Kathmandu' | 'US/Mountain';
export declare type Timezone = 'Etc/UTC' | CustomTimezones;
export interface LibrarySymbolInfo {
/**
* Symbol Name
@@ -200,8 +200,8 @@ 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<Mark>, resolution: ResolutionString): void;
getTimescaleMarks?(symbolInfo: LibrarySymbolInfo, startDate: number, endDate: number, onDataCallback: GetMarksCallback<TimescaleMark>, resolution: ResolutionString): void;
getMarks?(symbolInfo: LibrarySymbolInfo, from: number, to: number, onDataCallback: GetMarksCallback<Mark>, resolution: ResolutionString): void;
getTimescaleMarks?(symbolInfo: LibrarySymbolInfo, from: number, to: number, onDataCallback: GetMarksCallback<TimescaleMark>, 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.