我想根据每个新挂单的价格变化设置止损单。问题是止损仅针对第一个订单执行。我这样写代码:
//@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)
有人可以向我解释这段代码有什么问题吗?