// BuyLong.itf EMA20 = ExponentialAverage[20](close) EMA50 = ExponentialAverage[50](close) EMA100 = ExponentialAverage[100](close) c1 = (close > EMA20) c2 = (EMA20 + 0.00010) > EMA50 AND (EMA50 + 0.00010) > EMA100 Return c1 and c2