logResponseMarketDepthExtraction.txtlogResponseRawTickExtraction.txt
Hi there, Im trying to extract tick data with DataScopeSelect .net library.
Im using Rics I previously found in SearchChainResolution function and passed it to the extraction functions.
As response I get an ExtractionId. But when I try to read the stream, I wont receive any payload. It ends the extraction after some time.
I ve attached the logs
here is my code to review the streamresponse:
var response = await _extractionsContext.ExtractRawAsync(request).ConfigureAwait(false);
var result = new StringBuilder();
var streamResponse = await _extractionsContext.GetReadStreamAsync(response).ConfigureAwait(false);
using (var reader = new StreamReader(streamResponse.Stream))
{
var resultStr = await reader.ReadLineAsync().ConfigureAwait(false);
while (!string.IsNullOrEmpty(resultStr))
{
result.AppendLine(resultStr);
resultStr = await reader.ReadLineAsync().ConfigureAwait(false);
}
}
Any help is appreciated
Thanks a lot!