Skip to content

Commit c373ff2

Browse files
authored
feat: add DELAYED_SIP for DataFeed (#591)
1 parent f515265 commit c373ff2

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

alpaca/data/enums.py

+2
Original file line numberDiff line numberDiff line change
@@ -59,11 +59,13 @@ class DataFeed(str, Enum):
5959
Attributes:
6060
IEX (str): Investor's exchange data feed
6161
SIP (str): Securities Information Processor feed
62+
DELAYED_SIP (str): SIP data with a 15 minute delay
6263
OTC (str): Over the counter feed
6364
"""
6465

6566
IEX = "iex"
6667
SIP = "sip"
68+
DELAYED_SIP = "delayed_sip"
6769
OTC = "otc"
6870

6971

0 commit comments

Comments
 (0)