@barchart/chart-lib 2.399.0 → 2.400.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1697,6 +1697,7 @@ declare module "@barchart/chart-lib" {
1697
1697
  hiddenItems?: HiddenItems;
1698
1698
  exprSkipLeadingEmpty?: boolean;
1699
1699
  extendedHours?: boolean;
1700
+ useLastTrade?: boolean;
1700
1701
  realTimeCboeBzx?: boolean;
1701
1702
  buildContinuation?: boolean;
1702
1703
  };
@@ -2250,6 +2251,8 @@ declare module "@barchart/chart-lib" {
2250
2251
  interface NormalTimeSeriesQuery extends BaseTimeSeriesQuery {
2251
2252
  /** Aggregation of the data. */
2252
2253
  aggregation: Aggregation;
2254
+ /** Use historical last-trade closes for daily and higher bars (default false). */
2255
+ useLastTrade?: boolean;
2253
2256
  /** Limit returned data to a given time span. */
2254
2257
  range?: RangePair;
2255
2258
  /** Should we apply the splits (`true` by default) to the data? */
@@ -2269,6 +2272,8 @@ declare module "@barchart/chart-lib" {
2269
2272
  seriesKind: SeriesKind;
2270
2273
  /** Should the chart cache the result; used _only_ when the data feed supports caching. */
2271
2274
  cacheMe: boolean;
2275
+ /** Use historical last-trade closes for daily and higher bars (default false). */
2276
+ useLastTrade?: boolean;
2272
2277
  /** Limit returned data to a given time span. */
2273
2278
  range?: RangePair;
2274
2279
  /** Should we apply the splits (`true` by default) to the data? */