Skip to content

Instantly share code, notes, and snippets.

@saleh-old
Created June 9, 2020 07:55
Show Gist options
  • Save saleh-old/7063de6d1914fccc0772335715f151b1 to your computer and use it in GitHub Desktop.
Save saleh-old/7063de6d1914fccc0772335715f151b1 to your computer and use it in GitHub Desktop.
from jesse.strategies import Strategy
import jesse.indicators as ta
from jesse import utils
class TrendFollowingStrategy(Strategy):
def should_long(self) -> bool:
return False
def should_short(self) -> bool:
return False
def should_cancel(self) -> bool:
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