Last active
July 5, 2018 18:32
-
-
Save pequet/e5954ea7eedfde717a85065df9d2a8c9 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//@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") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Should this not be an SMA?