outsidebar = not insidebar and ((high>=high[1] and low<=low[1])) plotshape(insidebar, title="I", style=shape.cross, location=location.belowbar, size=size.tiny,color=color.green, transp=0, offset=0) plotshape(outsidebar, title="O", style=shape.circle, location=location.belowbar,...
我试图使用tradingview上的自动转换功能将everget的obv指示器从on 4转换为5,但它给出了以下错误:转换失败,原因:第10行:第16行:'obv‘已经定义。 Line 10: signalType = input(title="Signal Smoothing Type", defval="SMA", options=["EMA", "SMA"]) Line 16: obv = cum(sign(change(src)) * volume...
indicator("OVR REAP Multi Time Frame EMA with Bar Count", "MTF 5xEMA & Bar Count", overlay=true, max_labels_count=500,max_bars_back = 5000) // MTF EMA部分 src = close bg3 = input.bool(false, title="To enable background color change") ma_len1 = input.int(title="EMA 1min", ...