Firstrade API Node - v1.0.2
    Preparing search index...

    Interface FTSessionOptions

    Options for configuring a Firstrade session.

    interface FTSessionOptions {
        debug?: boolean;
        email?: string;
        mfaSecret?: string;
        password?: string;
        phone?: string;
        pin?: string;
        profilePath?: string;
        saveSession?: boolean;
        username?: string;
    }
    Index

    Properties

    debug?: boolean

    Log HTTP requests/responses if true.

    email?: string

    Firstrade MFA email.

    mfaSecret?: string

    Secret key for generating MFA codes.

    password?: string

    Firstrade login password.

    phone?: string

    Firstrade MFA phone number.

    pin?: string

    Firstrade login pin.

    profilePath?: string

    The path where the user wants to save the cookie file.

    saveSession?: boolean

    Save session cookies if true.

    username?: string

    Firstrade login username.