松脚本
如何链接到我在 Pine Script 中进入交易的蜡烛? 我需要获得开仓蜡烛的低点,以便在那里设置止损。
我试图在Pine Script参考中找到解决方案,但没有成功。
我假设你有一个触发你进入的变量。像
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
。否则,它将在交易中更新您的止损价格。