Skip to content

Commit

Permalink
version: bump to 4.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ajinasokan committed Aug 21, 2023
1 parent 653941c commit 0ab164f
Show file tree
Hide file tree
Showing 5 changed files with 209 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 4.2.0

* New API to get Virtual contract notes

## 4.1.1

* AuctionNumber param in PlaceOrder
Expand Down
4 changes: 4 additions & 0 deletions Documentation/docs/changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 4.2.0

* New API to get Virtual contract notes

## 4.1.1

* AuctionNumber param in PlaceOrder
Expand Down
90 changes: 90 additions & 0 deletions Documentation/docs/reference.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,16 @@ Gets currently logged in user details

**Returns:** User profile

### ![Method](/assets/method.jpg)   Kite.GetVirtualContractNote

A virtual contract provides detailed charges order-wise for brokerage, STT, stamp duty, exchange transaction charges, SEBI turnover charge, and GST.

| Argument | Type | Description |
| --- | --- | --- |
| ContractNoteParams | Collections.Generic.List{ContractNoteParams} | List of all order params to get contract notes for |

**Returns:** List of contract notes for the params

### ![Method](/assets/method.jpg)   Kite.GetOrderMargins

Margin data for a specific order
Expand Down Expand Up @@ -635,6 +645,86 @@ Variety (Constants.VARIETY_REGULAR, Constants.VARIETY_AMO, etc.)

OrderMargin structure

## ![Class](/assets/class.jpg)   ContractNoteParams Class

ContractNoteParams structure

### ![Field](/assets/pubfield.jpg)   ContractNoteParams.OrderID

Order ID that is received in the orderbook

### ![Field](/assets/pubfield.jpg)   ContractNoteParams.Exchange

Exchange in which instrument is listed (Constants.EXCHANGE_NSE, Constants.EXCHANGE_BSE, etc.)

### ![Field](/assets/pubfield.jpg)   ContractNoteParams.TradingSymbol

Tradingsymbol of the instrument (ex. RELIANCE, INFY)

### ![Field](/assets/pubfield.jpg)   ContractNoteParams.TransactionType

Transaction type (Constants.TRANSACTION_TYPE_BUY or Constants.TRANSACTION_TYPE_SELL)

### ![Field](/assets/pubfield.jpg)   ContractNoteParams.Quantity

Order quantity

### ![Field](/assets/pubfield.jpg)   ContractNoteParams.AveragePrice

Average price

### ![Field](/assets/pubfield.jpg)   ContractNoteParams.Product

Product code (Constants.PRODUCT_CNC, Constants.PRODUCT_MIS, Constants.PRODUCT_NRML)

### ![Field](/assets/pubfield.jpg)   ContractNoteParams.OrderType

Order type (Constants.ORDER_TYPE_MARKET, Constants.ORDER_TYPE_SL, etc.)

### ![Field](/assets/pubfield.jpg)   ContractNoteParams.Variety

Variety (Constants.VARIETY_REGULAR, Constants.VARIETY_AMO, etc.)

## ![Class](/assets/class.jpg)   ContractNote Class

ContractNote structure

### ![Field](/assets/pubfield.jpg)   ContractNote.Exchange

Exchange in which instrument is listed (Constants.EXCHANGE_NSE, Constants.EXCHANGE_BSE, etc.)

### ![Field](/assets/pubfield.jpg)   ContractNote.TradingSymbol

Tradingsymbol of the instrument (ex. RELIANCE, INFY)

### ![Field](/assets/pubfield.jpg)   ContractNote.TransactionType

Transaction type (Constants.TRANSACTION_TYPE_BUY or Constants.TRANSACTION_TYPE_SELL)

### ![Field](/assets/pubfield.jpg)   ContractNote.Quantity

Order quantity

### ![Field](/assets/pubfield.jpg)   ContractNote.Price

Order price

### ![Field](/assets/pubfield.jpg)   ContractNote.Product

Product code (Constants.PRODUCT_CNC, Constants.PRODUCT_MIS, Constants.PRODUCT_NRML)

### ![Field](/assets/pubfield.jpg)   ContractNote.OrderType

Order type (Constants.ORDER_TYPE_MARKET, Constants.ORDER_TYPE_SL, etc.)

### ![Field](/assets/pubfield.jpg)   ContractNote.Variety

Variety (Constants.VARIETY_REGULAR, Constants.VARIETY_AMO, etc.)

### ![Field](/assets/pubfield.jpg)   ContractNote.Charges

Order charges

## ![Class](/assets/class.jpg)   OrderCharges Class

OrderCharges structure
Expand Down
107 changes: 107 additions & 0 deletions Documentation/kiteconnect.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions KiteConnect/KiteConnect.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@
<Authors>Ajin Asokan</Authors>
<Company>Zerodha Technology Pvt. Ltd.</Company>
<PackageId>Tech.Zerodha.KiteConnect</PackageId>
<Version>4.1.1</Version>
<AssemblyVersion>4.1.1</AssemblyVersion>
<FileVersion>4.1.1</FileVersion>
<Version>4.2.0</Version>
<AssemblyVersion>4.2.0</AssemblyVersion>
<FileVersion>4.2.0</FileVersion>
<Description>The official .Net client for communicating with Kite Connect API.</Description>
<Copyright>Copyright 2020</Copyright>
<Copyright>Copyright 2023</Copyright>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/zerodhatech/dotnetkiteconnect</PackageProjectUrl>
<PackageIconUrl>https://kite.zerodha.com/static/images/kite-logo.svg</PackageIconUrl>
Expand Down

0 comments on commit 0ab164f

Please sign in to comment.