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.
是否可以从其自己面板中的指标在价格条上画一条线?考虑添加一个 MACD 指标,当满足 MACD 条件时,在价格柱上画一条线。我试图避免使用带有 overlay=true 的指标的第二次迭代来完成此操作。
如果可能,您可以发布解决方案吗?
图表说明
如果您不想macd在主图表上使用指标,您可以定义一些输入值,然后在指标设置中选择所需指标的绘图名称
macd
//@version=5 indicator("My Script", overlay = true) histogram = input(close) if histogram < 0 line.new(bar_index, high, bar_index + 10, high) // some line.new logic