Maciej Ziolkowski
Maciej Ziolkowski

Reputation: 91

Update stop loss based on last entry price

I want to set stop loss order based on price changing for each new entry order. The problem is that stop loss is executed only for the first order. I wrote the code this way:

//@version=4
strategy("Mutual funds RSI Index",
 "MF_RSI_IDX",
 default_qty_type=strategy.percent_of_equity,
 default_qty_value=10,
 initial_capital=1000,
 calc_on_order_fills=true,
 currency=currency.USD,
 commission_type=strategy.commission.percent,
 commission_value=0.29,
 process_orders_on_close=true)


if (rsi(close, 14) < 30)
    strategy.entry("buy", strategy.long)
stopLoss = strategy.position_avg_price * 0.80
lastPeak = close * 0.80

sellSignal0 = rsi(close, 14) > 70
sellSignal1 = falling(close, 5)
sellSignal2 = stopLoss >= close
sellSignal3 = lastPeak >= close

strategy.close("buy", when = sellSignal2 or sellSignal3)
plotchar(lastPeak, char="x", location=location.absolute)
plot(strategy.equity)

Can someone explain to me what is wrong with this code?

Upvotes: 1

Views: 1920

Answers (1)

Michel_T.
Michel_T.

Reputation: 2821

//@version=4
strategy("Mutual funds RSI Index",
 "MF_RSI_IDX",
 overlay=true,
 default_qty_type=strategy.percent_of_equity,
 default_qty_value=10,
 initial_capital=1000,
 currency=currency.USD,
 commission_type=strategy.commission.percent,
 commission_value=0.29)


strategy.entry("buy", strategy.long, when=rsi(close, 14) < 30)

stopLoss = 0.0
if strategy.position_avg_price != 0
    stopLoss := max(strategy.position_avg_price * 0.9, nz(stopLoss[1]))

limitPrice = float(na)
// force exit
if rsi(close, 14) > 70
    limitPrice := 0.0

strategy.exit("buy", stop=stopLoss, limit=limitPrice)

Is that what you are looking for? I think it's better to close the position by exit here and note, that I removed calc_on_order_fills and process_orders_on_close, because they are pretty controversial.

Upvotes: 1

Related Questions