Skip to content
This repository was archived by the owner on Feb 21, 2026. It is now read-only.

Commit 1b146b9

Browse files
authored
Merge pull request #1228 from Drakkar-Software/dev
Dev merge
2 parents 9d491d7 + 6e9ce36 commit 1b146b9

File tree

4 files changed

+18
-6
lines changed

4 files changed

+18
-6
lines changed

Services/Interfaces/web_interface/templates/about.html

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,9 +44,14 @@ <h2>Running your OctoBot on the cloud</h2>
4444
easily host your OctoBot on the cloud using DigitalOcean</a>.
4545
</p>
4646
<p>
47-
Running your OctoBot on the <a target="_blank" rel="noopener" href="https://m.do.co/c/40c9737100b1">DigitalOcean cloud</a> enables you to have
48-
your OctoBot executing your trading strategies 24/7 without having to leave a computer on.
47+
OctoBot is available from on the <a target="_blank" rel="noopener" href="https://digitalocean.pxf.io/octobot-app">DigitalOcean marketplace</a>.
48+
It enables you to have your OctoBot executing your trading strategies 24/7 without having to leave a computer on.
4949
</p>
50+
<div>
51+
<a href="https://digitalocean.pxf.io/start-octobot">
52+
<img src="https://mp-assets1.sfo2.digitaloceanspaces.com/deploy-to-do/do-btn-blue.svg" alt="Deploy on DO"/>
53+
</a>
54+
</div>
5055
</div>
5156
</div>
5257
<br>

Trading/Mode/index_trading_mode/index_trading.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -427,7 +427,7 @@ def _update_coins_distribution(self):
427427
distribution = index_distribution.get_uniform_distribution([
428428
symbol.base
429429
for symbol in self.exchange_manager.exchange_config.traded_symbols
430-
])
430+
]) if self.exchange_manager else []
431431
self.ratio_per_asset = {
432432
asset[index_distribution.DISTRIBUTION_NAME]: asset
433433
for asset in distribution

Trading/Mode/index_trading_mode/resources/IndexTradingMode.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
The Index trading mode splits and maintains your portfolio distributed between the traded currencies. It enables
22
to maintain a crypto index based on your choice of coins.
33

4+
To know more, checkout the
5+
<a target="_blank" rel="noopener" href="https://www.octobot.cloud/en/guides/octobot-trading-modes/index-trading-mode?utm_source=octobot&utm_medium=dk&utm_campaign=regular_open_source_content&utm_content=IndexTradingModeDocs">
6+
full Index trading mode guide</a>.
7+
48
### Content of the Index
59
The Index is defined by the selected traded pairs against your reference market in the
610
profile configuration section.

Trading/Mode/trading_view_signals_trading_mode/resources/TradingViewSignalsTradingMode.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,12 @@ Where:
3232
a % of the total portfolio value (ex: `2%`), a % of the available holdings (ex: `12a%`), a % of available holdings associated to the current traded symbol assets (`10s%`)
3333
or a % of available holdings associated to all configured trading pairs assets (`10t%`). It follows the <a target="_blank" rel="noopener" href="https://www.octobot.cloud/en/guides/octobot-trading-modes/order-amount-syntax?utm_source=octobot&utm_medium=dk&utm_campaign=regular_open_source_content&utm_content=TradingViewSignalsTradingModeDocs">
3434
orders amount syntax</a>.
35-
- `PRICE` is the price of the limit order in quote asset (USDT for BTC/USDT). Can also be a delta value from the current price by adding `d` (ex: `10d` or `-0.55d`) or a delta percent from the price (ex: `-5%` or `25.4%`)
36-
- `STOP_PRICE` is the price of the stop order to create. Can also be a delta or % delta like `PRICE`. When increasing the position or buying in spot trading, the stop loss will automatically be created once the initial order is filled. When decreasing the position (or selling in spot) using a LIMIT `ORDER_TYPE`, the stop loss will be created instantly. *Orders crated this way are compatible with PNL history.*
37-
- `TAKE_PROFIT_PRICE` is the price of the take profit order to create. Can also be a delta or % delta like `PRICE`. When increasing the position or buying in spot trading, the take profit will automatically be created once the initial order is filled. When decreasing the position (or selling in spot) using a LIMIT `ORDER_TYPE`, the take profit will be created instantly. *Orders crated this way are compatible with PNL history.*
35+
- `PRICE` is the price of the limit order in quote asset (USDT for BTC/USDT). Can also be a delta value from the current price by adding `d` (ex: `10d` or `-0.55d`) or a delta percent from the price (ex: `-5%` or `25.4%`). It follows the <a target="_blank" rel="noopener" href="https://www.octobot.cloud/en/guides/octobot-trading-modes/order-price-syntax?utm_source=octobot&utm_medium=dk&utm_campaign=regular_open_source_content&utm_content=TradingViewSignalsTradingModeDocs">
36+
orders price syntax</a>.
37+
- `STOP_PRICE` is the price of the stop order to create. Can also be a delta or % delta like `PRICE`. When increasing the position or buying in spot trading, the stop loss will automatically be created once the initial order is filled. When decreasing the position (or selling in spot) using a LIMIT `ORDER_TYPE`, the stop loss will be created instantly. *Orders crated this way are compatible with PNL history.* It follows the <a target="_blank" rel="noopener" href="https://www.octobot.cloud/en/guides/octobot-trading-modes/order-price-syntax?utm_source=octobot&utm_medium=dk&utm_campaign=regular_open_source_content&utm_content=TradingViewSignalsTradingModeDocs">
38+
orders price syntax</a>.
39+
- `TAKE_PROFIT_PRICE` is the price of the take profit order to create. Can also be a delta or % delta like `PRICE`. When increasing the position or buying in spot trading, the take profit will automatically be created once the initial order is filled. When decreasing the position (or selling in spot) using a LIMIT `ORDER_TYPE`, the take profit will be created instantly. *Orders crated this way are compatible with PNL history.* It follows the <a target="_blank" rel="noopener" href="https://www.octobot.cloud/en/guides/octobot-trading-modes/order-price-syntax?utm_source=octobot&utm_medium=dk&utm_campaign=regular_open_source_content&utm_content=TradingViewSignalsTradingModeDocs">
40+
orders price syntax</a>.
3841
- `REDUCE_ONLY` when true, only reduce the current position (avoid accidental short position opening when reducing a long position). **Only used in futures trading**. Default is false
3942
- `TAG` is an identifier to give to the orders to create.
4043

0 commit comments

Comments
 (0)