我正在尝试在一行上绘制一些数据。不幸的是,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)