PROTECTED SOURCE SCRIPT
10% of 50 EMA

//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")
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")
Protected script
This script is published as closed-source. However, you can use it freely and without any limitations – learn more here.
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.
Protected script
This script is published as closed-source. However, you can use it freely and without any limitations – learn more here.
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.