mirror of
https://github.com/freqtrade/freqtrade.git
synced 2026-02-02 12:21:08 +00:00
Deployed 1aaf0c2 to develop in en with MkDocs 1.6.1 and mike 2.1.3
This commit is contained in:
@@ -2103,7 +2103,7 @@ Freqtrade does not depend or install any additional database driver. Please refe
|
||||
<p>If you run the bot as a service, you can use systemd service manager as a software watchdog monitoring freqtrade bot
|
||||
state and restarting it in the case of failures. If the <code>internals.sd_notify</code> parameter is set to true in the
|
||||
configuration or the <code>--sd-notify</code> command line option is used, the bot will send keep-alive ping messages to systemd
|
||||
using the sd_notify (systemd notifications) protocol and will also tell systemd its current state (Running or Stopped)
|
||||
using the sd_notify (systemd notifications) protocol and will also tell systemd its current state (Running, Paused or Stopped)
|
||||
when it changes. </p>
|
||||
<p>The <code>freqtrade.service.watchdog</code> file contains an example of the service unit configuration file which uses systemd
|
||||
as the watchdog.</p>
|
||||
|
||||
@@ -3195,7 +3195,7 @@ In the below case, <code>max_open_trades</code> would be 3 after the merging - a
|
||||
</tr>
|
||||
<tr>
|
||||
<td><code>initial_state</code></td>
|
||||
<td>Defines the initial application state. If set to stopped, then the bot has to be explicitly started via <code>/start</code> RPC command. <br><em>Defaults to <code>stopped</code>.</em> <br> <strong>Datatype:</strong> Enum, either <code>stopped</code> or <code>running</code></td>
|
||||
<td>Defines the initial application state. If set to stopped, then the bot has to be explicitly started via <code>/start</code> RPC command. <br><em>Defaults to <code>stopped</code>.</em> <br> <strong>Datatype:</strong> Enum, either <code>running</code>, <code>paused</code> or <code>stopped</code></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><code>force_entry_enable</code></td>
|
||||
|
||||
@@ -2196,6 +2196,9 @@ to do so, please use the following:</p>
|
||||
<span class="go">start</span>
|
||||
<span class="go"> Start the bot if it's in the stopped state.</span>
|
||||
|
||||
<span class="go">pause</span>
|
||||
<span class="go"> Pause the bot if it's in the running state. If triggered on stopped state will handle open positions.</span>
|
||||
|
||||
<span class="go">stats</span>
|
||||
<span class="go"> Return the stats report (durations, sell-reasons).</span>
|
||||
|
||||
@@ -2272,6 +2275,11 @@ All endpoints in the below table need to be prefixed with the base URL of the AP
|
||||
<td>Starts the trader.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><code>/pause</code></td>
|
||||
<td>POST</td>
|
||||
<td>Pause the trader. Gracefully handle open trades according to their rules. Do not enter new positions.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><code>/stop</code></td>
|
||||
<td>POST</td>
|
||||
<td>Stops the trader.</td>
|
||||
|
||||
File diff suppressed because one or more lines are too long
@@ -816,6 +816,15 @@
|
||||
</span>
|
||||
</a>
|
||||
|
||||
</li>
|
||||
|
||||
<li class="md-nav__item">
|
||||
<a href="#pause" class="md-nav__link">
|
||||
<span class="md-ellipsis">
|
||||
/pause
|
||||
</span>
|
||||
</a>
|
||||
|
||||
</li>
|
||||
|
||||
<li class="md-nav__item">
|
||||
@@ -2097,6 +2106,15 @@
|
||||
</span>
|
||||
</a>
|
||||
|
||||
</li>
|
||||
|
||||
<li class="md-nav__item">
|
||||
<a href="#pause" class="md-nav__link">
|
||||
<span class="md-ellipsis">
|
||||
/pause
|
||||
</span>
|
||||
</a>
|
||||
|
||||
</li>
|
||||
|
||||
<li class="md-nav__item">
|
||||
@@ -2431,7 +2449,7 @@ The default custom keyboard looks like this.</p>
|
||||
<div class="admonition note">
|
||||
<p class="admonition-title">Supported Commands</p>
|
||||
<p>Only the following commands are allowed. Command arguments are not supported!</p>
|
||||
<p><code>/start</code>, <code>/stop</code>, <code>/status</code>, <code>/status table</code>, <code>/trades</code>, <code>/profit</code>, <code>/performance</code>, <code>/daily</code>, <code>/stats</code>, <code>/count</code>, <code>/locks</code>, <code>/balance</code>, <code>/stopentry</code>, <code>/reload_config</code>, <code>/show_config</code>, <code>/logs</code>, <code>/whitelist</code>, <code>/blacklist</code>, <code>/edge</code>, <code>/help</code>, <code>/version</code>, <code>/marketdir</code></p>
|
||||
<p><code>/start</code>, <code>/pause</code>, <code>/stop</code>, <code>/status</code>, <code>/status table</code>, <code>/trades</code>, <code>/profit</code>, <code>/performance</code>, <code>/daily</code>, <code>/stats</code>, <code>/count</code>, <code>/locks</code>, <code>/balance</code>, <code>/stopentry</code>, <code>/reload_config</code>, <code>/show_config</code>, <code>/logs</code>, <code>/whitelist</code>, <code>/blacklist</code>, <code>/edge</code>, <code>/help</code>, <code>/version</code>, <code>/marketdir</code></p>
|
||||
</div>
|
||||
<h2 id="telegram-commands">Telegram commands<a class="headerlink" href="#telegram-commands" title="Permanent link">¶</a></h2>
|
||||
<p>Per default, the Telegram bot shows predefined commands. Some commands
|
||||
@@ -2454,6 +2472,10 @@ official commands. You can ask at any moment for help with <code>/help</code>.</
|
||||
<td>Starts the trader</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><code>/pause</code></td>
|
||||
<td>Pause the trader. Gracefully handle open trades according to their rules. Do not enter new positions.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><code>/stop</code></td>
|
||||
<td>Stops the trader</td>
|
||||
</tr>
|
||||
@@ -2625,6 +2647,10 @@ official commands. You can ask at any moment for help with <code>/help</code>.</
|
||||
<blockquote>
|
||||
<p><strong>Status:</strong> <code>running</code></p>
|
||||
</blockquote>
|
||||
<h3 id="pause">/pause<a class="headerlink" href="#pause" title="Permanent link">¶</a></h3>
|
||||
<blockquote>
|
||||
<p><strong>Status:</strong> <code>paused</code></p>
|
||||
</blockquote>
|
||||
<h3 id="stop">/stop<a class="headerlink" href="#stop" title="Permanent link">¶</a></h3>
|
||||
<blockquote>
|
||||
<p><code>Stopping trader ...</code>
|
||||
|
||||
Reference in New Issue
Block a user