Skip to content

Commit a4c0bad

Browse files
authored
Fixes incorrect payload attributes in ITradesQuotesQuery (#105)
* Fixes incorrect payload attributes in ITradesQuotesQuery * Fixes incorrect response attribute in ITrades * Fixes incorrect stock split query attributes
1 parent 61dc2e9 commit a4c0bad

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/rest/reference/stockSplits.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,11 @@ export interface IStockSplitsQuery extends IPolygonQuery {
2222
"ticker.lte"?: string;
2323
"ticker.gt"?: string;
2424
"ticker.gte"?: string;
25-
execution_data?: string;
26-
"execution_data.lt"?: string;
27-
"execution_data.lte"?: string;
28-
"execution_data.gt"?: string;
29-
"execution_data.gte"?: string;
25+
execution_date?: string;
26+
"execution_date.lt"?: string;
27+
"execution_date.lte"?: string;
28+
"execution_date.gt"?: string;
29+
"execution_date.gte"?: string;
3030
reverse_split?: "true" | "false";
3131
order?: "asc" | "desc";
3232
limit?: number;

0 commit comments

Comments
 (0)