// This Strategy/Indicator was Created by ©NoobSharks // if you use it and like it, send us some donation: BinancePay ID: 223731148 - Metamask: 0x82782b3ebD1d6bf7faa18a3943fA6f16EBBF3134 // (yes, I might be naive but I trully Believe you will support us) // For more information about this indicator check "https://www.youtube.com/c/NoobSharksLutanoMercadoCripto" and give us a hand following us on YouTube // Check also our website includeing strategies, free indicatores and technical analysis videos: https://www.noobsharks.com //@version=5 indicator(title='[NB] Indicator - Phicube Main Fractals', shorttitle='[NB]IND.PhicubeFractal', overlay=true) // ---- BASIC INPUTS ----- src = input(close, title = "General Source for EMAs calc") // ----- MAs CALCULATION ----- ema1 = 34 C_ema1 = ta.ema(src, ema1) ema6 = 72 C_ema6 = ta.ema(src, ema6) ema2 = 144 C_ema2 = ta.ema(src, ema2) ema3 = 610 C_ema3 = ta.ema(src, ema3) ema4 = 1300 C_ema4 = ta.ema(src, ema4) ema5 = 2600 C_ema5 = ta.ema(src, ema5) emaA = input.int(8, title = "EMA A - Periods", minval=0, group = "Your Personalized EMAs", inline = "EMA A - Periods") C_emaA = ta.ema(src, emaA) emaB = input.int(100, title = "EMA B - Periods", minval=0, group = "Your Personalized EMAs", inline = "EMA B - Periods") C_emaB = ta.ema(src, emaB) emaC = input.int(200, title = "EMA C - Periods", minval=0, group = "Your Personalized EMAs", inline = "EMA C - Periods") C_emaC = ta.ema(src, emaC) // ----- PLOT MOVING AVERAGES ----- plot(C_ema1, color=color.new(color.yellow, 0), style=plot.style_line, linewidth=2, title='EMA 34') plot(C_ema6, color=color.new(#ff0000, 0), linewidth=2, title='EMA 72') plot(C_ema2, color=color.new(#1E90FF, 0), style=plot.style_line, linewidth=2, title='EMA 144') plot(C_ema3, color=color.new(color.fuchsia, 0), style=plot.style_line, linewidth=2, title='EMA 610') plot(C_ema4, color=color.new(color.white, 0), linewidth=2, title='EMA 1300') plot(C_ema5, color=color.new(color.aqua, 0), linewidth=2, title='EMA 2600') plot(C_emaA, color=color.new(color.black, 0), style = plot.style_circles, title='EMA A') plot(C_emaB, color=color.new(color.black, 0), style = plot.style_circles, title='EMA B') plot(C_emaC, color=color.new(color.black, 0), style = plot.style_circles, title='EMA C')