Release v21.064 (from f0bc1e45)
Fixes tradingview/charting_library#6237 Fixes tradingview/charting_library#6543
This commit is contained in:
@@ -24,6 +24,8 @@ interface ExchangeDataResponseSymbolData {
|
||||
'exchange-traded': string;
|
||||
|
||||
'session-regular': string;
|
||||
'corrections'?: string;
|
||||
'session-holidays'?: string;
|
||||
|
||||
'fractional': boolean;
|
||||
|
||||
@@ -262,6 +264,8 @@ export class SymbolsStorage {
|
||||
pricescale: extractField(data, 'pricescale', symbolIndex),
|
||||
type: extractField(data, 'type', symbolIndex),
|
||||
session: extractField(data, 'session-regular', symbolIndex),
|
||||
session_holidays: extractField(data, 'session-holidays', symbolIndex),
|
||||
corrections: extractField(data, 'corrections', symbolIndex),
|
||||
timezone: extractField(data, 'timezone', symbolIndex),
|
||||
supported_resolutions: definedValueOrDefault(extractField(data, 'supported-resolutions', symbolIndex, true), this._datafeedSupportedResolutions),
|
||||
has_daily: definedValueOrDefault(extractField(data, 'has-daily', symbolIndex), true),
|
||||
|
||||
Reference in New Issue
Block a user