dt12685964

DanyEmas3

dt12685964 已更新   
//@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)


版本注释:
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
版本注释:
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
版本注释:
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
版本注释:
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
版本注释:
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
受保护脚本
该脚本是闭源发布的,您可以自由使用它。您可以收藏它以在图表上使用。您无法查看或修改其源代码。
免责声明

这些信息和出版物并不意味着也不构成TradingView提供或认可的金融、投资、交易或其它类型的建议或背书。请在使用条款阅读更多信息。

想在图表上使用此脚本?