Hi,
If I run:
request = timeSeries.SetupDataRequest("EUR=") .WithView("BID") //.WithAllFields() .WithFields("TIMESTAMP","CLOSE") .WithInterval(CommonInterval.Intraday30Minutes) .WithNumberOfPoints(10) .OnDataReceived(DataReceivedCallback) .CreateAndSend();
the code moves to the DataReceivedCall() function
However, if I replace WithView("BID") with WithView("NDA_RAW") it never gets there and the program does not finish:
request = timeSeries.SetupDataRequest("EUR=") .WithView("NDA_RAW") //.WithAllFields() .WithFields("TIMESTAMP","CLOSE") .WithInterval(CommonInterval.Intraday60Minutes) .WithNumberOfPoints(10) .OnDataReceived(DataReceivedCallback) .CreateAndSend();
What am I doing wrong please?
Thank you very much