Advertisement
Guest User

Untitled

a guest
Dec 7th, 2019
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. // This source code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/
  2. // © emragecapital
  3.  
  4. //@version=3
  5. study("Ema_Signal", overlay = true)
  6.  
  7. fast = input(6)
  8. slow = input(22)
  9. Swing = input(50)
  10.  
  11. ma1 = ema(close,fast)
  12. ma2 = ema(close,slow)
  13.  
  14. crossover(ma1,ma2)
  15.  
  16. plot(ma1, title = "Fast Ma", color = black, style = line, linewidth = 1,transp = 70)
  17. plot(ma2, title = "Slow Ma", color = green, style = line, linewidth = 1,transp = 70)
  18.  
  19. plotshape(close,color = red,style=shape.arrowdown)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement