Skip to content

Commit c4044e7

Browse files
committed
Fixed docs
1 parent ca7c52c commit c4044e7

File tree

2 files changed

+78
-19
lines changed

2 files changed

+78
-19
lines changed

README.md

+28-19
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,22 @@
1-
Kite Connect API client for Javascript -- [https://kite.trade](kite.trade)
1+
# The Kite Connect API Javascript client
2+
The official Javascript node client for communicating with the [Kite Connect API](https://kite.trade).
23

3-
Rainmatter (c) 2016
4+
Kite Connect is a set of REST-like APIs that expose many capabilities required to build a complete investment and trading platform. Execute orders in real time, manage user portfolio, stream live market data (WebSockets), and more, with the simple HTTP API collection
45

5-
License
6-
-------
7-
KiteConnect Javascript library is licensed under the MIT License
6+
[Rainmatter](http://rainmatter.com) (c) 2016. Licensed under the MIT License.
87

9-
The library
10-
-----------
11-
Kite Connect is a set of REST-like APIs that expose
12-
many capabilities required to build a complete
13-
investment and trading platform. Execute orders in
14-
real time, manage user portfolio, stream live market
15-
data (WebSockets), and more, with the simple HTTP API collection
16-
17-
This module provides an easy to use abstraction over the HTTP APIs.
18-
The HTTP calls have been converted to methods and their JSON responses.
19-
See the **[Kite Connect API documentation](https://kite.trade/docs/connect/v1/)**
20-
for the complete list of APIs, supported parameters and values, and response formats.
8+
## Documentation
9+
- [Javascript client documentation](https://kite.trade/docs/kiteconnectjs)
10+
- [Kite Connect HTTP API documentation](https://kite.trade/docs/connect/v1)
2111

2212
Installation
2313
------------
2414
This module is installed via npm:
2515

2616
npm install --save kiteconnect
2717

28-
Getting started
29-
---------------
18+
Getting started with API
19+
------------------------
3020
var KiteConnect = require("kiteconnect").KiteConnect;
3121

3222
var kc = new KiteConnect("your_api_key");
@@ -68,6 +58,25 @@ All API calls returns a promise which you can use to call methods like `.then(..
6858

6959
You can access the full list of [Bluebird Promises API](https://github.com/petkaantonov/bluebird/blob/master/API.md) here.
7060

61+
Getting started WebSocket client
62+
--------------------------------
63+
var KiteTicker = require("kiteconnect").KiteTicker;
64+
var ticker = new KiteTicker(api_key, user_id, public_token);
65+
66+
ticker.connect();
67+
ticker.on("tick", setTick);
68+
ticker.on("connect", subscribe);
69+
70+
function setTick(ticks) {
71+
console.log("Ticks", ticks);
72+
}
73+
74+
function subscribe() {
75+
var items = [738561];
76+
ticker.subscribe(items);
77+
ticker.setMode(ticker.modeFull, items);
78+
}
79+
7180
A typical web application
7281
-------------------------
7382
In a typical web application where a new instance of

lib/index.js

+50
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,56 @@ var requestPromise = require("request-promise");
77

88
/**
99
* @classdesc API client class. In production, you may initialise a single instance of this class per `api_key`.
10+
* This module provides an easy to use abstraction over the HTTP APIs.
11+
* The HTTP calls have been converted to methods and their JSON responses.
12+
* See the **[Kite Connect API documentation](https://kite.trade/docs/connect/v1/)**
13+
* for the complete list of APIs, supported parameters and values, and response formats.
14+
*
15+
* Getting started with API
16+
* ------------------------
17+
* ~~~~
18+
* var KiteConnect = require("kiteconnect").KiteConnect;
19+
*
20+
* var kc = new KiteConnect("your_api_key");
21+
*
22+
* kc.requestAccessToken("request_token", "api_secret")
23+
* .then(function(response) {
24+
* init();
25+
* })
26+
* .catch(function(err) {
27+
* console.log(err.response);
28+
* })
29+
*
30+
* function init() {
31+
* // Fetch equity margins.
32+
* // You can have other api calls here.
33+
*
34+
* kc.margins("equity")
35+
* .then(function(response) {
36+
* // You got user's margin details.
37+
* }).catch(function(err) {
38+
* // Something went wrong.
39+
* });
40+
* }
41+
* ~~~~
42+
*
43+
* API promises
44+
* -------------
45+
* All API calls returns a promise which you can use to call methods like `.then(...)`, `.catch(...)`, and `.finally(...)`.
46+
*
47+
* ~~~~
48+
* kiteConnectApiCall
49+
* .then(function(v) {
50+
* // On success
51+
* })
52+
* .catch(function(e) {
53+
* // On rejected
54+
* })
55+
* .finally(function(e) {
56+
* // On finish
57+
* });
58+
* ~~~~
59+
* You can access the full list of [Bluebird Promises API](https://github.com/petkaantonov/bluebird/blob/master/API.md) here.
1060
* @constructor
1161
* @name KiteConnect
1262
*

0 commit comments

Comments
 (0)