-
Notifications
You must be signed in to change notification settings - Fork 1
/
tutorialActions.ipl
174 lines (159 loc) · 3.62 KB
/
tutorialActions.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
//
// Imandra Inc.
// Copyright (c) 2024
//
// Code for 'Tutorial Model with Actions'
//
// For further info see https://docs.imandra.ai
//
//
//
import FIX_4_4
@title: "Tutorial Model with Actions"
messageFlows {
NewOrderFill {
name "NewOrderFill"
description "Send NewOrderSingle Message then receive a fill action"
template [NewOrderSingle, fill]
}
}
internal state {
assignable{
Side : Side = Side.Buy;
Price :? Price
OrderQtyData.OrderQty : Qty = 0.0;
OrdStatus : OrdStatus = OrdStatus.PendingNew;
OrdType : OrdType = OrdType.Market;
LeavesQty : Qty = 0.0;
CumQty : Qty = 0.0;
OrderID : string
ExecType : ExecType = ExecType.PendingNew;
}
live_order : bool = false;
AvgPx : float = 0.0;
bestBid: Price = 0.0;
bestAsk: Price = 0.0;
}
message NewOrderSingle {
req ClOrdID
req Side
req TransactTime
req OrdType valid when it in [ OrdType.Limit, OrdType.Market ]
req OrderQtyData.OrderQty
opt Price
ign Account
validate {
(this.OrdType == OrdType.Market <==> !present(this.Price)) &&
(this.OrdType == OrdType.Limit ==> present(this.Price))
}
validate {
this.OrdType == OrdType.Limit ==>
(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 {
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.Limit) ==>
( 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
}
receive (msg:NewOrderSingle) {
state.live_order = true
state.LeavesQty = msg.OrderQtyData.OrderQty
state.OrderID = fresh()
state.OrdStatus = OrdStatus.New
state.ExecType = ExecType.New
assignFrom(msg,state)
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;
}
}
}