You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: docs/configuration.md
+3-1
Original file line number
Diff line number
Diff line change
@@ -225,14 +225,16 @@ Mandatory parameters are marked as **Required**, which means that they are requi
225
225
| `webhook.webhookexitcancel` | Payload to send on exit order cancel. Only required if `webhook.enabled` is `true`. See the [webhook documentation](webhook-config.md) for more details. <br> **Datatype:** String
226
226
| `webhook.webhookexitfill` | Payload to send on exit order filled. Only required if `webhook.enabled` is `true`. See the [webhook documentation](webhook-config.md) for more details. <br> **Datatype:** String
227
227
| `webhook.webhookstatus` | Payload to send on status calls. Only required if `webhook.enabled` is `true`. See the [webhook documentation](webhook-config.md) for more details. <br> **Datatype:** String
228
-
| | **Rest API / FreqUI**
228
+
| | **Rest API / FreqUI / Producer-Consumer**
229
229
| `api_server.enabled` | Enable usage of API Server. See the [API Server documentation](rest-api.md) for more details. <br> **Datatype:** Boolean
230
230
| `api_server.listen_ip_address` | Bind IP address. See the [API Server documentation](rest-api.md) for more details. <br> **Datatype:** IPv4
231
231
| `api_server.listen_port` | Bind Port. See the [API Server documentation](rest-api.md) for more details. <br>**Datatype:** Integer between 1024 and 65535
232
232
| `api_server.verbosity` | Logging verbosity. `info` will print all RPC Calls, while "error" will only display errors. <br>**Datatype:** Enum, either `info` or `error`. Defaults to `info`.
233
233
| `api_server.username` | Username for API server. See the [API Server documentation](rest-api.md) for more details. <br>**Keep it in secret, do not disclose publicly.**<br> **Datatype:** String
234
234
| `api_server.password` | Password for API server. See the [API Server documentation](rest-api.md) for more details. <br>**Keep it in secret, do not disclose publicly.**<br> **Datatype:** String
235
+
| `api_server.ws_token` | API token for the Message WebSocket. See the [API Server documentation](rest-api.md) for more details. <br>**Keep it in secret, do not disclose publicly.** <br> **Datatype:** String
235
236
| `bot_name` | Name of the bot. Passed via API to a client - can be shown to distinguish / name bots.<br> *Defaults to `freqtrade`*<br> **Datatype:** String
237
+
| `external_message_consumer` | Enable [Producer/Consumer mode](producer-consumer.md) for more details. <br> **Datatype:** Dict
236
238
| | **Other**
237
239
| `initial_state` | Defines the initial application state. If set to stopped, then the bot has to be explicitly started via `/start` RPC command. <br>*Defaults to `stopped`.* <br> **Datatype:** Enum, either `stopped` or `running`
238
240
| `force_entry_enable` | Enables the RPC Commands to force a Trade entry. More information below. <br> **Datatype:** Boolean
Freqtrade currently supports 3 data-formats for both OHLCV and trades data:
181
181
182
-
*`json` (plain "text" json files)
183
-
*`jsongz` (a gzip-zipped version of json files)
184
-
*`hdf5` (a high performance datastore)
182
+
*`json` - plain "text" json files
183
+
*`jsongz` - a gzip-zipped version of json files
184
+
*`hdf5` - a high performance datastore
185
+
*`feather` - a dataformat based on Apache Arrow
186
+
*`parquet` - columnar datastore
185
187
186
188
By default, OHLCV data is stored as `json` data, while trades data is stored as `jsongz` data.
187
189
@@ -200,38 +202,74 @@ If the default data-format has been changed during download, then the keys `data
200
202
!!! Note
201
203
You can convert between data-formats using the [convert-data](#sub-command-convert-data) and [convert-trade-data](#sub-command-convert-trade-data) methods.
202
204
205
+
#### Dataformat comparison
206
+
207
+
The following comparisons have been made with the following data, and by using the linux `time` command.
0 commit comments