🚀🚀高胜率指标源码🚀🚀🚀🚀

//@version=5
indicator(\”高胜率指标\”, overlay=true)
fastMA = ta.ema(close, 12)
slowMA = ta.ema(close, 26)
macdLine = fastMA – slowMA
signalLine = ta.ema(macdLine, 9)
histogram = macdLine – signalLine
rsi = ta.rsi(close, 14)
volumeMA = ta.sma(volume, 20)
buyCondition = ta.crossover(macdLine, signalLine) and rsi < 30 and volume > volumeMA
sellCondition = ta.crossunder(macdLine, signalLine) and rsi > 70 and volume > volumeMA
plotshape(buyCondition, style=shape.triangleup, location=location.belowbar, color=color.rgb(255, 182, 193), size=size.small)
indicator(\”高胜率指标\”, overlay=true)
fastMA = ta.ema(close, 12)
slowMA = ta.ema(close, 26)
macdLine = fastMA – slowMA
signalLine = ta.ema(macdLine, 9)
histogram = macdLine – signalLine
rsi = ta.rsi(close, 14)
volumeMA = ta.sma(volume, 20)
buyCondition = ta.crossover(macdLine, signalLine) and rsi < 30 and volume > volumeMA
sellCondition = ta.crossunder(macdLine, signalLine) and rsi > 70 and volume > volumeMA
plotshape(buyCondition, style=shape.triangleup, location=location.belowbar, color=color.rgb(255, 182, 193), size=size.small)
夜雨聆风
