I am using ThomsonReuters.DswsApi DSDataRequest and have run a few times (five or six) for an Index and maybe 60 data columns
So out going data should be small enough. However our network is alerting us of large volumes of data going OUT of the network within a short period of time (1GiB+) to datastreamwide.refinitiv.com
Any idea why this is happening ?
DSDataRequest reqDSRequest = new DSDataRequest()
{
Instrument = new DSInstrument(arrSecurities),
DataTypes = new DSDataTypes(arrColumns),
Date = new DSSnapshotDate(DSDateType.Literal(DSDateLiterals.LatestDate))
};
DSDataResponse resDSResponse;
resDSResponse = DSClient.DataService.GetData(reqDSRequest);
Thanks
Fergal