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):