I am trying to make a time series request to get the most recent closing price for Apple.  I used your sample program.  I changed the request from EUR= to AAPL.O.  I changed .WithView from BID to CLOSE.  I am not getting data back.  What am I doing wrong? see code below:
publicvoid Launch()
        {
            Console.WriteLine("[2] Time series request example");
            Console.WriteLine("");
//     request = timeSeries.SetupDataRequest("EUR=")
            request = timeSeries.SetupDataRequest("AAPL.O")
            .WithView("CLOSE")
                .WithAllFields()
                .WithInterval(CommonInterval.Daily)
                .WithNumberOfPoints(10)
                .OnDataReceived(DataReceivedCallback)
                .CreateAndSend();
        }