dt12685964

DanyEmas3

dt12685964 Updated   
//@version=3
//DanyTorres 8/2018

strategy(title="DanyEmas3", overlay=true)



//pivote
sd = input(true, title="Mostrar Pivotes Diarios")
sw = input(false, title="Mostrar Pivotes Semanales")
xHigh = security(tickerid,"D", high)
xLow = security(tickerid,"D", low)
xClose = security(tickerid,"D", close)


dPP = (xHigh+xLow+xClose) / 3
dR1 = dPP+(dPP-xLow)
dS1 = dPP-(xHigh - dPP)
dR2 = dPP + (xHigh - xLow)
dS2 = dPP - (xHigh - xLow)
dR3 = xHigh + 2 * (dPP - xLow)
dS3 = xLow - 2 * (xHigh - dPP)

plot(sd and dPP ? dPP : na, color=yellow, title="PP Diario", style = circles, linewidth = 1, transp=0)
plot(sd and dS1 ? dS1 : na, color=#ff0000, title="S1 Diario", style = circles, linewidth = 1, transp=0)
plot(sd and dS2 ? dS2 : na, color=#ff002a, title="S2 Diario", style = circles, linewidth = 1, transp=0)
plot(sd and dS3 ? dS3 : na, color=#ff014a, title="S3 Diario", style = circles, linewidth = 1, transp=0)
plot(sd and dR1 ? dR1 : na, color=#009600, title="R1 Diario", style = circles, linewidth = 1, transp=0)
plot(sd and dR2 ? dR2 : na, color=#006F00, title="R2 Diario", style = circles, linewidth = 1, transp=0)
plot(sd and dR3 ? dR3 : na, color=#004900, title="R3 Diario", style = circles, linewidth = 1, transp=0)



//emas

short = sma(close, 5)
long = sma(close, 17)
Slong = sma(close, 200)
Slong1 = sma(close, 1)

//emas
plot(Slong, color = blue, linewidth = 2 )
plot(short, color = green, linewidth = 2)
plot(long, color = red, linewidth = 2 )
plot(Slong1, color = gray)


//emas


plotcolour = iff (volume < (10), red, green)
plot(crossover(Slong1, long) ? long : na, title = "P Entrada", style = circles , linewidth = 3, color = plotcolour)

plot(crossover(short, long) ? long : na, title = "Entrada",style = circles , linewidth = 6, color = green)
plot(crossunder(Slong1, short) ? short: na, title = "P Salida", style = cross , linewidth =3, color= gray)
plot(crossunder(short, long) ? long : na, title = "Salida",style = cross , linewidth = 5, color = red)


Release Notes:
DanyEmas3

Te brinda una Pre Entrada (Circulo Rojo pequeno) y Entrada(circulo rojo Grande) basada en Banda Rsi, Macd y Cruce de Emas rapidas .
Te brinda salidas Pre salida (Crus gris) basada en accion precio y salida de volumen. y salida (cruz roja grande) basada en cruce de emas y banda Rsi

Ademas tiene los apyos de Soprtes Y Resistencias.

Espero los ayude este aporte. saludos
Release Notes:
DanyEmas3 It is a great tool where it tells you inputs, outputs, supports, resistances, where it shows you with ema 200 when you are in a trend up and down.

safe entrance green circle
unsafe entrance yellow circle
pre output X white
Red X output

the emas of 200 turns blue in high tendency and yellow in low tendency.

try it you will not regret it.

dany torres
Release Notes:
Notas de prensa: DanyEmas3 It is a great tool where it tells you inputs, outputs, supports, resistances, where it shows you with ema 200 when you are in a trend up and down.

safe entrance green circle
unsafe entrance yellow circle
pre output X white
Red X output

the emas of 200 turns blue in high tendency and yellow in low tendency.

try it you will not regret it.

dany torres
Release Notes:
Notas de prensa: DanyEmas3 It is a great tool where it tells you inputs, outputs, supports, resistances, where it shows you with ema 200 when you are in a trend up and down.

safe entrance green circle
unsafe entrance yellow circle
pre output X white
Red X output

the emas of 200 turns blue in high tendency and yellow in low tendency.

try it you will not regret it.

dany torres
Release Notes:
DanyEmas3 It is a great tool where it tells you inputs, outputs, supports, resistances, where it shows you with ema 200 when you are in a trend up and down.

safe entrance green circle
unsafe entrance yellow circle
pre output X white
Red X output

the emas of 200 turns blue in high tendency and yellow in low tendency.

try it you will not regret it.

dany torres
Protected script
This script is published closed-source but you may use it freely. You can favorite it to use it on a chart. You cannot view or modify its source code.
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.

Want to use this script on a chart?