google-finance-service

Simple browser-friendly micro service for the google finance api

Usage no npm install needed!

<script type="module">
  import googleFinanceService from 'https://cdn.skypack.dev/google-finance-service';
</script>

README

Examples

Symbols as an Array

    var service = require('google-finance-service');
    $.when(
        service(['LON:TSCO', 'LON:RDSA'])
    ).then(
        function (data) {}
    );

Symbols as a String

    var service = require('google-finance-service');
    $.when(
        service('LON:TSCO,LON:RDSA')
    ).then(
        function (data) {}
    );