Skip to content

Commit d9b0630

Browse files
authored
Fixes incorrect payload attributes in ITradesQuotesQuery (#91)
1 parent 9c1c2cc commit d9b0630

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/rest/stocks/trades.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,11 @@ export interface ITradeInfo {
1818
}
1919

2020
export interface ITradesQuotesQuery extends IPolygonQuery {
21-
timeframe?: string;
22-
"timeframe.lt"?: string;
23-
"timeframe.lte"?: string;
24-
"timeframe.gt"?: string;
25-
"timeframe.gte"?: string;
21+
timestamp?: string;
22+
"timestamp.lt"?: string;
23+
"timestamp.lte"?: string;
24+
"timestamp.gt"?: string;
25+
"timestamp.gte"?: string;
2626
order?: "asc" | "desc";
2727
limit?: number;
2828
sort?: "timestamp";

0 commit comments

Comments
 (0)