The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Finance::Robinhood::Watchlist - Persistant List of Financial Instruments

SYNOPSIS

    use Finance::Robinhood::Instrument;

    #...

    my $watchlist = $rh->create_watchlist( 'Tech' );

    $watchlist->add_instrument( $rh->instrument('APPL') );

DESCRIPTION

Robinhood allows persistant, categorized lists of financial instruments in 'watchlists'. The 'Default' watchlist is created by the official Robinhood apps and are preloaded with popular securities.

If you intend to create your own, please use Finance::Robinhood-create_watchlist( ... )>.

METHODS

Watchlists are rather simple in themselves.

delete_instrument( ... )

    $watchlist->delete_instrument( $instrument );

Removes a financial instrument from the watchlist.

add_instrument( ... )

    $watchlist->add_instrument( $instrument );

Adds a financial instrument to the watchlist. Attempts to add an instrument a second time will fail.

bulk_add_symbols( ... )

    $watchlist->bulk_add_symbols(qw[MSFT FB GOOGL]);

Add multiple instruments in a single API call and by their symbols with this.

...easier than looping through the symbols yourself, right?

LEGAL

This is a simple wrapper around the API used in the official apps. The author provides no investment, legal, or tax advice and is not responsible for any damages incured while using this software. Neither this software nor its author are affiliated with Robinhood Financial LLC in any way.

For Robinhood's terms and disclosures, please see their website at http://robinhood.com/

LICENSE

Copyright (C) Sanko Robinson.

This library is free software; you can redistribute it and/or modify it under the terms found in the Artistic License 2.

Other copyrights, terms, and conditions may apply to data transmitted through this module. Please refer to the LEGAL section.

AUTHOR

Sanko Robinson <sanko@cpan.org>