Hello Community,
it would be great if one of you could give me some advice on my following problem.
How can I add additional BUY/SALE orders to the code below. My problem is that if my
strategy opens a BUY order for example and another BUY signal appears later my strategy didn’t
open an order.
——————————————————————-
indicator1 = RSI[20](close)
c1 = (indicator1 CROSSES OVER 25)
IF c1 THEN
BUY 1 CONTRACT AT MARKET
ENDIF
????
——————————————————————-