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 dc40d6c commit 85aaffaCopy full SHA for 85aaffa
alpaca/data/enums.py
@@ -61,12 +61,16 @@ class DataFeed(str, Enum):
61
SIP (str): Securities Information Processor feed
62
DELAYED_SIP (str): SIP data with a 15 minute delay
63
OTC (str): Over the counter feed
64
+ BOATS (str): Blue Ocean, overnight US trading data
65
+ OVERNIGHT (str): derived overnight US trading data
66
"""
67
68
IEX = "iex"
69
SIP = "sip"
70
DELAYED_SIP = "delayed_sip"
71
OTC = "otc"
72
+ BOATS = "boats"
73
+ OVERNIGHT = "overnight"
74
75
76
class Adjustment(str, Enum):
0 commit comments