You are on page 1of 3

SCRIPT GUT VIP M&M "LA PATRONA"

DONCHAIN CHANNELS (DESARROLLADO)

instrument { name = "Donchian Channels", overlay = true }


period = input (20, "front.period", input.integer, 1, 200)
input_group {
"front.top line",
upper_line_visible = input { default = true, type = input.plot_visibility },
upper_line_color = input { default = "#2384C2", type = input.color },
upper_line_width = input { default = 1, type = input.line_width }
}
input_group {
"front.middle line",
middle_line_visible = input { default = true, type = input.plot_visibility },
middle_line_color = input { default = "#FF7700", type = input.color },
middle_line_width = input { default = 1, type = input.line_width }
}
input_group {
"front.bottom line",
lower_line_visible = input { default = true, type = input.plot_visibility },
lower_line_color = input { default = "#2384C2", type = input.color },
lower_line_width = input { default = 1, type = input.line_width }
}
input_group {
"front.newind.adx.fill",
fill_visible = input { default = true, type = input.plot_visibility },
fill_color = input { default = rgba(35,132,194,0.08), type = input.color },
}
upper = highest (high, period)
lower = lowest (low, period)
middle = (upper + lower) / 2
if fill_visible then
fill { first = upper, second = lower, color = fill_color }
end
if upper_line_visible then
plot (upper, "front.top line", upper_line_color, upper_line_width)
end
if lower_line_visible then
plot (lower, "front.bottom line", lower_line_color, lower_line_width)
end
if middle_line_visible then
plot (middle, "front.middle line", middle_line_color, middle_line_width)
end

ELDER IMPULSE SYSTEM (DESARROLLADO)

instrument {
name = "Elder Impulse System"
}
input_group {
"MACD",
"Slow and fast EMA periods, used in MACD calculation",
fast = input (12, "front.platform.fast period", input.integer, 1, 250),
slow = input (26, "front.platform.fast period", input.integer, 1, 250)
}
input_group {
"front.platform.signal-line",
"Reference signal series period",
signal_period = input (9, "front.period", input.integer, 1, 250)
}
input_group {
"front.newind.emaperiod",
ema_period = input (13, "front.period", input.integer, 1, 250)
}
input_group {
"front.newind.barcolors",
positive = input { default = "#2CAC40", type = input.color },
neutral = input { default = "#C7CAD1", type = input.color },
negative = input { default = "#DB4931", type = input.color },
}
fastMA = ema(close, fast)
slowMA = ema(close, slow)
macd = fastMA - slowMA
signal = sma(macd, signal_period)
hist = macd - signal
ema13 = ema (close, ema_period)
local bar_color
if ema13 > ema13 [1] and hist > hist [1] then
bar_color = positive
elseif ema13 < ema13 [1] and hist < hist [1] then
bar_color = negative
else
bar_color = neutral
end
plot_candle (open, high, low, close, "ES", bar_color)

MA 100 EMA (FORMULA)

MA 200 EMA (FORMULA)

OSCILADOR ESTOCASTICO 13 - 8 - 5 - 80 - 20 (FORMULA)

EMMA 100 = EMMA 200


1.4652 = 1.4650 (+- 0.0005)

VELA
SGTE ENTRADA

IQ OPTION ACEPTA SCRIPT PERO BLOQUEA LOS BOT


DERIV / BINARY ACEPTA BOT PERO NO TRABAJA CON SCRIPT
MT4 / MT5 TRABAJAR CON SCRIPT Y BOT (BROKER) LLEGUE 71% IDEAL 78%

7 X 0.8 = 5.6 + 1 = 6.6 - 3 = 3.6


8 X 0.8 = 6.4 + 1 = 7.4 - 2 = 5.4

MARTINGALA

DONCHAIN CHANEL = ELDER = EMMA 100 = EMMA 200 = EST = 100/200 O 200/100 SEÑAL

You might also like