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, не являются финансовыми, инвестиционными, торговыми или любыми другими рекомендациями. Мы не предоставляем советы по покупке и продаже активов. Подробнее — в Условиях использования TradingView.

Хотите использовать этот скрипт на графике?