#Thinkorswim filter for Watchlist #Показывает IQ акции #Thinkorswim https://RadchenkoVY.com/TOS def length = 14; # сколько дней учитывать при расчетах показателей input AvgVolume = {default "1", "0"}; input ATR = {default "1", "0"}; def iATR = Round((Average(high(period = "DAY"), length ) - Average(low(period = "DAY"), length )), 2); def iAvgVolume = Round(Average (volume(period = "DAY")[1], length), 1); plot IQ = round ((iAvgVolume/390*iATR/1000),0);