WBT 5.35% $2.30 weebit nano ltd

about 17500I use google sheets to keep track of it, here's the...

  1. 2,829 Posts.
    lightbulb Created with Sketch. 706
    about 17500

    I use google sheets to keep track of it, here's the script for anyone interested:

    function getSharesOnIssue(symbol) {
    symbol = encodeURI(symbol);
    Utilities.sleep(Math.floor(Math.random() * 5000))
    var url = 'https://query2.finance.yahoo.com/v10/finance/quoteSummary/'+symbol+'?modules=defaultKeyStatistics';
    Logger.log(url);
    var response = UrlFetchApp.fetch(url, {muteHttpExceptions: true});
    var responseCode = response.getResponseCode();
    if (responseCode === 200) {
    var quote = JSON.parse(response.getContentText());
    Logger.log(quote.quoteSummary.result[0].defaultKeyStatistics.sharesOutstanding.longFmt);
    return quote.quoteSummary.result[0].defaultKeyStatistics.sharesOutstanding.longFmt;
    }else{
    return -1;
    }
    }

    And then you'd just get your total shares and divide by the result
 
watchlist Created with Sketch. Add WBT (ASX) to my watchlist
arrow-down-2 Created with Sketch. arrow-down-2 Created with Sketch.