FinRL-Trading
FinRL-Trading copied to clipboard
For trading. Please star.
Why is self.observation_space bounded from 0 to np.inf when the techinal indicators (e.g. MACD) can take negative values? Should it not be: self.observation_space = spaces.Box(low=-np.inf, high=np.inf, shape = (Obs_Dim,)) instead...
Hello, I cannot run the code because I get this error: ```` (venv) linus@linux:~/trading/Deep-Reinforcement-Learning-for-Automated-Stock-Trading-Ensemble-Strategy-ICAIF-2020$ python run_DRL.py WARNING:tensorflow: The TensorFlow contrib module will not be included in TensorFlow 2.0. For more...
Replace the attached csv data (It's data from a foreign stock market) with "dow_30_2009_2020.csv" and remove "done_data.csv". If you run "run_DRL.py" it will throw an exception. In calculating turbulence it...
Hello, Excellent work on this. I wanted to evaluate the performance of your models on some other index. I took a look at your data csv files, and found the...
Hi, great article once again, I am trying to predict using trained models but get the same error in both single and multi stock scenarios. When I run prediction: trade...
HI . I RUN THE FILE BUT I CANT UNDERSTAND WHERE IS THE FILE account_value_trade_{}_{}.csv . PLZ HELP ME
Hi everyone, i think that this code line and especially DRL_prediction call needs to be changed. `df_account_value, df_actions = DRLAgent.DRL_prediction(model=trained_sac, test_data = trade, test_env = env_trade, test_obs = obs_trade) `...
Add 72 FX Tickers
Add SubprocVecEnv for multipler envs models: A2C, PPO. Apply multiprocessing.Pool for single env models: DDPG and TD3.