Release v24.001 (from e00f16c2)

Fixes tradingview/charting_library#7472
This commit is contained in:
jenkins
2023-03-13 14:27:09 +00:00
parent 26c95a82aa
commit aab06572c2
79 changed files with 1051 additions and 982 deletions

View File

@@ -1,8 +1,8 @@
# 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.
This folder contains [UDF](https://www.tradingview.com/charting_library_docs/docs/connecting_data/UDF) datafeed adapter. It implements [Datafeed API](https://www.tradingview.com/charting_library_docs/docs/connecting_data/Datafeed-API) and makes HTTP requests using [UDF](https://www.tradingview.com/charting_library_docs/docs/connecting_data/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.
You can use this datafeed adapter to plug your data if you implement [UDF](https://www.tradingview.com/charting_library_docs/docs/connecting_data/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/).

View File

@@ -9,7 +9,7 @@ function extractField(data, field, arrayIndex) {
}
/**
* This class implements interaction with UDF-compatible datafeed.
* See UDF protocol reference at https://github.com/tradingview/charting_library/wiki/UDF
* See [UDF protocol reference](@docs/connecting_data/UDF)
*/
export class UDFCompatibleDatafeedBase {
constructor(datafeedURL, quotesProvider, requester, updateFrequency = 10 * 1000, limitedServerResponse) {

View File

@@ -105,7 +105,7 @@ function extractField<T, TField extends keyof T>(data: T, field: TField, arrayIn
/**
* This class implements interaction with UDF-compatible datafeed.
* See UDF protocol reference at https://github.com/tradingview/charting_library/wiki/UDF
* See [UDF protocol reference](@docs/connecting_data/UDF)
*/
export class UDFCompatibleDatafeedBase implements IExternalDatafeed, IDatafeedQuotesApi, IDatafeedChartApi {
protected _configuration: UdfCompatibleConfiguration = defaultConfiguration();