Yahoo Intraday Stock Quote Data
Fetch intraday stock data from yahoo
Usage
npm install intraday
var intraday = ;var symbol = 'TSLA'; ; // or // previous number of days worth of intraday, defaults to 1 (today)var numDays = 5;;
You should get an array of objects like:
timestamp: '1378993858' // need to add '000' to get a valid timestamp close: '123' high: '123' low: '123' open: '123' volume: '1234'...