RL-Stock
RL-Stock copied to clipboard
filename has "*" to be removed
for the file: get_stock_data.py
you need to change line 46
from
df_code.to_csv(f'{self.output_dir}/{row["code"]}.{row["code_name"]}.csv', index=False)
to
df_code.to_csv(f'{self.output_dir}/{row["code"]}.{row["code_name"].replace("*","")}.csv', index=False)
thanks for your fix