From c8d9d84496fed179be012211b154aeef33d035b7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=A1s=20S=C3=A1nchez?= Date: Fri, 8 Nov 2024 09:28:30 -0300 Subject: [PATCH] Added hint --- todo.txt | 1 + utils/commander.py | 1 + 2 files changed, 2 insertions(+) diff --git a/todo.txt b/todo.txt index cdf37d4..0675aa3 100755 --- a/todo.txt +++ b/todo.txt @@ -11,6 +11,7 @@ Mandatory: rapidly. 5. Consolidate vocabulary (trader, pair and bot; instance & trader) 6. Base add for short traders. +7. Dynamic take_profit level: If a trading pair is closing deals frequently, raise the take profit level to take advantage of the volatility. Would be nice to have: diff --git a/utils/commander.py b/utils/commander.py index 90575ae..4e46960 100644 --- a/utils/commander.py +++ b/utils/commander.py @@ -449,6 +449,7 @@ if __name__=="__main__": elif command==62: print("mod_tp_level modifies the profit percentage of a trader") + print("Example: 1.02 is equal to 2% profit") trading_pair = input("Input trader in the format BASE/QUOTE: ").upper() new_profit_level = input("Desired profit level: ") if not validate_pair(trading_pair):