Skip to content

fugle-dev/fugle-marketdata-node

Folders and files

NameName
Last commit message
Last commit date

Latest commit

7977ade · Jun 22, 2023

History

18 Commits
Apr 2, 2023
Apr 2, 2023
Jun 22, 2023
Jun 14, 2023
Apr 2, 2023
Apr 2, 2023
Apr 2, 2023
Apr 2, 2023
Jun 22, 2023
Apr 2, 2023
Apr 2, 2023
Apr 2, 2023
Apr 2, 2023
Jun 22, 2023
Apr 2, 2023
Apr 2, 2023

Repository files navigation

Fugle MarketData

NPM version Build Status Coverage Status

Fugle MarketData API client library for Node.js

Installation

$ npm install --save @fugle/marketdata

Importing

// Using Node.js `require()`
const { RestClient, WebSocketClient } = require('@fugle/marketdata');

// Using ES6 imports
import { RestClient, WebSocketClient } from '@fugle/marketdata';

Usage

The library is an isomorphic JavaScript client that supports REST API and WebSocket.

REST API

const client = new RestClient({ apiKey: 'YOUR_API_KEY' });

const stock = client.stock;   // Stock REST API client
const futopt = client.futopt; // Futures & Options REST API client

stock.intraday.quote({ symbol: '2330' })
  .then(data => console.log(data));

WebSocket API

const client = new WebSocketClient({ apiKey: 'YOUR_API_KEY' });

const stock = client.stock;   // Stock WebSocket API client
const futopt = client.futopt; // Futures & Options WebSocket API client

// open the WebSocket connection and authenticate
stock.connect().then(() => {
  // subscribe the channel to receive streaming data
  stock.subscribe({ channel: 'trades', symbol: '2330' });
});

stock.on('message', (message) => {
  const data = JSON.parse(message);
  console.log(data);
});

License

MIT