yfinance
yfinance copied to clipboard
Documentation Error in download method for multi_level_index argument
Describe bug
The multi_level_index argument in the download method is set to True by default, whereas the documentation indicates that it is set to False.
yfinance.download('AAPL').columns=['OPEN','HIGH','LOW','CLOSE']
The multi_level_index argument in the download method is set to True by default, whereas the documentation indicates that it is set to False.
yfinance.download('AAPL').columns=['OPEN','HIGH','LOW','CLOSE'] Above code generates multilevel index so cannot be replaced by list. So default method as written in Documentation should be changed to True so that user knows the output before running the code.
Already resolved in #2110