From ea9c9c101abdb1c3311a5038781a92c03a2f2799 Mon Sep 17 00:00:00 2001 From: Guillaume De Saint Martin Date: Fri, 27 Oct 2023 17:26:37 +0200 Subject: [PATCH] [GPT] docs update --- Evaluator/TA/ai_evaluator/resources/GPTEvaluator.md | 6 ++++-- Services/Services_bases/gpt_service/gpt.py | 2 +- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/Evaluator/TA/ai_evaluator/resources/GPTEvaluator.md b/Evaluator/TA/ai_evaluator/resources/GPTEvaluator.md index 998a41680..6ad1523c4 100644 --- a/Evaluator/TA/ai_evaluator/resources/GPTEvaluator.md +++ b/Evaluator/TA/ai_evaluator/resources/GPTEvaluator.md @@ -1,5 +1,7 @@ Uses [Chat GPT](https://chat.openai.com/) to predict the next moves of the market. -Evaluates between -1 to 1 according to chat GPT's prediction of the selected data and its confidence. +Evaluates between -1 to 1 according to ChatGPT's prediction of the selected data and its confidence. -*This evaluator can't be used in backtesting.* +Note: this evaluator can only be used in backtesting for markets where historical ChatGPT data are available. + +Find the full list of supported historical markets on https://www.octobot.cloud/features/chatgpt-trading diff --git a/Services/Services_bases/gpt_service/gpt.py b/Services/Services_bases/gpt_service/gpt.py index 3b920dccf..9c0975832 100644 --- a/Services/Services_bases/gpt_service/gpt.py +++ b/Services/Services_bases/gpt_service/gpt.py @@ -227,7 +227,7 @@ def clear_signal_history(self): self.stored_signals.clear() def _supported_history_url(self): - return f"{community.IdentifiersProvider.COMMUNITY_LANDING_URL}/chat-gpt-trading" + return f"{community.IdentifiersProvider.COMMUNITY_LANDING_URL}/features/chatgpt-trading" def _ensure_rate_limit(self): if self.last_consumed_token_date != datetime.date.today():