在PineScript中,EMA云填充(EMA cloud fill)通常用作趋势指标。我们可以通过检测颜色变化来添加警报。下面是一个示例代码,在分析图表(tradingview)中使用,监视5分钟图表上的EMA 20/50与EMA 200。当EMA之间的关系发生变化时,将显示警报,并在窗口中弹出消息。
//@version=4
study(title = "EMA Cloud Fill", shorttitle="EMA Cloud", overlay=true)
src = input(hl2, title="Source")
emaLenShort = input(20, title="EMA Length Short")
emaLenLong = input(50, title="EMA Length Long")
emaLenSignal = input(200, title="EMA Length Signal")
emaShort = ema(src, emaLenShort)
emaLong = ema(src, emaLenLong)
plot(emaShort, color=color.red, linewidth=2)
plot(emaLong, color=color.green, linewidth=2)
cloudTop = plot(emaShort, color=color.red, linewidth=0, transp=75)
cloudBottom = plot(emaLong, color=color.green, linewidth=0, transp=75)
fill(cloudTop, cloudBottom, color=color.blue, transp=65)
alertcondition(cross(emaShort, emaLong), title="EMA Crossover", message="EMA Cloud Crossover on 5 Minute Chart")
在这个示例中,我们使用alertcondition函数添加了一个警报,当短期EMA和长期EMA发生交叉时触发。我们还使用message参数指定了触发警报时要显示的消息。
其中,cross(emaShort, emaLong)函数用于检测EMA之间的交叉,以触发警报。如果EMA的“红色”线短期EMA在上方,而“绿色”线长期EMA在下方,
上一篇:Addingalastcolumntocomputechangeinpercentage
下一篇:AddingallexpressionsinsidetheloopasORconditiontotheIQueryableobjectC#