forked from zerodha/gokiteconnect
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathportfolio.go
124 lines (103 loc) · 3.81 KB
/
portfolio.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
package kiteconnect
import (
"fmt"
"net/http"
"net/url"
"github.com/google/go-querystring/query"
)
// Holding is an individual holdings response.
type Holding struct {
Tradingsymbol string `json:"tradingsymbol"`
Exchange string `json:"exchange"`
InstrumentToken uint32 `json:"instrument_token"`
ISIN string `json:"isin"`
Product string `json:"product"`
Price float64 `json:"price"`
Quantity int `json:"quantity"`
T1Quantity int `json:"t1_quantity"`
RealisedQuantity int `json:"realised_quantity"`
CollateralQuantity int `json:"collateral_quantity"`
CollateralType string `json:"collateral_type"`
AveragePrice float64 `json:"average_price"`
LastPrice float64 `json:"last_price"`
ClosePrice float64 `json:"close_price"`
PnL float64 `json:"pnl"`
DayChange float64 `json:"day_change"`
DayChangePercentage float64 `json:"day_change_percentage"`
}
// Holdings is a list of holdings
type Holdings []Holding
// Position represents an individual position response.
type Position struct {
Tradingsymbol string `json:"tradingsymbol"`
Exchange string `json:"exchange"`
InstrumentToken uint32 `json:"instrument_token"`
Product string `json:"product"`
Quantity int `json:"quantity"`
OvernightQuantity int `json:"overnight_quantity"`
Multiplier float64 `json:"multiplier"`
AveragePrice float64 `json:"average_price"`
ClosePrice float64 `json:"close_price"`
LastPrice float64 `json:"last_price"`
Value float64 `json:"value"`
PnL float64 `json:"pnl"`
M2M float64 `json:"m2m"`
Unrealised float64 `json:"unrealised"`
Realised float64 `json:"realised"`
BuyQuantity int `json:"buy_quantity"`
BuyPrice float64 `json:"buy_price"`
BuyValue float64 `json:"buy_value"`
BuyM2MValue float64 `json:"buy_m2m"`
SellQuantity int `json:"sell_quantity"`
SellPrice float64 `json:"sell_price"`
SellValue float64 `json:"sell_value"`
SellM2MValue float64 `json:"sell_m2m"`
DayBuyQuantity int `json:"day_buy_quantity"`
DayBuyPrice float64 `json:"day_buy_price"`
DayBuyValue float64 `json:"day_buy_value"`
DaySellQuantity int `json:"day_sell_quantity"`
DaySellPrice float64 `json:"day_sell_price"`
DaySellValue float64 `json:"day_sell_value"`
}
// Positions represents a list of net and day positions.
type Positions struct {
Net []Position `json:"net"`
Day []Position `json:"day"`
}
// ConvertPositionParams represents the input params for a position conversion.
type ConvertPositionParams struct {
Exchange string `url:"exchange"`
TradingSymbol string `url:"tradingsymbol"`
OldProduct string `url:"old_product"`
NewProduct string `url:"new_product"`
PositionType string `url:"position_type"`
TransactionType string `url:"transaction_type"`
Quantity string `url:"quantity"`
}
// GetHoldings gets a list of holdings.
func (c *Client) GetHoldings() (Holdings, error) {
var holdings Holdings
err := c.doEnvelope(http.MethodGet, URIGetHoldings, nil, nil, &holdings)
return holdings, err
}
// GetPositions gets user positions.
func (c *Client) GetPositions() (Positions, error) {
var positions Positions
err := c.doEnvelope(http.MethodGet, URIGetPositions, nil, nil, &positions)
return positions, err
}
// ConvertPosition converts postion's product type.
func (c *Client) ConvertPosition(positionParams ConvertPositionParams) (bool, error) {
var (
b bool
err error
params url.Values
)
if params, err = query.Values(positionParams); err != nil {
return false, NewError(InputError, fmt.Sprintf("Error decoding order params: %v", err), nil)
}
if err = c.doEnvelope(http.MethodPut, URIConvertPosition, params, nil, nil); err == nil {
b = true
}
return b, err
}