-
Notifications
You must be signed in to change notification settings - Fork 1
/
tutorialCustom.ipl
209 lines (194 loc) · 4.69 KB
/
tutorialCustom.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
//
// Imandra Inc.
// Copyright (c) 2024
//
// Code for 'Custom Extensions Tutorial Model'
//
//
// For further info see https://docs.imandra.ai
//
//
import FIX_4_4
@title: "Custom Extensions Tutorial Model"
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
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
}
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
opt ExecInst default = {|ExecInst.Held|}
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}
)
}
}
outbound message ExecutionReport {
req OrderID
req ExecID
req ExecType
req OrdStatus
req Side
req OrderQtyData.OrderQty
req LeavesQty
req CumQty
opt Text
}
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 &&
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;
}
}
}