Scenario:
I want to buy a share in a company.
Cost per share = 50,000USD
Number of shares to buy = 0.5
Transaction fees = 0.2%
Calculations:
Convert fee percentage to a decimal : 0.2 / 100 = 0.002
Convert decimal fee to amount to subtract from shares : 1 - 0.002 = 0.998
Calculate shares bought after fees : 0.5 * 0.998 = 0.499
Two part question:
- Is the calculation correct?
- Is there a better, simpler way of doing this?
dthat is supposed to include the amount for shares + fees becomes less in value compared tos– Tek Nov 12 '21 at 10:00