-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmain.py
25 lines (16 loc) · 882 Bytes
/
main.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# coding=utf-8
###############################################################################
################################### Imports ###################################
###############################################################################
import argparse
from tradingSimulator import TradingSimulator
###############################################################################
##################################### MAIN ####################################
###############################################################################
if(__name__ == '__main__'):
# Initialization of the required variables
simulator = TradingSimulator()
strategy = "TD3QN"
for stock in ['Twitter', 'Google','Apple','Facebook','Amazon','Microsoft']:
print(stock)
simulator.simulateNewStrategy(strategy, stock, saveStrategy=False)