Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
xts-marketdata-api
Advanced tools
The official JS client library for the Symphony Fintech MarketData API's
Welcome to the XTS-MarketData-API SDK, This repository is Official Node.js library for Symphony XTS-MarketData-API.
API Documentation for XTS-MarketData API can be found in the below link.
https://symphonyfintech.com/xts-market-data-front-end-api/
The XTS market data API provides developer, data-scientist, financial analyst and investor the market data with very low latency. It provides market data from various Indian electronic exchanges.
With the use of the socket.io library, the API has streaming capability and will push data notifications in a JSON format.
There is also an examples folder available which illustrates how to create a connection to XTS marketdata component in order to subscribe to real-time events. Please request for apikeys with Symphony Fintech developer support team to start integrating your application with XTS OEMS.
npm install xts-marketdata-api
Access the interactive component of xts-marketdata-api like below.
var XtsMarketDataAPI = require('xts-marketdata-api').XtsMarketDataAPI;
Creating the instance of xtsMarketDataAPI
xtsMarketDataAPI = new XtsMarketDataAPI(
'https://developers.symphonyfintech.in/marketdata'
);
call the login API to generate the token
var loginRequest = {
secretKey: 'Drty585#w',
appKey: 'c4e15efa9c97e489f80873',
};
let logIn = await xtsMarketDataAPI.logIn(loginRequest);
Once the token is generated 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 client config API.
let response = await xtsMarketDataAPI.clientConfig();
console.log(response);
This component provides functionality to access the socket related events. All real-time events can be registered via XtsMarketDataWS . 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
var XtsMarketDataWS = require('xts-marketdata-api').WS;
xtsMarketDataWS = new XtsMarketDataWS('https://developers.symphonyfintech.in/marketdata');
var socketInitRequest = {
userID: 'XYZ',
publishFormat: 'JSON',
broadcastMode: 'Full',
token: logIn.result.token, // Token Generated after successful LogIn
};
xtsMarketDataWS.init(socketInitRequest);
You can now register events to listen to the real time market data events and will be receiving the json objects in the response.
var registerEvents = async function () {
//instantiating the listeners for all event related data
//"connect" event listener
xtsMarketDataWS.onConnect((connectData) => {
console.log(connectData);
});
//"joined" event listener
xtsMarketDataWS.onJoined((joinedData) => {
console.log(joinedData);
});
//"error" event listener
xtsMarketDataWS.onError((errorData) => {
console.log(errorData);
});
//"disconnect" event listener
xtsMarketDataWS.onDisconnect((disconnectData) => {
console.log(disconnectData);
});
//"marketDepthEvent" event listener
xtsMarketDataWS.onMarketDepthEvent((marketDepthData) => {
console.log(marketDepthData);
});
//"openInterestEvent" event listener
xtsMarketDataWS.onOpenInterestEvent((openInterestData) => {
console.log(openInterestData);
});
//"indexDataEvent" event listener
xtsMarketDataWS.onIndexDataEvent((indexData) => {
console.log(indexData);
});
//"marketDepth100Event" event listener
xtsMarketDataWS.onMarketDepth100Event((marketDepth100Data) => {
console.log(marketDepth100Data);
});
//"instrumentPropertyChangeEvent" event listener
xtsMarketDataWS.onInstrumentPropertyChangeEvent((propertyChangeData) => {
console.log(propertyChangeData);
});
//"candleDataEvent" event listener
xtsMarketDataWS.onCandleDataEvent((candleData) => {
console.log(candleData);
});
// //"logout" event listener
xtsMarketDataWS.onLogout((logoutData) => {
console.log(logoutData);
});
};
Below is the brief information related to api’s provided by XTS-marketdata-API SDK.
Calls POST /instruments/subscription.
let response = await xtsMarketDataAPI.subscription({
instruments: [
{
exchangeSegment: xtsMarketDataAPI.exchangeSegments.NSECM,
exchangeInstrumentID: 22,
},
{
exchangeSegment: xtsMarketDataAPI.exchangeSegments.NSECM,
exchangeInstrumentID: 11536,
},
],
xtsMessageCode: 1502,
};
Calls PUT /instruments/subscription.
let response = await xtsMarketDataAPI.unSubscription({
instruments: [
{
exchangeSegment: xtsMarketDataAPI.exchangeSegments.NSECM,
exchangeInstrumentID: 2885,
},
{
exchangeSegment: xtsMarketDataAPI.exchangeSegments.NSECM,
exchangeInstrumentID: 11536,
},
],
xtsMessageCode: 1502,
});
Calls POST /instruments/quotes.
let response = await xtsMarketDataAPI.getQuotes({
isTradeSymbol: isTradeSymbol,
instruments: [
{
exchangeSegment: xtsMarketDataAPI.exchangeSegments.NSECM,
exchangeInstrumentID: 2885,
},
{
exchangeSegment: xtsMarketDataAPI.exchangeSegments.NSECM,
exchangeInstrumentID: 11536,
},
],
xtsMessageCode: 1502,
publishFormat: 'JSON',
});
Calls POST /config/clientConfig.
let response = await xtsMarketDataAPI.clientConfig();
Calls POST /search/instrumentsbyid.
let response = await xtsMarketDataAPI.searchInstrumentsById({
source: 'WEBAPI',
isTradeSymbol: false,
instruments: [
{
exchangeSegment: xtsMarketDataAPI.exchangeSegments.NSECM,
exchangeInstrumentID: '3045',
},
],
});
Calls POST /search/instruments.
let response = await xtsMarketDataAPI.searchInstrument({
searchString: 'REL',
source: source,
});
We do have a trading API component which will provide the trading capability of our application. For more info please check the following link.
FAQs
The official JS client library for the Symphony Fintech MarketData API's
We found that xts-marketdata-api demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.