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 4ef6f13 commit 7acc4adCopy full SHA for 7acc4ad
examples/rest/stocks-short_interest.py
@@ -8,13 +8,13 @@
8
9
short_interest = []
10
for si in client.list_short_interest(
11
- identifier="AMD",
+ identifier="AMD",
12
identifier_type="ticker",
13
params={
14
"date.gte": "2024-10-07",
15
"date.lte": "2024-10-07",
16
},
17
- limit=100
+ limit=100,
18
):
19
short_interest.append(si)
20
polygon/rest/models/tickers.py
@@ -254,6 +254,7 @@ class TickerChangeResults:
254
def from_dict(d):
255
return TickerChangeResults(**d)
256
257
+
258
@modelclass
259
class ShortInterest:
260
"""
@@ -284,6 +285,7 @@ def from_dict(d):
284
285
us_code=d.get("us_code"),
286
)
287
288
289
290
class IPOListing:
291
0 commit comments