stock-price-fetcher
v2.0.0
Published
Fetches currency and value of a stock in real time provided yahoo finance representation of the stock ticker.
Downloads
62
Maintainers
Readme
Usage example
const spf = require("stock-price-fetcher")
const data = await spf.data('AAPL'); // param should be a valid yahoo finance ticker
console.log(data) // { currency: 'USD', price: 148.11 }