aurbano / robinhood-node

:chart_with_upwards_trend: NodeJS client for Robinhood Trading :fire:

Home Page:https://aurbano.github.io/robinhood-node

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Top Ten Stocks

ryanlb22 opened this issue · comments

Hi I just started using this API. I want to test it out first before I implement anything.

Im trying to use top ten stocks tag function, am i calling this function correctly?


var Robinhood = require('robinhood')(credentials, function() {
    Robinhood.tag(TopTen,function(err, response, body){
        if(err){
            console.error(err);
        }else{
            console.log('top ten');
            console.log(body);
        }
    })
});

Getting an error.

Not Found

The requested URL /tags/tag/TopTen/ was not found on this server.

Also how are the requests being made and how many requests can you make per day?
Thanks