The official JS client library for the Symphony Fintech Trading API's
npm install xts-interactive-apibash
npm install xts-interactive-api
`
Usage
Access the interactive component of xts-interactive-api like below.
`js
var XTSInteractive = require('xts-interactive-api').Interactive;
`
Creating the instance of xtsInteractive
`js
xtsInteractive = new XTSInteractive('https://developers.symphonyfintech.in');
`
call the login API to generate the token
`js
var loginRequest = {
secretKey: 'Abcd@123',
appKey: '5a75a3616cabe678',
source: 'WEBAPI',
};
let logIn = await xtsInteractive.logIn(loginRequest);
`
Once the token is generated and userID is retrieved you can call any api provided in the documentation. All API’s are easy to integrate and implemented with async-await mechanism.
Below is the sample Code snippet which calls the balance API.
`js
let balance = await xtsInteractive.getBalance();
console.log(balance);
`
Instantiating the XTSInteractiveWS
This component provides functionality to access the socket related events. All real-time events can be registered via XTSInteractiveWS.
After token is generated, you can access the socket component and instantiate the socket Instance and call the init method of the socket like below
`js
var XTSInteractiveWS = require('xts-interactive-api').WS;
xtsInteractiveWS = new XTSInteractiveWS(
'https://developers.symphonyfintech.in'
);
var socketInitRequest = {
userID: 'XYZ',
token: 'ABCDJGJKHK', // Token Generated after successful LogIn
};
xtsInteractiveWS.init(socketInitRequest);
`
You can now register events to listen to the real time order and trade updates and will be receiving the json objects in the response.
`js
var registerEvents = async function () {
//instantiating the listeners for all event related data
//"connect" event listener
xtsInteractiveWS.onConnect((connectData) => {
console.log(connectData);
});
//"joined" event listener
xtsInteractiveWS.onJoined((joinedData) => {
console.log(joinedData);
});
//"error" event listener
xtsInteractiveWS.onError((errorData) => {
console.log(errorData);
});
//"disconnect" event listener
xtsInteractiveWS.onDisconnect((disconnectData) => {
console.log(disconnectData);
});
//"order" event listener
xtsInteractiveWS.onOrder((orderData) => {
console.log(orderData);
});
//"trade" event listener
xtsInteractiveWS.onTrade((tradeData) => {
console.log(tradeData);
});
//"position" event listener
xtsInteractiveWS.onPosition((positionData) => {
console.log(positionData);
});
//"logout" event listener
xtsInteractiveWS.onLogout((logoutData) => {
console.log(logoutData);
});
};
`
Detailed explanation of API and socket related events
Below is the brief information related to api’s provided by XTS-Interactive-API SDK.
Orders API
placeOrder
Calls POST /order.
`js
let response = await xtsInteractive.placeOrder({
exchangeSegment: 'NSECM',
exchangeInstrumentID: 22,
productType: 'NRML',
orderType: 'MARKET',
orderSide: 'BUY',
timeInForce: 'DAY',
disclosedQuantity: 0,
orderQuantity: 20,
limitPrice: 1500.0,
stopPrice: 1600.0,
orderUniqueIdentifier: '45485',
clientID: userID,
};);
`
modifyOrder
Calls PUT /order.
`js
let response = await xtsInteractive.modifyOrder({
appOrderID: 1200037025,
modifiedProductType: 'CO',
modifiedOrderType: 'MARKET',
modifiedOrderQuantity: 100,
modifiedDisclosedQuantity: 0,
modifiedLimitPrice: 300,
modifiedStopPrice: 300,
modifiedTimeInForce: 'DAY',
orderUniqueIdentifier: '454845',
clientID: userID,
});
`
cancelOrder
Calls DELETE /order.
`js
let response = await xtsInteractive.cancelOrder({
appOrderID: 1828071433,
orderUniqueIdentifier: 155151,
});
`
placeCoverOrder
Calls POST /order/cover.
`js
let response = await xtsInteractive.placeCoverOrder({
exchangeSegment: 'NSECM',
exchangeInstrumentID: 22,
orderSide: 'Buy',
orderQuantity: 2,
disclosedQuantity: 0,
limitPrice: 2054,
stopPrice: 2054,
orderType: 'MARKET',
orderUniqueIdentifier: '45485',
clientID: userID,
});
`
exitCoverOrder
Calls PUT /order/cover.
`js
let response = await xtsInteractive.exitCoverOrder({
appOrderID: '1400070884',
clientID: userID,
orderUniqueIdentifier: '454845',
});
`
getOrderBook
calls GET /order
`js
let response = await xtsInteractive.getOrderBook();
`
getTradeBook
calls GET /order/trade
`js
let response = await xtsInteractive.getTradeBook();
`
Positions API
getPositions
calls GET /portfolio/position
`js
let response = await xtsInteractive.getPositions({
dayOrNet: 'NetWise',
clientID: userID,
});
`
positionConversion
Calls PUT /portfolio/position/convert
`js
let response = await xtsInteractive.positionConversion({
exchangeSegment: 'NSECM',
exchangeInstrumentID: 1922,
oldProductType: 'MIS',
newProductType: 'CNC',
isDayWise: false,
targetQty: '1',
clientID: userID,
});
`
Holdings API
getHoldings
Calls GET /portfolio/holding
`js
let response = await xtsInteractive.getHoldings();
`
Balance API
getBalance
Calls GET /users/balance
`js
let response = await xtsInteractive.getBalance();
`
Profile API
getProfile
Calls GET /users/profile
`js
let response = await xtsInteractive.getProfile();
``