dt12685964

DanyEmas3

dt12685964 Aktualisiert   
//@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)


Versionshinweise:
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
Versionshinweise:
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
Versionshinweise:
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
Versionshinweise:
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
Versionshinweise:
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
Geschütztes Skript
Dieses Skript wird als Closed-Source veröffentlicht und Sie können es frei verwenden. Sie können es favorisieren, um es auf dem Chart zu verwenden. Sie können den Quellcode nicht einsehen oder verändern.
Haftungsausschluss

Die Informationen und Veröffentlichungen sind nicht als Finanz-, Anlage-, Handels- oder andere Arten von Ratschlägen oder Empfehlungen gedacht, die von TradingView bereitgestellt oder gebilligt werden, und stellen diese nicht dar. Lesen Sie mehr in den Nutzungsbedingungen.

Möchten Sie dieses Skript auf einem Chart verwenden?