Release v27.006 (from c7d57a22)
This commit is contained in:
@@ -5,6 +5,14 @@
|
|||||||
<!-- markdownlint-disable no-inline-html -->
|
<!-- markdownlint-disable no-inline-html -->
|
||||||
<!-- markdownlint-disable code-block-style -->
|
<!-- markdownlint-disable code-block-style -->
|
||||||
|
|
||||||
|
## Version 27.006
|
||||||
|
|
||||||
|
*Date: Tue May 21 2024*
|
||||||
|
|
||||||
|
**Bug Fixes**
|
||||||
|
|
||||||
|
- **Resolve quotes with ticker instead of symbol name.** The library will now request quote data using the [`ticker`](https://www.tradingview.com/charting-library-docs/latest/api/interfaces/Charting_Library.LibrarySymbolInfo#ticker) property. If `ticker` is not provided in the `LibrarySymbolInfo` object, the `name` property will be used instead. This should resolve an issue some customers were experiencing where quote data was not being properly displayed in the [Watchlist](https://www.tradingview.com/charting-library-docs/latest/trading_terminal/Watch-List) and [Legend](https://www.tradingview.com/charting-library-docs/latest/ui_elements/Legend).
|
||||||
|
|
||||||
## Version 27.005
|
## Version 27.005
|
||||||
|
|
||||||
*Date: Tue May 07 2024*
|
*Date: Tue May 07 2024*
|
||||||
|
|||||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
7
charting_library/charting_library.d.ts
vendored
7
charting_library/charting_library.d.ts
vendored
@@ -15698,7 +15698,7 @@ export interface PineJSStd {
|
|||||||
* Current bar time
|
* Current bar time
|
||||||
*
|
*
|
||||||
* @param context - PineJS execution context.
|
* @param context - PineJS execution context.
|
||||||
* @returns UNIX time of current bar
|
* @returns UNIX time of current bar according to the symbol timezone and not UTC.
|
||||||
*/
|
*/
|
||||||
time(context: IContext): number;
|
time(context: IContext): number;
|
||||||
/**
|
/**
|
||||||
@@ -15706,10 +15706,9 @@ export interface PineJSStd {
|
|||||||
*
|
*
|
||||||
* @param context - PineJS execution context.
|
* @param context - PineJS execution context.
|
||||||
* @param period - Period
|
* @param period - Period
|
||||||
* @param spec
|
* @returns UNIX time of current bar according to the symbol timezone and not UTC.
|
||||||
* @returns UNIX time of current bar
|
|
||||||
*/
|
*/
|
||||||
time(context: IContext, period: string, spec: unknown): number;
|
time(context: IContext, period: string): number;
|
||||||
/**
|
/**
|
||||||
* Is a shortcut for (high + low)/2
|
* Is a shortcut for (high + low)/2
|
||||||
*
|
*
|
||||||
|
|||||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"private": true,
|
"private": true,
|
||||||
"description": "CL v27.005 (internal id d937bee0 @ 2024-05-07T15:20:48.667Z)",
|
"description": "CL v27.006 (internal id c7d57a22 @ 2024-05-21T16:14:30.134Z)",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"main": "charting_library.cjs.js",
|
"main": "charting_library.cjs.js",
|
||||||
"module": "charting_library.esm.js",
|
"module": "charting_library.esm.js",
|
||||||
|
|||||||
@@ -23,6 +23,6 @@
|
|||||||
},
|
},
|
||||||
"homepage": "https://www.tradingview.com/charting-library-docs",
|
"homepage": "https://www.tradingview.com/charting-library-docs",
|
||||||
"name": "charting_library",
|
"name": "charting_library",
|
||||||
"version": "27.005",
|
"version": "27.006",
|
||||||
"types": "charting_library.d.ts"
|
"types": "charting_library.d.ts"
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user