-
Notifications
You must be signed in to change notification settings - Fork 1
/
tutorialRepeating.ipl
235 lines (216 loc) · 5.17 KB
/
tutorialRepeating.ipl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
//
// Imandra Inc.
// Copyright (c) 2024
//
// Code for 'Repeating Groups Tutorial'
//
// For further info see https://docs.imandra.ai
//
//
//
import FIX_4_4
@title: "Repeating Groups Tutorial"
messageFlows {
NewOrderFill {
name "NewOrderFill"
description "Initialise Book State, send NewOrderSingle Message then receive a fill action"
template[bookState, NewOrderSingle, fill]
}
}
internal state {
assignable{
Side : Side
Price :? Price
OrderQtyData.OrderQty : Qty
OrdStatus : OrdStatus = OrdStatus.PendingNew;
OrdType : OrdType
LeavesQty : Qty
CumQty : Qty
SpreadProportion :? float
Parties : Parties
OrderID : string
ExecType : ExecType = ExecType.PendingNew;
}
live_order : bool = false;
AvgPx : float
bestBid: Price
bestAsk: Price
}
extend enum OrdType {
StopSpread "s"
}
extend message NewOrderSingle {
SpreadProportion "10001" :? float
}
extend record Parties {
PartyIndex "10002" : int
}
repeatingGroup Parties {
req NoPartyIDs
req PartyID
req PartyIndex
req PtysSubGrp
}
repeatingGroup PtysSubGrp {
opt NoPartySubIDs
req PartySubIDType
opt PartySubID
}
message NewOrderSingle {
req ClOrdID
req Side
req TransactTime
req OrdType valid when it in [ OrdType.Limit, OrdType.Market, StopSpread ]
req OrderQtyData.OrderQty
opt SpreadProportion valid when case(it){None:true}{Some x: x>0.0 && x<=1.0}
opt Price
ign Account
req Parties valid when it.PartyIndex > 0 && it.PartyIndex < 100
valid when it.PartyID != "N/A"
validate {
(this.OrdType == OrdType.Market <==> !present(this.Price)) &&
(this.OrdType == OrdType.Limit ==> present(this.Price)) &&
(this.OrdType == OrdType.StopSpread ==> present(this.Price))
}
validate {
this.OrdType == StopSpread <==>
present(this.SpreadProportion)
}
validate {
this.OrdType != OrdType.Market ==>
(case this.Price
{Some price: price > 0.0}
{None: false}
)
}
validate {
case(this.Parties.PtysSubGrp.PartySubID)
{None:true}
{Some x : this.Parties.PartyID != x}
}
}
outbound message ExecutionReport {
req OrderID
req ExecID
req ExecType
req OrdStatus
req Side
req OrderQtyData.OrderQty
req LeavesQty
req CumQty
opt Text
req Parties
}
action fill {
fill_price : Price
fill_qty : Qty
validate {
state.OrdStatus != OrdStatus.PendingNew
}
validate {
this.fill_qty > 0.0
}
validate {
this.fill_qty <= state.LeavesQty
}
validate {
this.fill_price > 0.0
}
validate {
if ( state.Side == Side.Buy )
then ( this.fill_price >= state.bestAsk )
else ( this.fill_price <= state.bestBid )
}
validate {
(state.OrdType != OrdType.Market) ==>
( case state.Price
{ Some p:
if ( state.Side == Side.Buy ) then
( this.fill_price <= p )
else ( this.fill_price >= p )
}
{ None: true }
)
}
}
action bookState {
bestBid : Price
bestAsk : Price
validate{
this.bestAsk > this.bestBid &&
this.bestBid > 0.0 &&
this.bestAsk > 0.0
}
}
receive (f:fill) {
state.LeavesQty = state.LeavesQty - f.fill_qty
state.AvgPx = ( state.AvgPx * state.CumQty + f.fill_qty * f.fill_price ) / ( f.fill_qty + state.CumQty )
state.CumQty = state.CumQty + f.fill_qty
if state.LeavesQty == 0.0 then
{
state.OrdStatus = OrdStatus.Filled
state.ExecType = ExecType.Trade
}
else
{
state.OrdStatus = OrdStatus.PartiallyFilled
state.ExecType = ExecType.Trade
}
send ExecutionReport {
state with
ExecID = fresh();
}
}
receive (ba:bookState){
state.bestBid = ba.bestBid
state.bestAsk = ba.bestAsk
let spread = (state.bestAsk - state.bestBid)/state.bestAsk
if
(case(state.SpreadProportion){None:false}{Some x: x >= spread}) &&
state.OrdStatus == OrdStatus.PendingNew
then
state.OrdStatus = OrdStatus.New
}
receive (msg:NewOrderSingle) {
state.live_order = true
state.LeavesQty = msg.OrderQtyData.OrderQty
state.OrderID = fresh()
assignFrom(msg,state)
if msg.OrdType == StopSpread
then
case(msg.SpreadProportion)
{Some x:
if state.bestAsk != 0.0 then
if x >= (state.bestAsk - state.bestBid)/state.bestAsk
then
{
state.OrdStatus = OrdStatus.New
state.ExecType = ExecType.New
}
}
send ExecutionReport {
state with
ExecID = fresh();
}
}
reject (msg:NewOrderSingle, text:string)
{
missingfield:{
state.ExecType = ExecType.Rejected
state.OrdStatus = OrdStatus.Rejected
send ExecutionReport {
state with
ExecID = fresh();
Text = Some text;
}
}
invalidfield,invalid:{
state.ExecType = ExecType.Rejected
state.OrdStatus = OrdStatus.Rejected
send ExecutionReport {
state with
ExecID = fresh();
Text = Some text;
}
}
}