Script Proxima Vela
Script Proxima Vela
input_group {
"Compra",
colorBuy = input { default = "green", type = input.color },
visibleBuy = input { default = true, type = input.plot_visibility }
}
input_group {
"Venda",
colorSell = input { default = "red", type = input.color },
visibleSell = input { default = true, type = input.plot_visibility }
}
plot_shape(
(BUY_CONDITION),
"COMPRA",
shape_style.triangleup,
shape_size.auto,
colorBuy,
shape_location.belowbar,
0,
"PODE COMPRA PROXIMA VELA",
"green"
)
plot_shape(
(SELL_CONDITION),
"VENDA",
shape_style.triangledown,
shape_size.auto,
colorSell,
shape_location.abovebar,
0,
"PODE VENDER PROXIMA VELA",
"red"
)