Skip to content

Instantly share code, notes, and snippets.

@saleh-old
Created May 19, 2020 08:36
Show Gist options
  • Save saleh-old/6816d65ba8f45d638f7f77e58b627e74 to your computer and use it in GitHub Desktop.
Save saleh-old/6816d65ba8f45d638f7f77e58b627e74 to your computer and use it in GitHub Desktop.
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