Boreas813

Results 6 issues of Boreas813

add get_forex_data, this method added some parameters not in stock model, details are in the comments of the method and readme

I ran the code of this article: https://github.com/AI4Finance-Foundation/FinRL-Tutorials/blob/master/1-Introduction/Stock_NeurIPS2018_SB3.ipynb I trained all algorithm in 3571 seconds using the CPU(intel-9900k) Then I reinstalled pytorch with cuda11.8 and started training with cuda device...

https://github.com/AI4Finance-Foundation/FinRL-Tutorials/blob/master/2-Advance/FinRL_Ensemble_StockTrading_ICAIF_2020.ipynb In this tutorial, part 7 ![image](https://github.com/AI4Finance-Foundation/FinRL/assets/28076275/f4c76ab8-95ed-402f-bdfa-89c7367075c5) you define a DataFrame called df_account_value and call append method ? df don't have append method at all.

doc
refactoring

https://finrl.readthedocs.io/en/latest/tutorial/2-Advance.html ![image](https://github.com/AI4Finance-Foundation/FinRL/assets/28076275/05d5ea65-efea-4479-af23-0790eb6892cd) In this page, this link jump to github 404

doc

![image](https://github.com/AI4Finance-Foundation/FinRL-Tutorials/assets/28076275/e340b06b-fc29-441d-a64f-189e12a8dca7) MergeError: Passing 'suffixes' which cause duplicate columns {'account_value_x'} is not allowed. please change to this code: result = pd.merge(df_result_a2c, df_result_ddpg, left_index=True, right_index=True) result = pd.merge(result, df_result_td3, left_index=True, right_index=True) result...