From 456d0a050f422bfe1d94b1c2a7d170a839bf2978 Mon Sep 17 00:00:00 2001 From: Jean-Baptiste LE STANG Date: Tue, 5 Jun 2018 13:49:59 +0200 Subject: [PATCH 1/2] update doc for process_throttle_secs --- docs/configuration.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/docs/configuration.md b/docs/configuration.md index a2df3f2fe..b9e633c57 100644 --- a/docs/configuration.md +++ b/docs/configuration.md @@ -73,6 +73,12 @@ value. This parameter is optional. If you use it, it will take over the Possible values are `running` or `stopped`. (default=`running`) If the value is `stopped` the bot has to be started with `/start` first. +### Understand process_throttle_secs +`process_throttle_secs` is an optional field in seconds that defines in seconds how long the bot should wait +before asking the strategy if we should buy or a sell an asset. After each wait period, the strategy is asked for +every opened trade wether or not we should buy, and for all the remaining pairs (either the dynamic list of pairs or +the static list of pairs) if we should buy. + ### Understand ask_last_balance `ask_last_balance` sets the bidding price. Value `0.0` will use `ask` price, `1.0` will use the `last` price and values between those interpolate between ask and last @@ -146,7 +152,6 @@ you run it in production mode. If you have not your Bittrex API key yet, [see our tutorial](https://github.com/gcarq/freqtrade/blob/develop/docs/pre-requisite.md). - ## Next step Now you have configured your config.json, the next step is to [start your bot](https://github.com/gcarq/freqtrade/blob/develop/docs/bot-usage.md). From 608fc170d937541f59c40bbc8b0456d6e8daad25 Mon Sep 17 00:00:00 2001 From: Jean-Baptiste LE STANG Date: Tue, 5 Jun 2018 13:51:30 +0200 Subject: [PATCH 2/2] fix doc --- docs/configuration.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/configuration.md b/docs/configuration.md index b9e633c57..8acf2986c 100644 --- a/docs/configuration.md +++ b/docs/configuration.md @@ -74,9 +74,9 @@ Possible values are `running` or `stopped`. (default=`running`) If the value is `stopped` the bot has to be started with `/start` first. ### Understand process_throttle_secs -`process_throttle_secs` is an optional field in seconds that defines in seconds how long the bot should wait -before asking the strategy if we should buy or a sell an asset. After each wait period, the strategy is asked for -every opened trade wether or not we should buy, and for all the remaining pairs (either the dynamic list of pairs or +`process_throttle_secs` is an optional field that defines in seconds how long the bot should wait +before asking the strategy if we should buy or a sell an asset. After each wait period, the strategy is asked again for +every opened trade wether or not we should sell, and for all the remaining pairs (either the dynamic list of pairs or the static list of pairs) if we should buy. ### Understand ask_last_balance