Replies: 1 comment 6 replies
-
I would argue that for UI clarity combining all the fees is useful, since it's simpler and faster to parse, but in that case we need a breakdown. On the other hand, it's simultaneously a bit confusing to combine all the fees, because they do completely different things:
It is impossible to convey all this with a single value, so I believe we definitely need a breakdown on the UI, plus some tooltips explaining this behaviour. I am still undecided about the need for a sum total. Perhaps there is no value in "total fees" because what the user cares about is "how much am I earning/losing" overall, indicated by P/L, and "why", which can be deduced from a breakdown of all the earnings and costs. |
Beta Was this translation helpful? Give feedback.
-
At the moment we display the fees as
Total fees
like this:It's the sum of all fees including the opening fee.
In our internal model we came to the conclusion that a positive and negative fee is not that easy to understand. I wonder if we can take this knowledge and change the fee display in the UI into something different.
In #1217 (comment) were discussing using
FeeAcount::settle
on the projection API as well. That only makes sense if we would change the projection API - and that in turn would only make sense if the consumer (the user interface) requires that. Otherwise we re-implement a conversion fromsettle
to theFeeAccount
's balance - might as well use the balance than as currently implemented.I am not sure that displaying the
Total fees
is the best / most helpful way to learn about the fees for the user.We could for example display
Long -> Short: {absolute_fee_amount}
orShort -> Long: {absolute_fee_amount}
- but I am not sure that helps.I also wonder if users would like the complete fee breakdown. It's easy to say "I want this", but I wonder what users would actually do with this. I am not sure I'd care unless the fees are suddenly super high.
Thoughts?
Beta Was this translation helpful? Give feedback.
All reactions