Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

instrument { name = "BornTraders Free Script",

icon="https://images.fibogroup.com/images/glossary/Buy_Sell.png", overlay = true }

input_group {
"BUY",
buy_color = input {default = "lime", type = input.color}
}

input_group {
"SELL",
sell_color = input {default = "red", type = input.color}
}

mycci = cci(close,200)
myrsi = rsi(close, 14)
mysto = stochastic(close,5)

-- Plot Signals CAR

plot_shape((myrsi > 80 and mycci > 200),


"SELL",
shape_style.arrowdown,
shape_size.huge,
sell_color,
shape_location.abovebar,
0,
"SELL",
sell_color)

plot_shape((mysto < 10 and myrsi < 20 and mycci < -200),


"BUY",
shape_style.arrowup,
shape_size.huge,
buy_color,
shape_location.belowbar,
0,
"BUY",
buy_color)

You might also like