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 17487bc commit aefe876Copy full SHA for aefe876
polygon/rest/models/common.py
@@ -20,6 +20,7 @@ class Market(Enum):
20
STOCKS = "stocks"
21
CRYPTO = "crypto"
22
FX = "fx"
23
+ OTC = "otc"
24
25
26
class AssetClass(Enum):
polygon/websocket/models/models.py
@@ -20,6 +20,7 @@ class EquityAgg:
average_size: Optional[float] = None
start_timestamp: Optional[int] = None
end_timestamp: Optional[int] = None
+ otc: Optional[bool] = None
@staticmethod
def from_dict(d):
@@ -38,6 +39,7 @@ def from_dict(d):
38
39
d.get("z", None),
40
d.get("s", None),
41
d.get("e", None),
42
+ d.get("o", None),
43
)
44
45
0 commit comments