From d11cd85a668c283b0fda3ae3e9b1292168cadb45 Mon Sep 17 00:00:00 2001 From: ValueRaider Date: Sun, 13 Nov 2022 11:51:41 +0000 Subject: [PATCH] Backport #1169 (default start) --- yfinance/base.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/yfinance/base.py b/yfinance/base.py index 3943e89d7..8e40831b8 100644 --- a/yfinance/base.py +++ b/yfinance/base.py @@ -167,7 +167,8 @@ def history(self, period="1mo", interval="1d", if interval == "1m": start = end - 604800 # Subtract 7 days else: - start = -631159200 + #time stamp of 01/01/1900 + start = -2208994789 else: start = utils._parse_user_dt(start, tz) params = {"period1": start, "period2": end}