Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/tomkp/yahoo-finance-quotes

Fetch stock prices from the Yahoo finance api
https://github.com/tomkp/yahoo-finance-quotes

Last synced: about 1 month ago
JSON representation

Fetch stock prices from the Yahoo finance api

Awesome Lists containing this project

README

        

# Yahoo Finance Quotes

> Fetch stock prices from the Yahoo finance api

## Install

```sh
$ npm install --save yahoo-finance-quotes
```

## Usage

```js
var fetchQuotes = require('yahoo-finance-quotes');

fetchQuotes(["ISF.L", "EMG.L", "LMI.L"])
.then((quotes) => {
console.info(quotes);
})
.catch((response) => {
console.error(response);
});

```

## License

MIT © [tomkp](http://tomkp.com)