Merhabalar sizden ricam aşağıda belirttiğim indikatörü matrix ıq entegre etmem için yardımcı olabilir misiniz lütfen ?
////////////////////////////////////////////////////////////
// Copyright by @Nuovibusiness
// 4 EMA lines as per @Philakone EMA Cross strategy
//
////////////////////////////////////////////////////////////
study(title="4EMA", shorttitle="4EMA", overlay = true )
Length1 = input(9, minval=1)
Length2 = input(13, minval=1)
Length3 = input(21, minval=1)
Length4 = input(55, minval=1)
xPrice = close
xEMA1 = ema(xPrice, Length1)
xEMA2 = ema(xPrice, Length2)
xEMA3 = ema(xPrice, Length3)
xEMA4 = ema(xPrice, Length4)
plot(xEMA1, color=blue, title="4EMA 9")
plot(xEMA2, color=purple, title="4EMA 13")
plot(xEMA3, color=orange, title="4EMA 21")
plot(xEMA4, color=yellow, title="4EMA 55")