nepse-data-module
Version:
A npm package to provide historical daily data for nepse until May 1st 2021 (which will be updated time to time).
16 lines (8 loc) • 469 B
Markdown
This module will easily provide the historical data for NEPSE Index.
This is not a live feed.
This feed is not intended to be used for trading puropse and is only of educational ease.
npm install nepse-data-module
const {getIndex,getIndexNames} = require('nepse-data-module');
const indexNames = getIndexgetIndexNames();
const data = getIndex(INDEX_NAME, FROM_DATE,TO_DATE);
//example: const data = getIndex("Banking","2021-01-01","2021-01-31");