FX
Topics
24 Oct 2022, 10:48
757
4
Replies
FX.Berlin
26 Sep 2022, 13:20
RE: How did you fix the issue?
BLN.FX.CE said:
I have the same problem....
Update: Issue resolved itself. Must have been an issue on server side.
@FX.Berlin
FX.Berlin
02 Nov 2022, 09:10
Solution: The issue was in my code. The output I copied was received by "OnMessage(ProtoMessage message)". The correct way to request open positions is the following:
_client.ObserveOn(SynchronizationContext.Current).OfType<ProtoOAReconcileRes>().Subscribe(OnPositionListResponse);
...
private void OnPositionListResponse(ProtoOAReconcileRes response)
....
@FX.Berlin