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("3 MA - EMA13 SMA30 SMA200", overlay=true, scale=scale.right) | |
plot(ema(close, 13), color=red, title="13 EMA", linewidth=2, style=line, transp=20) | |
plot(sma(close, 30), color=yellow, title="30 SMA", linewidth=3, style=line, transp=20) | |
plot(sma(close, 200), color=white, title="S00 SMA", linewidth=3, style=line, transp=20) |