Income tax
#331
Replies: 1 comment 1 reply
-
So far only post festum, by analyzing trade data in stats = bt.run(...)
trades_pl = stats._trades['PnL']
profitable_trades = trades_pl[trades_pl > 0]
profits = profitable_trades.sum()
tax = .15 * profits
... |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello! In Brazil it's applied 15% tax on the profits of a trade, in fact it as bit more complicated than that, but... Is there a way of applying 15% tax on a profitable trade? Thanks
Beta Was this translation helpful? Give feedback.
All reactions