如何平掉第二个目标价的全部剩余仓位?

发布于 2025-01-11 12:41:55 字数 1002 浏览 0 评论 0原文

我正在尝试设置 2 个 TP,但是我总是有一些剩余的东西需要第三个关闭来清理。

这是我当前的代码:

acct_size = input(500, group="Trading Settings")
pct_of_account_to_order = input(100, group="Trading Settings") / 100

qty = acct_size * pct_of_account_to_order / close

nbr_tps = input(3, group="Trading Settings")

qty_tp = qty / nbr_tps

qty_tp_pct = 0

现在这是我的尝试...

if strategy.position_size<strategy.position_size[1] and strategy.position_size>0
    qty_tp_pct := 100

if closeLongCond
    strategy.close("Long 1",qty=qty_tp,qty_percent=qty_tp_pct,alert_message=close_long_alert_msg)

无论我尝试什么,我仍然会挂在那里需要单独关闭的“剩余部分”,例如:

在此处输入图像描述

已阅读 qty_percent 胜过 qty 的优先级(在 pine至少版本 4),所以我认为将其设置为 100 会起作用,但没有骰子。确实需要一些帮助。

I am trying to set 2 TPs, however I always have a bit of leftover that needs a third close to clean up.

Here is my current code:

acct_size = input(500, group="Trading Settings")
pct_of_account_to_order = input(100, group="Trading Settings") / 100

qty = acct_size * pct_of_account_to_order / close

nbr_tps = input(3, group="Trading Settings")

qty_tp = qty / nbr_tps

qty_tp_pct = 0

Now here's my attempt...

if strategy.position_size<strategy.position_size[1] and strategy.position_size>0
    qty_tp_pct := 100

if closeLongCond
    strategy.close("Long 1",qty=qty_tp,qty_percent=qty_tp_pct,alert_message=close_long_alert_msg)

I'm still getting a "remainder" hanging there that needs to be closed separately, no matter what I try, e.g.:

enter image description here

I have read that qty_percent trumps qty in priority (in pine versin 4 at least), so I figured setting it to 100 would work, but no dice. Could really use some help.

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文