This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from strategy import Strategy, Order | |
from indicators import EMA | |
import resolution | |
class TestStrategy(Strategy): | |
def init(self): | |
self.cash(1000) | |
self.start_date(2015, 6, 2) | |
self.end_date(2015, 6, 3) |