Skip to content

Commit

Permalink
fix(quote): make customPriceAlertConfidence optional (#248,#445)
Browse files Browse the repository at this point in the history
Fixes #445.
  • Loading branch information
gadicc committed Apr 13, 2022
1 parent cf7703a commit 1863fbf
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/modules/quote.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@ export interface QuoteBase {
quoteSourceName?: string; // "Delayed Quote",
triggerable: boolean; // true,
currency?: string; // "USD",
customPriceAlertConfidence: string; // "HIGH" | "LOW"; TODO: anything else?
// Seems to appear / disappear based not on symbol but network load (#445)
customPriceAlertConfidence?: string; // "HIGH" | "LOW"; TODO: anything else?
marketState: "REGULAR" | "CLOSED" | "PRE" | "PREPRE" | "POST" | "POSTPOST";
tradeable: boolean; // false,
exchange: string; // "NMS",
Expand Down

0 comments on commit 1863fbf

Please sign in to comment.