Skip to content

Commit

Permalink
Deployed b38b8c6 with MkDocs version: 1.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
donewiththedollar committed Jul 31, 2024
1 parent b38b8c6 commit 87d580a
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 9 deletions.
4 changes: 2 additions & 2 deletions installation/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -817,9 +817,9 @@ <h2 id="quickstart">Quickstart</h2>
<p>Run the bot:</p>
</li>
<li>To display the menu and select a strategy, use the following command:
<code>python3.11 multi_bot_v3.py --config configs/config.json</code>
<code>python3.11 multi_bot_aio.py --config configs/config.json</code>
or the old method
<code>python3.11 multi_bot.py --config config.json (outdated)</code></li>
<code>python3.11 multi_bot_v4.py --config config.json (outdated)</code></li>
<li>Alternatively, you can run the bot with command line parameters:<ul>
<li>For the multi-bot auto symbol rotator strategy:
<code>python3.11 multi_bot_v3.py --exchange bybit --account_name account_1 --strategy qsgridob --config configs/config.json</code></li>
Expand Down
2 changes: 1 addition & 1 deletion search/search_index.json

Large diffs are not rendered by default.

Binary file modified sitemap.xml.gz
Binary file not shown.
15 changes: 9 additions & 6 deletions strategies/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -912,7 +912,8 @@ <h3 id="example-long-and-short-auto-rotating-futures-configuration">Example long
&quot;dashboard_enabled&quot;: true,
&quot;shared_data_path&quot;: &quot;data/&quot;,
&quot;linear_grid&quot;: {
&quot;auto_graceful_stop&quot;: &quot;true&quot;,
&quot;target_coins_mode&quot;: false,
&quot;auto_graceful_stop&quot;: true,
&quot;entry_signal_type&quot;: &quot;lorentzian&quot;,
&quot;additional_entries_from_signal&quot;: true,
&quot;graceful_stop_long&quot;: false,
Expand Down Expand Up @@ -991,7 +992,7 @@ <h3 id="example-long-and-short-auto-rotating-futures-configuration">Example long
}
</code></pre>
<p>Now, just run the bot using this multibot version and strategy</p>
<p><code>python3.11 multi_bot_v3.py --exchange bybit --account_name account_1 --strategy qsgridob --config configs/config.json</code></p>
<p><code>python3.11 multi_bot_aio.py --exchange bybit --account_name account_1 --strategy qsgridob --config configs/config.json</code></p>
<h3 id="example-long-only-solusdt-futures-configuration">Example long only SOLUSDT futures configuration</h3>
<p>Set up your config.json from the below snippet to whitelist SOLUSDT and set max USD value to a higher value to allow for the symbol.</p>
<p><code>max_qty_percent_long</code> and <code>max_qty_pct_short</code> are set high in this configuration, you can adjust them as needed these are just defaults for testing purposes.</p>
Expand Down Expand Up @@ -1036,7 +1037,8 @@ <h3 id="example-long-only-solusdt-futures-configuration">Example long only SOLUS
&quot;dashboard_enabled&quot;: true,
&quot;shared_data_path&quot;: &quot;data/&quot;,
&quot;linear_grid&quot;: {
&quot;auto_graceful_stop&quot;: &quot;true&quot;,
&quot;target_coins_mode&quot;: true,
&quot;auto_graceful_stop&quot;: false,
&quot;entry_signal_type&quot;: &quot;lorentzian&quot;,
&quot;additional_entries_from_signal&quot;: true,
&quot;graceful_stop_long&quot;: false,
Expand Down Expand Up @@ -1115,7 +1117,7 @@ <h3 id="example-long-only-solusdt-futures-configuration">Example long only SOLUS
}
</code></pre>
<p>Now, just run the bot using this multibot version and strategy</p>
<p><code>python3.11 multi_bot_signalscreener_targetcoin.py --exchange bybit --account_name account_1 --strategy qsgridob --config configs/config.json</code></p>
<p><code>python3.11 multi_bot_aio.py --exchange bybit --account_name account_1 --strategy qsgridob --config configs/config.json</code></p>
<p>This is just a simple example of a long only BTCUSDT strategy to show how one can utilize a single strategy for many use case scenarios on different instruments.</p>
<h3 id="example-high-risk-small-account-longshort-btcusdt-futures-configuration">Example High risk small account long&amp;short BTCUSDT futures configuration</h3>
<p>Set up your config.json from the below snippet to whitelist BTCUSDT and set max USD value to a high value to allow for the symbol.</p>
Expand Down Expand Up @@ -1161,7 +1163,8 @@ <h3 id="example-high-risk-small-account-longshort-btcusdt-futures-configuration"
&quot;dashboard_enabled&quot;: true,
&quot;shared_data_path&quot;: &quot;data/&quot;,
&quot;linear_grid&quot;: {
&quot;auto_graceful_stop&quot;: &quot;true&quot;,
&quot;target_coins_mode&quot;: true,
&quot;auto_graceful_stop&quot;: false,
&quot;entry_signal_type&quot;: &quot;lorentzian&quot;,
&quot;additional_entries_from_signal&quot;: true,
&quot;graceful_stop_long&quot;: false,
Expand Down Expand Up @@ -1240,7 +1243,7 @@ <h3 id="example-high-risk-small-account-longshort-btcusdt-futures-configuration"
}
</code></pre>
<p>Now, just run the bot using this multibot version and strategy</p>
<p><code>python3.11 multi_bot_signalscreener_targetcoin.py --exchange bybit --account_name account_1 --strategy qsgridoblsignal --config configs/config.json</code></p>
<p><code>python3.11 multi_bot_signalscreener_targetcoin.py --exchange bybit --account_name account_1 --strategy qsgridob --config configs/config.json</code></p>
<p>This is an aggressive approach because it utilizes a high <code>max_qty_percent_long</code> and <code>max_qty_percent_short</code> on a small wallet balance (ie $100 USD) for a symbol with a high USD value with the min notional requirement for BTCUSDT on Bybit it is inherently more risky but also more profitable.</p>


Expand Down

0 comments on commit 87d580a

Please sign in to comment.