├── .gitignore ├── README.md ├── data ├── __init__.py └── fetchdata.py ├── env ├── TradingEnv.py └── __init__.py ├── main.py ├── predictors └── arima.py ├── render ├── StockTradingGraph.py └── __init__.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoli131/DeepRL-TradeBot/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoli131/DeepRL-TradeBot/HEAD/README.md -------------------------------------------------------------------------------- /data/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/fetchdata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoli131/DeepRL-TradeBot/HEAD/data/fetchdata.py -------------------------------------------------------------------------------- /env/TradingEnv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoli131/DeepRL-TradeBot/HEAD/env/TradingEnv.py -------------------------------------------------------------------------------- /env/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoli131/DeepRL-TradeBot/HEAD/main.py -------------------------------------------------------------------------------- /predictors/arima.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoli131/DeepRL-TradeBot/HEAD/predictors/arima.py -------------------------------------------------------------------------------- /render/StockTradingGraph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoli131/DeepRL-TradeBot/HEAD/render/StockTradingGraph.py -------------------------------------------------------------------------------- /render/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoli131/DeepRL-TradeBot/HEAD/requirements.txt --------------------------------------------------------------------------------