Skip to content

Commit 85aaffa

Browse files
authored
feat: add datafeed for overnight trading (#609)
1 parent dc40d6c commit 85aaffa

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

alpaca/data/enums.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,12 +61,16 @@ class DataFeed(str, Enum):
6161
SIP (str): Securities Information Processor feed
6262
DELAYED_SIP (str): SIP data with a 15 minute delay
6363
OTC (str): Over the counter feed
64+
BOATS (str): Blue Ocean, overnight US trading data
65+
OVERNIGHT (str): derived overnight US trading data
6466
"""
6567

6668
IEX = "iex"
6769
SIP = "sip"
6870
DELAYED_SIP = "delayed_sip"
6971
OTC = "otc"
72+
BOATS = "boats"
73+
OVERNIGHT = "overnight"
7074

7175

7276
class Adjustment(str, Enum):

0 commit comments

Comments
 (0)