PROTECTED SOURCE SCRIPT

10% of 50 EMA

6
//version=5
indicator("10% of 50 EMA", overlay=true)

// 50-period EMA
ema50 = ta.ema(close, 50)

// 10% of 50 EMA
ema10pct = ema50 * 0.10

// Plot only 10% line
plot(ema10pct, color=color.red, title="10% of 50 EMA")

Disclaimer

The information and publications are not meant to be, and do not constitute, financial, investment, trading, or other types of advice or recommendations supplied or endorsed by TradingView. Read more in the Terms of Use.