如何获得打开的蜡烛的最低价格?

问题描述 投票:0回答:1

松脚本

如何链接到我在 Pine Script 中进入交易的蜡烛? 我需要获得开仓蜡烛的低点,以便在那里设置止损。

我试图在Pine Script参考中找到解决方案,但没有成功。

position pine-script pine-script-v5 price pine-script-v4
1个回答
0
投票

我假设你有一个触发你进入的变量。像

entry_condition
这样的东西。您只需要使用此变量来检查您的入场条件是否为
true
并将
low
价格存储在
var
变量中。

var float stop_loss_price = na
stop_loss_price := entry_condition ? low : stop_loss_price // If it is a new entry, store the low price. Keep its old value otherwise

您可能希望在退出仓位时重置此变量。

此外,您需要确保您的

entry_condition
在您已经进行交易时不会变成
true
。否则,它将在交易中更新您的止损价格。

© www.soinside.com 2019 - 2024. All rights reserved.