-
Notifications
You must be signed in to change notification settings - Fork 129
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Improved default settings #707
base: master
Are you sure you want to change the base?
Conversation
'Amount is expressed as a percentage of the account balance of quote/base asset', None), | ||
ConfigElement('spread', 'float', 5, 'Spread', | ||
'The percentage difference between buy and sell', (0, 100, 2, '%')), | ||
ConfigElement('dynamic_spread', 'bool', False, 'Dynamic spread', | ||
'Enable dynamic spread which overrides the spread field', None), | ||
ConfigElement('market_depth_amount', 'float', 0, 'Market depth', | ||
ConfigElement('market_depth_amount', 'float', 99, 'Market depth', |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should not be 99 as different assets have different value. Better keep 0 here.
'How many percent will own spread be compared to market spread?', | ||
(0.01, 1000, 2, '%')), | ||
ConfigElement('center_price', 'float', 0, 'Center price', | ||
'Fixed center price expressed in base asset: base/quote', (0, None, 8, '')), | ||
ConfigElement('center_price_dynamic', 'bool', True, 'Measure center price from market orders', | ||
'Estimate the center from closest opposite orders or from a depth', None), | ||
ConfigElement('center_price_depth', 'float', 0, 'Measurement depth', | ||
ConfigElement('center_price_depth', 'float', 999, 'Measurement depth', |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Same, keep 0 here.
'Cumulative quote amount from which depth center price will be measured', | ||
(0.00000001, 1000000000, 8, '')), | ||
ConfigElement('center_price_from_last_trade', 'bool', False, 'Last trade price as new center price', | ||
'This will make orders move by half the spread at every fill', None), | ||
ConfigElement('center_price_offset', 'bool', False, 'Center price offset based on asset balances', | ||
ConfigElement('center_price_offset', 'bool', True, 'Center price offset based on asset balances', |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think it's better to leave this to the user.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think it is better to leave this to the users with 'true', because false makes no sense for RO strategy.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It's really depends on how it's being used.
No description provided.