我试图在一行上绘制一些数据。不幸的是,Trading View 的 hline() 绘图功能不允许我有条件地更改它的颜色。plot() 函数可以,所以我试图用这个函数来绘制我的 x 值数据点。
我想将系列中的所有 y 值更改/覆盖为单个数字。
像这样的东西
ema = ema(close, 100)
emaCustom = ema(close(close(x), 25), 200)// doesn't exist
想法?:)
当前的脏修复:
lineFixed = (close - close) + 25 // e.g. desired y-value 25
// if I don't add at least one series to the formula, the plot() function won't work
lineColor = close > ema(close, 100) ? green : red
plot(linefixed, color=lineColor)