Skip to content

Commit a7b20c8

Browse files
committed
update on sellside ack/rej
python update on sellside ack/rej request samples
1 parent 7b1b6fc commit a7b20c8

File tree

5 files changed

+10
-4
lines changed

5 files changed

+10
-4
lines changed

.vs/VSWorkspaceState.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"ExpandedNodes": [
3+
""
4+
],
5+
"PreviewInSolutionExplorer": false
6+
}

.vs/emsx_api_repository/v16/.suo

13.5 KB
Binary file not shown.

.vs/slnx.sqlite

76 KB
Binary file not shown.

EMSXFullSet_Python/SellSideAck.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,9 +68,9 @@ def processServiceStatusEvent(self,event,session):
6868

6969
#request.set("EMSX_REQUEST_SEQ", 1)
7070

71-
request.setElement("EMSX_SEQUENCE", 1234567)
71+
request.append("EMSX_SEQUENCE", 1234567)
7272

73-
# If performing the ack on an order owned by another team member, provide owner's UUID
73+
# The following Element is currently not being used in this request.
7474
#request.set("EMSX_TRADER_UUID", 7654321)
7575

7676
print ("Request: %s" % request.toString())

EMSXFullSet_Python/SellSideReject.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,9 +68,9 @@ def processServiceStatusEvent(self,event,session):
6868

6969
#request.set("EMSX_REQUEST_SEQ", 1)
7070

71-
request.setElement("EMSX_SEQUENCE", 1234567)
71+
request.append("EMSX_SEQUENCE", 1234567)
7272

73-
# If performing the reject on an order owned by another team member, provide owner's UUID
73+
# The following Element is currently not being used in this request.
7474
#request.set("EMSX_TRADER_UUID", 7654321)
7575

7676
print ("Request: %s" % request.toString())

0 commit comments

Comments
 (0)