hledger
hledger copied to clipboard
Robust, fast, intuitive plain text accounting tool with CLI, TUI and web interfaces.
I have two journal files: - `example_transactions.journal` that contains my "actuals" - `example_forecast.journal` that contains my future forecasted transactions If I run the following command: ``` hledger -f $FINANCES/example_transactions.journal -f...
balance --gain's functionality needs to be described in detail. Related: https://www.reddit.com/r/plaintextaccounting/comments/141fyoq/hledger_investment_gain_calculation_problem suggests it sometimes shows realised gain, not just unrealised gain. Some examples based on the above: ``` decimal-mark ,...
An old goal, and I think 1.31 is the time to add it: `hledger-read-EXT` scripts in PATH allowing hledger to read EXT files. Like add-on commands, but for adding support...
# Or: Don't let a typo hang user's machine Eduardo reported in chat: > I have made a typo in a transaction. The year was 20211 instead of 2021. Later,...
I've been keeping my journal entries aligned using [vim-ledger](https://github.com/ledger/vim-ledger)'s `LedgerAlign` command, which aligns transactions on the decimal separator at a preconfigured column (default: 60). When adding transactions with `add`, however,...
From #hledger chat today. As part of using hledger to analyse public financial reports, it seems like a useful step would be to develop and document how to import data...
From a report on the mail list: ``` ~ every 16th day of month from 2023-03 to 2024-03 (asset:cash) 1 ``` ``` $ hledger-1.28 print --forecast=2023-02 # Should print nothing...
From https://hledger.org/ledger.html#journal-format, about Metadata values: "values are terminated by comma, can have multiple tag/values on one line" This is problematic, because in ledger format you can write something like `key:...
Currently if we ask for a multiperiod/multicolumn report and we do not specify begin/end date, then hledger will use first/last date with a transaction (from our unfiltered ledger) as the...
In #hledger it was noted that you can't easily generate posting date tags if your CSV dates are not already in ISO format, because posting date tags require ISO dates...