string symbol = "EURUSD;AUDUSD"; int periodMinutes = 60*10; //////////////////////// Code App.Main.AddToOutputList(""); App.Main.AddToOutputList(""); string[] symbols = symbol.Split(';'); for(int i=0;i= 0) { DateTime date = desc.Date[lastIndex]; TimeSpan dif = DateTime.Now.ToUniversalTime().Subtract(date); if(dif.TotalMinutes > 0 && dif.TotalMinutes < periodMinutes) { App.Main.AddToOutputList(symbol + " -> (in " + (int)dif.TotalMinutes + " minute(s)) " + desc.Value[lastIndex] + " :: " + country.Value[lastIndex] + " :: Impact: " + imp.Value[lastIndex]); } } }