NAME

Finance::Robinhood::Equity::Order::Execution - Represents a Single Execution of an Equity Order

SYNOPSIS

use Finance::Robinhood;
my $rh = Finance::Robinhood->new->login('user', 'pass');
my $orders = $rh->equity_orders();

for my $order ($orders->all) {
    grep{ CORE::say( $_->settlement_date) } @{$order->executions} and if $order->state eq 'filled';
}

METHOD

id( )

UUID used to identify this particular execution.

price( )

The price for this particular execution.

quantity( )

Number of shares for this particular execution.

timestamp( )

Returns a Time::Moment object.

settlement_date( )

Returns a Time::Moment 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>