Skip to content

Instantly share code, notes, and snippets.

@pequet
Last active July 5, 2018 18:32
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save pequet/e5954ea7eedfde717a85065df9d2a8c9 to your computer and use it in GitHub Desktop.
Save pequet/e5954ea7eedfde717a85065df9d2a8c9 to your computer and use it in GitHub Desktop.
//@version=3
study("3MA")
plot(ema(close, 13), color=red, title="13 SMA")
plot(sma(close, 30), color=yellow, title="30 SMA")
plot(sma(close, 200), color=orange, title="200 SMA")
@alexpunct
Copy link

plot(ema(close, 200), color=orange, title="200 SMA")

Should this not be an SMA?

@pequet
Copy link
Author

pequet commented Jul 5, 2018

edited. thanks

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment