forked from zerodha/gokiteconnect
-
Notifications
You must be signed in to change notification settings - Fork 0
/
orders.go
189 lines (156 loc) · 6.65 KB
/
orders.go
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
package kiteconnect
import (
"fmt"
"net/http"
"net/url"
"github.com/google/go-querystring/query"
"github.com/zerodha/gokiteconnect/v4/models"
)
// Order represents a individual order response.
type Order struct {
AccountID string `json:"account_id"`
PlacedBy string `json:"placed_by"`
OrderID string `json:"order_id"`
ExchangeOrderID string `json:"exchange_order_id"`
ParentOrderID string `json:"parent_order_id"`
Status string `json:"status"`
StatusMessage string `json:"status_message"`
StatusMessageRaw string `json:"status_message_raw"`
OrderTimestamp models.Time `json:"order_timestamp"`
ExchangeUpdateTimestamp models.Time `json:"exchange_update_timestamp"`
ExchangeTimestamp models.Time `json:"exchange_timestamp"`
Variety string `json:"variety"`
Modified bool `json:"modified"`
Meta map[string]interface{} `json:"meta"`
Exchange string `json:"exchange"`
TradingSymbol string `json:"tradingsymbol"`
InstrumentToken uint32 `json:"instrument_token"`
OrderType string `json:"order_type"`
TransactionType string `json:"transaction_type"`
Validity string `json:"validity"`
ValidityTTL int `json:"validity_ttl"`
Product string `json:"product"`
Quantity float64 `json:"quantity"`
DisclosedQuantity float64 `json:"disclosed_quantity"`
Price float64 `json:"price"`
TriggerPrice float64 `json:"trigger_price"`
AveragePrice float64 `json:"average_price"`
FilledQuantity float64 `json:"filled_quantity"`
PendingQuantity float64 `json:"pending_quantity"`
CancelledQuantity float64 `json:"cancelled_quantity"`
AuctionNumber string `json:"auction_number"`
Tag string `json:"tag"`
Tags []string `json:"tags"`
}
// Orders is a list of orders.
type Orders []Order
// OrderParams represents parameters for placing an order.
type OrderParams struct {
Exchange string `url:"exchange,omitempty"`
Tradingsymbol string `url:"tradingsymbol,omitempty"`
Validity string `url:"validity,omitempty"`
ValidityTTL int `url:"validity_ttl,omitempty"`
Product string `url:"product,omitempty"`
OrderType string `url:"order_type,omitempty"`
TransactionType string `url:"transaction_type,omitempty"`
Quantity int `url:"quantity,omitempty"`
DisclosedQuantity int `url:"disclosed_quantity,omitempty"`
Price float64 `url:"price,omitempty"`
TriggerPrice float64 `url:"trigger_price,omitempty"`
Squareoff float64 `url:"squareoff,omitempty"`
Stoploss float64 `url:"stoploss,omitempty"`
TrailingStoploss float64 `url:"trailing_stoploss,omitempty"`
IcebergLegs int `url:"iceberg_legs,omitempty"`
IcebergQty int `url:"iceberg_quantity,omitempty"`
AuctionNumber string `url:"auction_number,omitempty"`
Tag string `json:"tag" url:"tag,omitempty"`
}
// OrderResponse represents the order place success response.
type OrderResponse struct {
OrderID string `json:"order_id"`
}
// Trade represents an individual trade response.
type Trade struct {
AveragePrice float64 `json:"average_price"`
Quantity float64 `json:"quantity"`
TradeID string `json:"trade_id"`
Product string `json:"product"`
FillTimestamp models.Time `json:"fill_timestamp"`
ExchangeTimestamp models.Time `json:"exchange_timestamp"`
ExchangeOrderID string `json:"exchange_order_id"`
OrderID string `json:"order_id"`
TransactionType string `json:"transaction_type"`
TradingSymbol string `json:"tradingsymbol"`
Exchange string `json:"exchange"`
InstrumentToken uint32 `json:"instrument_token"`
}
// Trades is a list of trades.
type Trades []Trade
// GetOrders gets list of orders.
func (c *Client) GetOrders() (Orders, error) {
var orders Orders
err := c.doEnvelope(http.MethodGet, URIGetOrders, nil, nil, &orders)
return orders, err
}
// GetTrades gets list of trades.
func (c *Client) GetTrades() (Trades, error) {
var trades Trades
err := c.doEnvelope(http.MethodGet, URIGetTrades, nil, nil, &trades)
return trades, err
}
// GetOrderHistory gets history of an individual order.
func (c *Client) GetOrderHistory(OrderID string) ([]Order, error) {
var orderHistory []Order
err := c.doEnvelope(http.MethodGet, fmt.Sprintf(URIGetOrderHistory, OrderID), nil, nil, &orderHistory)
return orderHistory, err
}
// GetOrderTrades gets list of trades executed for a particular order.
func (c *Client) GetOrderTrades(OrderID string) ([]Trade, error) {
var orderTrades []Trade
err := c.doEnvelope(http.MethodGet, fmt.Sprintf(URIGetOrderTrades, OrderID), nil, nil, &orderTrades)
return orderTrades, err
}
// PlaceOrder places an order.
func (c *Client) PlaceOrder(variety string, orderParams OrderParams) (OrderResponse, error) {
var (
orderResponse OrderResponse
params url.Values
err error
)
if params, err = query.Values(orderParams); err != nil {
return orderResponse, NewError(InputError, fmt.Sprintf("Error decoding order params: %v", err), nil)
}
err = c.doEnvelope(http.MethodPost, fmt.Sprintf(URIPlaceOrder, variety), params, nil, &orderResponse)
return orderResponse, err
}
// ModifyOrder modifies an order.
func (c *Client) ModifyOrder(variety string, orderID string, orderParams OrderParams) (OrderResponse, error) {
var (
orderResponse OrderResponse
params url.Values
err error
)
if params, err = query.Values(orderParams); err != nil {
return orderResponse, NewError(InputError, fmt.Sprintf("Error decoding order params: %v", err), nil)
}
err = c.doEnvelope(http.MethodPut, fmt.Sprintf(URIModifyOrder, variety, orderID), params, nil, &orderResponse)
return orderResponse, err
}
// CancelOrder cancels/exits an order.
func (c *Client) CancelOrder(variety string, orderID string, parentOrderID *string) (OrderResponse, error) {
var (
orderResponse OrderResponse
params url.Values
)
if parentOrderID != nil {
// initialize the params map first
params := url.Values{}
params.Add("parent_order_id", *parentOrderID)
}
err := c.doEnvelope(http.MethodDelete, fmt.Sprintf(URICancelOrder, variety, orderID), params, nil, &orderResponse)
return orderResponse, err
}
// ExitOrder is an alias for CancelOrder which is used to cancel/exit an order.
func (c *Client) ExitOrder(variety string, orderID string, parentOrderID *string) (OrderResponse, error) {
return c.CancelOrder(variety, orderID, parentOrderID)
}