Source code for py_alpaca_api.models.account_config_model

from dataclasses import dataclass


@dataclass
[docs] class AccountConfigModel: """Model for account configuration settings. Attributes: dtbp_check: Day trade buying power check setting ("entry", "exit", "both") fractional_trading: Whether fractional trading is enabled max_margin_multiplier: Maximum margin multiplier allowed ("1", "2", "4") no_shorting: Whether short selling is disabled pdt_check: Pattern day trader check setting ("entry", "exit", "both") ptp_no_exception_entry: Whether PTP no exception entry is enabled suspend_trade: Whether trading is suspended trade_confirm_email: Trade confirmation email setting ("all", "none") """
[docs] dtbp_check: str
[docs] fractional_trading: bool
[docs] max_margin_multiplier: str
[docs] no_shorting: bool
[docs] pdt_check: str
[docs] ptp_no_exception_entry: bool
[docs] suspend_trade: bool
[docs] trade_confirm_email: str
[docs] def account_config_class_from_dict(data: dict) -> AccountConfigModel: """Create AccountConfigModel from API response dictionary. Args: data: Dictionary containing account configuration data from API Returns: AccountConfigModel instance """ return AccountConfigModel( dtbp_check=data.get("dtbp_check", "entry"), fractional_trading=data.get("fractional_trading", False), max_margin_multiplier=data.get("max_margin_multiplier", "1"), no_shorting=data.get("no_shorting", False), pdt_check=data.get("pdt_check", "entry"), ptp_no_exception_entry=data.get("ptp_no_exception_entry", False), suspend_trade=data.get("suspend_trade", False), trade_confirm_email=data.get("trade_confirm_email", "all"), )