Skip to content

Instantly share code, notes, and snippets.

@robinraszka
Created October 29, 2018 07:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save robinraszka/9134f37b97ef2856410f17e9a5b4178c to your computer and use it in GitHub Desktop.
Save robinraszka/9134f37b97ef2856410f17e9a5b4178c to your computer and use it in GitHub Desktop.
//@version=3
study("TradeMaster BUYY™", overlay=true)
long = crossover(close, ema(high[3], 9)) and close > ema(close, 26)
plotchar(long, transp=100)
alertcondition(long, "BUYY", "BUYY")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment