using Newtonsoft.Json.Linq;
const string tickers = "AAPL,GOOG,GOOGL,YHOO,TSLA,INTC,AMZN,BIDU,ORCL,MSFT,ORCL,ATVI,NVDA,GME,LNKD,NFLX";
using (var web = new WebClient())
var url = string.Format("http://finance.google.com/finance/info?client=ig&q=NASDAQ%3A{0}", tickers);
json = web.DownloadString(url);
json = json.Replace("//", "");
var v = JArray.Parse(json);
var ticker = i.SelectToken("t");
var price = (decimal)i.SelectToken("l");
Console.WriteLine(string.Format("{0} : {1}", ticker, price));
Console.WriteLine("Press any key to exit");