Tax on a global shares portfolio in NZ compared to Australia

Does anyone have any analysis on how FIRE'ing or investing in global shares compares in NZ and Australia? Here is some simple modelling in the below scenario, but wondering if anyone has a excel spreadsheet or other analysis?

- Assuming average long-term stock return rates, 7% real market gain, of which 2% is from dividend yield and 5% from capital gain, over twenty five years, and using tax rates representative of investors with middle-high incomes:

Modelling the taxation of NZ shares vs other countries in Python:

Code:
capital_gain, dividend, years = 0.05, 0.02, 25

def f(capital_gains_tax_rate, dividend_tax_rate):
  terminal_value = pow(1 + capital_gain
                       + (1 - dividend_tax_rate) * dividend,
                       years)
  return (1 - capital_gains_tax_rate) * terminal_value

print("AE", f(0, 0))         # No tax
print("NZ", f(0, 0.7))       # 0% CGT, effective 70% dividend tax (Assuming in PIE fund, 1.4% flat annual asset tax computed over 2% dividends)
print("Aus", f(0.165, 0.30))  # 16.5% CGT, 30% dividend tax (on a 32.50% marginal tax rate)

The results are pretty similar for NZ and Aus after 25 years:

Code:
AE 5.427432640122897
NZ 3.904792450119232
Aus 3.9375599083499244

As the time period increases NZ becomes more and more inefficient (pitfalls of a TTE tax system) but this is also not factoring in a potential lower PIR in retirement (not sure how much impact that would have).

Also not 100% sure the Aus tax is correct, as I assumed 50% CGT discount on the 32.50% marginal tax rate, with 30% dividends tax).

Would be great to see if any other people have their own analysis of this.

(This was inspired/stolen from a Bogleheads forum comment on this topic)
 

Similar threads

Back
Top