Added hint

This commit is contained in:
Nicolás Sánchez 2024-11-08 09:28:30 -03:00
parent 233bf07a13
commit c8d9d84496
2 changed files with 2 additions and 0 deletions

View File

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

View File

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