@righteffort/fidelity-helper
    Preparing search index...

    Interface Transaction

    Fidelity transaction.

    interface Transaction {
        acct_num: string;
        amount: number | undefined;
        date: Date;
        description: string;
        order_number: string | undefined;
        pending: boolean;
    }
    Index

    Properties

    acct_num: string

    Fidelity account number.

    amount: number | undefined

    Transaction amount in dollars. May be undefined if pending.

    date: Date

    Transaction date. Will always have time 00:00:00, time zone UTC but represent America/New_York.

    description: string

    Transaction description.

    order_number: string | undefined

    Transaction identifier. Unique for this account. undefined only if pending.

    pending: boolean

    True iff transaction is pending.