Day candles for HWM is not complete

Code:
start_date = datetime.date.fromisoformat(“2022-01-01”)
end_date = datetime.date.fromisoformat(“2022-12-31”)

                day_candles0 = alpaca_client.get_bars(
                    symbol=symbol,
                    start=start_date - datetime.timedelta(days=1000),
                    end=end_date + datetime.timedelta(days=1),
                    timeframe=TimeFrame.Day,
                    adjustment="split",
                    feed="sip",
                ).df.tz_convert("UTC")

result:
{‘High’: 15.4, ‘Low’: 12.7101, ‘Open’: 15.4, ‘Close’: 13.2, ‘TotalVolume’: 2631313.0, ‘Epoch’: 1585713600000, ‘Time’: datetime.datetime(2020, 4, 1, 4, 0)}

{‘High’: 39.48, ‘Low’: 38.99, ‘Open’: 39.17, ‘Close’: 39.41, ‘TotalVolume’: 1552752.0, ‘Epoch’: 1672376400000, ‘Time’: datetime.datetime(2022, 12, 30, 5, 0)}

It should go back way before 2020-04-01

@sheep Howmet Aerospace (HWM) first began trading April 1, 2020. That is why there is no data before that time. The company was formed after the parent company Arconic Inc. spun off Arconic Rolled Products and changed its name and ticker symbol to Howmet Aerospace (HWM). The daughter company also changed its name to Arconic Corporation and took the ticker symbol of the parent company (ARNC). Here is some more info.

1 Like