8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ce7e849 commit 794d098Copy full SHA for 794d098
src/rest/reference/tickers.ts
@@ -16,7 +16,7 @@ export type TickerTypes =
16
| "INDEX"
17
| "ETF"
18
| "ETN";
19
-export type MarketType = "stocks" | "crypto" | "fx";
+export type MarketType = "stocks" | "crypto" | "fx" | "otc" | "indices";
20
export type Order = "asc" | "desc";
21
22
export interface ITickersQuery extends IPolygonQuery {
@@ -42,7 +42,7 @@ export interface ITickersQuery extends IPolygonQuery {
42
export interface ITickersResults {
43
ticker: string;
44
name: string;
45
- market: string;
+ market: MarketType;
46
locale: string;
47
primary_exchange: string;
48
type: string;
0 commit comments