Re: How to activate Beancount mode in Emacs?

2021-06-25 Thread Szabó Tibor
1. Save https://github.com/beancount/beancount-mode/blob/main/beancount.el in C:/Users//AppData/Roaming/ 2. Add to C:/Users//AppData/ Roaming/.emacs the following 3 lines: (add-to-list 'load-path "~/") (require 'beancount) (add-to-list 'auto-mode-alist '("\\.beancount\\'" . beancount-mode)) That

Re: Importer for Degiro trading account

2021-06-17 Thread Szabó Tibor
, 2021 at 3:59 PM Szabó Tibor wrote: > >> Dear Beancount Users & Developers, >> >> I have recently published an importer for the trading accounts of the >> Dutch broker Degiro. >> >> https://gitlab.com/szabootibor/beancount-degiro >> https://pypi.org/

Importer for Degiro trading account

2021-06-16 Thread Szabó Tibor
Dear Beancount Users & Developers, I have recently published an importer for the trading accounts of the Dutch broker Degiro. https://gitlab.com/szabootibor/beancount-degiro https://pypi.org/project/beancount-degiro Currently, only csv account exports in German language are supported. However,

Importer: output total cost for a currency exchange

2021-05-14 Thread Szabó Tibor
Hi all, sorry if trivial: how do I achieve this output in an importer: 2021-04-16 * "TEST" "Test conversion" Assets:EUR 100.00 EUR Assets:USD -120.00 USD @@ 100.00 EUR I have tried Cost and CostSpec, without success. Specifying per-unit cost (@) works. Thanks a lot, Tibor