NAME
Finance::Robinhood::Equity::Fundamentals - Equity Instrument's Fundamental Data
SYNOPSIS
use Finance::Robinhood;
my $rh = Finance::Robinhood->new;
my $instruments = $rh->instruments();
for my $instrument ($instruments->all) {
my $fundamentals = $instrument->fundamentals;
CORE::say $instrument->symbol;
CORE::say $fundamentals->description;
}
METHODS
average_volume( )
average_volume_2_weeks( )
ceo( )
If applicable, the name of the chief executive(s) related to this instrument.
description( )
Plain text description suited for display.
dividend_yield( )
headquarters_city( )
If applicable, the city where the main headquarters are located.
headquarters_state( )
If applicable, the US state where the main headquarters are located.
high( )
Trading day high.
high_52_weeks( )
52-week high.
industry( )
low( )
Trading day low.
low_52_weeks( )
52-week low.
market_cap( )
num_employees( )
If applicable, the number of employees as reported by the company.
open( )
pe_ratio( )
sector( )
shares_outstanding( )
Number of shares outstanding according to the SEC.
volume( )
year_founded( )
The year the company was founded, if applicable.
instrument( )
Loop back to the equity instrument.
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>