pilwon / node-yahoo-finance

Yahoo Finance historical quotes and snapshot data downloader written in Node.js
491 stars 123 forks source link

j2 not logging #35

Open LemmaEOF opened 7 years ago

LemmaEOF commented 7 years ago

I'm trying to grab a stock symbol, the outstanding shares, and the last trade price only, but it's not logging the outstanding shares. Here's my code:

var yahooFinance = require('yahoo-finance');

  yahooFinance.snapshot({
  symbol: args,
  fields: ['s', 'l1', 'j2'],
}, function (err, snapshot) {
  console.log(JSON.stringify(snapshot, null, 2));
});

and here's the output: { "symbol": "YHOO", "lastTradePriceOnly": 45.55 }

Even though I have j2 in there, it's just not being put down. It's not excluded in the index.js, so what's wrong?