Advertisement
Guest User

Untitled

a guest
Aug 22nd, 2019
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. //@version=4
  2. study(title="Two EMAs", overlay=true)
  3.  
  4. ma1 = ema(close, 9)
  5. ma2 = ema(close, 44)
  6. plot(ma1, color = color.red)
  7. plot(ma2, color = color.green)
  8. //plot(cross(ma1, ma2) ? ma1 : na, style = plot.style_cross, linewidth = 4)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement