check for max stake limit in freqtradebot and backtesting

This commit is contained in:
Sam Germain
2022-02-01 20:39:22 -06:00
parent 55d91f018f
commit 6b6b35ac1c
6 changed files with 47 additions and 15 deletions

View File

@@ -587,7 +587,7 @@ def get_markets():
'limits': {
'amount': {
'min': 0.01,
'max': 1000,
'max': 100000000,
},
'price': {
'min': None,
@@ -622,7 +622,7 @@ def get_markets():
'limits': {
'amount': {
'min': 0.01,
'max': 1000,
'max': 100000000,
},
'price': {
'min': None,
@@ -690,7 +690,7 @@ def get_markets():
'limits': {
'amount': {
'min': 0.01,
'max': 1000,
'max': 100000000,
},
'price': {
'min': None,
@@ -725,7 +725,7 @@ def get_markets():
'limits': {
'amount': {
'min': 0.01,
'max': 1000,
'max': 100000000,
},
'price': {
'min': None,
@@ -760,7 +760,7 @@ def get_markets():
'limits': {
'amount': {
'min': 0.01,
'max': 1000,
'max': 100000000,
},
'price': {
'min': None,
@@ -988,7 +988,7 @@ def get_markets():
'limits': {
'amount': {
'min': 0.01,
'max': 1000,
'max': 100000000000,
},
'price': {
'min': None,