Created
May 19, 2020 08:36
-
-
Save saleh-old/6816d65ba8f45d638f7f77e58b627e74 to your computer and use it in GitHub Desktop.
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
class ExampleStrategy(Strategy): | |
def should_long(self): | |
return False | |
def should_short(self): | |
return False | |
def should_cancel(self): | |
return False | |
def go_long(self): | |
pass | |
def go_short(self): | |
pass |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment