-
Google Colab Pro (for enable terminal)
-
Github
Video : https://www.youtube.com/watch?v=RGOj5yH7evk
Docs : https://docs.github.com/en/get-started/quickstart/hello-world
- VS Code
I upload a jupyter notebook on my github. It's a reproduction of gym_anytrading and I will update it after I am famliar with the package. And the new baeline using stable_baseline could be found in the project.
git clone https://github.com/iamlilAJ/RL_finance.git
Read this tutorial colab
PS : I am in China now (which restricts some software and websites so I have to use a more complecated method to connect it. So I am not that sure this method works for you guys.
In Colab
!pip install colab_ssh --upgrade
!git init
!git remote add origin https://<username>:<password>@github.com/iamlilAJ/RL_finance.git
from colab_ssh import launch_ssh_cloudflared, init_git_cloudflared
launch_ssh_cloudflared(password="password for ssh connection")
init_git_cloudflared('https://github.com/iamlilAJ/RL_finance')
# Connect to drive
from google.colab import drive
drive.mount('/content/gdrive/')
In Terminal
git clone https://github.com/iamlilAJ/RL_finance.git
###After some change
git add .
git commit -m "message for commit"
git push