stock-trading-ml
stock-trading-ml copied to clipboard
NameError: name 'MSFT_daily' is not defined
I get this error when running the basic_model.py:
File "basic_model.py", line 20, in
Can anyone advise what the issue is? I have already extracted the MSFT_daily.csv to the project folder.
Check line number 58 in the file "save_data_to_csv.py"
change from : data.to_csv(f'./Stockcsvs/{symbol}{time_window}.csv') to : data.to_csv(f'{symbol}{time_window}.csv')