-
Notifications
You must be signed in to change notification settings - Fork 570
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
[1] Request: Display asset's market fees in Exchange screen. #581
Comments
Market fees are only applied to a user buying an asset that has a market fee; so someone who enters a buy order for 1 OPEN.BTC would be charged a 0.2% fee, which is equivalent to 0.002 OPEN.BTC. They would then receive 1 - 0.002 OPEN.BTC, or 0.998 OPEN.BTC There's also a max_market_fees parameter that sets an upper limit to how big the market fee can be, but Openledger has left it at the default value so it can become very high indeed. I've implemented the math and a possible version of how we could add this to the exchange page: |
The bitshares trading fees are taken for placing and canceling a trade while the trade itself has no fee but aren't the gateway fees applied when the trade occurs (baked into the price) and not when the order gets made? I am not totally clear on this. This leads to a complication in showing or explaining the gateway fees at the time of exchange... how would we do it so that this difference is made clear? |
You're right and that's one reason I never showed them here earlier. The market fees simply get deducted from the amount received when buying an asset, they're applied on the fill_order operation. You think you're buying 100 but you only receive 98. |
Right, so I totally agree with the sentiment that the fees need to be made transparent (I wasn't aware of them for a while) but also somehow clear that they are not deducted until the trade occurs. I think changing "Fee" to "Order Fee" to differentiate it is a good idea and move the Market Fee higher before the Total field to show that it is part of the total and maybe have a small disclaimer or, to save room, a tooltips help bubble that explains what the Market Fee is. On bittrex it looks like this: |
So, we should add an additional field called Market Fee for those assets that charge and additional fee and display it below the Fee. |
This is exactly what Sigve commented about above: #581 (comment) Fee needs to be renamed to "Order Fee" to differentiate. |
This situation is particularly difficult when a user is trying to get the exact amount required to repay a margin debt. I've never seen a trading platform that will alter the number of shares received in order to accommodate trading fees. Trading fees are typically line items and are deducted from the account. |
That's just how it works in bitshares-core though unfortunately, the fees are subtracted from fills and not charged up front. Doing it the way you say means we'll have to place an order to buy 102 instead of 100 if that's what the user entered, or clicked, which will probably make it harder to match orders. |
That is too bad :-( |
@xeroc @oxarbitrage This is a nasty issue. Any creative thought on how to deal with this? Essentially, we need a way for a user to end up with 5 shares if they buy 5. The implication in this thread is that fees cannot be deducted from a users account balance but must come from the trade. |
@abitmore you have any words of wisdom here? |
Let's at least display the market fee. Easy win for now. |
* Update version # * Fix #498: Keep scrollbars visible, restore perfect scrollbar to main exchange div * Fix #589: Openledger deposit address shown as unknown * Only store valid deposit addresses #589 * Fix setting of max_market_fee in asset create/update * First pass at showing market fees in exchange #581 * Add a tooltip explaining the market fee
* Update version # * Fix bitshares#498: Keep scrollbars visible, restore perfect scrollbar to main exchange div * Fix bitshares#589: Openledger deposit address shown as unknown * Only store valid deposit addresses bitshares#589 * Fix setting of max_market_fee in asset create/update * First pass at showing market fees in exchange bitshares#581 * Add a tooltip explaining the market fee
Hi.
Now that we have a team working on the User Experience, I'd like to suggest we take steps in improving the transparency of our Exchange functionality. First good step would be to display asset's market fee on the Exchange screen somewhere on the BUY/SELL widgets, as they do have a "fee" field that displays bts transaction fee, but not the market fee. Listing market fee for the asset would be great.
Also perhaps displaying it in the "Please confirm the transaction" window, would also be good.
Right now the DEX is less transparent than centralized exchanges, and we want to be better than them!
The text was updated successfully, but these errors were encountered: