NAME
Finance::Robinhood::Equity::Mover - Represents a Top Moving Equity Instrument
SYNOPSIS
use Text::Wrap qw[wrap];
use Finance::Robinhood;
my $rh = Finance::Robinhood->new;
my $movers = $rh->top_movers(direction => 'up');
for my $mover ($movers->all) {
CORE::say $mover->instrument->name;
}
METHODS
description( )
Returns a full text description suited for display.
symbol( )
Returns the ticker symbol of the instrument.
updated_at( )
$article->updated_at->to_string;
Returns the time the article was published or last updated as a Time::Moment object.
instrument( )
my $instrument = $mover->instrument();
Builds a Finance::Robinhood::Equity::Instrument object.
price_movement( )
my $price_movement = $mover->price_movement();
Builds a Finance::Robinhood::Equity::PriceMovement object.
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 incurred while using this software. This software is not affiliated with Robinhood Financial LLC in any way.
For Robinhood's terms and disclosures, please see their website at https://robinhood.com/legal/
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>