UNPKG

financialmodelingprep

Version:

This module is a node wrapper for the free [Financial Modeling Prep API](https://financialmodelingprep.com/developer/docs). This node application implements almost all aspects of the FMP API.

13 lines (11 loc) 426 B
'use strict' const { makeRequest } = require('./utilities'); const index = require('./index'); module.exports = { index: index(), most_active: () => makeRequest('stock/actives'), most_gainer: () => makeRequest('stock/gainers'), most_loser: () => makeRequest('stock/losers'), sector_performance: () => makeRequest('stock/sectors-performance'), trading_hours: () => makeRequest('is-the-market-open') };