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

    Interface Transaction

    Fidelity transaction.

    interface Transaction {
        acctNum: string;
        amount?: number;
        cashBalance?: number;
        date: Date;
        description: string;
        orderNumber?: string;
        pending: boolean;
    }
    Index

    Properties

    acctNum: string

    Fidelity account number.

    amount?: number

    Transaction amount in dollars. May be omitted if pending.

    cashBalance?: number

    Cash balance as of this transaction. Omitted if either requesting multiple accounts, or if transaction is pending.

    date: Date

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

    description: string

    Transaction description.

    orderNumber?: string

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

    pending: boolean

    True iff transaction is pending.