MehranTaghian / DQN-Trading

A Deep Reinforcement Learning Framework for Stock Market Trading
MIT License
141 stars 48 forks source link

How to make data_processed.csv plot data into a visual chart (jpg file)? #8

Open dekacypher opened 2 years ago

dekacypher commented 2 years ago

I'm trying to run the Main.py, it runs perfectly, the only issue here is that it writes new data(BTC-USD) to the file data_processed.csv but it does not plot it into a visual chart (jpg file). I've set load_from_file=False and it still doesn't work, what am I doing wrong?

`

BTC-USD

DATASET_NAME = 'BTC-USD' DATASET_FOLDER = r'BTC-USD' FILE = r'BTC-USD.csv' data_loader = YahooFinanceDataLoader(DATASET_FOLDER, FILE, '2021-01-10', load_from_file=False) transaction_cost = 0.0 `