Always round order pane $limit to 3 digits
parent
020a3955d2
commit
ad31631a8f
|
@ -294,7 +294,10 @@ class SettingsPane:
|
|||
f'limit must > then current pp: {dsize}'
|
||||
)
|
||||
# reset position size value
|
||||
alloc.currency_limit = dsize
|
||||
alloc.currency_limit = round(
|
||||
dsize,
|
||||
ndigits=3,
|
||||
)
|
||||
return False
|
||||
|
||||
alloc.currency_limit = value
|
||||
|
|
Loading…
Reference in New Issue