From 08fb8e42f7484dfc3bb45c9b26217e61448e976f Mon Sep 17 00:00:00 2001 From: Matthias Date: Mon, 25 Aug 2025 06:57:37 +0200 Subject: [PATCH] docs: improve time_in_force section --- docs/configuration.md | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/docs/configuration.md b/docs/configuration.md index 910d61500..51c717da2 100644 --- a/docs/configuration.md +++ b/docs/configuration.md @@ -566,8 +566,8 @@ Configuration: ### Understand order_time_in_force -The `order_time_in_force` configuration parameter defines the policy by which the order -is executed on the exchange. Three commonly used time in force are: +The `order_time_in_force` configuration parameter defines the policy by which the order is executed on the exchange. +Commonly used time in force are: **GTC (Good Till Canceled):** @@ -589,11 +589,13 @@ is automatically cancelled by the exchange. Post only order. The order is either placed as a maker order, or it is canceled. This means the order must be placed on orderbook for at least time in an unfilled state. +Please check the [Exchange documentation](exchanges.md) for supported time in force values for your exchange. + #### time_in_force config The `order_time_in_force` parameter contains a dict with entry and exit time in force policy values. This can be set in the configuration file or in the strategy. -Values set in the configuration file overwrites values set in the strategy. +Values set in the configuration file overwrite values from in the strategy, following the regular [precedence rules](#configuration-option-prevalence). The possible values are: `GTC` (default), `FOK` or `IOC`. @@ -605,9 +607,9 @@ The possible values are: `GTC` (default), `FOK` or `IOC`. ``` !!! Warning - This is ongoing work. For now, it is supported only for binance, gate and kucoin. Please don't change the default value unless you know what you are doing and have researched the impact of using different values for your particular exchange. + ### Fiat conversion Freqtrade uses the Coingecko API to convert the coin value to it's corresponding fiat value for the Telegram reports.