removing total capital in favour of stake amount

This commit is contained in:
misagh
2018-11-10 18:28:05 +01:00
parent d613553306
commit aacc1d5004
4 changed files with 4 additions and 8 deletions

View File

@@ -178,7 +178,6 @@ CONF_SCHEMA = {
"enabled": {'type': 'boolean'},
"process_throttle_secs": {'type': 'integer', 'minimum': 600},
"calculate_since_number_of_days": {'type': 'integer'},
"total_capital_in_stake_currency": {'type': 'number'},
"allowed_risk": {'type': 'number'},
"stoploss_range_min": {'type': 'number'},
"stoploss_range_max": {'type': 'number'},

View File

@@ -787,7 +787,7 @@ def edge_conf(default_conf):
"enabled": True,
"process_throttle_secs": 1800,
"calculate_since_number_of_days": 14,
"total_capital_in_stake_currency": 0.5,
#"total_capital_in_stake_currency": 0.5,
"allowed_risk": 0.01,
"stoploss_range_min": -0.01,
"stoploss_range_max": -0.1,