#Показывает когда цена близка к ЕМА #Cнять галочку Include Extended Session #www.nyser.ru © def iPeriod = 200; #период скользящей средней def iDiff = 0.1; #расстояние до ЕМА в долларах def iDiffEMA = absValue(reference MovAvgExponential(close, iPeriod, 0)-close); plot out = iDiffEMA <= iDiff;