├── LICENSE ├── Project submission 14Jan.pdf ├── Proposal.pdf ├── README.md ├── Testing- Google n Walmart.ipynb ├── Testing-IBM n GE.ipynb ├── Trading.ipynb ├── agent └── agent.py ├── data ├── aapl.us.txt ├── amzn.us.txt ├── ge.us.txt ├── googl.us.txt ├── ibm.us.txt └── wm.us.txt ├── functions.py ├── models ├── model_ep0 ├── model_ep10 ├── model_ep20 ├── model_ep30 ├── model_ep40 └── model_ep50 └── state └── state.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachink2010/AutomatedStockTrading-DeepQ-Learning/HEAD/LICENSE -------------------------------------------------------------------------------- /Project submission 14Jan.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachink2010/AutomatedStockTrading-DeepQ-Learning/HEAD/Project submission 14Jan.pdf -------------------------------------------------------------------------------- /Proposal.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachink2010/AutomatedStockTrading-DeepQ-Learning/HEAD/Proposal.pdf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachink2010/AutomatedStockTrading-DeepQ-Learning/HEAD/README.md -------------------------------------------------------------------------------- /Testing- Google n Walmart.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachink2010/AutomatedStockTrading-DeepQ-Learning/HEAD/Testing- Google n Walmart.ipynb -------------------------------------------------------------------------------- /Testing-IBM n GE.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachink2010/AutomatedStockTrading-DeepQ-Learning/HEAD/Testing-IBM n GE.ipynb -------------------------------------------------------------------------------- /Trading.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachink2010/AutomatedStockTrading-DeepQ-Learning/HEAD/Trading.ipynb -------------------------------------------------------------------------------- /agent/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachink2010/AutomatedStockTrading-DeepQ-Learning/HEAD/agent/agent.py -------------------------------------------------------------------------------- /data/aapl.us.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachink2010/AutomatedStockTrading-DeepQ-Learning/HEAD/data/aapl.us.txt -------------------------------------------------------------------------------- /data/amzn.us.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachink2010/AutomatedStockTrading-DeepQ-Learning/HEAD/data/amzn.us.txt -------------------------------------------------------------------------------- /data/ge.us.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachink2010/AutomatedStockTrading-DeepQ-Learning/HEAD/data/ge.us.txt -------------------------------------------------------------------------------- /data/googl.us.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachink2010/AutomatedStockTrading-DeepQ-Learning/HEAD/data/googl.us.txt -------------------------------------------------------------------------------- /data/ibm.us.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachink2010/AutomatedStockTrading-DeepQ-Learning/HEAD/data/ibm.us.txt -------------------------------------------------------------------------------- /data/wm.us.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachink2010/AutomatedStockTrading-DeepQ-Learning/HEAD/data/wm.us.txt -------------------------------------------------------------------------------- /functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachink2010/AutomatedStockTrading-DeepQ-Learning/HEAD/functions.py -------------------------------------------------------------------------------- /models/model_ep0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachink2010/AutomatedStockTrading-DeepQ-Learning/HEAD/models/model_ep0 -------------------------------------------------------------------------------- /models/model_ep10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachink2010/AutomatedStockTrading-DeepQ-Learning/HEAD/models/model_ep10 -------------------------------------------------------------------------------- /models/model_ep20: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachink2010/AutomatedStockTrading-DeepQ-Learning/HEAD/models/model_ep20 -------------------------------------------------------------------------------- /models/model_ep30: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachink2010/AutomatedStockTrading-DeepQ-Learning/HEAD/models/model_ep30 -------------------------------------------------------------------------------- /models/model_ep40: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachink2010/AutomatedStockTrading-DeepQ-Learning/HEAD/models/model_ep40 -------------------------------------------------------------------------------- /models/model_ep50: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachink2010/AutomatedStockTrading-DeepQ-Learning/HEAD/models/model_ep50 -------------------------------------------------------------------------------- /state/state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sachink2010/AutomatedStockTrading-DeepQ-Learning/HEAD/state/state.py --------------------------------------------------------------------------------