From f12d40bd6bde4cb1f7a5ff5dd59f5dc5513e4041 Mon Sep 17 00:00:00 2001 From: smarmau <42020297+smarmau@users.noreply.github.com> Date: Tue, 25 Oct 2022 20:59:39 +1100 Subject: [PATCH] Update freqai-running.md Updated the follower section of the docs to include parameters to make the config schema validate on start up for follow_mode --- docs/freqai-running.md | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/docs/freqai-running.md b/docs/freqai-running.md index 7972a6c92..8947a02bf 100644 --- a/docs/freqai-running.md +++ b/docs/freqai-running.md @@ -161,9 +161,13 @@ You can indicate to the bot that it should not train models, but instead should ```json "freqai": { + "enabled": true, "follow_mode": true, - "identifier": "example" + "identifier": "example", + "feature_parameters": { + // leader bots feature_parameters inserted here + }, } ``` -In this example, the user has a leader bot with the `"identifier": "example"`. The leader bot is already running or is launched simultaneously with the follower. The follower will load models created by the leader and inference them to obtain predictions instead of training its own models. +In this example, the user has a leader bot with the `"identifier": "example"`. The leader bot is already running or is launched simultaneously with the follower. The follower will load models created by the leader and inference them to obtain predictions instead of training its own models. The user will also need to duplicate the `feature_parameters` parameters from from the leaders freqai configuration file into the freqai section of the followers config.