gpt4 book ai didi

pine-script - TradingView Pine Script : check previous strategy. 新入场前的入场价

转载 作者:行者123 更新时间:2023-12-04 03:11:36 24 4
gpt4 key购买 nike

有人问了类似的问题,没有回应,我不允许补充。

Tradingview Pine script save close price at time of strategy entry

我正在尝试建立一个策略,该策略将多次购买(金字塔)以在收盘前平均下跌,但我想检查之前的入场价格以确保它低于配置的百分比。

到目前为止我所拥有的:

lastBuy=0

if (condition)
if (lastBuy==0)
lastBuy=close
strategy.entry("buy", true)
else
if ((close*1.01)<lastBuy)
lastBuy=close
strategy.entry("buy", true)

每次传递代码时,它都会将 lastBuy 重置为零,我永远不会检查之前的收盘价。如果我不设置它,我会收到未声明的错误。

在此先感谢您的帮助!

最佳答案

我如何将入场价格保存到变量中:

bought = strategy.opentrades[0] == 1 and strategy.position_size[0] > strategy.position_size[1]
entry_price = valuewhen(bought, open, 0)

关于pine-script - TradingView Pine Script : check previous strategy. 新入场前的入场价,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49214112/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com