枢轴点添加退出策略

发布于 2025-01-11 11:20:39 字数 539 浏览 0 评论 0原文

我在 Tradingview 上发现了这个基于枢轴点的策略。我尝试在 R3 / S3 上添加退出策略,但它不起作用。有人可以帮助我吗?

strategy.risk.allow_entry_in(tradeDirection)
longCondition = crossover(Source, R1) and inDateRange
shortCondition = crossunder(Source, S1) and inDateRange

strategy.entry("Buy", strategy.long, when=longCondition, oca_name="oca", 
oca_type=strategy.oca.cancel)
strategy.exit("Exit Long", stop=R3)
strategy.entry("Sell", strategy.short, when=shortCondition, oca_name="oca", 
oca_type=strategy.oca.cancel)
strategy.exit("Exit Short", stop=S3)

I found this strategy on Tradingview based on pivot points. I tried to add an exit strategy on R3 / S3 but it doesn't work. Can someone help me?

strategy.risk.allow_entry_in(tradeDirection)
longCondition = crossover(Source, R1) and inDateRange
shortCondition = crossunder(Source, S1) and inDateRange

strategy.entry("Buy", strategy.long, when=longCondition, oca_name="oca", 
oca_type=strategy.oca.cancel)
strategy.exit("Exit Long", stop=R3)
strategy.entry("Sell", strategy.short, when=shortCondition, oca_name="oca", 
oca_type=strategy.oca.cancel)
strategy.exit("Exit Short", stop=S3)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

耀眼的星火 2025-01-18 11:20:39

使用限制停止

if (buy)
    strategy.entry("My Long Entry Id", strategy.long)
    
    strategy.exit("Exit Long", from_entry="My Long Entry Id",limit=R1)
    
if (sell)
    strategy.entry("My Short Entry Id", strategy.short)
    
    strategy.exit("Exit short", from_entry="My Short Entry Id",limit=S1)

use limit for stop

if (buy)
    strategy.entry("My Long Entry Id", strategy.long)
    
    strategy.exit("Exit Long", from_entry="My Long Entry Id",limit=R1)
    
if (sell)
    strategy.entry("My Short Entry Id", strategy.short)
    
    strategy.exit("Exit short", from_entry="My Short Entry Id",limit=S1)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文