You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: polygon/rest/reference.py
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -101,7 +101,7 @@ def list_tickers(
101
101
:param date: Specify a point in time to retrieve tickers available on that date. Defaults to the most recent available date.
102
102
:param search: Search for terms within the ticker and/or company name.
103
103
:param active: Specify if the tickers returned should be actively traded on the queried date. Default is true.
104
-
:param limit: Limit the size of the response, default is 100 and max is 1000.
104
+
:param limit: Limit the size of the response per-page, default is 100 and max is 1000.
105
105
:param sort: The field to sort the results on. Default is ticker. If the search query parameter is present, sort is ignored and results are ordered by relevance.
106
106
:param order: The order to sort the results on. Default is asc (ascending).
107
107
:param params: Any additional query params.
@@ -166,7 +166,7 @@ def list_ticker_news(
166
166
167
167
:param ticker: Return results that contain this ticker.
168
168
:param published_utc: Return results published on, before, or after this date.
169
-
:param limit: Limit the number of results returned, default is 10 and max is 1000.
169
+
:param limit: Limit the number of results returned per-page, default is 10 and max is 1000.
170
170
:param sort: Sort field used for ordering.
171
171
:param order: Order results based on the sort field.
172
172
:param params: Any additional query params.
@@ -243,7 +243,7 @@ def list_splits(
243
243
:param execution_date_gt: Execution date greater than.
244
244
:param execution_date_gte: Execution date greater than or equal to.
245
245
:param reverse_split: Query for reverse stock splits. A split ratio where split_from is greater than split_to represents a reverse split. By default this filter is not used.
246
-
:param limit: Limit the number of results returned, default is 10 and max is 1000.
246
+
:param limit: Limit the number of results returned per-page, default is 10 and max is 1000.
247
247
:param sort: Sort field used for ordering.
248
248
:param order: Order results based on the sort field.
249
249
:param params: Any additional query params.
@@ -332,7 +332,7 @@ def list_dividends(
332
332
:param frequency: Query by the number of times per year the dividend is paid out. Possible values are 0 (one-time), 1 (annually), 2 (bi-annually), 4 (quarterly), and 12 (monthly).
333
333
:param cash_amount: Query by the cash amount of the dividend.
334
334
:param dividend_type: Query by the type of dividend. Dividends that have been paid and/or are expected to be paid on consistent schedules are denoted as CD. Special Cash dividends that have been paid that are infrequent or unusual, and/or can not be expected to occur in the future are denoted as SC.
335
-
:param limit: Limit the number of results returned, default is 10 and max is 1000.
335
+
:param limit: Limit the number of results returned per-page, default is 10 and max is 1000.
336
336
:param sort: Sort field used for ordering.
337
337
:param order: Order results based on the sort field.
338
338
:param params: Any additional query params.
@@ -369,7 +369,7 @@ def list_conditions(
369
369
:param data_type: Data types that this condition applies to.
370
370
:param id: Filter for conditions with a given ID.
371
371
:param sip: Filter by SIP. If the condition contains a mapping for that SIP, the condition will be returned.
372
-
:param limit: Limit the number of results returned, default is 10 and max is 1000.
372
+
:param limit: Limit the number of results returned per-page, default is 10 and max is 1000.
373
373
:param sort: Sort field used for ordering.
374
374
:param order: Order results based on the sort field.
375
375
:param params: Any additional query params.
@@ -476,7 +476,7 @@ def list_options_contracts(
476
476
:param as_of: Specify a point in time for contracts as of this date with format YYYY-MM-DD.
477
477
:param strike_price: Query by strike price of a contract.
478
478
:param expired: Query for expired contracts.
479
-
:param limit: Limit the number of results returned, default is 10 and max is 1000.
479
+
:param limit: Limit the number of results returned per-page, default is 10 and max is 1000.
480
480
:param sort: Sort field used for ordering.
481
481
:param order: Order results based on the sort field.
Copy file name to clipboardExpand all lines: polygon/rest/trades.py
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -29,7 +29,7 @@ def list_trades(
29
29
:param timestamp_lte: Timestamp less than or equal to
30
30
:param timestamp_gt: Timestamp greater than
31
31
:param timestamp_gte: Timestamp greater than or equal to
32
-
:param limit: Limits the number of base aggregates queried to create the aggregate results. Max 50000 and Default 5000. Read more about how limit is used to calculate aggregate results in our article on Aggregate Data API Improvements.
32
+
:param limit: Limits the number of base aggregates queried per-page to create the aggregate results. Max 50000 and Default 5000. Read more about how limit is used to calculate aggregate results in our article on Aggregate Data API Improvements.
33
33
:param sort: Sort the results by timestamp. asc will return results in ascending order (oldest at the top), desc will return results in descending order (newest at the top).The end of the aggregate time window.
34
34
:param order: Order results based on the sort field
0 commit comments