Re: New tool: Tax loss harvester for beancount

2020-03-17 Thread Red S
Hello Martin, I've combined both the beancount command line client and fava extension into https://github.com/redstreet/fava_tax_loss_harvester. It'd be great if you could point to that repo in the contributions doc. Thanks! On Tuesday, March 10, 2020 at 11:35:44 PM UTC-7, Red S wrote: > > Thank

Re: GROUP by financial year

2020-03-17 Thread kuba jamro
+1 for this as a feature request built into beancount. I would be willing to help in the development of this feature too. One of the ways I thought this could be done is in fava and actually it looks like it has already have been done to a basic level. There is a fava option fiscal-year-end h

Re: GROUP by financial year

2020-03-17 Thread kuba jamro
FYI the format quite simple # this matches a financial year like FY2018 for the financial year ending 2018 FY_RE = re.compile(r"^fy(\d{4})$") # this matches a quarter in a financial year like FY2018-Q2 FY_QUARTER_RE = re.compile(r"^fy(\d{4})-q(\d)$") On Tuesday, 17 March 2020 13:47:36 UTC, kuba