I am not able to find the NT8 equivalent syntax for WebClient in the following code"
if (symbol == "") lookup = Instrument.FullName;
else lookup = symbol;
string baseURL = "http://download.finance.yahoo.com/d/quotes.csv?s="+lookup+"&f=n&e=.csv";
[COLOR="Red"][COLOR="Blue"]using[/COLOR](WebClient client = new WebClient()) [/COLOR]
text = client.DownloadString(baseURL);
text = text.Replace("\"","");

Comment