ordertype=stoplimit
quantstrat の pair_trade.R デモにストップロス実装のルールを追加した後(以下にショートサイドのみを示します)、
# stop loss for short order (child)
add.rule(strategy=pairStrat, name = 'ruleSignal', arguments=list(sigcol='short',
sigval=TRUE,
replace=FALSE,
orderside='short',
ordertype='stoplimit',
tmult=TRUE,
prefer='Close',
TxnFees='TxnCost',
threshold=quote(.stoplossPercent),
orderqty='all',
orderset='ocoshort'),
type='chain', parent='Enter_Short',
label='StopLoss_Short',
enabled=FALSE)
次の方法で有効にします。
enable.rule(pairStrat,'chain',"StopLoss_Long","StopLoss_Short")
エラーが発生します:
Error in if (grepl(label, strategy$rules[[type]][[i]]$label)) strategy$rules[[type]][[i]]$enabled <- enabled :
argument is of length zero
それにもかかわらず、非常によく似たアプローチが、単一の商品ポートフォリオ戦略で成功しました。
ここで何が欠けていますか?