Created
June 9, 2020 07:56
-
-
Save saleh-old/b7ffa59124c2b74ff7dff8f0a78d1034 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
def should_long(self) -> bool: | |
return self.current_candle_touches_long_ema and self.trend == 1 | |
def should_short(self) -> bool: | |
return self.current_candle_touches_long_ema and self.trend == -1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment