TARGET BLACKBELT
TARGET BLACKBELT
TARGET BLACKBELT
input_group {
"COMPRAR",
comprar_color = input {default = "black", type = input.color}
}
input_group {
"VENDER",
vender_color = input {default = "black", type = input.color}
}
--IMPULSOS
-- RETRAES
plot_shape((open < up_band and high > up_band and close <= up_band and expo >
up_band),
"VENDER",
shape_style.arrowdown,
shape_size.huge,
vender_color,
shape_location.abovebar,
0,
"VENDA",
vender_color)
plot_shape((open > down_band and low < down_band and close >= down_band and
expo < down_band),
"COMPRAR",
shape_style.arrowup,
shape_size.huge,
comprar_color,
shape_location.belowbar,
0,
"COMPRA",
comprar_color)
end