-
Notifications
You must be signed in to change notification settings - Fork 18
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
Minimum revenue before selling #48
Comments
It will also be a good idea to set in the config the bittrex commission. Like this we are sure to sell when revenue - bittrex_commission > minimun_revenue |
Good idea! Thanks for the suggestion. @Fluorz Will include that in the next release. crypto-trading-bot/src/modules/bot/index.ts Line 151 in 235120a
How should we interpret |
I meant the Edit: How to calculate comission:
|
|
A parameter to never reject and just hold would also be nice. |
Already implemented. See example for BTC and ETH here crypto-trading-bot/config.json Line 2 in 235120a
Just add your coins to hodl in that array Edit: Or do you mean globally? |
I meant globally |
Would you mind creating a separate issue for that? |
In this file : https://github.com/TeamWertarbyte/crypto-trading-bot/blob/development/src/modules/bot/index.ts
You are checking if revenue is more than 0 before selling. We can config a minimum revenue before selling.
Sometimes the bot is selling when he makes 10 cents, but with the bittrex commission we are losing money.
I think it would be wise to sell a share only if the revenue including the commission fees are superior to the configurated minimum_revenue.
What do you think about adding a minimum revenue variable?
The text was updated successfully, but these errors were encountered: