代码之家  ›  专栏  ›  技术社区  ›  Vendrel

有没有一个函数返回鼠标悬停的布尔值?V5

  •  0
  • Vendrel  · 技术社区  · 2 年前

    我只想为鼠标指向的某个蜡烛(或其垂直位置)绘制一些东西。

    例如:

    plot(MouseIsHovering ? SuperDuperEMA : na)
    
    0 回复  |  直到 2 年前
        1
  •  1
  •   beeholder    2 年前

    不,无法检查鼠标在松树上的悬停位置。最接近这一点的是交互式可移动输入 input.time(confirm=true) :

    //@version=5
    indicator("My script")
    bar = input.time(0, confirm=true)
    sma = ta.sma(close, 100)
    plot(time == bar ? sma : na)
    
    推荐文章