Skip to content

Instantly share code, notes, and snippets.

@saleh-old
Created June 9, 2020 07:56
Show Gist options
  • Save saleh-old/b7ffa59124c2b74ff7dff8f0a78d1034 to your computer and use it in GitHub Desktop.
Save saleh-old/b7ffa59124c2b74ff7dff8f0a78d1034 to your computer and use it in GitHub Desktop.
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