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 9c1c2cc commit d9b0630Copy full SHA for d9b0630
src/rest/stocks/trades.ts
@@ -18,11 +18,11 @@ export interface ITradeInfo {
18
}
19
20
export interface ITradesQuotesQuery extends IPolygonQuery {
21
- timeframe?: string;
22
- "timeframe.lt"?: string;
23
- "timeframe.lte"?: string;
24
- "timeframe.gt"?: string;
25
- "timeframe.gte"?: string;
+ timestamp?: string;
+ "timestamp.lt"?: string;
+ "timestamp.lte"?: string;
+ "timestamp.gt"?: string;
+ "timestamp.gte"?: string;
26
order?: "asc" | "desc";
27
limit?: number;
28
sort?: "timestamp";
0 commit comments