Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ <h4>Create an Account</h4>
<p>Follow the <a rel="nofollow" target="_blank" href="https://www.webull.com/">account creation wizard</a> on the Webull website to create a Webull account.</p>

<h4>Create API Credentials</h4>
<p>In QuantConnect Cloud and when you use the <a href="/docs/v2/lean-cli">Lean CLI</a> to deploy to the cloud, you authenticate through the deployment wizard, so you don't need to create API credentials. To use Webull locally with the Lean CLI&mdash;to download data, backtest, research, or trade live&mdash;you need an App Key, App Secret, and the account ID of the Webull account you want to trade. The following steps summarize how to create these credentials. For the full process with screenshots, see <a rel="nofollow" target="_blank" href="https://developer.webull.com/apis/docs/authentication/IndividualApplicationAPI">Individual Application API</a> in the Webull developer documentation.</p>
<p>To trade with the Webull API, you need an App Key, App Secret, and the account ID of the Webull account you want to trade. The following steps summarize how to create them. For the full process with screenshots, see <a rel="nofollow" target="_blank" href="https://developer.webull.com/apis/docs/authentication/IndividualApplicationAPI">Individual Application API</a> in the Webull developer documentation.</p>
<ol>
<li>Log in to <a rel="nofollow" target="_blank" href="https://www.webull.com/">Webull.com</a> and open the account center.</li>
<li>From the avatar menu, open <span class='menu-name'>Developer Tools</span> and then click <span class='menu-name'>API Management > My Application</span>.</li>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,7 @@
$cashState = false;
$holdingsState = false;
$secondBullet = "";
$authentication = "<li>Click the <span class=\"button-name\">Authenticate</span> button.</li>
<li>On the Webull website, log in to your account to grant QuantConnect access to your account information and authorization.</li>
<li>Click the <span class='field-name'>Select Account Id</span> field and then click one of your accounts.</li>";
$authentication = "<li>Enter your Webull App Key, App Secret, and account ID.</li>" . file_get_contents(DOCS_RESOURCES."/brokerages/create-credentials/webull.html");
$postDeploy = "";
$dataProviderDetails = "<p>Webull doesn't provide a live data feed, so use the <a href='/docs/v2/cloud-platform/datasets'>QuantConnect data provider</a> or another data provider for the securities you trade.</p>";
include(DOCS_RESOURCES."/live-trading/deploy-live-algorithm.php");
Expand Down
Original file line number Diff line number Diff line change
@@ -1,20 +1,13 @@
<?
$brokerageDetails = "
<li>In the browser window that automatically opens, log in to your Webull account.
<li>Enter your Webull App Key, App Secret, and account ID.
<div class='cli section-example-container'>
<pre>$ lean cloud live \"My Project\" --push --open
Please open the following URL in your browser to authorize the LEAN CLI.
https://www.quantconnect.com/api/v2/live/auth0/authorize?brokerage=webull
Will sleep 5 seconds and retry fetching authorization...
</pre>
</div>
</li>

<li>Enter the Webull account ID.
<div class='cli section-example-container'>
<pre>$ lean cloud live \"My Project\" --push --open
The Webull account Id: 12345678</pre>
App key: 0a1b2c3d4e5f6a7b8c9d0e1f2a3b4c5d
App secret: *******************************
Account id: 12345678</pre>
</div>
" . file_get_contents(DOCS_RESOURCES."/brokerages/create-credentials/webull.html") . "
</li>";
$dataProviderDetails = "";
$brokerageName="Webull";
Expand Down