diff --git a/Services/Interfaces/web_interface/templates/about.html b/Services/Interfaces/web_interface/templates/about.html
index 04bd74a1b..4b3a76cc5 100644
--- a/Services/Interfaces/web_interface/templates/about.html
+++ b/Services/Interfaces/web_interface/templates/about.html
@@ -44,9 +44,14 @@
Running your OctoBot on the cloud
easily host your OctoBot on the cloud using DigitalOcean.
- Running your OctoBot on the DigitalOcean cloud enables you to have
- your OctoBot executing your trading strategies 24/7 without having to leave a computer on.
+ OctoBot is available from on the DigitalOcean marketplace.
+ It enables you to have your OctoBot executing your trading strategies 24/7 without having to leave a computer on.
+
diff --git a/Trading/Mode/index_trading_mode/index_trading.py b/Trading/Mode/index_trading_mode/index_trading.py
index ef1537bb5..03b20691b 100644
--- a/Trading/Mode/index_trading_mode/index_trading.py
+++ b/Trading/Mode/index_trading_mode/index_trading.py
@@ -427,7 +427,7 @@ def _update_coins_distribution(self):
distribution = index_distribution.get_uniform_distribution([
symbol.base
for symbol in self.exchange_manager.exchange_config.traded_symbols
- ])
+ ]) if self.exchange_manager else []
self.ratio_per_asset = {
asset[index_distribution.DISTRIBUTION_NAME]: asset
for asset in distribution
diff --git a/Trading/Mode/index_trading_mode/resources/IndexTradingMode.md b/Trading/Mode/index_trading_mode/resources/IndexTradingMode.md
index 20a1f64f5..c618c5f8e 100644
--- a/Trading/Mode/index_trading_mode/resources/IndexTradingMode.md
+++ b/Trading/Mode/index_trading_mode/resources/IndexTradingMode.md
@@ -1,6 +1,10 @@
The Index trading mode splits and maintains your portfolio distributed between the traded currencies. It enables
to maintain a crypto index based on your choice of coins.
+To know more, checkout the
+
+full Index trading mode guide.
+
### Content of the Index
The Index is defined by the selected traded pairs against your reference market in the
profile configuration section.
diff --git a/Trading/Mode/trading_view_signals_trading_mode/resources/TradingViewSignalsTradingMode.md b/Trading/Mode/trading_view_signals_trading_mode/resources/TradingViewSignalsTradingMode.md
index febc4a573..a9d5e8679 100644
--- a/Trading/Mode/trading_view_signals_trading_mode/resources/TradingViewSignalsTradingMode.md
+++ b/Trading/Mode/trading_view_signals_trading_mode/resources/TradingViewSignalsTradingMode.md
@@ -32,9 +32,12 @@ Where:
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%`)
or a % of available holdings associated to all configured trading pairs assets (`10t%`). It follows the
orders amount syntax.
-- `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%`)
-- `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.*
-- `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.*
+- `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
+orders price syntax.
+- `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
+orders price syntax.
+- `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
+orders price syntax.
- `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
- `TAG` is an identifier to give to the orders to create.