desolator-x

Results 1 comments of desolator-x

Turns out that setting auto_adjust=False gives identical OHLC data as the Yahoo Finance webpage: ``` import yfinance as yf yf.enable_debug_mode() ticker = yf.Ticker('AAPL') historical_data = ticker.history(start='2024-01-01', end='2024-02-01', auto_adjust=False) print(historical_data[['Open', 'High',...