PROTECTED SOURCE SCRIPT
Updated

MA-EMA-BB - Nakajima

Some MA and EMA that you can hide/show
Bollinger Bands
Ichimoku
Fibonacci
Fractals
Release Notes
You can show / hide the indicators you want on a single indicator

5 MA + Cross Over
5 EMA + Cross Over
Fibonacci
Fractals
Support Resistance
Ichimoku
Bollinger Bands

Enjoy !
Release Notes
5 MA + Cross Over
5 EMA + Cross Over
Fibonacci
Fractals
Support Resistance
Ichimoku
Bollinger Bands

Enjoy !
Release Notes
test
Release Notes
//version=3
study(title="MA-EMA - Nakajima", shorttitle="MA-EMA - Nkj", overlay=true)
///
//MA inputs
sma1_len = input(7, minval=1, title="MA 1 Length")
sma2_len = input(25, minval=1, title="MA 2 Length")
sma3_len = input(40, minval=1, title="MA 3 Length")
sma4_len = input(55, minval=1, title="MA 4 Length")
sma5_len = input(99, minval=1, title="MA 5 Length")
sma6_len = input(100, minval=1, title="MA 6 Length")
sma7_len = input(120, minval=1, title="MA 7 Length")
sma8_len = input(200, minval=1, title="MA 8 Length")

ema1_len = input(8, minval=1, title="EMA 1 Length")
ema2_len = input(13, minval=1, title="EMA 2 Length")
ema3_len = input(21, minval=1, title="EMA 3 Length")
ema4_len = input(26, minval=1, title="EMA 4 Length")
ema5_len = input(40, minval=1, title="EMA 5 Length")
ema6_len = input(55, minval=1, title="EMA 6 Length")
ema7_len = input(100, minval=1, title="EMA 7 Length")
ema8_len = input(200, minval=1, title="EMA 8 Length")

//MA's function
sma1 = sma(close,sma1_len)
sma2 = sma(close,sma2_len)
sma3 = sma(close,sma3_len)
sma4 = sma(close,sma4_len)
sma5 = sma(close,sma5_len)
sma6 = sma(close,sma6_len)
sma7 = sma(close,sma7_len)
sma8 = sma(close,sma8_len)

ema1 = ema(close,ema1_len)
ema2 = ema(close,ema2_len)
ema3 = ema(close,ema3_len)
ema4 = ema(close,ema4_len)
ema5 = ema(close,ema5_len)
ema6 = ema(close,ema6_len)
ema7 = ema(close,ema7_len)
ema8 = ema(close,ema8_len)


//Plotting MA
plot(sma1, color=navy, title="MA 1")
plot(sma2, color=yellow, title="MA 2")
plot(sma3, color=maroon, title="MA 3")
plot(sma4, color=green, title="MA 4")
plot(sma5, color=purple, title="MA 5")
plot(sma6, color=teal, title="MA 6")
plot(sma7, color=orange, title="MA 7")
plot(sma8, color=red, title="MA 8")

plot(ema1, color=navy, title="EMA 1")
plot(ema2, color=yellow, title="EMA 2")
plot(ema3, color=maroon, title="EMA 3")
plot(ema4, color=green, title="EMA 4")
plot(ema5, color=purple, title="EMA 5")
plot(ema6, color=teal, title="EMA 6")
plot(ema7, color=orange, title="EMA 7")
plot(ema8, color=red, title="EMA 8")
Release Notes
tesst
Release Notes
More EMA - SMA - DMA
ICHIMOKU
BOLLINGER BANDS
SUPPORT / RESISTANCE

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.