From 5e49bf916b18ab0520ac305f487b99e5d8e9b444 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gergely=20Nov=C3=A1k?= Date: Mon, 13 Jan 2025 15:19:54 +0100 Subject: [PATCH] Fix the docs of the bar timestamp (#547) --- alpaca/data/models/bars.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/alpaca/data/models/bars.py b/alpaca/data/models/bars.py index 76d67b92..cf8f1806 100644 --- a/alpaca/data/models/bars.py +++ b/alpaca/data/models/bars.py @@ -12,7 +12,7 @@ class Bar(BaseModel): Attributes: symbol (str): The ticker identifier for the security whose data forms the bar. - timestamp (datetime): The closing timestamp of the bar. + timestamp (datetime): The opening timestamp of the bar. open (float): The opening price of the interval. high (float): The high price during the interval. low (float): The low price during the interval.