Guest User

Untitled

a guest
Oct 18th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. //@version=3
  2. study("MA test ", overlay=true)
  3. FastMA = sma(close, 9)
  4. SlowMA = sma(close, 15)
  5. Diff = FastMA - SlowMA
  6. if Diff > 0
  7. plotshape(Diff, style=shape.arrowup, location=location.belowbar, color=green)
Add Comment
Please, Sign In to add comment