decimal gap = QuickQuote.Fetch("IBM").open - BarListImpl.DayFromGoogle("IBM").RecentBar.Close;
decimal GAPAMT = 1;
List<string> gapped = new List<string>();
foreach (string sym in SymbolList.All)
{
decimal gap = QuickQuote.Fetch(sym).open - BarListImpl.DayFromGoogle(sym).Close;
if (Math.Abs(gap)>GAPAMT)
gapped.Add(sym);
System.Threading.Thread.Sleep(10);
}
FetchTarget ft = new FetchTarget();
ft.Url = "http://finance.yahoo.com/briefinginplay.html";
Basket symbols = ft.URL();
// then do same thing
foreach (Security s in symbols)
{
string sym = s.Symbol;
decimal gap = QuickQuote.Fetch(sym).open - BarListImpl.DayFromGoogle(sym).Close;
if (Math.Abs(gap)>GAPAMT)
gapped.Add(sym);
System.Threading.Thread.Sleep(10);
}