Created
June 9, 2020 07:55
-
-
Save saleh-old/7063de6d1914fccc0772335715f151b1 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
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