Overnight data access not working

Hi,

I have AlgoTrader Plus plan, but am not able to use overnights / boats data via python sdk.

I get auth error.

from alpaca.data.historical import StockHistoricalDataClient
from alpaca.data.requests import StockLatestQuoteRequest
from alpaca.data.live import StockDataStream
from alpaca.data.enums import DataFeed
import os


symbols = ["NVDA"]

version = "v1beta1"
feed = "overnight"
url = f"wss://stream.data.alpaca.markets/{version}/{feed}"

# DataFeed.SIP
stock_data_stream_client = StockDataStream(os.environ.get("ALPACA_KEY"), os.environ.get("ALPACA_SECRET"), url_override=url)

async def stock_data_stream_handler(data):
    print(data)

stock_data_stream_client.subscribe_quotes(stock_data_stream_handler, *symbols)
stock_data_stream_client.subscribe_trades(stock_data_stream_handler, *symbols)

stock_data_stream_client.run()

Am I missing anything or doing something incorrectly.

@learn2178 Currently the /boats and /overnight endpoints are not active. One will get a [{'T': 'error', 'code': 409, 'msg': 'insufficient subscription'}] error when trying to connect. These should be getting released soon, but currently they are are not available. Stay tuned.

thanks… do we know when will these be released.

@learn2178 Overnight data is coming soon, but no specific dates. Working on the details for synching BOATS data with Alpaca.

Any updates or estimated timeline to getting the BOATS data? Where can we check for updates or announcements when this data feature will become available? Thanks for your help on this.