Brokerages
Charles Schwab
Introduction
QuantConnect enables you to run your algorithms in live mode with real-time market data. We have successfully hosted more than 200,000 live algorithms and have had more than $22B in volume traded on our servers since 2015.
The Charles Schwab Corporation was founded by Charles R. Schwab in 1971. Charles Schwab provides access to trading Equities, Options, Index Options, and other assets for clients with no account or trade minimums, or hidden fees.
To view the implementation of the Charles Schwab brokerage integration, see the Lean.Brokerages.CharlesSchwab repository.
Account Types
Charles Schwab supports cash and margin accounts. To set the account type in an algorithm, see the Charles Schwab brokerage model documentation.
Create an Account
Paper Trading
The Charles Schwab API doesn't support paper trading.
- In the
Initialize
initialize
method of your algorithm, set the Charles Schwab brokerage model and your account type. - Deploy your algorithm with the QuantConnect Paper Trading brokerage.
Asset Classes
Our Charles Schwab integration supports the following asset classes:
You may not be able to trade all assets with Charles Schwab. For example, if you live in the EU, you can't trade US ETFs. Check with your local regulators to know which assets you are allowed to trade. You may need to adjust settings in your brokerage account to live trade some assets.
Data Providers
You might need to purchase a Charles Schwab market data subscription for your trading. For more information about live data providers, see Datasets.
Orders
We model the Charles Schwab API by supporting several order types, the TimeInForce
order property, and order updates. When you deploy live algorithms, you can place manual orders through the IDE.
Order Types
The following table describes the available order types for each asset class that our Charles Schwab integration supports:
Order Type | Equity | Equity Options | Index Options |
---|---|---|---|
Market | |||
Limit | |||
Stop market |
Order Properties
We model custom order properties from the Charles Schwab API. The following table describes the members of the CharlesSchwabOrderProperties
object that you can set to customize order execution.
Property | Data Type | Description | Default Value |
---|---|---|---|
TimeInForce time_in_force | A TimeInForce instruction to apply to the order. The following instructions are supported:
| TimeInForce.GoodTilCanceled TimeInForce.GOOD_TIL_CANCELED | |
ExtendedRegularTradingHours extended_regular_trading_hours | bool | If set to true, allows orders to also trigger or fill outside of regular trading hours. |
Updates
We model the Charles Schwab API by supporting order updates.
Handling Splits
If you're using raw data normalization and you have active orders with a limit, stop, or trigger price in the market for a US Equity when a stock split occurs, the following properties of your orders automatically adjust to reflect the stock split:
- Quantity
- Limit price
- Stop price
- Trigger price
Margin
We model buying power and margin calls to ensure your algorithm stays within the margin requirements. If you have more than $25,000 in your brokerage account, you can use the PatternDayTradingMarginModel
to make use of the 4x intraday leverage and 2x overnight leverage available on most brokerages from the PDT rule.
Slippage
Orders through Charles Schwab do not experience slippage in backtests. In paper trading and live trading, your orders may experience slippage.
To view how we model Charles Schwab slippage, see Slippage.
Fills
We fill market orders immediately and completely in backtests. In live trading, if the quantity of your market orders exceeds the quantity available at the top of the order book, your orders are filled according to what is available in the order book.
To view how we model Charles Schwab order fills, see Fills.
Settlements
If you trade with a margin account, trades settle immediately
To view how we model settlement for Charles Schwab trades, see Settlement.
Deploy Live Algorithms
You must have an available live trading node for each live trading algorithm you deploy.
Follow these steps to deploy a live algorithm:
- Open the project you want to deploy.
- Click the Deploy Live icon.
- On the Deploy Live page, click the Brokerage field and then click from the drop-down menu.
- Check the Authorization check box and then click .
- On the Charles Schwab website, click to grant QuantConnect access to your account information and authorization.
- Click the Node field and then click the live trading node that you want to use from the drop-down menu.
- (Optional) In the Data Provider section, click and change the data provider or add additional providers.
- (Optional) Set up notifications.
- Configure the Automatically restart algorithm setting.
- Click .
In most cases, we suggest using the QuantConnect data provider, the Charles Schwab data provider, or both. The order you set them in the deployment wizard defines their order of precedence in Lean.
.By enabling automatic restarts, the algorithm will use best efforts to restart the algorithm if it fails due to a runtime error. This can help improve the algorithm's resilience to temporary outages such as a brokerage API disconnection.
The deployment process can take up to 5 minutes. When the algorithm deploys, the live results page displays. If you know your brokerage positions before you deployed, you can verify they have been loaded properly by checking your equity value in the runtime statistics, your cashbook holdings, and your position holdings.