Added hint
This commit is contained in:
parent
233bf07a13
commit
c8d9d84496
1
todo.txt
1
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:
|
||||
|
|
|
|||
|
|
@ -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):
|
||||
|
|
|
|||
Loading…
Reference in New Issue