作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在交易 View 的策略中,我输入了一个条目并有一个设置追踪止损的条件。同时我想要一个固定价格的止损单,但是当我下了两个strategy.exit()
命令,实际上只使用了一个,因为两者都是“停止”类型。但是可以通过调用 strategy.exit()
将退出命令替换为另一个退出命令。并给它相同的 id。所以我的想法是用另一个替换一个退出并返回,当它适合我时,这样只有一个退出订单同时处于事件状态。
假设我有一个策略,有条件进入一个特定价格的头寸,例如 conditionEnter
和 enterPrice
,进场时我也知道止损stopLossPrice
,所以我可以设置:
if conditionEnter
strategy.entry(id="longEnter", long=true, qty=1, limit=enterPrice
strategy.exit(id="longExit", from_entry="longEnter", qty_percent=100, stop=stopLossPrice)
conditionTrailingStopLoss
满足,我相应地替换它:
if conditionTrailingStopLoss
strategy.exit(id="longExit", from_entry="longEnter", qty=strategy.position_size * 0.2, trail_price=priceToTriggerTrailingStopLoss, trail_offset=100)
priceToTriggerTrailingStopLoss
等于或低于收盘价,以便立即设置追踪止损并追踪价格 100 个分时。请注意,即使它被执行,也只会退出当前位置的五分之一。
if strategy.position_size < strategy.position_size[1]
strategy.exit(id="longEnter", long=true, qty=1, limit=enterPrice
strategy.exit(id="longExit", from_entry="longEnter", qty_percent=100, stop=stopLossPrice)
id
对于完全不同的事情,三个退出订单都没有被执行!
最佳答案
我找到了一个解决方案,也可以用 strategy.order()
设置止损单命令,像这样:
if conditionEnter
strategy.entry(id="longEnter", long=true, qty=1, limit=enterPrice
strategy.order(id="stopLossLong", long=strategy.short,qty=strategy.position_size, limit=syminfo.mintick, stop=stopLossPrice)
关于pine-script - 为单次入场设置多个止损离场订单,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56879064/
我是一名优秀的程序员,十分优秀!