2016-04-13 06:31:17 +03:00
|
|
|
.\"t
|
2015-10-20 16:26:09 +03:00
|
|
|
|
2019-12-03 19:28:31 +03:00
|
|
|
.TH "hledger_journal" "5" "December 2019" "hledger 1.16.1" "hledger User Manuals"
|
2015-10-20 16:26:09 +03:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.SH NAME
|
|
|
|
.PP
|
2019-05-24 08:26:43 +03:00
|
|
|
Journal - hledger\[aq]s default file format, representing a General
|
2019-01-25 02:37:40 +03:00
|
|
|
Journal
|
2015-10-20 16:26:09 +03:00
|
|
|
.SH DESCRIPTION
|
|
|
|
.PP
|
2019-01-25 02:37:40 +03:00
|
|
|
hledger\[aq]s usual data source is a plain text file containing journal
|
2015-10-20 16:26:09 +03:00
|
|
|
entries in hledger journal format.
|
|
|
|
This file represents a standard accounting general journal.
|
2019-05-24 08:26:43 +03:00
|
|
|
I use file names ending in \f[C].journal\f[R], but that\[aq]s not
|
2019-01-25 02:37:40 +03:00
|
|
|
required.
|
2015-10-20 16:26:09 +03:00
|
|
|
The journal file contains a number of transaction entries, each
|
|
|
|
describing a transfer of money (or any commodity) between two or more
|
|
|
|
named accounts, in a simple format readable by both hledger and humans.
|
|
|
|
.PP
|
2019-01-25 02:37:40 +03:00
|
|
|
hledger\[aq]s journal format is a compatible subset, mostly, of
|
|
|
|
ledger\[aq]s journal format, so hledger can work with compatible ledger
|
|
|
|
journal files as well.
|
|
|
|
It\[aq]s safe, and encouraged, to run both hledger and ledger on the
|
|
|
|
same journal file, eg to validate the results you\[aq]re getting.
|
2015-10-20 16:26:09 +03:00
|
|
|
.PP
|
|
|
|
You can use hledger without learning any more about this file; just use
|
|
|
|
the add or web commands to create and update it.
|
|
|
|
Many users, though, also edit the journal file directly with a text
|
|
|
|
editor, perhaps assisted by the helper modes for emacs or vim.
|
|
|
|
.PP
|
2019-01-25 02:37:40 +03:00
|
|
|
Here\[aq]s an example:
|
2015-10-20 16:26:09 +03:00
|
|
|
.IP
|
|
|
|
.nf
|
|
|
|
\f[C]
|
2019-05-24 08:26:43 +03:00
|
|
|
; A sample journal file. This is a comment.
|
2015-10-20 16:26:09 +03:00
|
|
|
|
2019-06-12 16:01:17 +03:00
|
|
|
2008/01/01 income ; <- transaction\[aq]s first line starts in column 0, contains date and description
|
|
|
|
assets:bank:checking $1 ; <- posting lines start with whitespace, each contains an account name
|
|
|
|
income:salary $-1 ; followed by at least two spaces and an amount
|
2015-10-20 16:26:09 +03:00
|
|
|
|
2019-05-24 08:26:43 +03:00
|
|
|
2008/06/01 gift
|
2019-06-12 16:01:17 +03:00
|
|
|
assets:bank:checking $1 ; <- at least two postings in a transaction
|
|
|
|
income:gifts $-1 ; <- their amounts must balance to 0
|
2015-10-20 16:26:09 +03:00
|
|
|
|
2019-05-24 08:26:43 +03:00
|
|
|
2008/06/02 save
|
|
|
|
assets:bank:saving $1
|
2019-06-12 16:01:17 +03:00
|
|
|
assets:bank:checking ; <- one amount may be omitted; here $-1 is inferred
|
2015-10-20 16:26:09 +03:00
|
|
|
|
2019-06-12 16:01:17 +03:00
|
|
|
2008/06/03 eat & shop ; <- description can be anything
|
2019-05-24 08:26:43 +03:00
|
|
|
expenses:food $1
|
2019-06-12 16:01:17 +03:00
|
|
|
expenses:supplies $1 ; <- this transaction debits two expense accounts
|
|
|
|
assets:cash ; <- $-2 inferred
|
2015-10-20 16:26:09 +03:00
|
|
|
|
2019-05-24 08:26:43 +03:00
|
|
|
2008/10/01 take a loan
|
|
|
|
assets:bank:checking $1
|
|
|
|
liabilities:debts $-1
|
2017-07-25 00:19:25 +03:00
|
|
|
|
2019-06-12 16:01:17 +03:00
|
|
|
2008/12/31 * pay off ; <- an optional * or ! after the date means \[dq]cleared\[dq] (or anything you want)
|
2019-05-24 08:26:43 +03:00
|
|
|
liabilities:debts $1
|
|
|
|
assets:bank:checking
|
|
|
|
\f[R]
|
2015-10-20 16:26:09 +03:00
|
|
|
.fi
|
2016-04-13 06:31:17 +03:00
|
|
|
.SH FILE FORMAT
|
2016-04-08 07:59:30 +03:00
|
|
|
.SS Transactions
|
2015-10-20 16:26:09 +03:00
|
|
|
.PP
|
2017-05-25 03:44:32 +03:00
|
|
|
Transactions are movements of some quantity of commodities between named
|
|
|
|
accounts.
|
|
|
|
Each transaction is represented by a journal entry beginning with a
|
|
|
|
simple date in column 0.
|
|
|
|
This can be followed by any of the following, separated by spaces:
|
2015-10-20 16:26:09 +03:00
|
|
|
.IP \[bu] 2
|
2019-05-24 08:26:43 +03:00
|
|
|
(optional) a status character (empty, \f[C]!\f[R], or \f[C]*\f[R])
|
2015-10-20 16:26:09 +03:00
|
|
|
.IP \[bu] 2
|
2017-06-30 22:45:50 +03:00
|
|
|
(optional) a transaction code (any short number or text, enclosed in
|
|
|
|
parentheses)
|
2015-10-20 16:26:09 +03:00
|
|
|
.IP \[bu] 2
|
2017-05-25 03:44:32 +03:00
|
|
|
(optional) a transaction description (any remaining text until end of
|
2017-09-05 21:44:02 +03:00
|
|
|
line or a semicolon)
|
|
|
|
.IP \[bu] 2
|
|
|
|
(optional) a transaction comment (any remaining text following a
|
|
|
|
semicolon until end of line)
|
2015-10-20 16:26:09 +03:00
|
|
|
.PP
|
2017-05-25 03:44:32 +03:00
|
|
|
Then comes zero or more (but usually at least 2) indented lines
|
2019-01-25 02:37:40 +03:00
|
|
|
representing...
|
2017-05-25 03:44:32 +03:00
|
|
|
.SS Postings
|
|
|
|
.PP
|
|
|
|
A posting is an addition of some amount to, or removal of some amount
|
|
|
|
from, an account.
|
|
|
|
Each posting line begins with at least one space or tab (2 or 4 spaces
|
|
|
|
is common), followed by:
|
2016-06-03 20:21:09 +03:00
|
|
|
.IP \[bu] 2
|
2019-05-24 08:26:43 +03:00
|
|
|
(optional) a status character (empty, \f[C]!\f[R], or \f[C]*\f[R]),
|
2017-05-25 03:44:32 +03:00
|
|
|
followed by a space
|
2016-06-03 20:21:09 +03:00
|
|
|
.IP \[bu] 2
|
2017-05-25 03:44:32 +03:00
|
|
|
(required) an account name (any text, optionally containing \f[B]single
|
2019-05-24 08:26:43 +03:00
|
|
|
spaces\f[R], until end of line or a double space)
|
2016-06-03 20:21:09 +03:00
|
|
|
.IP \[bu] 2
|
2019-05-24 08:26:43 +03:00
|
|
|
(optional) \f[B]two or more spaces\f[R] or tabs followed by an amount.
|
2017-05-25 03:44:32 +03:00
|
|
|
.PP
|
|
|
|
Positive amounts are being added to the account, negative amounts are
|
|
|
|
being removed.
|
|
|
|
.PP
|
|
|
|
The amounts within a transaction must always sum up to zero.
|
|
|
|
As a convenience, one amount may be left blank; it will be inferred so
|
|
|
|
as to balance the transaction.
|
|
|
|
.PP
|
2019-05-24 08:26:43 +03:00
|
|
|
Be sure to note the unusual two-space delimiter between account name and
|
|
|
|
amount.
|
2017-05-25 03:44:32 +03:00
|
|
|
This makes it easy to write account names containing spaces.
|
|
|
|
But if you accidentally leave only one space (or tab) before the amount,
|
|
|
|
the amount will be considered part of the account name.
|
2016-04-08 07:59:30 +03:00
|
|
|
.SS Dates
|
2015-10-20 16:26:09 +03:00
|
|
|
.SS Simple dates
|
|
|
|
.PP
|
2019-05-24 08:26:43 +03:00
|
|
|
Within a journal file, transaction dates use Y/M/D (or Y-M-D or Y.M.D)
|
2016-05-28 22:58:30 +03:00
|
|
|
Leading zeros are optional.
|
|
|
|
The year may be omitted, in which case it will be inferred from the
|
2019-05-24 08:26:43 +03:00
|
|
|
context - the current transaction, the default year set with a default
|
2016-05-28 22:58:30 +03:00
|
|
|
year directive, or the current date when the command is run.
|
2019-05-24 08:26:43 +03:00
|
|
|
Some examples: \f[C]2010/01/31\f[R], \f[C]1/31\f[R],
|
|
|
|
\f[C]2010-01-31\f[R], \f[C]2010.1.31\f[R].
|
2015-10-20 16:26:09 +03:00
|
|
|
.SS Secondary dates
|
|
|
|
.PP
|
2019-05-24 08:26:43 +03:00
|
|
|
Real-life transactions sometimes involve more than one date - eg the
|
2015-10-20 16:26:09 +03:00
|
|
|
date you write a cheque, and the date it clears in your bank.
|
2016-05-28 22:58:30 +03:00
|
|
|
When you want to model this, eg for more accurate balances, you can
|
2016-10-21 02:57:35 +03:00
|
|
|
specify individual posting dates, which I recommend.
|
2016-05-28 22:58:30 +03:00
|
|
|
Or, you can use the secondary dates (aka auxiliary/effective dates)
|
|
|
|
feature, supported for compatibility with Ledger.
|
|
|
|
.PP
|
|
|
|
A secondary date can be written after the primary date, separated by an
|
|
|
|
equals sign.
|
|
|
|
The primary date, on the left, is used by default; the secondary date,
|
2019-05-24 08:26:43 +03:00
|
|
|
on the right, is used when the \f[C]--date2\f[R] flag is specified
|
|
|
|
(\f[C]--aux-date\f[R] or \f[C]--effective\f[R] also work).
|
2016-05-28 22:58:30 +03:00
|
|
|
.PP
|
2019-01-25 02:37:40 +03:00
|
|
|
The meaning of secondary dates is up to you, but it\[aq]s best to follow
|
|
|
|
a consistent rule.
|
|
|
|
Eg write the bank\[aq]s clearing date as primary, and when needed, the
|
|
|
|
date the transaction was initiated as secondary.
|
2015-10-20 16:26:09 +03:00
|
|
|
.PP
|
2019-01-25 02:37:40 +03:00
|
|
|
Here\[aq]s an example.
|
2015-10-20 16:26:09 +03:00
|
|
|
Note that a secondary date will use the year of the primary date if
|
|
|
|
unspecified.
|
|
|
|
.IP
|
|
|
|
.nf
|
|
|
|
\f[C]
|
2019-05-24 08:26:43 +03:00
|
|
|
2010/2/23=2/19 movie ticket
|
|
|
|
expenses:cinema $10
|
|
|
|
assets:checking
|
|
|
|
\f[R]
|
2015-10-20 16:26:09 +03:00
|
|
|
.fi
|
|
|
|
.IP
|
|
|
|
.nf
|
|
|
|
\f[C]
|
2019-05-24 08:26:43 +03:00
|
|
|
$ hledger register checking
|
|
|
|
2010/02/23 movie ticket assets:checking $-10 $-10
|
|
|
|
\f[R]
|
2015-10-20 16:26:09 +03:00
|
|
|
.fi
|
|
|
|
.IP
|
|
|
|
.nf
|
|
|
|
\f[C]
|
2019-05-24 08:26:43 +03:00
|
|
|
$ hledger register checking --date2
|
|
|
|
2010/02/19 movie ticket assets:checking $-10 $-10
|
|
|
|
\f[R]
|
2015-10-20 16:26:09 +03:00
|
|
|
.fi
|
|
|
|
.PP
|
2016-05-28 22:58:30 +03:00
|
|
|
Secondary dates require some effort; you must use them consistently in
|
2015-10-20 16:26:09 +03:00
|
|
|
your journal entries and remember whether to use or not use the
|
2019-05-24 08:26:43 +03:00
|
|
|
\f[C]--date2\f[R] flag for your reports.
|
2016-05-28 22:58:30 +03:00
|
|
|
They are included in hledger for Ledger compatibility, but posting dates
|
|
|
|
are a more powerful and less confusing alternative.
|
2015-10-20 16:26:09 +03:00
|
|
|
.SS Posting dates
|
|
|
|
.PP
|
|
|
|
You can give individual postings a different date from their parent
|
2016-05-28 22:58:30 +03:00
|
|
|
transaction, by adding a posting comment containing a tag (see below)
|
2019-05-24 08:26:43 +03:00
|
|
|
like \f[C]date:DATE\f[R].
|
2015-10-20 16:26:09 +03:00
|
|
|
This is probably the best way to control posting dates precisely.
|
|
|
|
Eg in this example the expense should appear in May reports, and the
|
|
|
|
deduction from checking should be reported on 6/1 for easy bank
|
|
|
|
reconciliation:
|
|
|
|
.IP
|
|
|
|
.nf
|
|
|
|
\f[C]
|
|
|
|
2015/5/30
|
2019-06-12 16:01:17 +03:00
|
|
|
expenses:food $10 ; food purchased on saturday 5/30
|
|
|
|
assets:checking ; bank cleared it on monday, date:6/1
|
2019-05-24 08:26:43 +03:00
|
|
|
\f[R]
|
2015-10-20 16:26:09 +03:00
|
|
|
.fi
|
|
|
|
.IP
|
|
|
|
.nf
|
|
|
|
\f[C]
|
2019-05-24 08:26:43 +03:00
|
|
|
$ hledger -f t.j register food
|
|
|
|
2015/05/30 expenses:food $10 $10
|
|
|
|
\f[R]
|
2015-10-20 16:26:09 +03:00
|
|
|
.fi
|
|
|
|
.IP
|
|
|
|
.nf
|
|
|
|
\f[C]
|
2019-05-24 08:26:43 +03:00
|
|
|
$ hledger -f t.j register checking
|
|
|
|
2015/06/01 assets:checking $-10 $-10
|
|
|
|
\f[R]
|
2015-10-20 16:26:09 +03:00
|
|
|
.fi
|
|
|
|
.PP
|
2016-05-28 22:58:30 +03:00
|
|
|
DATE should be a simple date; if the year is not specified it will use
|
2019-01-25 02:37:40 +03:00
|
|
|
the year of the transaction\[aq]s date.
|
2019-05-24 08:26:43 +03:00
|
|
|
You can set the secondary date similarly, with \f[C]date2:DATE2\f[R].
|
|
|
|
The \f[C]date:\f[R] or \f[C]date2:\f[R] tags must have a valid simple
|
|
|
|
date value if they are present, eg a \f[C]date:\f[R] tag with no value
|
|
|
|
is not allowed.
|
2015-10-20 16:26:09 +03:00
|
|
|
.PP
|
2019-01-25 02:37:40 +03:00
|
|
|
Ledger\[aq]s earlier, more compact bracketed date syntax is also
|
2019-05-24 08:26:43 +03:00
|
|
|
supported: \f[C][DATE]\f[R], \f[C][DATE=DATE2]\f[R] or
|
|
|
|
\f[C][=DATE2]\f[R].
|
|
|
|
hledger will attempt to parse any square-bracketed sequence of the
|
|
|
|
\f[C]0123456789/-.=\f[R] characters in this way.
|
2016-05-28 22:58:30 +03:00
|
|
|
With this syntax, DATE infers its year from the transaction and DATE2
|
|
|
|
infers its year from DATE.
|
2017-05-25 03:44:32 +03:00
|
|
|
.SS Status
|
|
|
|
.PP
|
2017-06-10 23:58:14 +03:00
|
|
|
Transactions, or individual postings within a transaction, can have a
|
|
|
|
status mark, which is a single character before the transaction
|
|
|
|
description or posting account name, separated from it by a space,
|
|
|
|
indicating one of three statuses:
|
2017-05-25 03:44:32 +03:00
|
|
|
.PP
|
2017-06-10 23:58:14 +03:00
|
|
|
.TS
|
|
|
|
tab(@);
|
|
|
|
l l.
|
|
|
|
T{
|
|
|
|
mark \
|
|
|
|
T}@T{
|
|
|
|
status
|
|
|
|
T}
|
|
|
|
_
|
|
|
|
T{
|
|
|
|
\
|
|
|
|
T}@T{
|
2017-06-16 02:27:09 +03:00
|
|
|
unmarked
|
2017-06-10 23:58:14 +03:00
|
|
|
T}
|
|
|
|
T{
|
2019-05-24 08:26:43 +03:00
|
|
|
\f[C]!\f[R]
|
2017-06-10 23:58:14 +03:00
|
|
|
T}@T{
|
|
|
|
pending
|
|
|
|
T}
|
|
|
|
T{
|
2019-05-24 08:26:43 +03:00
|
|
|
\f[C]*\f[R]
|
2017-06-10 23:58:14 +03:00
|
|
|
T}@T{
|
|
|
|
cleared
|
|
|
|
T}
|
|
|
|
.TE
|
2017-05-25 03:44:32 +03:00
|
|
|
.PP
|
2017-06-10 23:58:14 +03:00
|
|
|
When reporting, you can filter by status with the
|
2019-05-24 08:26:43 +03:00
|
|
|
\f[C]-U/--unmarked\f[R], \f[C]-P/--pending\f[R], and
|
|
|
|
\f[C]-C/--cleared\f[R] flags; or the \f[C]status:\f[R],
|
|
|
|
\f[C]status:!\f[R], and \f[C]status:*\f[R] queries; or the U, P, C keys
|
|
|
|
in hledger-ui.
|
2017-05-25 05:17:29 +03:00
|
|
|
.PP
|
2019-05-24 08:26:43 +03:00
|
|
|
Note, in Ledger and in older versions of hledger, the \[dq]unmarked\[dq]
|
|
|
|
state is called \[dq]uncleared\[dq].
|
2017-06-16 02:27:09 +03:00
|
|
|
As of hledger 1.3 we have renamed it to unmarked for clarity.
|
|
|
|
.PP
|
2019-01-25 02:37:40 +03:00
|
|
|
To replicate Ledger and old hledger\[aq]s behaviour of also matching
|
2019-05-24 08:26:43 +03:00
|
|
|
pending, combine -U and -P.
|
2017-05-25 03:44:32 +03:00
|
|
|
.PP
|
2017-06-10 23:58:14 +03:00
|
|
|
Status marks are optional, but can be helpful eg for reconciling with
|
2019-05-24 08:26:43 +03:00
|
|
|
real-world accounts.
|
2017-06-11 00:12:21 +03:00
|
|
|
Some editor modes provide highlighting and shortcuts for working with
|
2017-06-10 23:58:14 +03:00
|
|
|
status.
|
2019-05-24 08:26:43 +03:00
|
|
|
Eg in Emacs ledger-mode, you can toggle transaction status with C-c C-e,
|
|
|
|
or posting status with C-c C-c.
|
2017-06-10 23:58:14 +03:00
|
|
|
.PP
|
2019-05-24 08:26:43 +03:00
|
|
|
What \[dq]uncleared\[dq], \[dq]pending\[dq], and \[dq]cleared\[dq]
|
|
|
|
actually mean is up to you.
|
2019-01-25 02:37:40 +03:00
|
|
|
Here\[aq]s one suggestion:
|
2017-05-25 03:44:32 +03:00
|
|
|
.PP
|
2017-06-10 23:58:14 +03:00
|
|
|
.TS
|
|
|
|
tab(@);
|
2017-12-15 05:20:07 +03:00
|
|
|
lw(9.9n) lw(60.1n).
|
2017-06-10 23:58:14 +03:00
|
|
|
T{
|
|
|
|
status
|
|
|
|
T}@T{
|
|
|
|
meaning
|
|
|
|
T}
|
|
|
|
_
|
|
|
|
T{
|
|
|
|
uncleared
|
|
|
|
T}@T{
|
2017-06-11 00:12:21 +03:00
|
|
|
recorded but not yet reconciled; needs review
|
2017-06-10 23:58:14 +03:00
|
|
|
T}
|
|
|
|
T{
|
|
|
|
pending
|
|
|
|
T}@T{
|
2017-06-11 00:12:21 +03:00
|
|
|
tentatively reconciled (if needed, eg during a big reconciliation)
|
2017-06-10 23:58:14 +03:00
|
|
|
T}
|
|
|
|
T{
|
|
|
|
cleared
|
|
|
|
T}@T{
|
2017-06-11 00:12:21 +03:00
|
|
|
complete, reconciled as far as possible, and considered correct
|
2017-06-10 23:58:14 +03:00
|
|
|
T}
|
|
|
|
.TE
|
2017-05-25 03:44:32 +03:00
|
|
|
.PP
|
2019-05-24 08:26:43 +03:00
|
|
|
With this scheme, you would use \f[C]-PC\f[R] to see the current balance
|
|
|
|
at your bank, \f[C]-U\f[R] to see things which will probably hit your
|
2017-06-11 00:12:21 +03:00
|
|
|
bank soon (like uncashed checks), and no flags to see the most
|
2019-05-24 08:26:43 +03:00
|
|
|
up-to-date state of your finances.
|
2017-09-06 00:06:43 +03:00
|
|
|
.SS Description
|
2017-09-05 21:44:02 +03:00
|
|
|
.PP
|
2019-01-25 02:37:40 +03:00
|
|
|
A transaction\[aq]s description is the rest of the line following the
|
|
|
|
date and status mark (or until a comment begins).
|
2019-05-24 08:26:43 +03:00
|
|
|
Sometimes called the \[dq]narration\[dq] in traditional bookkeeping, it
|
|
|
|
can be used for whatever you wish, or left blank.
|
2017-09-06 00:06:43 +03:00
|
|
|
Transaction descriptions can be queried, unlike comments.
|
|
|
|
.SS Payee and note
|
|
|
|
.PP
|
2019-09-01 07:02:00 +03:00
|
|
|
You can optionally include a \f[C]|\f[R] (pipe) character in
|
|
|
|
descriptions to subdivide the description into separate fields for
|
|
|
|
payee/payer name on the left (up to the first \f[C]|\f[R]) and an
|
|
|
|
additional note field on the right (after the first \f[C]|\f[R]).
|
2017-09-06 00:06:43 +03:00
|
|
|
This may be worthwhile if you need to do more precise querying and
|
2019-09-01 07:02:00 +03:00
|
|
|
pivoting by payee or by note.
|
2016-04-08 07:59:30 +03:00
|
|
|
.SS Account names
|
2015-10-20 16:26:09 +03:00
|
|
|
.PP
|
|
|
|
Account names typically have several parts separated by a full colon,
|
|
|
|
from which hledger derives a hierarchical chart of accounts.
|
|
|
|
They can be anything you like, but in finance there are traditionally
|
2019-05-24 08:26:43 +03:00
|
|
|
five top-level accounts: \f[C]assets\f[R], \f[C]liabilities\f[R],
|
|
|
|
\f[C]income\f[R], \f[C]expenses\f[R], and \f[C]equity\f[R].
|
2015-10-20 16:26:09 +03:00
|
|
|
.PP
|
|
|
|
Account names may contain single spaces, eg:
|
2019-05-24 08:26:43 +03:00
|
|
|
\f[C]assets:accounts receivable\f[R].
|
2016-05-28 22:58:30 +03:00
|
|
|
Because of this, they must always be followed by \f[B]two or more
|
2019-05-24 08:26:43 +03:00
|
|
|
spaces\f[R] (or newline).
|
2015-10-20 16:26:09 +03:00
|
|
|
.PP
|
|
|
|
Account names can be aliased.
|
2016-04-08 07:59:30 +03:00
|
|
|
.SS Amounts
|
2015-10-20 16:26:09 +03:00
|
|
|
.PP
|
|
|
|
After the account name, there is usually an amount.
|
2019-09-28 03:32:59 +03:00
|
|
|
(Important: between account name and amount, there must be \f[B]two or
|
|
|
|
more spaces\f[R].)
|
|
|
|
.PP
|
|
|
|
hledger\[aq]s amount format is flexible, supporting several
|
|
|
|
international formats.
|
|
|
|
Here are some examples.
|
|
|
|
Amounts have a number (the \[dq]quantity\[dq]):
|
|
|
|
.IP
|
|
|
|
.nf
|
|
|
|
\f[C]
|
|
|
|
1
|
|
|
|
\f[R]
|
|
|
|
.fi
|
|
|
|
.PP
|
|
|
|
\&..and usually a currency or commodity name (the \[dq]commodity\[dq]).
|
|
|
|
This is a symbol, word, or phrase, to the left or right of the quantity,
|
|
|
|
with or without a separating space:
|
|
|
|
.IP
|
|
|
|
.nf
|
|
|
|
\f[C]
|
|
|
|
$1
|
|
|
|
4000 AAPL
|
|
|
|
\f[R]
|
|
|
|
.fi
|
|
|
|
.PP
|
|
|
|
If the commodity name contains spaces, numbers, or punctuation, it must
|
|
|
|
be enclosed in double quotes:
|
|
|
|
.IP
|
|
|
|
.nf
|
|
|
|
\f[C]
|
|
|
|
3 \[dq]no. 42 green apples\[dq]
|
|
|
|
\f[R]
|
|
|
|
.fi
|
|
|
|
.PP
|
|
|
|
Amounts can be negative.
|
|
|
|
The minus sign can be written before or after a left-side commodity
|
|
|
|
symbol:
|
|
|
|
.IP
|
|
|
|
.nf
|
|
|
|
\f[C]
|
|
|
|
-$1
|
|
|
|
$-1
|
|
|
|
\f[R]
|
|
|
|
.fi
|
|
|
|
.PP
|
|
|
|
Scientific E notation is allowed:
|
|
|
|
.IP
|
|
|
|
.nf
|
|
|
|
\f[C]
|
|
|
|
1E-6
|
|
|
|
EUR 1E3
|
|
|
|
\f[R]
|
|
|
|
.fi
|
|
|
|
.PP
|
|
|
|
A decimal mark (decimal point) can be written with a period or a comma:
|
|
|
|
.IP
|
|
|
|
.nf
|
|
|
|
\f[C]
|
|
|
|
1.23
|
|
|
|
1,23456780000009
|
|
|
|
\f[R]
|
|
|
|
.fi
|
|
|
|
.SS Digit group marks
|
|
|
|
.PP
|
|
|
|
In the integer part of the quantity (left of the decimal mark), groups
|
|
|
|
of digits can optionally be separated by a \[dq]digit group mark\[dq] -
|
|
|
|
a space, comma, or period (different from the decimal mark):
|
|
|
|
.IP
|
|
|
|
.nf
|
|
|
|
\f[C]
|
|
|
|
$1,000,000.00
|
|
|
|
EUR 2.000.000,00
|
|
|
|
INR 9,99,99,999.00
|
|
|
|
1 000 000.9455
|
|
|
|
\f[R]
|
|
|
|
.fi
|
|
|
|
.PP
|
|
|
|
Note, a number containing a single group mark and no decimal mark is
|
|
|
|
ambiguous.
|
|
|
|
Are these group marks or decimal marks ?
|
|
|
|
.IP
|
|
|
|
.nf
|
|
|
|
\f[C]
|
|
|
|
1,000
|
|
|
|
1.000
|
|
|
|
\f[R]
|
|
|
|
.fi
|
|
|
|
.PP
|
|
|
|
hledger will treat them both as decimal marks by default (cf #793).
|
|
|
|
If you use digit group marks, to prevent confusion and undetected typos
|
|
|
|
we recommend you write commodity directives at the top of the file to
|
|
|
|
explicitly declare the decimal mark (and optionally a digit group mark).
|
|
|
|
Note, these formats (\[dq]amount styles\[dq]) are specific to each
|
|
|
|
commodity, so if your data uses multiple formats, hledger can handle it:
|
2017-11-29 04:20:41 +03:00
|
|
|
.IP
|
|
|
|
.nf
|
|
|
|
\f[C]
|
2019-05-24 08:26:43 +03:00
|
|
|
commodity $1,000.00
|
2019-09-28 03:32:59 +03:00
|
|
|
commodity EUR 1.000,00
|
|
|
|
commodity INR 9,99,99,999.00
|
2019-10-01 18:59:32 +03:00
|
|
|
commodity 1 000 000.9455
|
2019-05-24 08:26:43 +03:00
|
|
|
\f[R]
|
2017-11-29 04:20:41 +03:00
|
|
|
.fi
|
2019-09-28 03:32:59 +03:00
|
|
|
.SS Amount display format
|
2017-11-29 04:20:41 +03:00
|
|
|
.PP
|
2019-09-28 03:32:59 +03:00
|
|
|
For each commodity, hledger chooses a consistent format to use when
|
|
|
|
displaying amounts.
|
|
|
|
(Except price amounts, which are always displayed as written).
|
2016-05-28 22:58:30 +03:00
|
|
|
The display format is chosen as follows:
|
2015-10-20 16:26:09 +03:00
|
|
|
.IP \[bu] 2
|
2019-09-28 03:32:59 +03:00
|
|
|
If there is a commodity directive for the commodity, that format is used
|
|
|
|
(see examples above).
|
2015-10-20 16:26:09 +03:00
|
|
|
.IP \[bu] 2
|
2019-09-28 03:32:59 +03:00
|
|
|
Otherwise the format of the first posting amount in that commodity seen
|
|
|
|
in the journal is used.
|
|
|
|
But the number of decimal places (\[dq]precision\[dq]) will be the
|
|
|
|
maximum from all posting amounts in that commmodity.
|
2015-10-20 16:26:09 +03:00
|
|
|
.IP \[bu] 2
|
2019-09-28 03:32:59 +03:00
|
|
|
Or if there are no such amounts in the journal, a default format is used
|
2019-05-24 08:26:43 +03:00
|
|
|
(like \f[C]$1000.00\f[R]).
|
2016-05-28 22:58:30 +03:00
|
|
|
.PP
|
2019-09-28 03:32:59 +03:00
|
|
|
Price amounts, and amounts in \f[C]D\f[R] directives don\[aq]t affect
|
|
|
|
the amount display format directly, but occasionally they can do so
|
2018-06-09 03:26:58 +03:00
|
|
|
indirectly.
|
2019-05-24 08:26:43 +03:00
|
|
|
(Eg when D\[aq]s default commodity is applied to a commodity-less
|
2019-01-25 02:37:40 +03:00
|
|
|
amount, or when an amountless posting is balanced using a price\[aq]s
|
2019-09-28 03:32:59 +03:00
|
|
|
commodity, or when -V is used.) If you find this causing problems, use a
|
|
|
|
commodity directive to set the display format.
|
2016-04-08 07:59:30 +03:00
|
|
|
.SS Virtual Postings
|
2015-10-20 16:26:09 +03:00
|
|
|
.PP
|
2016-05-28 22:58:30 +03:00
|
|
|
When you parenthesise the account name in a posting, we call that a
|
2019-05-24 08:26:43 +03:00
|
|
|
\f[I]virtual posting\f[R], which means:
|
2015-10-20 16:26:09 +03:00
|
|
|
.IP \[bu] 2
|
|
|
|
it is ignored when checking that the transaction is balanced
|
|
|
|
.IP \[bu] 2
|
2019-05-24 08:26:43 +03:00
|
|
|
it is excluded from reports when the \f[C]--real/-R\f[R] flag is used,
|
|
|
|
or the \f[C]real:1\f[R] query.
|
2015-10-20 16:26:09 +03:00
|
|
|
.PP
|
2019-01-25 02:37:40 +03:00
|
|
|
You could use this, eg, to set an account\[aq]s opening balance without
|
2019-05-24 08:26:43 +03:00
|
|
|
needing to use the \f[C]equity:opening balances\f[R] account:
|
2015-10-20 16:26:09 +03:00
|
|
|
.IP
|
|
|
|
.nf
|
|
|
|
\f[C]
|
2019-05-24 08:26:43 +03:00
|
|
|
1/1 special unbalanced posting to set initial balance
|
|
|
|
(assets:checking) $1000
|
|
|
|
\f[R]
|
2015-10-20 16:26:09 +03:00
|
|
|
.fi
|
|
|
|
.PP
|
2016-05-28 22:58:30 +03:00
|
|
|
When the account name is bracketed, we call it a \f[I]balanced virtual
|
2019-05-24 08:26:43 +03:00
|
|
|
posting\f[R].
|
2016-05-28 22:58:30 +03:00
|
|
|
This is like an ordinary virtual posting except the balanced virtual
|
|
|
|
postings in a transaction must balance to 0, like the real postings (but
|
|
|
|
separately from them).
|
2019-05-24 08:26:43 +03:00
|
|
|
Balanced virtual postings are also excluded by \f[C]--real/-R\f[R] or
|
|
|
|
\f[C]real:1\f[R].
|
2016-05-28 22:58:30 +03:00
|
|
|
.IP
|
|
|
|
.nf
|
|
|
|
\f[C]
|
2019-05-24 08:26:43 +03:00
|
|
|
1/1 buy food with cash, and update some budget-tracking subaccounts elsewhere
|
|
|
|
expenses:food $10
|
|
|
|
assets:cash $-10
|
|
|
|
[assets:checking:available] $10
|
|
|
|
[assets:checking:budget:food] $-10
|
|
|
|
\f[R]
|
2016-05-28 22:58:30 +03:00
|
|
|
.fi
|
2015-10-20 16:26:09 +03:00
|
|
|
.PP
|
2016-05-28 22:58:30 +03:00
|
|
|
Virtual postings have some legitimate uses, but those are few.
|
|
|
|
You can usually find an equivalent journal entry using real postings,
|
|
|
|
which is more correct and provides better error checking.
|
2016-04-08 07:59:30 +03:00
|
|
|
.SS Balance Assertions
|
2015-10-20 16:26:09 +03:00
|
|
|
.PP
|
2019-05-24 08:26:43 +03:00
|
|
|
hledger supports Ledger-style balance assertions in journal files.
|
|
|
|
These look like, for example, \f[C]= EXPECTEDBALANCE\f[R] following a
|
2019-02-21 00:15:41 +03:00
|
|
|
posting\[aq]s amount.
|
|
|
|
Eg here we assert the expected dollar balance in accounts a and b after
|
|
|
|
each posting:
|
2015-10-20 16:26:09 +03:00
|
|
|
.IP
|
|
|
|
.nf
|
|
|
|
\f[C]
|
|
|
|
2013/1/1
|
2019-05-24 08:26:43 +03:00
|
|
|
a $1 =$1
|
|
|
|
b =$-1
|
2015-10-20 16:26:09 +03:00
|
|
|
|
|
|
|
2013/1/2
|
2019-05-24 08:26:43 +03:00
|
|
|
a $1 =$2
|
|
|
|
b $-1 =$-2
|
|
|
|
\f[R]
|
2015-10-20 16:26:09 +03:00
|
|
|
.fi
|
|
|
|
.PP
|
|
|
|
After reading a journal file, hledger will check all balance assertions
|
|
|
|
and report an error if any of them fail.
|
|
|
|
Balance assertions can protect you from, eg, inadvertently disrupting
|
|
|
|
reconciled balances while cleaning up old entries.
|
|
|
|
You can disable them temporarily with the
|
2019-05-24 08:26:43 +03:00
|
|
|
\f[C]-I/--ignore-assertions\f[R] flag, which can be useful for
|
2015-10-20 16:26:09 +03:00
|
|
|
troubleshooting or for reading Ledger files.
|
2020-01-05 18:04:00 +03:00
|
|
|
(Note: this flag currently does not disable balance assignments, below).
|
2015-10-20 16:26:09 +03:00
|
|
|
.SS Assertions and ordering
|
|
|
|
.PP
|
2019-01-25 02:37:40 +03:00
|
|
|
hledger sorts an account\[aq]s postings and assertions first by date and
|
2015-10-20 16:26:09 +03:00
|
|
|
then (for postings on the same day) by parse order.
|
|
|
|
Note this is different from Ledger, which sorts assertions only by parse
|
|
|
|
order.
|
|
|
|
(Also, Ledger assertions do not see the accumulated effect of repeated
|
|
|
|
postings to the same account within a transaction.)
|
|
|
|
.PP
|
|
|
|
So, hledger balance assertions keep working if you reorder
|
2019-05-24 08:26:43 +03:00
|
|
|
differently-dated transactions within the journal.
|
|
|
|
But if you reorder same-dated transactions or postings, assertions might
|
|
|
|
break and require updating.
|
2015-10-20 16:26:09 +03:00
|
|
|
This order dependence does bring an advantage: precise control over the
|
|
|
|
order of postings and assertions within a day, so you can assert
|
2019-05-24 08:26:43 +03:00
|
|
|
intra-day balances.
|
2017-01-15 04:49:26 +03:00
|
|
|
.SS Assertions and included files
|
2015-10-20 16:26:09 +03:00
|
|
|
.PP
|
|
|
|
With included files, things are a little more complicated.
|
|
|
|
Including preserves the ordering of postings and assertions.
|
|
|
|
If you have multiple postings to an account on the same day, split
|
2019-01-25 02:37:40 +03:00
|
|
|
across different files, and you also want to assert the account\[aq]s
|
|
|
|
balance on the same day, you\[aq]ll have to put the assertion in the
|
|
|
|
right file.
|
2019-05-24 08:26:43 +03:00
|
|
|
.SS Assertions and multiple -f options
|
2017-01-15 04:49:26 +03:00
|
|
|
.PP
|
2019-01-25 02:37:40 +03:00
|
|
|
Balance assertions don\[aq]t work well across files specified with
|
2019-05-24 08:26:43 +03:00
|
|
|
multiple -f options.
|
2017-01-15 04:49:26 +03:00
|
|
|
Use include or concatenate the files instead.
|
2015-10-20 16:26:09 +03:00
|
|
|
.SS Assertions and commodities
|
|
|
|
.PP
|
2019-05-24 08:26:43 +03:00
|
|
|
The asserted balance must be a simple single-commodity amount, and in
|
2019-01-25 02:37:40 +03:00
|
|
|
fact the assertion checks only this commodity\[aq]s balance within the
|
2019-05-24 08:26:43 +03:00
|
|
|
(possibly multi-commodity) account balance.
|
2018-12-03 04:26:18 +03:00
|
|
|
.PD 0
|
|
|
|
.P
|
|
|
|
.PD
|
|
|
|
This is how assertions work in Ledger also.
|
2019-05-24 08:26:43 +03:00
|
|
|
We could call this a \[dq]partial\[dq] balance assertion.
|
2018-12-03 04:26:18 +03:00
|
|
|
.PP
|
|
|
|
To assert the balance of more than one commodity in an account, you can
|
2019-01-25 02:37:40 +03:00
|
|
|
write multiple postings, each asserting one commodity\[aq]s balance.
|
2018-12-03 04:26:18 +03:00
|
|
|
.PP
|
2019-05-24 08:26:43 +03:00
|
|
|
You can make a stronger \[dq]total\[dq] balance assertion by writing a
|
|
|
|
double equals sign (\f[C]== EXPECTEDBALANCE\f[R]).
|
2019-02-21 00:15:41 +03:00
|
|
|
This asserts that there are no other unasserted commodities in the
|
|
|
|
account (or, that their balance is 0).
|
2018-12-03 04:26:18 +03:00
|
|
|
.IP
|
|
|
|
.nf
|
|
|
|
\f[C]
|
|
|
|
2013/1/1
|
2019-05-24 08:26:43 +03:00
|
|
|
a $1
|
|
|
|
a 1\[Eu]
|
|
|
|
b $-1
|
|
|
|
c -1\[Eu]
|
2018-12-03 04:26:18 +03:00
|
|
|
|
2019-05-24 08:26:43 +03:00
|
|
|
2013/1/2 ; These assertions succeed
|
|
|
|
a 0 = $1
|
|
|
|
a 0 = 1\[Eu]
|
|
|
|
b 0 == $-1
|
|
|
|
c 0 == -1\[Eu]
|
2018-12-03 04:26:18 +03:00
|
|
|
|
2019-05-24 08:26:43 +03:00
|
|
|
2013/1/3 ; This assertion fails as \[aq]a\[aq] also contains 1\[Eu]
|
|
|
|
a 0 == $1
|
|
|
|
\f[R]
|
2018-12-03 04:26:18 +03:00
|
|
|
.fi
|
|
|
|
.PP
|
2019-01-25 02:37:40 +03:00
|
|
|
It\[aq]s not yet possible to make a complete assertion about a balance
|
|
|
|
that has multiple commodities.
|
2018-12-03 04:26:18 +03:00
|
|
|
One workaround is to isolate each commodity into its own subaccount:
|
|
|
|
.IP
|
|
|
|
.nf
|
|
|
|
\f[C]
|
|
|
|
2013/1/1
|
2019-05-24 08:26:43 +03:00
|
|
|
a:usd $1
|
|
|
|
a:euro 1\[Eu]
|
|
|
|
b
|
2018-12-03 04:26:18 +03:00
|
|
|
|
|
|
|
2013/1/2
|
2019-05-24 08:26:43 +03:00
|
|
|
a 0 == 0
|
|
|
|
a:usd 0 == $1
|
|
|
|
a:euro 0 == 1\[Eu]
|
|
|
|
\f[R]
|
2018-12-03 04:26:18 +03:00
|
|
|
.fi
|
2019-01-05 10:31:13 +03:00
|
|
|
.SS Assertions and prices
|
|
|
|
.PP
|
2019-01-27 02:56:43 +03:00
|
|
|
Balance assertions ignore transaction prices, and should normally be
|
|
|
|
written without one:
|
|
|
|
.IP
|
|
|
|
.nf
|
|
|
|
\f[C]
|
|
|
|
2019/1/1
|
2019-05-24 08:26:43 +03:00
|
|
|
(a) $1 \[at] \[Eu]1 = $1
|
|
|
|
\f[R]
|
2019-01-27 02:56:43 +03:00
|
|
|
.fi
|
|
|
|
.PP
|
|
|
|
We do allow prices to be written there, however, and print shows them,
|
|
|
|
even though they don\[aq]t affect whether the assertion passes or fails.
|
|
|
|
This is for backward compatibility (hledger\[aq]s close command used to
|
|
|
|
generate balance assertions with prices), and because balance
|
2019-05-24 08:26:43 +03:00
|
|
|
\f[I]assignments\f[R] do use them (see below).
|
2015-10-20 16:26:09 +03:00
|
|
|
.SS Assertions and subaccounts
|
|
|
|
.PP
|
2019-05-24 08:26:43 +03:00
|
|
|
The balance assertions above (\f[C]=\f[R] and \f[C]==\f[R]) do not count
|
2019-02-21 00:15:41 +03:00
|
|
|
the balance from subaccounts; they check the account\[aq]s exclusive
|
|
|
|
balance only.
|
2019-05-24 08:26:43 +03:00
|
|
|
You can assert the balance including subaccounts by writing \f[C]=*\f[R]
|
|
|
|
or \f[C]==*\f[R], eg:
|
2015-10-20 16:26:09 +03:00
|
|
|
.IP
|
|
|
|
.nf
|
|
|
|
\f[C]
|
2019-02-21 00:15:41 +03:00
|
|
|
2019/1/1
|
2019-05-24 08:26:43 +03:00
|
|
|
equity:opening balances
|
|
|
|
checking:a 5
|
|
|
|
checking:b 5
|
|
|
|
checking 1 ==* 11
|
|
|
|
\f[R]
|
2015-10-20 16:26:09 +03:00
|
|
|
.fi
|
|
|
|
.SS Assertions and virtual postings
|
|
|
|
.PP
|
|
|
|
Balance assertions are checked against all postings, both real and
|
|
|
|
virtual.
|
2019-05-24 08:26:43 +03:00
|
|
|
They are not affected by the \f[C]--real/-R\f[R] flag or \f[C]real:\f[R]
|
|
|
|
query.
|
2019-01-20 02:29:23 +03:00
|
|
|
.SS Assertions and precision
|
|
|
|
.PP
|
|
|
|
Balance assertions compare the exactly calculated amounts, which are not
|
|
|
|
always what is shown by reports.
|
|
|
|
Eg a commodity directive may limit the display precision, but this will
|
|
|
|
not affect balance assertions.
|
|
|
|
Balance assertion failure messages show exact amounts.
|
2016-12-10 18:56:57 +03:00
|
|
|
.SS Balance Assignments
|
|
|
|
.PP
|
2019-05-24 08:26:43 +03:00
|
|
|
Ledger-style balance assignments are also supported.
|
2016-12-10 18:56:57 +03:00
|
|
|
These are like balance assertions, but with no posting amount on the
|
|
|
|
left side of the equals sign; instead it is calculated automatically so
|
|
|
|
as to satisfy the assertion.
|
|
|
|
This can be a convenience during data entry, eg when setting opening
|
|
|
|
balances:
|
|
|
|
.IP
|
|
|
|
.nf
|
|
|
|
\f[C]
|
2019-05-24 08:26:43 +03:00
|
|
|
; starting a new journal, set asset account balances
|
|
|
|
2016/1/1 opening balances
|
|
|
|
assets:checking = $409.32
|
|
|
|
assets:savings = $735.24
|
|
|
|
assets:cash = $42
|
|
|
|
equity:opening balances
|
|
|
|
\f[R]
|
2016-12-10 18:56:57 +03:00
|
|
|
.fi
|
|
|
|
.PP
|
|
|
|
or when adjusting a balance to reality:
|
|
|
|
.IP
|
|
|
|
.nf
|
|
|
|
\f[C]
|
2019-05-24 08:26:43 +03:00
|
|
|
; no cash left; update balance, record any untracked spending as a generic expense
|
2016-12-10 18:56:57 +03:00
|
|
|
2016/1/15
|
2019-05-24 08:26:43 +03:00
|
|
|
assets:cash = $0
|
|
|
|
expenses:misc
|
|
|
|
\f[R]
|
2016-12-10 18:56:57 +03:00
|
|
|
.fi
|
|
|
|
.PP
|
2019-01-25 02:37:40 +03:00
|
|
|
The calculated amount depends on the account\[aq]s balance in the
|
2019-05-24 08:26:43 +03:00
|
|
|
commodity at that point (which depends on the previously-dated postings
|
2019-01-25 02:37:40 +03:00
|
|
|
of the commodity to that account since the last balance assertion or
|
2016-12-10 18:56:57 +03:00
|
|
|
assignment).
|
|
|
|
Note that using balance assignments makes your journal a little less
|
|
|
|
explicit; to know the exact amount posted, you have to run hledger or do
|
|
|
|
the calculations yourself, instead of just reading it.
|
2019-01-27 02:56:43 +03:00
|
|
|
.SS Balance assignments and prices
|
|
|
|
.PP
|
|
|
|
A transaction price in a balance assignment will cause the calculated
|
|
|
|
amount to have that price attached:
|
|
|
|
.IP
|
|
|
|
.nf
|
|
|
|
\f[C]
|
|
|
|
2019/1/1
|
2019-05-24 08:26:43 +03:00
|
|
|
(a) = $1 \[at] \[Eu]2
|
|
|
|
\f[R]
|
2019-01-27 02:56:43 +03:00
|
|
|
.fi
|
|
|
|
.IP
|
|
|
|
.nf
|
|
|
|
\f[C]
|
2019-05-24 08:26:43 +03:00
|
|
|
$ hledger print --explicit
|
2019-01-27 02:56:43 +03:00
|
|
|
2019/01/01
|
2019-05-24 08:26:43 +03:00
|
|
|
(a) $1 \[at] \[Eu]2 = $1 \[at] \[Eu]2
|
|
|
|
\f[R]
|
2019-01-27 02:56:43 +03:00
|
|
|
.fi
|
2015-10-20 16:26:09 +03:00
|
|
|
.SS Transaction prices
|
|
|
|
.PP
|
2019-01-25 02:37:40 +03:00
|
|
|
Within a transaction, you can note an amount\[aq]s price in another
|
2017-05-23 03:32:33 +03:00
|
|
|
commodity.
|
|
|
|
This can be used to document the cost (in a purchase) or selling price
|
|
|
|
(in a sale).
|
|
|
|
For example, transaction prices are useful to record purchases of a
|
|
|
|
foreign currency.
|
2018-06-09 03:26:58 +03:00
|
|
|
Note transaction prices are fixed at the time of the transaction, and do
|
|
|
|
not change over time.
|
|
|
|
See also market prices, which represent prevailing exchange rates on a
|
|
|
|
certain date.
|
2016-12-31 01:31:54 +03:00
|
|
|
.PP
|
|
|
|
There are several ways to record a transaction price:
|
2015-10-20 16:26:09 +03:00
|
|
|
.IP "1." 3
|
2019-05-24 08:26:43 +03:00
|
|
|
Write the price per unit, as \f[C]\[at] UNITPRICE\f[R] after the amount:
|
2015-10-20 16:26:09 +03:00
|
|
|
.RS 4
|
|
|
|
.IP
|
|
|
|
.nf
|
|
|
|
\f[C]
|
|
|
|
2009/1/1
|
2019-05-24 08:26:43 +03:00
|
|
|
assets:euros \[Eu]100 \[at] $1.35 ; one hundred euros purchased at $1.35 each
|
2019-09-01 07:02:00 +03:00
|
|
|
assets:dollars ; balancing amount is -$135.00
|
2019-05-24 08:26:43 +03:00
|
|
|
\f[R]
|
2015-10-20 16:26:09 +03:00
|
|
|
.fi
|
|
|
|
.RE
|
|
|
|
.IP "2." 3
|
2019-05-24 08:26:43 +03:00
|
|
|
Write the total price, as \f[C]\[at]\[at] TOTALPRICE\f[R] after the
|
|
|
|
amount:
|
2015-10-20 16:26:09 +03:00
|
|
|
.RS 4
|
|
|
|
.IP
|
|
|
|
.nf
|
|
|
|
\f[C]
|
|
|
|
2009/1/1
|
2019-05-24 08:26:43 +03:00
|
|
|
assets:euros \[Eu]100 \[at]\[at] $135 ; one hundred euros purchased at $135 for the lot
|
|
|
|
assets:dollars
|
|
|
|
\f[R]
|
2015-10-20 16:26:09 +03:00
|
|
|
.fi
|
|
|
|
.RE
|
|
|
|
.IP "3." 3
|
2017-05-23 03:32:33 +03:00
|
|
|
Specify amounts for all postings, using exactly two commodities, and let
|
|
|
|
hledger infer the price that balances the transaction:
|
2015-10-20 16:26:09 +03:00
|
|
|
.RS 4
|
|
|
|
.IP
|
|
|
|
.nf
|
|
|
|
\f[C]
|
|
|
|
2009/1/1
|
2019-09-01 07:02:00 +03:00
|
|
|
assets:euros \[Eu]100 ; one hundred euros purchased
|
|
|
|
assets:dollars $-135 ; for $135
|
2019-05-24 08:26:43 +03:00
|
|
|
\f[R]
|
2015-10-20 16:26:09 +03:00
|
|
|
.fi
|
|
|
|
.RE
|
|
|
|
.PP
|
2018-06-09 03:26:58 +03:00
|
|
|
(Ledger users: Ledger uses a different syntax for fixed prices,
|
2019-05-24 08:26:43 +03:00
|
|
|
\f[C]{=UNITPRICE}\f[R], which hledger currently ignores).
|
2018-06-09 03:26:58 +03:00
|
|
|
.PP
|
2019-05-24 08:26:43 +03:00
|
|
|
Use the \f[C]-B/--cost\f[R] flag to convert amounts to their transaction
|
|
|
|
price\[aq]s commodity, if any.
|
|
|
|
(mnemonic: \[dq]B\[dq] is from \[dq]cost Basis\[dq], as in Ledger).
|
|
|
|
Eg here is how -B affects the balance report for the example above:
|
2015-10-20 16:26:09 +03:00
|
|
|
.IP
|
|
|
|
.nf
|
|
|
|
\f[C]
|
2019-05-24 08:26:43 +03:00
|
|
|
$ hledger bal -N --flat
|
|
|
|
$-135 assets:dollars
|
|
|
|
\[Eu]100 assets:euros
|
|
|
|
$ hledger bal -N --flat -B
|
|
|
|
$-135 assets:dollars
|
|
|
|
$135 assets:euros # <- the euros\[aq] cost
|
|
|
|
\f[R]
|
2015-10-20 16:26:09 +03:00
|
|
|
.fi
|
|
|
|
.PP
|
2019-05-24 08:26:43 +03:00
|
|
|
Note -B is sensitive to the order of postings when a transaction price
|
2017-05-23 03:32:33 +03:00
|
|
|
is inferred: the inferred price will be in the commodity of the last
|
|
|
|
amount.
|
2019-01-25 02:37:40 +03:00
|
|
|
So if example 3\[aq]s postings are reversed, while the transaction is
|
2019-05-24 08:26:43 +03:00
|
|
|
equivalent, -B shows something different:
|
2017-05-23 03:32:33 +03:00
|
|
|
.IP
|
|
|
|
.nf
|
|
|
|
\f[C]
|
|
|
|
2009/1/1
|
2019-09-01 07:02:00 +03:00
|
|
|
assets:dollars $-135 ; 135 dollars sold
|
|
|
|
assets:euros \[Eu]100 ; for 100 euros
|
2019-05-24 08:26:43 +03:00
|
|
|
\f[R]
|
2017-05-23 03:32:33 +03:00
|
|
|
.fi
|
|
|
|
.IP
|
|
|
|
.nf
|
|
|
|
\f[C]
|
2019-05-24 08:26:43 +03:00
|
|
|
$ hledger bal -N --flat -B
|
|
|
|
\[Eu]-100 assets:dollars # <- the dollars\[aq] selling price
|
|
|
|
\[Eu]100 assets:euros
|
|
|
|
\f[R]
|
2017-05-23 03:32:33 +03:00
|
|
|
.fi
|
2016-04-08 07:59:30 +03:00
|
|
|
.SS Comments
|
2015-10-20 16:26:09 +03:00
|
|
|
.PP
|
2019-05-24 08:26:43 +03:00
|
|
|
Lines in the journal beginning with a semicolon (\f[C];\f[R]) or hash
|
|
|
|
(\f[C]#\f[R]) or star (\f[C]*\f[R]) are comments, and will be ignored.
|
|
|
|
(Star comments cause org-mode nodes to be ignored, allowing emacs users
|
|
|
|
to fold and navigate their journals with org-mode or orgstruct-mode.)
|
2015-10-20 16:26:09 +03:00
|
|
|
.PP
|
|
|
|
You can attach comments to a transaction by writing them after the
|
|
|
|
description and/or indented on the following lines (before the
|
|
|
|
postings).
|
|
|
|
Similarly, you can attach comments to an individual posting by writing
|
|
|
|
them after the amount and/or indented on the following lines.
|
2017-11-29 04:20:41 +03:00
|
|
|
Transaction and posting comments must begin with a semicolon
|
2019-05-24 08:26:43 +03:00
|
|
|
(\f[C];\f[R]).
|
2015-10-20 16:26:09 +03:00
|
|
|
.PP
|
|
|
|
Some examples:
|
|
|
|
.IP
|
|
|
|
.nf
|
|
|
|
\f[C]
|
2019-05-24 08:26:43 +03:00
|
|
|
# a file comment
|
2015-10-20 16:26:09 +03:00
|
|
|
|
2019-05-24 08:26:43 +03:00
|
|
|
; also a file comment
|
2015-10-20 16:26:09 +03:00
|
|
|
|
|
|
|
comment
|
2019-05-24 08:26:43 +03:00
|
|
|
This is a multiline file comment,
|
|
|
|
which continues until a line
|
|
|
|
where the \[dq]end comment\[dq] string
|
|
|
|
appears on its own (or end of file).
|
|
|
|
end comment
|
2015-10-20 16:26:09 +03:00
|
|
|
|
2019-05-24 08:26:43 +03:00
|
|
|
2012/5/14 something ; a transaction comment
|
|
|
|
; the transaction comment, continued
|
|
|
|
posting1 1 ; a comment for posting 1
|
|
|
|
posting2
|
|
|
|
; a comment for posting 2
|
|
|
|
; another comment line for posting 2
|
|
|
|
; a file comment (because not indented)
|
|
|
|
\f[R]
|
2015-10-20 16:26:09 +03:00
|
|
|
.fi
|
2018-04-30 04:04:59 +03:00
|
|
|
.PP
|
2019-05-24 08:26:43 +03:00
|
|
|
You can also comment larger regions of a file using \f[C]comment\f[R]
|
|
|
|
and \f[C]end comment\f[R] directives.
|
2016-04-08 07:59:30 +03:00
|
|
|
.SS Tags
|
2015-10-20 16:26:09 +03:00
|
|
|
.PP
|
2017-01-17 03:26:51 +03:00
|
|
|
Tags are a way to add extra labels or labelled data to postings and
|
|
|
|
transactions, which you can then search or pivot on.
|
|
|
|
.PP
|
|
|
|
A simple tag is a word (which may contain hyphens) followed by a full
|
|
|
|
colon, written inside a transaction or posting comment line:
|
|
|
|
.IP
|
|
|
|
.nf
|
|
|
|
\f[C]
|
2019-06-12 16:01:17 +03:00
|
|
|
2017/1/16 bought groceries ; sometag:
|
2019-05-24 08:26:43 +03:00
|
|
|
\f[R]
|
2017-01-17 03:26:51 +03:00
|
|
|
.fi
|
|
|
|
.PP
|
|
|
|
Tags can have a value, which is the text after the colon, up to the next
|
|
|
|
comma or end of line, with leading/trailing whitespace removed:
|
|
|
|
.IP
|
|
|
|
.nf
|
|
|
|
\f[C]
|
2019-06-12 16:01:17 +03:00
|
|
|
expenses:food $10 ; a-posting-tag: the tag value
|
2019-05-24 08:26:43 +03:00
|
|
|
\f[R]
|
2017-01-17 03:26:51 +03:00
|
|
|
.fi
|
|
|
|
.PP
|
2019-01-25 02:37:40 +03:00
|
|
|
Note this means hledger\[aq]s tag values can not contain commas or
|
|
|
|
newlines.
|
2017-01-17 03:26:51 +03:00
|
|
|
Ending at commas means you can write multiple short tags on one line,
|
|
|
|
comma separated:
|
|
|
|
.IP
|
|
|
|
.nf
|
|
|
|
\f[C]
|
2019-09-01 07:02:00 +03:00
|
|
|
assets:checking ; a comment containing tag1:, tag2: some value ...
|
2019-05-24 08:26:43 +03:00
|
|
|
\f[R]
|
2017-01-17 03:26:51 +03:00
|
|
|
.fi
|
2015-10-20 16:26:09 +03:00
|
|
|
.PP
|
2017-01-17 03:26:51 +03:00
|
|
|
Here,
|
|
|
|
.IP \[bu] 2
|
2019-05-24 08:26:43 +03:00
|
|
|
\[dq]\f[C]a comment containing\f[R]\[dq] is just comment text, not a tag
|
2017-01-17 03:26:51 +03:00
|
|
|
.IP \[bu] 2
|
2019-05-24 08:26:43 +03:00
|
|
|
\[dq]\f[C]tag1\f[R]\[dq] is a tag with no value
|
2017-01-17 03:26:51 +03:00
|
|
|
.IP \[bu] 2
|
2019-05-24 08:26:43 +03:00
|
|
|
\[dq]\f[C]tag2\f[R]\[dq] is another tag, whose value is
|
|
|
|
\[dq]\f[C]some value ...\f[R]\[dq]
|
2015-10-20 16:26:09 +03:00
|
|
|
.PP
|
|
|
|
Tags in a transaction comment affect the transaction and all of its
|
|
|
|
postings, while tags in a posting comment affect only that posting.
|
2019-05-24 08:26:43 +03:00
|
|
|
For example, the following transaction has three tags (\f[C]A\f[R],
|
|
|
|
\f[C]TAG2\f[R], \f[C]third-tag\f[R]) and the posting has four (those
|
|
|
|
plus \f[C]posting-tag\f[R]):
|
2015-10-20 16:26:09 +03:00
|
|
|
.IP
|
|
|
|
.nf
|
|
|
|
\f[C]
|
2019-05-24 08:26:43 +03:00
|
|
|
1/1 a transaction ; A:, TAG2:
|
|
|
|
; third-tag: a third transaction tag, <- with a value
|
|
|
|
(a) $1 ; posting-tag:
|
|
|
|
\f[R]
|
2015-10-20 16:26:09 +03:00
|
|
|
.fi
|
|
|
|
.PP
|
2019-01-25 02:37:40 +03:00
|
|
|
Tags are like Ledger\[aq]s metadata feature, except hledger\[aq]s tag
|
|
|
|
values are simple strings.
|
2016-04-08 07:59:30 +03:00
|
|
|
.SS Directives
|
2018-06-09 03:26:58 +03:00
|
|
|
.PP
|
|
|
|
A directive is a line in the journal beginning with a special keyword,
|
|
|
|
that influences how the journal is processed.
|
2019-01-25 02:37:40 +03:00
|
|
|
hledger\[aq]s directives are based on a subset of Ledger\[aq]s, but
|
|
|
|
there are many differences (and also some differences between hledger
|
|
|
|
versions).
|
2018-06-09 03:26:58 +03:00
|
|
|
.PP
|
2019-01-25 02:37:40 +03:00
|
|
|
Directives\[aq] behaviour and interactions can get a little bit complex,
|
|
|
|
so here is a table summarising the directives and their effects, with
|
|
|
|
links to more detailed docs.
|
2018-07-01 00:08:48 +03:00
|
|
|
.PP
|
|
|
|
.TS
|
|
|
|
tab(@);
|
|
|
|
lw(7.8n) lw(8.6n) lw(7.0n) lw(27.8n) lw(18.8n).
|
|
|
|
T{
|
|
|
|
directive
|
|
|
|
T}@T{
|
|
|
|
end directive
|
|
|
|
T}@T{
|
|
|
|
subdirectives
|
|
|
|
T}@T{
|
|
|
|
purpose
|
|
|
|
T}@T{
|
|
|
|
can affect (as of 2018/06)
|
|
|
|
T}
|
|
|
|
_
|
|
|
|
T{
|
2019-05-24 08:26:43 +03:00
|
|
|
\f[C]account\f[R]
|
2018-07-01 00:08:48 +03:00
|
|
|
T}@T{
|
|
|
|
T}@T{
|
|
|
|
any text
|
|
|
|
T}@T{
|
2018-12-03 04:26:18 +03:00
|
|
|
document account names, declare account types & display order
|
2018-07-01 00:08:48 +03:00
|
|
|
T}@T{
|
2018-12-03 04:26:18 +03:00
|
|
|
all entries in all files, before or after
|
2018-07-01 00:08:48 +03:00
|
|
|
T}
|
|
|
|
T{
|
2019-05-24 08:26:43 +03:00
|
|
|
\f[C]alias\f[R]
|
2018-07-01 00:08:48 +03:00
|
|
|
T}@T{
|
2019-05-24 08:26:43 +03:00
|
|
|
\f[C]end aliases\f[R]
|
2018-07-01 00:08:48 +03:00
|
|
|
T}@T{
|
|
|
|
T}@T{
|
|
|
|
rewrite account names
|
|
|
|
T}@T{
|
|
|
|
following inline/included entries until end of current file or end
|
|
|
|
directive
|
|
|
|
T}
|
|
|
|
T{
|
2019-05-24 08:26:43 +03:00
|
|
|
\f[C]apply account\f[R]
|
2018-07-01 00:08:48 +03:00
|
|
|
T}@T{
|
2019-05-24 08:26:43 +03:00
|
|
|
\f[C]end apply account\f[R]
|
2018-07-01 00:08:48 +03:00
|
|
|
T}@T{
|
|
|
|
T}@T{
|
|
|
|
prepend a common parent to account names
|
|
|
|
T}@T{
|
|
|
|
following inline/included entries until end of current file or end
|
|
|
|
directive
|
|
|
|
T}
|
|
|
|
T{
|
2019-05-24 08:26:43 +03:00
|
|
|
\f[C]comment\f[R]
|
2018-07-01 00:08:48 +03:00
|
|
|
T}@T{
|
2019-05-24 08:26:43 +03:00
|
|
|
\f[C]end comment\f[R]
|
2018-07-01 00:08:48 +03:00
|
|
|
T}@T{
|
|
|
|
T}@T{
|
|
|
|
ignore part of journal
|
|
|
|
T}@T{
|
|
|
|
following inline/included entries until end of current file or end
|
|
|
|
directive
|
|
|
|
T}
|
|
|
|
T{
|
2019-05-24 08:26:43 +03:00
|
|
|
\f[C]commodity\f[R]
|
2018-07-01 00:08:48 +03:00
|
|
|
T}@T{
|
|
|
|
T}@T{
|
2019-05-24 08:26:43 +03:00
|
|
|
\f[C]format\f[R]
|
2018-07-01 00:08:48 +03:00
|
|
|
T}@T{
|
|
|
|
declare a commodity and its number notation & display style
|
|
|
|
T}@T{
|
|
|
|
number notation: following entries in that commodity in all files;
|
|
|
|
display style: amounts of that commodity in reports
|
|
|
|
T}
|
|
|
|
T{
|
2019-05-24 08:26:43 +03:00
|
|
|
\f[C]D\f[R]
|
2018-07-01 00:08:48 +03:00
|
|
|
T}@T{
|
|
|
|
T}@T{
|
|
|
|
T}@T{
|
|
|
|
declare a commodity, number notation & display style for commodityless
|
|
|
|
amounts
|
|
|
|
T}@T{
|
|
|
|
commodity: all commodityless entries in all files; number notation:
|
|
|
|
following commodityless entries and entries in that commodity in all
|
|
|
|
files; display style: amounts of that commodity in reports
|
|
|
|
T}
|
|
|
|
T{
|
2019-05-24 08:26:43 +03:00
|
|
|
\f[C]include\f[R]
|
2018-07-01 00:08:48 +03:00
|
|
|
T}@T{
|
|
|
|
T}@T{
|
|
|
|
T}@T{
|
|
|
|
include entries/directives from another file
|
|
|
|
T}@T{
|
|
|
|
what the included directives affect
|
|
|
|
T}
|
|
|
|
T{
|
2019-05-24 08:26:43 +03:00
|
|
|
\f[C]P\f[R]
|
2018-07-01 00:08:48 +03:00
|
|
|
T}@T{
|
|
|
|
T}@T{
|
|
|
|
T}@T{
|
|
|
|
declare a market price for a commodity
|
|
|
|
T}@T{
|
2019-05-24 08:26:43 +03:00
|
|
|
amounts of that commodity in reports, when -V is used
|
2018-07-01 00:08:48 +03:00
|
|
|
T}
|
|
|
|
T{
|
2019-05-24 08:26:43 +03:00
|
|
|
\f[C]Y\f[R]
|
2018-07-01 00:08:48 +03:00
|
|
|
T}@T{
|
|
|
|
T}@T{
|
|
|
|
T}@T{
|
|
|
|
declare a year for yearless dates
|
|
|
|
T}@T{
|
|
|
|
following inline/included entries until end of current file
|
|
|
|
T}
|
|
|
|
.TE
|
2018-06-09 03:26:58 +03:00
|
|
|
.PP
|
2018-07-01 00:08:48 +03:00
|
|
|
And some definitions:
|
|
|
|
.PP
|
|
|
|
.TS
|
|
|
|
tab(@);
|
|
|
|
lw(8.9n) lw(61.1n).
|
|
|
|
T{
|
|
|
|
subdirective
|
|
|
|
T}@T{
|
2018-12-03 04:26:18 +03:00
|
|
|
optional indented directive line immediately following a parent
|
|
|
|
directive
|
2018-07-01 00:08:48 +03:00
|
|
|
T}
|
|
|
|
T{
|
|
|
|
number notation
|
|
|
|
T}@T{
|
|
|
|
how to interpret numbers when parsing journal entries (the identity of
|
|
|
|
the decimal separator character).
|
|
|
|
(Currently each commodity can have its own notation, even in the same
|
|
|
|
file.)
|
|
|
|
T}
|
|
|
|
T{
|
|
|
|
display style
|
|
|
|
T}@T{
|
|
|
|
how to display amounts of a commodity in reports (symbol side and
|
|
|
|
spacing, digit groups, decimal separator, decimal places)
|
|
|
|
T}
|
|
|
|
T{
|
|
|
|
directive scope
|
|
|
|
T}@T{
|
|
|
|
which entries and (when there are multiple files) which files are
|
|
|
|
affected by a directive
|
|
|
|
T}
|
|
|
|
.TE
|
2018-06-09 03:26:58 +03:00
|
|
|
.PP
|
2018-07-01 00:08:48 +03:00
|
|
|
As you can see, directives vary in which journal entries and files they
|
|
|
|
affect, and whether they are focussed on input (parsing) or output
|
|
|
|
(reports).
|
|
|
|
Some directives have multiple effects.
|
|
|
|
.PP
|
2019-05-24 08:26:43 +03:00
|
|
|
If you have a journal made up of multiple files, or pass multiple -f
|
2018-07-01 00:08:48 +03:00
|
|
|
options on the command line, note that directives which affect input
|
|
|
|
typically last only until the end of their defining file.
|
|
|
|
This provides more simplicity and predictability, eg reports are not
|
|
|
|
changed by writing file options in a different order.
|
|
|
|
It can be surprising at times though.
|
2018-04-30 04:04:59 +03:00
|
|
|
.SS Comment blocks
|
|
|
|
.PP
|
2019-05-24 08:26:43 +03:00
|
|
|
A line containing just \f[C]comment\f[R] starts a commented region of
|
|
|
|
the file, and a line containing just \f[C]end comment\f[R] (or the end
|
|
|
|
of the current file) ends it.
|
2018-04-30 04:04:59 +03:00
|
|
|
See also comments.
|
|
|
|
.SS Including other files
|
|
|
|
.PP
|
|
|
|
You can pull in the content of additional files by writing an include
|
|
|
|
directive, like this:
|
|
|
|
.IP
|
|
|
|
.nf
|
|
|
|
\f[C]
|
2019-05-24 08:26:43 +03:00
|
|
|
include path/to/file.journal
|
|
|
|
\f[R]
|
2018-04-30 04:04:59 +03:00
|
|
|
.fi
|
|
|
|
.PP
|
|
|
|
If the path does not begin with a slash, it is relative to the current
|
|
|
|
file.
|
2018-07-25 00:49:47 +03:00
|
|
|
The include file path may contain common glob patterns (e.g.
|
2019-05-24 08:26:43 +03:00
|
|
|
\f[C]*\f[R]).
|
2018-04-30 04:04:59 +03:00
|
|
|
.PP
|
2019-05-24 08:26:43 +03:00
|
|
|
The \f[C]include\f[R] directive can only be used in journal files.
|
2018-04-30 04:04:59 +03:00
|
|
|
It can include journal, timeclock or timedot files, but not CSV files.
|
|
|
|
.SS Default year
|
|
|
|
.PP
|
2019-01-25 02:37:40 +03:00
|
|
|
You can set a default year to be used for subsequent dates which
|
|
|
|
don\[aq]t specify a year.
|
2019-05-24 08:26:43 +03:00
|
|
|
This is a line beginning with \f[C]Y\f[R] followed by the year.
|
2018-04-30 04:04:59 +03:00
|
|
|
Eg:
|
|
|
|
.IP
|
|
|
|
.nf
|
|
|
|
\f[C]
|
2019-06-12 16:01:17 +03:00
|
|
|
Y2009 ; set default year to 2009
|
2018-04-30 04:04:59 +03:00
|
|
|
|
2019-06-12 16:01:17 +03:00
|
|
|
12/15 ; equivalent to 2009/12/15
|
2019-05-24 08:26:43 +03:00
|
|
|
expenses 1
|
|
|
|
assets
|
2018-04-30 04:04:59 +03:00
|
|
|
|
2019-06-12 16:01:17 +03:00
|
|
|
Y2010 ; change default year to 2010
|
2018-04-30 04:04:59 +03:00
|
|
|
|
2019-05-24 08:26:43 +03:00
|
|
|
2009/1/30 ; specifies the year, not affected
|
|
|
|
expenses 1
|
|
|
|
assets
|
2018-04-30 04:04:59 +03:00
|
|
|
|
2019-06-12 16:01:17 +03:00
|
|
|
1/31 ; equivalent to 2010/1/31
|
2019-05-24 08:26:43 +03:00
|
|
|
expenses 1
|
|
|
|
assets
|
|
|
|
\f[R]
|
2018-04-30 04:04:59 +03:00
|
|
|
.fi
|
|
|
|
.SS Declaring commodities
|
|
|
|
.PP
|
2019-12-01 21:12:29 +03:00
|
|
|
The \f[C]commodity\f[R] directive has several functions:
|
|
|
|
.IP "1." 3
|
|
|
|
It declares commodities which may be used in the journal.
|
|
|
|
This is currently not enforced, but can serve as documentation.
|
|
|
|
.IP "2." 3
|
|
|
|
It declares what decimal mark character to expect when parsing input -
|
|
|
|
useful to disambiguate international number formats in your data.
|
|
|
|
(Without this, hledger will parse both \f[C]1,000\f[R] and
|
|
|
|
\f[C]1.000\f[R] as 1).
|
|
|
|
.IP "3." 3
|
|
|
|
It declares the amount display format to use in output - decimal and
|
|
|
|
digit group marks, number of decimal places, symbol placement etc.
|
2019-09-01 07:02:00 +03:00
|
|
|
.PP
|
2019-12-01 21:12:29 +03:00
|
|
|
You are likely to run into one of the problems solved by commodity
|
|
|
|
directives, sooner or later, so it\[aq]s a good idea to just always use
|
|
|
|
them to declare your commodities.
|
|
|
|
.PP
|
|
|
|
A commodity directive is just the word \f[C]commodity\f[R] followed by
|
|
|
|
an amount.
|
2018-04-30 04:04:59 +03:00
|
|
|
It may be written on a single line, like this:
|
|
|
|
.IP
|
|
|
|
.nf
|
|
|
|
\f[C]
|
2019-05-24 08:26:43 +03:00
|
|
|
; commodity EXAMPLEAMOUNT
|
2018-04-30 04:04:59 +03:00
|
|
|
|
2019-05-24 08:26:43 +03:00
|
|
|
; display AAAA amounts with the symbol on the right, space-separated,
|
|
|
|
; using period as decimal point, with four decimal places, and
|
|
|
|
; separating thousands with comma.
|
|
|
|
commodity 1,000.0000 AAAA
|
|
|
|
\f[R]
|
2018-04-30 04:04:59 +03:00
|
|
|
.fi
|
|
|
|
.PP
|
2019-05-24 08:26:43 +03:00
|
|
|
or on multiple lines, using the \[dq]format\[dq] subdirective.
|
2019-12-01 21:12:29 +03:00
|
|
|
(In this case the commodity symbol appears twice and should be the same
|
|
|
|
in both places.):
|
2018-04-30 04:04:59 +03:00
|
|
|
.IP
|
|
|
|
.nf
|
|
|
|
\f[C]
|
2019-05-24 08:26:43 +03:00
|
|
|
; commodity SYMBOL
|
|
|
|
; format EXAMPLEAMOUNT
|
2018-04-30 04:04:59 +03:00
|
|
|
|
2019-05-24 08:26:43 +03:00
|
|
|
; display indian rupees with currency name on the left,
|
|
|
|
; thousands, lakhs and crores comma-separated,
|
|
|
|
; period as decimal point, and two decimal places.
|
|
|
|
commodity INR
|
2019-12-01 21:12:29 +03:00
|
|
|
format INR 1,00,00,000.00
|
2019-05-24 08:26:43 +03:00
|
|
|
\f[R]
|
2018-04-30 04:04:59 +03:00
|
|
|
.fi
|
|
|
|
.PP
|
2019-12-01 21:12:29 +03:00
|
|
|
The quantity of the amount does not matter; only the format is
|
|
|
|
significant.
|
|
|
|
The number must include a decimal mark: either a period or a comma,
|
|
|
|
followed by 0 or more decimal digits.
|
2018-04-30 04:04:59 +03:00
|
|
|
.SS Default commodity
|
|
|
|
.PP
|
2019-05-24 08:26:43 +03:00
|
|
|
The \f[C]D\f[R] directive sets a default commodity (and display format),
|
2018-06-09 03:26:58 +03:00
|
|
|
to be used for amounts without a commodity symbol (ie, plain numbers).
|
2019-01-25 02:37:40 +03:00
|
|
|
(Note this differs from Ledger\[aq]s default commodity directive.) The
|
2018-04-30 04:04:59 +03:00
|
|
|
commodity and display format will be applied to all subsequent
|
2019-05-24 08:26:43 +03:00
|
|
|
commodity-less amounts, or until the next \f[C]D\f[R] directive.
|
2018-04-30 04:04:59 +03:00
|
|
|
.IP
|
|
|
|
.nf
|
|
|
|
\f[C]
|
2019-09-02 21:11:56 +03:00
|
|
|
; commodity-less amounts should be treated as dollars
|
|
|
|
; (and displayed with symbol on the left, thousands separators and two decimal places)
|
2019-05-24 08:26:43 +03:00
|
|
|
D $1,000.00
|
2018-04-30 04:04:59 +03:00
|
|
|
|
|
|
|
1/1
|
2019-06-12 16:01:17 +03:00
|
|
|
a 5 ; <- commodity-less amount, becomes $1
|
2019-05-24 08:26:43 +03:00
|
|
|
b
|
|
|
|
\f[R]
|
2018-04-30 04:04:59 +03:00
|
|
|
.fi
|
|
|
|
.PP
|
2019-05-24 08:26:43 +03:00
|
|
|
As with the \f[C]commodity\f[R] directive, the amount must always be
|
2018-04-30 04:04:59 +03:00
|
|
|
written with a decimal point.
|
2018-06-09 03:26:58 +03:00
|
|
|
.SS Market prices
|
|
|
|
.PP
|
2019-05-24 08:26:43 +03:00
|
|
|
The \f[C]P\f[R] directive declares a market price, which is an exchange
|
2018-06-09 03:26:58 +03:00
|
|
|
rate between two commodities on a certain date.
|
2019-05-24 08:26:43 +03:00
|
|
|
(In Ledger, they are called \[dq]historical prices\[dq].) These are
|
|
|
|
often obtained from a stock exchange, cryptocurrency exchange, or the
|
|
|
|
foreign exchange market.
|
2018-06-09 03:26:58 +03:00
|
|
|
.PP
|
|
|
|
Here is the format:
|
|
|
|
.IP
|
|
|
|
.nf
|
|
|
|
\f[C]
|
2019-05-24 08:26:43 +03:00
|
|
|
P DATE COMMODITYA COMMODITYBAMOUNT
|
|
|
|
\f[R]
|
2018-06-09 03:26:58 +03:00
|
|
|
.fi
|
|
|
|
.IP \[bu] 2
|
|
|
|
DATE is a simple date
|
|
|
|
.IP \[bu] 2
|
|
|
|
COMMODITYA is the symbol of the commodity being priced
|
|
|
|
.IP \[bu] 2
|
|
|
|
COMMODITYBAMOUNT is an amount (symbol and quantity) in a second
|
|
|
|
commodity, giving the price in commodity B of one unit of commodity A.
|
|
|
|
.PP
|
|
|
|
These two market price directives say that one euro was worth 1.35 US
|
|
|
|
dollars during 2009, and $1.40 from 2010 onward:
|
|
|
|
.IP
|
|
|
|
.nf
|
|
|
|
\f[C]
|
2019-05-24 08:26:43 +03:00
|
|
|
P 2009/1/1 \[Eu] $1.35
|
|
|
|
P 2010/1/1 \[Eu] $1.40
|
|
|
|
\f[R]
|
2018-06-09 03:26:58 +03:00
|
|
|
.fi
|
|
|
|
.PP
|
2019-05-24 08:26:43 +03:00
|
|
|
The \f[C]-V/--value\f[R] flag can be used to convert reported amounts to
|
|
|
|
another commodity using these prices.
|
2018-04-30 04:04:59 +03:00
|
|
|
.SS Declaring accounts
|
|
|
|
.PP
|
2019-05-24 08:26:43 +03:00
|
|
|
\f[C]account\f[R] directives can be used to pre-declare accounts.
|
2018-12-03 04:26:18 +03:00
|
|
|
Though not required, they can provide several benefits:
|
|
|
|
.IP \[bu] 2
|
|
|
|
They can document your intended chart of accounts, providing a
|
|
|
|
reference.
|
|
|
|
.IP \[bu] 2
|
|
|
|
They can store extra information about accounts (account numbers, notes,
|
|
|
|
etc.)
|
|
|
|
.IP \[bu] 2
|
2019-01-25 02:37:40 +03:00
|
|
|
They can help hledger know your accounts\[aq] types (asset, liability,
|
2018-12-03 04:26:18 +03:00
|
|
|
equity, revenue, expense), useful for reports like balancesheet and
|
|
|
|
incomestatement.
|
|
|
|
.IP \[bu] 2
|
2019-05-24 08:26:43 +03:00
|
|
|
They control account display order in reports, allowing non-alphabetic
|
2018-12-03 04:26:18 +03:00
|
|
|
sorting (eg Revenues to appear above Expenses).
|
|
|
|
.IP \[bu] 2
|
2019-05-24 08:26:43 +03:00
|
|
|
They help with account name completion in the add command, hledger-iadd,
|
|
|
|
hledger-web, ledger-mode etc.
|
2018-12-03 04:26:18 +03:00
|
|
|
.PP
|
2019-05-24 08:26:43 +03:00
|
|
|
The simplest form is just the word \f[C]account\f[R] followed by a
|
|
|
|
hledger-style account name, eg:
|
2019-01-23 00:36:11 +03:00
|
|
|
.IP
|
|
|
|
.nf
|
|
|
|
\f[C]
|
2019-05-24 08:26:43 +03:00
|
|
|
account assets:bank:checking
|
|
|
|
\f[R]
|
2019-01-23 00:36:11 +03:00
|
|
|
.fi
|
|
|
|
.SS Account comments
|
|
|
|
.PP
|
|
|
|
Comments, beginning with a semicolon, optionally including tags, can be
|
|
|
|
written after the account name, and/or on following lines.
|
|
|
|
Eg:
|
2018-12-03 04:26:18 +03:00
|
|
|
.IP
|
|
|
|
.nf
|
|
|
|
\f[C]
|
2019-05-24 08:26:43 +03:00
|
|
|
account assets:bank:checking ; a comment
|
|
|
|
; another comment
|
|
|
|
; acctno:12345, a tag
|
|
|
|
\f[R]
|
2018-12-03 04:26:18 +03:00
|
|
|
.fi
|
|
|
|
.PP
|
2019-01-23 00:36:11 +03:00
|
|
|
Tip: comments on the same line require hledger 1.12+.
|
|
|
|
If you need your journal to be compatible with older hledger versions,
|
|
|
|
write comments on the next line instead.
|
|
|
|
.SS Account subdirectives
|
|
|
|
.PP
|
2019-05-24 08:26:43 +03:00
|
|
|
We also allow (and ignore) Ledger-style indented subdirectives, just for
|
|
|
|
compatibility.:
|
2018-04-30 04:04:59 +03:00
|
|
|
.IP
|
|
|
|
.nf
|
|
|
|
\f[C]
|
2019-05-24 08:26:43 +03:00
|
|
|
account assets:bank:checking
|
|
|
|
format blah blah ; <- subdirective, ignored
|
|
|
|
\f[R]
|
2019-01-23 00:36:11 +03:00
|
|
|
.fi
|
|
|
|
.PP
|
|
|
|
Here is the full syntax of account directives:
|
|
|
|
.IP
|
|
|
|
.nf
|
|
|
|
\f[C]
|
2019-05-24 08:26:43 +03:00
|
|
|
account ACCTNAME [ACCTTYPE] [;COMMENT]
|
|
|
|
[;COMMENTS]
|
|
|
|
[LEDGER-STYLE SUBDIRECTIVES, IGNORED]
|
|
|
|
\f[R]
|
2018-04-30 04:04:59 +03:00
|
|
|
.fi
|
2018-12-03 04:26:18 +03:00
|
|
|
.SS Account types
|
2018-04-30 04:04:59 +03:00
|
|
|
.PP
|
2019-01-23 00:36:11 +03:00
|
|
|
hledger recognises five types (or classes) of account: Asset, Liability,
|
|
|
|
Equity, Revenue, Expense.
|
2019-05-24 08:26:43 +03:00
|
|
|
This is used by a few accounting-aware reports such as balancesheet,
|
2019-01-23 00:36:11 +03:00
|
|
|
incomestatement and cashflow.
|
2019-05-24 08:26:43 +03:00
|
|
|
.SS Auto-detected account types
|
2018-04-30 04:04:59 +03:00
|
|
|
.PP
|
2019-05-24 08:26:43 +03:00
|
|
|
If you name your top-level accounts with some variation of
|
|
|
|
\f[C]assets\f[R], \f[C]liabilities\f[R]/\f[C]debts\f[R],
|
|
|
|
\f[C]equity\f[R], \f[C]revenues\f[R]/\f[C]income\f[R], or
|
|
|
|
\f[C]expenses\f[R], their types are detected automatically.
|
2019-01-23 00:36:11 +03:00
|
|
|
.SS Account types declared with tags
|
2018-12-03 04:26:18 +03:00
|
|
|
.PP
|
2019-01-25 02:37:40 +03:00
|
|
|
More generally, you can declare an account\[aq]s type with an account
|
2019-05-24 08:26:43 +03:00
|
|
|
directive, by writing a \f[C]type:\f[R] tag in a comment, followed by
|
|
|
|
one of the words \f[C]Asset\f[R], \f[C]Liability\f[R], \f[C]Equity\f[R],
|
|
|
|
\f[C]Revenue\f[R], \f[C]Expense\f[R], or one of the letters
|
|
|
|
\f[C]ALERX\f[R] (case insensitive):
|
2019-01-23 00:36:11 +03:00
|
|
|
.IP
|
|
|
|
.nf
|
|
|
|
\f[C]
|
2019-05-24 08:26:43 +03:00
|
|
|
account assets ; type:Asset
|
|
|
|
account liabilities ; type:Liability
|
|
|
|
account equity ; type:Equity
|
|
|
|
account revenues ; type:Revenue
|
|
|
|
account expenses ; type:Expenses
|
|
|
|
\f[R]
|
2019-01-23 00:36:11 +03:00
|
|
|
.fi
|
|
|
|
.SS Account types declared with account type codes
|
|
|
|
.PP
|
|
|
|
Or, you can write one of those letters separated from the account name
|
|
|
|
by two or more spaces, but this should probably be considered deprecated
|
|
|
|
as of hledger 1.13:
|
2018-12-03 04:26:18 +03:00
|
|
|
.IP
|
|
|
|
.nf
|
|
|
|
\f[C]
|
2019-05-24 08:26:43 +03:00
|
|
|
account assets A
|
|
|
|
account liabilities L
|
|
|
|
account equity E
|
|
|
|
account revenues R
|
|
|
|
account expenses X
|
|
|
|
\f[R]
|
2018-12-03 04:26:18 +03:00
|
|
|
.fi
|
2019-05-24 08:26:43 +03:00
|
|
|
.SS Overriding auto-detected types
|
2018-12-03 04:26:18 +03:00
|
|
|
.PP
|
2019-05-24 08:26:43 +03:00
|
|
|
If you ever override the types of those auto-detected english account
|
2019-01-23 00:36:11 +03:00
|
|
|
names mentioned above, you might need to help the reports a bit.
|
|
|
|
Eg:
|
2018-04-30 04:04:59 +03:00
|
|
|
.IP
|
|
|
|
.nf
|
|
|
|
\f[C]
|
2019-05-24 08:26:43 +03:00
|
|
|
; make \[dq]liabilities\[dq] not have the liability type - who knows why
|
2019-09-01 07:02:00 +03:00
|
|
|
account liabilities ; type:E
|
2018-10-01 09:08:15 +03:00
|
|
|
|
2019-05-24 08:26:43 +03:00
|
|
|
; we need to ensure some other account has the liability type,
|
|
|
|
; otherwise balancesheet would still show \[dq]liabilities\[dq] under Liabilities
|
2019-09-01 07:02:00 +03:00
|
|
|
account - ; type:L
|
2019-05-24 08:26:43 +03:00
|
|
|
\f[R]
|
2018-10-01 09:08:15 +03:00
|
|
|
.fi
|
2018-12-03 04:26:18 +03:00
|
|
|
.SS Account display order
|
|
|
|
.PP
|
2019-01-23 00:36:11 +03:00
|
|
|
Account directives also set the order in which accounts are displayed,
|
2019-05-24 08:26:43 +03:00
|
|
|
eg in reports, the hledger-ui accounts screen, and the hledger-web
|
2019-01-23 00:36:11 +03:00
|
|
|
sidebar.
|
|
|
|
By default accounts are listed in alphabetical order.
|
|
|
|
But if you have these account directives in the journal:
|
2018-10-01 09:08:15 +03:00
|
|
|
.IP
|
|
|
|
.nf
|
|
|
|
\f[C]
|
2019-05-24 08:26:43 +03:00
|
|
|
account assets
|
|
|
|
account liabilities
|
|
|
|
account equity
|
|
|
|
account revenues
|
|
|
|
account expenses
|
|
|
|
\f[R]
|
2018-10-01 09:08:15 +03:00
|
|
|
.fi
|
2018-07-01 00:08:48 +03:00
|
|
|
.PP
|
2019-01-25 02:37:40 +03:00
|
|
|
you\[aq]ll see those accounts displayed in declaration order, not
|
2018-12-03 04:26:18 +03:00
|
|
|
alphabetically:
|
2018-10-01 09:08:15 +03:00
|
|
|
.IP
|
|
|
|
.nf
|
|
|
|
\f[C]
|
2019-05-24 08:26:43 +03:00
|
|
|
$ hledger accounts -1
|
2018-10-01 09:08:15 +03:00
|
|
|
assets
|
|
|
|
liabilities
|
|
|
|
equity
|
|
|
|
revenues
|
|
|
|
expenses
|
2019-05-24 08:26:43 +03:00
|
|
|
\f[R]
|
2018-10-01 09:08:15 +03:00
|
|
|
.fi
|
2018-04-30 04:04:59 +03:00
|
|
|
.PP
|
2018-12-03 04:26:18 +03:00
|
|
|
Undeclared accounts, if any, are displayed last, in alphabetical order.
|
2018-10-01 09:08:15 +03:00
|
|
|
.PP
|
|
|
|
Note that sorting is done at each level of the account tree (within each
|
|
|
|
group of sibling accounts under the same parent).
|
2018-12-03 04:26:18 +03:00
|
|
|
And currently, this directive:
|
2018-04-30 04:04:59 +03:00
|
|
|
.IP
|
|
|
|
.nf
|
|
|
|
\f[C]
|
2019-05-24 08:26:43 +03:00
|
|
|
account other:zoo
|
|
|
|
\f[R]
|
2018-04-30 04:04:59 +03:00
|
|
|
.fi
|
2018-10-01 09:08:15 +03:00
|
|
|
.PP
|
2019-05-24 08:26:43 +03:00
|
|
|
would influence the position of \f[C]zoo\f[R] among
|
|
|
|
\f[C]other\f[R]\[aq]s subaccounts, but not the position of
|
|
|
|
\f[C]other\f[R] among the top-level accounts.
|
|
|
|
This means: - you will sometimes declare parent accounts (eg
|
|
|
|
\f[C]account other\f[R] above) that you don\[aq]t intend to post to,
|
|
|
|
just to customize their display order - sibling accounts stay together
|
|
|
|
(you couldn\[aq]t display \f[C]x:y\f[R] in between \f[C]a:b\f[R] and
|
|
|
|
\f[C]a:c\f[R]).
|
2018-04-30 04:04:59 +03:00
|
|
|
.SS Rewriting accounts
|
2015-10-20 16:26:09 +03:00
|
|
|
.PP
|
2018-07-01 00:08:48 +03:00
|
|
|
You can define account alias rules which rewrite your account names, or
|
|
|
|
parts of them, before generating reports.
|
|
|
|
This can be useful for:
|
2015-10-20 16:26:09 +03:00
|
|
|
.IP \[bu] 2
|
|
|
|
expanding shorthand account names to their full form, allowing easier
|
|
|
|
data entry and a less verbose journal
|
|
|
|
.IP \[bu] 2
|
|
|
|
adapting old journals to your current chart of accounts
|
|
|
|
.IP \[bu] 2
|
|
|
|
experimenting with new account organisations, like a new hierarchy or
|
|
|
|
combining two accounts into one
|
|
|
|
.IP \[bu] 2
|
|
|
|
customising reports
|
|
|
|
.PP
|
2018-07-01 00:08:48 +03:00
|
|
|
Account aliases also rewrite account names in account directives.
|
|
|
|
They do not affect account names being entered via hledger add or
|
2019-05-24 08:26:43 +03:00
|
|
|
hledger-web.
|
2018-07-01 00:08:48 +03:00
|
|
|
.PP
|
2019-12-09 17:06:58 +03:00
|
|
|
See also Rewrite account names.
|
2015-10-20 16:26:09 +03:00
|
|
|
.SS Basic aliases
|
|
|
|
.PP
|
2019-05-24 08:26:43 +03:00
|
|
|
To set an account alias, use the \f[C]alias\f[R] directive in your
|
2015-10-20 16:26:09 +03:00
|
|
|
journal file.
|
|
|
|
This affects all subsequent journal entries in the current file or its
|
|
|
|
included files.
|
|
|
|
The spaces around the = are optional:
|
|
|
|
.IP
|
|
|
|
.nf
|
|
|
|
\f[C]
|
2019-05-24 08:26:43 +03:00
|
|
|
alias OLD = NEW
|
|
|
|
\f[R]
|
2015-10-20 16:26:09 +03:00
|
|
|
.fi
|
|
|
|
.PP
|
2019-05-24 08:26:43 +03:00
|
|
|
Or, you can use the \f[C]--alias \[aq]OLD=NEW\[aq]\f[R] option on the
|
2015-10-20 16:26:09 +03:00
|
|
|
command line.
|
|
|
|
This affects all entries.
|
2019-01-25 02:37:40 +03:00
|
|
|
It\[aq]s useful for trying out aliases interactively.
|
2015-10-20 16:26:09 +03:00
|
|
|
.PP
|
2018-07-01 00:08:48 +03:00
|
|
|
OLD and NEW are case sensitive full account names.
|
2015-10-20 16:26:09 +03:00
|
|
|
hledger will replace any occurrence of the old account name with the new
|
|
|
|
one.
|
|
|
|
Subaccounts are also affected.
|
|
|
|
Eg:
|
|
|
|
.IP
|
|
|
|
.nf
|
|
|
|
\f[C]
|
2019-05-24 08:26:43 +03:00
|
|
|
alias checking = assets:bank:wells fargo:checking
|
2019-09-02 21:11:56 +03:00
|
|
|
; rewrites \[dq]checking\[dq] to \[dq]assets:bank:wells fargo:checking\[dq], or \[dq]checking:a\[dq] to \[dq]assets:bank:wells fargo:checking:a\[dq]
|
2019-05-24 08:26:43 +03:00
|
|
|
\f[R]
|
2015-10-20 16:26:09 +03:00
|
|
|
.fi
|
|
|
|
.SS Regex aliases
|
|
|
|
.PP
|
|
|
|
There is also a more powerful variant that uses a regular expression,
|
2017-04-19 18:58:51 +03:00
|
|
|
indicated by the forward slashes:
|
2015-10-20 16:26:09 +03:00
|
|
|
.IP
|
|
|
|
.nf
|
|
|
|
\f[C]
|
2019-05-24 08:26:43 +03:00
|
|
|
alias /REGEX/ = REPLACEMENT
|
|
|
|
\f[R]
|
2015-10-20 16:26:09 +03:00
|
|
|
.fi
|
|
|
|
.PP
|
2019-05-24 08:26:43 +03:00
|
|
|
or \f[C]--alias \[aq]/REGEX/=REPLACEMENT\[aq]\f[R].
|
2015-10-20 16:26:09 +03:00
|
|
|
.PP
|
2019-05-24 08:26:43 +03:00
|
|
|
REGEX is a case-insensitive regular expression.
|
2015-10-20 16:26:09 +03:00
|
|
|
Anywhere it matches inside an account name, the matched part will be
|
|
|
|
replaced by REPLACEMENT.
|
|
|
|
If REGEX contains parenthesised match groups, these can be referenced by
|
|
|
|
the usual numeric backreferences in REPLACEMENT.
|
2017-09-30 08:31:44 +03:00
|
|
|
Eg:
|
2015-10-20 16:26:09 +03:00
|
|
|
.IP
|
|
|
|
.nf
|
|
|
|
\f[C]
|
2019-05-24 08:26:43 +03:00
|
|
|
alias /\[ha](.+):bank:([\[ha]:]+)(.*)/ = \[rs]1:\[rs]2 \[rs]3
|
2019-09-02 21:11:56 +03:00
|
|
|
; rewrites \[dq]assets:bank:wells fargo:checking\[dq] to \[dq]assets:wells fargo checking\[dq]
|
2019-05-24 08:26:43 +03:00
|
|
|
\f[R]
|
2015-10-20 16:26:09 +03:00
|
|
|
.fi
|
2017-09-30 08:31:44 +03:00
|
|
|
.PP
|
|
|
|
Also note that REPLACEMENT continues to the end of line (or on command
|
|
|
|
line, to end of option argument), so it can contain trailing whitespace.
|
2019-09-01 07:02:00 +03:00
|
|
|
.SS Combining aliases
|
|
|
|
.PP
|
|
|
|
You can define as many aliases as you like, using journal directives
|
|
|
|
and/or command line options.
|
|
|
|
.PP
|
|
|
|
Recursive aliases - where an account name is rewritten by one alias,
|
|
|
|
then by another alias, and so on - are allowed.
|
|
|
|
Each alias sees the effect of previously applied aliases.
|
|
|
|
.PP
|
|
|
|
In such cases it can be important to understand which aliases will be
|
|
|
|
applied and in which order.
|
|
|
|
For (each account name in) each journal entry, we apply:
|
2015-10-20 16:26:09 +03:00
|
|
|
.IP "1." 3
|
2019-09-01 07:02:00 +03:00
|
|
|
\f[C]alias\f[R] directives preceding the journal entry, most recently
|
|
|
|
parsed first (ie, reading upward from the journal entry, bottom to top)
|
2015-10-20 16:26:09 +03:00
|
|
|
.IP "2." 3
|
2019-09-01 07:02:00 +03:00
|
|
|
\f[C]--alias\f[R] options, in the order they appeared on the command
|
|
|
|
line (left to right).
|
|
|
|
.PP
|
|
|
|
In other words, for (an account name in) a given journal entry:
|
|
|
|
.IP \[bu] 2
|
|
|
|
the nearest alias declaration before/above the entry is applied first
|
|
|
|
.IP \[bu] 2
|
|
|
|
the next alias before/above that will be be applied next, and so on
|
|
|
|
.IP \[bu] 2
|
|
|
|
aliases defined after/below the entry do not affect it.
|
|
|
|
.PP
|
|
|
|
This gives nearby aliases precedence over distant ones, and helps
|
|
|
|
provide semantic stability - aliases will keep working the same way
|
|
|
|
independent of which files are being read and in which order.
|
|
|
|
.PP
|
|
|
|
In case of trouble, adding \f[C]--debug=6\f[R] to the command line will
|
|
|
|
show which aliases are being applied when.
|
2019-05-24 08:26:43 +03:00
|
|
|
.SS \f[C]end aliases\f[R]
|
2015-10-20 16:26:09 +03:00
|
|
|
.PP
|
|
|
|
You can clear (forget) all currently defined aliases with the
|
2019-05-24 08:26:43 +03:00
|
|
|
\f[C]end aliases\f[R] directive:
|
2015-10-20 16:26:09 +03:00
|
|
|
.IP
|
|
|
|
.nf
|
|
|
|
\f[C]
|
2019-05-24 08:26:43 +03:00
|
|
|
end aliases
|
|
|
|
\f[R]
|
2015-10-20 16:26:09 +03:00
|
|
|
.fi
|
2018-04-30 04:04:59 +03:00
|
|
|
.SS Default parent account
|
2016-04-06 02:01:06 +03:00
|
|
|
.PP
|
|
|
|
You can specify a parent account which will be prepended to all accounts
|
|
|
|
within a section of the journal.
|
2019-05-24 08:26:43 +03:00
|
|
|
Use the \f[C]apply account\f[R] and \f[C]end apply account\f[R]
|
2016-04-06 02:01:06 +03:00
|
|
|
directives like so:
|
|
|
|
.IP
|
|
|
|
.nf
|
|
|
|
\f[C]
|
2019-05-24 08:26:43 +03:00
|
|
|
apply account home
|
2016-04-06 02:01:06 +03:00
|
|
|
|
|
|
|
2010/1/1
|
2019-05-24 08:26:43 +03:00
|
|
|
food $10
|
|
|
|
cash
|
2016-04-06 02:01:06 +03:00
|
|
|
|
2019-05-24 08:26:43 +03:00
|
|
|
end apply account
|
|
|
|
\f[R]
|
2016-04-06 02:01:06 +03:00
|
|
|
.fi
|
|
|
|
.PP
|
|
|
|
which is equivalent to:
|
|
|
|
.IP
|
|
|
|
.nf
|
|
|
|
\f[C]
|
|
|
|
2010/01/01
|
2019-05-24 08:26:43 +03:00
|
|
|
home:food $10
|
|
|
|
home:cash $-10
|
|
|
|
\f[R]
|
2016-04-06 02:01:06 +03:00
|
|
|
.fi
|
|
|
|
.PP
|
2019-05-24 08:26:43 +03:00
|
|
|
If \f[C]end apply account\f[R] is omitted, the effect lasts to the end
|
2016-04-06 02:01:06 +03:00
|
|
|
of the file.
|
|
|
|
Included files are also affected, eg:
|
|
|
|
.IP
|
|
|
|
.nf
|
|
|
|
\f[C]
|
2019-05-24 08:26:43 +03:00
|
|
|
apply account business
|
|
|
|
include biz.journal
|
|
|
|
end apply account
|
|
|
|
apply account personal
|
|
|
|
include personal.journal
|
|
|
|
\f[R]
|
2016-04-06 02:01:06 +03:00
|
|
|
.fi
|
|
|
|
.PP
|
2019-05-24 08:26:43 +03:00
|
|
|
Prior to hledger 1.0, legacy \f[C]account\f[R] and \f[C]end\f[R]
|
|
|
|
spellings were also supported.
|
2018-07-01 00:08:48 +03:00
|
|
|
.PP
|
|
|
|
A default parent account also affects account directives.
|
|
|
|
It does not affect account names being entered via hledger add or
|
2019-05-24 08:26:43 +03:00
|
|
|
hledger-web.
|
2018-07-01 00:08:48 +03:00
|
|
|
If account aliases are present, they are applied after the default
|
|
|
|
parent account.
|
2018-04-30 04:04:59 +03:00
|
|
|
.SS Periodic transactions
|
2017-12-15 05:20:07 +03:00
|
|
|
.PP
|
2018-06-09 05:52:45 +03:00
|
|
|
Periodic transaction rules describe transactions that recur.
|
2019-09-09 18:02:49 +03:00
|
|
|
They allow hledger to generate temporary future transactions to help
|
|
|
|
with forecasting, so you don\[aq]t have to write out each one in the
|
|
|
|
journal, and it\[aq]s easy to try out different forecasts.
|
|
|
|
Secondly, they are also used to define the budgets shown in budget
|
|
|
|
reports.
|
|
|
|
.PP
|
|
|
|
Periodic transactions can be a little tricky, so before you use them,
|
|
|
|
read this whole section - or at least these tips:
|
|
|
|
.IP "1." 3
|
|
|
|
Two spaces accidentally added or omitted will cause you trouble - read
|
|
|
|
about this below.
|
|
|
|
.IP "2." 3
|
|
|
|
For troubleshooting, show the generated transactions with
|
|
|
|
\f[C]hledger print --forecast tag:generated\f[R] or
|
|
|
|
\f[C]hledger register --forecast tag:generated\f[R].
|
|
|
|
.IP "3." 3
|
|
|
|
Forecasted transactions will begin only after the last non-forecasted
|
|
|
|
transaction\[aq]s date.
|
|
|
|
.IP "4." 3
|
|
|
|
Forecasted transactions will end 6 months from today, by default.
|
|
|
|
See below for the exact start/end rules.
|
|
|
|
.IP "5." 3
|
|
|
|
period expressions can be tricky.
|
|
|
|
Their documentation needs improvement, but is worth studying.
|
|
|
|
.IP "6." 3
|
|
|
|
Some period expressions with a repeating interval must begin on a
|
|
|
|
natural boundary of that interval.
|
|
|
|
Eg in \f[C]weekly from DATE\f[R], DATE must be a monday.
|
|
|
|
\f[C]\[ti] weekly from 2019/10/1\f[R] (a tuesday) will give an error.
|
|
|
|
.IP "7." 3
|
|
|
|
Other period expressions with an interval are automatically expanded to
|
|
|
|
cover a whole number of that interval.
|
|
|
|
(This is done to improve reports, but it also affects periodic
|
|
|
|
transactions.
|
|
|
|
Yes, it\[aq]s a bit inconsistent with the above.) Eg:
|
|
|
|
\f[C]\[ti] every 10th day of month from 2020/01\f[R], which is
|
|
|
|
equivalent to \f[C]\[ti] every 10th day of month from 2020/01/01\f[R],
|
|
|
|
will be adjusted to start on 2019/12/10.
|
|
|
|
.SS Periodic rule syntax
|
2018-06-09 05:52:45 +03:00
|
|
|
.PP
|
2018-07-01 00:08:48 +03:00
|
|
|
A periodic transaction rule looks like a normal journal entry, with the
|
2019-05-24 08:26:43 +03:00
|
|
|
date replaced by a tilde (\f[C]\[ti]\f[R]) followed by a period
|
|
|
|
expression (mnemonic: \f[C]\[ti]\f[R] looks like a recurring sine
|
|
|
|
wave.):
|
2017-12-15 05:20:07 +03:00
|
|
|
.IP
|
|
|
|
.nf
|
|
|
|
\f[C]
|
2019-05-24 08:26:43 +03:00
|
|
|
\[ti] monthly
|
|
|
|
expenses:rent $2000
|
|
|
|
assets:bank:checking
|
|
|
|
\f[R]
|
2017-12-15 05:20:07 +03:00
|
|
|
.fi
|
|
|
|
.PP
|
2018-06-09 05:52:45 +03:00
|
|
|
There is an additional constraint on the period expression: the start
|
|
|
|
date must fall on a natural boundary of the interval.
|
2019-05-24 08:26:43 +03:00
|
|
|
Eg \f[C]monthly from 2018/1/1\f[R] is valid, but
|
|
|
|
\f[C]monthly from 2018/1/15\f[R] is not.
|
2018-02-16 22:09:37 +03:00
|
|
|
.PP
|
2018-12-03 04:26:18 +03:00
|
|
|
Partial or relative dates (M/D, D, tomorrow, last week) in the period
|
|
|
|
expression can work (useful or not).
|
2019-01-25 02:37:40 +03:00
|
|
|
They will be relative to today\[aq]s date, unless a Y default year
|
|
|
|
directive is in effect, in which case they will be relative to Y/1/1.
|
2019-09-09 18:02:49 +03:00
|
|
|
.SS Two spaces between period expression and description!
|
2018-12-03 04:26:18 +03:00
|
|
|
.PP
|
2019-01-20 02:29:23 +03:00
|
|
|
If the period expression is followed by a transaction description, these
|
2019-05-24 08:26:43 +03:00
|
|
|
must be separated by \f[B]two or more spaces\f[R].
|
2019-01-20 02:29:23 +03:00
|
|
|
This helps hledger know where the period expression ends, so that
|
|
|
|
descriptions can not accidentally alter their meaning, as in this
|
|
|
|
example:
|
2018-06-09 05:52:45 +03:00
|
|
|
.IP
|
|
|
|
.nf
|
|
|
|
\f[C]
|
2019-05-24 08:26:43 +03:00
|
|
|
; 2 or more spaces needed here, so the period is not understood as \[dq]every 2 months in 2020\[dq]
|
|
|
|
; ||
|
|
|
|
; vv
|
|
|
|
\[ti] every 2 months in 2020, we will review
|
|
|
|
assets:bank:checking $1500
|
|
|
|
income:acme inc
|
|
|
|
\f[R]
|
2018-06-09 05:52:45 +03:00
|
|
|
.fi
|
2019-09-09 18:02:49 +03:00
|
|
|
.PP
|
|
|
|
So,
|
|
|
|
.IP \[bu] 2
|
|
|
|
Do write two spaces between your period expression and your transaction
|
|
|
|
description, if any.
|
|
|
|
.IP \[bu] 2
|
|
|
|
Don\[aq]t accidentally write two spaces in the middle of your period
|
|
|
|
expression.
|
2018-07-01 00:08:48 +03:00
|
|
|
.SS Forecasting with periodic transactions
|
2018-06-09 05:52:45 +03:00
|
|
|
.PP
|
2019-05-24 08:26:43 +03:00
|
|
|
With the \f[C]--forecast\f[R] flag, each periodic transaction rule
|
2018-07-01 00:08:48 +03:00
|
|
|
generates future transactions recurring at the specified interval.
|
|
|
|
These are not saved in the journal, but appear in all reports.
|
2019-09-01 07:02:00 +03:00
|
|
|
They will look like normal transactions, but with an extra tag:
|
|
|
|
.IP \[bu] 2
|
|
|
|
\f[C]generated-transaction:\[ti] PERIODICEXPR\f[R] - shows that this was
|
|
|
|
generated by a periodic transaction rule, and the period
|
|
|
|
.PP
|
|
|
|
There is also a hidden tag, with an underscore prefix, which does not
|
|
|
|
appear in hledger\[aq]s output:
|
|
|
|
.IP \[bu] 2
|
|
|
|
\f[C]_generated-transaction:\[ti] PERIODICEXPR\f[R]
|
|
|
|
.PP
|
|
|
|
This can be used to match transactions generated \[dq]just now\[dq],
|
|
|
|
rather than generated in the past and saved to the journal.
|
2018-07-01 00:08:48 +03:00
|
|
|
.PP
|
2018-07-04 14:51:10 +03:00
|
|
|
Forecast transactions start on the first occurrence, and end on the last
|
|
|
|
occurrence, of their interval within the forecast period.
|
|
|
|
The forecast period:
|
|
|
|
.IP \[bu] 2
|
|
|
|
begins on the later of
|
|
|
|
.RS 2
|
|
|
|
.IP \[bu] 2
|
2019-05-24 08:26:43 +03:00
|
|
|
the report start date if specified with -b/-p/date:
|
2018-07-04 14:51:10 +03:00
|
|
|
.IP \[bu] 2
|
2019-05-24 08:26:43 +03:00
|
|
|
the day after the latest normal (non-periodic) transaction in the
|
2018-07-04 14:51:10 +03:00
|
|
|
journal, or today if there are no normal transactions.
|
|
|
|
.RE
|
|
|
|
.IP \[bu] 2
|
2019-05-24 08:26:43 +03:00
|
|
|
ends on the report end date if specified with -e/-p/date:, or 180 days
|
2018-07-04 14:51:10 +03:00
|
|
|
from today.
|
2018-07-01 00:08:48 +03:00
|
|
|
.PP
|
2019-05-24 08:26:43 +03:00
|
|
|
where \[dq]today\[dq] means the current date at report time.
|
|
|
|
The \[dq]later of\[dq] rule ensures that forecast transactions do not
|
|
|
|
overlap normal transactions in time; they will begin only after normal
|
2018-07-04 14:51:10 +03:00
|
|
|
transactions end.
|
2018-07-01 00:08:48 +03:00
|
|
|
.PP
|
|
|
|
Forecasting can be useful for estimating balances into the future, and
|
|
|
|
experimenting with different scenarios.
|
|
|
|
Note the start date logic means that forecasted transactions are
|
|
|
|
automatically replaced by normal transactions as you add those.
|
|
|
|
.PP
|
|
|
|
Forecasting can also help with data entry: describe most of your
|
|
|
|
transactions with periodic rules, and every so often copy the output of
|
2019-05-24 08:26:43 +03:00
|
|
|
\f[C]print --forecast\f[R] to the journal.
|
2018-07-01 00:08:48 +03:00
|
|
|
.PP
|
2019-05-24 08:26:43 +03:00
|
|
|
You can generate one-time transactions too: just write a period
|
2018-06-09 05:52:45 +03:00
|
|
|
expression specifying a date with no report interval.
|
2018-07-01 00:08:48 +03:00
|
|
|
(You could also write a normal transaction with a future date, but
|
|
|
|
remember this disables forecast transactions on previous dates.)
|
|
|
|
.SS Budgeting with periodic transactions
|
2018-06-09 05:52:45 +03:00
|
|
|
.PP
|
2019-05-24 08:26:43 +03:00
|
|
|
With the \f[C]--budget\f[R] flag, currently supported by the balance
|
2018-06-09 05:52:45 +03:00
|
|
|
command, each periodic transaction rule declares recurring budget goals
|
|
|
|
for the specified accounts.
|
|
|
|
Eg the first example above declares a goal of spending $2000 on rent
|
|
|
|
(and also, a goal of depositing $2000 into checking) every month.
|
|
|
|
Goals and actual performance can then be compared in budget reports.
|
2018-04-30 04:04:59 +03:00
|
|
|
.PP
|
2019-09-09 18:02:49 +03:00
|
|
|
For more details, see: balance: Budget report and Budgeting and
|
|
|
|
Forecasting.
|
2018-02-16 22:09:37 +03:00
|
|
|
.PP
|
2019-05-24 08:26:43 +03:00
|
|
|
.SS Auto postings / transaction modifiers
|
2018-06-09 05:52:45 +03:00
|
|
|
.PP
|
2019-09-01 07:02:00 +03:00
|
|
|
Transaction modifier rules, AKA auto posting rules, describe changes to
|
|
|
|
be applied automatically to certain matched transactions.
|
2019-05-24 08:26:43 +03:00
|
|
|
Currently just one kind of change is possible - adding extra postings,
|
|
|
|
which we call \[dq]automated postings\[dq] or just \[dq]auto
|
|
|
|
postings\[dq].
|
|
|
|
These rules become active when you use the \f[C]--auto\f[R] flag.
|
2018-07-31 18:02:51 +03:00
|
|
|
.PP
|
2019-09-01 07:02:00 +03:00
|
|
|
A transaction modifier rule looks much like a normal transaction except
|
|
|
|
the first line is an equals sign followed by a query that matches
|
|
|
|
certain postings (mnemonic: \f[C]=\f[R] suggests matching).
|
2019-05-24 08:26:43 +03:00
|
|
|
And each \[dq]posting\[dq] is actually a posting-generating rule:
|
2017-12-15 05:20:07 +03:00
|
|
|
.IP
|
|
|
|
.nf
|
|
|
|
\f[C]
|
2019-05-24 08:26:43 +03:00
|
|
|
= QUERY
|
|
|
|
ACCT AMT
|
|
|
|
ACCT [AMT]
|
|
|
|
...
|
|
|
|
\f[R]
|
2017-12-15 05:20:07 +03:00
|
|
|
.fi
|
|
|
|
.PP
|
2019-05-24 08:26:43 +03:00
|
|
|
These posting-generating rules look like normal postings, except the
|
|
|
|
amount can be:
|
2018-12-03 04:26:18 +03:00
|
|
|
.IP \[bu] 2
|
2019-05-24 08:26:43 +03:00
|
|
|
a normal amount with a commodity symbol, eg \f[C]$2\f[R].
|
|
|
|
This will be used as-is.
|
2018-12-03 04:26:18 +03:00
|
|
|
.IP \[bu] 2
|
2019-05-24 08:26:43 +03:00
|
|
|
a number, eg \f[C]2\f[R].
|
2018-12-03 04:26:18 +03:00
|
|
|
The commodity symbol (if any) from the matched posting will be added to
|
|
|
|
this.
|
|
|
|
.IP \[bu] 2
|
2019-05-24 08:26:43 +03:00
|
|
|
a numeric multiplier, eg \f[C]*2\f[R] (a star followed by a number N).
|
2019-01-25 02:37:40 +03:00
|
|
|
The matched posting\[aq]s amount (and total price, if any) will be
|
2018-12-03 04:26:18 +03:00
|
|
|
multiplied by N.
|
|
|
|
.IP \[bu] 2
|
2019-05-24 08:26:43 +03:00
|
|
|
a multiplier with a commodity symbol, eg \f[C]*$2\f[R] (a star, number
|
|
|
|
N, and symbol S).
|
2019-01-25 02:37:40 +03:00
|
|
|
The matched posting\[aq]s amount will be multiplied by N, and its
|
|
|
|
commodity symbol will be replaced with S.
|
2017-12-15 05:20:07 +03:00
|
|
|
.PP
|
2019-05-24 08:26:43 +03:00
|
|
|
These rules have global effect - a rule appearing anywhere in your data
|
|
|
|
can potentially affect any transaction, including transactions recorded
|
|
|
|
above it or in another file.
|
|
|
|
.PP
|
2018-12-03 04:26:18 +03:00
|
|
|
Some examples:
|
2017-12-15 05:20:07 +03:00
|
|
|
.IP
|
|
|
|
.nf
|
|
|
|
\f[C]
|
2019-05-24 08:26:43 +03:00
|
|
|
; every time I buy food, schedule a dollar donation
|
|
|
|
= expenses:food
|
|
|
|
(liabilities:charity) $-1
|
2018-12-03 04:26:18 +03:00
|
|
|
|
2019-05-24 08:26:43 +03:00
|
|
|
; when I buy a gift, also deduct that amount from a budget envelope subaccount
|
|
|
|
= expenses:gifts
|
|
|
|
assets:checking:gifts *-1
|
|
|
|
assets:checking *1
|
2018-02-16 22:09:37 +03:00
|
|
|
|
2018-12-03 04:26:18 +03:00
|
|
|
2017/12/1
|
2019-05-24 08:26:43 +03:00
|
|
|
expenses:food $10
|
|
|
|
assets:checking
|
2018-12-03 04:26:18 +03:00
|
|
|
|
|
|
|
2017/12/14
|
2019-05-24 08:26:43 +03:00
|
|
|
expenses:gifts $20
|
|
|
|
assets:checking
|
|
|
|
\f[R]
|
2018-02-16 22:09:37 +03:00
|
|
|
.fi
|
|
|
|
.IP
|
|
|
|
.nf
|
|
|
|
\f[C]
|
2019-05-24 08:26:43 +03:00
|
|
|
$ hledger print --auto
|
2018-12-03 04:26:18 +03:00
|
|
|
2017/12/01
|
2019-05-24 08:26:43 +03:00
|
|
|
expenses:food $10
|
|
|
|
assets:checking
|
|
|
|
(liabilities:charity) $-1
|
2018-12-03 04:26:18 +03:00
|
|
|
|
2017-12-15 05:20:07 +03:00
|
|
|
2017/12/14
|
2019-05-24 08:26:43 +03:00
|
|
|
expenses:gifts $20
|
|
|
|
assets:checking
|
|
|
|
assets:checking:gifts -$20
|
|
|
|
assets:checking $20
|
|
|
|
\f[R]
|
2017-12-15 05:20:07 +03:00
|
|
|
.fi
|
2019-09-01 07:02:00 +03:00
|
|
|
.SS Auto postings and dates
|
|
|
|
.PP
|
|
|
|
A posting date (or secondary date) in the matched posting, or (taking
|
|
|
|
precedence) a posting date in the auto posting rule itself, will also be
|
|
|
|
used in the generated posting.
|
2019-05-24 08:26:43 +03:00
|
|
|
.SS Auto postings and transaction balancing / inferred amounts / balance assertions
|
2018-04-20 16:48:26 +03:00
|
|
|
.PP
|
2019-02-02 03:06:09 +03:00
|
|
|
Currently, transaction modifiers are applied / auto postings are added:
|
|
|
|
.IP \[bu] 2
|
|
|
|
after missing amounts are inferred, and transactions are checked for
|
|
|
|
balancedness,
|
|
|
|
.IP \[bu] 2
|
|
|
|
but before balance assertions are checked.
|
|
|
|
.PP
|
2019-02-02 04:23:12 +03:00
|
|
|
Note this means that journal entries must be balanced both before and
|
|
|
|
after auto postings are added.
|
|
|
|
This changed in hledger 1.12+; see #893 for background.
|
2019-09-01 07:02:00 +03:00
|
|
|
.SS Auto posting tags
|
|
|
|
.PP
|
|
|
|
Postings added by transaction modifiers will have some extra tags:
|
|
|
|
.IP \[bu] 2
|
|
|
|
\f[C]generated-posting:= QUERY\f[R] - shows this was generated by an
|
|
|
|
auto posting rule, and the query
|
|
|
|
.IP \[bu] 2
|
|
|
|
\f[C]_generated-posting:= QUERY\f[R] - a hidden tag, which does not
|
|
|
|
appear in hledger\[aq]s output.
|
|
|
|
This can be used to match postings generated \[dq]just now\[dq], rather
|
|
|
|
than generated in the past and saved to the journal.
|
|
|
|
.PP
|
|
|
|
Also, any transaction that has been changed by transaction modifier
|
|
|
|
rules will have these tags added:
|
|
|
|
.IP \[bu] 2
|
|
|
|
\f[C]modified:\f[R] - this transaction was modified
|
|
|
|
.IP \[bu] 2
|
|
|
|
\f[C]_modified:\f[R] - a hidden tag not appearing in the comment; this
|
|
|
|
transaction was modified \[dq]just now\[dq].
|
2016-04-13 06:31:17 +03:00
|
|
|
.SH EDITOR SUPPORT
|
|
|
|
.PP
|
2019-02-14 15:12:25 +03:00
|
|
|
Helper modes exist for popular text editors, which make working with
|
2016-04-13 06:31:17 +03:00
|
|
|
journal files easier.
|
2019-02-14 15:12:25 +03:00
|
|
|
They add colour, formatting, tab completion, and helpful commands, and
|
|
|
|
are quite recommended if you edit your journal with a text editor.
|
2019-05-24 08:26:43 +03:00
|
|
|
They include ledger-mode or hledger-mode for Emacs, vim-ledger for Vim,
|
|
|
|
hledger-vscode for Visual Studio Code, and others.
|
2019-12-09 17:06:58 +03:00
|
|
|
See the Editor configuration at hledger.org for the latest information.
|
2015-10-20 16:26:09 +03:00
|
|
|
|
|
|
|
|
|
|
|
.SH "REPORTING BUGS"
|
2016-04-09 23:56:09 +03:00
|
|
|
Report bugs at http://bugs.hledger.org
|
|
|
|
(or on the #hledger IRC channel or hledger mail list)
|
2015-10-20 16:26:09 +03:00
|
|
|
|
|
|
|
.SH AUTHORS
|
2016-04-09 23:56:09 +03:00
|
|
|
Simon Michael <simon@joyful.com> and contributors
|
2015-10-20 16:26:09 +03:00
|
|
|
|
|
|
|
.SH COPYRIGHT
|
|
|
|
|
2019-09-13 18:26:49 +03:00
|
|
|
Copyright (C) 2007-2019 Simon Michael.
|
2015-10-20 16:26:09 +03:00
|
|
|
.br
|
2016-04-13 06:31:17 +03:00
|
|
|
Released under GNU GPL v3 or later.
|
2015-10-20 16:26:09 +03:00
|
|
|
|
|
|
|
.SH SEE ALSO
|
2016-04-09 23:56:09 +03:00
|
|
|
hledger(1), hledger\-ui(1), hledger\-web(1), hledger\-api(1),
|
2016-04-13 07:10:02 +03:00
|
|
|
hledger_csv(5), hledger_journal(5), hledger_timeclock(5), hledger_timedot(5),
|
2016-04-09 23:56:09 +03:00
|
|
|
ledger(1)
|
2015-10-20 16:26:09 +03:00
|
|
|
|
2016-04-09 23:56:09 +03:00
|
|
|
http://hledger.org
|