rather than display quotes for goog, aapl, and intc, what would be the way to use this api to display quotes for a list of about 3k stocks stored in our database?
Hello world!
Here is your portfolio:
GOOG: ()
AAPL: ()
INTC: ()
<script type="text/javascript">
var quote = new google.finance.Quote();
quote.enableDomUpdates( { 'GOOG' : '_IG_SYM1', 'AAPL' : '_IG_SYM2',
'INTC' : '_IG_SYM3' } );
quote.getQuotes(["GOOG", "AAPL", "INTC"]);
</script>
</body>