Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
您如何引用上面的条并永远记住该条?我只想在该特定柱之后对我的策略脚本进行交易。我需要什么表情afterBar?
afterBar
afterBar = ? longCondition = change(rsi(close,14)) if afterBar and longCondition strategy.entry()
您可以使用 PineCoders 发布的代码“如何检测特定日期/时间?”
并像这样修改它:
afterBar = savedOpen > 0 ? true : false