|
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). |
2 | 3 |
|
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 |
4 | 5 |
|
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. |
8 | 7 |
|
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) |
21 | 11 |
|
22 | 12 | Installation
|
23 | 13 | ------------
|
24 | 14 | This module is installed via npm:
|
25 | 15 |
|
26 | 16 | npm install --save kiteconnect
|
27 | 17 |
|
28 |
| -Getting started |
29 |
| ---------------- |
| 18 | +Getting started with API |
| 19 | +------------------------ |
30 | 20 | var KiteConnect = require("kiteconnect").KiteConnect;
|
31 | 21 |
|
32 | 22 | 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(..
|
68 | 58 |
|
69 | 59 | You can access the full list of [Bluebird Promises API](https://github.com/petkaantonov/bluebird/blob/master/API.md) here.
|
70 | 60 |
|
| 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 | + |
71 | 80 | A typical web application
|
72 | 81 | -------------------------
|
73 | 82 | In a typical web application where a new instance of
|
|
0 commit comments