hledger 1.20.4 → 1.21
raw patch · 71 files changed
+52509/−38401 lines, 71 filesdep ~hledger-libPVP ok
version bump matches the API change (PVP)
Dependency ranges changed: hledger-lib
API changes (from Hackage documentation)
- Hledger.Cli.Commands.Add: transactionsSimilarTo :: Journal -> Query -> Text -> [(Double, Transaction)]
- Hledger.Cli.Commands.Checkdates: checkdates :: CliOpts -> Journal -> IO ()
- Hledger.Cli.Commands.Checkdates: checkdatesmode :: Mode RawOpts
- Hledger.Cli.Commands.Checkdupes: checkdupes :: p -> Journal -> IO ()
- Hledger.Cli.Commands.Checkdupes: checkdupesmode :: Mode RawOpts
- Hledger.Cli.DocFiles: docFiles :: [(Topic, (ByteString, ByteString, ByteString))]
- Hledger.Cli.DocFiles: docTopics :: [Topic]
- Hledger.Cli.DocFiles: lookupDocInfo :: Topic -> ByteString
- Hledger.Cli.DocFiles: lookupDocNroff :: Topic -> ByteString
- Hledger.Cli.DocFiles: lookupDocTxt :: Topic -> ByteString
+ Hledger.Cli.Commands.Check: instance GHC.Enum.Bounded Hledger.Cli.Commands.Check.Check
+ Hledger.Cli.Commands.Check: instance GHC.Enum.Enum Hledger.Cli.Commands.Check.Check
+ Hledger.Cli.Commands.Check.Ordereddates: journalCheckOrdereddates :: CliOpts -> Journal -> Either String ()
+ Hledger.Cli.Commands.Check.Uniqueleafnames: journalCheckUniqueleafnames :: Journal -> Either String ()
+ Hledger.Cli.Utils: journalSimilarTransaction :: CliOpts -> Journal -> Text -> Maybe Transaction
+ Hledger.Cli.Utils: writeOutputLazyText :: CliOpts -> Text -> IO ()
- Hledger.Cli.Commands.Add: appendToJournalFileOrStdout :: FilePath -> String -> IO ()
+ Hledger.Cli.Commands.Add: appendToJournalFileOrStdout :: FilePath -> Text -> IO ()
- Hledger.Cli.Commands.Balance: balanceReportAsTable :: ReportOpts -> MultiBalanceReport -> Table String String MixedAmount
+ Hledger.Cli.Commands.Balance: balanceReportAsTable :: ReportOpts -> MultiBalanceReport -> Table Text Text MixedAmount
- Hledger.Cli.Commands.Balance: balanceReportAsText :: ReportOpts -> BalanceReport -> String
+ Hledger.Cli.Commands.Balance: balanceReportAsText :: ReportOpts -> BalanceReport -> Builder
- Hledger.Cli.Commands.Balance: balanceReportItemAsText :: ReportOpts -> BalanceReportItem -> [String]
+ Hledger.Cli.Commands.Balance: balanceReportItemAsText :: ReportOpts -> BalanceReportItem -> (Builder, [Int])
- Hledger.Cli.Commands.Balance: balanceReportTableAsText :: ReportOpts -> Table String String MixedAmount -> String
+ Hledger.Cli.Commands.Balance: balanceReportTableAsText :: ReportOpts -> Table Text Text MixedAmount -> Builder
- Hledger.Cli.Commands.Balance: multiBalanceReportAsText :: ReportOpts -> MultiBalanceReport -> String
+ Hledger.Cli.Commands.Balance: multiBalanceReportAsText :: ReportOpts -> MultiBalanceReport -> Text
- Hledger.Cli.Commands.Register: postingsReportAsText :: CliOpts -> PostingsReport -> String
+ Hledger.Cli.Commands.Register: postingsReportAsText :: CliOpts -> PostingsReport -> Text
- Hledger.Cli.Commands.Register: postingsReportItemAsText :: CliOpts -> Int -> Int -> PostingsReportItem -> String
+ Hledger.Cli.Commands.Register: postingsReportItemAsText :: CliOpts -> Int -> Int -> PostingsReportItem -> Builder
- Hledger.Cli.DocFiles: printHelpForTopic :: Topic -> IO ()
+ Hledger.Cli.DocFiles: printHelpForTopic :: Tool -> Maybe Topic -> IO ()
- Hledger.Cli.DocFiles: runInfoForTopic :: Topic -> IO ()
+ Hledger.Cli.DocFiles: runInfoForTopic :: Tool -> Maybe Topic -> IO ()
- Hledger.Cli.DocFiles: runManForTopic :: Topic -> IO ()
+ Hledger.Cli.DocFiles: runManForTopic :: Tool -> Maybe Topic -> IO ()
- Hledger.Cli.DocFiles: runPagerForTopic :: FilePath -> Topic -> IO ()
+ Hledger.Cli.DocFiles: runPagerForTopic :: Tool -> Maybe Topic -> IO ()
Files
- CHANGES.md +164/−2
- Hledger/Cli/CliOptions.hs +14/−9
- Hledger/Cli/Commands.hs +11/−17
- Hledger/Cli/Commands/Accounts.txt +1/−1
- Hledger/Cli/Commands/Add.hs +33/−83
- Hledger/Cli/Commands/Aregister.hs +75/−89
- Hledger/Cli/Commands/Balance.hs +155/−118
- Hledger/Cli/Commands/Balance.txt +387/−229
- Hledger/Cli/Commands/Balancesheet.hs +3/−2
- Hledger/Cli/Commands/Balancesheet.txt +4/−7
- Hledger/Cli/Commands/Balancesheetequity.hs +4/−2
- Hledger/Cli/Commands/Balancesheetequity.txt +6/−0
- Hledger/Cli/Commands/Cashflow.hs +4/−2
- Hledger/Cli/Commands/Cashflow.txt +5/−5
- Hledger/Cli/Commands/Check.hs +59/−26
- Hledger/Cli/Commands/Check.txt +22/−17
- Hledger/Cli/Commands/Check/Ordereddates.hs +66/−0
- Hledger/Cli/Commands/Check/Uniqueleafnames.hs +60/−0
- Hledger/Cli/Commands/Checkdates.hs +0/−69
- Hledger/Cli/Commands/Checkdates.txt +0/−7
- Hledger/Cli/Commands/Checkdupes.hs +0/−50
- Hledger/Cli/Commands/Checkdupes.txt +0/−8
- Hledger/Cli/Commands/Close.hs +7/−7
- Hledger/Cli/Commands/Diff.hs +11/−11
- Hledger/Cli/Commands/Files.hs +3/−4
- Hledger/Cli/Commands/Help.hs +12/−23
- Hledger/Cli/Commands/Help.txt +11/−30
- Hledger/Cli/Commands/Import.hs +2/−1
- Hledger/Cli/Commands/Import.txt +59/−9
- Hledger/Cli/Commands/Incomestatement.txt +5/−5
- Hledger/Cli/Commands/Payees.hs +15/−4
- Hledger/Cli/Commands/Payees.txt +9/−5
- Hledger/Cli/Commands/Prices.hs +6/−4
- Hledger/Cli/Commands/Print.hs +55/−53
- Hledger/Cli/Commands/Print.txt +33/−20
- Hledger/Cli/Commands/Register.hs +59/−55
- Hledger/Cli/Commands/Register.txt +1/−1
- Hledger/Cli/Commands/Registermatch.hs +4/−4
- Hledger/Cli/Commands/Rewrite.hs +18/−16
- Hledger/Cli/Commands/Roi.hs +79/−50
- Hledger/Cli/Commands/Roi.txt +82/−187
- Hledger/Cli/Commands/Tags.hs +2/−2
- Hledger/Cli/CompoundBalanceCommand.hs +111/−100
- Hledger/Cli/DocFiles.hs +78/−63
- Hledger/Cli/Main.hs +13/−3
- Hledger/Cli/Utils.hs +24/−1
- embeddedfiles/hledger-ui.1 +15/−8
- embeddedfiles/hledger-ui.info +33/−25
- embeddedfiles/hledger-ui.txt +36/−33
- embeddedfiles/hledger-web.1 +14/−8
- embeddedfiles/hledger-web.info +29/−21
- embeddedfiles/hledger-web.txt +45/−42
- embeddedfiles/hledger.1 +9369/−4961
- embeddedfiles/hledger.info +9047/−4608
- embeddedfiles/hledger.txt +6861/−3682
- embeddedfiles/hledger_csv.5 +0/−1300
- embeddedfiles/hledger_csv.info +0/−1352
- embeddedfiles/hledger_csv.txt +0/−962
- embeddedfiles/hledger_journal.5 +0/−2153
- embeddedfiles/hledger_journal.info +0/−2217
- embeddedfiles/hledger_journal.txt +0/−1597
- embeddedfiles/hledger_timeclock.5 +0/−90
- embeddedfiles/hledger_timeclock.info +0/−67
- embeddedfiles/hledger_timeclock.txt +0/−80
- embeddedfiles/hledger_timedot.5 +0/−199
- embeddedfiles/hledger_timedot.info +0/−156
- embeddedfiles/hledger_timedot.txt +0/−163
- hledger.1 +9369/−4961
- hledger.cabal +11/−25
- hledger.info +9047/−4608
- hledger.txt +6861/−3682
CHANGES.md view
@@ -1,6 +1,168 @@ User-visible changes in the hledger command line tool and library. +# 1.21 2021-03-10++## general++- hledger is now generally about 10% more memory- and time-efficient,+ and significantly more so in certain cases, eg journals with many+ total transaction prices. (Stephen Morgan)++- The `--help/-h` and `--version` flags are no longer position-sensitive;+ if there is a command argument, they now always refer to the command+ (where applicable).++- The new `--info` flag opens the hledger info manual, if "info" is in $PATH.+ `hledger COMMAND --info` will open COMMAND's info node.++- The `--man` flag opens the hledger man page, if "man" is in $PATH.+ `hledger COMMAND --man` will scroll the page to CMD's section, if "less"+ is in $PATH. (We force the use of "less" in this case, overriding any+ $PAGER or $MAN_PAGER setting.)++- Some command aliases, considered deprecated, have been removed:+ `txns`, `equity`, and the single-letter command aliases `a`, `b`,+ `p`, and `r`. This was discussed at+ https://github.com/simonmichael/hledger/pull/1423 and on the hledger+ mail list. It might annoy some folks; please read the issue and do+ follow up there if needed.+ +- Notable documentation updates:+ the separate file format manuals have been merged into the hledger manual,+ the topic hierarchy has been simplified,+ the `balance` command docs and "commands" section have been rewritten.++## valuation++- Costing and valuation are now independent, and can be combined.+ `--value=cost` and `--value=cost,COMM` are still supported+ (equivalent to `--cost` and `--cost --value=then,COMM` respectively), + but deprecated. (Stephen Morgan)++- `-V` is now always equivalent to `--value=end`. (Stephen Morgan)++- `--value=end` now includes market price directives as well as+ transactions when choosing a valuation date for single-period+ reports. (#1405, Stephen Morgan)++- `--value=end` now picks a consistent valuation date for single- and+ and multi-period reports. (#1424, Stephen Morgan)++- `--value=then` is now supported with all reports, not just register. (Stephen Morgan)++- The too-vague `--infer-value` flag has been renamed to `--infer-market-price`.+ Tip: typing `--infer-market` or even `--infer` is sufficient.+ The old spelling still works, but is now deprecated.++## commands++- add: Infix matches are now scored higher. If the search pattern+ occurs in full within the other description, that match gets a +0.5+ score boost.++- add: `--debug` now shows transaction matching results, useful when+ troubleshooting.++- balance: To accomodate new report types, the+ `--change|--cumulative|--historical|--budget` flags have been split+ into two groups: report type (`--sum|--budget|...`) and accumulation+ type (`--change|--cumulative|--historical`). `--sum` and `--change`+ are the defaults, and your balance commands should still work as+ before. (Stephen Morgan et al, #1353)++- balance: The `--valuechange` report type has been added, showing the+ changes in period-end values. (Stephen Morgan, #1353)++- balance: With `--budget`, the first and last subperiods are enlarged+ to whole intervals for calculating the budget goals also. (Stephen+ Morgan)++- balance: In multi-period balance reports, specifying a report period+ now also forces leading/trailing empty columns to be displayed,+ without having to add `-E`. This is consistent with `balancesheet`+ etc. (#1396, Stephen Morgan)++- balancesheet, cashflow: declaring just a Cash account no longer+ hides other Asset accounts.++- check: Various improvements:++ - check name arguments may be given as case-insensitive prefixes+ - `accounts` and `commodities` may also be specified as arguments+ - `ordereddates` now checks each file separately (#1493)+ - `ordereddates` no longer supports the `--unique` flag or query arguments+ - `payees` is a new check requiring payee declarations+ - `uniqueleafnames` now gives a fancy error message like the others+ - the old `checkdates`/`checkdupes` commands have been dropped++- help: The `help` command now shows only the hledger (CLI) manual,+ its `--info/--man/--pager` flags have been renamed to `-i/-m/-p`,+ and `--cat` has been dropped.++- help: With a TOPIC argument (any heading or heading prefix, case+ insensitive), it will open the manual positioned at this topic if+ possible. (Similar to the new `--man` and `--info` flags described above.)+ <!-- `hledger help print` will show `print`'s doc with the best available viewer (usually info). -->+ <!-- `hledger help print -m` is equivalent to `hledger print --man`.) -->++- payees: Add `--used`/`--declared` flags, like the `accounts` command.++- print: Now always shows amounts with all decimal places,+ unconstrained by commodity display style. This ensures more+ parseable and sensible-looking output in more cases, and behaves+ more like Ledger's print. (There may be a cosmetic issue with+ trailing zeroes.) (#931, #1465)++- print: With `--match`, infix matches are now scored higher, as with+ the add command.++- print: `--match` now provides debug output useful for troubleshooting.++ If you forget to give `--match` an argument, it can confusingly+ consume a following flag. Eg if you write:++ hledger print --match -x somebank # should be: hledger print --match=somebank -x++ it gets quietly parsed as:++ hledger print --match="-x"++ Now you can at least use --debug to figure it out:++ hledger print --match -x somebank --debug+ finding best match for description: "-x"+ similar transactions:+ ...++- roi: Now supports the valuation options (#1417), and uses commodity display styles.+ Also the manual has been simplified, with some content moved to the Cookbook.+ (Dmitry Astapov):++## journal format++- The `commodity` directive now properly sets the display style of the+ no-symbol commodity. (#1461)++## csv format++- More kinds of malformed signed numbers are now ignored, in+ particular just a sign without a number, which simplifies sign+ flipping with amount-in/amount-out.++## API++- API changes include:+ ```+ Hledger.Cli.Utils:+ +journalSimilarTransaction+ + Hledger.Cli.Commands.Add:+ transactionsSimilarTo -> Hledger.Data.Journal.journalTransactionsSimilarTo+ and now takes a number-of-results argument+ ```++ # 1.20.4 2021-01-29 - aregister: ignore a depth limit, as in 1.19 (#1468).@@ -1864,7 +2026,7 @@ When a transaction posts to two commodities without specifying the conversion price, we generate a price which makes it balance (cf- http://hledger.org/manual.html#prices). The print command showed+ https://hledger.org/hledger.html#prices). The print command showed this with full precision (so that manual calculations with the displayed numbers would look right), but this sometimes meant we showed 255 digits (when there are multiple postings in the@@ -2223,4 +2385,4 @@ - avoid pretty-show to build with GHC < 7.4 - allow text 1.1, drop data-pprint to build with GHC 7.8.x -0.22.1 (2014/1/6) and older: see http://hledger.org/release-notes or doc/release-notes.md.+0.22.1 (2014/1/6) and older: see https://hledger.org/release-notes or doc/release-notes.md.
Hledger/Cli/CliOptions.hs view
@@ -106,7 +106,10 @@ -- | Common help flags: --help, --debug, --version... helpflags :: [Flag RawOpts] helpflags = [- flagNone ["help","h"] (setboolopt "help") "show general usage (or after CMD, command usage)"+ -- XXX why are these duplicated in defCommandMode below ?+ flagNone ["help","h"] (setboolopt "help") "show general help (or after CMD, command help)"+ ,flagNone ["man"] (setboolopt "man") "Show user manual with man"+ ,flagNone ["info"] (setboolopt "info") "Show info manual with info" -- ,flagNone ["browse-args"] (setboolopt "browse-args") "use a web UI to select options and build up a command line" ,flagReq ["debug"] (\s opts -> Right $ setopt "debug" s opts) "[N]" "show debug output (levels 1-9, default: 1)" ,flagNone ["version"] (setboolopt "version") "show version information"@@ -153,29 +156,29 @@ -- valuation ,flagNone ["B","cost"] (setboolopt "B")- "show amounts converted to their cost/selling amount, using the transaction price. Equivalent to --value=cost."+ "show amounts converted to their cost/selling amount, using the transaction price." ,flagNone ["V","market"] (setboolopt "V") (unwords- ["show amounts converted to current market value (single period reports)"- ,"or period-end market value (multiperiod reports) in their default valuation commodity."- ,"Equivalent to --value=now / --value=end."+ ["show amounts converted to period-end market value in their default valuation commodity."+ ,"Equivalent to --value=end." ]) ,flagReq ["X","exchange"] (\s opts -> Right $ setopt "X" s opts) "COMM" (unwords ["show amounts converted to current (single period reports)" ,"or period-end (multiperiod reports) market value in the specified commodity."- ,"Equivalent to --value=now,COMM / --value=end,COMM."+ ,"Equivalent to --value=end,COMM." ]) ,flagReq ["value"] (\s opts -> Right $ setopt "value" s opts) "TYPE[,COMM]" (unlines ["show amounts converted with valuation TYPE, and optionally to specified commodity COMM. TYPE can be:"- ,"'cost': convert to cost using transaction prices, then optionally to COMM using period-end market prices" ,"'then': convert to contemporaneous market value, in default valuation commodity or COMM (print & register commands only)" ,"'end': convert to period-end market value, in default valuation commodity or COMM" ,"'now': convert to current market value, in default valuation commodity or COMM" ,"YYYY-MM-DD: convert to market value on the given date, in default valuation commodity or COMM" ])- ,flagNone ["infer-value"] (setboolopt "infer-value") "with -V/-X/--value, also infer market prices from transactions"+ -- XXX infer-value renamed to infer-market-price and deprecated 2021-02+ ,flagNone ["infer-market-price","infer-value"] (setboolopt "infer-market-price") + "use transaction prices (recorded with @ or @@) as additional market prices, as if they were P directives" -- generated postings/transactions ,flagNone ["auto"] (setboolopt "auto") "apply automated posting rules to modify transactions"@@ -274,8 +277,10 @@ ,modeGroupFlags = Group { groupNamed = [] ,groupUnnamed = [- flagNone ["help"] (setboolopt "help") "Show usage."+ flagNone ["help"] (setboolopt "help") "Show command-line help" -- ,flagNone ["help"] (setboolopt "help") "Show long help."+ ,flagNone ["man"] (setboolopt "man") "Show user manual with man"+ ,flagNone ["info"] (setboolopt "info") "Show info manual with info" ] ,groupHidden = [] -- flags not displayed in the usage }
Hledger/Cli/Commands.hs view
@@ -25,8 +25,6 @@ ,module Hledger.Cli.Commands.Balancesheet ,module Hledger.Cli.Commands.Balancesheetequity ,module Hledger.Cli.Commands.Cashflow- ,module Hledger.Cli.Commands.Checkdates- ,module Hledger.Cli.Commands.Checkdupes ,module Hledger.Cli.Commands.Close ,module Hledger.Cli.Commands.Codes ,module Hledger.Cli.Commands.Commodities@@ -73,8 +71,6 @@ import Hledger.Cli.Commands.Balancesheetequity import Hledger.Cli.Commands.Cashflow import Hledger.Cli.Commands.Check-import Hledger.Cli.Commands.Checkdates-import Hledger.Cli.Commands.Checkdupes import Hledger.Cli.Commands.Close import Hledger.Cli.Commands.Codes import Hledger.Cli.Commands.Commodities@@ -111,8 +107,6 @@ ,(balancesheetmode , balancesheet) ,(cashflowmode , cashflow) ,(checkmode , check)- ,(checkdatesmode , checkdates)- ,(checkdupesmode , checkdupes) ,(closemode , close) ,(codesmode , codes) ,(commoditiesmode , commodities)@@ -156,7 +150,7 @@ -- commandsList :: String -> [String] -> [String] commandsList progversion othercmds = [- -- keep synced with hledger.m4.md -> Commands -->+ -- keep synced with hledger.m4.md -> Commands, commands.m4 --> "-------------------------------------------------------------------------------" ,progversion ,"Usage: hledger COMMAND [OPTIONS] [-- ADDONCMDOPTIONS]"@@ -172,10 +166,11 @@ ," check check for various kinds of issue in the data" ,"+check-fancyassertions check more powerful balance assertions" ,"+check-tagfiles check file paths in tag values exist"- ," close (equity) generate balance-resetting transactions"+ ," close generate balance-resetting transactions" ," diff compare account transactions in two journal files" ,"+interest generate interest transactions" ," rewrite generate extra postings, similar to print --auto"+ ,"+stockquotes download market prices from AlphaVantage" ,"" ,"Financial reports:" ," aregister (areg) show transactions in a particular account"@@ -186,9 +181,9 @@ ," roi show return on investments" ,"" ,"Low-level reports:"- ," accounts (a) show account names"+ ," accounts show account names" ," activity show postings-per-interval bar charts"- ," balance (b, bal) show balance changes/end balances/budgets in accounts"+ ," balance (bal) show balance changes/end balances/budgets in accounts" ," codes show transaction codes" ," commodities show commodity/currency symbols" ," descriptions show unique transaction descriptions"@@ -196,32 +191,31 @@ ," notes show unique note segments of transaction descriptions" ," payees show unique payee segments of transaction descriptions" ," prices show market price records"- ," print (p, txns) show transactions (journal entries)"+ ," print show transactions (journal entries)" ," print-unique show only transactions with unique descriptions"- ," register (r, reg) show postings in one or more accounts & running total"+ ," register (reg) show postings in one or more accounts & running total" ," register-match show a recent posting that best matches a description" ," stats show journal statistics" ," tags show tag names" ," test run self tests" ,"" ,"Alternate user interfaces:"- ,"+ui run curses ui"- ,"+web run web ui"+ ,"+ui run terminal UI"+ ,"+web run web UI" ,"" ,"Other:" ] ++ othercmds ++- ["Help:"+ [""+ ,"Help:" ," (no arguments) show this commands list" ," -h show general flags" ," COMMAND -h show flags & docs for COMMAND" ," help [MANUAL] show hledger manuals in various formats" ,"" ]--- commands show brief commands list -- edit open a text editor on some part of the journal--- aregister (ar, areg) show transactions in a single account -- | All names and aliases of builtin commands.
Hledger/Cli/Commands/Accounts.txt view
@@ -1,4 +1,4 @@-accounts, a+accounts Show account names. _FLAGS
Hledger/Cli/Commands/Add.hs view
@@ -11,7 +11,6 @@ ,add ,appendToJournalFileOrStdout ,journalAddTransaction- ,transactionsSimilarTo ) where @@ -26,17 +25,19 @@ import Data.Either (isRight) import Data.Functor.Identity (Identity(..)) import "base-compat-batteries" Data.List.Compat-import qualified Data.Set as S-import Data.Maybe+import Data.Maybe (fromJust, fromMaybe, isJust) import Data.Text (Text) import qualified Data.Text as T+import qualified Data.Text.IO as T+import qualified Data.Text.Lazy as TL+import qualified Data.Text.Lazy.IO as TL import Data.Time.Calendar (Day) import Data.Time.Format (formatTime, defaultTimeLocale, iso8601DateFormat) import Safe (headDef, headMay, atMay)-import System.Console.CmdArgs.Explicit+import System.Console.CmdArgs.Explicit (flagNone) import System.Console.Haskeline (runInputT, defaultSettings, setComplete)-import System.Console.Haskeline.Completion-import System.Console.Wizard+import System.Console.Haskeline.Completion (CompletionFunc, completeWord, isFinished, noCompletion, simpleCompletion)+import System.Console.Wizard (Wizard, defaultTo, line, output, retryMsg, linePrewritten, nonEmpty, parser, run) import System.Console.Wizard.Haskeline import System.IO ( stderr, hPutStr, hPutStrLn ) import Text.Megaparsec@@ -46,6 +47,7 @@ import Hledger import Hledger.Cli.CliOptions import Hledger.Cli.Commands.Register (postingsReportAsText)+import Hledger.Cli.Utils (journalSimilarTransaction) addmode = hledgerCommandMode@@ -89,7 +91,7 @@ add opts j | journalFilePath j == "-" = return () | otherwise = do- hPrintf stderr "Adding transactions to journal file %s\n" (journalFilePath j)+ hPutStrLn stderr $ "Adding transactions to journal file " <> journalFilePath j showHelp today <- getCurrentDay let es = defEntryState{esOpts=opts@@ -123,16 +125,16 @@ Nothing -> error "Could not interpret the input, restarting" -- caught below causing a restart, I believe -- PARTIAL: Just t -> do j <- if debug_ esOpts > 0- then do hPrintf stderr "Skipping journal add due to debug mode.\n"+ then do hPutStrLn stderr "Skipping journal add due to debug mode." return esJournal else do j' <- journalAddTransaction esJournal esOpts t- hPrintf stderr "Saved.\n"+ hPutStrLn stderr "Saved." return j'- hPrintf stderr "Starting the next transaction (. or ctrl-D/ctrl-C to quit)\n"+ hPutStrLn stderr "Starting the next transaction (. or ctrl-D/ctrl-C to quit)" getAndAddTransactions es{esJournal=j, esDefDate=tdate t} ) `E.catch` (\(_::RestartTransactionException) ->- hPrintf stderr "Restarting this transaction.\n" >> getAndAddTransactions es)+ hPutStrLn stderr "Restarting this transaction." >> getAndAddTransactions es) data TxnParams = TxnParams { txnDate :: Day@@ -164,7 +166,8 @@ { esArgs = drop 1 esArgs , esDefDate = date }- dateAndCodeString = formatTime defaultTimeLocale yyyymmddFormat date ++ (if T.null code then "" else " (" ++ T.unpack code ++ ")")+ dateAndCodeString = formatTime defaultTimeLocale yyyymmddFormat date+ ++ T.unpack (if T.null code then "" else " (" <> code <> ")") yyyymmddFormat = iso8601DateFormat Nothing confirmedTransactionWizard prevInput{prevDateAndCode=Just dateAndCodeString} es' (EnterDescAndComment (date, code) : stack) Nothing ->@@ -172,7 +175,7 @@ EnterDescAndComment (date, code) -> descriptionAndCommentWizard prevInput es >>= \case Just (desc, comment) -> do- let mbaset = similarTransaction es desc+ let mbaset = journalSimilarTransaction esOpts esJournal desc es' = es { esArgs = drop 1 esArgs , esPostings = []@@ -180,7 +183,9 @@ } descAndCommentString = T.unpack $ desc <> (if T.null comment then "" else " ; " <> comment) prevInput' = prevInput{prevDescAndCmnt=Just descAndCommentString}- when (isJust mbaset) $ liftIO $ hPrintf stderr "Using this similar transaction for defaults:\n%s" (showTransaction $ fromJust mbaset)+ when (isJust mbaset) . liftIO $ do+ hPutStrLn stderr "Using this similar transaction for defaults:"+ T.hPutStr stderr $ showTransaction (fromJust mbaset) confirmedTransactionWizard prevInput' es' ((EnterNewPosting TxnParams{txnDate=date, txnCode=code, txnDesc=desc, txnCmnt=comment} Nothing) : stack) Nothing -> confirmedTransactionWizard prevInput es (drop 1 stack)@@ -232,14 +237,14 @@ ,pcomment=comment ,ptype=accountNamePostingType $ T.pack account }- amountAndCommentString = showAmount amount ++ (if T.null comment then "" else " ;" ++ T.unpack comment)+ amountAndCommentString = showAmount amount ++ T.unpack (if T.null comment then "" else " ;" <> comment) prevAmountAndCmnt' = replaceNthOrAppend (length esPostings) amountAndCommentString (prevAmountAndCmnt prevInput) es' = es{esPostings=esPostings++[posting], esArgs=drop 2 esArgs} confirmedTransactionWizard prevInput{prevAmountAndCmnt=prevAmountAndCmnt'} es' (EnterNewPosting txnParams (Just posting) : stack) Nothing -> confirmedTransactionWizard prevInput es (drop 1 stack) EndStage t -> do- output $ showTransaction t+ output . T.unpack $ showTransaction t y <- let def = "y" in retryMsg "Please enter y or n." $ parser ((fmap (\c -> if c == '<' then Nothing else Just c)) . headMay . map toLower . strip) $@@ -252,17 +257,8 @@ where replaceNthOrAppend n newElem xs = take n xs ++ [newElem] ++ drop (n + 1) xs --- Identify the closest recent match for this description in past transactions.-similarTransaction :: EntryState -> Text -> Maybe Transaction-similarTransaction EntryState{..} desc =- let q = queryFromFlags . rsOpts $ reportspec_ esOpts- historymatches = transactionsSimilarTo esJournal q desc- bestmatch | null historymatches = Nothing- | otherwise = Just $ snd $ head historymatches- in bestmatch- dateAndCodeWizard PrevInput{..} EntryState{..} = do- let def = headDef (showDate esDefDate) esArgs+ let def = headDef (T.unpack $ showDate esDefDate) esArgs retryMsg "A valid hledger smart date is required. Eg: 2014/2/14, 14, yesterday." $ parser (parseSmartDateAndCode esToday) $ withCompletion (dateCompleter def) $@@ -303,7 +299,7 @@ historicalp = fmap ((!! (pnum - 1)) . (++ (repeat nullposting)) . tpostings) esSimilarTransaction historicalacct = case historicalp of Just p -> showAccountName Nothing (ptype p) (paccount p) Nothing -> ""- def = headDef historicalacct esArgs+ def = headDef (T.unpack historicalacct) esArgs endmsg | canfinish && null def = " (or . or enter to finish this transaction)" | canfinish = " (or . to finish this transaction)" | otherwise = ""@@ -367,7 +363,7 @@ balancingamt = negate $ sum $ map pamount realps where realps = filter isReal esPostings balancingamtfirstcommodity = Mixed $ take 1 $ amounts balancingamt showamt =- showMixedAmountWithPrecision+ showMixedAmount . mixedAmountSetPrecision -- what should this be ? -- 1 maxprecision (show all decimal places or none) ? -- 2 maxprecisionwithpoint (show all decimal places or .0 - avoids some but not all confusion with thousands separators) ?@@ -442,7 +438,7 @@ -- unelided shows all amounts explicitly, in case there's a price, cf #283 when (debug_ opts > 0) $ do putStrLn $ printf "\nAdded transaction to %s:" f- putStrLn =<< registerFromString (showTransaction t)+ TL.putStrLn =<< registerFromString (showTransaction t) return j{jtxns=ts++[t]} -- | Append a string, typically one or more transactions, to a journal@@ -453,20 +449,20 @@ -- even if the file uses dos line endings (\r\n), which could leave -- mixed line endings in the file. See also writeFileWithBackupIfChanged. ---appendToJournalFileOrStdout :: FilePath -> String -> IO ()+appendToJournalFileOrStdout :: FilePath -> Text -> IO () appendToJournalFileOrStdout f s- | f == "-" = putStr s'- | otherwise = appendFile f s'- where s' = "\n" ++ ensureOneNewlineTerminated s+ | f == "-" = T.putStr s'+ | otherwise = appendFile f $ T.unpack s'+ where s' = "\n" <> ensureOneNewlineTerminated s -- | Replace a string's 0 or more terminating newlines with exactly one.-ensureOneNewlineTerminated :: String -> String-ensureOneNewlineTerminated = (++"\n") . reverse . dropWhile (=='\n') . reverse+ensureOneNewlineTerminated :: Text -> Text+ensureOneNewlineTerminated = (<>"\n") . T.dropWhileEnd (=='\n') -- | Convert a string of journal data into a register report.-registerFromString :: String -> IO String+registerFromString :: T.Text -> IO TL.Text registerFromString s = do- j <- readJournal' $ T.pack s+ j <- readJournal' s return . postingsReportAsText opts $ postingsReport rspec j where ropts = defreportopts{empty_=True}@@ -476,49 +472,3 @@ capitalize :: String -> String capitalize "" = "" capitalize (c:cs) = toUpper c : cs---- | Find the most similar and recent transactions matching the given--- transaction description and report query. Transactions are listed--- with their "relevancy" score, most relevant first.-transactionsSimilarTo :: Journal -> Query -> Text -> [(Double,Transaction)]-transactionsSimilarTo j q desc =- sortBy compareRelevanceAndRecency- $ filter ((> threshold).fst)- [(compareDescriptions desc $ tdescription t, t) | t <- ts]- where- compareRelevanceAndRecency (n1,t1) (n2,t2) = compare (n2,tdate t2) (n1,tdate t1)- ts = filter (q `matchesTransaction`) $ jtxns j- threshold = 0---- | Return a similarity measure, from 0 to 1, for two transaction--- descriptions. This is like compareStrings, but first strips out--- any numbers, to improve accuracy eg when there are bank transaction--- ids from imported data.-compareDescriptions :: Text -> Text -> Double-compareDescriptions s t = compareStrings s' t'- where s' = simplify $ T.unpack s- t' = simplify $ T.unpack t- simplify = filter (not . (`elem` ("0123456789" :: String)))---- | Return a similarity measure, from 0 to 1, for two strings. This--- was based on Simon White's string similarity algorithm--- (http://www.catalysoft.com/articles/StrikeAMatch.html), later found--- to be https://en.wikipedia.org/wiki/S%C3%B8rensen%E2%80%93Dice_coefficient,--- modified to handle short strings better.--- Todo: check out http://nlp.fi.muni.cz/raslan/2008/raslan08.pdf#page=14 .-compareStrings :: String -> String -> Double-compareStrings "" "" = 1-compareStrings [_] "" = 0-compareStrings "" [_] = 0-compareStrings [a] [b] = if toUpper a == toUpper b then 1 else 0-compareStrings s1 s2 = 2 * commonpairs / totalpairs- where- pairs1 = S.fromList $ wordLetterPairs $ uppercase s1- pairs2 = S.fromList $ wordLetterPairs $ uppercase s2- commonpairs = fromIntegral $ S.size $ S.intersection pairs1 pairs2- totalpairs = fromIntegral $ S.size pairs1 + S.size pairs2--wordLetterPairs = concatMap letterPairs . words--letterPairs (a:b:rest) = [a,b] : letterPairs (b:rest)-letterPairs _ = []
Hledger/Cli/Commands/Aregister.hs view
@@ -19,18 +19,14 @@ ,tests_Aregister ) where -import Data.Aeson (toJSON)-import Data.Aeson.Text (encodeToLazyText)-import Data.List-import Data.Maybe-#if !(MIN_VERSION_base(4,11,0))-import Data.Semigroup ((<>))-#endif+import Data.List (intersperse)+import Data.Maybe (fromMaybe, isJust) import qualified Data.Text as T import qualified Data.Text.Lazy as TL+import qualified Data.Text.Lazy.Builder as TB import Data.Time (addDays) import Safe (headDef)-import System.Console.CmdArgs.Explicit+import System.Console.CmdArgs.Explicit (flagNone, flagReq) import Hledger.Read.CsvReader (CSV, CsvRecord, printCSV) import Hledger@@ -43,7 +39,7 @@ flagNone ["txn-dates"] (setboolopt "txn-dates") "filter strictly by transaction date, not posting date. Warning: this can show a wrong running balance." ,flagNone ["no-elide"] (setboolopt "no-elide") "don't show only 2 commodities per amount"- -- flagNone ["cumulative"] (setboolopt "change")+ -- flagNone ["cumulative"] (setboolopt "cumulative") -- "show running total from report start date (default)" -- ,flagNone ["historical","H"] (setboolopt "historical") -- "show historical running total/balance (includes postings before report start date)\n "@@ -81,8 +77,8 @@ let acct = headDef (error' $ show apat++" did not match any account") -- PARTIAL: . filterAccts $ journalAccountNames j- filterAccts = case toRegexCI apat of- Right re -> filter (regexMatch re . T.unpack)+ filterAccts = case toRegexCI $ T.pack apat of+ Right re -> filter (regexMatchText re) Left _ -> const [] -- gather report options inclusive = True -- tree_ ropts@@ -109,21 +105,21 @@ ] -- run the report -- TODO: need to also pass the queries so we can choose which date to render - move them into the report ?- (balancelabel,items) = accountTransactionsReport rspec' j reportq thisacctq+ items = accountTransactionsReport rspec' j reportq thisacctq items' = (if empty_ ropts' then id else filter (not . mixedAmountLooksZero . fifth6)) $ reverse items -- select renderer- render | fmt=="json" = (++"\n") . T.unpack . TL.toStrict . encodeToLazyText . toJSON- | fmt=="csv" = (++"\n") . printCSV . accountTransactionsReportAsCsv reportq thisacctq- | fmt=="txt" = accountTransactionsReportAsText opts reportq thisacctq- | otherwise = const $ error' $ unsupportedOutputFormatError fmt -- PARTIAL:+ render | fmt=="txt" = accountTransactionsReportAsText opts reportq thisacctq+ | fmt=="csv" = printCSV . accountTransactionsReportAsCsv reportq thisacctq+ | fmt=="json" = toJsonText+ | otherwise = error' $ unsupportedOutputFormatError fmt -- PARTIAL: where fmt = outputFormatFromOpts opts - writeOutput opts $ render (balancelabel,items')+ writeOutputLazyText opts $ render items' accountTransactionsReportAsCsv :: Query -> Query -> AccountTransactionsReport -> CSV-accountTransactionsReportAsCsv reportq thisacctq (_,is) =+accountTransactionsReportAsCsv reportq thisacctq is = ["txnidx","date","code","description","otheraccounts","change","balance"] : map (accountTransactionsReportItemAsCsvRecord reportq thisacctq) is @@ -131,34 +127,32 @@ accountTransactionsReportItemAsCsvRecord reportq thisacctq (t@Transaction{tindex,tcode,tdescription}, _, _issplit, otheracctsstr, change, balance)- = [idx,date,code,desc,otheracctsstr,amt,bal]+ = [idx,date,tcode,tdescription,otheracctsstr,amt,bal] where- idx = show tindex+ idx = T.pack $ show tindex date = showDate $ transactionRegisterDate reportq thisacctq t- code = T.unpack tcode- desc = T.unpack tdescription- amt = showMixedAmountOneLineWithoutPrice False change- bal = showMixedAmountOneLineWithoutPrice False balance+ amt = wbToText $ showMixedAmountB oneLine change+ bal = wbToText $ showMixedAmountB oneLine balance -- | Render a register report as plain text suitable for console output.-accountTransactionsReportAsText :: CliOpts -> Query -> Query -> AccountTransactionsReport -> String-accountTransactionsReportAsText- copts@CliOpts{reportspec_=ReportSpec{rsOpts=ReportOpts{no_elide_}}} reportq thisacctq (_balancelabel,items)- = unlines $ title :+accountTransactionsReportAsText :: CliOpts -> Query -> Query -> AccountTransactionsReport -> TL.Text+accountTransactionsReportAsText copts reportq thisacctq items+ = TB.toLazyText . unlinesB $+ title : map (accountTransactionsReportItemAsText copts reportq thisacctq amtwidth balwidth) items where- amtwidth = maximumStrict $ 12 : map (snd . showamt . itemamt) items- balwidth = maximumStrict $ 12 : map (snd . showamt . itembal) items- showamt = showMixedOneLine showAmountWithoutPrice (Just 12) mmax False -- color_- where mmax = if no_elide_ then Nothing else Just 32+ amtwidth = maximumStrict $ 12 : map (wbWidth . showamt . itemamt) items+ balwidth = maximumStrict $ 12 : map (wbWidth . showamt . itembal) items+ showamt = showMixedAmountB oneLine{displayMinWidth=Just 12, displayMaxWidth=mmax} -- color_+ where mmax = if no_elide_ . rsOpts . reportspec_ $ copts then Nothing else Just 32 itemamt (_,_,_,_,a,_) = a itembal (_,_,_,_,_,a) = a -- show a title indicating which account was picked, which can be confusing otherwise- title = T.unpack $ maybe "" (("Transactions in "<>).(<>" and subaccounts:")) macct+ title = maybe mempty (\s -> foldMap TB.fromText ["Transactions in ", s, " and subaccounts:"]) macct where -- XXX temporary hack ? recover the account name from the query macct = case filterQuery queryIsAcct thisacctq of- Acct r -> Just . T.drop 1 . T.dropEnd 5 . T.pack $ reString r -- Acct "^JS:expenses(:|$)"+ Acct r -> Just . T.drop 1 . T.dropEnd 5 $ reString r -- Acct "^JS:expenses(:|$)" _ -> Nothing -- shouldn't happen -- | Render one account register report line item as plain text. Layout is like so:@@ -173,72 +167,64 @@ -- Returns a string which can be multi-line, eg if the running balance -- has multiple commodities. ---accountTransactionsReportItemAsText :: CliOpts -> Query -> Query -> Int -> Int -> AccountTransactionsReportItem -> String+accountTransactionsReportItemAsText :: CliOpts -> Query -> Query -> Int -> Int -> AccountTransactionsReportItem -> TB.Builder accountTransactionsReportItemAsText copts@CliOpts{reportspec_=ReportSpec{rsOpts=ReportOpts{color_}}} reportq thisacctq preferredamtwidth preferredbalwidth- (t@Transaction{tdescription}, _, _issplit, otheracctsstr, change, balance)+ (t@Transaction{tdescription}, _, _issplit, otheracctsstr, change, balance) = -- Transaction -- the transaction, unmodified -- Transaction -- the transaction, as seen from the current account -- Bool -- is this a split (more than one posting to other accounts) ? -- String -- a display string describing the other account(s), if any -- MixedAmount -- the amount posted to the current account(s) (or total amount posted) -- MixedAmount -- the register's running total or the current account(s)'s historical balance, after this transaction-- = intercalate "\n" $- concat [fitString (Just datewidth) (Just datewidth) True True date- ," "- ,fitString (Just descwidth) (Just descwidth) True True desc- ," "- ,fitString (Just acctwidth) (Just acctwidth) True True accts- ," "- ,amtfirstline- ," "- ,balfirstline- ]- :- [concat [spacer- ,a- ," "- ,b- ]- | (a,b) <- zip amtrest balrest- ]- where- -- calculate widths- (totalwidth,mdescwidth) = registerWidthsFromOpts copts- (datewidth, date) = (10, showDate $ transactionRegisterDate reportq thisacctq t)- (amtwidth, balwidth)- | shortfall <= 0 = (preferredamtwidth, preferredbalwidth)- | otherwise = (adjustedamtwidth, adjustedbalwidth)- where- mincolwidth = 2 -- columns always show at least an ellipsis- maxamtswidth = max 0 (totalwidth - (datewidth + 1 + mincolwidth + 2 + mincolwidth + 2 + 2))- shortfall = (preferredamtwidth + preferredbalwidth) - maxamtswidth- amtwidthproportion = fromIntegral preferredamtwidth / fromIntegral (preferredamtwidth + preferredbalwidth)- adjustedamtwidth = round $ amtwidthproportion * fromIntegral maxamtswidth- adjustedbalwidth = maxamtswidth - adjustedamtwidth+ foldMap TB.fromText . concat . intersperse (["\n"]) $+ [ fitText (Just datewidth) (Just datewidth) True True date+ , " "+ , fitText (Just descwidth) (Just descwidth) True True tdescription+ , " "+ , fitText (Just acctwidth) (Just acctwidth) True True accts+ , " "+ , amtfirstline+ , " "+ , balfirstline+ ]+ :+ [ [ spacer, a, " ", b ] | (a,b) <- zip amtrest balrest ]+ where+ -- calculate widths+ (totalwidth,mdescwidth) = registerWidthsFromOpts copts+ (datewidth, date) = (10, showDate $ transactionRegisterDate reportq thisacctq t)+ (amtwidth, balwidth)+ | shortfall <= 0 = (preferredamtwidth, preferredbalwidth)+ | otherwise = (adjustedamtwidth, adjustedbalwidth)+ where+ mincolwidth = 2 -- columns always show at least an ellipsis+ maxamtswidth = max 0 (totalwidth - (datewidth + 1 + mincolwidth + 2 + mincolwidth + 2 + 2))+ shortfall = (preferredamtwidth + preferredbalwidth) - maxamtswidth+ amtwidthproportion = fromIntegral preferredamtwidth / fromIntegral (preferredamtwidth + preferredbalwidth)+ adjustedamtwidth = round $ amtwidthproportion * fromIntegral maxamtswidth+ adjustedbalwidth = maxamtswidth - adjustedamtwidth - remaining = totalwidth - (datewidth + 1 + 2 + amtwidth + 2 + balwidth)- (descwidth, acctwidth) = (w, remaining - 2 - w)- where- w = fromMaybe ((remaining - 2) `div` 2) mdescwidth+ remaining = totalwidth - (datewidth + 1 + 2 + amtwidth + 2 + balwidth)+ (descwidth, acctwidth) = (w, remaining - 2 - w)+ where w = fromMaybe ((remaining - 2) `div` 2) mdescwidth - -- gather content- desc = T.unpack tdescription- accts = -- T.unpack $ elideAccountName acctwidth $ T.pack- otheracctsstr- amt = fst $ showMixed showAmountWithoutPrice (Just amtwidth) (Just balwidth) color_ change- bal = fst $ showMixed showAmountWithoutPrice (Just balwidth) (Just balwidth) color_ balance- -- alternate behaviour, show null amounts as 0 instead of blank- -- amt = if null amt' then "0" else amt'- -- bal = if null bal' then "0" else bal'- (amtlines, ballines) = (lines amt, lines bal)- (amtlen, ballen) = (length amtlines, length ballines)- numlines = max 1 (max amtlen ballen)- (amtfirstline:amtrest) = take numlines $ amtlines ++ repeat (replicate amtwidth ' ') -- posting amount is top-aligned- (balfirstline:balrest) = take numlines $ replicate (numlines - ballen) (replicate balwidth ' ') ++ ballines -- balance amount is bottom-aligned- spacer = replicate (totalwidth - (amtwidth + 2 + balwidth)) ' '+ -- gather content+ accts = -- T.unpack $ elideAccountName acctwidth $ T.pack+ otheracctsstr+ amt = TL.toStrict . TB.toLazyText . wbBuilder $ showamt amtwidth change+ bal = TL.toStrict . TB.toLazyText . wbBuilder $ showamt balwidth balance+ showamt w = showMixedAmountB noPrice{displayColour=color_, displayMinWidth=Just w, displayMaxWidth=Just w}+ -- alternate behaviour, show null amounts as 0 instead of blank+ -- amt = if null amt' then "0" else amt'+ -- bal = if null bal' then "0" else bal'+ (amtlines, ballines) = (T.lines amt, T.lines bal)+ (amtlen, ballen) = (length amtlines, length ballines)+ numlines = max 1 (max amtlen ballen)+ (amtfirstline:amtrest) = take numlines $ amtlines ++ repeat "" -- posting amount is top-aligned+ (balfirstline:balrest) = take numlines $ replicate (numlines - ballen) "" ++ ballines -- balance amount is bottom-aligned+ spacer = T.replicate (totalwidth - (amtwidth + 2 + balwidth)) " " -- tests
Hledger/Cli/Commands/Balance.hs view
@@ -122,11 +122,12 @@ hledger's balance command will show multiple columns when a reporting interval is specified (eg with @--monthly@), one column for each sub-period. -There are three kinds of multi-column balance report, indicated by the heading:+There are three accumulation strategies for multi-column balance report, indicated by+the heading: -* A \"period balance\" (or \"flow\") report (the default) shows the change of account- balance in each period, which is equivalent to the sum of postings in each- period. Here, checking's balance increased by 10 in Feb:+* A \"period balance\" (or \"flow\") report (with @--change@, the default) shows the+ change of account balance in each period, which is equivalent to the sum of postings+ in each period. Here, checking's balance increased by 10 in Feb: > Change of balance (flow): >@@ -176,7 +177,7 @@ * single-column: accounts with non-zero balance in report period. (With @--flat@: accounts with non-zero balance and postings.) -* periodic: accounts with postings and non-zero period balance in any period+* change: accounts with postings and non-zero period balance in any period * cumulative: accounts with non-zero cumulative balance in any period @@ -186,7 +187,7 @@ * single-column: accounts with postings in report period -* periodic: accounts with postings in report period+* change: accounts with postings in report period * cumulative: accounts with postings in report period @@ -204,7 +205,7 @@ * single-column: N/A -* periodic: all periods within the overall report period,+* change: all periods within the overall report period, except for leading and trailing empty periods * cumulative: all periods within the overall report period,@@ -217,7 +218,7 @@ * single-column: N/A -* periodic: all periods within the overall report period+* change: all periods within the overall report period * cumulative: all periods within the overall report period @@ -255,7 +256,7 @@ ) where import Data.Default (def)-import Data.List (intercalate, transpose)+import Data.List (intersperse, transpose) import Data.Maybe (fromMaybe, maybeToList) --import qualified Data.Map as Map #if !(MIN_VERSION_base(4,11,0))@@ -263,11 +264,12 @@ #endif import qualified Data.Text as T import qualified Data.Text.Lazy as TL+import qualified Data.Text.Lazy.Builder as TB import Data.Time (fromGregorian) import System.Console.CmdArgs.Explicit as C import Lucid as L-import Text.Tabular as T-import Text.Tabular.AsciiWide as T+import Text.Tabular as Tab+import Text.Tabular.AsciiWide as Tab import Hledger import Hledger.Cli.CliOptions@@ -278,12 +280,19 @@ -- | Command line options for this command. balancemode = hledgerCommandMode $(embedFileRelative "Hledger/Cli/Commands/Balance.txt")- ([flagNone ["change"] (setboolopt "change")- "show balance change in each period (default)"+ ([flagNone ["sum"] (setboolopt "sum")+ "show sum of posting amounts (default)"+ ,flagNone ["budget"] (setboolopt "budget")+ "show sum of posting amounts compared to budget goals defined by periodic transactions\n "+ ,flagNone ["valuechange"] (setboolopt "valuechange")+ "show change of value of period-end historical balances"++ ,flagNone ["change"] (setboolopt "change")+ "accumulate amounts from column start to column end (in multicolumn reports, default)" ,flagNone ["cumulative"] (setboolopt "cumulative")- "show balance change accumulated across periods (in multicolumn reports)"+ "accumulate amounts from report start (specified by e.g. -b/--begin) to column end" ,flagNone ["historical","H"] (setboolopt "historical")- "show historical ending balance in each period (includes postings before report start date)\n "+ "accumulate amounts from journal start to column end (includes postings before report start date)\n " ] ++ flattreeflags True ++ [flagReq ["drop"] (\s opts -> Right $ setopt "drop" s opts) "N" "omit N leading account name parts (in flat mode)"@@ -297,7 +306,6 @@ ,flagNone ["percent", "%"] (setboolopt "percent") "express values in percentage of each column's total" ,flagNone ["invert"] (setboolopt "invert") "display all amounts with reversed sign" ,flagNone ["transpose"] (setboolopt "transpose") "transpose rows and columns"- ,flagNone ["budget"] (setboolopt "budget") "show performance compared to budget goals defined by periodic transactions" ,outputFormatFlag ["txt","html","csv","json"] ,outputFileFlag ]@@ -308,44 +316,68 @@ -- | The balance command, prints a balance report. balance :: CliOpts -> Journal -> IO ()-balance opts@CliOpts{rawopts_=rawopts,reportspec_=rspec} j = do- let ropts@ReportOpts{..} = rsOpts rspec- budget = boolopt "budget" rawopts- multiperiod = interval_ /= NoInterval- fmt = outputFormatFromOpts opts-- if budget then do -- single or multi period budget report+balance opts@CliOpts{reportspec_=rspec} j = case reporttype_ of+ BudgetReport -> do -- single or multi period budget report let reportspan = reportSpan j rspec budgetreport = budgetReport rspec assrt reportspan j where assrt = not $ ignore_assertions_ $ inputopts_ opts render = case fmt of "txt" -> budgetReportAsText ropts- "json" -> (++"\n") . TL.unpack . toJsonText- "csv" -> (++"\n") . printCSV . budgetReportAsCsv ropts- _ -> const $ error' $ unsupportedOutputFormatError fmt- writeOutput opts $ render budgetreport+ "json" -> (<>"\n") . toJsonText+ "csv" -> printCSV . budgetReportAsCsv ropts+ _ -> error' $ unsupportedOutputFormatError fmt+ writeOutputLazyText opts $ render budgetreport - else- if multiperiod then do -- multi period balance report+ _ | multiperiod -> do -- multi period balance report let report = multiBalanceReport rspec j render = case fmt of "txt" -> multiBalanceReportAsText ropts- "csv" -> (++"\n") . printCSV . multiBalanceReportAsCsv ropts- "html" -> (++"\n") . TL.unpack . L.renderText . multiBalanceReportAsHtml ropts- "json" -> (++"\n") . TL.unpack . toJsonText+ "csv" -> printCSV . multiBalanceReportAsCsv ropts+ "html" -> (<>"\n") . L.renderText . multiBalanceReportAsHtml ropts+ "json" -> (<>"\n") . toJsonText _ -> const $ error' $ unsupportedOutputFormatError fmt -- PARTIAL:- writeOutput opts $ render report+ writeOutputLazyText opts $ render report - else do -- single period simple balance report+ _ -> do -- single period simple balance report let report = balanceReport rspec j -- simple Ledger-style balance report render = case fmt of- "txt" -> balanceReportAsText- "csv" -> \ropts r -> (++ "\n") $ printCSV $ balanceReportAsCsv ropts r- "json" -> const $ (++"\n") . TL.unpack . toJsonText- _ -> const $ error' $ unsupportedOutputFormatError fmt -- PARTIAL:- writeOutput opts $ render ropts report+ "txt" -> \ropts -> TB.toLazyText . balanceReportAsText ropts+ "csv" -> \ropts -> printCSV . balanceReportAsCsv ropts+ -- "html" -> \ropts -> (<>"\n") . L.renderText . multiBalanceReportAsHtml ropts . balanceReportAsMultiBalanceReport ropts+ "json" -> const $ (<>"\n") . toJsonText+ _ -> error' $ unsupportedOutputFormatError fmt -- PARTIAL:+ writeOutputLazyText opts $ render ropts report+ where+ ropts@ReportOpts{..} = rsOpts rspec+ multiperiod = interval_ /= NoInterval+ fmt = outputFormatFromOpts opts +-- XXX this allows rough HTML rendering of a flat BalanceReport, but it can't handle tree mode etc.+-- -- | Convert a BalanceReport to a MultiBalanceReport.+-- balanceReportAsMultiBalanceReport :: ReportOpts -> BalanceReport -> MultiBalanceReport +-- balanceReportAsMultiBalanceReport _ropts (britems, brtotal) = +-- let+-- mbrrows = +-- [PeriodicReportRow{+-- prrName = flatDisplayName brfullname+-- , prrAmounts = [bramt]+-- , prrTotal = bramt+-- , prrAverage = bramt+-- }+-- | (brfullname, _, _, bramt) <- britems+-- ]+-- in+-- PeriodicReport{+-- prDates = [nulldatespan]+-- , prRows = mbrrows+-- , prTotals = PeriodicReportRow{+-- prrName=()+-- ,prrAmounts=[brtotal]+-- ,prrTotal=brtotal+-- ,prrAverage=brtotal+-- }+-- } -- XXX should all the per-report, per-format rendering code live in the command module, -- like the below, or in the report module, like budgetReportAsText/budgetReportAsCsv ?@@ -356,25 +388,29 @@ balanceReportAsCsv :: ReportOpts -> BalanceReport -> CSV balanceReportAsCsv opts (items, total) = ["account","balance"] :- [[T.unpack $ accountNameDrop (drop_ opts) a, showMixedAmountOneLineWithoutPrice False b] | (a, _, _, b) <- items]+ [[accountNameDrop (drop_ opts) a, wbToText $ showMixedAmountB oneLine b] | (a, _, _, b) <- items] ++ if no_total_ opts then []- else [["total", showMixedAmountOneLineWithoutPrice False total]]+ else [["total", wbToText $ showMixedAmountB oneLine total]] -- | Render a single-column balance report as plain text.-balanceReportAsText :: ReportOpts -> BalanceReport -> String-balanceReportAsText opts ((items, total)) = unlines $- concat lines ++ if no_total_ opts then [] else overline : totallines+balanceReportAsText :: ReportOpts -> BalanceReport -> TB.Builder+balanceReportAsText opts ((items, total)) =+ unlinesB lines+ <> unlinesB (if no_total_ opts then [] else [overline, totalLines]) where- lines = map (balanceReportItemAsText opts) items+ (lines, sizes) = unzip $ map (balanceReportItemAsText opts) items -- abuse renderBalanceReportItem to render the total with similar format- acctcolwidth = maximum' [T.length fullname | (fullname, _, _, _) <- items]- totallines = map rstrip $ renderBalanceReportItem opts (T.replicate (acctcolwidth+1) " ", 0, total)+ (totalLines, _) = renderBalanceReportItem opts ("",0,total) -- with a custom format, extend the line to the full report width; -- otherwise show the usual 20-char line for compatibility- overlinewidth = fromMaybe (maximum' . map length $ concat lines) . overlineWidth $ format_ opts- overline = replicate overlinewidth '-'+ overlinewidth = case format_ opts of+ OneLine ((FormatField _ _ _ TotalField):_) -> 20+ TopAligned ((FormatField _ _ _ TotalField):_) -> 20+ BottomAligned ((FormatField _ _ _ TotalField):_) -> 20+ _ -> sum (map maximum' $ transpose sizes)+ overline = TB.fromText $ T.replicate overlinewidth "-" {- :r@@ -391,7 +427,7 @@ -- whatever string format is specified). Note, prices will not be rendered, and -- differently-priced quantities of the same commodity will appear merged. -- The output will be one or more lines depending on the format and number of commodities.-balanceReportItemAsText :: ReportOpts -> BalanceReportItem -> [String]+balanceReportItemAsText :: ReportOpts -> BalanceReportItem -> (TB.Builder, [Int]) balanceReportItemAsText opts (_, accountName, depth, amt) = renderBalanceReportItem opts ( accountName,@@ -400,42 +436,37 @@ ) -- | Render a balance report item using the given StringFormat, generating one or more lines of text.-renderBalanceReportItem :: ReportOpts -> (AccountName, Int, MixedAmount) -> [String]+renderBalanceReportItem :: ReportOpts -> (AccountName, Int, MixedAmount) -> (TB.Builder, [Int]) renderBalanceReportItem opts (acctname, depth, total) =- lines $ case format_ opts of- OneLine _ comps -> concatOneLine $ render1 comps- TopAligned _ comps -> concatBottomPadded $ render comps- BottomAligned _ comps -> concatTopPadded $ render comps+ case format_ opts of+ OneLine comps -> renderRow' $ render True True comps+ TopAligned comps -> renderRow' $ render True False comps+ BottomAligned comps -> renderRow' $ render False False comps where- render1 = map (renderComponent1 opts (acctname, depth, total))- render = map (renderComponent opts (acctname, depth, total))+ renderRow' is = ( renderRowB def{tableBorders=False, borderSpaces=False}+ . Tab.Group NoLine $ map Header is+ , map cellWidth is ) --- | Render one StringFormat component for a balance report item.-renderComponent :: ReportOpts -> (AccountName, Int, MixedAmount) -> StringFormatComponent -> String-renderComponent _ _ (FormatLiteral s) = s-renderComponent opts (acctname, depth, total) (FormatField ljust min max field) = case field of- DepthSpacerField -> formatString ljust Nothing max $ replicate d ' '- where d = case min of- Just m -> depth * m- Nothing -> depth- AccountField -> formatString ljust min max (T.unpack acctname)- TotalField -> fst $ showMixed showAmountWithoutPrice min max (color_ opts) total- _ -> ""+ render topaligned oneline = map (maybeConcat . renderComponent topaligned opts (acctname, depth, total))+ where maybeConcat (Cell a xs) =+ if oneline then Cell a [WideBuilder (mconcat . intersperse (TB.fromText ", ") $ map wbBuilder xs) width]+ else Cell a xs+ where width = sumStrict (map ((+2) . wbWidth) xs) -2 + -- | Render one StringFormat component for a balance report item.--- This variant is for use with OneLine string formats; it squashes--- any multi-line rendered values onto one line, comma-and-space separated,--- while still complying with the width spec.-renderComponent1 :: ReportOpts -> (AccountName, Int, MixedAmount) -> StringFormatComponent -> String-renderComponent1 _ _ (FormatLiteral s) = s-renderComponent1 opts (acctname, depth, total) (FormatField ljust min max field) = case field of- AccountField -> formatString ljust min max ((intercalate ", " . lines) (indented (T.unpack acctname)))- where- -- better to indent the account name here rather than use a DepthField component- -- so that it complies with width spec. Uses a fixed indent step size.- indented = ((replicate (depth*2) ' ')++)- TotalField -> fst $ showMixedOneLine showAmountWithoutPrice min max (color_ opts) total- _ -> ""+renderComponent :: Bool -> ReportOpts -> (AccountName, Int, MixedAmount) -> StringFormatComponent -> Cell+renderComponent _ _ _ (FormatLiteral s) = textCell TopLeft s+renderComponent topaligned opts (acctname, depth, total) (FormatField ljust mmin mmax field) = case field of+ DepthSpacerField -> Cell align [WideBuilder (TB.fromText $ T.replicate d " ") d]+ where d = maybe id min mmax $ depth * fromMaybe 1 mmin+ AccountField -> textCell align $ formatText ljust mmin mmax acctname+ TotalField -> Cell align . pure $ showamt total+ _ -> Cell align [mempty]+ where+ align = if topaligned then (if ljust then TopLeft else TopRight)+ else (if ljust then BottomLeft else BottomRight)+ showamt = showMixedAmountB noPrice{displayColour=color_ opts, displayMinWidth=mmin, displayMaxWidth=mmax} -- rendering multi-column balance reports @@ -450,8 +481,8 @@ ++ ["Total" | row_total_] ++ ["Average" | average_] ) :- [T.unpack (displayName a) :- map (showMixedAmountOneLineWithoutPrice False)+ [displayName a :+ map (wbToText . showMixedAmountB oneLine) (amts ++ [rowtot | row_total_] ++ [rowavg | average_])@@ -460,7 +491,7 @@ if no_total_ opts then [] else ["Total:" :- map (showMixedAmountOneLineWithoutPrice False) (+ map (wbToText . showMixedAmountB oneLine) ( coltotals ++ [tot | row_total_] ++ [avg | average_]@@ -496,7 +527,7 @@ ) -- | Render one MultiBalanceReport heading row as a HTML table row.-multiBalanceReportHtmlHeadRow :: ReportOpts -> [String] -> Html ()+multiBalanceReportHtmlHeadRow :: ReportOpts -> [T.Text] -> Html () multiBalanceReportHtmlHeadRow _ [] = mempty -- shouldn't happen multiBalanceReportHtmlHeadRow ropts (acct:rest) = let@@ -514,7 +545,7 @@ ++ [td_ [class_ "rowaverage", defstyle] (toHtml a) | a <- avg] -- | Render one MultiBalanceReport data row as a HTML table row.-multiBalanceReportHtmlBodyRow :: ReportOpts -> [String] -> Html ()+multiBalanceReportHtmlBodyRow :: ReportOpts -> [T.Text] -> Html () multiBalanceReportHtmlBodyRow _ [] = mempty -- shouldn't happen multiBalanceReportHtmlBodyRow ropts (label:rest) = let@@ -532,7 +563,7 @@ ++ [td_ [class_ "amount rowaverage", defstyle] (toHtml a) | a <- avg] -- | Render one MultiBalanceReport totals row as a HTML table row.-multiBalanceReportHtmlFootRow :: ReportOpts -> [String] -> Html ()+multiBalanceReportHtmlFootRow :: ReportOpts -> [T.Text] -> Html () multiBalanceReportHtmlFootRow _ropts [] = mempty -- TODO pad totals row with zeros when subreport is empty -- multiBalanceReportHtmlFootRow ropts $@@ -559,38 +590,46 @@ --thRow = tr_ . mconcat . map (th_ . toHtml) -- | Render a multi-column balance report as plain text suitable for console output.-multiBalanceReportAsText :: ReportOpts -> MultiBalanceReport -> String-multiBalanceReportAsText ropts@ReportOpts{..} r =- title ++ "\n\n" ++ (balanceReportTableAsText ropts $ balanceReportAsTable ropts r)+multiBalanceReportAsText :: ReportOpts -> MultiBalanceReport -> TL.Text+multiBalanceReportAsText ropts@ReportOpts{..} r = TB.toLazyText $+ TB.fromText title+ <> TB.fromText "\n\n"+ <> balanceReportTableAsText ropts (balanceReportAsTable ropts r) where title = mtitle <> " in " <> showDateSpan (periodicReportSpan r) <> valuationdesc <> ":" - mtitle = case balancetype_ of- PeriodChange -> "Balance changes"- CumulativeChange -> "Ending balances (cumulative)"- HistoricalBalance -> "Ending balances (historical)"- valuationdesc = case value_ of- Just (AtCost _mc) -> ", valued at cost"- Just (AtThen _mc) -> error' unsupportedValueThenError -- TODO -- ", valued at period ends" -- handled like AtEnd for now -- PARTIAL:- Just (AtEnd _mc) -> ", valued at period ends"- Just (AtNow _mc) -> ", current value"- -- XXX duplicates the above- Just (AtDefault _mc) | multiperiod -> ", valued at period ends"- Just (AtDefault _mc) -> ", current value"- Just (AtDate d _mc) -> ", valued at "++showDate d- Nothing -> ""+ mtitle = case (reporttype_, balancetype_) of+ (ValueChangeReport, PeriodChange ) -> "Period-end value changes"+ (ValueChangeReport, CumulativeChange ) -> "Cumulative period-end value changes"+ (_, PeriodChange ) -> "Balance changes"+ (_, CumulativeChange ) -> "Ending balances (cumulative)"+ (_, HistoricalBalance) -> "Ending balances (historical)"+ valuationdesc =+ (case cost_ of+ Cost -> ", converted to cost"+ NoCost -> "")+ <> (case value_ of+ Just (AtThen _mc) -> ", valued at posting date"+ Just (AtEnd _mc) | changingValuation -> ""+ Just (AtEnd _mc) -> ", valued at period ends"+ Just (AtNow _mc) -> ", current value"+ Just (AtDate d _mc) -> ", valued at " <> showDate d+ Nothing -> "") - multiperiod = interval_ /= NoInterval+ changingValuation = case (reporttype_, balancetype_) of+ (ValueChangeReport, PeriodChange) -> True+ (ValueChangeReport, CumulativeChange) -> True+ _ -> False -- | Build a 'Table' from a multi-column balance report.-balanceReportAsTable :: ReportOpts -> MultiBalanceReport -> Table String String MixedAmount+balanceReportAsTable :: ReportOpts -> MultiBalanceReport -> Table T.Text T.Text MixedAmount balanceReportAsTable opts@ReportOpts{average_, row_total_, balancetype_} (PeriodicReport spans items (PeriodicReportRow _ coltotals tot avg)) = maybetranspose $ addtotalrow $ Table- (T.Group NoLine $ map Header accts)- (T.Group NoLine $ map Header colheadings)+ (Tab.Group NoLine $ map Header accts)+ (Tab.Group NoLine $ map Header colheadings) (map rowvals items) where totalscolumn = row_total_ && balancetype_ `notElem` [CumulativeChange, HistoricalBalance]@@ -599,7 +638,7 @@ ++ ["Average" | average_] accts = map renderacct items renderacct row =- replicate ((prrDepth row - 1) * 2) ' ' ++ T.unpack (prrDisplayName row)+ T.replicate ((prrDepth row - 1) * 2) " " <> prrDisplayName row rowvals (PeriodicReportRow _ as rowtot rowavg) = as ++ [rowtot | totalscolumn] ++ [rowavg | average_]@@ -616,12 +655,12 @@ -- made using 'balanceReportAsTable'), render it in a format suitable for -- console output. Amounts with more than two commodities will be elided -- unless --no-elide is used.-balanceReportTableAsText :: ReportOpts -> Table String String MixedAmount -> String+balanceReportTableAsText :: ReportOpts -> Table T.Text T.Text MixedAmount -> TB.Builder balanceReportTableAsText ReportOpts{..} =- T.renderTable def{tableBorders=False, prettyTable=pretty_tables_}- (T.alignCell TopLeft) (T.alignCell TopRight) showamt+ Tab.renderTableB def{tableBorders=False, prettyTable=pretty_tables_}+ (Tab.textCell TopLeft) (Tab.textCell TopRight) showamt where- showamt = Cell TopRight . pure . showMixedOneLine showAmountWithoutPrice Nothing mmax color_+ showamt = Cell TopRight . pure . showMixedAmountB oneLine{displayColour=color_, displayMaxWidth=mmax} mmax = if no_elide_ then Nothing else Just 32 @@ -630,14 +669,12 @@ tests "balanceReportAsText" [ test "unicode in balance layout" $ do j <- readJournal' "2009/01/01 * медвежья шкура\n расходы:покупки 100\n актив:наличные\n"- let rspec = defreportspec- balanceReportAsText (rsOpts rspec) (balanceReport rspec{rsToday=fromGregorian 2008 11 26} j)+ let rspec = defreportspec{rsOpts=defreportopts{no_total_=True}}+ TB.toLazyText (balanceReportAsText (rsOpts rspec) (balanceReport rspec{rsToday=fromGregorian 2008 11 26} j)) @?=- unlines+ TL.unlines [" -100 актив:наличные" ," 100 расходы:покупки"- ,"--------------------"- ," 0" ] ]
Hledger/Cli/Commands/Balance.txt view
@@ -1,43 +1,80 @@-balance, bal, b+balance, bal Show accounts and their balances. _FLAGS -The balance command is hledger's most versatile command. Note, despite-the name, it is not always used for showing real-world account balances;-the more accounting-aware balancesheet and incomestatement may be more-convenient for that.+balance is one of hledger's oldest and most versatile commands, for+listing account balances, balance changes, values, value changes and+more, during one time period or many. Generally it shows a table, with+rows representing accounts, and columns representing periods. -By default, it displays all accounts, and each account's change in-balance during the entire period of the journal. Balance changes are-calculated by adding up the postings in each account. You can limit the-postings matched, by a query, to see fewer accounts, changes over a-different time period, changes from only cleared transactions, etc.+Note there are some higher-level variants of the balance command with+convenient defaults, which can be simpler to use: balancesheet,+balancesheetequity, cashflow and incomestatement. When you need more+control, then use balance. -If you include an account's complete history of postings in the report,-the balance change is equivalent to the account's current ending-balance. For a real-world account, typically you won't have all-transactions in the journal; instead you'll have all transactions after-a certain date, and an "opening balances" transaction setting the-correct starting balance on that date. Then the balance command will-show real-world account balances. In some cases the -H/--historical flag-is used to ensure this (more below).+balance features -This command also supports the output destination and output format-options The output formats supported are (in most modes): txt, csv,-html, and json.+Here's a quick overview of the balance command's features, followed by+more detailed descriptions and examples. Many of these work with the+higher-level commands as well. -The balance command can produce several styles of report:+balance can show.. -Single-period flat balance report+- accounts as a list (-l) or a tree (-t)+- optionally depth-limited (-[1-9])+- sorted by declaration order and name, or by amount -This is the default for hledger's balance command: a flat list of all-(or with a query, matched) accounts, showing full account names.-Accounts are sorted by declaration order if any, and then by account-name. Accounts which have zero balance are not shown unless -E/--empty-is used. The reported balances' total is shown as the last line, unless-disabled by -N/--no-total.+..and their.. +- balance changes (the default)+- or actual and planned balance changes (--budget)+- or value of balance changes (-V)+- or change of balance values (--valuechange)++..in..++- one time period (the whole journal period by default)+- or multiple periods (-D, -W, -M, -Q, -Y, -p INTERVAL)++..either..++- per period (the default)+- or accumulated since report start date (--cumulative)+- or accumulated since account creation (--historical/-H)++..possibly converted to..++- cost (--value=cost[,COMM]/--cost/-B)+- or market value, as of transaction dates (--value=then[,COMM])+- or at period ends (--value=end[,COMM])+- or now (--value=now)+- or at some other date (--value=YYYY-MM-DD)++..with..++- totals (-T), averages (-A), percentages (-%), inverted sign+ (--invert)+- rows and columns swapped (--transpose)+- another field used as account name (--pivot)+- custom-formatted line items (single-period reports only) (--format)++This command supports the output destination and output format options,+with output formats txt, csv, json, and (multi-period reports only:)+html. In txt output in a colour-supporting terminal, negative amounts+are shown in red.++Simple balance report++With no arguments, balance shows a list of all accounts and their change+of balance - ie, the sum of posting amounts, both inflows and outflows -+during the entire period of the journal. For real-world accounts, this+should also match their end balance at the end of the journal period+(more on this below).++Accounts are sorted by declaration order if any, and then alphabetically+by account name. For instance, using examples/sample.journal:+ $ hledger bal $1 assets:bank:saving $-2 assets:cash@@ -49,12 +86,44 @@ -------------------- 0 -Single-period tree-mode balance report+Accounts with a zero balance (and no non-zero subaccounts, in tree mode+- see below) are hidden by default. Use -E/--empty to show them+(revealing assets:bank:checking here): -With the -t/--tree flag, accounts are displayed hierarchically, showing-subaccounts as short names indented below their parent. (This is the-default style in Ledger and in older hledger versions.)+$ hledger -f examples/sample.journal bal -E+ 0 assets:bank:checking+ $1 assets:bank:saving+ $-2 assets:cash+ $1 expenses:food+ $1 expenses:supplies+ $-1 income:gifts+ $-1 income:salary+ $1 liabilities:debts+--------------------+ 0 +The total of the amounts displayed is shown as the last line, unless+-N/--no-total is used.++Filtered balance report++You can show fewer accounts, a different time period, totals from+cleared transactions only, etc. by using query arguments or options to+limit the postings being matched. Eg:++$ hledger bal --cleared assets date:200806+ $-2 assets:cash+--------------------+ $-2 ++List or tree mode++By default, or with -l/--flat, accounts are shown as a flat list with+their full names visible, as in the examples above.++With -t/--tree, the account hierarchy is shown, with subaccounts' "leaf"+names indented below their parent:+ $ hledger balance $-1 assets $1 bank:saving@@ -69,38 +138,53 @@ -------------------- 0 -For more compact output, "boring" accounts containing a single-interesting subaccount and no balance of their own (assets:bank and-liabilities here) are elided into the following line, unless --no-elide-is used. And accounts which have zero balance and no non-zero-subaccounts are omitted, unless -E/--empty is used.+Notes: -Account balances in tree mode are "inclusive" - they include the-balances of any subaccounts. Eg, the assets $-1 balance here includes-the $1 from assets:bank:saving and the $-2 from assets:cash. (And it-would include balance posted to the assets account itself, if there was-any). Note this causes some repetition, and the final total (0) is the-sum of the top-level balances, not of all the balances shown.+- "Boring" accounts are combined with their subaccount for more+ compact output, unless --no-elide is used. Boring accounts have no+ balance of their own and just one subaccount (eg assets:bank and+ liabilities above). -Each group of sibling accounts is sorted separately, by declaration-order and then by account name.+- All balances shown are "inclusive", ie including the balances from+ all subaccounts. Note this means some repetition in the output,+ which requires explanation when sharing reports with+ non-plaintextaccounting-users. A tree mode report's final total is+ the sum of the top-level balances shown, not of all the balances+ shown. -Multi-period balance report+- Each group of sibling accounts (ie, under a common parent) is sorted+ separately. -Multi-period balance reports are a very useful hledger feature,-activated if you provide one of the reporting interval flags, such as--M/--monthly. They are similar to single-period balance reports, but-they show the report as a table, with columns representing one or more-successive time periods. This is the usually the preferred style of-balance report in hledger (even for a single period).+Depth limiting -Multi-period balance reports come in several types, showing different-information:+With a depth:N query, or --depth N option, or just -N, balance reports+will show accounts only to the specified depth, hiding the deeper+subaccounts. Account balances at the depth limit always include the+balances from any hidden subaccounts (even in list mode). This can be+useful for getting an overview. Eg, limiting to depth 1: -1. A balance change report: by default, each column shows the sum of- postings in that period, ie the account's change of balance in that- period. This is useful eg for a monthly income statement:+$ hledger balance -N -1+ $-1 assets+ $2 expenses+ $-2 income+ $1 liabilities +You can also hide top-level account name parts, using --drop N. This can+be useful for hiding repetitive top-level account names:++$ hledger bal expenses --drop 1+ $1 food+ $1 supplies+--------------------+ $2 ++Multi-period balance report++With a report interval (set by the -D/--daily, -W/--weekly,+-M/--monthly, -Q/--quarterly, -Y/--yearly, or -p/--period flag), balance+shows a tabular report, with columns representing successive time+periods (and a title):+ $ hledger balance --quarterly income expenses -E Balance changes in 2008: @@ -113,225 +197,240 @@ -------------------++--------------------------------- || $-1 $1 0 0 -2. A cumulative end balance report: with --cumulative, each column- shows the end balance for that period, accumulating the changes- across periods, starting from 0 at the report start date:+Notes: - $ hledger balance --quarterly income expenses -E --cumulative- Ending balances (cumulative) in 2008:+- The report's start/end dates will be expanded, if necessary, to+ fully encompass the displayed subperiods (so that the first and last+ subperiods have the same duration as the others).+- Leading and trailing periods (columns) containing all zeroes are not+ shown, unless -E/--empty is used.+- Accounts (rows) containing all zeroes are not shown, unless+ -E/--empty is used.+- Amounts with many commodities are shown in abbreviated form, unless+ --no-elide is used. (experimental)+- Average and/or total columns can be added with the -A/--average and+ -T/--row-total flags.+- The --transpose flag can be used to exchange rows and columns.+- The --pivot FIELD option causes a different transaction field to be+ used as "account name". See PIVOTING. - || 2008/03/31 2008/06/30 2008/09/30 2008/12/31 - ===================++=================================================- expenses:food || 0 $1 $1 $1 - expenses:supplies || 0 $1 $1 $1 - income:gifts || 0 $-1 $-1 $-1 - income:salary || $-1 $-1 $-1 $-1 - -------------------++-------------------------------------------------- || $-1 0 0 0 +Multi-period reports with many periods can be too wide for easy viewing+in the terminal. Here are some ways to handle that: -3. A historical end balance report: with --historical/-H, each column- shows the actual historical end balance for that period,- accumulating the changes across periods, and including the balance- from any postings before the report start date. This is useful eg- for a multi-period balance sheet, and when you want to see balances- only after a certain date:+- Hide the totals row with -N/--no-total+- Convert to a single currency with -V+- Maximize the terminal window+- Reduce the terminal's font size+- View with a pager like less, eg:+ hledger bal -D --color=yes | less -RS+- Output as CSV and use a CSV viewer like visidata+ (hledger bal -D -O csv | vd -f csv), Emacs' csv-mode+ (M-x csv-mode, C-c C-a), or a spreadsheet+ (hledger bal -D -o a.csv && open a.csv)+- Output as HTML and view with a browser:+ hledger bal -D -o a.html && open a.html - $ hledger balance ^assets ^liabilities --quarterly --historical --begin 2008/4/1- Ending balances (historical) in 2008/04/01-2008/12/31:+Sorting by amount - || 2008/06/30 2008/09/30 2008/12/31 - ======================++=====================================- assets:bank:checking || $1 $1 0 - assets:bank:saving || $1 $1 $1 - assets:cash || $-2 $-2 $-2 - liabilities:debts || 0 0 $1 - ----------------------++-------------------------------------- || 0 0 0 +With -S/--sort-amount, accounts with the largest (most positive)+balances are shown first. Eg: hledger bal expenses -MAS shows your+biggest averaged monthly expenses first. -Note that --cumulative or --historical/-H disable --row-total/-T, since-summing end balances generally does not make sense.+Revenues and liability balances are typically negative, however, so -S+shows these in reverse order. To work around this, you can add --invert+to flip the signs. (Or, use one of the higher-level reports, which flip+the sign automatically. Eg: hledger incomestatement -MAS). -With a reporting interval (like --quarterly above), the report start/end-dates will be adjusted if necessary so that they encompass the displayed-report periods. This is so that the first and last periods will be-"full" and comparable to the others.+Percentages -The -E/--empty flag does two things in multicolumn balance reports:-first, the report will show all columns within the specified report-period (without -E, leading and trailing columns with all zeroes are not-shown). Second, all accounts which existed at the report start date will-be considered, not just the ones with activity during the report period-(use -E to include low-activity accounts which would otherwise would be-omitted).+With -%/--percent, balance reports show each account's value expressed+as a percentage of the (column) total: -The -T/--row-total flag adds an additional column showing the total for-each row.+$ hledger bal expenses -Q -%+Balance changes in 2008: -The -A/--average flag adds a column showing the average value in each-row.+ || 2008Q1 2008Q2 2008Q3 2008Q4 +===================++=================================+ expenses:food || 0 50.0 % 0 0 + expenses:supplies || 0 50.0 % 0 0 +-------------------++---------------------------------+ || 0 100.0 % 0 0 -Here's an example of all three:+Note it is not useful to calculate percentages if the amounts in a+column have mixed signs. In this case, make a separate report for each+sign, eg: -$ hledger balance -Q income expenses --tree -ETA-Balance changes in 2008:+$ hledger bal -% amt:`>0`+$ hledger bal -% amt:`<0` - || 2008q1 2008q2 2008q3 2008q4 Total Average -============++===================================================- expenses || 0 $2 0 0 $2 $1 - food || 0 $1 0 0 $1 0 - supplies || 0 $1 0 0 $1 0 - income || $-1 $-1 0 0 $-2 $-1 - gifts || 0 $-1 0 0 $-1 0 - salary || $-1 0 0 0 $-1 0 -------------++---------------------------------------------------- || $-1 $1 0 0 0 0 +Similarly, if the amounts in a column have mixed commodities, convert+them to one commodity with -B, -V, -X or --value, or make a separate+report for each commodity: -(Average is rounded to the dollar here since all journal amounts are)+$ hledger bal -% cur:\\$+$ hledger bal -% cur:€ -The --transpose flag can be used to exchange the rows and columns of a-multicolumn report.+Balance change, end balance -When showing multicommodity amounts, multicolumn balance reports will-elide any amounts which have more than two commodities, since otherwise-columns could get very wide. The --no-elide flag disables this. Hiding-totals with the -N/--no-total flag can also help reduce the width of-multicommodity reports.+It's important to be clear on the meaning of the numbers shown in+balance reports. Here is some terminology we use: -When the report is still too wide, a good workaround is to pipe it into-less -RS (-R for colour, -S to chop long lines). Eg:-hledger bal -D --color=yes | less -RS.+A balance change is the net amount added to, or removed from, an account+during some period. -Depth limiting+An end balance is the amount accumulated in an account as of some date+(and some time, but hledger doesn't store that; assume end of day in+your timezone). It is the sum of previous balance changes. -With a depth:N query, or --depth N option, or just -N, balance reports-will show accounts only to the specified depth. This is very useful to-hide low-level accounts and get an overview. Eg, limiting to depth 1-shows the top-level accounts:+We call it a historical end balance if it includes all balance changes+since the account was created. For a real world account, this means it+will match the "historical record", eg the balances reported in your+bank statements or bank web UI. (If they are correct!) -$ hledger balance -N -1- $-1 assets- $2 expenses- $-2 income- $1 liabilities+In general, balance changes are what you want to see when reviewing+revenues and expenses, and historical end balances are what you want to+see when reviewing or reconciling asset, liability and equity accounts. -Accounts at the depth limit will include the balances of any hidden-subaccounts (even in flat mode, which normally shows exclusive-balances).+balance shows balance changes by default. To see accurate historical end+balances: -You can also drop account name components from the start of account-names, using --drop N. This can be useful to hide unwanted top-level-detail.+1. Initialise account starting balances with an "opening balances"+ transaction (a transfer from equity to the account), unless the+ journal covers the account's full lifetime. -Colour support+2. Include all of of the account's prior postings in the report, by not+ specifying a report start date, or by using the -H/--historical+ flag. (-H causes report start date to be ignored when summing+ postings.) -In terminal output, when colour is enabled, the balance command shows-negative amounts in red.+Balance report types -Sorting by amount+For more flexible reporting, there are three important option groups: -With -S/--sort-amount, accounts with the largest (most positive)-balances are shown first. For example, hledger bal expenses -MAS shows-your biggest averaged monthly expenses first.+hledger balance [CALCULATIONTYPE] [ACCUMULATIONTYPE] [VALUATIONTYPE] ... -Revenues and liability balances are typically negative, however, so -S-shows these in reverse order. To work around this, you can add --invert-to flip the signs. Or, use one of the sign-flipping reports like-balancesheet or incomestatement, which also support -S. Eg:-hledger is -MAS.+The first two are the most important: calculation type selects the basic+calculation to perform for each table cell, while accumulation type says+which postings should be included in each cell's calculation. Typically+one or both of these are selected by default, so you don't need to write+them explicitly. A valuation type can be added if you want to convert+the basic report to value or cost. -Percentages+Calculation type:+The basic calculation to perform for each table cell. It is one of: -With -% or --percent, balance reports show each account's value-expressed as a percentage of the column's total. This is useful to get-an overview of the relative sizes of account balances. For example to-obtain an overview of expenses:+- --sum : sum the posting amounts (default)+- --budget : like --sum but also show a goal amount+- --valuechange : show the change in period-end historical balance+ values -$ hledger balance expenses -%- 100.0 % expenses- 50.0 % food- 50.0 % supplies---------------------- 100.0 %+Accumulation type:+Which postings should be included in each cell's calculation. It is one+of: -Note that --tree does not have an effect on -%. The percentages are-always relative to the total sum of each column, they are never relative-to the parent account.+- --change : postings from column start to column end, ie within the+ cell's period. Typically used to see revenues/expenses. (default for+ balance, incomestatement) -Since the percentages are relative to the columns sum, it is usually not-useful to calculate percentages if the signs of the amounts are mixed.-Although the results are technically correct, they are most likely-useless. Especially in a balance report that sums up to zero (eg-hledger balance -B) all percentage values will be zero.+- --cumulative : postings from report start to column end, eg to show+ changes accumulated since the report's start date. Rarely used. -This flag does not work if the report contains any mixed commodity-accounts. If there are mixed commodity accounts in the report be sure to-use -V or -B to coerce the report into using a single commodity.+- --historical/-H : postings from journal start to column end, ie all+ postings from account creation to the end of the cell's period.+ Typically used to see historical end balances of+ assets/liabilities/equity. (default for balancesheet,+ balancesheetequity, cashflow) -Customising single-period balance reports+Valuation type:+Which kind of valuation, valuation date(s) and optionally a target+valuation commodity to use. It is one of: -You can customise the layout of single-period balance reports with---format FMT, which sets the format of each line. Eg:+- no valuation, show amounts in their original commodities (default)+- --value=cost[,COMM] : no valuation, show amounts converted to cost+- --value=then[,COMM] : show value at transaction dates+- --value=end[,COMM] : show value at period end date(s) (default with+ --valuechange)+- --value=now[,COMM] : show value at today's date+- --value=YYYY-MM-DD[,COMM] : show value at another date -$ hledger balance --format "%20(account) %12(total)"- assets $-1- bank:saving $1- cash $-2- expenses $2- food $1- supplies $1- income $-2- gifts $-1- salary $-1- liabilities:debts $1----------------------------------- 0+or one of their aliases: --cost/-B, --market/-V or --exchange/-X. -The FMT format string (plus a newline) specifies the formatting applied-to each account/balance pair. It may contain any suitable text, with-data fields interpolated like so:+Most combinations of these options should produce reasonable reports,+but if you find any that seem wrong or misleading, let us know. The+following restrictions are applied: -%[MIN][.MAX](FIELDNAME)+- --valuechange implies --value=end+- --valuechange makes --change the default when used with the+ balancesheet/balancesheetequity commands+- --cumulative or --historical disables --row-total/-T -- MIN pads with spaces to at least this width (optional)+For reference, here is what the combinations of accumulation and+valuation show: -- MAX truncates at this width (optional)+ ------------------------------------------------------------------------------------------------+ Valuation: no valuation --value= then --value= end --value= YYYY-MM-DD /now+ >Accumulation: v + ------------------ ---------------- ----------------- --------------- --------------------------+ --change change in period sum of period-end DATE-value of change in+ posting-date value of change period+ market values in in period + period -- FIELDNAME must be enclosed in parentheses, and can be one of:+ --cumulative change from sum of period-end DATE-value of change from+ report start to posting-date value of change report start to period end+ period end market values from report + from report start start to period + to period end end - - depth_spacer - a number of spaces equal to the account's depth,- or if MIN is specified, MIN * depth spaces.- - account - the account's name- - total - the account's balance/posted total, right justified+ --historical /-H change from sum of period-end DATE-value of change from+ journal start to posting-date value of change journal start to period+ period end market values from journal end+ (historical end from journal start to period + balance) start to period end + end + ------------------------------------------------------------------------------------------------ -Also, FMT can begin with an optional prefix to control how-multi-commodity amounts are rendered:+Useful balance reports -- %_ - render on multiple lines, bottom-aligned (the default)-- %^ - render on multiple lines, top-aligned-- %, - render on one line, comma-separated+Some frequently used balance options/reports are: -There are some quirks. Eg in one-line mode, %(depth_spacer) has no-effect, instead %(account) has indentation built in. Experimentation may-be needed to get pleasing results.+- bal -M revenues expenses+ Show revenues/expenses in each month. Also available as the+ incomestatement command. -Some example formats:+- bal -M -H assets liabilities+ Show historical asset/liability balances at each month end. Also+ available as the balancesheet command. -- %(total) - the account's total-- %-20.20(account) - the account's name, left justified, padded to 20- characters and clipped at 20 characters-- %,%-50(account) %25(total) - account name padded to 50 characters,- total padded to 20 characters, with multiple commodities rendered on- one line-- %20(total) %2(depth_spacer)%-(account) - the default format for the- single-column balance report+- bal -M -H assets liabilities equity+ Show historical asset/liability/equity balances at each month end.+ Also available as the balancesheetequity command. +- bal -M assets not:receivable+ Show changes to liquid assets in each month. Also available as the+ cashflow command.++Also:++- bal -M expenses -2 -SA+ Show monthly expenses summarised to depth 2 and sorted by average+ amount.++- bal -M --budget expenses+ Show monthly expenses and budget goals.++- bal -M --valuechange investments+ Show monthly change in market value of investment assets.++- bal investments --valuechange -D date:lastweek amt:'>1000' -STA [--invert]+ Show top gainers [or losers] last week+ Budget report -There is also a special balance report mode for showing budget-performance. The --budget flag activates extra columns showing the-budget goals for each account and period, if any. For this report,-budget goals are defined by periodic transactions. This is very useful-for comparing planned and actual income, expenses, time usage, etc.+The --budget report type activates extra columns showing any budget+goals for each account and period. The budget goals are defined by+periodic transactions. This is very useful for comparing planned and+actual income, expenses, time usage, etc. For example, you can take average monthly expenses in the common expense categories to construct a minimal monthly budget:@@ -387,11 +486,11 @@ goal amounts are shown, and the actual/goal percentage. (Note: budget goals should be in the same commodity as the actual amount.) -- All parent accounts are always shown, even in flat mode. Eg assets,+- All parent accounts are always shown, even in list mode. Eg assets, assets:bank, and expenses above. - Amounts always include all subaccounts, budgeted or unbudgeted, even- in flat mode.+ in list mode. This means that the numbers displayed will not always add up! Eg above, the expenses actual amount includes the gifts and supplies transactions,@@ -564,3 +663,62 @@ liabilities || $-283.00 [ 26% of $-1100.00] ----------------------------------------++------------------------------- || 0 [ 0] ++Customising single-period balance reports++For single-period balance reports displayed in the terminal (only), you+can use --format FMT to customise the format and content of each line.+Eg:++$ hledger balance --format "%20(account) %12(total)"+ assets $-1+ bank:saving $1+ cash $-2+ expenses $2+ food $1+ supplies $1+ income $-2+ gifts $-1+ salary $-1+ liabilities:debts $1+---------------------------------+ 0++The FMT format string (plus a newline) specifies the formatting applied+to each account/balance pair. It may contain any suitable text, with+data fields interpolated like so:++%[MIN][.MAX](FIELDNAME)++- MIN pads with spaces to at least this width (optional)++- MAX truncates at this width (optional)++- FIELDNAME must be enclosed in parentheses, and can be one of:++ - depth_spacer - a number of spaces equal to the account's depth,+ or if MIN is specified, MIN * depth spaces.+ - account - the account's name+ - total - the account's balance/posted total, right justified++Also, FMT can begin with an optional prefix to control how+multi-commodity amounts are rendered:++- %_ - render on multiple lines, bottom-aligned (the default)+- %^ - render on multiple lines, top-aligned+- %, - render on one line, comma-separated++There are some quirks. Eg in one-line mode, %(depth_spacer) has no+effect, instead %(account) has indentation built in. Experimentation may+be needed to get pleasing results.++Some example formats:++- %(total) - the account's total+- %-20.20(account) - the account's name, left justified, padded to 20+ characters and clipped at 20 characters+- %,%-50(account) %25(total) - account name padded to 50 characters,+ total padded to 20 characters, with multiple commodities rendered on+ one line+- %20(total) %2(depth_spacer)%-(account) - the default format for the+ single-column balance report
Hledger/Cli/Commands/Balancesheet.hs view
@@ -1,5 +1,6 @@-{-# LANGUAGE RecordWildCards #-}-{-# LANGUAGE TemplateHaskell #-}+{-# LANGUAGE OverloadedStrings #-}+{-# LANGUAGE RecordWildCards #-}+{-# LANGUAGE TemplateHaskell #-} {-| The @balancesheet@ command prints a simple balance sheet.
Hledger/Cli/Commands/Balancesheet.txt view
@@ -32,13 +32,10 @@ -------------------- 0 -With a reporting interval, multiple columns will be shown, one for each-report period. As with multicolumn balance reports, you can alter the-report mode with --change/--cumulative/--historical. Normally-balancesheet shows historical ending balances, which is what you need-for a balance sheet; note this means it ignores report begin dates (and--T/--row-total, since summing end balances generally does not make-sense). Instead of absolute values percentages can be displayed with -%.+This command is a higher-level variant of the balance command, and+supports many of that command's features, such as multi-period reports.+It is similar to hledger balance -H assets liabilities, but with smarter+account detection, and liabilities displayed with their sign flipped. This command also supports the output destination and output format options The output formats supported are txt, csv, html, and
Hledger/Cli/Commands/Balancesheetequity.hs view
@@ -1,5 +1,7 @@-{-# LANGUAGE QuasiQuotes, RecordWildCards #-}-{-# LANGUAGE TemplateHaskell #-}+{-# LANGUAGE OverloadedStrings #-}+{-# LANGUAGE QuasiQuotes #-}+{-# LANGUAGE RecordWildCards #-}+{-# LANGUAGE TemplateHaskell #-} {-| The @balancesheetequity@ command prints a simple balance sheet.
Hledger/Cli/Commands/Balancesheetequity.txt view
@@ -36,6 +36,12 @@ -------------------- 0 +This command is a higher-level variant of the balance command, and+supports many of that command's features, such as multi-period reports.+It is similar to hledger balance -H assets liabilities equity, but with+smarter account detection, and liabilities/equity displayed with their+sign flipped.+ This command also supports the output destination and output format options The output formats supported are txt, csv, html, and (experimental) json.
Hledger/Cli/Commands/Cashflow.hs view
@@ -1,5 +1,7 @@-{-# LANGUAGE QuasiQuotes, RecordWildCards #-}-{-# LANGUAGE TemplateHaskell #-}+{-# LANGUAGE OverloadedStrings #-}+{-# LANGUAGE QuasiQuotes #-}+{-# LANGUAGE RecordWildCards #-}+{-# LANGUAGE TemplateHaskell #-} {-| The @cashflow@ command prints a simplified cashflow statement. It just
Hledger/Cli/Commands/Cashflow.txt view
@@ -26,11 +26,11 @@ -------------------- $-1 -With a reporting interval, multiple columns will be shown, one for each-report period. Normally cashflow shows changes in assets per period,-though as with multicolumn balance reports you can alter the report mode-with --change/--cumulative/--historical. Instead of absolute values-percentages can be displayed with -%.+This command is a higher-level variant of the balance command, and+supports many of that command's features, such as multi-period reports.+It is similar to+hledger balance assets not:fixed not:investment not:receivable, but with+smarter account detection. This command also supports the output destination and output format options The output formats supported are txt, csv, html, and
Hledger/Cli/Commands/Check.hs view
@@ -11,13 +11,15 @@ import Hledger import Hledger.Cli.CliOptions-import Hledger.Cli.Commands.Checkdupes (checkdupes)-import Hledger.Cli.Commands.Checkdates (checkdates)+import Hledger.Cli.Commands.Check.Ordereddates (journalCheckOrdereddates)+import Hledger.Cli.Commands.Check.Uniqueleafnames (journalCheckUniqueleafnames) import System.Console.CmdArgs.Explicit import Data.Either (partitionEithers)-import Data.Char (toUpper)-import Safe (readMay)+import Data.Char (toLower,toUpper)+import Data.List (isPrefixOf, find) import Control.Monad (forM_)+import System.IO (stderr, hPutStrLn)+import System.Exit (exitFailure) checkmode :: Mode RawOpts checkmode = hledgerCommandMode@@ -39,23 +41,51 @@ (unknowns@(_:_), _) -> error' $ "These checks are unknown: "++unwords unknowns ([], checks) -> forM_ checks $ runCheck copts' j +-- | Regenerate this CliOpts' report specification, after updating its+-- underlying report options with the given update function.+-- This can raise an error if there is a problem eg due to missing or+-- unparseable options data. See also updateReportSpecFromOpts.+cliOptsUpdateReportSpecWith :: (ReportOpts -> ReportOpts) -> CliOpts -> CliOpts+cliOptsUpdateReportSpecWith roptsupdate copts@CliOpts{reportspec_} =+ case updateReportSpecWith roptsupdate reportspec_ of+ Left e -> error' e -- PARTIAL:+ Right rs -> copts{reportspec_=rs}+ -- | A type of error check that we can perform on the data.+-- Some of these imply other checks that are done first,+-- eg currently Parseable and Autobalanced are always done,+-- and Assertions are always done unless -I is in effect. data Check =- Ordereddates+ -- done always+ Parseable+ | Autobalanced+ -- done always unless -I is used+ | Assertions+ -- done when -s is used, or on demand by check+ | Accounts+ | Commodities+ -- done on demand by check+ | Ordereddates+ | Payees | Uniqueleafnames- deriving (Read,Show,Eq)+ deriving (Read,Show,Eq,Enum,Bounded) --- | Parse the name of an error check, or return the name unparsed.--- Names are conventionally all lower case, but this parses case insensitively.+-- | Parse the name (or a name prefix) of an error check, or return the name unparsed.+-- Check names are conventionally all lower case, but this parses case insensitively. parseCheck :: String -> Either String Check-parseCheck s = maybe (Left s) Right $ readMay $ capitalise s+parseCheck s = + maybe (Left s) (Right . read) $ -- PARTIAL: read should not fail here+ find (s' `isPrefixOf`) $ checknames+ where+ s' = capitalise $ map toLower s+ checknames = map show [minBound..maxBound::Check] capitalise :: String -> String capitalise (c:cs) = toUpper c : cs capitalise s = s -- | Parse a check argument: a string which is the lower-case name of an error check,--- followed by zero or more space-separated arguments for that check.+-- or a prefix thereof, followed by zero or more space-separated arguments for that check. parseCheckArgument :: String -> Either String (Check,[String]) parseCheckArgument s = dbg3 "check argument" $@@ -63,26 +93,29 @@ where (checkname:checkargs) = words' s +-- XXX do all of these print on stderr ? -- | Run the named error check, possibly with some arguments, -- on this journal with these options. runCheck :: CliOpts -> Journal -> (Check,[String]) -> IO ()-runCheck copts@CliOpts{rawopts_} j (check,args) = - case check of- Ordereddates -> checkdates copts' j- Uniqueleafnames -> checkdupes copts' j- where- -- Hack: append the provided args to the raw opts,- -- in case the check can use them (like checkdates --unique). +runCheck copts@CliOpts{rawopts_} j (check,args) = do+ let+ -- XXX drop this ?+ -- Hack: append the provided args to the raw opts, for checks + -- which can use them (just journalCheckOrdereddates rignt now+ -- which has some flags from the old checkdates command). -- Does not bother to regenerate the derived data (ReportOpts, ReportSpec..), -- so those may be inconsistent. copts' = copts{rawopts_=appendopts (map (,"") args) rawopts_} --- | Regenerate this CliOpts' report specification, after updating its--- underlying report options with the given update function.--- This can raise an error if there is a problem eg due to missing or--- unparseable options data. See also updateReportSpecFromOpts.-cliOptsUpdateReportSpecWith :: (ReportOpts -> ReportOpts) -> CliOpts -> CliOpts-cliOptsUpdateReportSpecWith roptsupdate copts@CliOpts{reportspec_} =- case updateReportSpecWith roptsupdate reportspec_ of- Left e -> error' e -- PARTIAL:- Right rs -> copts{reportspec_=rs}+ results = case check of+ Accounts -> journalCheckAccountsDeclared j+ Commodities -> journalCheckCommoditiesDeclared j+ Ordereddates -> journalCheckOrdereddates copts' j+ Payees -> journalCheckPayeesDeclared j+ Uniqueleafnames -> journalCheckUniqueleafnames j+ -- the other checks have been done earlier during withJournalDo+ _ -> Right ()++ case results of+ Right () -> return ()+ Left err -> hPutStrLn stderr ("Error: "++err) >> exitFailure
Hledger/Cli/Commands/Check.txt view
@@ -1,22 +1,26 @@ check-Check for various kinds of errors in your data. experimental+Check for various kinds of errors in your data. _FLAGS hledger provides a number of built-in error checks to help prevent problems in your data. Some of these are run automatically; or, you can use this check command to run them on demand, with no output and a zero-exit code if all is well. Some examples:+exit code if all is well. Specify their names (or a prefix) as+argument(s). +Some examples:+ hledger check # basic checks hledger check -s # basic + strict checks-hledger check ordereddates uniqueleafnames # basic + specified checks+hledger check ordereddates payees # basic + two other checks Here are the checks currently available: Basic checks -These are always run by this command and other commands:+These checks are always run automatically, by (almost) all hledger+commands, including check: - parseable - data files are well-formed and can be successfully parsed@@ -30,8 +34,9 @@ Strict checks -These are always run by this and other commands when -s/--strict is used-(strict mode):+These additional checks are run when the -s/--strict (strict mode) flag+is used. Or, they can be run by giving their names as arguments to+check: - accounts - all account names used by transactions have been declared @@ -39,19 +44,19 @@ Other checks -These checks can be run by specifying their names as arguments to the-check command:+These checks can be run only by giving their names as arguments to+check. They are more specialised and not desirable for everyone,+therefore optional: -- ordereddates - transactions are ordered by date (similar to the old- check-dates command)+- ordereddates - transactions are ordered by date in each file -- uniqueleafnames - all account leaf names are unique (similar to the- old check-dupes command)+- payees - all payees used by transactions have been declared -Add-on checks+- uniqueleafnames - all account leaf names are unique -Some checks are not yet integrated with this command, but are available-as add-on commands in+Custom checks++A few more checks are are available as separate add-on commands, in https://github.com/simonmichael/hledger/tree/master/bin: - hledger-check-tagfiles - all tag values containing / (a forward@@ -60,5 +65,5 @@ - hledger-check-fancyassertions - more complex balance assertions are passing -You could make your own similar scripts to perform custom checks;-Cookbook -> Scripting may be helpful.+You could make similar scripts to perform your own custom checks. See:+Cookbook -> Scripting.
+ Hledger/Cli/Commands/Check/Ordereddates.hs view
@@ -0,0 +1,66 @@+{-# LANGUAGE CPP #-}++module Hledger.Cli.Commands.Check.Ordereddates (+ journalCheckOrdereddates+)+where++#if !(MIN_VERSION_base(4,11,0))+import Data.Semigroup ((<>))+#endif+import qualified Data.Text as T+import Hledger+import Hledger.Cli.CliOptions+import Control.Monad (forM)+import Data.List (groupBy)++journalCheckOrdereddates :: CliOpts -> Journal -> Either String ()+journalCheckOrdereddates CliOpts{reportspec_=rspec} j = do+ let + ropts = (rsOpts rspec){accountlistmode_=ALFlat}+ -- check date ordering within each file, not across files+ filets = + groupBy (\t1 t2 -> transactionFile t1 == transactionFile t2) $+ filter (rsQuery rspec `matchesTransaction`) $+ jtxns $ journalSelectingAmountFromOpts ropts j+ checkunique = False -- boolopt "unique" rawopts XXX was supported by checkdates command+ compare a b = if checkunique then getdate a < getdate b else getdate a <= getdate b+ where getdate = transactionDateFn ropts+ either Left (const $ Right ()) $ + forM filets $ \ts ->+ case checkTransactions compare ts of+ FoldAcc{fa_previous=Nothing} -> Right ()+ FoldAcc{fa_error=Nothing} -> Right ()+ FoldAcc{fa_error=Just error, fa_previous=Just previous} -> do+ let+ datestr = if date2_ ropts then "2" else ""+ uniquestr = if checkunique then " and/or not unique" else ""+ positionstr = showGenericSourcePos $ tsourcepos error+ txn1str = T.unpack . linesPrepend (T.pack " ") $ showTransaction previous+ txn2str = T.unpack . linesPrepend2 (T.pack "> ") (T.pack " ") $ showTransaction error+ Left $+ "transaction date" <> datestr <> " is out of order"+ <> uniquestr <> "\nat " <> positionstr <> ":\n\n"+ <> txn1str <> txn2str++data FoldAcc a b = FoldAcc+ { fa_error :: Maybe a+ , fa_previous :: Maybe b+ }++checkTransactions :: (Transaction -> Transaction -> Bool)+ -> [Transaction] -> FoldAcc Transaction Transaction+checkTransactions compare = foldWhile f FoldAcc{fa_error=Nothing, fa_previous=Nothing}+ where+ f current acc@FoldAcc{fa_previous=Nothing} = acc{fa_previous=Just current}+ f current acc@FoldAcc{fa_previous=Just previous} =+ if compare previous current+ then acc{fa_previous=Just current}+ else acc{fa_error=Just current}++foldWhile :: (a -> FoldAcc a b -> FoldAcc a b) -> FoldAcc a b -> [a] -> FoldAcc a b+foldWhile _ acc [] = acc+foldWhile fold acc (a:as) =+ case fold a acc of+ acc@FoldAcc{fa_error=Just _} -> acc+ acc -> foldWhile fold acc as
+ Hledger/Cli/Commands/Check/Uniqueleafnames.hs view
@@ -0,0 +1,60 @@+{-# LANGUAGE CPP #-}+{-# LANGUAGE NamedFieldPuns #-}+{-# LANGUAGE OverloadedStrings #-}++module Hledger.Cli.Commands.Check.Uniqueleafnames (+ journalCheckUniqueleafnames+)+where++import Data.Function (on)+import Data.List (groupBy, sortBy)+import Data.List.Extra (nubSort)+import Data.Text (Text)+#if !(MIN_VERSION_base(4,11,0))+import Data.Semigroup ((<>))+#endif+import qualified Data.Text as T+import Hledger+import Text.Printf (printf)++-- | Check that all the journal's postings are to accounts with a unique leaf name.+-- Otherwise, return an error message for the first offending posting.+journalCheckUniqueleafnames :: Journal -> Either String ()+journalCheckUniqueleafnames j = do+ -- find all duplicate leafnames, and the full account names they appear in+ case finddupes $ journalLeafAndFullAccountNames j of+ [] -> Right ()+ dupes -> + -- report the first posting that references one of them (and its position), for now+ sequence_ $ map (checkposting dupes) $ journalPostings j++finddupes :: (Ord leaf, Eq full) => [(leaf, full)] -> [(leaf, [full])]+finddupes leafandfullnames = zip dupLeafs dupAccountNames+ where dupLeafs = map (fst . head) d+ dupAccountNames = map (map snd) d+ d = dupes' leafandfullnames+ dupes' = filter ((> 1) . length)+ . groupBy ((==) `on` fst)+ . sortBy (compare `on` fst)++journalLeafAndFullAccountNames :: Journal -> [(Text, AccountName)]+journalLeafAndFullAccountNames j = map leafAndAccountName as+ where leafAndAccountName a = (accountLeafName a, a)+ ps = journalPostings j+ as = nubSort $ map paccount ps++checkposting :: [(Text,[AccountName])] -> Posting -> Either String ()+checkposting leafandfullnames Posting{paccount,ptransaction} =+ case [lf | lf@(_,fs) <- leafandfullnames, paccount `elem` fs] of+ [] -> Right ()+ (leaf,fulls):_ -> Left $ printf+ "account leaf names are not unique\nleaf name \"%s\" appears in account names: %s%s"+ leaf+ (T.intercalate ", " $ map (("\""<>).(<>"\"")) fulls)+ (case ptransaction of+ Nothing -> ""+ Just t -> printf "\nseen in \"%s\" in transaction at: %s\n\n%s"+ paccount+ (showGenericSourcePos $ tsourcepos t)+ (linesPrepend "> " . (<>"\n") . textChomp $ showTransaction t) :: String)
− Hledger/Cli/Commands/Checkdates.hs
@@ -1,69 +0,0 @@-{-# LANGUAGE NoOverloadedStrings #-} -- prevent trouble if turned on in ghci-{-# LANGUAGE TemplateHaskell #-}--module Hledger.Cli.Commands.Checkdates (- checkdatesmode- ,checkdates-) where--import Hledger-import Hledger.Cli.CliOptions-import System.Console.CmdArgs.Explicit-import System.Exit-import Text.Printf--checkdatesmode :: Mode RawOpts-checkdatesmode = hledgerCommandMode- $(embedFileRelative "Hledger/Cli/Commands/Checkdates.txt")- [flagNone ["unique"] (setboolopt "unique") "require that dates are unique"]- [generalflagsgroup1]- hiddenflags- ([], Just $ argsFlag "[QUERY]")--checkdates :: CliOpts -> Journal -> IO ()-checkdates CliOpts{rawopts_=rawopts,reportspec_=rspec} j = do- let ropts = (rsOpts rspec){accountlistmode_=ALFlat}- let ts = filter (rsQuery rspec `matchesTransaction`) $- jtxns $ journalSelectingAmountFromOpts ropts j- -- pprint rawopts- let unique = boolopt "--unique" rawopts -- TEMP: it's this for hledger check dates- || boolopt "unique" rawopts -- and this for hledger check-dates (for some reason)- let date = transactionDateFn ropts- let compare a b =- if unique- then date a < date b- else date a <= date b- case checkTransactions compare ts of- FoldAcc{fa_previous=Nothing} -> return ()- FoldAcc{fa_error=Nothing} -> return ()- FoldAcc{fa_error=Just error, fa_previous=Just previous} -> do- putStrLn $ printf - ("Error: transaction's date is not in date order%s,\n"- ++ "at %s:\n\n%sPrevious transaction's date was: %s")- (if unique then " and/or not unique" else "")- (showGenericSourcePos $ tsourcepos error)- (showTransaction error)- (show $ date previous)- exitFailure--data FoldAcc a b = FoldAcc- { fa_error :: Maybe a- , fa_previous :: Maybe b- }--foldWhile :: (a -> FoldAcc a b -> FoldAcc a b) -> FoldAcc a b -> [a] -> FoldAcc a b-foldWhile _ acc [] = acc-foldWhile fold acc (a:as) =- case fold a acc of- acc@FoldAcc{fa_error=Just _} -> acc- acc -> foldWhile fold acc as--checkTransactions :: (Transaction -> Transaction -> Bool)- -> [Transaction] -> FoldAcc Transaction Transaction-checkTransactions compare = foldWhile f FoldAcc{fa_error=Nothing, fa_previous=Nothing}- where- f current acc@FoldAcc{fa_previous=Nothing} = acc{fa_previous=Just current}- f current acc@FoldAcc{fa_previous=Just previous} =- if compare previous current- then acc{fa_previous=Just current}- else acc{fa_error=Just current}
− Hledger/Cli/Commands/Checkdates.txt
@@ -1,7 +0,0 @@-check-dates-Check that transactions are sorted by increasing date. With --date2,-checks secondary dates instead. With --strict, dates must also be-unique. With a query, only matched transactions' dates are checked.-Reads the default journal file, or another specified with -f.--_FLAGS
− Hledger/Cli/Commands/Checkdupes.hs
@@ -1,50 +0,0 @@-{-# LANGUAGE TemplateHaskell #-}--module Hledger.Cli.Commands.Checkdupes (- checkdupesmode- ,checkdupes-)-where--import Data.Function-import Data.List-import Data.List.Extra (nubSort)-import qualified Data.Text as T-import Hledger-import Hledger.Cli.CliOptions-import System.Console.CmdArgs.Explicit-import Text.Printf-import System.Exit (exitFailure)-import Control.Monad (when)--checkdupesmode :: Mode RawOpts-checkdupesmode = hledgerCommandMode- $(embedFileRelative "Hledger/Cli/Commands/Checkdupes.txt")- []- [generalflagsgroup1]- hiddenflags- ([], Nothing)--checkdupes _opts j = do- let dupes = checkdupes' $ accountsNames j- when (not $ null dupes) $ do- mapM_ render dupes- exitFailure--accountsNames :: Journal -> [(String, AccountName)]-accountsNames j = map leafAndAccountName as- where leafAndAccountName a = (T.unpack $ accountLeafName a, a)- ps = journalPostings j- as = nubSort $ map paccount ps--checkdupes' :: (Ord k, Eq k) => [(k, v)] -> [(k, [v])]-checkdupes' l = zip dupLeafs dupAccountNames- where dupLeafs = map (fst . head) d- dupAccountNames = map (map snd) d- d = dupes' l- dupes' = filter ((> 1) . length)- . groupBy ((==) `on` fst)- . sortBy (compare `on` fst)--render :: (String, [AccountName]) -> IO ()-render (leafName, accountNameL) = printf "%s as %s\n" leafName (intercalate ", " (map T.unpack accountNameL))
− Hledger/Cli/Commands/Checkdupes.txt
@@ -1,8 +0,0 @@-check-dupes-Reports account names having the same leaf but different prefixes. In-other words, two or more leaves that are categorized differently. Reads-the default journal file, or another specified as an argument.--_FLAGS--An example: http://stefanorodighiero.net/software/hledger-dupes.html
Hledger/Cli/Commands/Close.hs view
@@ -10,9 +10,10 @@ import Control.Monad (when) import Data.Function (on) import Data.List (groupBy)-import Data.Maybe-import qualified Data.Text as T (pack)-import Data.Time.Calendar+import Data.Maybe (fromMaybe)+import qualified Data.Text as T+import qualified Data.Text.IO as T+import Data.Time.Calendar (addDays) import System.Console.CmdArgs.Explicit as C import Hledger@@ -92,7 +93,7 @@ -- since balance assertion amounts are required to be exact, the -- amounts in opening/closing transactions should be too (#941, #1137)- precise = setFullPrecision+ precise = amountSetFullPrecision -- interleave equity postings next to the corresponding closing posting, or put them all at the end ? interleaved = boolopt "interleaved" rawopts@@ -152,6 +153,5 @@ ++ [posting{paccount=openingacct, pamount=if explicit then mapMixedAmount precise (negate totalamt) else missingmixedamt} | not interleaved] -- print them- when closing $ putStr $ showTransaction closingtxn- when opening $ putStr $ showTransaction openingtxn-+ when closing . T.putStr $ showTransaction closingtxn+ when opening . T.putStr $ showTransaction openingtxn
Hledger/Cli/Commands/Diff.hs view
@@ -12,14 +12,14 @@ ,diff ) where -import Data.List-import Data.Function-import Data.Ord-import Data.Maybe-import Data.Time-import Data.Either-import qualified Data.Text as T-import System.Exit+import Data.List ((\\), groupBy, nubBy, sortBy)+import Data.Function (on)+import Data.Ord (comparing)+import Data.Maybe (fromJust)+import Data.Time (diffDays)+import Data.Either (partitionEithers)+import qualified Data.Text.IO as T+import System.Exit (exitFailure) import Hledger import Prelude hiding (putStrLn)@@ -106,7 +106,7 @@ j1 <- readJournalFile' f1 j2 <- readJournalFile' f2 - let acct = T.pack $ reString acctRe+ let acct = reString acctRe let pp1 = matchingPostings acct j1 let pp2 = matchingPostings acct j2 @@ -116,10 +116,10 @@ let unmatchedtxn2 = unmatchedtxns R pp2 m putStrLn "These transactions are in the first file only:\n"- mapM_ (putStr . showTransaction) unmatchedtxn1+ mapM_ (T.putStr . showTransaction) unmatchedtxn1 putStrLn "These transactions are in the second file only:\n"- mapM_ (putStr . showTransaction) unmatchedtxn2+ mapM_ (T.putStr . showTransaction) unmatchedtxn2 diff _ _ = do putStrLn "Please specify two input files. Usage: hledger diff -f FILE1 -f FILE2 FULLACCOUNTNAME"
Hledger/Cli/Commands/Files.hs view
@@ -4,7 +4,6 @@ -} -{-# LANGUAGE OverloadedStrings #-} {-# LANGUAGE TemplateHaskell #-} module Hledger.Cli.Commands.Files (@@ -12,8 +11,8 @@ ,files ) where -import Data.List-import Safe+import qualified Data.Text as T+import Safe (headMay) import Hledger import Prelude hiding (putStrLn)@@ -33,7 +32,7 @@ files :: CliOpts -> Journal -> IO () files CliOpts{rawopts_=rawopts} j = do let args = listofstringopt "args" rawopts- regex <- mapM (either fail pure . toRegex) $ headMay args+ regex <- mapM (either fail pure . toRegex . T.pack) $ headMay args let files = maybe id (filter . regexMatch) regex $ map fst $ jfiles j
Hledger/Cli/Commands/Help.hs view
@@ -19,10 +19,7 @@ import Prelude () import "base-compat-batteries" Prelude.Compat-import Data.Char-import Data.List import Data.Maybe-import Safe import System.Console.CmdArgs.Explicit import System.Environment import System.IO@@ -32,22 +29,22 @@ import Hledger.Data.Types import Hledger.Cli.CliOptions import Hledger.Cli.DocFiles+import Safe (headMay) --import Hledger.Utils.Debug helpmode = hledgerCommandMode $(embedFileRelative "Hledger/Cli/Commands/Help.txt")- [flagNone ["info"] (setboolopt "info") "show the manual with info"- ,flagNone ["man"] (setboolopt "man") "show the manual with man"- ,flagNone ["pager"] (setboolopt "pager") "show the manual with $PAGER or less"- ,flagNone ["cat"] (setboolopt "cat") "show the manual on stdout"+ [flagNone ["i"] (setboolopt "info") "show the manual with info"+ ,flagNone ["m"] (setboolopt "man") "show the manual with man"+ ,flagNone ["p"] (setboolopt "pager") "show the manual with $PAGER or less" ,flagNone ["help","h"] (setboolopt "help") "show this help" ] [] []- ([], Just $ argsFlag "[MANUAL]")+ ([], Just $ argsFlag "[TOPIC]") --- | List or display one of the hledger manuals in various formats.--- You can select a docs viewer with one of the `--info`, `--man`, `--pager`, `--cat` flags.+-- | Display the hledger manual in various formats.+-- You can select a docs viewer with one of the `--info`, `--man`, `--pager` flags. -- Otherwise it will use the first available of: info, man, $PAGER, less, stdout -- (and always stdout if output is non-interactive). help' :: CliOpts -> Journal -> IO ()@@ -57,26 +54,18 @@ interactive <- hIsTerminalDevice stdout let args = take 1 $ listofstringopt "args" $ rawopts_ opts- topic = case args of- [pat] -> headMay [t | t <- docTopics, map toLower pat `isInfixOf` t]- _ -> Nothing+ mtopic = headMay args [info, man, pager, cat] =- [runInfoForTopic, runManForTopic, runPagerForTopic pagerprog, printHelpForTopic]+ [runInfoForTopic, runManForTopic, runPagerForTopic, printHelpForTopic] viewer | boolopt "info" $ rawopts_ opts = info | boolopt "man" $ rawopts_ opts = man | boolopt "pager" $ rawopts_ opts = pager- | boolopt "cat" $ rawopts_ opts = cat | not interactive = cat | "info" `elem` exes = info | "man" `elem` exes = man | pagerprog `elem` exes = pager+ | "less" `elem` exes = pager | otherwise = cat- case topic of- Nothing -> putStrLn $ unlines [- "Please choose a manual by typing \"hledger help MANUAL\" (any substring is ok)."- ,"A viewer (info, man, a pager, or stdout) will be auto-selected,"- ,"or type \"hledger help -h\" to see options. Manuals available:"- ]- ++ "\n " ++ unwords docTopics- Just t -> viewer t++ viewer "hledger" mtopic
Hledger/Cli/Commands/Help.txt view
@@ -1,35 +1,16 @@ help-Show any of the hledger manuals.+Show the hledger user manual in one of several formats, optionally+positioned at a given TOPIC (if possible). TOPIC is any heading, or+heading prefix, in the manual. Some examples: commands, print, 'auto+postings', periodic. _FLAGS -The help command displays any of the main hledger manuals, in one of-several ways. Run it with no argument to list the manuals, or provide a-full or partial manual name to select one.--hledger manuals are available in several formats. hledger help will use-the first of these display methods that it finds: info, man, $PAGER,-less, stdout (or when non-interactive, just stdout). You can force a-particular viewer with the --info, --man, --pager, --cat flags.--Examples:--$ hledger help-Please choose a manual by typing "hledger help MANUAL" (a substring is ok).-Manuals: hledger hledger-ui hledger-web journal csv timeclock timedot--$ hledger help h --man--hledger(1) hledger User Manuals hledger(1)--NAME- hledger - a command-line accounting tool--SYNOPSIS- hledger [-f FILE] COMMAND [OPTIONS] [ARGS]- hledger [-f FILE] ADDONCMD -- [OPTIONS] [ARGS]- hledger+This command shows the user manual built in to this hledger version. It+can be useful if the correct version of the hledger manual, or the usual+viewing tools, are not installed on your system. -DESCRIPTION- hledger is a cross-platform program for tracking money, time, or any-...+By default it uses the best viewer it can find in $PATH, in this order:+info, man, $PAGER (unless a topic is specified), less, or stdout. When+run non-interactively, it always uses stdout. Or you can select a+particular viewer with the -i (info), -m (man), or -p (pager) flags.
Hledger/Cli/Commands/Import.hs view
@@ -9,6 +9,7 @@ import Control.Monad import Data.List+import qualified Data.Text.IO as T import Hledger import Hledger.Cli.CliOptions import Hledger.Cli.Commands.Add (journalAddTransaction)@@ -50,7 +51,7 @@ printf "; would import %d new transactions from %s:\n\n" (length newts) inputstr -- TODO how to force output here ? -- length (jtxns newj) `seq` print' opts{rawopts_=("explicit",""):rawopts} newj- mapM_ (putStr . showTransaction) newts+ mapM_ (T.putStr . showTransaction) newts newts | catchup -> do printf "marked %s as caught up, skipping %d unimported transactions\n\n" inputstr (length newts) newts -> do
Hledger/Cli/Commands/Import.txt view
@@ -6,18 +6,68 @@ _FLAGS -The input files are specified as arguments - no need to write -f before-each one. So eg to add new transactions from all CSV files to the main-journal, it's just: hledger import *.csv+Unlike other hledger commands, with import the journal file is an output+file, and will be modified, though only by appending (existing data will+not be changed). The input files are specified as arguments, so to+import one or more CSV files to your main journal, you will run+hledger import bank.csv or perhaps hledger import *.csv. -New transactions are detected in the same way as print --new: by-assuming transactions are always added to the input files in increasing-date order, and by saving .latest.FILE state files.+Note you can import from any file format, though CSV files are the most+common import source, and these docs focus on that case. -The --dry-run output is in journal format, so you can filter it, eg to-see only uncategorised transactions:+Deduplication -$ hledger import --dry ... | hledger -f- print unknown --ignore-assertions+As a convenience import does deduplication while reading transactions.+This does not mean "ignore transactions that look the same", but rather+"ignore transactions that have been seen before". This is intended for+when you are periodically importing foreign data which may contain+already-imported transactions. So eg, if every day you download bank CSV+files containing redundant data, you can safely run+hledger import bank.csv and only new transactions will be imported.+(import is idempotent.)++Since the items being read (CSV records, eg) often do not come with+unique identifiers, hledger detects new transactions by date, assuming+that:++1. new items always have the newest dates+2. item dates do not change across reads+3. and items with the same date remain in the same relative order+ across reads.++These are often true of CSV files representing transactions, or true+enough so that it works pretty well in practice. 1 is important, but+violations of 2 and 3 amongst the old transactions won't matter (and if+you import often, the new transactions will be few, so less likely to be+the ones affected).++hledger remembers the latest date processed in each input file by saving+a hidden ".latest" state file in the same directory. Eg when reading+finance/bank.csv, it will look for and update the+finance/.latest.bank.csv state file. The format is simple: one or more+lines containing the same ISO-format date (YYYY-MM-DD), meaning "I have+processed transactions up to this date, and this many of them on that+date." Normally you won't see or manipulate these state files yourself.+But if needed, you can delete them to reset the state (making all+transactions "new"), or you can construct them to "catch up" to a+certain date.++Note deduplication (and updating of state files) can also be done by+print --new, but this is less often used.++Import testing++With --dry-run, the transactions that will be imported are printed to+the terminal, without updating your journal or state files. The output+is valid journal format, like the print command, so you can re-parse it.+Eg, to see any importable transactions which CSV rules have not+categorised:++$ hledger import --dry bank.csv | hledger -f- -I print unknown++or (live updating):++$ ls bank.csv* | entr bash -c 'echo ====; hledger import --dry bank.csv | hledger -f- -I print unknown' Importing balance assignments
Hledger/Cli/Commands/Incomestatement.txt view
@@ -34,11 +34,11 @@ -------------------- 0 -With a reporting interval, multiple columns will be shown, one for each-report period. Normally incomestatement shows revenues/expenses per-period, though as with multicolumn balance reports you can alter the-report mode with --change/--cumulative/--historical. Instead of absolute-values percentages can be displayed with -%.+This command is a higher-level variant of the balance command, and+supports many of that command's features, such as multi-period reports.+It is similar to hledger balance '(revenues|income)' expenses, but with+smarter account detection, and revenues/income displayed with their sign+flipped. This command also supports the output destination and output format options The output formats supported are txt, csv, html, and
Hledger/Cli/Commands/Payees.hs view
@@ -17,6 +17,7 @@ import Data.List.Extra (nubSort) import qualified Data.Text.IO as T+import System.Console.CmdArgs.Explicit as C import Hledger import Hledger.Cli.CliOptions@@ -25,14 +26,24 @@ -- | Command line options for this command. payeesmode = hledgerCommandMode $(embedFileRelative "Hledger/Cli/Commands/Payees.txt")- []+ [flagNone ["declared"] (setboolopt "declared") "show payees declared with payee directives"+ ,flagNone ["used"] (setboolopt "used") "show payees referenced by transactions"+ ] [generalflagsgroup1] hiddenflags ([], Just $ argsFlag "[QUERY]") -- | The payees command. payees :: CliOpts -> Journal -> IO ()-payees CliOpts{reportspec_=rspec} j = do- let ts = entriesReport rspec j- payees = nubSort $ map transactionPayee ts+payees CliOpts{rawopts_=rawopts, reportspec_=ReportSpec{rsQuery=query}} j = do+ let + declared = boolopt "declared" rawopts+ used = boolopt "used" rawopts+ -- XXX matchesPayee is currently an alias for matchesDescription, not sure if it matters+ matcheddeclaredpayees = filter (matchesPayeeWIP query) $ journalPayeesDeclared j+ matchedusedpayees = map transactionPayee $ filter (matchesTransaction query) $ jtxns j+ payees = nubSort $+ if | declared && not used -> matcheddeclaredpayees+ | not declared && used -> matchedusedpayees+ | otherwise -> matcheddeclaredpayees ++ matchedusedpayees mapM_ T.putStrLn payees
Hledger/Cli/Commands/Payees.txt view
@@ -3,11 +3,15 @@ _FLAGS -This command lists the unique payee/payer names that appear in-transactions, in alphabetic order. You can add a query to select a-subset of transactions. The payee/payer is the part of the transaction-description before a | character (or if there is no |, the whole-description).+This command lists unique payee/payer names which have been declared+with payee directives (--declared), used in transaction descriptions+(--used), or both (the default).++The payee/payer is the part of the transaction description before a |+character (or if there is no |, the whole description).++You can add query arguments to select a subset of transactions. This+implies --used. Example:
Hledger/Cli/Commands/Prices.hs view
@@ -1,4 +1,5 @@-{-# LANGUAGE TemplateHaskell #-}+{-# LANGUAGE OverloadedStrings #-}+{-# LANGUAGE TemplateHaskell #-} module Hledger.Cli.Commands.Prices ( pricesmode@@ -10,6 +11,7 @@ import Data.Maybe import Data.List import qualified Data.Text as T+import qualified Data.Text.IO as T import Data.Time import Hledger import Hledger.Cli.CliOptions@@ -33,7 +35,7 @@ cprices = map (stylePriceDirectiveExceptPrecision styles) $ concatMap postingsPriceDirectivesFromCosts ps icprices = map (stylePriceDirectiveExceptPrecision styles) $ concatMap postingsPriceDirectivesFromCosts $ mapAmount invertPrice ps allprices = mprices ++ ifBoolOpt "costs" cprices ++ ifBoolOpt "inverted-costs" icprices- mapM_ (putStrLn . showPriceDirective) $+ mapM_ (T.putStrLn . showPriceDirective) $ sortOn pddate $ filter (matchesPriceDirective q) $ allprices@@ -41,8 +43,8 @@ ifBoolOpt opt | boolopt opt $ rawopts_ opts = id | otherwise = const [] -showPriceDirective :: PriceDirective -> String-showPriceDirective mp = unwords ["P", show $ pddate mp, T.unpack . quoteCommoditySymbolIfNeeded $ pdcommodity mp, showAmountWithZeroCommodity $ pdamount mp]+showPriceDirective :: PriceDirective -> T.Text+showPriceDirective mp = T.unwords ["P", T.pack . show $ pddate mp, quoteCommoditySymbolIfNeeded $ pdcommodity mp, wbToText . showAmountB noColour{displayZeroCommodity=True} $ pdamount mp] divideAmount' :: Quantity -> Amount -> Amount divideAmount' n a = a' where
Hledger/Cli/Commands/Print.hs view
@@ -4,8 +4,9 @@ -} +{-# LANGUAGE CPP #-} {-# LANGUAGE OverloadedStrings #-}-{-# LANGUAGE TemplateHaskell #-}+{-# LANGUAGE TemplateHaskell #-} module Hledger.Cli.Commands.Print ( printmode@@ -17,16 +18,20 @@ import Data.Maybe (isJust) import Data.Text (Text)-import Data.List (intercalate)+import Data.List (intersperse)+#if !(MIN_VERSION_base(4,11,0))+import Data.Semigroup ((<>))+#endif import qualified Data.Text as T+import qualified Data.Text.IO as T import qualified Data.Text.Lazy as TL+import qualified Data.Text.Lazy.Builder as TB import System.Console.CmdArgs.Explicit import Hledger.Read.CsvReader (CSV, printCSV) import Hledger import Hledger.Cli.CliOptions import Hledger.Cli.Utils-import Hledger.Cli.Commands.Add ( transactionsSimilarTo ) printmode = hledgerCommandMode@@ -48,23 +53,30 @@ -- | Print journal transactions in standard format. print' :: CliOpts -> Journal -> IO () print' opts j = do+ -- The print command should show all amounts with their original decimal places,+ -- but as part of journal reading the posting amounts have already been normalised+ -- according to commodity display styles, and currently it's not easy to avoid+ -- that. For now we try to reverse it by increasing all amounts' decimal places + -- sufficiently to show the amount exactly. The displayed amounts may have minor+ -- differences from the originals, such as trailing zeroes added.+ let j' = journalMapPostingAmounts amountSetFullPrecision j case maybestringopt "match" $ rawopts_ opts of- Nothing -> printEntries opts j- Just desc -> printMatch opts j $ T.pack desc+ Nothing -> printEntries opts j'+ Just desc -> printMatch opts j' $ T.pack $ dbg1 "finding best match for description" desc printEntries :: CliOpts -> Journal -> IO ()-printEntries opts@CliOpts{reportspec_=rspec} j = do- let fmt = outputFormatFromOpts opts- render = case fmt of- "txt" -> entriesReportAsText opts- "csv" -> (++"\n") . printCSV . entriesReportAsCsv- "json" -> (++"\n") . TL.unpack . toJsonText- "sql" -> entriesReportAsSql- _ -> const $ error' $ unsupportedOutputFormatError fmt -- PARTIAL:- writeOutput opts $ render $ entriesReport rspec j+printEntries opts@CliOpts{reportspec_=rspec} j =+ writeOutputLazyText opts . render $ entriesReport rspec j+ where+ fmt = outputFormatFromOpts opts+ render | fmt=="txt" = entriesReportAsText opts+ | fmt=="csv" = printCSV . entriesReportAsCsv+ | fmt=="json" = toJsonText+ | fmt=="sql" = entriesReportAsSql+ | otherwise = error' $ unsupportedOutputFormatError fmt -- PARTIAL: -entriesReportAsText :: CliOpts -> EntriesReport -> String-entriesReportAsText opts = concatMap (showTransaction . whichtxn)+entriesReportAsText :: CliOpts -> EntriesReport -> TL.Text+entriesReportAsText opts = TB.toLazyText . foldMap (TB.fromText . showTransaction . whichtxn) where whichtxn -- With -x, use the fully-inferred txn with all amounts & txn prices explicit.@@ -125,18 +137,17 @@ -- ] -- ] -entriesReportAsSql :: EntriesReport -> String-entriesReportAsSql txns =- "create table if not exists postings(id serial,txnidx int,date1 date,date2 date,status text,code text,description text,comment text,account text,amount numeric,commodity text,credit numeric,debit numeric,posting_status text,posting_comment text);\n"++- "insert into postings(txnidx,date1,date2,status,code,description,comment,account,amount,commodity,credit,debit,posting_status,posting_comment) values\n"++- (intercalate "," (map values csv))- ++";\n"+entriesReportAsSql :: EntriesReport -> TL.Text+entriesReportAsSql txns = TB.toLazyText $ mconcat+ [ TB.fromText "create table if not exists postings(id serial,txnidx int,date1 date,date2 date,status text,code text,description text,comment text,account text,amount numeric,commodity text,credit numeric,debit numeric,posting_status text,posting_comment text);\n"+ , TB.fromText "insert into postings(txnidx,date1,date2,status,code,description,comment,account,amount,commodity,credit,debit,posting_status,posting_comment) values\n"+ , mconcat . intersperse (TB.fromText ",") $ map values csv+ , TB.fromText ";\n"+ ] where- values vs = "(" ++ (intercalate "," $ map toSql vs) ++ ")\n"- toSql "" = "NULL"- toSql s = "'" ++ (concatMap quoteChar s) ++ "'"- quoteChar '\'' = "''"- quoteChar c = [c]+ values vs = TB.fromText "(" <> mconcat (intersperse (TB.fromText ",") $ map toSql vs) <> TB.fromText ")\n"+ toSql "" = TB.fromText "NULL"+ toSql s = TB.fromText "'" <> TB.fromText (T.replace "'" "''" s) <> TB.fromText "'" csv = concatMap transactionToCSV txns entriesReportAsCsv :: EntriesReport -> CSV@@ -148,16 +159,16 @@ -- The txnidx field (transaction index) allows postings to be grouped back into transactions. transactionToCSV :: Transaction -> CSV transactionToCSV t =- map (\p -> show idx:date:date2:status:code:description:comment:p)+ map (\p -> T.pack (show idx):date:date2:status:code:description:comment:p) (concatMap postingToCSV $ tpostings t) where idx = tindex t- description = T.unpack $ tdescription t+ description = tdescription t date = showDate (tdate t)- date2 = maybe "" showDate (tdate2 t)- status = show $ tstatus t- code = T.unpack $ tcode t- comment = chomp $ strip $ T.unpack $ tcomment t+ date2 = maybe "" showDate $ tdate2 t+ status = T.pack . show $ tstatus t+ code = tcode t+ comment = T.strip $ tcomment t postingToCSV :: Posting -> CSV postingToCSV p =@@ -165,33 +176,24 @@ -- commodity goes into separate column, so we suppress it, along with digit group -- separators and prices let a_ = a{acommodity="",astyle=(astyle a){asdigitgroups=Nothing},aprice=Nothing} in- let amount = showAmount a_ in- let commodity = T.unpack c in- let credit = if q < 0 then showAmount $ negate a_ else "" in- let debit = if q >= 0 then showAmount a_ else "" in- [account, amount, commodity, credit, debit, status, comment])+ let showamt = TL.toStrict . TB.toLazyText . wbBuilder . showAmountB noColour in+ let amount = showamt a_ in+ let credit = if q < 0 then showamt $ negate a_ else "" in+ let debit = if q >= 0 then showamt a_ else "" in+ [account, amount, c, credit, debit, status, comment]) amounts where Mixed amounts = pamount p- status = show $ pstatus p+ status = T.pack . show $ pstatus p account = showAccountName Nothing (ptype p) (paccount p)- comment = chomp $ strip $ T.unpack $ pcomment p+ comment = T.strip $ pcomment p -- --match -- | Print the transaction most closely and recently matching a description -- (and the query, if any). printMatch :: CliOpts -> Journal -> Text -> IO ()-printMatch CliOpts{reportspec_=rspec} j desc = do- case similarTransaction' j (rsQuery rspec) desc of- Nothing -> putStrLn "no matches found."- Just t -> putStr $ showTransaction t-- where- -- Identify the closest recent match for this description in past transactions.- similarTransaction' :: Journal -> Query -> Text -> Maybe Transaction- similarTransaction' j q desc- | null historymatches = Nothing- | otherwise = Just $ snd $ head historymatches- where- historymatches = transactionsSimilarTo j q desc+printMatch opts j desc = do+ case journalSimilarTransaction opts j desc of+ Nothing -> putStrLn "no matches found."+ Just t -> T.putStr $ showTransaction t
Hledger/Cli/Commands/Print.txt view
@@ -1,16 +1,26 @@-print, txns, p+print Show transaction journal entries, sorted by date. _FLAGS The print command displays full journal entries (transactions) from the-journal file in date order, tidily formatted. With --date2, transactions-are sorted by secondary date instead.+journal file, sorted by date (or with --date2, by secondary date). -print's output is always a valid hledger journal.-It preserves all transaction information, but it does not preserve-directives or inter-transaction comments+Amounts are shown mostly normalised to commodity display style, eg the+placement of commodity symbols will be consistent. All of their decimal+places are shown, as in the original journal entry (with one alteration:+in some cases trailing zeroes are added.) +Amounts are shown right-aligned within each transaction (but not across+all transactions).++Directives and inter-transaction comments are not shown, currently. This+means the print command is somewhat lossy, and if you are using it to+reformat your journal you should take care to also copy over the+directives and file-level comments.++Eg:+ $ hledger print 2008/01/01 income assets:bank:checking $1@@ -33,6 +43,20 @@ liabilities:debts $1 assets:bank:checking $-1 +print's output is usually a valid hledger journal, and you can process+it again with a second hledger command. This can be useful for certain+kinds of search, eg:++# Show running total of food expenses paid from cash.+# -f- reads from stdin. -I/--ignore-assertions is sometimes needed.+$ hledger print assets:cash | hledger -f- -I reg expenses:food++There are some situations where print's output can become unparseable:++- Valuation affects posting amounts but not balance assertion or+ balance assignment amounts, potentially causing those to fail.+- Auto postings can generate postings with too many missing amounts.+ Normally, the journal entry's explicit or implicit amount style is preserved. For example, when an amount is omitted in the journal, it will not appear in the output. Similarly, when a transaction price is@@ -55,20 +79,9 @@ is most recent. STR should contain at least two characters. If there is no similar-enough match, no transaction will be shown. -With --new, for each FILE being read, hledger reads (and writes) a-special state file (.latest.FILE in the same directory), containing the-latest transaction date(s) that were seen last time FILE was read. When-this file is found, only transactions with newer dates (and new-transactions on the latest date) are printed. This is useful for-ignoring already-seen entries in import data, such as downloaded CSV-files. Eg:--$ hledger -f bank1.csv print --new-(shows transactions added since last print --new on this file)--This assumes that transactions added to FILE always have same or-increasing dates, and that transactions on the same day do not get-reordered. See also the import command.+With --new, hledger prints only transactions it has not seen on a+previous run. This uses the same deduplication system as the import+command. (See import's docs for details.) This command also supports the output destination and output format options The output formats supported are txt, csv, and (experimental)
Hledger/Cli/Commands/Register.hs view
@@ -4,10 +4,10 @@ -} -{-# LANGUAGE CPP #-}+{-# LANGUAGE CPP #-} {-# LANGUAGE OverloadedStrings #-}-{-# LANGUAGE RecordWildCards #-}-{-# LANGUAGE TemplateHaskell #-}+{-# LANGUAGE RecordWildCards #-}+{-# LANGUAGE TemplateHaskell #-} module Hledger.Cli.Commands.Register ( registermode@@ -18,11 +18,15 @@ ,tests_Register ) where -import Data.List-import Data.Maybe+import Data.List (intersperse)+import Data.Maybe (fromMaybe, isJust)+#if !(MIN_VERSION_base(4,11,0))+import Data.Semigroup ((<>))+#endif -- import Data.Text (Text) import qualified Data.Text as T import qualified Data.Text.Lazy as TL+import qualified Data.Text.Lazy.Builder as TB import System.Console.CmdArgs.Explicit import Hledger.Read.CsvReader (CSV, CsvRecord, printCSV) @@ -32,7 +36,7 @@ registermode = hledgerCommandMode $(embedFileRelative "Hledger/Cli/Commands/Register.txt")- ([flagNone ["cumulative"] (setboolopt "change")+ ([flagNone ["cumulative"] (setboolopt "cumulative") "show running total from report start date (default)" ,flagNone ["historical","H"] (setboolopt "historical") "show historical running total/balance (includes postings before report start date)\n "@@ -58,16 +62,17 @@ -- | Print a (posting) register report. register :: CliOpts -> Journal -> IO ()-register opts@CliOpts{reportspec_=rspec} j = do- let fmt = outputFormatFromOpts opts- render | fmt=="txt" = postingsReportAsText- | fmt=="csv" = const ((++"\n") . printCSV . postingsReportAsCsv)- | fmt=="json" = const ((++"\n") . TL.unpack . toJsonText)- | otherwise = const $ error' $ unsupportedOutputFormatError fmt -- PARTIAL:- writeOutput opts . render opts $ postingsReport rspec j+register opts@CliOpts{reportspec_=rspec} j =+ writeOutputLazyText opts . render $ postingsReport rspec j+ where+ fmt = outputFormatFromOpts opts+ render | fmt=="txt" = postingsReportAsText opts+ | fmt=="csv" = printCSV . postingsReportAsCsv+ | fmt=="json" = toJsonText+ | otherwise = error' $ unsupportedOutputFormatError fmt -- PARTIAL: postingsReportAsCsv :: PostingsReport -> CSV-postingsReportAsCsv (_,is) =+postingsReportAsCsv is = ["txnidx","date","code","description","account","amount","total"] : map postingsReportItemAsCsvRecord is@@ -75,27 +80,30 @@ postingsReportItemAsCsvRecord :: PostingsReportItem -> CsvRecord postingsReportItemAsCsvRecord (_, _, _, p, b) = [idx,date,code,desc,acct,amt,bal] where- idx = show $ maybe 0 tindex $ ptransaction p+ idx = T.pack . show . maybe 0 tindex $ ptransaction p date = showDate $ postingDate p -- XXX csv should show date2 with --date2- code = maybe "" (T.unpack . tcode) $ ptransaction p- desc = T.unpack $ maybe "" tdescription $ ptransaction p- acct = bracket $ T.unpack $ paccount p+ code = maybe "" tcode $ ptransaction p+ desc = maybe "" tdescription $ ptransaction p+ acct = bracket $ paccount p where bracket = case ptype p of- BalancedVirtualPosting -> (\s -> "["++s++"]")- VirtualPosting -> (\s -> "("++s++")")+ BalancedVirtualPosting -> wrap "[" "]"+ VirtualPosting -> wrap "(" ")" _ -> id- amt = showMixedAmountOneLineWithoutPrice False $ pamount p- bal = showMixedAmountOneLineWithoutPrice False b+ amt = wbToText . showMixedAmountB oneLine $ pamount p+ bal = wbToText $ showMixedAmountB oneLine b -- | Render a register report as plain text suitable for console output.-postingsReportAsText :: CliOpts -> PostingsReport -> String-postingsReportAsText opts (_,items) = unlines $ map (postingsReportItemAsText opts amtwidth balwidth) items+postingsReportAsText :: CliOpts -> PostingsReport -> TL.Text+postingsReportAsText opts items =+ TB.toLazyText . unlinesB $+ map (postingsReportItemAsText opts amtwidth balwidth) items where- amtwidth = maximumStrict $ map (snd . showMixed showAmount (Just 12) Nothing False . itemamt) items- balwidth = maximumStrict $ map (snd . showMixed showAmount (Just 12) Nothing False . itembal) items+ amtwidth = maximumStrict $ map (wbWidth . showAmt . itemamt) items+ balwidth = maximumStrict $ map (wbWidth . showAmt . itembal) items itemamt (_,_,_,Posting{pamount=a},_) = a itembal (_,_,_,_,a) = a+ showAmt = showMixedAmountB noColour{displayMinWidth=Just 12} -- | Render one register report line item as plain text. Layout is like so: -- @@@ -119,29 +127,23 @@ -- has multiple commodities. Does not yet support formatting control -- like balance reports. ---postingsReportItemAsText :: CliOpts -> Int -> Int -> PostingsReportItem -> String+postingsReportItemAsText :: CliOpts -> Int -> Int -> PostingsReportItem -> TB.Builder postingsReportItemAsText opts preferredamtwidth preferredbalwidth (mdate, menddate, mdesc, p, b) = -- use elide*Width to be wide-char-aware -- trace (show (totalwidth, datewidth, descwidth, acctwidth, amtwidth, balwidth)) $- intercalate "\n" $- concat [fitString (Just datewidth) (Just datewidth) True True date- ," "- ,fitString (Just descwidth) (Just descwidth) True True desc- ," "- ,fitString (Just acctwidth) (Just acctwidth) True True acct- ," "- ,amtfirstline- ," "- ,balfirstline- ]+ foldMap TB.fromText . concat . intersperse (["\n"]) $+ [ fitText (Just datewidth) (Just datewidth) True True date+ , " "+ , fitText (Just descwidth) (Just descwidth) True True desc+ , " "+ , fitText (Just acctwidth) (Just acctwidth) True True acct+ , " "+ , amtfirstline+ , " "+ , balfirstline+ ] :- [concat [spacer- ,a- ," "- ,b- ]- | (a,b) <- zip amtrest balrest- ]+ [ [ spacer, a, " ", b ] | (a,b) <- zip amtrest balrest ] where -- calculate widths (totalwidth,mdescwidth) = registerWidthsFromOpts opts@@ -171,24 +173,26 @@ -- gather content desc = fromMaybe "" mdesc- acct = parenthesise $ T.unpack $ elideAccountName awidth $ paccount p+ acct = parenthesise . elideAccountName awidth $ paccount p where (parenthesise, awidth) = case ptype p of- BalancedVirtualPosting -> (\s -> "["++s++"]", acctwidth-2)- VirtualPosting -> (\s -> "("++s++")", acctwidth-2)+ BalancedVirtualPosting -> (\s -> wrap "[" "]" s, acctwidth-2)+ VirtualPosting -> (\s -> wrap "(" ")" s, acctwidth-2) _ -> (id,acctwidth)- amt = fst $ showMixed showAmountWithoutPrice (Just amtwidth) (Just amtwidth) (color_ . rsOpts $ reportspec_ opts) $ pamount p- bal = fst $ showMixed showAmountWithoutPrice (Just balwidth) (Just balwidth) (color_ . rsOpts $ reportspec_ opts) b+ wrap a b x = a <> x <> b+ amt = TL.toStrict . TB.toLazyText . wbBuilder . showamt amtwidth $ pamount p+ bal = TL.toStrict . TB.toLazyText . wbBuilder $ showamt balwidth b+ showamt w = showMixedAmountB noPrice{displayColour=color_ . rsOpts $ reportspec_ opts, displayMinWidth=Just w, displayMaxWidth=Just w} -- alternate behaviour, show null amounts as 0 instead of blank -- amt = if null amt' then "0" else amt' -- bal = if null bal' then "0" else bal'- (amtlines, ballines) = (lines amt, lines bal)+ (amtlines, ballines) = (T.lines amt, T.lines bal) (amtlen, ballen) = (length amtlines, length ballines) numlines = max 1 (max amtlen ballen)- (amtfirstline:amtrest) = take numlines $ amtlines ++ repeat (replicate amtwidth ' ') -- posting amount is top-aligned- (balfirstline:balrest) = take numlines $ replicate (numlines - ballen) (replicate balwidth ' ') ++ ballines -- balance amount is bottom-aligned- spacer = replicate (totalwidth - (amtwidth + 2 + balwidth)) ' '+ (amtfirstline:amtrest) = take numlines $ amtlines ++ repeat (T.replicate amtwidth " ") -- posting amount is top-aligned+ (balfirstline:balrest) = take numlines $ replicate (numlines - ballen) (T.replicate balwidth " ") ++ ballines -- balance amount is bottom-aligned+ spacer = T.replicate (totalwidth - (amtwidth + 2 + balwidth)) " " -- tests @@ -198,7 +202,7 @@ test "unicode in register layout" $ do j <- readJournal' "2009/01/01 * медвежья шкура\n расходы:покупки 100\n актив:наличные\n" let rspec = defreportspec- (postingsReportAsText defcliopts $ postingsReport rspec j)+ (TL.unpack . postingsReportAsText defcliopts $ postingsReport rspec j) @?= unlines ["2009-01-01 медвежья шкура расходы:покупки 100 100"
Hledger/Cli/Commands/Register.txt view
@@ -1,4 +1,4 @@-register, reg, r+register, reg Show postings and their running total. _FLAGS
Hledger/Cli/Commands/Registermatch.hs view
@@ -10,6 +10,7 @@ import Data.Char (toUpper) import Data.List import qualified Data.Text as T+import qualified Data.Text.Lazy.IO as TL import Hledger import Hledger.Cli.CliOptions import Hledger.Cli.Commands.Register@@ -25,14 +26,13 @@ registermatch opts@CliOpts{rawopts_=rawopts,reportspec_=rspec} j = case listofstringopt "args" rawopts of [desc] -> do- let (_,pris) = postingsReport rspec j- ps = [p | (_,_,_,p,_) <- pris]+ let ps = [p | (_,_,_,p,_) <- postingsReport rspec j] case similarPosting ps desc of Nothing -> putStrLn "no matches found."- Just p -> putStr $ postingsReportAsText opts ("",[pri])+ Just p -> TL.putStr $ postingsReportAsText opts [pri] where pri = (Just (postingDate p) ,Nothing- ,Just $ T.unpack (maybe "" tdescription $ ptransaction p)+ ,tdescription <$> ptransaction p ,p ,0) _ -> putStrLn "please provide one description argument."
Hledger/Cli/Commands/Rewrite.hs view
@@ -13,7 +13,9 @@ #endif import Data.Functor.Identity import Data.List (sortOn, foldl')+import Data.Text (Text) import qualified Data.Text as T+import qualified Data.Text.IO as T import Hledger import Hledger.Cli.CliOptions import Hledger.Cli.Commands.Print@@ -65,9 +67,9 @@ diffOutput :: Journal -> Journal -> IO () diffOutput j j' = do let changed = [(originalTransaction t, originalTransaction t') | (t, t') <- zip (jtxns j) (jtxns j'), t /= t']- putStr $ renderPatch $ map (uncurry $ diffTxn j) changed+ T.putStr $ renderPatch $ map (uncurry $ diffTxn j) changed -type Chunk = (GenericSourcePos, [DiffLine String])+type Chunk = (GenericSourcePos, [DiffLine Text]) -- XXX doctests, update needed: -- >>> putStr $ renderPatch [(GenericSourcePos "a" 1 1, [D.First "x", D.Second "y"])]@@ -95,17 +97,17 @@ -- @@ -5,0 +5,1 @@ -- +z -- | Render list of changed lines as a unified diff-renderPatch :: [Chunk] -> String+renderPatch :: [Chunk] -> Text renderPatch = go Nothing . sortOn fst where go _ [] = ""- go Nothing cs@((sourceFilePath -> fp, _):_) = fileHeader fp ++ go (Just (fp, 0)) cs+ go Nothing cs@((sourceFilePath -> fp, _):_) = fileHeader fp <> go (Just (fp, 0)) cs go (Just (fp, _)) cs@((sourceFilePath -> fp', _):_) | fp /= fp' = go Nothing cs- go (Just (fp, offs)) ((sourceFirstLine -> lineno, diffs):cs) = chunkHeader ++ chunk ++ go (Just (fp, offs + adds - dels)) cs+ go (Just (fp, offs)) ((sourceFirstLine -> lineno, diffs):cs) = chunkHeader <> chunk <> go (Just (fp, offs + adds - dels)) cs where- chunkHeader = printf "@@ -%d,%d +%d,%d @@\n" lineno dels (lineno+offs) adds where+ chunkHeader = T.pack $ printf "@@ -%d,%d +%d,%d @@\n" lineno dels (lineno+offs) adds where (dels, adds) = foldl' countDiff (0, 0) diffs- chunk = concatMap renderLine diffs- fileHeader fp = printf "--- %s\n+++ %s\n" fp fp+ chunk = foldMap renderLine diffs+ fileHeader fp = "--- " <> T.pack fp <> "\n+++ " <> T.pack fp <> "\n" countDiff (dels, adds) = \case Del _ -> (dels + 1, adds)@@ -113,9 +115,9 @@ Ctx _ -> (dels + 1, adds + 1) renderLine = \case- Del s -> '-' : s ++ "\n"- Add s -> '+' : s ++ "\n"- Ctx s -> ' ' : s ++ "\n"+ Del s -> "-" <> s <> "\n"+ Add s -> "+" <> s <> "\n"+ Ctx s -> " " <> s <> "\n" diffTxn :: Journal -> Transaction -> Transaction -> Chunk diffTxn j t t' =@@ -124,18 +126,18 @@ -- TODO: use range and produce two chunks: one removes part of -- original file, other adds transaction to new file with -- suffix .ledger (generated). I.e. move transaction from one file to another.- diffs :: [DiffLine String]+ diffs :: [DiffLine Text] diffs = concat . map (traverse showPostingLines . mapDiff) $ D.getDiff (tpostings t) (tpostings t') pos@(JournalSourcePos fp (line, line')) -> (pos, diffs) where -- We do diff for original lines vs generated ones. Often leads -- to big diff because of re-format effect.- diffs :: [DiffLine String]+ diffs :: [DiffLine Text] diffs = map mapDiff $ D.getDiff source changed'- source | Just contents <- lookup fp $ jfiles j = map T.unpack . drop (line-1) . take line' $ T.lines contents+ source | Just contents <- lookup fp $ jfiles j = drop (line-1) . take line' $ T.lines contents | otherwise = []- changed = lines $ showTransaction t'+ changed = T.lines $ showTransaction t' changed' | null changed = changed- | null $ last changed = init changed+ | T.null $ last changed = init changed | otherwise = changed data DiffLine a = Del a | Add a | Ctx a
Hledger/Cli/Commands/Roi.hs view
@@ -1,5 +1,7 @@-{-# LANGUAGE ParallelListComp #-}-{-# LANGUAGE TemplateHaskell #-}+{-# LANGUAGE OverloadedStrings #-}+{-# LANGUAGE ParallelListComp #-}+{-# LANGUAGE TemplateHaskell #-}+{-# LANGUAGE RecordWildCards #-} {-| The @roi@ command prints internal rate of return and time-weighted rate of return for and investment.@@ -20,6 +22,7 @@ import Numeric.RootFinding import Data.Decimal import qualified Data.Text as T+import qualified Data.Text.Lazy.IO as TL import System.Console.CmdArgs.Explicit as CmdArgs import Text.Tabular as Tbl@@ -45,20 +48,26 @@ data OneSpan = OneSpan Day -- start date, inclusive Day -- end date, exclusive- Quantity -- value of investment at the beginning of day on spanBegin_- Quantity -- value of investment at the end of day on spanEnd_- [(Day,Quantity)] -- all deposits and withdrawals (but not changes of value) in the DateSpan [spanBegin_,spanEnd_)- [(Day,Quantity)] -- all PnL changes of the value of investment in the DateSpan [spanBegin_,spanEnd_)+ MixedAmount -- value of investment at the beginning of day on spanBegin_+ MixedAmount -- value of investment at the end of day on spanEnd_+ [(Day,MixedAmount)] -- all deposits and withdrawals (but not changes of value) in the DateSpan [spanBegin_,spanEnd_)+ [(Day,MixedAmount)] -- all PnL changes of the value of investment in the DateSpan [spanBegin_,spanEnd_) deriving (Show) roi :: CliOpts -> Journal -> IO ()-roi CliOpts{rawopts_=rawopts, reportspec_=rspec} j = do+roi CliOpts{rawopts_=rawopts, reportspec_=rspec@ReportSpec{rsOpts=ReportOpts{..}}} j = do d <- getCurrentDay+ -- We may be converting posting amounts to value, per hledger_options.m4.md "Effect of --value on reports". let+ priceOracle = journalPriceOracle infer_value_ j+ styles = journalCommodityStyles j+ today = rsToday rspec+ mixedAmountValue periodlast date = mixedAmountApplyCostValuation priceOracle styles periodlast today date cost_ value_+ let ropts = rsOpts rspec showCashFlow = boolopt "cashflow" rawopts- prettyTables = pretty_tables_ ropts+ prettyTables = pretty_tables_ makeQuery flag = do q <- either usageError (return . fst) . parseQuery d . T.pack $ stringopt flag rawopts return . simplifyQuery $ And [queryFromFlags ropts{period_=PeriodAll}, q]@@ -73,10 +82,10 @@ let dates = map transactionDate2 trans in DateSpan (Just $ minimum dates) (Just $ addDays 1 $ maximum dates) - requestedSpan = periodAsDateSpan $ period_ ropts- requestedInterval = interval_ ropts+ requestedSpan = periodAsDateSpan period_+ requestedInterval = interval_ - wholeSpan = spanDefaultsFrom requestedSpan journalSpan+ wholeSpan = dbg3 "wholeSpan" $ spanDefaultsFrom requestedSpan journalSpan when (null trans) $ do putStrLn "No relevant transactions found. Check your investments query"@@ -85,58 +94,69 @@ let spans = case requestedInterval of NoInterval -> [wholeSpan] interval ->- splitSpan interval $- spanIntersect journalSpan wholeSpan+ splitSpan interval wholeSpan - tableBody <- forM spans $ \(DateSpan (Just spanBegin) (Just spanEnd)) -> do+ let priceDirectiveDates = dbg3 "priceDirectiveDates" $ map pddate $ jpricedirectives j++ tableBody <- forM spans $ \span@(DateSpan (Just spanBegin) (Just spanEnd)) -> do -- Spans are [spanBegin,spanEnd), and spanEnd is 1 day after then actual end date we are interested in let+ cashFlowApplyCostValue = map (\(d,amt) -> (d,mixedAmountValue spanEnd d amt))+ valueBefore =+ mixedAmountValue spanEnd spanBegin $ total trans (And [ investmentsQuery , Date (DateSpan Nothing (Just spanBegin))]) valueAfter =+ mixedAmountValue spanEnd spanEnd $ total trans (And [investmentsQuery , Date (DateSpan Nothing (Just spanEnd))]) + priceDates = dbg3 "priceDates" $ nub $ filter (spanContainsDate span) priceDirectiveDates cashFlow =+ ((map (\d -> (d,0)) priceDates)++) $+ cashFlowApplyCostValue $ calculateCashFlow trans (And [ Not investmentsQuery , Not pnlQuery- , Date (DateSpan (Just spanBegin) (Just spanEnd)) ] )+ , Date span ] ) + pnl =+ cashFlowApplyCostValue $ calculateCashFlow trans (And [ Not investmentsQuery , pnlQuery- , Date (DateSpan (Just spanBegin) (Just spanEnd)) ] )+ , Date span ] ) thisSpan = dbg3 "processing span" $ OneSpan spanBegin spanEnd valueBefore valueAfter cashFlow pnl irr <- internalRateOfReturn showCashFlow prettyTables thisSpan- twr <- timeWeightedReturn showCashFlow prettyTables investmentsQuery trans thisSpan+ twr <- timeWeightedReturn showCashFlow prettyTables investmentsQuery trans mixedAmountValue thisSpan let cashFlowAmt = negate $ sum $ map snd cashFlow let smallIsZero x = if abs x < 0.01 then 0.0 else x return [ showDate spanBegin , showDate (addDays (-1) spanEnd)- , show valueBefore- , show cashFlowAmt- , show valueAfter- , show (valueAfter - (valueBefore + cashFlowAmt))- , printf "%0.2f%%" $ smallIsZero irr- , printf "%0.2f%%" $ smallIsZero twr ]+ , T.pack $ showMixedAmount valueBefore+ , T.pack $ showMixedAmount cashFlowAmt+ , T.pack $ showMixedAmount valueAfter+ , T.pack $ showMixedAmount (valueAfter - (valueBefore + cashFlowAmt))+ , T.pack $ printf "%0.2f%%" $ smallIsZero irr+ , T.pack $ printf "%0.2f%%" $ smallIsZero twr ] let table = Table- (Tbl.Group NoLine (map (Header . show) (take (length tableBody) [1..])))+ (Tbl.Group NoLine (map (Header . T.pack . show) (take (length tableBody) [1..]))) (Tbl.Group DoubleLine [ Tbl.Group SingleLine [Header "Begin", Header "End"] , Tbl.Group SingleLine [Header "Value (begin)", Header "Cashflow", Header "Value (end)", Header "PnL"] , Tbl.Group SingleLine [Header "IRR", Header "TWR"]]) tableBody - putStrLn $ Ascii.render prettyTables id id id table+ TL.putStrLn $ Ascii.render prettyTables id id id table -timeWeightedReturn showCashFlow prettyTables investmentsQuery trans (OneSpan spanBegin spanEnd valueBefore valueAfter cashFlow pnl) = do- let initialUnitPrice = 100+timeWeightedReturn showCashFlow prettyTables investmentsQuery trans mixedAmountValue (OneSpan spanBegin spanEnd valueBeforeAmt valueAfter cashFlow pnl) = do+ let valueBefore = unMix valueBeforeAmt+ let initialUnitPrice = 100 :: Decimal let initialUnits = valueBefore / initialUnitPrice let changes = -- If cash flow and PnL changes happen on the same day, this@@ -157,16 +177,16 @@ tail $ scanl (\(_, _, unitPrice, unitBalance) (date, amt) ->- let valueOnDate = total trans (And [investmentsQuery, Date (DateSpan Nothing (Just date))])+ let valueOnDate = unMix $ mixedAmountValue spanEnd date $ total trans (And [investmentsQuery, Date (DateSpan Nothing (Just date))]) in case amt of Right amt -> -- we are buying or selling- let unitsBoughtOrSold = amt / unitPrice+ let unitsBoughtOrSold = unMix amt / unitPrice in (valueOnDate, unitsBoughtOrSold, unitPrice, unitBalance + unitsBoughtOrSold) Left pnl -> -- PnL change- let valueAfterDate = valueOnDate + pnl+ let valueAfterDate = valueOnDate + unMix pnl unitPrice' = valueAfterDate/unitBalance in (valueOnDate, 0, unitPrice', unitBalance)) (0, 0, initialUnitPrice, initialUnits)@@ -174,13 +194,12 @@ let finalUnitBalance = if null units then initialUnits else let (_,_,_,u) = last units in u finalUnitPrice = if finalUnitBalance == 0 then initialUnitPrice- else valueAfter / finalUnitBalance+ else (unMix valueAfter) / finalUnitBalance -- Technically, totalTWR should be (100*(finalUnitPrice - initialUnitPrice) / initialUnitPrice), but initalUnitPrice is 100, so 100/100 == 1 totalTWR = roundTo 2 $ (finalUnitPrice - initialUnitPrice) years = fromIntegral (diffDays spanEnd spanBegin) / 365 :: Double annualizedTWR = 100*((1+(realToFrac totalTWR/100))**(1/years)-1) :: Double - let s d = show $ roundTo 2 d when showCashFlow $ do printf "\nTWR cash flow for %s - %s\n" (showDate spanBegin) (showDate (addDays (-1) spanEnd)) let (dates', amounts) = unzip changes@@ -189,33 +208,33 @@ (valuesOnDate',unitsBoughtOrSold', unitPrices', unitBalances') = unzip4 units add x lst = if valueBefore/=0 then x:lst else lst dates = add spanBegin dates'- cashflows = add valueBefore cashflows'+ cashflows = add valueBeforeAmt cashflows' pnls = add 0 pnls' unitsBoughtOrSold = add initialUnits unitsBoughtOrSold' unitPrices = add initialUnitPrice unitPrices' unitBalances = add initialUnits unitBalances' valuesOnDate = add 0 valuesOnDate' - putStr $ Ascii.render prettyTables id id id+ TL.putStr $ Ascii.render prettyTables id id T.pack (Table (Tbl.Group NoLine (map (Header . showDate) dates)) (Tbl.Group DoubleLine [ Tbl.Group SingleLine [Header "Portfolio value", Header "Unit balance"] , Tbl.Group SingleLine [Header "Pnl", Header "Cashflow", Header "Unit price", Header "Units"] , Tbl.Group SingleLine [Header "New Unit Balance"]]) [ [value, oldBalance, pnl, cashflow, prc, udelta, balance]- | value <- map s valuesOnDate- | oldBalance <- map s (0:unitBalances)- | balance <- map s unitBalances- | pnl <- map s pnls- | cashflow <- map s cashflows- | prc <- map s unitPrices- | udelta <- map s unitsBoughtOrSold ])+ | value <- map showDecimal valuesOnDate+ | oldBalance <- map showDecimal (0:unitBalances)+ | balance <- map showDecimal unitBalances+ | pnl <- map showMixedAmount pnls+ | cashflow <- map showMixedAmount cashflows+ | prc <- map showDecimal unitPrices+ | udelta <- map showDecimal unitsBoughtOrSold ]) - printf "Final unit price: %s/%s units = %s\nTotal TWR: %s%%.\nPeriod: %.2f years.\nAnnualized TWR: %.2f%%\n\n" (s valueAfter) (s finalUnitBalance) (s finalUnitPrice) (s totalTWR) years annualizedTWR+ printf "Final unit price: %s/%s units = %s\nTotal TWR: %s%%.\nPeriod: %.2f years.\nAnnualized TWR: %.2f%%\n\n"+ (showMixedAmount valueAfter) (showDecimal finalUnitBalance) (showDecimal finalUnitPrice) (showDecimal totalTWR) years annualizedTWR return annualizedTWR - internalRateOfReturn showCashFlow prettyTables (OneSpan spanBegin spanEnd valueBefore valueAfter cashFlow _pnl) = do let prefix = (spanBegin, negate valueBefore) @@ -226,11 +245,11 @@ when showCashFlow $ do printf "\nIRR cash flow for %s - %s\n" (showDate spanBegin) (showDate (addDays (-1) spanEnd)) let (dates, amounts) = unzip totalCF- putStrLn $ Ascii.render prettyTables id id id+ TL.putStrLn $ Ascii.render prettyTables id id id (Table (Tbl.Group NoLine (map (Header . showDate) dates)) (Tbl.Group SingleLine [Header "Amount"])- (map ((:[]) . show) amounts))+ (map ((:[]) . T.pack . showMixedAmount) amounts)) -- 0% is always a solution, so require at least something here case totalCF of@@ -244,11 +263,11 @@ SearchFailed -> error' $ "Error (SearchFailed): Failed to find solution for Internal Rate of Return (IRR).\n" ++ " Either search does not converge to a solution, or converges too slowly." -type CashFlow = [(Day, Quantity)]+type CashFlow = [(Day, MixedAmount)] interestSum :: Day -> CashFlow -> Double -> Double interestSum referenceDay cf rate = sum $ map go cf- where go (t,m) = fromRational (toRational m) * (rate ** (fromIntegral (referenceDay `diffDays` t) / 365))+ where go (t,m) = fromRational (toRational (unMix m)) * (rate ** (fromIntegral (referenceDay `diffDays` t) / 365)) calculateCashFlow :: [Transaction] -> Query -> CashFlow@@ -256,11 +275,21 @@ where go t = (transactionDate2 t, total [t] query) -total :: [Transaction] -> Query -> Quantity-total trans query = unMix $ sumPostings $ filter (matchesPosting query) $ concatMap realPostings trans+total :: [Transaction] -> Query -> MixedAmount+total trans query = sumPostings $ filter (matchesPosting query) $ concatMap realPostings trans unMix :: MixedAmount -> Quantity unMix a = case (unifyMixedAmount $ mixedAmountCost a) of Just a -> aquantity a- Nothing -> error' $ "Amounts could not be converted to a single cost basis: " ++ show (map showAmount $ amounts a)+ Nothing -> error' $ "Amounts could not be converted to a single cost basis: " ++ show (map showAmount $ amounts a) +++ "\nConsider using --value to force all costs to be in a single commodity." +++ "\nFor example, \"--cost --value=end,<commodity> --infer-market-price\", where commodity is the one that was used to pay for the investment."++-- Show Decimal rounded to two decimal places, unless it has less places already. This ensures that "2" won't be shown as "2.00"+showDecimal :: Decimal -> String+showDecimal d = if d == rounded then show d else show rounded+ where+ rounded = roundTo 2 d++
Hledger/Cli/Commands/Roi.txt view
@@ -4,24 +4,23 @@ _FLAGS -This command assumes that you have account(s) that hold nothing but your-investments and whenever you record current appraisal/valuation of these-investments you offset unrealized profit and loss into account(s) that,-again, hold nothing but unrealized profit and loss.--Any transactions affecting balance of investment account(s) and not-originating from unrealized profit and loss account(s) are assumed to be-your investments or withdrawals.- At a minimum, you need to supply a query (which could be just an account-name) to select your investments with --inv, and another query to+name) to select your investment(s) with --inv, and another query to identify your profit and loss transactions with --pnl. +If you do not record changes in the value of your investment manually,+or do not require computation of time-weighted return (TWR), --pnl could+be an empty query (--pnl "" or --pnl STR where STR does not match any of+your accounts).+ This command will compute and display the internalized rate of return (IRR) and time-weighted rate of return (TWR) for your investments for the time period requested. Both rates of return are annualized before display, regardless of the length of reporting interval. +Price directives will be taken into account if you supply appropriate+--cost or --value flags (see VALUATION).+ Note, in some cases this report can fail, for these reasons: - Error (NotBracketed): No solution for Internal Rate of Return (IRR).@@ -33,11 +32,62 @@ Examples: -- Using roi to report unrealised gains:+- Using roi to compute total return of investment in stocks: https://github.com/simonmichael/hledger/blob/master/examples/roi-unrealised.ledger -More background:+- Cookbook -> Return on Investment +Semantics of --inv and --pnl++Query supplied to --inv has to match all transactions that are related+to your investment. Transactions not matching --inv will be ignored.++In these transactions, ROI will conside postings that match --inv to be+"investment postings" and other postings (not matching --inv) will be+sorted into two categories: "cash flow" and "profit and loss", as ROI+needs to know which part of the investment value is your contributions+and which is due to the return on investment.++- "Cash flow" is depositing or withdrawing money, buying or selling+ assets, or otherwise converting between your investment commodity+ and any other commodity. Example:++ 2019-01-01 Investing in Snake Oil+ assets:cash -$100+ investment:snake oil++ 2020-01-01 Selling my Snake Oil+ assets:cash $10+ investment:snake oil = 0++- "Profit and loss" is change in the value of your investment:++ 2019-06-01 Snake Oil falls in value+ investment:snake oil = $57+ equity:unrealized profit or loss++All non-investment postings are assumed to be "cash flow", unless they+match --pnl query. Changes in value of your investment due to "profit+and loss" postings will be considered as part of your investment return.++Example: if you use --inv snake --pnl equity:unrealized, then postings+in the example below would be classifed as:++2019-01-01 Snake Oil #1+ assets:cash -$100 ; cash flow posting+ investment:snake oil ; investment posting++2019-03-01 Snake Oil #2+ equity:unrealized pnl -$100 ; profit and loss posting+ snake oil ; investment posting++2019-07-01 Snake Oil #3+ equity:unrealized pnl ; profit and loss posting+ cash -$100 ; cash flow posting+ snake oil $50 ; investment posting++IRR and TWR explained+ "ROI" stands for "return on investment". Traditionally this was computed as a difference between current value of investment and its initial value, expressed in percentage of the initial value.@@ -55,35 +105,35 @@ initial investment, and if you are adding to your investment, you will receive bigger absolute gains (but probably at the same rate of return). IRR is a way to compute rate of return for each period between in-flow-or out-flow of money, and then combine them in a way that gives you an-annual rate of return that investment is expected to generate.+or out-flow of money, and then combine them in a way that gives you a+compound annual rate of return that investment is expected to generate. As mentioned before, in-flows and out-flows would be any cash that you-personally put in or withdraw, and for the "roi" command, these are-transactions that involve account(s) matching --inv argument and NOT-involve account(s) matching --pnl argument.--Presumably, you will also record changes in the value of your-investment, and balance them against "profit and loss" (or "unrealized-gains") account. Note that in order for IRR to compute the precise-effect of your in-flows and out-flows on the rate of return, you will-need to record the value of your investement on or close to the days-when in- or out-flows occur.--Implementation of IRR in hledger should match the XIRR formula in Excel.+personally put in or withdraw, and for the "roi" command, these are the+postings that match the query in the--inv argument and NOT match the+query in the--pnl argument. -Second way to compute rate of return that roi command implements is-called "time-weighted rate of return" or "TWR". Like IRR, it will also-break the history of your investment into periods between in-flows and-out-flows to compute rate of return per each period and then a compound-rate of return. However, internal workings of TWR are quite different.+If you manually record changes in the value of your investment as+transactions that balance them against "profit and loss" (or "unrealized+gains") account or use price directives, then in order for IRR to+compute the precise effect of your in-flows and out-flows on the rate of+return, you will need to record the value of your investement on or+close to the days when in- or out-flows occur. In technical terms, IRR uses the same approach as computation of net present value, and tries to find a discount rate that makes net present value of all the cash flows of your investment to add up to zero. This could be hard to wrap your head around, especially if you haven't done-discounted cash flow analysis before.+discounted cash flow analysis before. Implementation of IRR in hledger+should produce results that match the XIRR formula in Excel. +Second way to compute rate of return that roi command implements is+called "time-weighted rate of return" or "TWR". Like IRR, it will also+break the history of your investment into periods between in-flows,+out-flows and value changes, to compute rate of return per each period+and then a compound rate of return. However, internal workings of TWR+are quite different.+ TWR represents your investment as an imaginary "unit fund" where in-flows/ out-flows lead to buying or selling "units" of your investment and changes in its value change the value of "investment unit". Change@@ -93,158 +143,3 @@ References: * Explanation of rate of return * Explanation of IRR * Explanation of TWR * Examples of computing IRR and TWR and discussion of the limitations of both metrics--More examples:--Lets say that we found an investment in Snake Oil that is proising to-give us 10% annually:--2019-01-01 Investing in Snake Oil- assets:cash -$100- investment:snake oil--2019-12-24 Recording the growth of Snake Oil- investment:snake oil = $110- equity:unrealized gains--For now, basic computation of the rate of return, as well as IRR and-TWR, gives us the expected 10%:--$ hledger roi -Y --inv investment --pnl "unrealized"-+---++------------+------------++---------------+----------+-------------+-----++--------+--------+-| || Begin | End || Value (begin) | Cashflow | Value (end) | PnL || IRR | TWR |-+===++============+============++===============+==========+=============+=====++========+========+-| 1 || 2019-01-01 | 2019-12-31 || 0 | 100 | 110 | 10 || 10.00% | 10.00% |-+---++------------+------------++---------------+----------+-------------+-----++--------+--------+--However, lets say that shorty after investing in the Snake Oil we-started to have second thoughs, so we prompty withdrew $90, leaving only-$10 in. Before Christmas, though, we started to get the "fear of mission-out", so we put the $90 back in. So for most of the year, our investment-was just $10 dollars, and it gave us just $1 in growth:--2019-01-01 Investing in Snake Oil- assets:cash -$100- investment:snake oil--2019-01-02 Buyers remorse- assets:cash $90- investment:snake oil- -2019-12-30 Fear of missing out- assets:cash -$90- investment:snake oil--2019-12-31 Recording the growth of Snake Oil- investment:snake oil = $101- equity:unrealized gains--Now IRR and TWR are drastically different:--$ hledger roi -Y --inv investment --pnl "unrealized"-+---++------------+------------++---------------+----------+-------------+-----++-------+-------+-| || Begin | End || Value (begin) | Cashflow | Value (end) | PnL || IRR | TWR |-+===++============+============++===============+==========+=============+=====++=======+=======+-| 1 || 2019-01-01 | 2019-12-31 || 0 | 100 | 101 | 1 || 9.32% | 1.00% |-+---++------------+------------++---------------+----------+-------------+-----++-------+-------+--Here, IRR tells us that we made close to 10% on the $10 dollars that we-had in the account most of the time. And TWR is ... just 1%? Why?--Based on the transactions in our journal, TWR "think" that we are buying-back $90 worst of Snake Oil at the same price that it had at the-beginning of they year, and then after that our $100 investment gets $1-increase in value, or 1% of $100. Let's take a closer look at what is-happening here by asking for quarterly reports instead of annual:--$ hledger roi -Q --inv investment --pnl "unrealized"-+---++------------+------------++---------------+----------+-------------+-----++--------+-------+-| || Begin | End || Value (begin) | Cashflow | Value (end) | PnL || IRR | TWR |-+===++============+============++===============+==========+=============+=====++========+=======+-| 1 || 2019-01-01 | 2019-03-31 || 0 | 10 | 10 | 0 || 0.00% | 0.00% |-| 2 || 2019-04-01 | 2019-06-30 || 10 | 0 | 10 | 0 || 0.00% | 0.00% |-| 3 || 2019-07-01 | 2019-09-30 || 10 | 0 | 10 | 0 || 0.00% | 0.00% |-| 4 || 2019-10-01 | 2019-12-31 || 10 | 90 | 101 | 1 || 37.80% | 4.03% |-+---++------------+------------++---------------+----------+-------------+-----++--------+-------+--Now both IRR and TWR are thrown off by the fact that all of the growth-for our investment happens in Q4 2019. This happes because IRR-computation is still yielding 9.32% and TWR is still 1%, but this time-these are rates for three month period instead of twelve, so in order to-get an annual rate they should be multiplied by four!--Let's try to keep a better record of how Snake Oil grew in value:--2019-01-01 Investing in Snake Oil- assets:cash -$100- investment:snake oil--2019-01-02 Buyers remorse- assets:cash $90- investment:snake oil--2019-02-28 Recording the growth of Snake Oil- investment:snake oil - equity:unrealized gains -$0.25--2019-06-30 Recording the growth of Snake Oil- investment:snake oil - equity:unrealized gains -$0.25--2019-09-30 Recording the growth of Snake Oil- investment:snake oil - equity:unrealized gains -$0.25--2019-12-30 Fear of missing out- assets:cash -$90- investment:snake oil--2019-12-31 Recording the growth of Snake Oil- investment:snake oil- equity:unrealized gains -$0.25--Would our quartery report look better now? Almost:--$ hledger roi -Q --inv investment --pnl "unrealized"-+---++------------+------------++---------------+----------+-------------+------++--------+--------+-| || Begin | End || Value (begin) | Cashflow | Value (end) | PnL || IRR | TWR |-+===++============+============++===============+==========+=============+======++========+========+-| 1 || 2019-01-01 | 2019-03-31 || 0 | 10 | 10.25 | 0.25 || 9.53% | 10.53% |-| 2 || 2019-04-01 | 2019-06-30 || 10.25 | 0 | 10.50 | 0.25 || 10.15% | 10.15% |-| 3 || 2019-07-01 | 2019-09-30 || 10.50 | 0 | 10.75 | 0.25 || 9.79% | 9.78% |-| 4 || 2019-10-01 | 2019-12-31 || 10.75 | 90 | 101.00 | 0.25 || 8.05% | 1.00% |-+---++------------+------------++---------------+----------+-------------+------++--------+--------+--Something is still wrong with TWR computation for Q4, and if you have-been paying attention you know what it is already: big $90 buy-back is-recorded prior to the only transaction that captures the change of value-of Snake Oil that happened in this time period. Lets combine-transactions from 30th and 31st of Dec into one:--2019-12-30 Fear of missing out and growth of Snake Oil- assets:cash -$90- investment:snake oil- equity:unrealized gains -$0.25--Now growth of investment properly affects its price at the time of-buy-back:--$ hledger roi -Q --inv investment --pnl "unrealized"-+---++------------+------------++---------------+----------+-------------+------++--------+--------+-| || Begin | End || Value (begin) | Cashflow | Value (end) | PnL || IRR | TWR |-+===++============+============++===============+==========+=============+======++========+========+-| 1 || 2019-01-01 | 2019-03-31 || 0 | 10 | 10.25 | 0.25 || 9.53% | 10.53% |-| 2 || 2019-04-01 | 2019-06-30 || 10.25 | 0 | 10.50 | 0.25 || 10.15% | 10.15% |-| 3 || 2019-07-01 | 2019-09-30 || 10.50 | 0 | 10.75 | 0.25 || 9.79% | 9.78% |-| 4 || 2019-10-01 | 2019-12-31 || 10.75 | 90 | 101.00 | 0.25 || 8.05% | 9.57% |-+---++------------+------------++---------------+----------+-------------+------++--------+--------+--And for annual report, TWR now reports the exact profitability of our-investment:--$ hledger roi -Y --inv investment --pnl "unrealized"-+---++------------+------------++---------------+----------+-------------+------++-------+--------+-| || Begin | End || Value (begin) | Cashflow | Value (end) | PnL || IRR | TWR |-+===++============+============++===============+==========+=============+======++=======+========+-| 1 || 2019-01-01 | 2019-12-31 || 0 | 100 | 101.00 | 1.00 || 9.32% | 10.00% |-+---++------------+------------++---------------+----------+-------------+------++-------+--------+
Hledger/Cli/Commands/Tags.hs view
@@ -29,7 +29,7 @@ tags CliOpts{rawopts_=rawopts,reportspec_=rspec} j = do d <- getCurrentDay let args = listofstringopt "args" rawopts- mtagpat <- mapM (either Fail.fail pure . toRegexCI) $ headMay args+ mtagpat <- mapM (either Fail.fail pure . toRegexCI . T.pack) $ headMay args let querystring = map T.pack $ drop 1 args values = boolopt "values" rawopts@@ -44,7 +44,7 @@ (if parsed then id else nubSort) [ r | (t,v) <- concatMap transactionAllTags txns- , maybe True (`regexMatch` T.unpack t) mtagpat+ , maybe True (`regexMatchText` t) mtagpat , let r = if values then v else t , not (values && T.null v && not empty) ]
Hledger/Cli/CompoundBalanceCommand.hs view
@@ -1,4 +1,7 @@-{-# LANGUAGE OverloadedStrings, RecordWildCards, LambdaCase #-}+{-# LANGUAGE CPP #-}+{-# LANGUAGE LambdaCase #-}+{-# LANGUAGE OverloadedStrings #-}+{-# LANGUAGE RecordWildCards #-} {-| Common helpers for making multi-section balance report commands@@ -13,19 +16,23 @@ ) where import Data.List (foldl')-import Data.Maybe-import qualified Data.Text as TS+import Data.Maybe (fromMaybe, mapMaybe)+#if !(MIN_VERSION_base(4,11,0))+import Data.Semigroup ((<>))+#endif+import qualified Data.Text as T import qualified Data.Text.Lazy as TL-import Data.Time.Calendar+import qualified Data.Text.Lazy.Builder as TB+import Data.Time.Calendar (Day, addDays) import System.Console.CmdArgs.Explicit as C import Hledger.Read.CsvReader (CSV, printCSV) import Lucid as L hiding (value_)-import Text.Tabular as T+import Text.Tabular as Tab import Hledger import Hledger.Cli.Commands.Balance import Hledger.Cli.CliOptions-import Hledger.Cli.Utils (unsupportedOutputFormatError, writeOutput)+import Hledger.Cli.Utils (unsupportedOutputFormatError, writeOutputLazyText) -- | Description of a compound balance report command, -- from which we generate the command's cmdargs mode and IO action.@@ -54,16 +61,22 @@ compoundBalanceCommandMode CompoundBalanceCommandSpec{..} = hledgerCommandMode cbcdoc- ([flagNone ["change"] (setboolopt "change")- ("show balance change in each period" ++ defType PeriodChange)+ ([flagNone ["sum"] (setboolopt "sum")+ "show sum of posting amounts (default)"+ ,flagNone ["valuechange"] (setboolopt "valuechange")+ "show change of value of period-end historical balances"+ ,flagNone ["budget"] (setboolopt "budget")+ "show sum of posting amounts compared to budget goals defined by periodic transactions\n "++ ,flagNone ["change"] (setboolopt "change")+ ("accumulate amounts from column start to column end (in multicolumn reports)"+ ++ defType PeriodChange) ,flagNone ["cumulative"] (setboolopt "cumulative")- ("show balance change accumulated across periods (in multicolumn reports)"- ++ defType CumulativeChange- )+ ("accumulate amounts from report start (specified by e.g. -b/--begin) to column end"+ ++ defType CumulativeChange) ,flagNone ["historical","H"] (setboolopt "historical")- ("show historical ending balance in each period (includes postings before report start date)"- ++ defType HistoricalBalance- )+ ("accumulate amounts from journal start to column end (includes postings before report start date)"+ ++ defType HistoricalBalance ++ "\n ") ] ++ flattreeflags True ++ [flagReq ["drop"] (\s opts -> Right $ setopt "drop" s opts) "N" "flat mode: omit N leading account name parts"@@ -89,82 +102,81 @@ -- | Generate a runnable command from a compound balance command specification. compoundBalanceCommand :: CompoundBalanceCommandSpec -> (CliOpts -> Journal -> IO ()) compoundBalanceCommand CompoundBalanceCommandSpec{..} opts@CliOpts{reportspec_=rspec, rawopts_=rawopts} j = do- let- ropts@ReportOpts{..} = rsOpts rspec- -- use the default balance type for this report, unless the user overrides- mBalanceTypeOverride =- choiceopt parse rawopts where- parse = \case- "historical" -> Just HistoricalBalance- "cumulative" -> Just CumulativeChange- "change" -> Just PeriodChange- _ -> Nothing- balancetype = fromMaybe cbctype mBalanceTypeOverride- -- Set balance type in the report options.- ropts' = ropts{balancetype_=balancetype}+ writeOutputLazyText opts $ render cbr+ where+ ropts@ReportOpts{..} = rsOpts rspec+ -- use the default balance type for this report, unless the user overrides+ mBalanceTypeOverride = balanceTypeOverride rawopts+ balancetype = fromMaybe cbctype mBalanceTypeOverride+ -- Set balance type in the report options.+ ropts' = ropts{balancetype_=balancetype} - title =- cbctitle- ++ " "- ++ titledatestr- ++ maybe "" (' ':) mtitleclarification- ++ valuationdesc- where+ title =+ T.pack cbctitle+ <> " "+ <> titledatestr+ <> maybe "" (" "<>) mtitleclarification+ <> valuationdesc+ where - -- XXX #1078 the title of ending balance reports- -- (HistoricalBalance) should mention the end date(s) shown as- -- column heading(s) (not the date span of the transactions).- -- Also the dates should not be simplified (it should show- -- "2008/01/01-2008/12/31", not "2008").- titledatestr = case balancetype of- HistoricalBalance -> showEndDates enddates- _ -> showDateSpan requestedspan- where- enddates = map (addDays (-1)) . mapMaybe spanEnd $ cbrDates cbr -- these spans will always have a definite end date- requestedspan = queryDateSpan date2_ (rsQuery rspec)- `spanDefaultsFrom` journalDateSpan date2_ j+ -- XXX #1078 the title of ending balance reports+ -- (HistoricalBalance) should mention the end date(s) shown as+ -- column heading(s) (not the date span of the transactions).+ -- Also the dates should not be simplified (it should show+ -- "2008/01/01-2008/12/31", not "2008").+ titledatestr = case balancetype of+ HistoricalBalance -> showEndDates enddates+ _ -> showDateSpan requestedspan+ where+ enddates = map (addDays (-1)) . mapMaybe spanEnd $ cbrDates cbr -- these spans will always have a definite end date+ requestedspan = reportSpan j rspec - -- when user overrides, add an indication to the report title- mtitleclarification = flip fmap mBalanceTypeOverride $ \case- PeriodChange -> "(Balance Changes)"- CumulativeChange -> "(Cumulative Ending Balances)"- HistoricalBalance -> "(Historical Ending Balances)"+ -- when user overrides, add an indication to the report title+ -- Do we need to deal with overridden ReportType?+ mtitleclarification = flip fmap mBalanceTypeOverride $ \case+ PeriodChange | changingValuation -> "(Period-End Value Changes)"+ PeriodChange -> "(Balance Changes)"+ CumulativeChange -> "(Cumulative Ending Balances)"+ HistoricalBalance -> "(Historical Ending Balances)" - valuationdesc = case value_ of- Just (AtCost _mc) -> ", valued at cost"- Just (AtThen _mc) -> error' unsupportedValueThenError -- TODO- Just (AtEnd _mc) -> ", valued at period ends"- Just (AtNow _mc) -> ", current value"- Just (AtDefault _mc) | multiperiod -> ", valued at period ends"- Just (AtDefault _mc) -> ", current value"- Just (AtDate today _mc) -> ", valued at "++showDate today- Nothing -> ""+ valuationdesc =+ (case cost_ of+ Cost -> ", converted to cost"+ NoCost -> "")+ <> (case value_ of+ Just (AtThen _mc) -> ", valued at posting date"+ Just (AtEnd _mc) | changingValuation -> ""+ Just (AtEnd _mc) -> ", valued at period ends"+ Just (AtNow _mc) -> ", current value"+ Just (AtDate today _mc) -> ", valued at " <> showDate today+ Nothing -> "") - multiperiod = interval_ /= NoInterval+ changingValuation = case (reporttype_, balancetype_) of+ (ValueChangeReport, PeriodChange) -> True+ (ValueChangeReport, CumulativeChange) -> True+ _ -> False - -- make a CompoundBalanceReport.- cbr' = compoundBalanceReport rspec{rsOpts=ropts'} j cbcqueries- cbr = cbr'{cbrTitle=title}+ -- make a CompoundBalanceReport.+ cbr' = compoundBalanceReport rspec{rsOpts=ropts'} j cbcqueries+ cbr = cbr'{cbrTitle=title} -- render appropriately- writeOutput opts $ case outputFormatFromOpts opts of- "txt" -> compoundBalanceReportAsText ropts' cbr- "csv" -> printCSV (compoundBalanceReportAsCsv ropts cbr) ++ "\n"- "html" -> (++"\n") $ TL.unpack $ L.renderText $ compoundBalanceReportAsHtml ropts cbr- "json" -> (++"\n") $ TL.unpack $ toJsonText cbr+ render = case outputFormatFromOpts opts of+ "txt" -> compoundBalanceReportAsText ropts'+ "csv" -> printCSV . compoundBalanceReportAsCsv ropts'+ "html" -> L.renderText . compoundBalanceReportAsHtml ropts'+ "json" -> toJsonText x -> error' $ unsupportedOutputFormatError x -- | Summarise one or more (inclusive) end dates, in a way that's -- visually different from showDateSpan, suggesting discrete end dates -- rather than a continuous span.-showEndDates :: [Day] -> String+showEndDates :: [Day] -> T.Text showEndDates es = case es of -- cf showPeriod- (e:_:_) -> showdate e ++ ".." ++ showdate (last es)- [e] -> showdate e+ (e:_:_) -> showDate e <> ".." <> showDate (last es)+ [e] -> showDate e [] -> ""- where- showdate = show -- | Render a compound balance report as plain text suitable for console output. {- Eg:@@ -186,15 +198,16 @@ Total || 1 1 1 -}-compoundBalanceReportAsText :: ReportOpts -> CompoundPeriodicReport DisplayName MixedAmount -> String+compoundBalanceReportAsText :: ReportOpts -> CompoundPeriodicReport DisplayName MixedAmount -> TL.Text compoundBalanceReportAsText ropts (CompoundPeriodicReport title _colspans subreports (PeriodicReportRow _ coltotals grandtotal grandavg)) =- title ++ "\n\n" ++- balanceReportTableAsText ropts bigtable'+ TB.toLazyText $+ TB.fromText title <> TB.fromText "\n\n" <>+ balanceReportTableAsText ropts bigtable' where bigtable = case map (subreportAsTable ropts) subreports of- [] -> T.empty+ [] -> Tab.empty r:rs -> foldl' concatTables r rs bigtable' | no_total_ ropts || length subreports == 1 =@@ -215,11 +228,11 @@ -- convert to table Table lefthdrs tophdrs cells = balanceReportAsTable ropts r -- tweak the layout- t = Table (T.Group SingleLine [Header title, lefthdrs]) tophdrs ([]:cells)+ t = Table (Tab.Group SingleLine [Header title, lefthdrs]) tophdrs ([]:cells) -- | Add the second table below the first, discarding its column headings. concatTables (Table hLeft hTop dat) (Table hLeft' _ dat') =- Table (T.Group DoubleLine [hLeft, hLeft']) hTop (dat ++ dat')+ Table (Tab.Group DoubleLine [hLeft, hLeft']) hTop (dat ++ dat') -- | Render a compound balance report as CSV. -- Subreports' CSV is concatenated, with the headings rows replaced by a@@ -227,14 +240,14 @@ -- optional overall totals row is added. compoundBalanceReportAsCsv :: ReportOpts -> CompoundPeriodicReport DisplayName MixedAmount -> CSV compoundBalanceReportAsCsv ropts (CompoundPeriodicReport title colspans subreports (PeriodicReportRow _ coltotals grandtotal grandavg)) =- addtotals $- padRow title :- ("Account" :- map showDateSpanMonthAbbrev colspans- ++ (if row_total_ ropts then ["Total"] else [])- ++ (if average_ ropts then ["Average"] else [])- ) :- concatMap (subreportAsCsv ropts) subreports+ addtotals $+ padRow title+ : ( "Account"+ : map showDateSpanMonthAbbrev colspans+ ++ (if row_total_ ropts then ["Total"] else [])+ ++ (if average_ ropts then ["Average"] else [])+ )+ : concatMap (subreportAsCsv ropts) subreports where -- | Add a subreport title row and drop the heading row. subreportAsCsv ropts (subreporttitle, multibalreport, _) =@@ -254,7 +267,7 @@ | no_total_ ropts || length subreports == 1 = id | otherwise = (++ ["Net:" :- map (showMixedAmountOneLineWithoutPrice False) (+ map (wbToText . showMixedAmountB oneLine) ( coltotals ++ (if row_total_ ropts then [grandtotal] else []) ++ (if average_ ropts then [grandavg] else [])@@ -266,7 +279,7 @@ compoundBalanceReportAsHtml ropts cbr = let CompoundPeriodicReport title colspans subreports (PeriodicReportRow _ coltotals grandtotal grandavg) = cbr- colspanattr = colspan_ $ TS.pack $ show $+ colspanattr = colspan_ $ T.pack $ show $ 1 + length colspans + (if row_total_ ropts then 1 else 0) + (if average_ ropts then 1 else 0) leftattr = style_ "text-align:left" blankrow = tr_ $ td_ [colspanattr] $ toHtmlRaw (" "::String)@@ -280,12 +293,12 @@ ++ (if average_ ropts then ["Average"] else []) ] - thRow :: [String] -> Html ()+ thRow :: [T.Text] -> Html () thRow = tr_ . mconcat . map (th_ . toHtml) -- Make rows for a subreport: its title row, not the headings row, -- the data rows, any totals row, and a blank row for whitespace.- subreportrows :: (String, MultiBalanceReport, Bool) -> [Html ()]+ subreportrows :: (T.Text, MultiBalanceReport, Bool) -> [Html ()] subreportrows (subreporttitle, mbr, _increasestotal) = let (_,bodyrows,mtotalsrow) = multiBalanceReportHtmlRows ropts mbr@@ -298,16 +311,14 @@ totalrows | no_total_ ropts || length subreports == 1 = [] | otherwise = let defstyle = style_ "text-align:right"- in- [tr_ $ mconcat $- th_ [class_ "", style_ "text-align:left"] "Net:"- : [th_ [class_ "amount coltotal", defstyle] (toHtml $ showMixedAmountOneLineWithoutPrice False a) | a <- coltotals]- ++ (if row_total_ ropts then [th_ [class_ "amount coltotal", defstyle] $ toHtml $ showMixedAmountOneLineWithoutPrice False grandtotal] else [])- ++ (if average_ ropts then [th_ [class_ "amount colaverage", defstyle] $ toHtml $ showMixedAmountOneLineWithoutPrice False grandavg] else [])+ orEmpty b x = if b then x else mempty+ in [tr_ $ th_ [class_ "", style_ "text-align:left"] "Net:"+ <> foldMap (th_ [class_ "amount coltotal", defstyle] . toHtml . wbUnpack . showMixedAmountB oneLine) coltotals+ <> orEmpty (row_total_ ropts) (th_ [class_ "amount coltotal", defstyle] . toHtml . wbUnpack $ showMixedAmountB oneLine grandtotal)+ <> orEmpty (average_ ropts) (th_ [class_ "amount colaverage", defstyle] . toHtml . wbUnpack $ showMixedAmountB oneLine grandavg) ]- in do- style_ (TS.unlines [""+ style_ (T.unlines ["" ,"td { padding:0 0.5em; }" ,"td:nth-child(1) { white-space:nowrap; }" ,"tr:nth-child(even) td { background-color:#eee; }"
Hledger/Cli/DocFiles.hs view
@@ -8,11 +8,11 @@ module Hledger.Cli.DocFiles ( Topic- ,docFiles- ,docTopics- ,lookupDocNroff- ,lookupDocTxt- ,lookupDocInfo+ -- ,toolDocs+ -- ,toolDocNames+ -- ,toolDocMan+ -- ,toolDocTxt+ -- ,toolDocInfo ,printHelpForTopic ,runManForTopic ,runInfoForTopic@@ -30,14 +30,22 @@ import System.Process import Hledger.Utils (first3, second3, third3, embedFileRelative)+import Text.Printf (printf)+import Data.Maybe (fromMaybe)+import System.Environment (lookupEnv)+import Hledger.Utils.Debug +-- The name of any hledger executable.+type Tool = String++-- Any heading in the hledger user manual (and perhaps later the hledger-ui/hledger-web manuals). type Topic = String --- | These are all the main hledger manuals, in man, txt, and info formats.+-- | The main hledger manuals as source for man, info and as plain text. -- Only files under the current package directory can be embedded,--- so most of these are symlinked here from the other package directories.-docFiles :: [(Topic, (ByteString, ByteString, ByteString))]-docFiles = [+-- so some of these are symlinked from the other package directories.+toolDocs :: [(Tool, (ByteString, ByteString, ByteString))]+toolDocs = [ ("hledger", ($(embedFileRelative "embeddedfiles/hledger.1") ,$(embedFileRelative "embeddedfiles/hledger.txt")@@ -53,68 +61,75 @@ ,$(embedFileRelative "embeddedfiles/hledger-web.txt") ,$(embedFileRelative "embeddedfiles/hledger-web.info") ))- ,("journal",- ($(embedFileRelative "embeddedfiles/hledger_journal.5")- ,$(embedFileRelative "embeddedfiles/hledger_journal.txt")- ,$(embedFileRelative "embeddedfiles/hledger_journal.info")- ))- ,("csv",- ($(embedFileRelative "embeddedfiles/hledger_csv.5")- ,$(embedFileRelative "embeddedfiles/hledger_csv.txt")- ,$(embedFileRelative "embeddedfiles/hledger_csv.info")- ))- ,("timeclock",- ($(embedFileRelative "embeddedfiles/hledger_timeclock.5")- ,$(embedFileRelative "embeddedfiles/hledger_timeclock.txt")- ,$(embedFileRelative "embeddedfiles/hledger_timeclock.info")- ))- ,("timedot",- ($(embedFileRelative "embeddedfiles/hledger_timedot.5")- ,$(embedFileRelative "embeddedfiles/hledger_timedot.txt")- ,$(embedFileRelative "embeddedfiles/hledger_timedot.info")- )) ] -docTopics :: [Topic]-docTopics = map fst docFiles--lookupDocTxt :: Topic -> ByteString-lookupDocTxt name =- maybe (fromString $ "No text manual found for topic: "++name) second3 $ lookup name docFiles+-- toolNames :: [Tool]+-- toolNames = map fst toolDocs -lookupDocNroff :: Topic -> ByteString-lookupDocNroff name =- maybe (fromString $ "No man page found for topic: "++name) first3 $ lookup name docFiles+-- | Get the manual as plain text for this tool, or a not found message.+toolDocTxt :: Tool -> ByteString+toolDocTxt name =+ maybe (fromString $ "No text manual found for tool: "++name) second3 $ lookup name toolDocs -lookupDocInfo :: Topic -> ByteString-lookupDocInfo name =- maybe (fromString $ "No info manual found for topic: "++name) third3 $ lookup name docFiles+-- | Get the manual as man source (nroff) for this tool, or a not found message.+toolDocMan :: Tool -> ByteString+toolDocMan name =+ maybe (fromString $ "No man page found for tool: "++name) first3 $ lookup name toolDocs -printHelpForTopic :: Topic -> IO ()-printHelpForTopic t =- BC.putStr (lookupDocTxt t)+-- | Get the manual as info source (texinfo) for this tool, or a not found message.+toolDocInfo :: Tool -> ByteString+toolDocInfo name =+ maybe (fromString $ "No info manual found for tool: "++name) third3 $ lookup name toolDocs -runPagerForTopic :: FilePath -> Topic -> IO ()-runPagerForTopic exe t = do- (Just inp, _, _, ph) <- createProcess (proc exe []){- std_in=CreatePipe- }- BC.hPutStrLn inp (lookupDocTxt t)- _ <- waitForProcess ph- return ()+-- | Print plain text help for this tool.+-- Takes an optional topic argument for convenience but it is currently ignored.+printHelpForTopic :: Tool -> Maybe Topic -> IO ()+printHelpForTopic tool _mtopic =+ BC.putStr (toolDocTxt tool) -runManForTopic :: Topic -> IO ()-runManForTopic t =- withSystemTempFile ("hledger-"++t++".nroff") $ \f h -> do- BC.hPutStrLn h $ lookupDocNroff t+-- | Display plain text help for this tool, scrolled to the given topic+-- if provided, using the given pager executable.+-- Note when a topic is provided we ignore the provided pager and+-- use the "less" executable in $PATH.+runPagerForTopic :: Tool -> Maybe Topic -> IO ()+runPagerForTopic tool mtopic = do+ -- avoids a temp file but different from the others and not sure how to make it scroll+ -- pager <- fromMaybe "less" <$> lookupEnv "PAGER"+ -- (Just inp, _, _, ph) <- createProcess (proc pager []){+ -- std_in=CreatePipe+ -- }+ -- BC.hPutStrLn inp (toolDocTxt tool)+ -- _ <- waitForProcess ph+ -- return ()+ + withSystemTempFile ("hledger-"++tool++".txt") $ \f h -> do+ BC.hPutStrLn h $ toolDocTxt tool hClose h- -- the temp file path will presumably have a slash in it, so man should read it- callCommand $ "man " ++ f+ let defpager = "less -is"+ envpager <- fromMaybe defpager <$> lookupEnv "PAGER"+ -- force the use of less if a topic is provided, since we know how to scroll it+ let pager = if mtopic==Nothing then envpager else defpager+ callCommand $ dbg1 "pager command" $ + pager ++ maybe "" (printf " +'/^( )?%s'") mtopic ++ " " ++ f -runInfoForTopic :: Topic -> IO ()-runInfoForTopic t =- withSystemTempFile ("hledger-"++t++".info") $ \f h -> do- BC.hPutStrLn h $ lookupDocInfo t+-- | Display a man page for this tool, scrolled to the given topic if provided, +-- using the "man" executable in $PATH. Note when a topic is provided we force +-- man to use the "less" executable in $PATH, ignoring $MANPAGER and $PAGER.+runManForTopic :: Tool -> Maybe Topic -> IO ()+runManForTopic tool mtopic =+ withSystemTempFile ("hledger-"++tool++".nroff") $ \f h -> do+ BC.hPutStrLn h $ toolDocMan tool hClose h- callCommand $ "info " ++ f+ -- the temp file path will presumably have a slash in it, so man should read it+ callCommand $ dbg1 "man command" $ + "man " ++ f ++ maybe "" (printf " -P \"less -is +'/^( )?%s'\"") mtopic +-- | Display an info manual for this topic, opened at the given topic if provided,+-- using the "info" executable in $PATH.+runInfoForTopic :: Tool -> Maybe Topic -> IO ()+runInfoForTopic tool mtopic =+ withSystemTempFile ("hledger-"++tool++".info") $ \f h -> do+ BC.hPutStrLn h $ toolDocInfo tool+ hClose h+ callCommand $ dbg1 "info command" $+ "info -f " ++ f ++ maybe "" (printf " -n '%s'") mtopic
Hledger/Cli/Main.hs view
@@ -142,9 +142,15 @@ printUsage = putStr $ showModeUsage $ mainmode addons badCommandError = error' ("command "++rawcmd++" is not recognized, run with no command to see a list") >> exitFailure -- PARTIAL: hasHelpFlag args = any (`elem` args) ["-h","--help"]+ hasManFlag args = any (`elem` args) ["--man"]+ hasInfoFlag args = any (`elem` args) ["--info"] f `orShowHelp` mode | hasHelpFlag args = putStr $ showModeUsage mode+ | hasInfoFlag args = runInfoForTopic "hledger" (headMay $ modeNames mode)+ | hasManFlag args = runManForTopic "hledger" (headMay $ modeNames mode) | otherwise = f+ -- where+ -- lastdocflag dbgIO "processed opts" opts dbgIO "command matched" cmd dbgIO "isNullCommand" isNullCommand@@ -158,10 +164,14 @@ journallesserror = error $ cmd++" tried to read the journal but is not supposed to" runHledgerCommand -- high priority flags and situations. -h, then --help, then --info are highest priority.- | hasHelpFlag argsbeforecmd = dbgIO "" "-h before command, showing general usage" >> printUsage- | not (hasHelpFlag argsaftercmd) && (hasVersion argsbeforecmd || (hasVersion argsaftercmd && isInternalCommand))+ | isNullCommand && hasHelpFlag args = dbgIO "" "-h/--help with no command, showing general help" >> printUsage+ | isNullCommand && hasInfoFlag args = dbgIO "" "--info with no command, showing general info manual" >> runInfoForTopic "hledger" Nothing+ | isNullCommand && hasManFlag args = dbgIO "" "--man with no command, showing general man page" >> runManForTopic "hledger" Nothing+ | not (isExternalCommand || hasHelpFlag args || hasInfoFlag args || hasManFlag args)+ && (hasVersion args) -- || (hasVersion argsaftercmd && isInternalCommand)) = putStrLn prognameandversion- | not (hasHelpFlag argsaftercmd) && (hasDetailedVersion argsbeforecmd || (hasDetailedVersion argsaftercmd && isInternalCommand))+ | not (isExternalCommand || hasHelpFlag args || hasInfoFlag args || hasManFlag args) + && (hasDetailedVersion argsbeforecmd) -- || (hasDetailedVersion argsaftercmd && isInternalCommand)) = putStrLn prognameanddetailedversion -- \| (null externalcmd) && "binary-filename" `inRawOpts` rawopts = putStrLn $ binaryfilename progname -- \| "--browse-args" `elem` args = System.Console.CmdArgs.Helper.execute "cmdargs-browser" mainmode' args >>= (putStr . show)
Hledger/Cli/Utils.hs view
@@ -13,6 +13,7 @@ unsupportedOutputFormatError, withJournalDo, writeOutput,+ writeOutputLazyText, journalTransform, journalAddForecast, journalReload,@@ -25,6 +26,7 @@ pivotByOpts, anonymiseByOpts, utcTimeToClockTime,+ journalSimilarTransaction, tests_Cli_Utils, ) where@@ -34,8 +36,10 @@ import Data.Maybe import qualified Data.Text as T import qualified Data.Text.IO as T+import qualified Data.Text.Lazy as TL+import qualified Data.Text.Lazy.IO as TL import Data.Time (UTCTime, Day, addDays)-import Safe (readMay)+import Safe (readMay, headMay) import System.Console.CmdArgs import System.Directory (getModificationTime, getDirectoryContents, copyFile, doesFileExist) import System.Exit@@ -159,6 +163,14 @@ f <- outputFileFromOpts opts (if f == "-" then putStr else writeFile f) s +-- | Write some output to stdout or to a file selected by --output-file.+-- If the file exists it will be overwritten. This function operates on Lazy+-- Text values.+writeOutputLazyText :: CliOpts -> TL.Text -> IO ()+writeOutputLazyText opts s = do+ f <- outputFileFromOpts opts+ (if f == "-" then TL.putStr else TL.writeFile f) s+ -- -- | Get a journal from the given string and options, or throw an error. -- readJournal :: CliOpts -> String -> IO Journal -- readJournal opts s = readJournal def Nothing s >>= either error' return@@ -290,6 +302,17 @@ backupNumber f g = case g =~ ("^" ++ f ++ "\\.([0-9]+)$") of (_::FilePath, _::FilePath, _::FilePath, [ext::FilePath]) -> readMay ext _ -> Nothing++-- Identify the closest recent match for this description in past transactions.+-- If the options specify a query, only matched transactions are considered.+journalSimilarTransaction :: CliOpts -> Journal -> T.Text -> Maybe Transaction+journalSimilarTransaction cliopts j desc = mbestmatch+ where+ mbestmatch = snd <$> headMay bestmatches+ bestmatches =+ dbg1With (unlines . ("similar transactions:":) . map (\(score,Transaction{..}) -> printf "%0.3f %s %s" score (show tdate) tdescription)) $+ journalTransactionsSimilarTo j q desc 10+ q = queryFromFlags $ rsOpts $ reportspec_ cliopts tests_Cli_Utils = tests "Utils" [
embeddedfiles/hledger-ui.1 view
@@ -1,11 +1,13 @@ -.TH "HLEDGER-UI" "1" "December 2020" "hledger-ui-1.20.4 " "hledger User Manuals"+.TH "HLEDGER-UI" "1" "December 2020" "hledger-ui-1.21 " "hledger User Manuals" .SH NAME .PP-A terminal interface (TUI) for the hledger accounting tool.+hledger-ui is a terminal interface (TUI) for the hledger accounting+tool.+This manual is for hledger-ui 1.21. .SH SYNOPSIS .PP \f[C]hledger-ui [OPTIONS] [QUERYARGS]\f[R]@@ -153,8 +155,9 @@ \f[B]\f[CB]--value\f[B]\f[R] convert amounts to cost or market value, more flexibly than -B/-V/-X .TP-\f[B]\f[CB]--infer-value\f[B]\f[R]-with -V/-X/--value, also infer market prices from transactions+\f[B]\f[CB]--infer-market-prices\f[B]\f[R]+use transaction prices (recorded with \[at] or \[at]\[at]) as additional+market prices, as if they were P directives .TP \f[B]\f[CB]--auto\f[B]\f[R] apply automated posting rules to modify transactions.@@ -181,10 +184,16 @@ hledger help options: .TP \f[B]\f[CB]-h --help\f[B]\f[R]-show general usage (or after COMMAND, command usage)+show general or COMMAND help .TP+\f[B]\f[CB]--man\f[B]\f[R]+show general or COMMAND user manual with man+.TP+\f[B]\f[CB]--info\f[B]\f[R]+show general or COMMAND user manual with info+.TP \f[B]\f[CB]--version\f[B]\f[R]-show version+show general or ADDONCMD version .TP \f[B]\f[CB]--debug[=N]\f[B]\f[R] show debug output (levels 1-9, default: 1)@@ -505,5 +514,3 @@ .SH SEE ALSO hledger(1), hledger\-ui(1), hledger\-web(1), ledger(1)--hledger_journal(5), hledger_csv(5), hledger_timeclock(5), hledger_timedot(5)
embeddedfiles/hledger-ui.info view
@@ -7,7 +7,8 @@ hledger-ui(1) ************* -A terminal interface (TUI) for the hledger accounting tool.+hledger-ui is a terminal interface (TUI) for the hledger accounting+tool. This manual is for hledger-ui 1.21. `hledger-ui [OPTIONS] [QUERYARGS]' `hledger ui -- [OPTIONS] [QUERYARGS]'@@ -167,8 +168,9 @@ convert amounts to cost or market value, more flexibly than -B/-V/-X -`--infer-value'- with -V/-X/-value, also infer market prices from transactions+`--infer-market-prices'+ use transaction prices (recorded with @ or @@) as additional market+ prices, as if they were P directives `--auto' apply automated posting rules to modify transactions.@@ -193,10 +195,16 @@ hledger help options: `-h --help'- show general usage (or after COMMAND, command usage)+ show general or COMMAND help +`--man'+ show general or COMMAND user manual with man++`--info'+ show general or COMMAND user manual with info+ `--version'- show version+ show general or ADDONCMD version `--debug[=N]' show debug output (levels 1-9, default: 1)@@ -519,25 +527,25 @@ Tag Table: Node: Top82-Node: OPTIONS1425-Ref: #options1522-Node: KEYS5583-Ref: #keys5678-Node: SCREENS9974-Ref: #screens10079-Node: Accounts screen10169-Ref: #accounts-screen10297-Node: Register screen12501-Ref: #register-screen12656-Node: Transaction screen14651-Ref: #transaction-screen14809-Node: Error screen15676-Ref: #error-screen15798-Node: ENVIRONMENT16040-Ref: #environment16154-Node: FILES16959-Ref: #files17058-Node: BUGS17271-Ref: #bugs17348+Node: OPTIONS1475+Ref: #options1572+Node: KEYS5805+Ref: #keys5900+Node: SCREENS10196+Ref: #screens10301+Node: Accounts screen10391+Ref: #accounts-screen10519+Node: Register screen12723+Ref: #register-screen12878+Node: Transaction screen14873+Ref: #transaction-screen15031+Node: Error screen15898+Ref: #error-screen16020+Node: ENVIRONMENT16262+Ref: #environment16376+Node: FILES17181+Ref: #files17280+Node: BUGS17493+Ref: #bugs17570 End Tag Table
embeddedfiles/hledger-ui.txt view
@@ -4,40 +4,41 @@ NAME- A terminal interface (TUI) for the hledger accounting tool.+ hledger-ui is a terminal interface (TUI) for the hledger accounting+ tool. This manual is for hledger-ui 1.21. SYNOPSIS hledger-ui [OPTIONS] [QUERYARGS] hledger ui -- [OPTIONS] [QUERYARGS] DESCRIPTION- hledger is a reliable, cross-platform set of programs for tracking- money, time, or any other commodity, using double-entry accounting and- a simple, editable file format. hledger is inspired by and largely+ hledger is a reliable, cross-platform set of programs for tracking+ money, time, or any other commodity, using double-entry accounting and+ a simple, editable file format. hledger is inspired by and largely compatible with ledger(1). - hledger-ui is hledger's terminal interface, providing an efficient- full-window text UI for viewing accounts and transactions, and some- limited data entry capability. It is easier than hledger's command-- line interface, and sometimes quicker and more convenient than the web+ hledger-ui is hledger's terminal interface, providing an efficient+ full-window text UI for viewing accounts and transactions, and some+ limited data entry capability. It is easier than hledger's command-+ line interface, and sometimes quicker and more convenient than the web interface. - Like hledger, it reads data from one or more files in hledger journal,- timeclock, timedot, or CSV format specified with -f, or $LEDGER_FILE,- or $HOME/.hledger.journal (on windows, perhaps- C:/Users/USER/.hledger.journal). For more about this see hledger(1),+ Like hledger, it reads data from one or more files in hledger journal,+ timeclock, timedot, or CSV format specified with -f, or $LEDGER_FILE,+ or $HOME/.hledger.journal (on windows, perhaps+ C:/Users/USER/.hledger.journal). For more about this see hledger(1), hledger_journal(5) etc. - Unlike hledger, hledger-ui hides all future-dated transactions by- default. They can be revealed, along with any rule-generated periodic- transactions, by pressing the F key (or starting with --forecast) to+ Unlike hledger, hledger-ui hides all future-dated transactions by+ default. They can be revealed, along with any rule-generated periodic+ transactions, by pressing the F key (or starting with --forecast) to enable "forecast mode". OPTIONS- Note: if invoking hledger-ui as a hledger subcommand, write -- before+ Note: if invoking hledger-ui as a hledger subcommand, write -- before options as shown above. - Any QUERYARGS are interpreted as a hledger search query which filters+ Any QUERYARGS are interpreted as a hledger search query which filters the data. --watch@@ -50,7 +51,7 @@ start in the (first) matched account's register screen --change- show period balances (changes) at startup instead of historical+ show period balances (changes) at startup instead of historical balances -l --flat@@ -66,7 +67,7 @@ $LEDGER_FILE or $HOME/.hledger.journal) --rules-file=RULESFILE- Conversion rules file to use when reading CSV (default:+ Conversion rules file to use when reading CSV (default: FILE.rules) --separator=CHAR@@ -85,7 +86,7 @@ assignments) -s --strict- do extra error checking (check that all posted accounts are+ do extra error checking (check that all posted accounts are declared) hledger reporting options:@@ -112,11 +113,11 @@ multiperiod/multicolumn report by year -p --period=PERIODEXP- set start date, end date, and/or reporting interval all at once+ set start date, end date, and/or reporting interval all at once using period expressions syntax --date2- match the secondary date instead (see command help for other+ match the secondary date instead (see command help for other effects) -U --unmarked@@ -135,25 +136,26 @@ hide/aggregate accounts or postings more than NUM levels deep -E --empty- show items with zero amount, normally hidden (and vice-versa in+ show items with zero amount, normally hidden (and vice-versa in hledger-ui/hledger-web) -B --cost convert amounts to their cost/selling amount at transaction time -V --market- convert amounts to their market value in default valuation com-+ convert amounts to their market value in default valuation com- modities -X --exchange=COMM convert amounts to their market value in commodity COMM --value- convert amounts to cost or market value, more flexibly than+ convert amounts to cost or market value, more flexibly than -B/-V/-X - --infer-value- with -V/-X/--value, also infer market prices from transactions+ --infer-market-prices+ use transaction prices (recorded with @ or @@) as additional+ market prices, as if they were P directives --auto apply automated posting rules to modify transactions. @@ -177,10 +179,14 @@ hledger help options: -h --help- show general usage (or after COMMAND, command usage)+ show general or COMMAND help + --man show general or COMMAND user manual with man++ --info show general or COMMAND user manual with info+ --version- show version+ show general or ADDONCMD version --debug[=N] show debug output (levels 1-9, default: 1)@@ -455,9 +461,6 @@ SEE ALSO hledger(1), hledger-ui(1), hledger-web(1), ledger(1) - hledger_journal(5), hledger_csv(5), hledger_timeclock(5), hledger_time-- dot(5) --hledger-ui-1.20.4 December 2020 HLEDGER-UI(1)+hledger-ui-1.21 December 2020 HLEDGER-UI(1)
embeddedfiles/hledger-web.1 view
@@ -1,11 +1,12 @@ -.TH "HLEDGER-WEB" "1" "December 2020" "hledger-web-1.20.4 " "hledger User Manuals"+.TH "HLEDGER-WEB" "1" "December 2020" "hledger-web-1.21 " "hledger User Manuals" .SH NAME .PP-A web interface (WUI) for the hledger accounting tool.+hledger-web is a web interface (WUI) for the hledger accounting tool.+This manual is for hledger-web 1.21. .SH SYNOPSIS .PP \f[C]hledger-web [OPTIONS]\f[R]@@ -183,8 +184,9 @@ \f[B]\f[CB]--value\f[B]\f[R] convert amounts to cost or market value, more flexibly than -B/-V/-X .TP-\f[B]\f[CB]--infer-value\f[B]\f[R]-with -V/-X/--value, also infer market prices from transactions+\f[B]\f[CB]--infer-market-prices\f[B]\f[R]+use transaction prices (recorded with \[at] or \[at]\[at]) as additional+market prices, as if they were P directives .TP \f[B]\f[CB]--auto\f[B]\f[R] apply automated posting rules to modify transactions.@@ -211,10 +213,16 @@ hledger help options: .TP \f[B]\f[CB]-h --help\f[B]\f[R]-show general usage (or after COMMAND, command usage)+show general or COMMAND help .TP+\f[B]\f[CB]--man\f[B]\f[R]+show general or COMMAND user manual with man+.TP+\f[B]\f[CB]--info\f[B]\f[R]+show general or COMMAND user manual with info+.TP \f[B]\f[CB]--version\f[B]\f[R]-show version+show general or ADDONCMD version .TP \f[B]\f[CB]--debug[=N]\f[B]\f[R] show debug output (levels 1-9, default: 1)@@ -611,5 +619,3 @@ .SH SEE ALSO hledger(1), hledger\-ui(1), hledger\-web(1), ledger(1)--hledger_journal(5), hledger_csv(5), hledger_timeclock(5), hledger_timedot(5)
embeddedfiles/hledger-web.info view
@@ -7,7 +7,8 @@ hledger-web(1) ************** -A web interface (WUI) for the hledger accounting tool.+hledger-web is a web interface (WUI) for the hledger accounting tool.+This manual is for hledger-web 1.21. `hledger-web [OPTIONS]' `hledger web -- [OPTIONS]'@@ -194,8 +195,9 @@ convert amounts to cost or market value, more flexibly than -B/-V/-X -`--infer-value'- with -V/-X/-value, also infer market prices from transactions+`--infer-market-prices'+ use transaction prices (recorded with @ or @@) as additional market+ prices, as if they were P directives `--auto' apply automated posting rules to modify transactions.@@ -220,10 +222,16 @@ hledger help options: `-h --help'- show general usage (or after COMMAND, command usage)+ show general or COMMAND help +`--man'+ show general or COMMAND user manual with man++`--info'+ show general or COMMAND user manual with info+ `--version'- show version+ show general or ADDONCMD version `--debug[=N]' show debug output (levels 1-9, default: 1)@@ -599,21 +607,21 @@ Tag Table: Node: Top84-Node: OPTIONS1696-Ref: #options1801-Node: PERMISSIONS8880-Ref: #permissions9019-Node: EDITING UPLOADING DOWNLOADING10231-Ref: #editing-uploading-downloading10412-Node: RELOADING11243-Ref: #reloading11377-Node: JSON API11809-Ref: #json-api11923-Node: ENVIRONMENT17412-Ref: #environment17528-Node: FILES18260-Ref: #files18360-Node: BUGS18573-Ref: #bugs18651+Node: OPTIONS1748+Ref: #options1853+Node: PERMISSIONS9104+Ref: #permissions9243+Node: EDITING UPLOADING DOWNLOADING10455+Ref: #editing-uploading-downloading10636+Node: RELOADING11467+Ref: #reloading11601+Node: JSON API12033+Ref: #json-api12147+Node: ENVIRONMENT17636+Ref: #environment17752+Node: FILES18484+Ref: #files18584+Node: BUGS18797+Ref: #bugs18875 End Tag Table
embeddedfiles/hledger-web.txt view
@@ -4,50 +4,51 @@ NAME- A web interface (WUI) for the hledger accounting tool.+ hledger-web is a web interface (WUI) for the hledger accounting tool.+ This manual is for hledger-web 1.21. SYNOPSIS hledger-web [OPTIONS] hledger web -- [OPTIONS] DESCRIPTION- hledger is a reliable, cross-platform set of programs for tracking- money, time, or any other commodity, using double-entry accounting and- a simple, editable file format. hledger is inspired by and largely+ hledger is a reliable, cross-platform set of programs for tracking+ money, time, or any other commodity, using double-entry accounting and+ a simple, editable file format. hledger is inspired by and largely compatible with ledger(1). - hledger-web is hledger's web interface. It starts a simple web appli-+ hledger-web is hledger's web interface. It starts a simple web appli- cation for browsing and adding transactions, and optionally opens it in- a web browser window if possible. It provides a more user-friendly UI- than the hledger CLI or hledger-ui interface, showing more at once- (accounts, the current account register, balance charts) and allowing+ a web browser window if possible. It provides a more user-friendly UI+ than the hledger CLI or hledger-ui interface, showing more at once+ (accounts, the current account register, balance charts) and allowing history-aware data entry, interactive searching, and bookmarking. - hledger-web also lets you share a ledger with multiple users, or even- the public web. There is no access control, so if you need that you- should put it behind a suitable web proxy. As a small protection- against data loss when running an unprotected instance, it writes a+ hledger-web also lets you share a ledger with multiple users, or even+ the public web. There is no access control, so if you need that you+ should put it behind a suitable web proxy. As a small protection+ against data loss when running an unprotected instance, it writes a numbered backup of the main journal file (only ?) on every edit. - Like hledger, it reads data from one or more files in hledger journal,- timeclock, timedot, or CSV format specified with -f, or $LEDGER_FILE,- or $HOME/.hledger.journal (on windows, perhaps- C:/Users/USER/.hledger.journal). For more about this see hledger(1),+ Like hledger, it reads data from one or more files in hledger journal,+ timeclock, timedot, or CSV format specified with -f, or $LEDGER_FILE,+ or $HOME/.hledger.journal (on windows, perhaps+ C:/Users/USER/.hledger.journal). For more about this see hledger(1), hledger_journal(5) etc. OPTIONS Command-line options and arguments may be used to set an initial filter- on the data. These filter options are not shown in the web UI, but it+ on the data. These filter options are not shown in the web UI, but it will be applied in addition to any search query entered there. - Note: if invoking hledger-web as a hledger subcommand, write -- before+ Note: if invoking hledger-web as a hledger subcommand, write -- before options, as shown in the synopsis above. --serve serve and log requests, don't browse or auto-exit --serve-api- like --serve, but serve only the JSON web API, without the+ like --serve, but serve only the JSON web API, without the server-side web UI --host=IPADDR@@ -57,30 +58,30 @@ listen on this TCP port (default: 5000) --socket=SOCKETFILE- use a unix domain socket file to listen for requests instead of- a TCP socket. Implies --serve. It can only be used if the+ use a unix domain socket file to listen for requests instead of+ a TCP socket. Implies --serve. It can only be used if the operating system can provide this type of socket. --base-url=URL- set the base url (default: http://IPADDR:PORT). You would+ set the base url (default: http://IPADDR:PORT). You would change this when sharing over the network, or integrating within a larger website. --file-url=URL set the static files url (default: BASEURL/static). hledger-web- normally serves static files itself, but if you wanted to serve- them from another server for efficiency, you would set the url+ normally serves static files itself, but if you wanted to serve+ them from another server for efficiency, you would set the url with this. --capabilities=CAP[,CAP..]- enable the view, add, and/or manage capabilities (default:+ enable the view, add, and/or manage capabilities (default: view,add) --capabilities-header=HTTPHEADER- read capabilities to enable from a HTTP header, like X-Sand-+ read capabilities to enable from a HTTP header, like X-Sand- storm-Permissions (default: disabled) - --test run hledger-web's tests and exit. hspec test runner args may+ --test run hledger-web's tests and exit. hspec test runner args may follow a --, eg: hledger-web --test -- --help hledger input options:@@ -90,7 +91,7 @@ $LEDGER_FILE or $HOME/.hledger.journal) --rules-file=RULESFILE- Conversion rules file to use when reading CSV (default:+ Conversion rules file to use when reading CSV (default: FILE.rules) --separator=CHAR@@ -109,7 +110,7 @@ assignments) -s --strict- do extra error checking (check that all posted accounts are+ do extra error checking (check that all posted accounts are declared) hledger reporting options:@@ -136,11 +137,11 @@ multiperiod/multicolumn report by year -p --period=PERIODEXP- set start date, end date, and/or reporting interval all at once+ set start date, end date, and/or reporting interval all at once using period expressions syntax --date2- match the secondary date instead (see command help for other+ match the secondary date instead (see command help for other effects) -U --unmarked@@ -159,25 +160,26 @@ hide/aggregate accounts or postings more than NUM levels deep -E --empty- show items with zero amount, normally hidden (and vice-versa in+ show items with zero amount, normally hidden (and vice-versa in hledger-ui/hledger-web) -B --cost convert amounts to their cost/selling amount at transaction time -V --market- convert amounts to their market value in default valuation com-+ convert amounts to their market value in default valuation com- modities -X --exchange=COMM convert amounts to their market value in commodity COMM --value- convert amounts to cost or market value, more flexibly than+ convert amounts to cost or market value, more flexibly than -B/-V/-X - --infer-value- with -V/-X/--value, also infer market prices from transactions+ --infer-market-prices+ use transaction prices (recorded with @ or @@) as additional+ market prices, as if they were P directives --auto apply automated posting rules to modify transactions. @@ -201,10 +203,14 @@ hledger help options: -h --help- show general usage (or after COMMAND, command usage)+ show general or COMMAND help + --man show general or COMMAND user manual with man++ --info show general or COMMAND user manual with info+ --version- show version+ show general or ADDONCMD version --debug[=N] show debug output (levels 1-9, default: 1)@@ -547,9 +553,6 @@ SEE ALSO hledger(1), hledger-ui(1), hledger-web(1), ledger(1) - hledger_journal(5), hledger_csv(5), hledger_timeclock(5), hledger_time-- dot(5) --hledger-web-1.20.4 December 2020 HLEDGER-WEB(1)+hledger-web-1.21 December 2020 HLEDGER-WEB(1)
embeddedfiles/hledger.1 view
@@ -1,4963 +1,9371 @@ .\"t -.TH "HLEDGER" "1" "December 2020" "hledger-1.20.4 " "hledger User Manuals"----.SH NAME-.PP-A command-line accounting tool for both power users and folks new to-accounting.-.SH SYNOPSIS-.PP-\f[C]hledger\f[R]-.PP-\f[C]hledger [-f FILE] COMMAND [OPTIONS] [ARGS]\f[R]-.PP-\f[C]hledger [-f FILE] ADDONCMD -- [OPTIONS] [ARGS]\f[R]-.SH DESCRIPTION-.PP-hledger is a reliable, cross-platform set of programs for tracking-money, time, or any other commodity, using double-entry accounting and a-simple, editable file format.-hledger is inspired by and largely compatible with ledger(1).-.PP-This is hledger\[cq]s command-line interface (there are also terminal-and web interfaces).-Its basic function is to read a plain text file describing financial-transactions (in accounting terms, a general journal) and print useful-reports on standard output, or export them as CSV.-hledger can also read some other file formats such as CSV files,-translating them to journal format.-Additionally, hledger lists other hledger-* executables found in the-user\[cq]s $PATH and can invoke them as subcommands.-.PP-hledger reads data from one or more files in hledger journal, timeclock,-timedot, or CSV format specified with \f[C]-f\f[R], or-\f[C]$LEDGER_FILE\f[R], or \f[C]$HOME/.hledger.journal\f[R] (on windows,-perhaps \f[C]C:/Users/USER/.hledger.journal\f[R]).-If using \f[C]$LEDGER_FILE\f[R], note this must be a real environment-variable, not a shell variable.-You can specify standard input with \f[C]-f-\f[R].-.PP-Transactions are dated movements of money between two (or more) named-accounts, and are recorded with journal entries like this:-.IP-.nf-\f[C]-2015/10/16 bought food- expenses:food $10- assets:cash-\f[R]-.fi-.PP-For more about this format, see hledger_journal(5).-.PP-Most users use a text editor to edit the journal, usually with an editor-mode such as ledger-mode for added convenience.-hledger\[cq]s interactive add command is another way to record new-transactions.-hledger never changes existing transactions.-.PP-To get started, you can either save some entries like the above in-\f[C]\[ti]/.hledger.journal\f[R], or run \f[C]hledger add\f[R] and-follow the prompts.-Then try some commands like \f[C]hledger print\f[R] or-\f[C]hledger balance\f[R].-Run \f[C]hledger\f[R] with no arguments for a list of commands.-.SH COMMON TASKS-.PP-Here are some quick examples of how to do some basic tasks with hledger.-For more details, see the reference section below, the-hledger_journal(5) manual, or the more extensive docs at-https://hledger.org.-.SS Getting help-.IP-.nf-\f[C]-$ hledger # show available commands-$ hledger --help # show common options-$ hledger CMD --help # show common and command options, and command help-$ hledger help # show available manuals/topics-$ hledger help hledger # show hledger manual as info/man/text (auto-chosen)-$ hledger help journal --man # show the journal manual as a man page-$ hledger help --help # show more detailed help for the help command-\f[R]-.fi-.PP-Find more docs, chat, mail list, reddit, issue tracker:-https://hledger.org#help-feedback-.SS Constructing command lines-.PP-hledger has an extensive and powerful command line interface.-We strive to keep it simple and ergonomic, but you may run into one of-the confusing real world details described in OPTIONS, below.-If that happens, here are some tips that may help:-.IP \[bu] 2-command-specific options must go after the command (it\[aq]s fine to put-all options there) (\f[C]hledger CMD OPTS ARGS\f[R])-.IP \[bu] 2-running add-on executables directly simplifies command line parsing-(\f[C]hledger-ui OPTS ARGS\f[R])-.IP \[bu] 2-enclose \[dq]problematic\[dq] args in single quotes-.IP \[bu] 2-if needed, also add a backslash to hide regular expression-metacharacters from the shell-.IP \[bu] 2-to see how a misbehaving command is being parsed, add-\f[C]--debug=2\f[R].-.SS Starting a journal file-.PP-hledger looks for your accounting data in a journal file,-\f[C]$HOME/.hledger.journal\f[R] by default:-.IP-.nf-\f[C]-$ hledger stats-The hledger journal file \[dq]/Users/simon/.hledger.journal\[dq] was not found.-Please create it first, eg with \[dq]hledger add\[dq] or a text editor.-Or, specify an existing journal file with -f or LEDGER_FILE.-\f[R]-.fi-.PP-You can override this by setting the \f[C]LEDGER_FILE\f[R] environment-variable.-It\[aq]s a good practice to keep this important file under version-control, and to start a new file each year.-So you could do something like this:-.IP-.nf-\f[C]-$ mkdir \[ti]/finance-$ cd \[ti]/finance-$ git init-Initialized empty Git repository in /Users/simon/finance/.git/-$ touch 2020.journal-$ echo \[dq]export LEDGER_FILE=$HOME/finance/2020.journal\[dq] >> \[ti]/.bashrc-$ source \[ti]/.bashrc-$ hledger stats-Main file : /Users/simon/finance/2020.journal-Included files : -Transactions span : to (0 days)-Last transaction : none-Transactions : 0 (0.0 per day)-Transactions last 30 days: 0 (0.0 per day)-Transactions last 7 days : 0 (0.0 per day)-Payees/descriptions : 0-Accounts : 0 (depth 0)-Commodities : 0 ()-Market prices : 0 ()-\f[R]-.fi-.SS Setting opening balances-.PP-Pick a starting date for which you can look up the balances of some-real-world assets (bank accounts, wallet..) and liabilities (credit-cards..).-.PP-To avoid a lot of data entry, you may want to start with just one or two-accounts, like your checking account or cash wallet; and pick a recent-starting date, like today or the start of the week.-You can always come back later and add more accounts and older-transactions, eg going back to january 1st.-.PP-Add an opening balances transaction to the journal, declaring the-balances on this date.-Here are two ways to do it:-.IP \[bu] 2-The first way: open the journal in any text editor and save an entry-like this:-.RS 2-.IP-.nf-\f[C]-2020-01-01 * opening balances- assets:bank:checking $1000 = $1000- assets:bank:savings $2000 = $2000- assets:cash $100 = $100- liabilities:creditcard $-50 = $-50- equity:opening/closing balances-\f[R]-.fi-.PP-These are start-of-day balances, ie whatever was in the account at the-end of the previous day.-.PP-The * after the date is an optional status flag.-Here it means \[dq]cleared & confirmed\[dq].-.PP-The currency symbols are optional, but usually a good idea as you\[aq]ll-be dealing with multiple currencies sooner or later.-.PP-The = amounts are optional balance assertions, providing extra error-checking.-.RE-.IP \[bu] 2-The second way: run \f[C]hledger add\f[R] and follow the prompts to-record a similar transaction:-.RS 2-.IP-.nf-\f[C]-$ hledger add-Adding transactions to journal file /Users/simon/finance/2020.journal-Any command line arguments will be used as defaults.-Use tab key to complete, readline keys to edit, enter to accept defaults.-An optional (CODE) may follow transaction dates.-An optional ; COMMENT may follow descriptions or amounts.-If you make a mistake, enter < at any prompt to go one step backward.-To end a transaction, enter . when prompted.-To quit, enter . at a date prompt or press control-d or control-c.-Date [2020-02-07]: 2020-01-01-Description: * opening balances-Account 1: assets:bank:checking-Amount 1: $1000-Account 2: assets:bank:savings-Amount 2 [$-1000]: $2000-Account 3: assets:cash-Amount 3 [$-3000]: $100-Account 4: liabilities:creditcard-Amount 4 [$-3100]: $-50-Account 5: equity:opening/closing balances-Amount 5 [$-3050]: -Account 6 (or . or enter to finish this transaction): .-2020-01-01 * opening balances- assets:bank:checking $1000- assets:bank:savings $2000- assets:cash $100- liabilities:creditcard $-50- equity:opening/closing balances $-3050--Save this transaction to the journal ? [y]: -Saved.-Starting the next transaction (. or ctrl-D/ctrl-C to quit)-Date [2020-01-01]: .-\f[R]-.fi-.RE-.PP-If you\[aq]re using version control, this could be a good time to commit-the journal.-Eg:-.IP-.nf-\f[C]-$ git commit -m \[aq]initial balances\[aq] 2020.journal-\f[R]-.fi-.SS Recording transactions-.PP-As you spend or receive money, you can record these transactions using-one of the methods above (text editor, hledger add) or by using the-hledger-iadd or hledger-web add-ons, or by using the import command to-convert CSV data downloaded from your bank.-.PP-Here are some simple transactions, see the hledger_journal(5) manual and-hledger.org for more ideas:-.IP-.nf-\f[C]-2020/1/10 * gift received- assets:cash $20- income:gifts--2020.1.12 * farmers market- expenses:food $13- assets:cash--2020-01-15 paycheck- income:salary- assets:bank:checking $1000-\f[R]-.fi-.SS Reconciling-.PP-Periodically you should reconcile - compare your hledger-reported-balances against external sources of truth, like bank statements or your-bank\[aq]s website - to be sure that your ledger accurately represents-the real-world balances (and, that the real-world institutions have not-made a mistake!).-This gets easy and fast with (1) practice and (2) frequency.-If you do it daily, it can take 2-10 minutes.-If you let it pile up, expect it to take longer as you hunt down errors-and discrepancies.-.PP-A typical workflow:-.IP "1." 3-Reconcile cash.-Count what\[aq]s in your wallet.-Compare with what hledger reports (\f[C]hledger bal cash\f[R]).-If they are different, try to remember the missing transaction, or look-for the error in the already-recorded transactions.-A register report can be helpful (\f[C]hledger reg cash\f[R]).-If you can\[aq]t find the error, add an adjustment transaction.-Eg if you have $105 after the above, and can\[aq]t explain the missing-$2, it could be:-.RS 4-.IP-.nf-\f[C]-2020-01-16 * adjust cash- assets:cash $-2 = $105- expenses:misc-\f[R]-.fi-.RE-.IP "2." 3-Reconcile checking.-Log in to your bank\[aq]s website.-Compare today\[aq]s (cleared) balance with hledger\[aq]s cleared balance-(\f[C]hledger bal checking -C\f[R]).-If they are different, track down the error or record the missing-transaction(s) or add an adjustment transaction, similar to the above.-Unlike the cash case, you can usually compare the transaction history-and running balance from your bank with the one reported by-\f[C]hledger reg checking -C\f[R].-This will be easier if you generally record transaction dates quite-similar to your bank\[aq]s clearing dates.-.IP "3." 3-Repeat for other asset/liability accounts.-.PP-Tip: instead of the register command, use hledger-ui to see a-live-updating register while you edit the journal:-\f[C]hledger-ui --watch --register checking -C\f[R]-.PP-After reconciling, it could be a good time to mark the reconciled-transactions\[aq] status as \[dq]cleared and confirmed\[dq], if you want-to track that, by adding the \f[C]*\f[R] marker.-Eg in the paycheck transaction above, insert \f[C]*\f[R] between-\f[C]2020-01-15\f[R] and \f[C]paycheck\f[R]-.PP-If you\[aq]re using version control, this can be another good time to-commit:-.IP-.nf-\f[C]-$ git commit -m \[aq]txns\[aq] 2020.journal-\f[R]-.fi-.SS Reporting-.PP-Here are some basic reports.-.PP-Show all transactions:-.IP-.nf-\f[C]-$ hledger print-2020-01-01 * opening balances- assets:bank:checking $1000- assets:bank:savings $2000- assets:cash $100- liabilities:creditcard $-50- equity:opening/closing balances $-3050--2020-01-10 * gift received- assets:cash $20- income:gifts--2020-01-12 * farmers market- expenses:food $13- assets:cash--2020-01-15 * paycheck- income:salary- assets:bank:checking $1000--2020-01-16 * adjust cash- assets:cash $-2 = $105- expenses:misc-\f[R]-.fi-.PP-Show account names, and their hierarchy:-.IP-.nf-\f[C]-$ hledger accounts --tree-assets- bank- checking- savings- cash-equity- opening/closing balances-expenses- food- misc-income- gifts- salary-liabilities- creditcard-\f[R]-.fi-.PP-Show all account totals:-.IP-.nf-\f[C]-$ hledger balance- $4105 assets- $4000 bank- $2000 checking- $2000 savings- $105 cash- $-3050 equity:opening/closing balances- $15 expenses- $13 food- $2 misc- $-1020 income- $-20 gifts- $-1000 salary- $-50 liabilities:creditcard---------------------- 0-\f[R]-.fi-.PP-Show only asset and liability balances, as a flat list, limited to depth-2:-.IP-.nf-\f[C]-$ hledger bal assets liabilities --flat -2- $4000 assets:bank- $105 assets:cash- $-50 liabilities:creditcard---------------------- $4055-\f[R]-.fi-.PP-Show the same thing without negative numbers, formatted as a simple-balance sheet:-.IP-.nf-\f[C]-$ hledger bs --flat -2-Balance Sheet 2020-01-16-- || 2020-01-16 -========================++============- Assets || -------------------------++------------- assets:bank || $4000 - assets:cash || $105 -------------------------++------------- || $4105 -========================++============- Liabilities || -------------------------++------------- liabilities:creditcard || $50 -------------------------++------------- || $50 -========================++============- Net: || $4055 -\f[R]-.fi-.PP-The final total is your \[dq]net worth\[dq] on the end date.-(Or use \f[C]bse\f[R] for a full balance sheet with equity.)-.PP-Show income and expense totals, formatted as an income statement:-.IP-.nf-\f[C]-hledger is -Income Statement 2020-01-01-2020-01-16-- || 2020-01-01-2020-01-16 -===============++=======================- Revenues || ----------------++------------------------ income:gifts || $20 - income:salary || $1000 ----------------++------------------------ || $1020 -===============++=======================- Expenses || ----------------++------------------------ expenses:food || $13 - expenses:misc || $2 ----------------++------------------------ || $15 -===============++=======================- Net: || $1005 -\f[R]-.fi-.PP-The final total is your net income during this period.-.PP-Show transactions affecting your wallet, with running total:-.IP-.nf-\f[C]-$ hledger register cash-2020-01-01 opening balances assets:cash $100 $100-2020-01-10 gift received assets:cash $20 $120-2020-01-12 farmers market assets:cash $-13 $107-2020-01-16 adjust cash assets:cash $-2 $105-\f[R]-.fi-.PP-Show weekly posting counts as a bar chart:-.IP-.nf-\f[C]-$ hledger activity -W-2019-12-30 *****-2020-01-06 ****-2020-01-13 ****-\f[R]-.fi-.SS Migrating to a new file-.PP-At the end of the year, you may want to continue your journal in a new-file, so that old transactions don\[aq]t slow down or clutter your-reports, and to help ensure the integrity of your accounting history.-See the close command.-.PP-If using version control, don\[aq]t forget to \f[C]git add\f[R] the new-file.-.SH OPTIONS-.SS General options-.PP-To see general usage help, including general options which are supported-by most hledger commands, run \f[C]hledger -h\f[R].-.PP-General help options:-.TP-\f[B]\f[CB]-h --help\f[B]\f[R]-show general usage (or after COMMAND, command usage)-.TP-\f[B]\f[CB]--version\f[B]\f[R]-show version-.TP-\f[B]\f[CB]--debug[=N]\f[B]\f[R]-show debug output (levels 1-9, default: 1)-.PP-General input options:-.TP-\f[B]\f[CB]-f FILE --file=FILE\f[B]\f[R]-use a different input file.-For stdin, use - (default: \f[C]$LEDGER_FILE\f[R] or-\f[C]$HOME/.hledger.journal\f[R])-.TP-\f[B]\f[CB]--rules-file=RULESFILE\f[B]\f[R]-Conversion rules file to use when reading CSV (default: FILE.rules)-.TP-\f[B]\f[CB]--separator=CHAR\f[B]\f[R]-Field separator to expect when reading CSV (default: \[aq],\[aq])-.TP-\f[B]\f[CB]--alias=OLD=NEW\f[B]\f[R]-rename accounts named OLD to NEW-.TP-\f[B]\f[CB]--anon\f[B]\f[R]-anonymize accounts and payees-.TP-\f[B]\f[CB]--pivot FIELDNAME\f[B]\f[R]-use some other field or tag for the account name-.TP-\f[B]\f[CB]-I --ignore-assertions\f[B]\f[R]-disable balance assertion checks (note: does not disable balance-assignments)-.TP-\f[B]\f[CB]-s --strict\f[B]\f[R]-do extra error checking (check that all posted accounts are declared)-.PP-General reporting options:-.TP-\f[B]\f[CB]-b --begin=DATE\f[B]\f[R]-include postings/txns on or after this date-.TP-\f[B]\f[CB]-e --end=DATE\f[B]\f[R]-include postings/txns before this date-.TP-\f[B]\f[CB]-D --daily\f[B]\f[R]-multiperiod/multicolumn report by day-.TP-\f[B]\f[CB]-W --weekly\f[B]\f[R]-multiperiod/multicolumn report by week-.TP-\f[B]\f[CB]-M --monthly\f[B]\f[R]-multiperiod/multicolumn report by month-.TP-\f[B]\f[CB]-Q --quarterly\f[B]\f[R]-multiperiod/multicolumn report by quarter-.TP-\f[B]\f[CB]-Y --yearly\f[B]\f[R]-multiperiod/multicolumn report by year-.TP-\f[B]\f[CB]-p --period=PERIODEXP\f[B]\f[R]-set start date, end date, and/or reporting interval all at once using-period expressions syntax-.TP-\f[B]\f[CB]--date2\f[B]\f[R]-match the secondary date instead (see command help for other effects)-.TP-\f[B]\f[CB]-U --unmarked\f[B]\f[R]-include only unmarked postings/txns (can combine with -P or -C)-.TP-\f[B]\f[CB]-P --pending\f[B]\f[R]-include only pending postings/txns-.TP-\f[B]\f[CB]-C --cleared\f[B]\f[R]-include only cleared postings/txns-.TP-\f[B]\f[CB]-R --real\f[B]\f[R]-include only non-virtual postings-.TP-\f[B]\f[CB]-NUM --depth=NUM\f[B]\f[R]-hide/aggregate accounts or postings more than NUM levels deep-.TP-\f[B]\f[CB]-E --empty\f[B]\f[R]-show items with zero amount, normally hidden (and vice-versa in-hledger-ui/hledger-web)-.TP-\f[B]\f[CB]-B --cost\f[B]\f[R]-convert amounts to their cost/selling amount at transaction time-.TP-\f[B]\f[CB]-V --market\f[B]\f[R]-convert amounts to their market value in default valuation commodities-.TP-\f[B]\f[CB]-X --exchange=COMM\f[B]\f[R]-convert amounts to their market value in commodity COMM-.TP-\f[B]\f[CB]--value\f[B]\f[R]-convert amounts to cost or market value, more flexibly than -B/-V/-X-.TP-\f[B]\f[CB]--infer-value\f[B]\f[R]-with -V/-X/--value, also infer market prices from transactions-.TP-\f[B]\f[CB]--auto\f[B]\f[R]-apply automated posting rules to modify transactions.-.TP-\f[B]\f[CB]--forecast\f[B]\f[R]-generate future transactions from periodic transaction rules, for the-next 6 months or till report end date.-In hledger-ui, also make ordinary future transactions visible.-.TP-\f[B]\f[CB]--color=WHEN (or --colour=WHEN)\f[B]\f[R]-Should color-supporting commands use ANSI color codes in text output.-\[aq]auto\[aq] (default): whenever stdout seems to be a color-supporting-terminal.-\[aq]always\[aq] or \[aq]yes\[aq]: always, useful eg when piping output-into \[aq]less -R\[aq].-\[aq]never\[aq] or \[aq]no\[aq]: never.-A NO_COLOR environment variable overrides this.-.PP-When a reporting option appears more than once in the command line, the-last one takes precedence.-.PP-Some reporting options can also be written as query arguments.-.SS Command options-.PP-To see options for a particular command, including command-specific-options, run: \f[C]hledger COMMAND -h\f[R].-.PP-Command-specific options must be written after the command name, eg:-\f[C]hledger print -x\f[R].-.PP-Additionally, if the command is an add-on, you may need to put its-options after a double-hyphen, eg: \f[C]hledger ui -- --watch\f[R].-Or, you can run the add-on executable directly:-\f[C]hledger-ui --watch\f[R].-.SS Command arguments-.PP-Most hledger commands accept arguments after the command name, which are-often a query, filtering the data in some way.-.PP-You can save a set of command line options/arguments in a file, and then-reuse them by writing \f[C]\[at]FILENAME\f[R] as a command line-argument.-Eg: \f[C]hledger bal \[at]foo.args\f[R].-(To prevent this, eg if you have an argument that begins with a literal-\f[C]\[at]\f[R], precede it with \f[C]--\f[R], eg:-\f[C]hledger bal -- \[at]ARG\f[R]).-.PP-Inside the argument file, each line should contain just one option or-argument.-Avoid the use of spaces, except inside quotes (or you\[aq]ll see a-confusing error).-Between a flag and its argument, use = (or nothing).-Bad:-.IP-.nf-\f[C]-assets depth:2--X USD-\f[R]-.fi-.PP-Good:-.IP-.nf-\f[C]-assets-depth:2--X=USD-\f[R]-.fi-.PP-For special characters (see below), use one less level of quoting than-you would at the command prompt.-Bad:-.IP-.nf-\f[C]--X\[dq]$\[dq]-\f[R]-.fi-.PP-Good:-.IP-.nf-\f[C]--X$-\f[R]-.fi-.PP-See also: Save frequently used options.-.SS Queries-.PP-One of hledger\[aq]s strengths is being able to quickly report on-precise subsets of your data.-Most commands accept an optional query expression, written as arguments-after the command name, to filter the data by date, account name or-other criteria.-The syntax is similar to a web search: one or more space-separated-search terms, quotes to enclose whitespace, prefixes to match specific-fields, a not: prefix to negate the match.-.PP-We do not yet support arbitrary boolean combinations of search terms;-instead most commands show transactions/postings/accounts which match-(or negatively match):-.IP \[bu] 2-any of the description terms AND-.IP \[bu] 2-any of the account terms AND-.IP \[bu] 2-any of the status terms AND-.IP \[bu] 2-all the other terms.-.PP-The print command instead shows transactions which:-.IP \[bu] 2-match any of the description terms AND-.IP \[bu] 2-have any postings matching any of the positive account terms AND-.IP \[bu] 2-have no postings matching any of the negative account terms AND-.IP \[bu] 2-match all the other terms.-.PP-The following kinds of search terms can be used.-Remember these can also be prefixed with \f[B]\f[CB]not:\f[B]\f[R], eg-to exclude a particular subaccount.-.TP-\f[B]\f[R]\f[C]REGEX\f[R]\f[B], \f[R]\f[C]acct:REGEX\f[R]\f[B]\f[R]-match account names by this regular expression.-(With no prefix, \f[C]acct:\f[R] is assumed.)-same as above-.TP-\f[B]\f[R]\f[C]amt:N, amt:<N, amt:<=N, amt:>N, amt:>=N\f[R]\f[B]\f[R]-match postings with a single-commodity amount that is equal to, less-than, or greater than N.-(Multi-commodity amounts are not tested, and will always match.) The-comparison has two modes: if N is preceded by a + or - sign (or is 0),-the two signed numbers are compared.-Otherwise, the absolute magnitudes are compared, ignoring sign.-.TP-\f[B]\f[R]\f[C]code:REGEX\f[R]\f[B]\f[R]-match by transaction code (eg check number)-.TP-\f[B]\f[R]\f[C]cur:REGEX\f[R]\f[B]\f[R]-match postings or transactions including any amounts whose-currency/commodity symbol is fully matched by REGEX.-(For a partial match, use \f[C].*REGEX.*\f[R]).-Note, to match characters which are regex-significant, like the dollar-sign (\f[C]$\f[R]), you need to prepend \f[C]\[rs]\f[R].-And when using the command line you need to add one more level of-quoting to hide it from the shell, so eg do:-\f[C]hledger print cur:\[aq]\[rs]$\[aq]\f[R] or-\f[C]hledger print cur:\[rs]\[rs]$\f[R].-.TP-\f[B]\f[R]\f[C]desc:REGEX\f[R]\f[B]\f[R]-match transaction descriptions.-.TP-\f[B]\f[R]\f[C]date:PERIODEXPR\f[R]\f[B]\f[R]-match dates within the specified period.-PERIODEXPR is a period expression (with no report interval).-Examples: \f[C]date:2016\f[R], \f[C]date:thismonth\f[R],-\f[C]date:2000/2/1-2/15\f[R], \f[C]date:lastweek-\f[R].-If the \f[C]--date2\f[R] command line flag is present, this matches-secondary dates instead.-.TP-\f[B]\f[R]\f[C]date2:PERIODEXPR\f[R]\f[B]\f[R]-match secondary dates within the specified period.-.TP-\f[B]\f[R]\f[C]depth:N\f[R]\f[B]\f[R]-match (or display, depending on command) accounts at or above this depth-.TP-\f[B]\f[R]\f[C]note:REGEX\f[R]\f[B]\f[R]-match transaction notes (part of description right of \f[C]|\f[R], or-whole description when there\[aq]s no \f[C]|\f[R])-.TP-\f[B]\f[R]\f[C]payee:REGEX\f[R]\f[B]\f[R]-match transaction payee/payer names (part of description left of-\f[C]|\f[R], or whole description when there\[aq]s no \f[C]|\f[R])-.TP-\f[B]\f[R]\f[C]real:, real:0\f[R]\f[B]\f[R]-match real or virtual postings respectively-.TP-\f[B]\f[R]\f[C]status:, status:!, status:*\f[R]\f[B]\f[R]-match unmarked, pending, or cleared transactions respectively-.TP-\f[B]\f[R]\f[C]tag:REGEX[=REGEX]\f[R]\f[B]\f[R]-match by tag name, and optionally also by tag value.-Note a tag: query is considered to match a transaction if it matches any-of the postings.-Also remember that postings inherit the tags of their parent-transaction.-.PP-The following special search term is used automatically in hledger-web,-only:-.TP-\f[B]\f[R]\f[C]inacct:ACCTNAME\f[R]\f[B]\f[R]-tells hledger-web to show the transaction register for this account.-Can be filtered further with \f[C]acct\f[R] etc.-.PP-Some of these can also be expressed as command-line options (eg-\f[C]depth:2\f[R] is equivalent to \f[C]--depth 2\f[R]).-Generally you can mix options and query arguments, and the resulting-query will be their intersection (perhaps excluding the-\f[C]-p/--period\f[R] option).-.SS Special characters in arguments and queries-.PP-In shell command lines, option and argument values which contain-\[dq]problematic\[dq] characters, ie spaces, and also characters-significant to your shell such as \f[C]<\f[R], \f[C]>\f[R], \f[C](\f[R],-\f[C])\f[R], \f[C]|\f[R] and \f[C]$\f[R], should be escaped by enclosing-them in quotes or by writing backslashes before the characters.-Eg:-.PP-\f[C]hledger register -p \[aq]last year\[aq] \[dq]accounts receivable (receivable|payable)\[dq] amt:\[rs]>100\f[R].-.SS More escaping-.PP-Characters significant both to the shell and in regular expressions may-need one extra level of escaping.-These include parentheses, the pipe symbol and the dollar sign.-Eg, to match the dollar symbol, bash users should do:-.PP-\f[C]hledger balance cur:\[aq]\[rs]$\[aq]\f[R]-.PP-or:-.PP-\f[C]hledger balance cur:\[rs]\[rs]$\f[R]-.SS Even more escaping-.PP-When hledger runs an add-on executable (eg you type-\f[C]hledger ui\f[R], hledger runs \f[C]hledger-ui\f[R]), it de-escapes-command-line options and arguments once, so you might need to-\f[I]triple\f[R]-escape.-Eg in bash, running the ui command and matching the dollar sign,-it\[aq]s:-.PP-\f[C]hledger ui cur:\[aq]\[rs]\[rs]$\[aq]\f[R]-.PP-or:-.PP-\f[C]hledger ui cur:\[rs]\[rs]\[rs]\[rs]$\f[R]-.PP-If you asked why \f[I]four\f[R] slashes above, this may help:-.PP-.TS-tab(@);-l l.-T{-unescaped:-T}@T{-\f[C]$\f[R]-T}-T{-escaped:-T}@T{-\f[C]\[rs]$\f[R]-T}-T{-double-escaped:-T}@T{-\f[C]\[rs]\[rs]$\f[R]-T}-T{-triple-escaped:-T}@T{-\f[C]\[rs]\[rs]\[rs]\[rs]$\f[R]-T}-.TE-.PP-(The number of backslashes in fish shell is left as an exercise for the-reader.)-.PP-You can always avoid the extra escaping for add-ons by running the-add-on directly:-.PP-\f[C]hledger-ui cur:\[rs]\[rs]$\f[R]-.SS Less escaping-.PP-Inside an argument file, or in the search field of hledger-ui or-hledger-web, or at a GHCI prompt, you need one less level of escaping-than at the command line.-And backslashes may work better than quotes.-Eg:-.PP-\f[C]ghci> :main balance cur:\[rs]$\f[R]-.SS Unicode characters-.PP-hledger is expected to handle non-ascii characters correctly:-.IP \[bu] 2-they should be parsed correctly in input files and on the command line,-by all hledger tools (add, iadd, hledger-web\[aq]s search/add/edit-forms, etc.)-.IP \[bu] 2-they should be displayed correctly by all hledger tools, and on-screen-alignment should be preserved.-.PP-This requires a well-configured environment.-Here are some tips:-.IP \[bu] 2-A system locale must be configured, and it must be one that can decode-the characters being used.-In bash, you can set a locale like this:-\f[C]export LANG=en_US.UTF-8\f[R].-There are some more details in Troubleshooting.-This step is essential - without it, hledger will quit on encountering a-non-ascii character (as with all GHC-compiled programs).-.IP \[bu] 2-your terminal software (eg Terminal.app, iTerm, CMD.exe, xterm..) must-support unicode-.IP \[bu] 2-the terminal must be using a font which includes the required unicode-glyphs-.IP \[bu] 2-the terminal should be configured to display wide characters as double-width (for report alignment)-.IP \[bu] 2-on Windows, for best results you should run hledger in the same kind of-environment in which it was built.-Eg hledger built in the standard CMD.EXE environment (like the binaries-on our download page) might show display problems when run in a cygwin-or msys terminal, and vice versa.-(See eg #961).-.SS Input files-.PP-hledger reads transactions from a data file (and the add command writes-to it).-By default this file is \f[C]$HOME/.hledger.journal\f[R] (or on Windows,-something like \f[C]C:/Users/USER/.hledger.journal\f[R]).-You can override this with the \f[C]$LEDGER_FILE\f[R] environment-variable:-.IP-.nf-\f[C]-$ setenv LEDGER_FILE \[ti]/finance/2016.journal-$ hledger stats-\f[R]-.fi-.PP-or with the \f[C]-f/--file\f[R] option:-.IP-.nf-\f[C]-$ hledger -f /some/file stats-\f[R]-.fi-.PP-The file name \f[C]-\f[R] (hyphen) means standard input:-.IP-.nf-\f[C]-$ cat some.journal | hledger -f--\f[R]-.fi-.PP-Usually the data file is in hledger\[aq]s journal format, but it can be-in any of the supported file formats, which currently are:-.PP-.TS-tab(@);-lw(7.8n) lw(39.5n) lw(22.7n).-T{-Reader:-T}@T{-Reads:-T}@T{-Used for file extensions:-T}-_-T{-\f[C]journal\f[R]-T}@T{-hledger journal files and some Ledger journals, for transactions-T}@T{-\f[C].journal\f[R] \f[C].j\f[R] \f[C].hledger\f[R] \f[C].ledger\f[R]-T}-T{-\f[C]timeclock\f[R]-T}@T{-timeclock files, for precise time logging-T}@T{-\f[C].timeclock\f[R]-T}-T{-\f[C]timedot\f[R]-T}@T{-timedot files, for approximate time logging-T}@T{-\f[C].timedot\f[R]-T}-T{-\f[C]csv\f[R]-T}@T{-comma/semicolon/tab/other-separated values, for data import-T}@T{-\f[C].csv\f[R] \f[C].ssv\f[R] \f[C].tsv\f[R]-T}-.TE-.PP-hledger detects the format automatically based on the file extensions-shown above.-If it can\[aq]t recognise the file extension, it assumes-\f[C]journal\f[R] format.-So for non-journal files, it\[aq]s important to use a recognised file-extension, so as to either read successfully or to show relevant error-messages.-.PP-When you can\[aq]t ensure the right file extension, not to worry: you-can force a specific reader/format by prefixing the file path with the-format and a colon.-Eg to read a .dat file as csv:-.IP-.nf-\f[C]-$ hledger -f csv:/some/csv-file.dat stats-$ echo \[aq]i 2009/13/1 08:00:00\[aq] | hledger print -ftimeclock:--\f[R]-.fi-.PP-You can specify multiple \f[C]-f\f[R] options, to read multiple files as-one big journal.-There are some limitations with this:-.IP \[bu] 2-directives in one file will not affect the other files-.IP \[bu] 2-balance assertions will not see any account balances from previous files-.PP-If you need either of those things, you can-.IP \[bu] 2-use a single parent file which includes the others-.IP \[bu] 2-or concatenate the files into one before reading, eg:-\f[C]cat a.journal b.journal | hledger -f- CMD\f[R].-.SS Strict mode-.PP-hledger checks input files for valid data.-By default, the most important errors are detected, while still-accepting easy journal files without a lot of declarations:-.IP \[bu] 2-Are the input files parseable, with valid syntax ?-.IP \[bu] 2-Are all transactions balanced ?-.IP \[bu] 2-Do all balance assertions pass ?-.PP-With the \f[C]-s\f[R]/\f[C]--strict\f[R] flag, additional checks are-performed:-.IP \[bu] 2-Are all accounts posted to, declared with an \f[C]account\f[R] directive-?-(Account error checking)-.IP \[bu] 2-Are all commodities declared with a \f[C]commodity\f[R] directive ?-(Commodity error checking)-.PP-See also: https://hledger.org/checking-for-errors.html-.PP-\f[I]experimental.\f[R]-.SS Output destination-.PP-hledger commands send their output to the terminal by default.-You can of course redirect this, eg into a file, using standard shell-syntax:-.IP-.nf-\f[C]-$ hledger print > foo.txt-\f[R]-.fi-.PP-Some commands (print, register, stats, the balance commands) also-provide the \f[C]-o/--output-file\f[R] option, which does the same thing-without needing the shell.-Eg:-.IP-.nf-\f[C]-$ hledger print -o foo.txt-$ hledger print -o - # write to stdout (the default)-\f[R]-.fi-.SS Output format-.PP-Some commands (print, register, the balance commands) offer a choice of-output format.-In addition to the usual plain text format (\f[C]txt\f[R]), there are-CSV (\f[C]csv\f[R]), HTML (\f[C]html\f[R]), JSON (\f[C]json\f[R]) and-SQL (\f[C]sql\f[R]).-This is controlled by the \f[C]-O/--output-format\f[R] option:-.IP-.nf-\f[C]-$ hledger print -O csv-\f[R]-.fi-.PP-or, by a file extension specified with \f[C]-o/--output-file\f[R]:-.IP-.nf-\f[C]-$ hledger balancesheet -o foo.html # write HTML to foo.html-\f[R]-.fi-.PP-The \f[C]-O\f[R] option can be used to override the file extension if-needed:-.IP-.nf-\f[C]-$ hledger balancesheet -o foo.txt -O html # write HTML to foo.txt-\f[R]-.fi-.PP-Some notes about JSON output:-.IP \[bu] 2-This feature is marked experimental, and not yet much used; you should-expect our JSON to evolve.-Real-world feedback is welcome.-.IP \[bu] 2-Our JSON is rather large and verbose, as it is quite a faithful-representation of hledger\[aq]s internal data types.-To understand the JSON, read the Haskell type definitions, which are-mostly in-https://github.com/simonmichael/hledger/blob/master/hledger-lib/Hledger/Data/Types.hs.-.IP \[bu] 2-hledger represents quantities as Decimal values storing up to 255-significant digits, eg for repeating decimals.-Such numbers can arise in practice (from automatically-calculated-transaction prices), and would break most JSON consumers.-So in JSON, we show quantities as simple Numbers with at most 10 decimal-places.-We don\[aq]t limit the number of integer digits, but that part is under-your control.-We hope this approach will not cause problems in practice; if you find-otherwise, please let us know.-(Cf #1195)-.PP-Notes about SQL output:-.IP \[bu] 2-SQL output is also marked experimental, and much like JSON could use-real-world feedback.-.IP \[bu] 2-SQL output is expected to work with sqlite, MySQL and PostgreSQL-.IP \[bu] 2-SQL output is structured with the expectations that statements will be-executed in the empty database.-If you already have tables created via SQL output of hledger, you would-probably want to either clear tables of existing data (via-\f[C]delete\f[R] or \f[C]truncate\f[R] SQL statements) or drop tables-completely as otherwise your postings will be duped.-.SS Regular expressions-.PP-hledger uses regular expressions in a number of places:-.IP \[bu] 2-query terms, on the command line and in the hledger-web search form:-\f[C]REGEX\f[R], \f[C]desc:REGEX\f[R], \f[C]cur:REGEX\f[R],-\f[C]tag:...=REGEX\f[R]-.IP \[bu] 2-CSV rules conditional blocks: \f[C]if REGEX ...\f[R]-.IP \[bu] 2-account alias directives and options:-\f[C]alias /REGEX/ = REPLACEMENT\f[R],-\f[C]--alias /REGEX/=REPLACEMENT\f[R]-.PP-hledger\[aq]s regular expressions come from the regex-tdfa library.-If they\[aq]re not doing what you expect, it\[aq]s important to know-exactly what they support:-.IP "1." 3-they are case insensitive-.IP "2." 3-they are infix matching (they do not need to match the entire thing-being matched)-.IP "3." 3-they are POSIX ERE (extended regular expressions)-.IP "4." 3-they also support GNU word boundaries (\f[C]\[rs]b\f[R],-\f[C]\[rs]B\f[R], \f[C]\[rs]<\f[R], \f[C]\[rs]>\f[R])-.IP "5." 3-they do not support backreferences; if you write \f[C]\[rs]1\f[R], it-will match the digit \f[C]1\f[R].-Except when doing text replacement, eg in account aliases, where-backreferences can be used in the replacement string to reference-capturing groups in the search regexp.-.IP "6." 3-they do not support mode modifiers (\f[C](?s)\f[R]), character classes-(\f[C]\[rs]w\f[R], \f[C]\[rs]d\f[R]), or anything else not mentioned-above.-.PP-Some things to note:-.IP \[bu] 2-In the \f[C]alias\f[R] directive and \f[C]--alias\f[R] option, regular-expressions must be enclosed in forward slashes (\f[C]/REGEX/\f[R]).-Elsewhere in hledger, these are not required.-.IP \[bu] 2-In queries, to match a regular expression metacharacter like \f[C]$\f[R]-as a literal character, prepend a backslash.-Eg to search for amounts with the dollar sign in hledger-web, write-\f[C]cur:\[rs]$\f[R].-.IP \[bu] 2-On the command line, some metacharacters like \f[C]$\f[R] have a special-meaning to the shell and so must be escaped at least once more.-See Special characters.-.SS Smart dates-.PP-hledger\[aq]s user interfaces accept a flexible \[dq]smart date\[dq]-syntax (unlike dates in the journal file).-Smart dates allow some english words, can be relative to today\[aq]s-date, and can have less-significant date parts omitted (defaulting to-1).-.PP-Examples:-.PP-.TS-tab(@);-lw(24.2n) lw(45.8n).-T{-\f[C]2004/10/1\f[R], \f[C]2004-01-01\f[R], \f[C]2004.9.1\f[R]-T}@T{-exact date, several separators allowed.-Year is 4+ digits, month is 1-12, day is 1-31-T}-T{-\f[C]2004\f[R]-T}@T{-start of year-T}-T{-\f[C]2004/10\f[R]-T}@T{-start of month-T}-T{-\f[C]10/1\f[R]-T}@T{-month and day in current year-T}-T{-\f[C]21\f[R]-T}@T{-day in current month-T}-T{-\f[C]october, oct\f[R]-T}@T{-start of month in current year-T}-T{-\f[C]yesterday, today, tomorrow\f[R]-T}@T{--1, 0, 1 days from today-T}-T{-\f[C]last/this/next day/week/month/quarter/year\f[R]-T}@T{--1, 0, 1 periods from the current period-T}-T{-\f[C]20181201\f[R]-T}@T{-8 digit YYYYMMDD with valid year month and day-T}-T{-\f[C]201812\f[R]-T}@T{-6 digit YYYYMM with valid year and month-T}-.TE-.PP-Counterexamples - malformed digit sequences might give surprising-results:-.PP-.TS-tab(@);-lw(11.4n) lw(58.6n).-T{-\f[C]201813\f[R]-T}@T{-6 digits with an invalid month is parsed as start of 6-digit year-T}-T{-\f[C]20181301\f[R]-T}@T{-8 digits with an invalid month is parsed as start of 8-digit year-T}-T{-\f[C]20181232\f[R]-T}@T{-8 digits with an invalid day gives an error-T}-T{-\f[C]201801012\f[R]-T}@T{-9+ digits beginning with a valid YYYYMMDD gives an error-T}-.TE-.SS Report start & end date-.PP-Most hledger reports show the full span of time represented by the-journal data, by default.-So, the effective report start and end dates will be the earliest and-latest transaction or posting dates found in the journal.-.PP-Often you will want to see a shorter time span, such as the current-month.-You can specify a start and/or end date using \f[C]-b/--begin\f[R],-\f[C]-e/--end\f[R], \f[C]-p/--period\f[R] or a \f[C]date:\f[R] query-(described below).-All of these accept the smart date syntax.-.PP-Some notes:-.IP \[bu] 2-As in Ledger, end dates are exclusive, so you need to write the date-\f[I]after\f[R] the last day you want to include.-.IP \[bu] 2-As noted in reporting options: among start/end dates specified with-\f[I]options\f[R], the last (i.e.-right-most) option takes precedence.-.IP \[bu] 2-The effective report start and end dates are the intersection of the-start/end dates from options and that from \f[C]date:\f[R] queries.-That is, \f[C]date:2019-01 date:2019 -p\[aq]2000 to 2030\[aq]\f[R]-yields January 2019, the smallest common time span.-.PP-Examples:-.PP-.TS-tab(@);-lw(12.4n) lw(57.6n).-T{-\f[C]-b 2016/3/17\f[R]-T}@T{-begin on St.\ Patrick\[cq]s day 2016-T}-T{-\f[C]-e 12/1\f[R]-T}@T{-end at the start of december 1st of the current year (11/30 will be the-last date included)-T}-T{-\f[C]-b thismonth\f[R]-T}@T{-all transactions on or after the 1st of the current month-T}-T{-\f[C]-p thismonth\f[R]-T}@T{-all transactions in the current month-T}-T{-\f[C]date:2016/3/17..\f[R]-T}@T{-the above written as queries instead (\f[C]..\f[R] can also be replaced-with \f[C]-\f[R])-T}-T{-\f[C]date:..12/1\f[R]-T}@T{-T}-T{-\f[C]date:thismonth..\f[R]-T}@T{-T}-T{-\f[C]date:thismonth\f[R]-T}@T{-T}-.TE-.SS Report intervals-.PP-A report interval can be specified so that commands like register,-balance and activity will divide their reports into multiple subperiods.-The basic intervals can be selected with one of \f[C]-D/--daily\f[R],-\f[C]-W/--weekly\f[R], \f[C]-M/--monthly\f[R], \f[C]-Q/--quarterly\f[R],-or \f[C]-Y/--yearly\f[R].-More complex intervals may be specified with a period expression.-Report intervals can not be specified with a query.-.SS Period expressions-.PP-The \f[C]-p/--period\f[R] option accepts period expressions, a shorthand-way of expressing a start date, end date, and/or report interval all at-once.-.PP-Here\[aq]s a basic period expression specifying the first quarter of-2009.-Note, hledger always treats start dates as inclusive and end dates as-exclusive:-.PP-\f[C]-p \[dq]from 2009/1/1 to 2009/4/1\[dq]\f[R]-.PP-Keywords like \[dq]from\[dq] and \[dq]to\[dq] are optional, and so are-the spaces, as long as you don\[aq]t run two dates together.-\[dq]to\[dq] can also be written as \[dq]..\[dq] or \[dq]-\[dq].-These are equivalent to the above:-.PP-.TS-tab(@);-l.-T{-\f[C]-p \[dq]2009/1/1 2009/4/1\[dq]\f[R]-T}-T{-\f[C]-p2009/1/1to2009/4/1\f[R]-T}-T{-\f[C]-p2009/1/1..2009/4/1\f[R]-T}-.TE-.PP-Dates are smart dates, so if the current year is 2009, the above can-also be written as:-.PP-.TS-tab(@);-l.-T{-\f[C]-p \[dq]1/1 4/1\[dq]\f[R]-T}-T{-\f[C]-p \[dq]january-apr\[dq]\f[R]-T}-T{-\f[C]-p \[dq]this year to 4/1\[dq]\f[R]-T}-.TE-.PP-If you specify only one date, the missing start or end date will be the-earliest or latest transaction in your journal:-.PP-.TS-tab(@);-l l.-T{-\f[C]-p \[dq]from 2009/1/1\[dq]\f[R]-T}@T{-everything after january 1, 2009-T}-T{-\f[C]-p \[dq]from 2009/1\[dq]\f[R]-T}@T{-the same-T}-T{-\f[C]-p \[dq]from 2009\[dq]\f[R]-T}@T{-the same-T}-T{-\f[C]-p \[dq]to 2009\[dq]\f[R]-T}@T{-everything before january 1, 2009-T}-.TE-.PP-A single date with no \[dq]from\[dq] or \[dq]to\[dq] defines both the-start and end date like so:-.PP-.TS-tab(@);-l l.-T{-\f[C]-p \[dq]2009\[dq]\f[R]-T}@T{-the year 2009; equivalent to \[lq]2009/1/1 to 2010/1/1\[rq]-T}-T{-\f[C]-p \[dq]2009/1\[dq]\f[R]-T}@T{-the month of jan; equivalent to \[lq]2009/1/1 to 2009/2/1\[rq]-T}-T{-\f[C]-p \[dq]2009/1/1\[dq]\f[R]-T}@T{-just that day; equivalent to \[lq]2009/1/1 to 2009/1/2\[rq]-T}-.TE-.PP-Or you can specify a single quarter like so:-.PP-.TS-tab(@);-l l.-T{-\f[C]-p \[dq]2009Q1\[dq]\f[R]-T}@T{-first quarter of 2009, equivalent to \[lq]2009/1/1 to 2009/4/1\[rq]-T}-T{-\f[C]-p \[dq]q4\[dq]\f[R]-T}@T{-fourth quarter of the current year-T}-.TE-.PP-The argument of \f[C]-p\f[R] can also begin with, or be, a report-interval expression.-The basic report intervals are \f[C]daily\f[R], \f[C]weekly\f[R],-\f[C]monthly\f[R], \f[C]quarterly\f[R], or \f[C]yearly\f[R], which have-the same effect as the-\f[C]-D\f[R],\f[C]-W\f[R],\f[C]-M\f[R],\f[C]-Q\f[R], or \f[C]-Y\f[R]-flags.-Between report interval and start/end dates (if any), the word-\f[C]in\f[R] is optional.-Examples:-.PP-.TS-tab(@);-l.-T{-\f[C]-p \[dq]weekly from 2009/1/1 to 2009/4/1\[dq]\f[R]-T}-T{-\f[C]-p \[dq]monthly in 2008\[dq]\f[R]-T}-T{-\f[C]-p \[dq]quarterly\[dq]\f[R]-T}-.TE-.PP-Note that \f[C]weekly\f[R], \f[C]monthly\f[R], \f[C]quarterly\f[R] and-\f[C]yearly\f[R] intervals will always start on the first day on week,-month, quarter or year accordingly, and will end on the last day of same-period, even if associated period expression specifies different-explicit start and end date.-.PP-For example:-.PP-.TS-tab(@);-lw(25.5n) lw(44.5n).-T{-\f[C]-p \[dq]weekly from 2009/1/1 to 2009/4/1\[dq]\f[R]-T}@T{-starts on 2008/12/29, closest preceding Monday-T}-T{-\f[C]-p \[dq]monthly in 2008/11/25\[dq]\f[R]-T}@T{-starts on 2018/11/01-T}-T{-\f[C]-p \[dq]quarterly from 2009-05-05 to 2009-06-01\[dq]\f[R]-T}@T{-starts on 2009/04/01, ends on 2009/06/30, which are first and last days-of Q2 2009-T}-T{-\f[C]-p \[dq]yearly from 2009-12-29\[dq]\f[R]-T}@T{-starts on 2009/01/01, first day of 2009-T}-.TE-.PP-The following more complex report intervals are also supported:-\f[C]biweekly\f[R], \f[C]fortnightly\f[R], \f[C]bimonthly\f[R],-\f[C]every day|week|month|quarter|year\f[R],-\f[C]every N days|weeks|months|quarters|years\f[R].-.PP-All of these will start on the first day of the requested period and end-on the last one, as described above.-.PP-Examples:-.PP-.TS-tab(@);-lw(25.5n) lw(44.5n).-T{-\f[C]-p \[dq]bimonthly from 2008\[dq]\f[R]-T}@T{-periods will have boundaries on 2008/01/01, 2008/03/01, ...-T}-T{-\f[C]-p \[dq]every 2 weeks\[dq]\f[R]-T}@T{-starts on closest preceding Monday-T}-T{-\f[C]-p \[dq]every 5 month from 2009/03\[dq]\f[R]-T}@T{-periods will have boundaries on 2009/03/01, 2009/08/01, ...-T}-.TE-.PP-If you want intervals that start on arbitrary day of your choosing and-span a week, month or year, you need to use any of the following:-.PP-\f[C]every Nth day of week\f[R], \f[C]every WEEKDAYNAME\f[R] (eg-\f[C]mon|tue|wed|thu|fri|sat|sun\f[R]),-\f[C]every Nth day [of month]\f[R],-\f[C]every Nth WEEKDAYNAME [of month]\f[R],-\f[C]every MM/DD [of year]\f[R], \f[C]every Nth MMM [of year]\f[R],-\f[C]every MMM Nth [of year]\f[R].-.PP-Examples:-.PP-.TS-tab(@);-lw(23.9n) lw(46.1n).-T{-\f[C]-p \[dq]every 2nd day of week\[dq]\f[R]-T}@T{-periods will go from Tue to Tue-T}-T{-\f[C]-p \[dq]every Tue\[dq]\f[R]-T}@T{-same-T}-T{-\f[C]-p \[dq]every 15th day\[dq]\f[R]-T}@T{-period boundaries will be on 15th of each month-T}-T{-\f[C]-p \[dq]every 2nd Monday\[dq]\f[R]-T}@T{-period boundaries will be on second Monday of each month-T}-T{-\f[C]-p \[dq]every 11/05\[dq]\f[R]-T}@T{-yearly periods with boundaries on 5th of Nov-T}-T{-\f[C]-p \[dq]every 5th Nov\[dq]\f[R]-T}@T{-same-T}-T{-\f[C]-p \[dq]every Nov 5th\[dq]\f[R]-T}@T{-same-T}-.TE-.PP-Show historical balances at end of 15th each month (N is exclusive end-date):-.PP-\f[C]hledger balance -H -p \[dq]every 16th day\[dq]\f[R]-.PP-Group postings from start of wednesday to end of next tuesday (N is-start date and exclusive end date):-.PP-\f[C]hledger register checking -p \[dq]every 3rd day of week\[dq]\f[R]-.SS Depth limiting-.PP-With the \f[C]--depth N\f[R] option (short form: \f[C]-N\f[R]), commands-like account, balance and register will show only the uppermost accounts-in the account tree, down to level N.-Use this when you want a summary with less detail.-This flag has the same effect as a \f[C]depth:\f[R] query argument (so-\f[C]-2\f[R], \f[C]--depth=2\f[R] or \f[C]depth:2\f[R] are equivalent).-.SS Pivoting-.PP-Normally hledger sums amounts, and organizes them in a hierarchy, based-on account name.-The \f[C]--pivot FIELD\f[R] option causes it to sum and organize-hierarchy based on the value of some other field instead.-FIELD can be: \f[C]code\f[R], \f[C]description\f[R], \f[C]payee\f[R],-\f[C]note\f[R], or the full name (case insensitive) of any tag.-As with account names, values containing \f[C]colon:separated:parts\f[R]-will be displayed hierarchically in reports.-.PP-\f[C]--pivot\f[R] is a general option affecting all reports; you can-think of hledger transforming the journal before any other processing,-replacing every posting\[aq]s account name with the value of the-specified field on that posting, inheriting it from the transaction or-using a blank value if it\[aq]s not present.-.PP-An example:-.IP-.nf-\f[C]-2016/02/16 Member Fee Payment- assets:bank account 2 EUR- income:member fees -2 EUR ; member: John Doe-\f[R]-.fi-.PP-Normal balance report showing account names:-.IP-.nf-\f[C]-$ hledger balance- 2 EUR assets:bank account- -2 EUR income:member fees---------------------- 0-\f[R]-.fi-.PP-Pivoted balance report, using member: tag values instead:-.IP-.nf-\f[C]-$ hledger balance --pivot member- 2 EUR- -2 EUR John Doe---------------------- 0-\f[R]-.fi-.PP-One way to show only amounts with a member: value (using a query,-described below):-.IP-.nf-\f[C]-$ hledger balance --pivot member tag:member=.- -2 EUR John Doe---------------------- -2 EUR-\f[R]-.fi-.PP-Another way (the acct: query matches against the pivoted \[dq]account-name\[dq]):-.IP-.nf-\f[C]-$ hledger balance --pivot member acct:.- -2 EUR John Doe---------------------- -2 EUR-\f[R]-.fi-.SS Valuation-.PP-Instead of reporting amounts in their original commodity, hledger can-convert them to cost/sale amount (using the conversion rate recorded in-the transaction), or to market value (using some market price on a-certain date).-This is controlled by the \f[C]--value=TYPE[,COMMODITY]\f[R] option, but-we also provide the simpler \f[C]-B\f[R]/\f[C]-V\f[R]/\f[C]-X\f[R]-flags, and usually one of those is all you need.-.SS -B: Cost-.PP-The \f[C]-B/--cost\f[R] flag converts amounts to their cost or sale-amount at transaction time, if they have a transaction price specified.-.SS -V: Value-.PP-The \f[C]-V/--market\f[R] flag converts amounts to market value in their-default \f[I]valuation commodity\f[R], using the market prices in effect-on the \f[I]valuation date(s)\f[R], if any.-More on these in a minute.-.SS -X: Value in specified commodity-.PP-The \f[C]-X/--exchange=COMM\f[R] option is like \f[C]-V\f[R], except you-tell it which currency you want to convert to, and it tries to convert-everything to that.-.SS Valuation date-.PP-Since market prices can change from day to day, market value reports-have a valuation date (or more than one), which determines which market-prices will be used.-.PP-For single period reports, if an explicit report end date is specified,-that will be used as the valuation date; otherwise the valuation date is-\[dq]today\[dq].-.PP-For multiperiod reports, each column/period is valued on the last day of-the period, by default.-.SS Market prices-.PP-\f[I](experimental)\f[R]-.PP-To convert a commodity A to its market value in another commodity B,-hledger looks for a suitable market price (exchange rate) as follows, in-this order of preference :-.IP "1." 3-A \f[I]declared market price\f[R] or \f[I]inferred market price\f[R]:-A\[aq]s latest market price in B on or before the valuation date as-declared by a P directive, or (with the \f[C]--infer-value\f[R] flag)-inferred from transaction prices.-.IP "2." 3-A \f[I]reverse market price\f[R]: the inverse of a declared or inferred-market price from B to A.-.IP "3." 3-A \f[I]a forward chain of market prices\f[R]: a synthetic price formed-by combining the shortest chain of \[dq]forward\[dq] (only 1 above)-market prices, leading from A to B.-.IP "4." 3-A \f[I]any chain of market prices\f[R]: a chain of any market prices,-including both forward and reverse prices (1 and 2 above), leading from-A to B.-.PP-Amounts for which no applicable market price can be found, are not-converted.-.SS --infer-value: market prices from transactions-.PP-\f[I](experimental)\f[R]-.PP-Normally, market value in hledger is fully controlled by, and requires,-P directives in your journal.-Since adding and updating those can be a chore, and since transactions-usually take place at close to market value, why not use the recorded-transaction prices as additional market prices (as Ledger does) ?-We could produce value reports without needing P directives at all.-.PP-Adding the \f[C]--infer-value\f[R] flag to \f[C]-V\f[R], \f[C]-X\f[R] or-\f[C]--value\f[R] enables this.-So for example, \f[C]hledger bs -V --infer-value\f[R] will get market-prices both from P directives and from transactions.-.PP-There is a downside: value reports can sometimes be affected in-confusing/undesired ways by your journal entries.-If this happens to you, read all of this Valuation section carefully,-and try adding \f[C]--debug\f[R] or \f[C]--debug=2\f[R] to troubleshoot.-.PP-\f[C]--infer-value\f[R] can infer market prices from:-.IP \[bu] 2-multicommodity transactions with explicit prices-(\f[C]\[at]\f[R]/\f[C]\[at]\[at]\f[R])-.IP \[bu] 2-multicommodity transactions with implicit prices (no \f[C]\[at]\f[R],-two commodities, unbalanced).-(With these, the order of postings matters.-\f[C]hledger print -x\f[R] can be useful for troubleshooting.)-.IP \[bu] 2-but not, currently, from \[dq]more correct\[dq] multicommodity-transactions (no \f[C]\[at]\f[R], multiple commodities, balanced).-.SS Valuation commodity-.PP-\f[I](experimental)\f[R]-.PP-\f[B]When you specify a valuation commodity (\f[CB]-X COMM\f[B] or-\f[CB]--value TYPE,COMM\f[B]):\f[R]-.PD 0-.P-.PD-hledger will convert all amounts to COMM, wherever it can find a-suitable market price (including by reversing or chaining prices).-.PP-\f[B]When you leave the valuation commodity unspecified (\f[CB]-V\f[B]-or \f[CB]--value TYPE\f[B]):\f[R]-.PD 0-.P-.PD-For each commodity A, hledger picks a default valuation commodity as-follows, in this order of preference:-.IP "1." 3-The price commodity from the latest P-declared market price for A on or-before valuation date.-.IP "2." 3-The price commodity from the latest P-declared market price for A on any-date.-(Allows conversion to proceed when there are inferred prices before the-valuation date.)-.IP "3." 3-If there are no P directives at all (any commodity or date) and the-\f[C]--infer-value\f[R] flag is used: the price commodity from the-latest transaction-inferred price for A on or before valuation date.-.PP-This means:-.IP \[bu] 2-If you have P directives, they determine which commodities \f[C]-V\f[R]-will convert, and to what.-.IP \[bu] 2-If you have no P directives, and use the \f[C]--infer-value\f[R] flag,-transaction prices determine it.-.PP-Amounts for which no valuation commodity can be found are not converted.-.SS Simple valuation examples-.PP-Here are some quick examples of \f[C]-V\f[R]:-.IP-.nf-\f[C]-; one euro is worth this many dollars from nov 1-P 2016/11/01 \[Eu] $1.10--; purchase some euros on nov 3-2016/11/3- assets:euros \[Eu]100- assets:checking--; the euro is worth fewer dollars by dec 21-P 2016/12/21 \[Eu] $1.03-\f[R]-.fi-.PP-How many euros do I have ?-.IP-.nf-\f[C]-$ hledger -f t.j bal -N euros- \[Eu]100 assets:euros-\f[R]-.fi-.PP-What are they worth at end of nov 3 ?-.IP-.nf-\f[C]-$ hledger -f t.j bal -N euros -V -e 2016/11/4- $110.00 assets:euros-\f[R]-.fi-.PP-What are they worth after 2016/12/21 ?-(no report end date specified, defaults to today)-.IP-.nf-\f[C]-$ hledger -f t.j bal -N euros -V- $103.00 assets:euros-\f[R]-.fi-.SS --value: Flexible valuation-.PP-\f[C]-B\f[R], \f[C]-V\f[R] and \f[C]-X\f[R] are special cases of the-more general \f[C]--value\f[R] option:-.IP-.nf-\f[C]- --value=TYPE[,COMM] TYPE is cost, then, end, now or YYYY-MM-DD.- COMM is an optional commodity symbol.- Shows amounts converted to:- - cost commodity using transaction prices (then optionally to COMM using market prices at period end(s))- - default valuation commodity (or COMM) using market prices at posting dates- - default valuation commodity (or COMM) using market prices at period end(s)- - default valuation commodity (or COMM) using current market prices- - default valuation commodity (or COMM) using market prices at some date-\f[R]-.fi-.PP-The TYPE part selects cost or value and valuation date:-.TP-\f[B]\f[CB]--value=cost\f[B]\f[R]-Convert amounts to cost, using the prices recorded in transactions.-.TP-\f[B]\f[CB]--value=then\f[B]\f[R]-Convert amounts to their value in the default valuation commodity, using-market prices on each posting\[aq]s date.-This is currently supported only by the print and register commands.-.TP-\f[B]\f[CB]--value=end\f[B]\f[R]-Convert amounts to their value in the default valuation commodity, using-market prices on the last day of the report period (or if unspecified,-the journal\[aq]s end date); or in multiperiod reports, market prices on-the last day of each subperiod.-.TP-\f[B]\f[CB]--value=now\f[B]\f[R]-Convert amounts to their value in the default valuation commodity using-current market prices (as of when report is generated).-.TP-\f[B]\f[CB]--value=YYYY-MM-DD\f[B]\f[R]-Convert amounts to their value in the default valuation commodity using-market prices on this date.-.PP-To select a different valuation commodity, add the optional-\f[C],COMM\f[R] part: a comma, then the target commodity\[aq]s symbol.-Eg: \f[B]\f[CB]--value=now,EUR\f[B]\f[R].-hledger will do its best to convert amounts to this commodity, deducing-market prices as described above.-.SS More valuation examples-.PP-Here are some examples showing the effect of \f[C]--value\f[R], as seen-with \f[C]print\f[R]:-.IP-.nf-\f[C]-P 2000-01-01 A 1 B-P 2000-02-01 A 2 B-P 2000-03-01 A 3 B-P 2000-04-01 A 4 B--2000-01-01- (a) 1 A \[at] 5 B--2000-02-01- (a) 1 A \[at] 6 B--2000-03-01- (a) 1 A \[at] 7 B-\f[R]-.fi-.PP-Show the cost of each posting:-.IP-.nf-\f[C]-$ hledger -f- print --value=cost-2000-01-01- (a) 5 B--2000-02-01- (a) 6 B--2000-03-01- (a) 7 B-\f[R]-.fi-.PP-Show the value as of the last day of the report period (2000-02-29):-.IP-.nf-\f[C]-$ hledger -f- print --value=end date:2000/01-2000/03-2000-01-01- (a) 2 B--2000-02-01- (a) 2 B-\f[R]-.fi-.PP-With no report period specified, that shows the value as of the last day-of the journal (2000-03-01):-.IP-.nf-\f[C]-$ hledger -f- print --value=end-2000-01-01- (a) 3 B--2000-02-01- (a) 3 B--2000-03-01- (a) 3 B-\f[R]-.fi-.PP-Show the current value (the 2000-04-01 price is still in effect today):-.IP-.nf-\f[C]-$ hledger -f- print --value=now-2000-01-01- (a) 4 B--2000-02-01- (a) 4 B--2000-03-01- (a) 4 B-\f[R]-.fi-.PP-Show the value on 2000/01/15:-.IP-.nf-\f[C]-$ hledger -f- print --value=2000-01-15-2000-01-01- (a) 1 B--2000-02-01- (a) 1 B--2000-03-01- (a) 1 B-\f[R]-.fi-.PP-You may need to explicitly set a commodity\[aq]s display style, when-reverse prices are used.-Eg this output might be surprising:-.IP-.nf-\f[C]-P 2000-01-01 A 2B--2000-01-01- a 1B- b-\f[R]-.fi-.IP-.nf-\f[C]-$ hledger print -x -X A-2000-01-01- a 0- b 0-\f[R]-.fi-.PP-Explanation: because there\[aq]s no amount or commodity directive-specifying a display style for A, 0.5A gets the default style, which-shows no decimal digits.-Because the displayed amount looks like zero, the commodity symbol and-minus sign are not displayed either.-Adding a commodity directive sets a more useful display style for A:-.IP-.nf-\f[C]-P 2000-01-01 A 2B-commodity 0.00A--2000-01-01- a 1B- b-\f[R]-.fi-.IP-.nf-\f[C]-$ hledger print -X A-2000-01-01- a 0.50A- b -0.50A-\f[R]-.fi-.SS Effect of valuation on reports-.PP-Here is a reference for how valuation is supposed to affect each part of-hledger\[aq]s reports (and a glossary).-(It\[aq]s wide, you\[aq]ll have to scroll sideways.) It may be useful-when troubleshooting.-If you find problems, please report them, ideally with a reproducible-example.-Related: #329, #1083.-.PP-.TS-tab(@);-lw(10.6n) lw(13.2n) lw(13.4n) lw(11.0n) lw(13.4n) lw(8.2n).-T{-Report type-T}@T{-\f[C]-B\f[R], \f[C]--value=cost\f[R]-T}@T{-\f[C]-V\f[R], \f[C]-X\f[R]-T}@T{-\f[C]--value=then\f[R]-T}@T{-\f[C]--value=end\f[R]-T}@T{-\f[C]--value=DATE\f[R], \f[C]--value=now\f[R]-T}-_-T{-\f[B]print\f[R]-T}@T{-T}@T{-T}@T{-T}@T{-T}@T{-T}-T{-posting amounts-T}@T{-cost-T}@T{-value at report end or today-T}@T{-value at posting date-T}@T{-value at report or journal end-T}@T{-value at DATE/today-T}-T{-balance assertions/assignments-T}@T{-unchanged-T}@T{-unchanged-T}@T{-unchanged-T}@T{-unchanged-T}@T{-unchanged-T}-T{-T}@T{-T}@T{-T}@T{-T}@T{-T}@T{-T}-T{-\f[B]register\f[R]-T}@T{-T}@T{-T}@T{-T}@T{-T}@T{-T}-T{-starting balance (-H)-T}@T{-cost-T}@T{-value at day before report or journal start-T}@T{-not supported-T}@T{-value at day before report or journal start-T}@T{-value at DATE/today-T}-T{-posting amounts-T}@T{-cost-T}@T{-value at report end or today-T}@T{-value at posting date-T}@T{-value at report or journal end-T}@T{-value at DATE/today-T}-T{-summary posting amounts with report interval-T}@T{-summarised cost-T}@T{-value at period ends-T}@T{-sum of postings in interval, valued at interval start-T}@T{-value at period ends-T}@T{-value at DATE/today-T}-T{-running total/average-T}@T{-sum/average of displayed values-T}@T{-sum/average of displayed values-T}@T{-sum/average of displayed values-T}@T{-sum/average of displayed values-T}@T{-sum/average of displayed values-T}-T{-T}@T{-T}@T{-T}@T{-T}@T{-T}@T{-T}-T{-\f[B]balance (bs, bse, cf, is)\f[R]-T}@T{-T}@T{-T}@T{-T}@T{-T}@T{-T}-T{-balance changes-T}@T{-sums of costs-T}@T{-value at report end or today of sums of postings-T}@T{-not supported-T}@T{-value at report or journal end of sums of postings-T}@T{-value at DATE/today of sums of postings-T}-T{-budget amounts (--budget)-T}@T{-like balance changes-T}@T{-like balance changes-T}@T{-not supported-T}@T{-like balances-T}@T{-like balance changes-T}-T{-grand total-T}@T{-sum of displayed values-T}@T{-sum of displayed values-T}@T{-not supported-T}@T{-sum of displayed values-T}@T{-sum of displayed values-T}-T{-T}@T{-T}@T{-T}@T{-T}@T{-T}@T{-T}-T{-\f[B]balance (bs, bse, cf, is) with report interval\f[R]-T}@T{-T}@T{-T}@T{-T}@T{-T}@T{-T}-T{-starting balances (-H)-T}@T{-sums of costs of postings before report start-T}@T{-value at report start of sums of all postings before report start-T}@T{-not supported-T}@T{-value at report start of sums of all postings before report start-T}@T{-sums of postings before report start-T}-T{-balance changes (bal, is, bs --change, cf --change)-T}@T{-sums of costs of postings in period-T}@T{-same as --value=end-T}@T{-not supported-T}@T{-balance change in each period, valued at period ends-T}@T{-value at DATE/today of sums of postings-T}-T{-end balances (bal -H, is --H, bs, cf)-T}@T{-sums of costs of postings from before report start to period end-T}@T{-same as --value=end-T}@T{-not supported-T}@T{-period end balances, valued at period ends-T}@T{-value at DATE/today of sums of postings-T}-T{-budget amounts (--budget)-T}@T{-like balance changes/end balances-T}@T{-like balance changes/end balances-T}@T{-not supported-T}@T{-like balances-T}@T{-like balance changes/end balances-T}-T{-row totals, row averages (-T, -A)-T}@T{-sums, averages of displayed values-T}@T{-sums, averages of displayed values-T}@T{-not supported-T}@T{-sums, averages of displayed values-T}@T{-sums, averages of displayed values-T}-T{-column totals-T}@T{-sums of displayed values-T}@T{-sums of displayed values-T}@T{-not supported-T}@T{-sums of displayed values-T}@T{-sums of displayed values-T}-T{-grand total, grand average-T}@T{-sum, average of column totals-T}@T{-sum, average of column totals-T}@T{-not supported-T}@T{-sum, average of column totals-T}@T{-sum, average of column totals-T}-T{-T}@T{-T}@T{-T}@T{-T}@T{-T}@T{-T}-.TE-.PP-\f[C]--cumulative\f[R] is omitted to save space, it works like-\f[C]-H\f[R] but with a zero starting balance.-.PP-\f[B]Glossary:\f[R]-.TP-\f[I]cost\f[R]-calculated using price(s) recorded in the transaction(s).-.TP-\f[I]value\f[R]-market value using available market price declarations, or the unchanged-amount if no conversion rate can be found.-.TP-\f[I]report start\f[R]-the first day of the report period specified with -b or -p or date:,-otherwise today.-.TP-\f[I]report or journal start\f[R]-the first day of the report period specified with -b or -p or date:,-otherwise the earliest transaction date in the journal, otherwise today.-.TP-\f[I]report end\f[R]-the last day of the report period specified with -e or -p or date:,-otherwise today.-.TP-\f[I]report or journal end\f[R]-the last day of the report period specified with -e or -p or date:,-otherwise the latest transaction date in the journal, otherwise today.-.TP-\f[I]report interval\f[R]-a flag (-D/-W/-M/-Q/-Y) or period expression that activates the-report\[aq]s multi-period mode (whether showing one or many subperiods).-.SH COMMANDS-.PP-hledger provides a number of commands for producing reports and managing-your data.-Run \f[C]hledger\f[R] with no arguments to list the commands available.-.PP-To run a command, write its name (or its abbreviation shown in the-commands list, or any unambiguous prefix of the name) as hledger\[aq]s-first argument.-Eg: \f[C]hledger balance\f[R] or \f[C]hledger bal\f[R].-.PP-Here are the built-in commands:-.PP-\f[B]Data entry (these modify the journal file):\f[R]-.IP \[bu] 2-add - add transactions using guided prompts-.IP \[bu] 2-import - add any new transactions from other files (eg csv)-.PP-\f[B]Data management\f[R]:-.IP \[bu] 2-check - check for various kinds of issue in the data-.IP \[bu] 2-close (equity) - generate balance-resetting transactions-.IP \[bu] 2-diff - compare account transactions in two journal files-.IP \[bu] 2-rewrite - generate extra postings, similar to print --auto-.PP-\f[B]Financial statements:\f[R]-.IP \[bu] 2-aregister (areg) - show transactions in a particular account-.IP \[bu] 2-balancesheet (bs) - show assets, liabilities and net worth-.IP \[bu] 2-balancesheetequity (bse) - show assets, liabilities and equity-.IP \[bu] 2-cashflow (cf) - show changes in liquid assets-.IP \[bu] 2-incomestatement (is) - show revenues and expenses-.IP \[bu] 2-roi - show return on investments-.PP-\f[B]Miscellaneous reports:\f[R]-.IP \[bu] 2-accounts (a) - show account names-.IP \[bu] 2-activity - show postings-per-interval bar charts-.IP \[bu] 2-balance (b, bal) - show balance changes/end balances/budgets in accounts-.IP \[bu] 2-codes - show transaction codes-.IP \[bu] 2-commodities - show commodity/currency symbols-.IP \[bu] 2-descriptions - show unique transaction descriptions-.IP \[bu] 2-files - show input file paths-.IP \[bu] 2-notes - show unique note segments of transaction descriptions-.IP \[bu] 2-payees - show unique payee segments of transaction descriptions-.IP \[bu] 2-prices - show market price records-.IP \[bu] 2-print (p, txns) - show transactions (journal entries)-.IP \[bu] 2-print-unique - show only transactions with unique descriptions-.IP \[bu] 2-register (r, reg) - show postings in one or more accounts & running-total-.IP \[bu] 2-register-match - show a recent posting that best matches a description-.IP \[bu] 2-stats - show journal statistics-.IP \[bu] 2-tags - show tag names-.IP \[bu] 2-test - run self tests-.PP-Next, the detailed command docs, in alphabetical order.-.SS accounts-.PP-accounts, a-.PD 0-.P-.PD-Show account names.-.PP-This command lists account names, either declared with account-directives (--declared), posted to (--used), or both (the default).-With query arguments, only matched account names and account names-referenced by matched postings are shown.-It shows a flat list by default.-With \f[C]--tree\f[R], it uses indentation to show the account-hierarchy.-In flat mode you can add \f[C]--drop N\f[R] to omit the first few-account name components.-Account names can be depth-clipped with \f[C]depth:N\f[R] or-\f[C]--depth N\f[R] or \f[C]-N\f[R].-.PP-Examples:-.IP-.nf-\f[C]-$ hledger accounts-assets:bank:checking-assets:bank:saving-assets:cash-expenses:food-expenses:supplies-income:gifts-income:salary-liabilities:debts-\f[R]-.fi-.SS activity-.PP-activity-.PD 0-.P-.PD-Show an ascii barchart of posting counts per interval.-.PP-The activity command displays an ascii histogram showing transaction-counts by day, week, month or other reporting interval (by day is the-default).-With query arguments, it counts only matched transactions.-.PP-Examples:-.IP-.nf-\f[C]-$ hledger activity --quarterly-2008-01-01 **-2008-04-01 *******-2008-07-01 -2008-10-01 **-\f[R]-.fi-.SS add-.PP-add-.PD 0-.P-.PD-Prompt for transactions and add them to the journal.-Any arguments will be used as default inputs for the first N prompts.-.PP-Many hledger users edit their journals directly with a text editor, or-generate them from CSV.-For more interactive data entry, there is the \f[C]add\f[R] command,-which prompts interactively on the console for new transactions, and-appends them to the journal file (if there are multiple-\f[C]-f FILE\f[R] options, the first file is used.) Existing-transactions are not changed.-This is the only hledger command that writes to the journal file.-.PP-To use it, just run \f[C]hledger add\f[R] and follow the prompts.-You can add as many transactions as you like; when you are finished,-enter \f[C].\f[R] or press control-d or control-c to exit.-.PP-Features:-.IP \[bu] 2-add tries to provide useful defaults, using the most similar (by-description) recent transaction (filtered by the query, if any) as a-template.-.IP \[bu] 2-You can also set the initial defaults with command line arguments.-.IP \[bu] 2-Readline-style edit keys can be used during data entry.-.IP \[bu] 2-The tab key will auto-complete whenever possible - accounts,-descriptions, dates (\f[C]yesterday\f[R], \f[C]today\f[R],-\f[C]tomorrow\f[R]).-If the input area is empty, it will insert the default value.-.IP \[bu] 2-If the journal defines a default commodity, it will be added to any bare-numbers entered.-.IP \[bu] 2-A parenthesised transaction code may be entered following a date.-.IP \[bu] 2-Comments and tags may be entered following a description or amount.-.IP \[bu] 2-If you make a mistake, enter \f[C]<\f[R] at any prompt to go one step-backward.-.IP \[bu] 2-Input prompts are displayed in a different colour when the terminal-supports it.-.PP-Example (see the tutorial for a detailed explanation):-.IP-.nf-\f[C]-$ hledger add-Adding transactions to journal file /src/hledger/examples/sample.journal-Any command line arguments will be used as defaults.-Use tab key to complete, readline keys to edit, enter to accept defaults.-An optional (CODE) may follow transaction dates.-An optional ; COMMENT may follow descriptions or amounts.-If you make a mistake, enter < at any prompt to go one step backward.-To end a transaction, enter . when prompted.-To quit, enter . at a date prompt or press control-d or control-c.-Date [2015/05/22]: -Description: supermarket-Account 1: expenses:food-Amount 1: $10-Account 2: assets:checking-Amount 2 [$-10.0]: -Account 3 (or . or enter to finish this transaction): .-2015/05/22 supermarket- expenses:food $10- assets:checking $-10.0--Save this transaction to the journal ? [y]: -Saved.-Starting the next transaction (. or ctrl-D/ctrl-C to quit)-Date [2015/05/22]: <CTRL-D> $-\f[R]-.fi-.PP-On Microsoft Windows, the add command makes sure that no part of the-file path ends with a period, as that would cause problems (#1056).-.SS aregister-.PP-aregister, areg-.PD 0-.P-.PD-.PP-Show the transactions and running historical balance in an account, with-each line item representing one transaction.-.PP-\f[C]aregister\f[R] shows the transactions affecting a particular-account and its subaccounts, with each line item representing a whole-transaction - as in bank statements, hledger-ui, hledger-web and other-accounting apps.-.PP-Note this is unlike the \f[C]register\f[R] command, which shows-individual postings and does not always show a single account or a-historical balance.-.PP-A reminder, \[dq]historical\[dq] balances include any balance from-transactions before the report start date, so (if opening balances are-recorded correctly) \f[C]aregister\f[R] will show the real-world-balances of an account, as you would see in a bank statement.-.PP-As a quick rule of thumb, use \f[C]aregister\f[R] for reconciling-real-world asset/liability accounts and \f[C]register\f[R] for reviewing-detailed revenues/expenses.-.PP-\f[C]aregister\f[R] shows the register for just one account (and its-subaccounts).-This account must be specified as the first argument.-You can write either the full account name, or a case-insensitive-regular expression which will select the alphabetically first matched-account.-(Eg if you have \f[C]assets:aaa:checking\f[R] and-\f[C]assets:bbb:checking\f[R] accounts, \f[C]hledger areg checking\f[R]-would select \f[C]assets:aaa:checking\f[R].)-.PP-Any additional arguments form a query which will filter the transactions-shown.-.PP-Each \f[C]aregister\f[R] line item shows:-.IP \[bu] 2-the transaction\[aq]s date (or the relevant posting\[aq]s date if-different, see below)-.IP \[bu] 2-the names of all the other account(s) involved in this transaction-(probably abbreviated)-.IP \[bu] 2-the total change to this account\[aq]s balance from this transaction-.IP \[bu] 2-the account\[aq]s historical running balance after this transaction.-.PP-Transactions making a net change of zero are not shown by default; add-the \f[C]-E/--empty\f[R] flag to show them.-.PP-\f[C]aregister\f[R] ignores a depth limit, so its final total will-always match a balance report with similar arguments.-.PP-This command also supports the output destination and output format-options The output formats supported are \f[C]txt\f[R], \f[C]csv\f[R],-and \f[C]json\f[R].-.SS aregister and custom posting dates-.PP-Transactions whose date is outside the report period can still be shown,-if they have a posting to this account dated inside the report period.-(And in this case it\[aq]s the posting date that is shown.) This ensures-that \f[C]aregister\f[R] can show an accurate historical running-balance, matching the one shown by \f[C]register -H\f[R] with the same-arguments.-.PP-To filter strictly by transaction date instead, add the-\f[C]--txn-dates\f[R] flag.-If you use this flag and some of your postings have custom dates,-it\[aq]s probably best to assume the running balance is wrong.-.PP-Examples:-.PP-Show all transactions and historical running balance in the first-account whose name contains \[dq]checking\[dq]:-.IP-.nf-\f[C]-$ hledger areg checking-\f[R]-.fi-.PP-Show transactions and historical running balance in all asset accounts-during july:-.IP-.nf-\f[C]-$ hledger areg assets date:jul-\f[R]-.fi-.SS balance-.PP-balance, bal, b-.PD 0-.P-.PD-Show accounts and their balances.-.PP-The balance command is hledger\[aq]s most versatile command.-Note, despite the name, it is not always used for showing real-world-account balances; the more accounting-aware balancesheet and-incomestatement may be more convenient for that.-.PP-By default, it displays all accounts, and each account\[aq]s change in-balance during the entire period of the journal.-Balance changes are calculated by adding up the postings in each-account.-You can limit the postings matched, by a query, to see fewer accounts,-changes over a different time period, changes from only cleared-transactions, etc.-.PP-If you include an account\[aq]s complete history of postings in the-report, the balance change is equivalent to the account\[aq]s current-ending balance.-For a real-world account, typically you won\[aq]t have all transactions-in the journal; instead you\[aq]ll have all transactions after a certain-date, and an \[dq]opening balances\[dq] transaction setting the correct-starting balance on that date.-Then the balance command will show real-world account balances.-In some cases the -H/--historical flag is used to ensure this (more-below).-.PP-This command also supports the output destination and output format-options The output formats supported are (in most modes): \f[C]txt\f[R],-\f[C]csv\f[R], \f[C]html\f[R], and \f[C]json\f[R].-.PP-The balance command can produce several styles of report:-.PP-.SS Single-period flat balance report-.PP-This is the default for hledger\[aq]s balance command: a flat list of-all (or with a query, matched) accounts, showing full account names.-Accounts are sorted by declaration order if any, and then by account-name.-Accounts which have zero balance are not shown unless-\f[C]-E/--empty\f[R] is used.-The reported balances\[aq] total is shown as the last line, unless-disabled by \f[C]-N\f[R]/\f[C]--no-total\f[R].-.IP-.nf-\f[C]-$ hledger bal- $1 assets:bank:saving- $-2 assets:cash- $1 expenses:food- $1 expenses:supplies- $-1 income:gifts- $-1 income:salary- $1 liabilities:debts---------------------- 0 -\f[R]-.fi-.PP-.SS Single-period tree-mode balance report-.PP-With the \f[C]-t/--tree\f[R] flag, accounts are displayed-hierarchically, showing subaccounts as short names indented below their-parent.-(This is the default style in Ledger and in older hledger versions.)-.IP-.nf-\f[C]-$ hledger balance- $-1 assets- $1 bank:saving- $-2 cash- $2 expenses- $1 food- $1 supplies- $-2 income- $-1 gifts- $-1 salary- $1 liabilities:debts---------------------- 0-\f[R]-.fi-.PP-For more compact output, \[dq]boring\[dq] accounts containing a single-interesting subaccount and no balance of their own-(\f[C]assets:bank\f[R] and \f[C]liabilities\f[R] here) are elided into-the following line, unless \f[C]--no-elide\f[R] is used.-And accounts which have zero balance and no non-zero subaccounts are-omitted, unless \f[C]-E/--empty\f[R] is used.-.PP-Account balances in tree mode are \[dq]inclusive\[dq] - they include the-balances of any subaccounts.-Eg, the \f[C]assets\f[R] \f[C]$-1\f[R] balance here includes the-\f[C]$1\f[R] from \f[C]assets:bank:saving\f[R] and the \f[C]$-2\f[R]-from \f[C]assets:cash\f[R].-(And it would include balance posted to the \f[C]assets\f[R] account-itself, if there was any).-Note this causes some repetition, and the final total (\f[C]0\f[R]) is-the sum of the top-level balances, not of all the balances shown.-.PP-Each group of sibling accounts is sorted separately, by declaration-order and then by account name.-.SS Multi-period balance report-.PP-Multi-period balance reports are a very useful hledger feature,-activated if you provide one of the reporting interval flags, such as-\f[C]-M\f[R]/\f[C]--monthly\f[R].-They are similar to single-period balance reports, but they show the-report as a table, with columns representing one or more successive time-periods.-This is the usually the preferred style of balance report in hledger-(even for a single period).-.PP-Multi-period balance reports come in several types, showing different-information:-.IP "1." 3-A balance change report: by default, each column shows the sum of-postings in that period, ie the account\[aq]s change of balance in that-period.-This is useful eg for a monthly income statement:-.IP-.nf-\f[C]-$ hledger balance --quarterly income expenses -E-Balance changes in 2008:-- || 2008q1 2008q2 2008q3 2008q4 -===================++=================================- expenses:food || 0 $1 0 0 - expenses:supplies || 0 $1 0 0 - income:gifts || 0 $-1 0 0 - income:salary || $-1 0 0 0 --------------------++---------------------------------- || $-1 $1 0 0 -\f[R]-.fi-.IP "2." 3-A cumulative end balance report: with \f[C]--cumulative\f[R], each-column shows the end balance for that period, accumulating the changes-across periods, starting from 0 at the report start date:-.RS 4-.IP-.nf-\f[C]-$ hledger balance --quarterly income expenses -E --cumulative-Ending balances (cumulative) in 2008:-- || 2008/03/31 2008/06/30 2008/09/30 2008/12/31 -===================++=================================================- expenses:food || 0 $1 $1 $1 - expenses:supplies || 0 $1 $1 $1 - income:gifts || 0 $-1 $-1 $-1 - income:salary || $-1 $-1 $-1 $-1 --------------------++-------------------------------------------------- || $-1 0 0 0 -\f[R]-.fi-.RE-.IP "3." 3-A historical end balance report: with \f[C]--historical/-H\f[R], each-column shows the actual historical end balance for that period,-accumulating the changes across periods, and including the balance from-any postings before the report start date.-This is useful eg for a multi-period balance sheet, and when you want to-see balances only after a certain date:-.RS 4-.IP-.nf-\f[C]-$ hledger balance \[ha]assets \[ha]liabilities --quarterly --historical --begin 2008/4/1-Ending balances (historical) in 2008/04/01-2008/12/31:-- || 2008/06/30 2008/09/30 2008/12/31 -======================++=====================================- assets:bank:checking || $1 $1 0 - assets:bank:saving || $1 $1 $1 - assets:cash || $-2 $-2 $-2 - liabilities:debts || 0 0 $1 -----------------------++-------------------------------------- || 0 0 0 -\f[R]-.fi-.RE-.PP-Note that \f[C]--cumulative\f[R] or \f[C]--historical/-H\f[R] disable-\f[C]--row-total/-T\f[R], since summing end balances generally does not-make sense.-.PP-With a reporting interval (like \f[C]--quarterly\f[R] above), the report-start/end dates will be adjusted if necessary so that they encompass the-displayed report periods.-This is so that the first and last periods will be \[dq]full\[dq] and-comparable to the others.-.PP-The \f[C]-E/--empty\f[R] flag does two things in multicolumn balance-reports: first, the report will show all columns within the specified-report period (without -E, leading and trailing columns with all zeroes-are not shown).-Second, all accounts which existed at the report start date will be-considered, not just the ones with activity during the report period-(use -E to include low-activity accounts which would otherwise would be-omitted).-.PP-The \f[C]-T/--row-total\f[R] flag adds an additional column showing the-total for each row.-.PP-The \f[C]-A/--average\f[R] flag adds a column showing the average value-in each row.-.PP-Here\[aq]s an example of all three:-.IP-.nf-\f[C]-$ hledger balance -Q income expenses --tree -ETA-Balance changes in 2008:-- || 2008q1 2008q2 2008q3 2008q4 Total Average -============++===================================================- expenses || 0 $2 0 0 $2 $1 - food || 0 $1 0 0 $1 0 - supplies || 0 $1 0 0 $1 0 - income || $-1 $-1 0 0 $-2 $-1 - gifts || 0 $-1 0 0 $-1 0 - salary || $-1 0 0 0 $-1 0 -------------++---------------------------------------------------- || $-1 $1 0 0 0 0 --(Average is rounded to the dollar here since all journal amounts are)-\f[R]-.fi-.PP-The \f[C]--transpose\f[R] flag can be used to exchange the rows and-columns of a multicolumn report.-.PP-When showing multicommodity amounts, multicolumn balance reports will-elide any amounts which have more than two commodities, since otherwise-columns could get very wide.-The \f[C]--no-elide\f[R] flag disables this.-Hiding totals with the \f[C]-N/--no-total\f[R] flag can also help reduce-the width of multicommodity reports.-.PP-When the report is still too wide, a good workaround is to pipe it into-\f[C]less -RS\f[R] (-R for colour, -S to chop long lines).-Eg: \f[C]hledger bal -D --color=yes | less -RS\f[R].-.SS Depth limiting-.PP-With a \f[C]depth:N\f[R] query, or \f[C]--depth N\f[R] option, or just-\f[C]-N\f[R], balance reports will show accounts only to the specified-depth.-This is very useful to hide low-level accounts and get an overview.-Eg, limiting to depth 1 shows the top-level accounts:-.IP-.nf-\f[C]-$ hledger balance -N -1- $-1 assets- $2 expenses- $-2 income- $1 liabilities-\f[R]-.fi-.PP-Accounts at the depth limit will include the balances of any hidden-subaccounts (even in flat mode, which normally shows exclusive-balances).-.PP-You can also drop account name components from the start of account-names, using \f[C]--drop N\f[R].-This can be useful to hide unwanted top-level detail.-.SS Colour support-.PP-In terminal output, when colour is enabled, the balance command shows-negative amounts in red.-.SS Sorting by amount-.PP-With \f[C]-S\f[R]/\f[C]--sort-amount\f[R], accounts with the largest-(most positive) balances are shown first.-For example, \f[C]hledger bal expenses -MAS\f[R] shows your biggest-averaged monthly expenses first.-.PP-Revenues and liability balances are typically negative, however, so-\f[C]-S\f[R] shows these in reverse order.-To work around this, you can add \f[C]--invert\f[R] to flip the signs.-Or, use one of the sign-flipping reports like \f[C]balancesheet\f[R] or-\f[C]incomestatement\f[R], which also support \f[C]-S\f[R].-Eg: \f[C]hledger is -MAS\f[R].-.SS Percentages-.PP-With \f[C]-%\f[R] or \f[C]--percent\f[R], balance reports show each-account\[aq]s value expressed as a percentage of the column\[aq]s total.-This is useful to get an overview of the relative sizes of account-balances.-For example to obtain an overview of expenses:-.IP-.nf-\f[C]-$ hledger balance expenses -%- 100.0 % expenses- 50.0 % food- 50.0 % supplies---------------------- 100.0 %-\f[R]-.fi-.PP-Note that \f[C]--tree\f[R] does not have an effect on \f[C]-%\f[R].-The percentages are always relative to the total sum of each column,-they are never relative to the parent account.-.PP-Since the percentages are relative to the columns sum, it is usually not-useful to calculate percentages if the signs of the amounts are mixed.-Although the results are technically correct, they are most likely-useless.-Especially in a balance report that sums up to zero (eg-\f[C]hledger balance -B\f[R]) all percentage values will be zero.-.PP-This flag does not work if the report contains any mixed commodity-accounts.-If there are mixed commodity accounts in the report be sure to use-\f[C]-V\f[R] or \f[C]-B\f[R] to coerce the report into using a single-commodity.-.PP-.SS Customising single-period balance reports-.PP-You can customise the layout of single-period balance reports with-\f[C]--format FMT\f[R], which sets the format of each line.-Eg:-.IP-.nf-\f[C]-$ hledger balance --format \[dq]%20(account) %12(total)\[dq]- assets $-1- bank:saving $1- cash $-2- expenses $2- food $1- supplies $1- income $-2- gifts $-1- salary $-1- liabilities:debts $1----------------------------------- 0-\f[R]-.fi-.PP-The FMT format string (plus a newline) specifies the formatting applied-to each account/balance pair.-It may contain any suitable text, with data fields interpolated like so:-.PP-\f[C]%[MIN][.MAX](FIELDNAME)\f[R]-.IP \[bu] 2-MIN pads with spaces to at least this width (optional)-.IP \[bu] 2-MAX truncates at this width (optional)-.IP \[bu] 2-FIELDNAME must be enclosed in parentheses, and can be one of:-.RS 2-.IP \[bu] 2-\f[C]depth_spacer\f[R] - a number of spaces equal to the account\[aq]s-depth, or if MIN is specified, MIN * depth spaces.-.IP \[bu] 2-\f[C]account\f[R] - the account\[aq]s name-.IP \[bu] 2-\f[C]total\f[R] - the account\[aq]s balance/posted total, right-justified-.RE-.PP-Also, FMT can begin with an optional prefix to control how-multi-commodity amounts are rendered:-.IP \[bu] 2-\f[C]%_\f[R] - render on multiple lines, bottom-aligned (the default)-.IP \[bu] 2-\f[C]%\[ha]\f[R] - render on multiple lines, top-aligned-.IP \[bu] 2-\f[C]%,\f[R] - render on one line, comma-separated-.PP-There are some quirks.-Eg in one-line mode, \f[C]%(depth_spacer)\f[R] has no effect, instead-\f[C]%(account)\f[R] has indentation built in.-Experimentation may be needed to get pleasing results.-.PP-Some example formats:-.IP \[bu] 2-\f[C]%(total)\f[R] - the account\[aq]s total-.IP \[bu] 2-\f[C]%-20.20(account)\f[R] - the account\[aq]s name, left justified,-padded to 20 characters and clipped at 20 characters-.IP \[bu] 2-\f[C]%,%-50(account) %25(total)\f[R] - account name padded to 50-characters, total padded to 20 characters, with multiple commodities-rendered on one line-.IP \[bu] 2-\f[C]%20(total) %2(depth_spacer)%-(account)\f[R] - the default format-for the single-column balance report-.SS Budget report-.PP-There is also a special balance report mode for showing budget-performance.-The \f[C]--budget\f[R] flag activates extra columns showing the budget-goals for each account and period, if any.-For this report, budget goals are defined by periodic transactions.-This is very useful for comparing planned and actual income, expenses,-time usage, etc.-.PP-For example, you can take average monthly expenses in the common expense-categories to construct a minimal monthly budget:-.IP-.nf-\f[C]-;; Budget-\[ti] monthly- income $2000- expenses:food $400- expenses:bus $50- expenses:movies $30- assets:bank:checking--;; Two months worth of expenses-2017-11-01- income $1950- expenses:food $396- expenses:bus $49- expenses:movies $30- expenses:supplies $20- assets:bank:checking--2017-12-01- income $2100- expenses:food $412- expenses:bus $53- expenses:gifts $100- assets:bank:checking-\f[R]-.fi-.PP-You can now see a monthly budget report:-.IP-.nf-\f[C]-$ hledger balance -M --budget-Budget performance in 2017/11/01-2017/12/31:-- || Nov Dec -======================++====================================================- assets || $-2445 [ 99% of $-2480] $-2665 [ 107% of $-2480] - assets:bank || $-2445 [ 99% of $-2480] $-2665 [ 107% of $-2480] - assets:bank:checking || $-2445 [ 99% of $-2480] $-2665 [ 107% of $-2480] - expenses || $495 [ 103% of $480] $565 [ 118% of $480] - expenses:bus || $49 [ 98% of $50] $53 [ 106% of $50] - expenses:food || $396 [ 99% of $400] $412 [ 103% of $400] - expenses:movies || $30 [ 100% of $30] 0 [ 0% of $30] - income || $1950 [ 98% of $2000] $2100 [ 105% of $2000] -----------------------++----------------------------------------------------- || 0 [ 0] 0 [ 0] -\f[R]-.fi-.PP-This is different from a normal balance report in several ways:-.IP \[bu] 2-Only accounts with budget goals during the report period are shown, by-default.-.IP \[bu] 2-In each column, in square brackets after the actual amount, budget goal-amounts are shown, and the actual/goal percentage.-(Note: budget goals should be in the same commodity as the actual-amount.)-.IP \[bu] 2-All parent accounts are always shown, even in flat mode.-Eg assets, assets:bank, and expenses above.-.IP \[bu] 2-Amounts always include all subaccounts, budgeted or unbudgeted, even in-flat mode.-.PP-This means that the numbers displayed will not always add up! Eg above,-the \f[C]expenses\f[R] actual amount includes the gifts and supplies-transactions, but the \f[C]expenses:gifts\f[R] and-\f[C]expenses:supplies\f[R] accounts are not shown, as they have no-budget amounts declared.-.PP-This can be confusing.-When you need to make things clearer, use the \f[C]-E/--empty\f[R] flag,-which will reveal all accounts including unbudgeted ones, giving the-full picture.-Eg:-.IP-.nf-\f[C]-$ hledger balance -M --budget --empty-Budget performance in 2017/11/01-2017/12/31:-- || Nov Dec -======================++====================================================- assets || $-2445 [ 99% of $-2480] $-2665 [ 107% of $-2480] - assets:bank || $-2445 [ 99% of $-2480] $-2665 [ 107% of $-2480] - assets:bank:checking || $-2445 [ 99% of $-2480] $-2665 [ 107% of $-2480] - expenses || $495 [ 103% of $480] $565 [ 118% of $480] - expenses:bus || $49 [ 98% of $50] $53 [ 106% of $50] - expenses:food || $396 [ 99% of $400] $412 [ 103% of $400] - expenses:gifts || 0 $100 - expenses:movies || $30 [ 100% of $30] 0 [ 0% of $30] - expenses:supplies || $20 0 - income || $1950 [ 98% of $2000] $2100 [ 105% of $2000] -----------------------++----------------------------------------------------- || 0 [ 0] 0 [ 0] -\f[R]-.fi-.PP-You can roll over unspent budgets to next period with-\f[C]--cumulative\f[R]:-.IP-.nf-\f[C]-$ hledger balance -M --budget --cumulative-Budget performance in 2017/11/01-2017/12/31:-- || Nov Dec -======================++====================================================- assets || $-2445 [ 99% of $-2480] $-5110 [ 103% of $-4960] - assets:bank || $-2445 [ 99% of $-2480] $-5110 [ 103% of $-4960] - assets:bank:checking || $-2445 [ 99% of $-2480] $-5110 [ 103% of $-4960] - expenses || $495 [ 103% of $480] $1060 [ 110% of $960] - expenses:bus || $49 [ 98% of $50] $102 [ 102% of $100] - expenses:food || $396 [ 99% of $400] $808 [ 101% of $800] - expenses:movies || $30 [ 100% of $30] $30 [ 50% of $60] - income || $1950 [ 98% of $2000] $4050 [ 101% of $4000] -----------------------++----------------------------------------------------- || 0 [ 0] 0 [ 0] -\f[R]-.fi-.PP-For more examples and notes, see Budgeting.-.SS Budget report start date-.PP-This might be a bug, but for now: when making budget reports, it\[aq]s a-good idea to explicitly set the report\[aq]s start date to the first day-of a reporting period, because a periodic rule like-\f[C]\[ti] monthly\f[R] generates its transactions on the 1st of each-month, and if your journal has no regular transactions on the 1st, the-default report start date could exclude that budget goal, which can be a-little surprising.-Eg here the default report period is just the day of 2020-01-15:-.IP-.nf-\f[C]-\[ti] monthly in 2020- (expenses:food) $500--2020-01-15- expenses:food $400- assets:checking-\f[R]-.fi-.IP-.nf-\f[C]-$ hledger bal expenses --budget-Budget performance in 2020-01-15:-- || 2020-01-15 -==============++============- <unbudgeted> || $400 ---------------++------------- || $400 -\f[R]-.fi-.PP-To avoid this, specify the budget report\[aq]s period, or at least the-start date, with \f[C]-b\f[R]/\f[C]-e\f[R]/\f[C]-p\f[R]/\f[C]date:\f[R],-to ensure it includes the budget goal transactions (periodic-transactions) that you want.-Eg, adding \f[C]-b 2020/1/1\f[R] to the above:-.IP-.nf-\f[C]-$ hledger bal expenses --budget -b 2020/1/1-Budget performance in 2020-01-01..2020-01-15:-- || 2020-01-01..2020-01-15 -===============++========================- expenses:food || $400 [80% of $500] ----------------++------------------------- || $400 [80% of $500] -\f[R]-.fi-.SS Nested budgets-.PP-You can add budgets to any account in your account hierarchy.-If you have budgets on both parent account and some of its children,-then budget(s) of the child account(s) would be added to the budget of-their parent, much like account balances behave.-.PP-In the most simple case this means that once you add a budget to any-account, all its parents would have budget as well.-.PP-To illustrate this, consider the following budget:-.IP-.nf-\f[C]-\[ti] monthly from 2019/01- expenses:personal $1,000.00- expenses:personal:electronics $100.00- liabilities-\f[R]-.fi-.PP-With this, monthly budget for electronics is defined to be $100 and-budget for personal expenses is an additional $1000, which implicitly-means that budget for both \f[C]expenses:personal\f[R] and-\f[C]expenses\f[R] is $1100.-.PP-Transactions in \f[C]expenses:personal:electronics\f[R] will be counted-both towards its $100 budget and $1100 of \f[C]expenses:personal\f[R] ,-and transactions in any other subaccount of \f[C]expenses:personal\f[R]-would be counted towards only towards the budget of-\f[C]expenses:personal\f[R].-.PP-For example, let\[aq]s consider these transactions:-.IP-.nf-\f[C]-\[ti] monthly from 2019/01- expenses:personal $1,000.00- expenses:personal:electronics $100.00- liabilities--2019/01/01 Google home hub- expenses:personal:electronics $90.00- liabilities $-90.00--2019/01/02 Phone screen protector- expenses:personal:electronics:upgrades $10.00- liabilities--2019/01/02 Weekly train ticket- expenses:personal:train tickets $153.00- liabilities--2019/01/03 Flowers- expenses:personal $30.00- liabilities-\f[R]-.fi-.PP-As you can see, we have transactions in-\f[C]expenses:personal:electronics:upgrades\f[R] and-\f[C]expenses:personal:train tickets\f[R], and since both of these-accounts are without explicitly defined budget, these transactions would-be counted towards budgets of \f[C]expenses:personal:electronics\f[R]-and \f[C]expenses:personal\f[R] accordingly:-.IP-.nf-\f[C]-$ hledger balance --budget -M-Budget performance in 2019/01:-- || Jan -===============================++===============================- expenses || $283.00 [ 26% of $1100.00] - expenses:personal || $283.00 [ 26% of $1100.00] - expenses:personal:electronics || $100.00 [ 100% of $100.00] - liabilities || $-283.00 [ 26% of $-1100.00] --------------------------------++-------------------------------- || 0 [ 0] -\f[R]-.fi-.PP-And with \f[C]--empty\f[R], we can get a better picture of budget-allocation and consumption:-.IP-.nf-\f[C]-$ hledger balance --budget -M --empty-Budget performance in 2019/01:-- || Jan -========================================++===============================- expenses || $283.00 [ 26% of $1100.00] - expenses:personal || $283.00 [ 26% of $1100.00] - expenses:personal:electronics || $100.00 [ 100% of $100.00] - expenses:personal:electronics:upgrades || $10.00 - expenses:personal:train tickets || $153.00 - liabilities || $-283.00 [ 26% of $-1100.00] -----------------------------------------++-------------------------------- || 0 [ 0] -\f[R]-.fi-.SS balancesheet-.PP-balancesheet, bs-.PD 0-.P-.PD-This command displays a balance sheet, showing historical ending-balances of asset and liability accounts.-(To see equity as well, use the balancesheetequity command.) Amounts are-shown with normal positive sign, as in conventional financial-statements.-.PP-The asset and liability accounts shown are those accounts declared with-the \f[C]Asset\f[R] or \f[C]Cash\f[R] or \f[C]Liability\f[R] type, or-otherwise all accounts under a top-level \f[C]asset\f[R] or-\f[C]liability\f[R] account (case insensitive, plurals allowed).-.PP-Example:-.IP-.nf-\f[C]-$ hledger balancesheet-Balance Sheet--Assets:- $-1 assets- $1 bank:saving- $-2 cash---------------------- $-1--Liabilities:- $1 liabilities:debts---------------------- $1--Total:---------------------- 0-\f[R]-.fi-.PP-With a reporting interval, multiple columns will be shown, one for each-report period.-As with multicolumn balance reports, you can alter the report mode with-\f[C]--change\f[R]/\f[C]--cumulative\f[R]/\f[C]--historical\f[R].-Normally balancesheet shows historical ending balances, which is what-you need for a balance sheet; note this means it ignores report begin-dates (and \f[C]-T/--row-total\f[R], since summing end balances-generally does not make sense).-Instead of absolute values percentages can be displayed with-\f[C]-%\f[R].-.PP-This command also supports the output destination and output format-options The output formats supported are \f[C]txt\f[R], \f[C]csv\f[R],-\f[C]html\f[R], and (experimental) \f[C]json\f[R].-.SS balancesheetequity-.PP-balancesheetequity, bse-.PD 0-.P-.PD-This command displays a balance sheet, showing historical ending-balances of asset, liability and equity accounts.-Amounts are shown with normal positive sign, as in conventional-financial statements.-.PP-The asset, liability and equity accounts shown are those accounts-declared with the \f[C]Asset\f[R], \f[C]Cash\f[R], \f[C]Liability\f[R]-or \f[C]Equity\f[R] type, or otherwise all accounts under a top-level-\f[C]asset\f[R], \f[C]liability\f[R] or \f[C]equity\f[R] account (case-insensitive, plurals allowed).-.PP-Example:-.IP-.nf-\f[C]-$ hledger balancesheetequity-Balance Sheet With Equity--Assets:- $-2 assets- $1 bank:saving- $-3 cash---------------------- $-2--Liabilities:- $1 liabilities:debts---------------------- $1--Equity:- $1 equity:owner---------------------- $1--Total:---------------------- 0-\f[R]-.fi-.PP-This command also supports the output destination and output format-options The output formats supported are \f[C]txt\f[R], \f[C]csv\f[R],-\f[C]html\f[R], and (experimental) \f[C]json\f[R].-.SS cashflow-.PP-cashflow, cf-.PD 0-.P-.PD-This command displays a cashflow statement, showing the inflows and-outflows affecting \[dq]cash\[dq] (ie, liquid) assets.-Amounts are shown with normal positive sign, as in conventional-financial statements.-.PP-The \[dq]cash\[dq] accounts shown are those accounts declared with the-\f[C]Cash\f[R] type, or otherwise all accounts under a top-level-\f[C]asset\f[R] account (case insensitive, plural allowed) which do not-have \f[C]fixed\f[R], \f[C]investment\f[R], \f[C]receivable\f[R] or-\f[C]A/R\f[R] in their name.-.PP-Example:-.IP-.nf-\f[C]-$ hledger cashflow-Cashflow Statement--Cash flows:- $-1 assets- $1 bank:saving- $-2 cash---------------------- $-1--Total:---------------------- $-1-\f[R]-.fi-.PP-With a reporting interval, multiple columns will be shown, one for each-report period.-Normally cashflow shows changes in assets per period, though as with-multicolumn balance reports you can alter the report mode with-\f[C]--change\f[R]/\f[C]--cumulative\f[R]/\f[C]--historical\f[R].-Instead of absolute values percentages can be displayed with-\f[C]-%\f[R].-.PP-This command also supports the output destination and output format-options The output formats supported are \f[C]txt\f[R], \f[C]csv\f[R],-\f[C]html\f[R], and (experimental) \f[C]json\f[R].-.SS check-.PP-check-.PD 0-.P-.PD-Check for various kinds of errors in your data.-\f[I]experimental\f[R]-.PP-hledger provides a number of built-in error checks to help prevent-problems in your data.-Some of these are run automatically; or, you can use this-\f[C]check\f[R] command to run them on demand, with no output and a zero-exit code if all is well.-Some examples:-.IP-.nf-\f[C]-hledger check # basic checks-hledger check -s # basic + strict checks-hledger check ordereddates uniqueleafnames # basic + specified checks-\f[R]-.fi-.PP-Here are the checks currently available:-.SS Basic checks-.PP-These are always run by this command and other commands:-.IP \[bu] 2-\f[B]parseable\f[R] - data files are well-formed and can be successfully-parsed-.IP \[bu] 2-\f[B]autobalanced\f[R] - all transactions are balanced, inferring-missing amounts where necessary, and possibly converting commodities-using transaction prices or automatically-inferred transaction prices-.IP \[bu] 2-\f[B]assertions\f[R] - all balance assertions in the journal are-passing.-(This check can be disabled with-\f[C]-I\f[R]/\f[C]--ignore-assertions\f[R].)-.SS Strict checks-.PP-These are always run by this and other commands when-\f[C]-s\f[R]/\f[C]--strict\f[R] is used (strict mode):-.IP \[bu] 2-\f[B]accounts\f[R] - all account names used by transactions have been-declared-.IP \[bu] 2-\f[B]commodities\f[R] - all commodity symbols used have been declared-.SS Other checks-.PP-These checks can be run by specifying their names as arguments to the-check command:-.IP \[bu] 2-\f[B]ordereddates\f[R] - transactions are ordered by date (similar to-the old \f[C]check-dates\f[R] command)-.IP \[bu] 2-\f[B]uniqueleafnames\f[R] - all account leaf names are unique (similar-to the old \f[C]check-dupes\f[R] command)-.SS Add-on checks-.PP-Some checks are not yet integrated with this command, but are available-as add-on commands in-https://github.com/simonmichael/hledger/tree/master/bin:-.IP \[bu] 2-\f[B]hledger-check-tagfiles\f[R] - all tag values containing / (a-forward slash) exist as file paths-.IP \[bu] 2-\f[B]hledger-check-fancyassertions\f[R] - more complex balance-assertions are passing-.PP-You could make your own similar scripts to perform custom checks;-Cookbook -> Scripting may be helpful.-.SS close-.PP-close, equity-.PD 0-.P-.PD-Prints a \[dq]closing balances\[dq] transaction and an \[dq]opening-balances\[dq] transaction that bring account balances to and from zero,-respectively.-These can be added to your journal file(s), eg to bring asset/liability-balances forward into a new journal file, or to close out-revenues/expenses to retained earnings at the end of a period.-.PP-You can print just one of these transactions by using the-\f[C]--close\f[R] or \f[C]--open\f[R] flag.-You can customise their descriptions with the \f[C]--close-desc\f[R] and-\f[C]--open-desc\f[R] options.-.PP-One amountless posting to \[dq]equity:opening/closing balances\[dq] is-added to balance the transactions, by default.-You can customise this account name with \f[C]--close-acct\f[R] and-\f[C]--open-acct\f[R]; if you specify only one of these, it will be used-for both.-.PP-With \f[C]--x/--explicit\f[R], the equity posting\[aq]s amount will be-shown.-And if it involves multiple commodities, a posting for each commodity-will be shown, as with the print command.-.PP-With \f[C]--interleaved\f[R], the equity postings are shown next to the-postings they balance, which makes troubleshooting easier.-.PP-By default, transaction prices in the journal are ignored when-generating the closing/opening transactions.-With \f[C]--show-costs\f[R], this cost information is preserved-(\f[C]balance -B\f[R] reports will be unchanged after the transition).-Separate postings are generated for each cost in each commodity.-Note this can generate very large journal entries, if you have many-foreign currency or investment transactions.-.SS close usage-.PP-If you split your journal files by time (eg yearly), you will typically-run this command at the end of the year, and save the closing-transaction as last entry of the old file, and the opening transaction-as the first entry of the new file.-This makes the files self contained, so that correct balances are-reported no matter which of them are loaded.-Ie, if you load just one file, the balances are initialised correctly;-or if you load several files, the redundant closing/opening transactions-cancel each other out.-(They will show up in print or register reports; you can exclude them-with a query like-\f[C]not:desc:\[aq](opening|closing) balances\[aq]\f[R].)-.PP-If you\[aq]re running a business, you might also use this command to-\[dq]close the books\[dq] at the end of an accounting period,-transferring income statement account balances to retained earnings.-(You may want to change the equity account name to something like-\[dq]equity:retained earnings\[dq].)-.PP-By default, the closing transaction is dated yesterday, the balances are-calculated as of end of yesterday, and the opening transaction is dated-today.-To close on some other date, use:-\f[C]hledger close -e OPENINGDATE\f[R].-Eg, to close/open on the 2018/2019 boundary, use \f[C]-e 2019\f[R].-You can also use -p or \f[C]date:PERIOD\f[R] (any starting date is-ignored).-.PP-Both transactions will include balance assertions for the-closed/reopened accounts.-You probably shouldn\[aq]t use status or realness filters (like -C or -R-or \f[C]status:\f[R]) with this command, or the generated balance-assertions will depend on these flags.-Likewise, if you run this command with --auto, the balance assertions-will probably always require --auto.-.PP-Examples:-.PP-Carrying asset/liability balances into a new file for 2019:-.IP-.nf-\f[C]-$ hledger close -f 2018.journal -e 2019 assets liabilities --open- # (copy/paste the output to the start of your 2019 journal file)-$ hledger close -f 2018.journal -e 2019 assets liabilities --close- # (copy/paste the output to the end of your 2018 journal file)-\f[R]-.fi-.PP-Now:-.IP-.nf-\f[C]-$ hledger bs -f 2019.journal # one file - balances are correct-$ hledger bs -f 2018.journal -f 2019.journal # two files - balances still correct-$ hledger bs -f 2018.journal not:desc:closing # to see year-end balances, must exclude closing txn-\f[R]-.fi-.PP-Transactions spanning the closing date can complicate matters, breaking-balance assertions:-.IP-.nf-\f[C]-2018/12/30 a purchase made in 2018, clearing the following year- expenses:food 5- assets:bank:checking -5 ; [2019/1/2]-\f[R]-.fi-.PP-Here\[aq]s one way to resolve that:-.IP-.nf-\f[C]-; in 2018.journal:-2018/12/30 a purchase made in 2018, clearing the following year- expenses:food 5- liabilities:pending--; in 2019.journal:-2019/1/2 clearance of last year\[aq]s pending transactions- liabilities:pending 5 = 0- assets:checking-\f[R]-.fi-.SS codes-.PP-codes-.PD 0-.P-.PD-List the codes seen in transactions, in the order parsed.-.PP-This command prints the value of each transaction\[aq]s code field, in-the order transactions were parsed.-The transaction code is an optional value written in parentheses between-the date and description, often used to store a cheque number, order-number or similar.-.PP-Transactions aren\[aq]t required to have a code, and missing or empty-codes will not be shown by default.-With the \f[C]-E\f[R]/\f[C]--empty\f[R] flag, they will be printed as-blank lines.-.PP-You can add a query to select a subset of transactions.-.PP-Examples:-.IP-.nf-\f[C]-1/1 (123)- (a) 1--1/1 ()- (a) 1--1/1- (a) 1--1/1 (126)- (a) 1-\f[R]-.fi-.IP-.nf-\f[C]-$ hledger codes-123-124-126-\f[R]-.fi-.IP-.nf-\f[C]-$ hledger codes -E-123-124---126-\f[R]-.fi-.SS commodities-.PP-commodities-.PD 0-.P-.PD-List all commodity/currency symbols used or declared in the journal.-.SS descriptions-.PP-descriptions-.PD 0-.P-.PD-List the unique descriptions that appear in transactions.-.PP-This command lists the unique descriptions that appear in transactions,-in alphabetic order.-You can add a query to select a subset of transactions.-.PP-Example:-.IP-.nf-\f[C]-$ hledger descriptions-Store Name-Gas Station | Petrol-Person A-\f[R]-.fi-.SS diff-.PP-diff-.PD 0-.P-.PD-Compares a particular account\[aq]s transactions in two input files.-It shows any transactions to this account which are in one file but not-in the other.-.PP-More precisely, for each posting affecting this account in either file,-it looks for a corresponding posting in the other file which posts the-same amount to the same account (ignoring date, description, etc.) Since-postings not transactions are compared, this also works when multiple-bank transactions have been combined into a single journal entry.-.PP-This is useful eg if you have downloaded an account\[aq]s transactions-from your bank (eg as CSV data).-When hledger and your bank disagree about the account balance, you can-compare the bank data with your journal to find out the cause.-.PP-Examples:-.IP-.nf-\f[C]-$ hledger diff -f $LEDGER_FILE -f bank.csv assets:bank:giro -These transactions are in the first file only:--2014/01/01 Opening Balances- assets:bank:giro EUR ...- ...- equity:opening balances EUR -...--These transactions are in the second file only:-\f[R]-.fi-.SS files-.PP-files-.PD 0-.P-.PD-List all files included in the journal.-With a REGEX argument, only file names matching the regular expression-(case sensitive) are shown.-.SS help-.PP-help-.PD 0-.P-.PD-Show any of the hledger manuals.-.PP-The \f[C]help\f[R] command displays any of the main hledger manuals, in-one of several ways.-Run it with no argument to list the manuals, or provide a full or-partial manual name to select one.-.PP-hledger manuals are available in several formats.-hledger help will use the first of these display methods that it finds:-info, man, $PAGER, less, stdout (or when non-interactive, just stdout).-You can force a particular viewer with the \f[C]--info\f[R],-\f[C]--man\f[R], \f[C]--pager\f[R], \f[C]--cat\f[R] flags.-.PP-Examples:-.IP-.nf-\f[C]-$ hledger help-Please choose a manual by typing \[dq]hledger help MANUAL\[dq] (a substring is ok).-Manuals: hledger hledger-ui hledger-web journal csv timeclock timedot-\f[R]-.fi-.IP-.nf-\f[C]-$ hledger help h --man--hledger(1) hledger User Manuals hledger(1)--NAME- hledger - a command-line accounting tool--SYNOPSIS- hledger [-f FILE] COMMAND [OPTIONS] [ARGS]- hledger [-f FILE] ADDONCMD -- [OPTIONS] [ARGS]- hledger--DESCRIPTION- hledger is a cross-platform program for tracking money, time, or any-\&...-\f[R]-.fi-.SS import-.PP-import-.PD 0-.P-.PD-Read new transactions added to each FILE since last run, and add them to-the main journal file.-Or with --dry-run, just print the transactions that would be added.-Or with --catchup, just mark all of the FILEs\[aq] transactions as-imported, without actually importing any.-.PP-The input files are specified as arguments - no need to write -f before-each one.-So eg to add new transactions from all CSV files to the main journal,-it\[aq]s just: \f[C]hledger import *.csv\f[R]-.PP-New transactions are detected in the same way as print --new: by-assuming transactions are always added to the input files in increasing-date order, and by saving \f[C].latest.FILE\f[R] state files.-.PP-The --dry-run output is in journal format, so you can filter it, eg to-see only uncategorised transactions:-.IP-.nf-\f[C]-$ hledger import --dry ... | hledger -f- print unknown --ignore-assertions-\f[R]-.fi-.SS Importing balance assignments-.PP-Entries added by import will have their posting amounts made explicit-(like \f[C]hledger print -x\f[R]).-This means that any balance assignments in imported files must be-evaluated; but, imported files don\[aq]t get to see the main file\[aq]s-account balances.-As a result, importing entries with balance assignments (eg from an-institution that provides only balances and not posting amounts) will-probably generate incorrect posting amounts.-To avoid this problem, use print instead of import:-.IP-.nf-\f[C]-$ hledger print IMPORTFILE [--new] >> $LEDGER_FILE-\f[R]-.fi-.PP-(If you think import should leave amounts implicit like print does,-please test it and send a pull request.)-.SS Commodity display styles-.PP-Imported amounts will be formatted according to the canonical commodity-styles (declared or inferred) in the main journal file.-.SS incomestatement-.PP-incomestatement, is-.PD 0-.P-.PD-.PP-This command displays an income statement, showing revenues and expenses-during one or more periods.-Amounts are shown with normal positive sign, as in conventional-financial statements.-.PP-The revenue and expense accounts shown are those accounts declared with-the \f[C]Revenue\f[R] or \f[C]Expense\f[R] type, or otherwise all-accounts under a top-level \f[C]revenue\f[R] or \f[C]income\f[R] or-\f[C]expense\f[R] account (case insensitive, plurals allowed).-.PP-Example:-.IP-.nf-\f[C]-$ hledger incomestatement-Income Statement--Revenues:- $-2 income- $-1 gifts- $-1 salary---------------------- $-2--Expenses:- $2 expenses- $1 food- $1 supplies---------------------- $2--Total:---------------------- 0-\f[R]-.fi-.PP-With a reporting interval, multiple columns will be shown, one for each-report period.-Normally incomestatement shows revenues/expenses per period, though as-with multicolumn balance reports you can alter the report mode with-\f[C]--change\f[R]/\f[C]--cumulative\f[R]/\f[C]--historical\f[R].-Instead of absolute values percentages can be displayed with-\f[C]-%\f[R].-.PP-This command also supports the output destination and output format-options The output formats supported are \f[C]txt\f[R], \f[C]csv\f[R],-\f[C]html\f[R], and (experimental) \f[C]json\f[R].-.SS notes-.PP-notes-.PD 0-.P-.PD-List the unique notes that appear in transactions.-.PP-This command lists the unique notes that appear in transactions, in-alphabetic order.-You can add a query to select a subset of transactions.-The note is the part of the transaction description after a | character-(or if there is no |, the whole description).-.PP-Example:-.IP-.nf-\f[C]-$ hledger notes-Petrol-Snacks-\f[R]-.fi-.SS rewrite-.PP-rewrite-.PD 0-.P-.PD-Print all transactions, rewriting the postings of matched transactions.-For now the only rewrite available is adding new postings, like print---auto.-.PP-This is a start at a generic rewriter of transaction entries.-It reads the default journal and prints the transactions, like print,-but adds one or more specified postings to any transactions matching-QUERY.-The posting amounts can be fixed, or a multiplier of the existing-transaction\[aq]s first posting amount.-.PP-Examples:-.IP-.nf-\f[C]-$ hledger-rewrite.hs \[ha]income --add-posting \[aq](liabilities:tax) *.33 ; income tax\[aq] --add-posting \[aq](reserve:gifts) $100\[aq]-$ hledger-rewrite.hs expenses:gifts --add-posting \[aq](reserve:gifts) *-1\[dq]\[aq]-$ hledger-rewrite.hs -f rewrites.hledger-\f[R]-.fi-.PP-rewrites.hledger may consist of entries like:-.IP-.nf-\f[C]-= \[ha]income amt:<0 date:2017- (liabilities:tax) *0.33 ; tax on income- (reserve:grocery) *0.25 ; reserve 25% for grocery- (reserve:) *0.25 ; reserve 25% for grocery-\f[R]-.fi-.PP-Note the single quotes to protect the dollar sign from bash, and the two-spaces between account and amount.-.PP-More:-.IP-.nf-\f[C]-$ hledger rewrite -- [QUERY] --add-posting \[dq]ACCT AMTEXPR\[dq] ...-$ hledger rewrite -- \[ha]income --add-posting \[aq](liabilities:tax) *.33\[aq]-$ hledger rewrite -- expenses:gifts --add-posting \[aq](budget:gifts) *-1\[dq]\[aq]-$ hledger rewrite -- \[ha]income --add-posting \[aq](budget:foreign currency) *0.25 JPY; diversify\[aq]-\f[R]-.fi-.PP-Argument for \f[C]--add-posting\f[R] option is a usual posting of-transaction with an exception for amount specification.-More precisely, you can use \f[C]\[aq]*\[aq]\f[R] (star symbol) before-the amount to indicate that that this is a factor for an amount of-original matched posting.-If the amount includes a commodity name, the new posting amount will be-in the new commodity; otherwise, it will be in the matched posting-amount\[aq]s commodity.-.SS Re-write rules in a file-.PP-During the run this tool will execute so called \[dq]Automated-Transactions\[dq] found in any journal it process.-I.e instead of specifying this operations in command line you can put-them in a journal file.-.IP-.nf-\f[C]-$ rewrite-rules.journal-\f[R]-.fi-.PP-Make contents look like this:-.IP-.nf-\f[C]-= \[ha]income- (liabilities:tax) *.33--= expenses:gifts- budget:gifts *-1- assets:budget *1-\f[R]-.fi-.PP-Note that \f[C]\[aq]=\[aq]\f[R] (equality symbol) that is used instead-of date in transactions you usually write.-It indicates the query by which you want to match the posting to add new-ones.-.IP-.nf-\f[C]-$ hledger rewrite -- -f input.journal -f rewrite-rules.journal > rewritten-tidy-output.journal-\f[R]-.fi-.PP-This is something similar to the commands pipeline:-.IP-.nf-\f[C]-$ hledger rewrite -- -f input.journal \[aq]\[ha]income\[aq] --add-posting \[aq](liabilities:tax) *.33\[aq] \[rs]- | hledger rewrite -- -f - expenses:gifts --add-posting \[aq]budget:gifts *-1\[aq] \[rs]- --add-posting \[aq]assets:budget *1\[aq] \[rs]- > rewritten-tidy-output.journal-\f[R]-.fi-.PP-It is important to understand that relative order of such entries in-journal is important.-You can re-use result of previously added postings.-.SS Diff output format-.PP-To use this tool for batch modification of your journal files you may-find useful output in form of unified diff.-.IP-.nf-\f[C]-$ hledger rewrite -- --diff -f examples/sample.journal \[aq]\[ha]income\[aq] --add-posting \[aq](liabilities:tax) *.33\[aq]-\f[R]-.fi-.PP-Output might look like:-.IP-.nf-\f[C]---- /tmp/examples/sample.journal-+++ /tmp/examples/sample.journal-\[at]\[at] -18,3 +18,4 \[at]\[at]- 2008/01/01 income-- assets:bank:checking $1-+ assets:bank:checking $1- income:salary-+ (liabilities:tax) 0-\[at]\[at] -22,3 +23,4 \[at]\[at]- 2008/06/01 gift-- assets:bank:checking $1-+ assets:bank:checking $1- income:gifts-+ (liabilities:tax) 0-\f[R]-.fi-.PP-If you\[aq]ll pass this through \f[C]patch\f[R] tool you\[aq]ll get-transactions containing the posting that matches your query be updated.-Note that multiple files might be update according to list of input-files specified via \f[C]--file\f[R] options and \f[C]include\f[R]-directives inside of these files.-.PP-Be careful.-Whole transaction being re-formatted in a style of output from-\f[C]hledger print\f[R].-.PP-See also:-.PP-https://github.com/simonmichael/hledger/issues/99-.SS rewrite vs. print --auto-.PP-This command predates print --auto, and currently does much the same-thing, but with these differences:-.IP \[bu] 2-with multiple files, rewrite lets rules in any file affect all other-files.-print --auto uses standard directive scoping; rules affect only child-files.-.IP \[bu] 2-rewrite\[aq]s query limits which transactions can be rewritten; all are-printed.-print --auto\[aq]s query limits which transactions are printed.-.IP \[bu] 2-rewrite applies rules specified on command line or in the journal.-print --auto applies rules specified in the journal.-.SS roi-.PP-roi-.PD 0-.P-.PD-Shows the time-weighted (TWR) and money-weighted (IRR) rate of return on-your investments.-.PP-This command assumes that you have account(s) that hold nothing but your-investments and whenever you record current appraisal/valuation of these-investments you offset unrealized profit and loss into account(s) that,-again, hold nothing but unrealized profit and loss.-.PP-Any transactions affecting balance of investment account(s) and not-originating from unrealized profit and loss account(s) are assumed to be-your investments or withdrawals.-.PP-At a minimum, you need to supply a query (which could be just an account-name) to select your investments with \f[C]--inv\f[R], and another query-to identify your profit and loss transactions with \f[C]--pnl\f[R].-.PP-This command will compute and display the internalized rate of return-(IRR) and time-weighted rate of return (TWR) for your investments for-the time period requested.-Both rates of return are annualized before display, regardless of the-length of reporting interval.-.PP-Note, in some cases this report can fail, for these reasons:-.IP \[bu] 2-Error (NotBracketed): No solution for Internal Rate of Return (IRR).-Possible causes: IRR is huge (>1000000%), balance of investment becomes-negative at some point in time.-.IP \[bu] 2-Error (SearchFailed): Failed to find solution for Internal Rate of-Return (IRR).-Either search does not converge to a solution, or converges too slowly.-.PP-Examples:-.IP \[bu] 2-Using roi to report unrealised gains:-https://github.com/simonmichael/hledger/blob/master/examples/roi-unrealised.ledger-.PP-More background:-.PP-\[dq]ROI\[dq] stands for \[dq]return on investment\[dq].-Traditionally this was computed as a difference between current value of-investment and its initial value, expressed in percentage of the initial-value.-.PP-However, this approach is only practical in simple cases, where-investments receives no in-flows or out-flows of money, and where rate-of growth is fixed over time.-For more complex scenarios you need different ways to compute rate of-return, and this command implements two of them: IRR and TWR.-.PP-Internal rate of return, or \[dq]IRR\[dq] (also called-\[dq]money-weighted rate of return\[dq]) takes into account effects of-in-flows and out-flows.-Naively, if you are withdrawing from your investment, your future gains-would be smaller (in absolute numbers), and will be a smaller percentage-of your initial investment, and if you are adding to your investment,-you will receive bigger absolute gains (but probably at the same rate of-return).-IRR is a way to compute rate of return for each period between in-flow-or out-flow of money, and then combine them in a way that gives you an-annual rate of return that investment is expected to generate.-.PP-As mentioned before, in-flows and out-flows would be any cash that you-personally put in or withdraw, and for the \[dq]roi\[dq] command, these-are transactions that involve account(s) matching \f[C]--inv\f[R]-argument and NOT involve account(s) matching \f[C]--pnl\f[R] argument.-.PP-Presumably, you will also record changes in the value of your-investment, and balance them against \[dq]profit and loss\[dq] (or-\[dq]unrealized gains\[dq]) account.-Note that in order for IRR to compute the precise effect of your-in-flows and out-flows on the rate of return, you will need to record-the value of your investement on or close to the days when in- or-out-flows occur.-.PP-Implementation of IRR in hledger should match the \f[C]XIRR\f[R] formula-in Excel.-.PP-Second way to compute rate of return that \f[C]roi\f[R] command-implements is called \[dq]time-weighted rate of return\[dq] or-\[dq]TWR\[dq].-Like IRR, it will also break the history of your investment into periods-between in-flows and out-flows to compute rate of return per each period-and then a compound rate of return.-However, internal workings of TWR are quite different.-.PP-In technical terms, IRR uses the same approach as computation of net-present value, and tries to find a discount rate that makes net present-value of all the cash flows of your investment to add up to zero.-This could be hard to wrap your head around, especially if you-haven\[aq]t done discounted cash flow analysis before.-.PP-TWR represents your investment as an imaginary \[dq]unit fund\[dq] where-in-flows/ out-flows lead to buying or selling \[dq]units\[dq] of your-investment and changes in its value change the value of \[dq]investment-unit\[dq].-Change in \[dq]unit price\[dq] over the reporting period gives you rate-of return of your investment.-.PP-References: * Explanation of rate of return * Explanation of IRR *-Explanation of TWR * Examples of computing IRR and TWR and discussion of-the limitations of both metrics-.PP-More examples:-.PP-Lets say that we found an investment in Snake Oil that is proising to-give us 10% annually:-.IP-.nf-\f[C]-2019-01-01 Investing in Snake Oil- assets:cash -$100- investment:snake oil--2019-12-24 Recording the growth of Snake Oil- investment:snake oil = $110- equity:unrealized gains-\f[R]-.fi-.PP-For now, basic computation of the rate of return, as well as IRR and-TWR, gives us the expected 10%:-.IP-.nf-\f[C]-$ hledger roi -Y --inv investment --pnl \[dq]unrealized\[dq]-+---++------------+------------++---------------+----------+-------------+-----++--------+--------+-| || Begin | End || Value (begin) | Cashflow | Value (end) | PnL || IRR | TWR |-+===++============+============++===============+==========+=============+=====++========+========+-| 1 || 2019-01-01 | 2019-12-31 || 0 | 100 | 110 | 10 || 10.00% | 10.00% |-+---++------------+------------++---------------+----------+-------------+-----++--------+--------+-\f[R]-.fi-.PP-However, lets say that shorty after investing in the Snake Oil we-started to have second thoughs, so we prompty withdrew $90, leaving only-$10 in.-Before Christmas, though, we started to get the \[dq]fear of mission-out\[dq], so we put the $90 back in.-So for most of the year, our investment was just $10 dollars, and it-gave us just $1 in growth:-.IP-.nf-\f[C]-2019-01-01 Investing in Snake Oil- assets:cash -$100- investment:snake oil--2019-01-02 Buyers remorse- assets:cash $90- investment:snake oil- -2019-12-30 Fear of missing out- assets:cash -$90- investment:snake oil--2019-12-31 Recording the growth of Snake Oil- investment:snake oil = $101- equity:unrealized gains-\f[R]-.fi-.PP-Now IRR and TWR are drastically different:-.IP-.nf-\f[C]-$ hledger roi -Y --inv investment --pnl \[dq]unrealized\[dq]-+---++------------+------------++---------------+----------+-------------+-----++-------+-------+-| || Begin | End || Value (begin) | Cashflow | Value (end) | PnL || IRR | TWR |-+===++============+============++===============+==========+=============+=====++=======+=======+-| 1 || 2019-01-01 | 2019-12-31 || 0 | 100 | 101 | 1 || 9.32% | 1.00% |-+---++------------+------------++---------------+----------+-------------+-----++-------+-------+-\f[R]-.fi-.PP-Here, IRR tells us that we made close to 10% on the $10 dollars that we-had in the account most of the time.-And TWR is ...-just 1%?-Why?-.PP-Based on the transactions in our journal, TWR \[dq]think\[dq] that we-are buying back $90 worst of Snake Oil at the same price that it had at-the beginning of they year, and then after that our $100 investment gets-$1 increase in value, or 1% of $100.-Let\[aq]s take a closer look at what is happening here by asking for-quarterly reports instead of annual:-.IP-.nf-\f[C]-$ hledger roi -Q --inv investment --pnl \[dq]unrealized\[dq]-+---++------------+------------++---------------+----------+-------------+-----++--------+-------+-| || Begin | End || Value (begin) | Cashflow | Value (end) | PnL || IRR | TWR |-+===++============+============++===============+==========+=============+=====++========+=======+-| 1 || 2019-01-01 | 2019-03-31 || 0 | 10 | 10 | 0 || 0.00% | 0.00% |-| 2 || 2019-04-01 | 2019-06-30 || 10 | 0 | 10 | 0 || 0.00% | 0.00% |-| 3 || 2019-07-01 | 2019-09-30 || 10 | 0 | 10 | 0 || 0.00% | 0.00% |-| 4 || 2019-10-01 | 2019-12-31 || 10 | 90 | 101 | 1 || 37.80% | 4.03% |-+---++------------+------------++---------------+----------+-------------+-----++--------+-------+-\f[R]-.fi-.PP-Now both IRR and TWR are thrown off by the fact that all of the growth-for our investment happens in Q4 2019.-This happes because IRR computation is still yielding 9.32% and TWR is-still 1%, but this time these are rates for three month period instead-of twelve, so in order to get an annual rate they should be multiplied-by four!-.PP-Let\[aq]s try to keep a better record of how Snake Oil grew in value:-.IP-.nf-\f[C]-2019-01-01 Investing in Snake Oil- assets:cash -$100- investment:snake oil--2019-01-02 Buyers remorse- assets:cash $90- investment:snake oil--2019-02-28 Recording the growth of Snake Oil- investment:snake oil - equity:unrealized gains -$0.25--2019-06-30 Recording the growth of Snake Oil- investment:snake oil - equity:unrealized gains -$0.25--2019-09-30 Recording the growth of Snake Oil- investment:snake oil - equity:unrealized gains -$0.25--2019-12-30 Fear of missing out- assets:cash -$90- investment:snake oil--2019-12-31 Recording the growth of Snake Oil- investment:snake oil- equity:unrealized gains -$0.25-\f[R]-.fi-.PP-Would our quartery report look better now?-Almost:-.IP-.nf-\f[C]-$ hledger roi -Q --inv investment --pnl \[dq]unrealized\[dq]-+---++------------+------------++---------------+----------+-------------+------++--------+--------+-| || Begin | End || Value (begin) | Cashflow | Value (end) | PnL || IRR | TWR |-+===++============+============++===============+==========+=============+======++========+========+-| 1 || 2019-01-01 | 2019-03-31 || 0 | 10 | 10.25 | 0.25 || 9.53% | 10.53% |-| 2 || 2019-04-01 | 2019-06-30 || 10.25 | 0 | 10.50 | 0.25 || 10.15% | 10.15% |-| 3 || 2019-07-01 | 2019-09-30 || 10.50 | 0 | 10.75 | 0.25 || 9.79% | 9.78% |-| 4 || 2019-10-01 | 2019-12-31 || 10.75 | 90 | 101.00 | 0.25 || 8.05% | 1.00% |-+---++------------+------------++---------------+----------+-------------+------++--------+--------+-\f[R]-.fi-.PP-Something is still wrong with TWR computation for Q4, and if you have-been paying attention you know what it is already: big $90 buy-back is-recorded prior to the only transaction that captures the change of value-of Snake Oil that happened in this time period.-Lets combine transactions from 30th and 31st of Dec into one:-.IP-.nf-\f[C]-2019-12-30 Fear of missing out and growth of Snake Oil- assets:cash -$90- investment:snake oil- equity:unrealized gains -$0.25-\f[R]-.fi-.PP-Now growth of investment properly affects its price at the time of-buy-back:-.IP-.nf-\f[C]-$ hledger roi -Q --inv investment --pnl \[dq]unrealized\[dq]-+---++------------+------------++---------------+----------+-------------+------++--------+--------+-| || Begin | End || Value (begin) | Cashflow | Value (end) | PnL || IRR | TWR |-+===++============+============++===============+==========+=============+======++========+========+-| 1 || 2019-01-01 | 2019-03-31 || 0 | 10 | 10.25 | 0.25 || 9.53% | 10.53% |-| 2 || 2019-04-01 | 2019-06-30 || 10.25 | 0 | 10.50 | 0.25 || 10.15% | 10.15% |-| 3 || 2019-07-01 | 2019-09-30 || 10.50 | 0 | 10.75 | 0.25 || 9.79% | 9.78% |-| 4 || 2019-10-01 | 2019-12-31 || 10.75 | 90 | 101.00 | 0.25 || 8.05% | 9.57% |-+---++------------+------------++---------------+----------+-------------+------++--------+--------+-\f[R]-.fi-.PP-And for annual report, TWR now reports the exact profitability of our-investment:-.IP-.nf-\f[C]-$ hledger roi -Y --inv investment --pnl \[dq]unrealized\[dq]-+---++------------+------------++---------------+----------+-------------+------++-------+--------+-| || Begin | End || Value (begin) | Cashflow | Value (end) | PnL || IRR | TWR |-+===++============+============++===============+==========+=============+======++=======+========+-| 1 || 2019-01-01 | 2019-12-31 || 0 | 100 | 101.00 | 1.00 || 9.32% | 10.00% |-+---++------------+------------++---------------+----------+-------------+------++-------+--------+-\f[R]-.fi-.SS stats-.PP-stats-.PD 0-.P-.PD-Show some journal statistics.-.PP-The stats command displays summary information for the whole journal, or-a matched part of it.-With a reporting interval, it shows a report for each report period.-.PP-Example:-.IP-.nf-\f[C]-$ hledger stats-Main journal file : /src/hledger/examples/sample.journal-Included journal files : -Transactions span : 2008-01-01 to 2009-01-01 (366 days)-Last transaction : 2008-12-31 (2333 days ago)-Transactions : 5 (0.0 per day)-Transactions last 30 days: 0 (0.0 per day)-Transactions last 7 days : 0 (0.0 per day)-Payees/descriptions : 5-Accounts : 8 (depth 3)-Commodities : 1 ($)-Market prices : 12 ($)-\f[R]-.fi-.PP-This command also supports output destination and output format-selection.-.SS tags-.PP-tags-.PD 0-.P-.PD-List the unique tag names used in the journal.-With a TAGREGEX argument, only tag names matching the regular expression-(case insensitive) are shown.-With QUERY arguments, only transactions matching the query are-considered.-.PP-With the --values flag, the tags\[aq] unique values are listed instead.-.PP-With --parsed flag, all tags or values are shown in the order they are-parsed from the input data, including duplicates.-.PP-With -E/--empty, any blank/empty values will also be shown, otherwise-they are omitted.-.SS test-.PP-test-.PD 0-.P-.PD-Run built-in unit tests.-.PP-This command runs the unit tests built in to hledger and hledger-lib,-printing the results on stdout.-If any test fails, the exit code will be non-zero.-.PP-This is mainly used by hledger developers, but you can also use it to-sanity-check the installed hledger executable on your platform.-All tests are expected to pass - if you ever see a failure, please-report as a bug!-.PP-This command also accepts tasty test runner options, written after a ---(double hyphen).-Eg to run only the tests in Hledger.Data.Amount, with ANSI colour codes-disabled:-.IP-.nf-\f[C]-$ hledger test -- -pData.Amount --color=never-\f[R]-.fi-.PP-For help on these, see https://github.com/feuerbach/tasty#options-(\f[C]-- --help\f[R] currently doesn\[aq]t show them).-.SS Add-on commands-.PP-Any programs or scripts in your PATH named named-\f[C]hledger-SOMETHING\f[R] will also appear in the commands list (with-a \f[C]+\f[R] mark).-These are called add-on commands.-.PP-These offical add-ons are maintained and released along with hledger:-.IP \[bu] 2-ui an efficient terminal interface for hledger (TUI)-.IP \[bu] 2-web a simple web interface for hledger (WUI)-.PP-These add-ons are maintained separately:-.IP \[bu] 2-iadd a more interactive alternative for the add command-.IP \[bu] 2-interest generates interest transactions according to various schemes-.IP \[bu] 2-stockquotes downloads market prices for your commodities from-AlphaVantage \f[I](experimental)\f[R]-.PP-Additional experimental add-ons, which may not be in a working state,-can be found in the bin/ directory in the hledger repo.-.SS Add-on command flags-.PP-In a hledger command line, add-on command flags must have a double dash-(\f[C]--\f[R]) preceding them.-Eg you must write:-.IP-.nf-\f[C]-$ hledger web -- --serve-\f[R]-.fi-.PP-and not:-.IP-.nf-\f[C]-$ hledger web --serve-\f[R]-.fi-.PP-(because the \f[C]--serve\f[R] flag belongs to \f[C]hledger-web\f[R],-not \f[C]hledger\f[R]).-.PP-The \f[C]-h/--help\f[R] and \f[C]--version\f[R] flags work without-\f[C]--\f[R], with their position deciding which program they refer to.-Eg \f[C]hledger -h web\f[R] shows hledger\[aq]s help,-\f[C]hledger web -h\f[R] shows hledger-web\[aq]s help.-.PP-If you have any trouble with this, remember you can always run the-add-on program directly, eg:-.IP-.nf-\f[C]-$ hledger-web --serve-\f[R]-.fi-.SS Making add-on commands-.PP-Add-on commands are programs or scripts in your PATH-.IP \[bu] 2-whose name starts with \f[C]hledger-\f[R]-.IP \[bu] 2-whose name ends with a recognised file extension:-\f[C].bat\f[R],\f[C].com\f[R],\f[C].exe\f[R],-\f[C].hs\f[R],\f[C].lhs\f[R],\f[C].pl\f[R],\f[C].py\f[R],\f[C].rb\f[R],\f[C].rkt\f[R],\f[C].sh\f[R]-or none-.IP \[bu] 2-and (on unix, mac) which are executable by the current user.-.PP-Add-ons are a relatively easy way to add local features or experiment-with new ideas.-They can be written in any language, but haskell scripts have a big-advantage: they can use the same hledger library functions that built-in-commands use for command-line options, parsing and reporting.-.SH ENVIRONMENT-.PP-\f[B]LEDGER_FILE\f[R] The journal file path when not specified with-\f[C]-f\f[R].-Default: \f[C]\[ti]/.hledger.journal\f[R] (on windows, perhaps-\f[C]C:/Users/USER/.hledger.journal\f[R]).-.PP-A typical value is \f[C]\[ti]/DIR/YYYY.journal\f[R], where DIR is a-version-controlled finance directory and YYYY is the current year.-Or \f[C]\[ti]/DIR/current.journal\f[R], where current.journal is a-symbolic link to YYYY.journal.-.PP-On Mac computers, you can set this and other environment variables in a-more thorough way that also affects applications started from the GUI-(say, an Emacs dock icon).-Eg on MacOS Catalina I have a \f[C]\[ti]/.MacOSX/environment.plist\f[R]-file containing-.IP-.nf-\f[C]-{- \[dq]LEDGER_FILE\[dq] : \[dq]\[ti]/finance/current.journal\[dq]-}-\f[R]-.fi-.PP-To see the effect you may need to \f[C]killall Dock\f[R], or reboot.-.PP-\f[B]COLUMNS\f[R] The screen width used by the register command.-Default: the full terminal width.-.PP-\f[B]NO_COLOR\f[R] If this variable exists with any value, hledger will-not use ANSI color codes in terminal output.-This overrides the --color/--colour option.-.SH FILES-.PP-Reads data from one or more files in hledger journal, timeclock,-timedot, or CSV format specified with \f[C]-f\f[R], or-\f[C]$LEDGER_FILE\f[R], or \f[C]$HOME/.hledger.journal\f[R] (on windows,-perhaps \f[C]C:/Users/USER/.hledger.journal\f[R]).-.SH LIMITATIONS-.PP-The need to precede add-on command options with \f[C]--\f[R] when-invoked from hledger is awkward.-.PP-When input data contains non-ascii characters, a suitable system locale-must be configured (or there will be an unhelpful error).-Eg on POSIX, set LANG to something other than C.-.PP-In a Microsoft Windows CMD window, non-ascii characters and colours are-not supported.-.PP-On Windows, non-ascii characters may not display correctly when running-a hledger built in CMD in MSYS/CYGWIN, or vice-versa.-.PP-In a Cygwin/MSYS/Mintty window, the tab key is not supported in hledger-add.-.PP-Not all of Ledger\[aq]s journal file syntax is supported.-See file format differences.-.PP-On large data files, hledger is slower and uses more memory than Ledger.-.SH TROUBLESHOOTING-.PP-Here are some issues you might encounter when you run hledger (and-remember you can also seek help from the IRC channel, mail list or bug-tracker):-.PP-\f[B]Successfully installed, but \[dq]No command \[aq]hledger\[aq]-found\[dq]\f[R]-.PD 0-.P-.PD-stack and cabal install binaries into a special directory, which should-be added to your PATH environment variable.-Eg on unix-like systems, that is \[ti]/.local/bin and \[ti]/.cabal/bin-respectively.-.PP-\f[B]I set a custom LEDGER_FILE, but hledger is still using the default-file\f[R]-.PD 0-.P-.PD-\f[C]LEDGER_FILE\f[R] should be a real environment variable, not just a-shell variable.-The command \f[C]env | grep LEDGER_FILE\f[R] should show it.-You may need to use \f[C]export\f[R].-Here\[aq]s an explanation.-.PP-\f[B]Getting errors like \[dq]Illegal byte sequence\[dq] or \[dq]Invalid-or incomplete multibyte or wide character\[dq] or-\[dq]commitAndReleaseBuffer: invalid argument (invalid-character)\[dq]\f[R]-.PD 0-.P-.PD-Programs compiled with GHC (hledger, haskell build tools, etc.) need to-have a UTF-8-aware locale configured in the environment, otherwise they-will fail with these kinds of errors when they encounter non-ascii-characters.-.PP-To fix it, set the LANG environment variable to some locale which-supports UTF-8.-The locale you choose must be installed on your system.-.PP-Here\[aq]s an example of setting LANG temporarily, on Ubuntu GNU/Linux:-.IP-.nf-\f[C]-$ file my.journal-my.journal: UTF-8 Unicode text # the file is UTF8-encoded-$ echo $LANG-C # LANG is set to the default locale, which does not support UTF8-$ locale -a # which locales are installed ?-C-en_US.utf8 # here\[aq]s a UTF8-aware one we can use-POSIX-$ LANG=en_US.utf8 hledger -f my.journal print # ensure it is used for this command-\f[R]-.fi-.PP-If available, \f[C]C.UTF-8\f[R] will also work.-If your preferred locale isn\[aq]t listed by \f[C]locale -a\f[R], you-might need to install it.-Eg on Ubuntu/Debian:-.IP-.nf-\f[C]-$ apt-get install language-pack-fr-$ locale -a-C-en_US.utf8-fr_BE.utf8-fr_CA.utf8-fr_CH.utf8-fr_FR.utf8-fr_LU.utf8-POSIX-$ LANG=fr_FR.utf8 hledger -f my.journal print-\f[R]-.fi-.PP-Here\[aq]s how you could set it permanently, if you use a bash shell:-.IP-.nf-\f[C]-$ echo \[dq]export LANG=en_US.utf8\[dq] >>\[ti]/.bash_profile-$ bash --login-\f[R]-.fi-.PP-Exact spelling and capitalisation may be important.-Note the difference on MacOS (\f[C]UTF-8\f[R], not \f[C]utf8\f[R]).-Some platforms (eg ubuntu) allow variant spellings, but others (eg-macos) require it to be exact:-.IP-.nf-\f[C]-$ locale -a | grep -iE en_us.*utf-en_US.UTF-8-$ LANG=en_US.UTF-8 hledger -f my.journal print-\f[R]-.fi---.SH "REPORTING BUGS"-Report bugs at http://bugs.hledger.org-(or on the #hledger IRC channel or hledger mail list)--.SH AUTHORS-Simon Michael <simon@joyful.com> and contributors--.SH COPYRIGHT--Copyright (C) 2007-2020 Simon Michael.-.br-Released under GNU GPL v3 or later.--.SH SEE ALSO-hledger(1), hledger\-ui(1), hledger\-web(1), ledger(1)--hledger_journal(5), hledger_csv(5), hledger_timeclock(5), hledger_timedot(5)+.TH "HLEDGER" "1" "December 2020" "hledger-1.21 " "hledger User Manuals"++++.SH NAME+.PP+This is the command-line interface (CLI) for the hledger accounting+tool.+Here we also describe hledger\[aq]s concepts and file formats.+This manual is for hledger 1.21.+.SH SYNOPSIS+.PP+\f[C]hledger\f[R]+.PP+\f[C]hledger [-f FILE] COMMAND [OPTIONS] [ARGS]\f[R]+.PP+\f[C]hledger [-f FILE] ADDONCMD -- [OPTIONS] [ARGS]\f[R]+.SH DESCRIPTION+.PP+hledger is a reliable, cross-platform set of programs for tracking+money, time, or any other commodity, using double-entry accounting and a+simple, editable file format.+hledger is inspired by and largely compatible with ledger(1).+.PP+The basic function of the hledger CLI is to read a plain text file+describing financial transactions (in accounting terms, a general+journal) and print useful reports on standard output, or export them as+CSV.+hledger can also read some other file formats such as CSV files,+translating them to journal format.+Additionally, hledger lists other hledger-* executables found in the+user\[cq]s $PATH and can invoke them as subcommands.+.PP+hledger reads data from one or more files in hledger journal, timeclock,+timedot, or CSV format specified with \f[C]-f\f[R], or+\f[C]$LEDGER_FILE\f[R], or \f[C]$HOME/.hledger.journal\f[R] (on windows,+perhaps \f[C]C:/Users/USER/.hledger.journal\f[R]).+If using \f[C]$LEDGER_FILE\f[R], note this must be a real environment+variable, not a shell variable.+You can specify standard input with \f[C]-f-\f[R].+.PP+Transactions are dated movements of money between two (or more) named+accounts, and are recorded with journal entries like this:+.IP+.nf+\f[C]+2015/10/16 bought food+ expenses:food $10+ assets:cash+\f[R]+.fi+.PP+For more about this format, see hledger_journal(5).+.PP+Most users use a text editor to edit the journal, usually with an editor+mode such as ledger-mode for added convenience.+hledger\[cq]s interactive add command is another way to record new+transactions.+hledger never changes existing transactions.+.PP+To get started, you can either save some entries like the above in+\f[C]\[ti]/.hledger.journal\f[R], or run \f[C]hledger add\f[R] and+follow the prompts.+Then try some commands like \f[C]hledger print\f[R] or+\f[C]hledger balance\f[R].+Run \f[C]hledger\f[R] with no arguments for a list of commands.+.SH OPTIONS+.SS General options+.PP+To see general usage help, including general options which are supported+by most hledger commands, run \f[C]hledger -h\f[R].+.PP+General help options:+.TP+\f[B]\f[CB]-h --help\f[B]\f[R]+show general or COMMAND help+.TP+\f[B]\f[CB]--man\f[B]\f[R]+show general or COMMAND user manual with man+.TP+\f[B]\f[CB]--info\f[B]\f[R]+show general or COMMAND user manual with info+.TP+\f[B]\f[CB]--version\f[B]\f[R]+show general or ADDONCMD version+.TP+\f[B]\f[CB]--debug[=N]\f[B]\f[R]+show debug output (levels 1-9, default: 1)+.PP+General input options:+.TP+\f[B]\f[CB]-f FILE --file=FILE\f[B]\f[R]+use a different input file.+For stdin, use - (default: \f[C]$LEDGER_FILE\f[R] or+\f[C]$HOME/.hledger.journal\f[R])+.TP+\f[B]\f[CB]--rules-file=RULESFILE\f[B]\f[R]+Conversion rules file to use when reading CSV (default: FILE.rules)+.TP+\f[B]\f[CB]--separator=CHAR\f[B]\f[R]+Field separator to expect when reading CSV (default: \[aq],\[aq])+.TP+\f[B]\f[CB]--alias=OLD=NEW\f[B]\f[R]+rename accounts named OLD to NEW+.TP+\f[B]\f[CB]--anon\f[B]\f[R]+anonymize accounts and payees+.TP+\f[B]\f[CB]--pivot FIELDNAME\f[B]\f[R]+use some other field or tag for the account name+.TP+\f[B]\f[CB]-I --ignore-assertions\f[B]\f[R]+disable balance assertion checks (note: does not disable balance+assignments)+.TP+\f[B]\f[CB]-s --strict\f[B]\f[R]+do extra error checking (check that all posted accounts are declared)+.PP+General reporting options:+.TP+\f[B]\f[CB]-b --begin=DATE\f[B]\f[R]+include postings/txns on or after this date+.TP+\f[B]\f[CB]-e --end=DATE\f[B]\f[R]+include postings/txns before this date+.TP+\f[B]\f[CB]-D --daily\f[B]\f[R]+multiperiod/multicolumn report by day+.TP+\f[B]\f[CB]-W --weekly\f[B]\f[R]+multiperiod/multicolumn report by week+.TP+\f[B]\f[CB]-M --monthly\f[B]\f[R]+multiperiod/multicolumn report by month+.TP+\f[B]\f[CB]-Q --quarterly\f[B]\f[R]+multiperiod/multicolumn report by quarter+.TP+\f[B]\f[CB]-Y --yearly\f[B]\f[R]+multiperiod/multicolumn report by year+.TP+\f[B]\f[CB]-p --period=PERIODEXP\f[B]\f[R]+set start date, end date, and/or reporting interval all at once using+period expressions syntax+.TP+\f[B]\f[CB]--date2\f[B]\f[R]+match the secondary date instead (see command help for other effects)+.TP+\f[B]\f[CB]-U --unmarked\f[B]\f[R]+include only unmarked postings/txns (can combine with -P or -C)+.TP+\f[B]\f[CB]-P --pending\f[B]\f[R]+include only pending postings/txns+.TP+\f[B]\f[CB]-C --cleared\f[B]\f[R]+include only cleared postings/txns+.TP+\f[B]\f[CB]-R --real\f[B]\f[R]+include only non-virtual postings+.TP+\f[B]\f[CB]-NUM --depth=NUM\f[B]\f[R]+hide/aggregate accounts or postings more than NUM levels deep+.TP+\f[B]\f[CB]-E --empty\f[B]\f[R]+show items with zero amount, normally hidden (and vice-versa in+hledger-ui/hledger-web)+.TP+\f[B]\f[CB]-B --cost\f[B]\f[R]+convert amounts to their cost/selling amount at transaction time+.TP+\f[B]\f[CB]-V --market\f[B]\f[R]+convert amounts to their market value in default valuation commodities+.TP+\f[B]\f[CB]-X --exchange=COMM\f[B]\f[R]+convert amounts to their market value in commodity COMM+.TP+\f[B]\f[CB]--value\f[B]\f[R]+convert amounts to cost or market value, more flexibly than -B/-V/-X+.TP+\f[B]\f[CB]--infer-market-prices\f[B]\f[R]+use transaction prices (recorded with \[at] or \[at]\[at]) as additional+market prices, as if they were P directives+.TP+\f[B]\f[CB]--auto\f[B]\f[R]+apply automated posting rules to modify transactions.+.TP+\f[B]\f[CB]--forecast\f[B]\f[R]+generate future transactions from periodic transaction rules, for the+next 6 months or till report end date.+In hledger-ui, also make ordinary future transactions visible.+.TP+\f[B]\f[CB]--color=WHEN (or --colour=WHEN)\f[B]\f[R]+Should color-supporting commands use ANSI color codes in text output.+\[aq]auto\[aq] (default): whenever stdout seems to be a color-supporting+terminal.+\[aq]always\[aq] or \[aq]yes\[aq]: always, useful eg when piping output+into \[aq]less -R\[aq].+\[aq]never\[aq] or \[aq]no\[aq]: never.+A NO_COLOR environment variable overrides this.+.PP+When a reporting option appears more than once in the command line, the+last one takes precedence.+.PP+Some reporting options can also be written as query arguments.+.SS Command options+.PP+To see options for a particular command, including command-specific+options, run: \f[C]hledger COMMAND -h\f[R].+.PP+Command-specific options must be written after the command name, eg:+\f[C]hledger print -x\f[R].+.PP+Additionally, if the command is an add-on, you may need to put its+options after a double-hyphen, eg: \f[C]hledger ui -- --watch\f[R].+Or, you can run the add-on executable directly:+\f[C]hledger-ui --watch\f[R].+.SS Command arguments+.PP+Most hledger commands accept arguments after the command name, which are+often a query, filtering the data in some way.+.PP+You can save a set of command line options/arguments in a file, and then+reuse them by writing \f[C]\[at]FILENAME\f[R] as a command line+argument.+Eg: \f[C]hledger bal \[at]foo.args\f[R].+(To prevent this, eg if you have an argument that begins with a literal+\f[C]\[at]\f[R], precede it with \f[C]--\f[R], eg:+\f[C]hledger bal -- \[at]ARG\f[R]).+.PP+Inside the argument file, each line should contain just one option or+argument.+Avoid the use of spaces, except inside quotes (or you\[aq]ll see a+confusing error).+Between a flag and its argument, use = (or nothing).+Bad:+.IP+.nf+\f[C]+assets depth:2+-X USD+\f[R]+.fi+.PP+Good:+.IP+.nf+\f[C]+assets+depth:2+-X=USD+\f[R]+.fi+.PP+For special characters (see below), use one less level of quoting than+you would at the command prompt.+Bad:+.IP+.nf+\f[C]+-X\[dq]$\[dq]+\f[R]+.fi+.PP+Good:+.IP+.nf+\f[C]+-X$+\f[R]+.fi+.PP+See also: Save frequently used options.+.SS Special characters+.SS Single escaping (shell metacharacters)+.PP+In shell command lines, characters significant to your shell - such as+spaces, \f[C]<\f[R], \f[C]>\f[R], \f[C](\f[R], \f[C])\f[R], \f[C]|\f[R],+\f[C]$\f[R] and \f[C]\[rs]\f[R] - should be \[dq]shell-escaped\[dq] if+you want hledger to see them.+This is done by enclosing them in single or double quotes, or by writing+a backslash before them.+Eg to match an account name containing a space:+.IP+.nf+\f[C]+$ hledger register \[aq]credit card\[aq]+\f[R]+.fi+.PP+or:+.IP+.nf+\f[C]+$ hledger register credit\[rs] card+\f[R]+.fi+.SS Double escaping (regular expression metacharacters)+.PP+Characters significant in regular expressions (described below) - such+as \f[C].\f[R], \f[C]\[ha]\f[R], \f[C]$\f[R], \f[C][\f[R], \f[C]]\f[R],+\f[C](\f[R], \f[C])\f[R], \f[C]|\f[R], and \f[C]\[rs]\f[R] - may need to+be \[dq]regex-escaped\[dq] if you don\[aq]t want them to be interpreted+by hledger\[aq]s regular expression engine.+This is done by writing backslashes before them, but since backslash is+typically also a shell metacharacter, both shell-escaping and+regex-escaping will be needed.+Eg to match a literal \f[C]$\f[R] sign while using the bash shell:+.IP+.nf+\f[C]+$ hledger balance cur:\[aq]\[rs]$\[aq]+\f[R]+.fi+.PP+or:+.IP+.nf+\f[C]+$ hledger balance cur:\[rs]\[rs]$+\f[R]+.fi+.SS Triple escaping (for add-on commands)+.PP+When you use hledger to run an external add-on command (described+below), one level of shell-escaping is lost from any options or+arguments intended for by the add-on command, so those need an extra+level of shell-escaping.+Eg to match a literal \f[C]$\f[R] sign while using the bash shell and+running an add-on command (\f[C]ui\f[R]):+.IP+.nf+\f[C]+$ hledger ui cur:\[aq]\[rs]\[rs]$\[aq]+\f[R]+.fi+.PP+or:+.IP+.nf+\f[C]+$ hledger ui cur:\[rs]\[rs]\[rs]\[rs]$+\f[R]+.fi+.PP+If you wondered why \f[I]four\f[R] backslashes, perhaps this helps:+.PP+.TS+tab(@);+l l.+T{+unescaped:+T}@T{+\f[C]$\f[R]+T}+T{+escaped:+T}@T{+\f[C]\[rs]$\f[R]+T}+T{+double-escaped:+T}@T{+\f[C]\[rs]\[rs]$\f[R]+T}+T{+triple-escaped:+T}@T{+\f[C]\[rs]\[rs]\[rs]\[rs]$\f[R]+T}+.TE+.PP+Or, you can avoid the extra escaping by running the add-on executable+directly:+.IP+.nf+\f[C]+$ hledger-ui cur:\[rs]\[rs]$+\f[R]+.fi+.SS Less escaping+.PP+Options and arguments are sometimes used in places other than the shell+command line, where shell-escaping is not needed, so there you should+use one less level of escaping.+Those places include:+.IP \[bu] 2+an \[at]argumentfile+.IP \[bu] 2+hledger-ui\[aq]s filter field+.IP \[bu] 2+hledger-web\[aq]s search form+.IP \[bu] 2+GHCI\[aq]s prompt (used by developers).+.SS Unicode characters+.PP+hledger is expected to handle non-ascii characters correctly:+.IP \[bu] 2+they should be parsed correctly in input files and on the command line,+by all hledger tools (add, iadd, hledger-web\[aq]s search/add/edit+forms, etc.)+.IP \[bu] 2+they should be displayed correctly by all hledger tools, and on-screen+alignment should be preserved.+.PP+This requires a well-configured environment.+Here are some tips:+.IP \[bu] 2+A system locale must be configured, and it must be one that can decode+the characters being used.+In bash, you can set a locale like this:+\f[C]export LANG=en_US.UTF-8\f[R].+There are some more details in Troubleshooting.+This step is essential - without it, hledger will quit on encountering a+non-ascii character (as with all GHC-compiled programs).+.IP \[bu] 2+your terminal software (eg Terminal.app, iTerm, CMD.exe, xterm..) must+support unicode+.IP \[bu] 2+the terminal must be using a font which includes the required unicode+glyphs+.IP \[bu] 2+the terminal should be configured to display wide characters as double+width (for report alignment)+.IP \[bu] 2+on Windows, for best results you should run hledger in the same kind of+environment in which it was built.+Eg hledger built in the standard CMD.EXE environment (like the binaries+on our download page) might show display problems when run in a cygwin+or msys terminal, and vice versa.+(See eg #961).+.SS Regular expressions+.PP+hledger uses regular expressions in a number of places:+.IP \[bu] 2+query terms, on the command line and in the hledger-web search form:+\f[C]REGEX\f[R], \f[C]desc:REGEX\f[R], \f[C]cur:REGEX\f[R],+\f[C]tag:...=REGEX\f[R]+.IP \[bu] 2+CSV rules conditional blocks: \f[C]if REGEX ...\f[R]+.IP \[bu] 2+account alias directives and options:+\f[C]alias /REGEX/ = REPLACEMENT\f[R],+\f[C]--alias /REGEX/=REPLACEMENT\f[R]+.PP+hledger\[aq]s regular expressions come from the regex-tdfa library.+If they\[aq]re not doing what you expect, it\[aq]s important to know+exactly what they support:+.IP "1." 3+they are case insensitive+.IP "2." 3+they are infix matching (they do not need to match the entire thing+being matched)+.IP "3." 3+they are POSIX ERE (extended regular expressions)+.IP "4." 3+they also support GNU word boundaries (\f[C]\[rs]b\f[R],+\f[C]\[rs]B\f[R], \f[C]\[rs]<\f[R], \f[C]\[rs]>\f[R])+.IP "5." 3+they do not support backreferences; if you write \f[C]\[rs]1\f[R], it+will match the digit \f[C]1\f[R].+Except when doing text replacement, eg in account aliases, where+backreferences can be used in the replacement string to reference+capturing groups in the search regexp.+.IP "6." 3+they do not support mode modifiers (\f[C](?s)\f[R]), character classes+(\f[C]\[rs]w\f[R], \f[C]\[rs]d\f[R]), or anything else not mentioned+above.+.PP+Some things to note:+.IP \[bu] 2+In the \f[C]alias\f[R] directive and \f[C]--alias\f[R] option, regular+expressions must be enclosed in forward slashes (\f[C]/REGEX/\f[R]).+Elsewhere in hledger, these are not required.+.IP \[bu] 2+In queries, to match a regular expression metacharacter like \f[C]$\f[R]+as a literal character, prepend a backslash.+Eg to search for amounts with the dollar sign in hledger-web, write+\f[C]cur:\[rs]$\f[R].+.IP \[bu] 2+On the command line, some metacharacters like \f[C]$\f[R] have a special+meaning to the shell and so must be escaped at least once more.+See Special characters.+.SH ENVIRONMENT+.PP+\f[B]LEDGER_FILE\f[R] The journal file path when not specified with+\f[C]-f\f[R].+Default: \f[C]\[ti]/.hledger.journal\f[R] (on windows, perhaps+\f[C]C:/Users/USER/.hledger.journal\f[R]).+.PP+A typical value is \f[C]\[ti]/DIR/YYYY.journal\f[R], where DIR is a+version-controlled finance directory and YYYY is the current year.+Or \f[C]\[ti]/DIR/current.journal\f[R], where current.journal is a+symbolic link to YYYY.journal.+.PP+On Mac computers, you can set this and other environment variables in a+more thorough way that also affects applications started from the GUI+(say, an Emacs dock icon).+Eg on MacOS Catalina I have a \f[C]\[ti]/.MacOSX/environment.plist\f[R]+file containing+.IP+.nf+\f[C]+{+ \[dq]LEDGER_FILE\[dq] : \[dq]\[ti]/finance/current.journal\[dq]+}+\f[R]+.fi+.PP+To see the effect you may need to \f[C]killall Dock\f[R], or reboot.+.PP+\f[B]COLUMNS\f[R] The screen width used by the register command.+Default: the full terminal width.+.PP+\f[B]NO_COLOR\f[R] If this variable exists with any value, hledger will+not use ANSI color codes in terminal output.+This overrides the --color/--colour option.+.SH DATA FILES+.PP+hledger reads transactions from one or more data files.+The default data file is \f[C]$HOME/.hledger.journal\f[R] (or on+Windows, something like \f[C]C:/Users/USER/.hledger.journal\f[R]).+.PP+You can override this with the \f[C]$LEDGER_FILE\f[R] environment+variable:+.IP+.nf+\f[C]+$ setenv LEDGER_FILE \[ti]/finance/2016.journal+$ hledger stats+\f[R]+.fi+.PP+or with one or more \f[C]-f/--file\f[R] options:+.IP+.nf+\f[C]+$ hledger -f /some/file -f another_file stats+\f[R]+.fi+.PP+The file name \f[C]-\f[R] means standard input:+.IP+.nf+\f[C]+$ cat some.journal | hledger -f-+\f[R]+.fi+.SS Data formats+.PP+Usually the data file is in hledger\[aq]s journal format, but it can be+in any of the supported file formats, which currently are:+.PP+.TS+tab(@);+lw(7.8n) lw(39.5n) lw(22.7n).+T{+Reader:+T}@T{+Reads:+T}@T{+Used for file extensions:+T}+_+T{+\f[C]journal\f[R]+T}@T{+hledger journal files and some Ledger journals, for transactions+T}@T{+\f[C].journal\f[R] \f[C].j\f[R] \f[C].hledger\f[R] \f[C].ledger\f[R]+T}+T{+\f[C]timeclock\f[R]+T}@T{+timeclock files, for precise time logging+T}@T{+\f[C].timeclock\f[R]+T}+T{+\f[C]timedot\f[R]+T}@T{+timedot files, for approximate time logging+T}@T{+\f[C].timedot\f[R]+T}+T{+\f[C]csv\f[R]+T}@T{+comma/semicolon/tab/other-separated values, for data import+T}@T{+\f[C].csv\f[R] \f[C].ssv\f[R] \f[C].tsv\f[R]+T}+.TE+.PP+These formats are described in their own sections, below.+.PP+hledger detects the format automatically based on the file extensions+shown above.+If it can\[aq]t recognise the file extension, it assumes+\f[C]journal\f[R] format.+So for non-journal files, it\[aq]s important to use a recognised file+extension, so as to either read successfully or to show relevant error+messages.+.PP+You can also force a specific reader/format by prefixing the file path+with the format and a colon.+Eg, to read a .dat file as csv format:+.IP+.nf+\f[C]+$ hledger -f csv:/some/csv-file.dat stats+\f[R]+.fi+.PP+Or to read stdin (\f[C]-\f[R]) as timeclock format:+.IP+.nf+\f[C]+$ echo \[aq]i 2009/13/1 08:00:00\[aq] | hledger print -ftimeclock:-+\f[R]+.fi+.SS Multiple files+.PP+You can specify multiple \f[C]-f\f[R] options, to read multiple files as+one big journal.+There are some limitations with this:+.IP \[bu] 2+most directives do not affect sibling files+.IP \[bu] 2+balance assertions will not see any account balances from previous files+.PP+If you need either of those things, you can+.IP \[bu] 2+use a single parent file which includes the others+.IP \[bu] 2+or concatenate the files into one before reading, eg:+\f[C]cat a.journal b.journal | hledger -f- CMD\f[R].+.SS Strict mode+.PP+hledger checks input files for valid data.+By default, the most important errors are detected, while still+accepting easy journal files without a lot of declarations:+.IP \[bu] 2+Are the input files parseable, with valid syntax ?+.IP \[bu] 2+Are all transactions balanced ?+.IP \[bu] 2+Do all balance assertions pass ?+.PP+With the \f[C]-s\f[R]/\f[C]--strict\f[R] flag, additional checks are+performed:+.IP \[bu] 2+Are all accounts posted to, declared with an \f[C]account\f[R] directive+?+(Account error checking)+.IP \[bu] 2+Are all commodities declared with a \f[C]commodity\f[R] directive ?+(Commodity error checking)+.PP+See also: https://hledger.org/checking-for-errors.html+.PP+\f[I]experimental.\f[R]+.SH TIME PERIODS+.SS Smart dates+.PP+hledger\[aq]s user interfaces accept a flexible \[dq]smart date\[dq]+syntax.+Smart dates allow some english words, can be relative to today\[aq]s+date, and can have less-significant date parts omitted (defaulting to+1).+.PP+Examples:+.PP+.TS+tab(@);+lw(24.2n) lw(45.8n).+T{+\f[C]2004/10/1\f[R], \f[C]2004-01-01\f[R], \f[C]2004.9.1\f[R]+T}@T{+exact date, several separators allowed.+Year is 4+ digits, month is 1-12, day is 1-31+T}+T{+\f[C]2004\f[R]+T}@T{+start of year+T}+T{+\f[C]2004/10\f[R]+T}@T{+start of month+T}+T{+\f[C]10/1\f[R]+T}@T{+month and day in current year+T}+T{+\f[C]21\f[R]+T}@T{+day in current month+T}+T{+\f[C]october, oct\f[R]+T}@T{+start of month in current year+T}+T{+\f[C]yesterday, today, tomorrow\f[R]+T}@T{+-1, 0, 1 days from today+T}+T{+\f[C]last/this/next day/week/month/quarter/year\f[R]+T}@T{+-1, 0, 1 periods from the current period+T}+T{+\f[C]20181201\f[R]+T}@T{+8 digit YYYYMMDD with valid year month and day+T}+T{+\f[C]201812\f[R]+T}@T{+6 digit YYYYMM with valid year and month+T}+.TE+.PP+Counterexamples - malformed digit sequences might give surprising+results:+.PP+.TS+tab(@);+lw(11.4n) lw(58.6n).+T{+\f[C]201813\f[R]+T}@T{+6 digits with an invalid month is parsed as start of 6-digit year+T}+T{+\f[C]20181301\f[R]+T}@T{+8 digits with an invalid month is parsed as start of 8-digit year+T}+T{+\f[C]20181232\f[R]+T}@T{+8 digits with an invalid day gives an error+T}+T{+\f[C]201801012\f[R]+T}@T{+9+ digits beginning with a valid YYYYMMDD gives an error+T}+.TE+.SS Report start & end date+.PP+By default, most hledger reports will show the full span of time+represented by the journal data.+The report start date will be the earliest transaction or posting date,+and the report end date will be the latest transaction, posting, or+market price date.+.PP+Often you will want to see a shorter time span, such as the current+month.+You can specify a start and/or end date using \f[C]-b/--begin\f[R],+\f[C]-e/--end\f[R], \f[C]-p/--period\f[R] or a \f[C]date:\f[R] query+(described below).+All of these accept the smart date syntax.+.PP+Some notes:+.IP \[bu] 2+As in Ledger, end dates are exclusive, so you need to write the date+\f[I]after\f[R] the last day you want to include.+.IP \[bu] 2+As noted in reporting options: among start/end dates specified with+\f[I]options\f[R], the last (i.e.+right-most) option takes precedence.+.IP \[bu] 2+The effective report start and end dates are the intersection of the+start/end dates from options and that from \f[C]date:\f[R] queries.+That is, \f[C]date:2019-01 date:2019 -p\[aq]2000 to 2030\[aq]\f[R]+yields January 2019, the smallest common time span.+.PP+Examples:+.PP+.TS+tab(@);+lw(12.4n) lw(57.6n).+T{+\f[C]-b 2016/3/17\f[R]+T}@T{+begin on St.\ Patrick\[cq]s day 2016+T}+T{+\f[C]-e 12/1\f[R]+T}@T{+end at the start of december 1st of the current year (11/30 will be the+last date included)+T}+T{+\f[C]-b thismonth\f[R]+T}@T{+all transactions on or after the 1st of the current month+T}+T{+\f[C]-p thismonth\f[R]+T}@T{+all transactions in the current month+T}+T{+\f[C]date:2016/3/17..\f[R]+T}@T{+the above written as queries instead (\f[C]..\f[R] can also be replaced+with \f[C]-\f[R])+T}+T{+\f[C]date:..12/1\f[R]+T}@T{+T}+T{+\f[C]date:thismonth..\f[R]+T}@T{+T}+T{+\f[C]date:thismonth\f[R]+T}@T{+T}+.TE+.SS Report intervals+.PP+A report interval can be specified so that commands like register,+balance and activity will divide their reports into multiple subperiods.+The basic intervals can be selected with one of \f[C]-D/--daily\f[R],+\f[C]-W/--weekly\f[R], \f[C]-M/--monthly\f[R], \f[C]-Q/--quarterly\f[R],+or \f[C]-Y/--yearly\f[R].+More complex intervals may be specified with a period expression.+Report intervals can not be specified with a query.+.SS Period expressions+.PP+The \f[C]-p/--period\f[R] option accepts period expressions, a shorthand+way of expressing a start date, end date, and/or report interval all at+once.+.PP+Here\[aq]s a basic period expression specifying the first quarter of+2009.+Note, hledger always treats start dates as inclusive and end dates as+exclusive:+.PP+\f[C]-p \[dq]from 2009/1/1 to 2009/4/1\[dq]\f[R]+.PP+Keywords like \[dq]from\[dq] and \[dq]to\[dq] are optional, and so are+the spaces, as long as you don\[aq]t run two dates together.+\[dq]to\[dq] can also be written as \[dq]..\[dq] or \[dq]-\[dq].+These are equivalent to the above:+.PP+.TS+tab(@);+l.+T{+\f[C]-p \[dq]2009/1/1 2009/4/1\[dq]\f[R]+T}+T{+\f[C]-p2009/1/1to2009/4/1\f[R]+T}+T{+\f[C]-p2009/1/1..2009/4/1\f[R]+T}+.TE+.PP+Dates are smart dates, so if the current year is 2009, the above can+also be written as:+.PP+.TS+tab(@);+l.+T{+\f[C]-p \[dq]1/1 4/1\[dq]\f[R]+T}+T{+\f[C]-p \[dq]january-apr\[dq]\f[R]+T}+T{+\f[C]-p \[dq]this year to 4/1\[dq]\f[R]+T}+.TE+.PP+If you specify only one date, the missing start or end date will be the+earliest or latest transaction in your journal:+.PP+.TS+tab(@);+l l.+T{+\f[C]-p \[dq]from 2009/1/1\[dq]\f[R]+T}@T{+everything after january 1, 2009+T}+T{+\f[C]-p \[dq]from 2009/1\[dq]\f[R]+T}@T{+the same+T}+T{+\f[C]-p \[dq]from 2009\[dq]\f[R]+T}@T{+the same+T}+T{+\f[C]-p \[dq]to 2009\[dq]\f[R]+T}@T{+everything before january 1, 2009+T}+.TE+.PP+A single date with no \[dq]from\[dq] or \[dq]to\[dq] defines both the+start and end date like so:+.PP+.TS+tab(@);+l l.+T{+\f[C]-p \[dq]2009\[dq]\f[R]+T}@T{+the year 2009; equivalent to \[lq]2009/1/1 to 2010/1/1\[rq]+T}+T{+\f[C]-p \[dq]2009/1\[dq]\f[R]+T}@T{+the month of jan; equivalent to \[lq]2009/1/1 to 2009/2/1\[rq]+T}+T{+\f[C]-p \[dq]2009/1/1\[dq]\f[R]+T}@T{+just that day; equivalent to \[lq]2009/1/1 to 2009/1/2\[rq]+T}+.TE+.PP+Or you can specify a single quarter like so:+.PP+.TS+tab(@);+l l.+T{+\f[C]-p \[dq]2009Q1\[dq]\f[R]+T}@T{+first quarter of 2009, equivalent to \[lq]2009/1/1 to 2009/4/1\[rq]+T}+T{+\f[C]-p \[dq]q4\[dq]\f[R]+T}@T{+fourth quarter of the current year+T}+.TE+.PP+The argument of \f[C]-p\f[R] can also begin with, or be, a report+interval expression.+The basic report intervals are \f[C]daily\f[R], \f[C]weekly\f[R],+\f[C]monthly\f[R], \f[C]quarterly\f[R], or \f[C]yearly\f[R], which have+the same effect as the+\f[C]-D\f[R],\f[C]-W\f[R],\f[C]-M\f[R],\f[C]-Q\f[R], or \f[C]-Y\f[R]+flags.+Between report interval and start/end dates (if any), the word+\f[C]in\f[R] is optional.+Examples:+.PP+.TS+tab(@);+l.+T{+\f[C]-p \[dq]weekly from 2009/1/1 to 2009/4/1\[dq]\f[R]+T}+T{+\f[C]-p \[dq]monthly in 2008\[dq]\f[R]+T}+T{+\f[C]-p \[dq]quarterly\[dq]\f[R]+T}+.TE+.PP+Note that \f[C]weekly\f[R], \f[C]monthly\f[R], \f[C]quarterly\f[R] and+\f[C]yearly\f[R] intervals will always start on the first day on week,+month, quarter or year accordingly, and will end on the last day of same+period, even if associated period expression specifies different+explicit start and end date.+.PP+For example:+.PP+.TS+tab(@);+lw(25.5n) lw(44.5n).+T{+\f[C]-p \[dq]weekly from 2009/1/1 to 2009/4/1\[dq]\f[R]+T}@T{+starts on 2008/12/29, closest preceding Monday+T}+T{+\f[C]-p \[dq]monthly in 2008/11/25\[dq]\f[R]+T}@T{+starts on 2018/11/01+T}+T{+\f[C]-p \[dq]quarterly from 2009-05-05 to 2009-06-01\[dq]\f[R]+T}@T{+starts on 2009/04/01, ends on 2009/06/30, which are first and last days+of Q2 2009+T}+T{+\f[C]-p \[dq]yearly from 2009-12-29\[dq]\f[R]+T}@T{+starts on 2009/01/01, first day of 2009+T}+.TE+.PP+The following more complex report intervals are also supported:+\f[C]biweekly\f[R], \f[C]fortnightly\f[R], \f[C]bimonthly\f[R],+\f[C]every day|week|month|quarter|year\f[R],+\f[C]every N days|weeks|months|quarters|years\f[R].+.PP+All of these will start on the first day of the requested period and end+on the last one, as described above.+.PP+Examples:+.PP+.TS+tab(@);+lw(25.5n) lw(44.5n).+T{+\f[C]-p \[dq]bimonthly from 2008\[dq]\f[R]+T}@T{+periods will have boundaries on 2008/01/01, 2008/03/01, ...+T}+T{+\f[C]-p \[dq]every 2 weeks\[dq]\f[R]+T}@T{+starts on closest preceding Monday+T}+T{+\f[C]-p \[dq]every 5 month from 2009/03\[dq]\f[R]+T}@T{+periods will have boundaries on 2009/03/01, 2009/08/01, ...+T}+.TE+.PP+If you want intervals that start on arbitrary day of your choosing and+span a week, month or year, you need to use any of the following:+.PP+\f[C]every Nth day of week\f[R], \f[C]every WEEKDAYNAME\f[R] (eg+\f[C]mon|tue|wed|thu|fri|sat|sun\f[R]),+\f[C]every Nth day [of month]\f[R],+\f[C]every Nth WEEKDAYNAME [of month]\f[R],+\f[C]every MM/DD [of year]\f[R], \f[C]every Nth MMM [of year]\f[R],+\f[C]every MMM Nth [of year]\f[R].+.PP+Examples:+.PP+.TS+tab(@);+lw(23.9n) lw(46.1n).+T{+\f[C]-p \[dq]every 2nd day of week\[dq]\f[R]+T}@T{+periods will go from Tue to Tue+T}+T{+\f[C]-p \[dq]every Tue\[dq]\f[R]+T}@T{+same+T}+T{+\f[C]-p \[dq]every 15th day\[dq]\f[R]+T}@T{+period boundaries will be on 15th of each month+T}+T{+\f[C]-p \[dq]every 2nd Monday\[dq]\f[R]+T}@T{+period boundaries will be on second Monday of each month+T}+T{+\f[C]-p \[dq]every 11/05\[dq]\f[R]+T}@T{+yearly periods with boundaries on 5th of Nov+T}+T{+\f[C]-p \[dq]every 5th Nov\[dq]\f[R]+T}@T{+same+T}+T{+\f[C]-p \[dq]every Nov 5th\[dq]\f[R]+T}@T{+same+T}+.TE+.PP+Show historical balances at end of 15th each month (N is exclusive end+date):+.PP+\f[C]hledger balance -H -p \[dq]every 16th day\[dq]\f[R]+.PP+Group postings from start of wednesday to end of next tuesday (N is+start date and exclusive end date):+.PP+\f[C]hledger register checking -p \[dq]every 3rd day of week\[dq]\f[R]+.SH DEPTH+.PP+With the \f[C]--depth N\f[R] option (short form: \f[C]-N\f[R]), commands+like account, balance and register will show only the uppermost accounts+in the account tree, down to level N.+Use this when you want a summary with less detail.+This flag has the same effect as a \f[C]depth:\f[R] query argument (so+\f[C]-2\f[R], \f[C]--depth=2\f[R] or \f[C]depth:2\f[R] are equivalent).+.SH QUERIES+.PP+One of hledger\[aq]s strengths is being able to quickly report on+precise subsets of your data.+Most commands accept an optional query expression, written as arguments+after the command name, to filter the data by date, account name or+other criteria.+The syntax is similar to a web search: one or more space-separated+search terms, quotes to enclose whitespace, prefixes to match specific+fields, a not: prefix to negate the match.+.PP+We do not yet support arbitrary boolean combinations of search terms;+instead most commands show transactions/postings/accounts which match+(or negatively match):+.IP \[bu] 2+any of the description terms AND+.IP \[bu] 2+any of the account terms AND+.IP \[bu] 2+any of the status terms AND+.IP \[bu] 2+all the other terms.+.PP+The print command instead shows transactions which:+.IP \[bu] 2+match any of the description terms AND+.IP \[bu] 2+have any postings matching any of the positive account terms AND+.IP \[bu] 2+have no postings matching any of the negative account terms AND+.IP \[bu] 2+match all the other terms.+.PP+The following kinds of search terms can be used.+Remember these can also be prefixed with \f[B]\f[CB]not:\f[B]\f[R], eg+to exclude a particular subaccount.+.TP+\f[B]\f[R]\f[C]REGEX\f[R]\f[B], \f[R]\f[C]acct:REGEX\f[R]\f[B]\f[R]+match account names by this regular expression.+(With no prefix, \f[C]acct:\f[R] is assumed.)+same as above+.TP+\f[B]\f[R]\f[C]amt:N, amt:<N, amt:<=N, amt:>N, amt:>=N\f[R]\f[B]\f[R]+match postings with a single-commodity amount that is equal to, less+than, or greater than N.+(Multi-commodity amounts are not tested, and will always match.) The+comparison has two modes: if N is preceded by a + or - sign (or is 0),+the two signed numbers are compared.+Otherwise, the absolute magnitudes are compared, ignoring sign.+.TP+\f[B]\f[R]\f[C]code:REGEX\f[R]\f[B]\f[R]+match by transaction code (eg check number)+.TP+\f[B]\f[R]\f[C]cur:REGEX\f[R]\f[B]\f[R]+match postings or transactions including any amounts whose+currency/commodity symbol is fully matched by REGEX.+(For a partial match, use \f[C].*REGEX.*\f[R]).+Note, to match characters which are regex-significant, like the dollar+sign (\f[C]$\f[R]), you need to prepend \f[C]\[rs]\f[R].+And when using the command line you need to add one more level of+quoting to hide it from the shell, so eg do:+\f[C]hledger print cur:\[aq]\[rs]$\[aq]\f[R] or+\f[C]hledger print cur:\[rs]\[rs]$\f[R].+.TP+\f[B]\f[R]\f[C]desc:REGEX\f[R]\f[B]\f[R]+match transaction descriptions.+.TP+\f[B]\f[R]\f[C]date:PERIODEXPR\f[R]\f[B]\f[R]+match dates within the specified period.+PERIODEXPR is a period expression (with no report interval).+Examples: \f[C]date:2016\f[R], \f[C]date:thismonth\f[R],+\f[C]date:2000/2/1-2/15\f[R], \f[C]date:lastweek-\f[R].+If the \f[C]--date2\f[R] command line flag is present, this matches+secondary dates instead.+.TP+\f[B]\f[R]\f[C]date2:PERIODEXPR\f[R]\f[B]\f[R]+match secondary dates within the specified period.+.TP+\f[B]\f[R]\f[C]depth:N\f[R]\f[B]\f[R]+match (or display, depending on command) accounts at or above this depth+.TP+\f[B]\f[R]\f[C]note:REGEX\f[R]\f[B]\f[R]+match transaction notes (part of description right of \f[C]|\f[R], or+whole description when there\[aq]s no \f[C]|\f[R])+.TP+\f[B]\f[R]\f[C]payee:REGEX\f[R]\f[B]\f[R]+match transaction payee/payer names (part of description left of+\f[C]|\f[R], or whole description when there\[aq]s no \f[C]|\f[R])+.TP+\f[B]\f[R]\f[C]real:, real:0\f[R]\f[B]\f[R]+match real or virtual postings respectively+.TP+\f[B]\f[R]\f[C]status:, status:!, status:*\f[R]\f[B]\f[R]+match unmarked, pending, or cleared transactions respectively+.TP+\f[B]\f[R]\f[C]tag:REGEX[=REGEX]\f[R]\f[B]\f[R]+match by tag name, and optionally also by tag value.+Note a tag: query is considered to match a transaction if it matches any+of the postings.+Also remember that postings inherit the tags of their parent+transaction.+.PP+The following special search term is used automatically in hledger-web,+only:+.TP+\f[B]\f[R]\f[C]inacct:ACCTNAME\f[R]\f[B]\f[R]+tells hledger-web to show the transaction register for this account.+Can be filtered further with \f[C]acct\f[R] etc.+.PP+Some of these can also be expressed as command-line options (eg+\f[C]depth:2\f[R] is equivalent to \f[C]--depth 2\f[R]).+Generally you can mix options and query arguments, and the resulting+query will be their intersection (perhaps excluding the+\f[C]-p/--period\f[R] option).+.SH COSTING+.PP+The \f[C]-B/--cost\f[R] flag converts amounts to their cost or sale+amount at transaction time, if they have a transaction price specified.+If this flag is supplied, hledger will perform cost conversion first,+and will apply any market price valuations (if requested) afterwards.+.SH VALUATION+.PP+Instead of reporting amounts in their original commodity, hledger can+convert them to cost/sale amount (using the conversion rate recorded in+the transaction), and/or to market value (using some market price on a+certain date).+This is controlled by the \f[C]--value=TYPE[,COMMODITY]\f[R] option,+which will be described below.+We also provide the simpler \f[C]-V\f[R] and \f[C]-X COMMODITY\f[R]+options, and often one of these is all you need:+.SS -V: Value+.PP+The \f[C]-V/--market\f[R] flag converts amounts to market value in their+default \f[I]valuation commodity\f[R], using the market prices in effect+on the \f[I]valuation date(s)\f[R], if any.+More on these in a minute.+.SS -X: Value in specified commodity+.PP+The \f[C]-X/--exchange=COMM\f[R] option is like \f[C]-V\f[R], except you+tell it which currency you want to convert to, and it tries to convert+everything to that.+.SS Valuation date+.PP+Since market prices can change from day to day, market value reports+have a valuation date (or more than one), which determines which market+prices will be used.+.PP+For single period reports, if an explicit report end date is specified,+that will be used as the valuation date; otherwise the valuation date is+the journal\[aq]s end date.+.PP+For multiperiod reports, each column/period is valued on the last day of+the period, by default.+.SS Market prices+.PP+To convert a commodity A to its market value in another commodity B,+hledger looks for a suitable market price (exchange rate) as follows, in+this order of preference :+.IP "1." 3+A \f[I]declared market price\f[R] or \f[I]inferred market price\f[R]:+A\[aq]s latest market price in B on or before the valuation date as+declared by a P directive, or (with the \f[C]--infer-market-price\f[R]+flag) inferred from transaction prices.+.IP "2." 3+A \f[I]reverse market price\f[R]: the inverse of a declared or inferred+market price from B to A.+.IP "3." 3+A \f[I]forward chain of market prices\f[R]: a synthetic price formed by+combining the shortest chain of \[dq]forward\[dq] (only 1 above) market+prices, leading from A to B.+.IP "4." 3+\f[I]Any chain of market prices\f[R]: a chain of any market prices,+including both forward and reverse prices (1 and 2 above), leading from+A to B.+.PP+There is a limit to the length of these price chains; if hledger reaches+that length without finding a complete chain or exhausting all+possibilities, it will give up (with a \[dq]gave up\[dq] message visible+in \f[C]--debug=2\f[R] output).+That limit is currently 1000.+.PP+Amounts for which no suitable market price can be found, are not+converted.+.SS --infer-market-price: market prices from transactions+.PP+Normally, market value in hledger is fully controlled by, and requires,+P directives in your journal.+Since adding and updating those can be a chore, and since transactions+usually take place at close to market value, why not use the recorded+transaction prices as additional market prices (as Ledger does) ?+We could produce value reports without needing P directives at all.+.PP+Adding the \f[C]--infer-market-price\f[R] flag to \f[C]-V\f[R],+\f[C]-X\f[R] or \f[C]--value\f[R] enables this.+So for example, \f[C]hledger bs -V --infer-market-price\f[R] will get+market prices both from P directives and from transactions.+(And if both occur on the same day, the P directive takes precedence).+.PP+There is a downside: value reports can sometimes be affected in+confusing/undesired ways by your journal entries.+If this happens to you, read all of this Valuation section carefully,+and try adding \f[C]--debug\f[R] or \f[C]--debug=2\f[R] to troubleshoot.+.PP+\f[C]--infer-market-price\f[R] can infer market prices from:+.IP \[bu] 2+multicommodity transactions with explicit prices+(\f[C]\[at]\f[R]/\f[C]\[at]\[at]\f[R])+.IP \[bu] 2+multicommodity transactions with implicit prices (no \f[C]\[at]\f[R],+two commodities, unbalanced).+(With these, the order of postings matters.+\f[C]hledger print -x\f[R] can be useful for troubleshooting.)+.IP \[bu] 2+but not, currently, from \[dq]more correct\[dq] multicommodity+transactions (no \f[C]\[at]\f[R], multiple commodities, balanced).+.SS Valuation commodity+.PP+\f[B]When you specify a valuation commodity (\f[CB]-X COMM\f[B] or+\f[CB]--value TYPE,COMM\f[B]):\f[R]+.PD 0+.P+.PD+hledger will convert all amounts to COMM, wherever it can find a+suitable market price (including by reversing or chaining prices).+.PP+\f[B]When you leave the valuation commodity unspecified (\f[CB]-V\f[B]+or \f[CB]--value TYPE\f[B]):\f[R]+.PD 0+.P+.PD+For each commodity A, hledger picks a default valuation commodity as+follows, in this order of preference:+.IP "1." 3+The price commodity from the latest P-declared market price for A on or+before valuation date.+.IP "2." 3+The price commodity from the latest P-declared market price for A on any+date.+(Allows conversion to proceed when there are inferred prices before the+valuation date.)+.IP "3." 3+If there are no P directives at all (any commodity or date) and the+\f[C]--infer-market-price\f[R] flag is used: the price commodity from+the latest transaction-inferred price for A on or before valuation date.+.PP+This means:+.IP \[bu] 2+If you have P directives, they determine which commodities \f[C]-V\f[R]+will convert, and to what.+.IP \[bu] 2+If you have no P directives, and use the \f[C]--infer-market-price\f[R]+flag, transaction prices determine it.+.PP+Amounts for which no valuation commodity can be found are not converted.+.SS Simple valuation examples+.PP+Here are some quick examples of \f[C]-V\f[R]:+.IP+.nf+\f[C]+; one euro is worth this many dollars from nov 1+P 2016/11/01 \[Eu] $1.10++; purchase some euros on nov 3+2016/11/3+ assets:euros \[Eu]100+ assets:checking++; the euro is worth fewer dollars by dec 21+P 2016/12/21 \[Eu] $1.03+\f[R]+.fi+.PP+How many euros do I have ?+.IP+.nf+\f[C]+$ hledger -f t.j bal -N euros+ \[Eu]100 assets:euros+\f[R]+.fi+.PP+What are they worth at end of nov 3 ?+.IP+.nf+\f[C]+$ hledger -f t.j bal -N euros -V -e 2016/11/4+ $110.00 assets:euros+\f[R]+.fi+.PP+What are they worth after 2016/12/21 ?+(no report end date specified, defaults to today)+.IP+.nf+\f[C]+$ hledger -f t.j bal -N euros -V+ $103.00 assets:euros+\f[R]+.fi+.SS --value: Flexible valuation+.PP+\f[C]-V\f[R] and \f[C]-X\f[R] are special cases of the more general+\f[C]--value\f[R] option:+.IP+.nf+\f[C]+ --value=TYPE[,COMM] TYPE is then, end, now or YYYY-MM-DD.+ COMM is an optional commodity symbol.+ Shows amounts converted to:+ - default valuation commodity (or COMM) using market prices at posting dates+ - default valuation commodity (or COMM) using market prices at period end(s)+ - default valuation commodity (or COMM) using current market prices+ - default valuation commodity (or COMM) using market prices at some date+\f[R]+.fi+.PP+The TYPE part selects cost or value and valuation date:+.TP+\f[B]\f[CB]--value=then\f[B]\f[R]+Convert amounts to their value in the default valuation commodity, using+market prices on each posting\[aq]s date.+.TP+\f[B]\f[CB]--value=end\f[B]\f[R]+Convert amounts to their value in the default valuation commodity, using+market prices on the last day of the report period (or if unspecified,+the journal\[aq]s end date); or in multiperiod reports, market prices on+the last day of each subperiod.+.TP+\f[B]\f[CB]--value=now\f[B]\f[R]+Convert amounts to their value in the default valuation commodity using+current market prices (as of when report is generated).+.TP+\f[B]\f[CB]--value=YYYY-MM-DD\f[B]\f[R]+Convert amounts to their value in the default valuation commodity using+market prices on this date.+.PP+To select a different valuation commodity, add the optional+\f[C],COMM\f[R] part: a comma, then the target commodity\[aq]s symbol.+Eg: \f[B]\f[CB]--value=now,EUR\f[B]\f[R].+hledger will do its best to convert amounts to this commodity, deducing+market prices as described above.+.SS More valuation examples+.PP+Here are some examples showing the effect of \f[C]--value\f[R], as seen+with \f[C]print\f[R]:+.IP+.nf+\f[C]+P 2000-01-01 A 1 B+P 2000-02-01 A 2 B+P 2000-03-01 A 3 B+P 2000-04-01 A 4 B++2000-01-01+ (a) 1 A \[at] 5 B++2000-02-01+ (a) 1 A \[at] 6 B++2000-03-01+ (a) 1 A \[at] 7 B+\f[R]+.fi+.PP+Show the cost of each posting:+.IP+.nf+\f[C]+$ hledger -f- print --cost+2000-01-01+ (a) 5 B++2000-02-01+ (a) 6 B++2000-03-01+ (a) 7 B+\f[R]+.fi+.PP+Show the value as of the last day of the report period (2000-02-29):+.IP+.nf+\f[C]+$ hledger -f- print --value=end date:2000/01-2000/03+2000-01-01+ (a) 2 B++2000-02-01+ (a) 2 B+\f[R]+.fi+.PP+With no report period specified, that shows the value as of the last day+of the journal (2000-03-01):+.IP+.nf+\f[C]+$ hledger -f- print --value=end+2000-01-01+ (a) 3 B++2000-02-01+ (a) 3 B++2000-03-01+ (a) 3 B+\f[R]+.fi+.PP+Show the current value (the 2000-04-01 price is still in effect today):+.IP+.nf+\f[C]+$ hledger -f- print --value=now+2000-01-01+ (a) 4 B++2000-02-01+ (a) 4 B++2000-03-01+ (a) 4 B+\f[R]+.fi+.PP+Show the value on 2000/01/15:+.IP+.nf+\f[C]+$ hledger -f- print --value=2000-01-15+2000-01-01+ (a) 1 B++2000-02-01+ (a) 1 B++2000-03-01+ (a) 1 B+\f[R]+.fi+.PP+You may need to explicitly set a commodity\[aq]s display style, when+reverse prices are used.+Eg this output might be surprising:+.IP+.nf+\f[C]+P 2000-01-01 A 2B++2000-01-01+ a 1B+ b+\f[R]+.fi+.IP+.nf+\f[C]+$ hledger print -x -X A+2000-01-01+ a 0+ b 0+\f[R]+.fi+.PP+Explanation: because there\[aq]s no amount or commodity directive+specifying a display style for A, 0.5A gets the default style, which+shows no decimal digits.+Because the displayed amount looks like zero, the commodity symbol and+minus sign are not displayed either.+Adding a commodity directive sets a more useful display style for A:+.IP+.nf+\f[C]+P 2000-01-01 A 2B+commodity 0.00A++2000-01-01+ a 1B+ b+\f[R]+.fi+.IP+.nf+\f[C]+$ hledger print -X A+2000-01-01+ a 0.50A+ b -0.50A+\f[R]+.fi+.SS Effect of valuation on reports+.PP+Here is a reference for how valuation is supposed to affect each part of+hledger\[aq]s reports (and a glossary).+(It\[aq]s wide, you\[aq]ll have to scroll sideways.) It may be useful+when troubleshooting.+If you find problems, please report them, ideally with a reproducible+example.+Related: #329, #1083.+.PP+.TS+tab(@);+lw(9.5n) lw(11.8n) lw(12.0n) lw(17.2n) lw(12.0n) lw(7.4n).+T{+Report type+T}@T{+\f[C]-B\f[R], \f[C]--cost\f[R]+T}@T{+\f[C]-V\f[R], \f[C]-X\f[R]+T}@T{+\f[C]--value=then\f[R]+T}@T{+\f[C]--value=end\f[R]+T}@T{+\f[C]--value=DATE\f[R], \f[C]--value=now\f[R]+T}+_+T{+\f[B]print\f[R]+T}@T{+T}@T{+T}@T{+T}@T{+T}@T{+T}+T{+posting amounts+T}@T{+cost+T}@T{+value at report end or today+T}@T{+value at posting date+T}@T{+value at report or journal end+T}@T{+value at DATE/today+T}+T{+balance assertions/assignments+T}@T{+unchanged+T}@T{+unchanged+T}@T{+unchanged+T}@T{+unchanged+T}@T{+unchanged+T}+T{+T}@T{+T}@T{+T}@T{+T}@T{+T}@T{+T}+T{+\f[B]register\f[R]+T}@T{+T}@T{+T}@T{+T}@T{+T}@T{+T}+T{+starting balance (-H)+T}@T{+cost+T}@T{+value at day before report or journal start+T}@T{+valued at day each historical posting was made+T}@T{+value at day before report or journal start+T}@T{+value at DATE/today+T}+T{+posting amounts+T}@T{+cost+T}@T{+value at report end or today+T}@T{+value at posting date+T}@T{+value at report or journal end+T}@T{+value at DATE/today+T}+T{+summary posting amounts with report interval+T}@T{+summarised cost+T}@T{+value at period ends+T}@T{+sum of postings in interval, valued at interval start+T}@T{+value at period ends+T}@T{+value at DATE/today+T}+T{+running total/average+T}@T{+sum/average of displayed values+T}@T{+sum/average of displayed values+T}@T{+sum/average of displayed values+T}@T{+sum/average of displayed values+T}@T{+sum/average of displayed values+T}+T{+T}@T{+T}@T{+T}@T{+T}@T{+T}@T{+T}+T{+\f[B]balance (bs, bse, cf, is)\f[R]+T}@T{+T}@T{+T}@T{+T}@T{+T}@T{+T}+T{+balance changes+T}@T{+sums of costs+T}@T{+value at report end or today of sums of postings+T}@T{+value at posting date+T}@T{+value at report or journal end of sums of postings+T}@T{+value at DATE/today of sums of postings+T}+T{+budget amounts (--budget)+T}@T{+like balance changes+T}@T{+like balance changes+T}@T{+like balance changes+T}@T{+like balances+T}@T{+like balance changes+T}+T{+grand total+T}@T{+sum of displayed values+T}@T{+sum of displayed values+T}@T{+sum of displayed valued+T}@T{+sum of displayed values+T}@T{+sum of displayed values+T}+T{+T}@T{+T}@T{+T}@T{+T}@T{+T}@T{+T}+T{+\f[B]balance (bs, bse, cf, is) with report interval\f[R]+T}@T{+T}@T{+T}@T{+T}@T{+T}@T{+T}+T{+starting balances (-H)+T}@T{+sums of costs of postings before report start+T}@T{+value at report start of sums of all postings before report start+T}@T{+sums of values of postings before report start at respective posting+dates+T}@T{+value at report start of sums of all postings before report start+T}@T{+sums of postings before report start+T}+T{+balance changes (bal, is, bs --change, cf --change)+T}@T{+sums of costs of postings in period+T}@T{+same as --value=end+T}@T{+sums of values of postings in period at respective posting dates+T}@T{+balance change in each period, valued at period ends+T}@T{+value at DATE/today of sums of postings+T}+T{+end balances (bal -H, is --H, bs, cf)+T}@T{+sums of costs of postings from before report start to period end+T}@T{+same as --value=end+T}@T{+sums of values of postings from before period start to period end at+respective posting dates+T}@T{+period end balances, valued at period ends+T}@T{+value at DATE/today of sums of postings+T}+T{+budget amounts (--budget)+T}@T{+like balance changes/end balances+T}@T{+like balance changes/end balances+T}@T{+like balance changes/end balances+T}@T{+like balances+T}@T{+like balance changes/end balances+T}+T{+row totals, row averages (-T, -A)+T}@T{+sums, averages of displayed values+T}@T{+sums, averages of displayed values+T}@T{+sums, averages of displayed values+T}@T{+sums, averages of displayed values+T}@T{+sums, averages of displayed values+T}+T{+column totals+T}@T{+sums of displayed values+T}@T{+sums of displayed values+T}@T{+sums of displayed values+T}@T{+sums of displayed values+T}@T{+sums of displayed values+T}+T{+grand total, grand average+T}@T{+sum, average of column totals+T}@T{+sum, average of column totals+T}@T{+sum, average of column totals+T}@T{+sum, average of column totals+T}@T{+sum, average of column totals+T}+T{+T}@T{+T}@T{+T}@T{+T}@T{+T}@T{+T}+.TE+.PP+\f[C]--cumulative\f[R] is omitted to save space, it works like+\f[C]-H\f[R] but with a zero starting balance.+.PP+\f[B]Glossary:\f[R]+.TP+\f[I]cost\f[R]+calculated using price(s) recorded in the transaction(s).+.TP+\f[I]value\f[R]+market value using available market price declarations, or the unchanged+amount if no conversion rate can be found.+.TP+\f[I]report start\f[R]+the first day of the report period specified with -b or -p or date:,+otherwise today.+.TP+\f[I]report or journal start\f[R]+the first day of the report period specified with -b or -p or date:,+otherwise the earliest transaction date in the journal, otherwise today.+.TP+\f[I]report end\f[R]+the last day of the report period specified with -e or -p or date:,+otherwise today.+.TP+\f[I]report or journal end\f[R]+the last day of the report period specified with -e or -p or date:,+otherwise the latest transaction date in the journal, otherwise today.+.TP+\f[I]report interval\f[R]+a flag (-D/-W/-M/-Q/-Y) or period expression that activates the+report\[aq]s multi-period mode (whether showing one or many subperiods).+.SH PIVOTING+.PP+Normally hledger sums amounts, and organizes them in a hierarchy, based+on account name.+The \f[C]--pivot FIELD\f[R] option causes it to sum and organize+hierarchy based on the value of some other field instead.+FIELD can be: \f[C]code\f[R], \f[C]description\f[R], \f[C]payee\f[R],+\f[C]note\f[R], or the full name (case insensitive) of any tag.+As with account names, values containing \f[C]colon:separated:parts\f[R]+will be displayed hierarchically in reports.+.PP+\f[C]--pivot\f[R] is a general option affecting all reports; you can+think of hledger transforming the journal before any other processing,+replacing every posting\[aq]s account name with the value of the+specified field on that posting, inheriting it from the transaction or+using a blank value if it\[aq]s not present.+.PP+An example:+.IP+.nf+\f[C]+2016/02/16 Member Fee Payment+ assets:bank account 2 EUR+ income:member fees -2 EUR ; member: John Doe+\f[R]+.fi+.PP+Normal balance report showing account names:+.IP+.nf+\f[C]+$ hledger balance+ 2 EUR assets:bank account+ -2 EUR income:member fees+--------------------+ 0+\f[R]+.fi+.PP+Pivoted balance report, using member: tag values instead:+.IP+.nf+\f[C]+$ hledger balance --pivot member+ 2 EUR+ -2 EUR John Doe+--------------------+ 0+\f[R]+.fi+.PP+One way to show only amounts with a member: value (using a query,+described below):+.IP+.nf+\f[C]+$ hledger balance --pivot member tag:member=.+ -2 EUR John Doe+--------------------+ -2 EUR+\f[R]+.fi+.PP+Another way (the acct: query matches against the pivoted \[dq]account+name\[dq]):+.IP+.nf+\f[C]+$ hledger balance --pivot member acct:.+ -2 EUR John Doe+--------------------+ -2 EUR+\f[R]+.fi+.SH OUTPUT+.SS Output destination+.PP+hledger commands send their output to the terminal by default.+You can of course redirect this, eg into a file, using standard shell+syntax:+.IP+.nf+\f[C]+$ hledger print > foo.txt+\f[R]+.fi+.PP+Some commands (print, register, stats, the balance commands) also+provide the \f[C]-o/--output-file\f[R] option, which does the same thing+without needing the shell.+Eg:+.IP+.nf+\f[C]+$ hledger print -o foo.txt+$ hledger print -o - # write to stdout (the default)+\f[R]+.fi+.SS Output format+.PP+Some commands (print, register, the balance commands) offer a choice of+output format.+In addition to the usual plain text format (\f[C]txt\f[R]), there are+CSV (\f[C]csv\f[R]), HTML (\f[C]html\f[R]), JSON (\f[C]json\f[R]) and+SQL (\f[C]sql\f[R]).+This is controlled by the \f[C]-O/--output-format\f[R] option:+.IP+.nf+\f[C]+$ hledger print -O csv+\f[R]+.fi+.PP+or, by a file extension specified with \f[C]-o/--output-file\f[R]:+.IP+.nf+\f[C]+$ hledger balancesheet -o foo.html # write HTML to foo.html+\f[R]+.fi+.PP+The \f[C]-O\f[R] option can be used to override the file extension if+needed:+.IP+.nf+\f[C]+$ hledger balancesheet -o foo.txt -O html # write HTML to foo.txt+\f[R]+.fi+.PP+Some notes about JSON output:+.IP \[bu] 2+This feature is marked experimental, and not yet much used; you should+expect our JSON to evolve.+Real-world feedback is welcome.+.IP \[bu] 2+Our JSON is rather large and verbose, as it is quite a faithful+representation of hledger\[aq]s internal data types.+To understand the JSON, read the Haskell type definitions, which are+mostly in+https://github.com/simonmichael/hledger/blob/master/hledger-lib/Hledger/Data/Types.hs.+.IP \[bu] 2+hledger represents quantities as Decimal values storing up to 255+significant digits, eg for repeating decimals.+Such numbers can arise in practice (from automatically-calculated+transaction prices), and would break most JSON consumers.+So in JSON, we show quantities as simple Numbers with at most 10 decimal+places.+We don\[aq]t limit the number of integer digits, but that part is under+your control.+We hope this approach will not cause problems in practice; if you find+otherwise, please let us know.+(Cf #1195)+.PP+Notes about SQL output:+.IP \[bu] 2+SQL output is also marked experimental, and much like JSON could use+real-world feedback.+.IP \[bu] 2+SQL output is expected to work with sqlite, MySQL and PostgreSQL+.IP \[bu] 2+SQL output is structured with the expectations that statements will be+executed in the empty database.+If you already have tables created via SQL output of hledger, you would+probably want to either clear tables of existing data (via+\f[C]delete\f[R] or \f[C]truncate\f[R] SQL statements) or drop tables+completely as otherwise your postings will be duped.+.SH COMMANDS+.PP+hledger provides a number of commands for producing reports and managing+your data.+Run \f[C]hledger\f[R] with no arguments to list the commands available,+and \f[C]hledger CMD\f[R] to run a command.+CMD can be the full command name, or its standard abbreviation shown in+the commands list, or any unambiguous prefix of the name.+Eg: \f[C]hledger bal\f[R].+.PP+Here are the built-in commands, with the most often-used in bold:+.PP+\f[B]Data entry:\f[R]+.PP+These data entry commands are the only ones which can modify your+journal file.+.IP \[bu] 2+\f[B]add\f[R] - add transactions using guided prompts+.IP \[bu] 2+\f[B]import\f[R] - add any new transactions from other files (eg csv)+.PP+\f[B]Data management:\f[R]+.IP \[bu] 2+check - check for various kinds of issue in the data+.IP \[bu] 2+close (equity) - generate balance-resetting transactions+.IP \[bu] 2+diff - compare account transactions in two journal files+.IP \[bu] 2+rewrite - generate extra postings, similar to print --auto+.PP+\f[B]Financial statements:\f[R]+.IP \[bu] 2+\f[B]aregister (areg)\f[R] - show transactions in a particular account+.IP \[bu] 2+\f[B]balancesheet (bs)\f[R] - show assets, liabilities and net worth+.IP \[bu] 2+balancesheetequity (bse) - show assets, liabilities and equity+.IP \[bu] 2+cashflow (cf) - show changes in liquid assets+.IP \[bu] 2+\f[B]incomestatement (is)\f[R] - show revenues and expenses+.IP \[bu] 2+roi - show return on investments+.PP+\f[B]Miscellaneous reports:\f[R]+.IP \[bu] 2+accounts - show account names+.IP \[bu] 2+activity - show postings-per-interval bar charts+.IP \[bu] 2+\f[B]balance (bal)\f[R] - show balance changes/end balances/budgets in+any accounts+.IP \[bu] 2+codes - show transaction codes+.IP \[bu] 2+commodities - show commodity/currency symbols+.IP \[bu] 2+descriptions - show unique transaction descriptions+.IP \[bu] 2+files - show input file paths+.IP \[bu] 2+help - show hledger user manuals in several formats+.IP \[bu] 2+notes - show unique note segments of transaction descriptions+.IP \[bu] 2+payees - show unique payee segments of transaction descriptions+.IP \[bu] 2+prices - show market price records+.IP \[bu] 2+\f[B]print\f[R] - show transactions (journal entries)+.IP \[bu] 2+print-unique - show only transactions with unique descriptions+.IP \[bu] 2+\f[B]register (reg)\f[R] - show postings in one or more accounts &+running total+.IP \[bu] 2+register-match - show a recent posting that best matches a description+.IP \[bu] 2+stats - show journal statistics+.IP \[bu] 2+tags - show tag names+.IP \[bu] 2+test - run self tests+.PP+\f[B]Add-on commands:\f[R]+.PP+Programs or scripts named \f[C]hledger-SOMETHING\f[R] in your PATH are+add-on commands; these appear in the commands list with a \f[C]+\f[R]+mark.+Two of these are maintained and released with hledger:+.IP \[bu] 2+\f[B]ui\f[R] - an efficient terminal interface (TUI) for hledger+.IP \[bu] 2+\f[B]web\f[R] - a simple web interface (WUI) for hledger+.PP+And these add-ons are maintained separately:+.IP \[bu] 2+iadd - a more interactive alternative for the add command+.IP \[bu] 2+interest - generates interest transactions according to various schemes+.IP \[bu] 2+stockquotes - downloads market prices for your commodities from+AlphaVantage \f[I](experimental)\f[R]+.PP+Next, the detailed command docs, in alphabetical order.+.SS accounts+.PP+accounts+.PD 0+.P+.PD+Show account names.+.PP+This command lists account names, either declared with account+directives (--declared), posted to (--used), or both (the default).+With query arguments, only matched account names and account names+referenced by matched postings are shown.+It shows a flat list by default.+With \f[C]--tree\f[R], it uses indentation to show the account+hierarchy.+In flat mode you can add \f[C]--drop N\f[R] to omit the first few+account name components.+Account names can be depth-clipped with \f[C]depth:N\f[R] or+\f[C]--depth N\f[R] or \f[C]-N\f[R].+.PP+Examples:+.IP+.nf+\f[C]+$ hledger accounts+assets:bank:checking+assets:bank:saving+assets:cash+expenses:food+expenses:supplies+income:gifts+income:salary+liabilities:debts+\f[R]+.fi+.SS activity+.PP+activity+.PD 0+.P+.PD+Show an ascii barchart of posting counts per interval.+.PP+The activity command displays an ascii histogram showing transaction+counts by day, week, month or other reporting interval (by day is the+default).+With query arguments, it counts only matched transactions.+.PP+Examples:+.IP+.nf+\f[C]+$ hledger activity --quarterly+2008-01-01 **+2008-04-01 *******+2008-07-01 +2008-10-01 **+\f[R]+.fi+.SS add+.PP+add+.PD 0+.P+.PD+Prompt for transactions and add them to the journal.+Any arguments will be used as default inputs for the first N prompts.+.PP+Many hledger users edit their journals directly with a text editor, or+generate them from CSV.+For more interactive data entry, there is the \f[C]add\f[R] command,+which prompts interactively on the console for new transactions, and+appends them to the journal file (if there are multiple+\f[C]-f FILE\f[R] options, the first file is used.) Existing+transactions are not changed.+This is the only hledger command that writes to the journal file.+.PP+To use it, just run \f[C]hledger add\f[R] and follow the prompts.+You can add as many transactions as you like; when you are finished,+enter \f[C].\f[R] or press control-d or control-c to exit.+.PP+Features:+.IP \[bu] 2+add tries to provide useful defaults, using the most similar (by+description) recent transaction (filtered by the query, if any) as a+template.+.IP \[bu] 2+You can also set the initial defaults with command line arguments.+.IP \[bu] 2+Readline-style edit keys can be used during data entry.+.IP \[bu] 2+The tab key will auto-complete whenever possible - accounts,+descriptions, dates (\f[C]yesterday\f[R], \f[C]today\f[R],+\f[C]tomorrow\f[R]).+If the input area is empty, it will insert the default value.+.IP \[bu] 2+If the journal defines a default commodity, it will be added to any bare+numbers entered.+.IP \[bu] 2+A parenthesised transaction code may be entered following a date.+.IP \[bu] 2+Comments and tags may be entered following a description or amount.+.IP \[bu] 2+If you make a mistake, enter \f[C]<\f[R] at any prompt to go one step+backward.+.IP \[bu] 2+Input prompts are displayed in a different colour when the terminal+supports it.+.PP+Example (see the tutorial for a detailed explanation):+.IP+.nf+\f[C]+$ hledger add+Adding transactions to journal file /src/hledger/examples/sample.journal+Any command line arguments will be used as defaults.+Use tab key to complete, readline keys to edit, enter to accept defaults.+An optional (CODE) may follow transaction dates.+An optional ; COMMENT may follow descriptions or amounts.+If you make a mistake, enter < at any prompt to go one step backward.+To end a transaction, enter . when prompted.+To quit, enter . at a date prompt or press control-d or control-c.+Date [2015/05/22]: +Description: supermarket+Account 1: expenses:food+Amount 1: $10+Account 2: assets:checking+Amount 2 [$-10.0]: +Account 3 (or . or enter to finish this transaction): .+2015/05/22 supermarket+ expenses:food $10+ assets:checking $-10.0++Save this transaction to the journal ? [y]: +Saved.+Starting the next transaction (. or ctrl-D/ctrl-C to quit)+Date [2015/05/22]: <CTRL-D> $+\f[R]+.fi+.PP+On Microsoft Windows, the add command makes sure that no part of the+file path ends with a period, as that would cause problems (#1056).+.SS aregister+.PP+aregister, areg+.PD 0+.P+.PD+.PP+Show the transactions and running historical balance in an account, with+each line item representing one transaction.+.PP+\f[C]aregister\f[R] shows the transactions affecting a particular+account and its subaccounts, with each line item representing a whole+transaction - as in bank statements, hledger-ui, hledger-web and other+accounting apps.+.PP+Note this is unlike the \f[C]register\f[R] command, which shows+individual postings and does not always show a single account or a+historical balance.+.PP+A reminder, \[dq]historical\[dq] balances include any balance from+transactions before the report start date, so (if opening balances are+recorded correctly) \f[C]aregister\f[R] will show the real-world+balances of an account, as you would see in a bank statement.+.PP+As a quick rule of thumb, use \f[C]aregister\f[R] for reconciling+real-world asset/liability accounts and \f[C]register\f[R] for reviewing+detailed revenues/expenses.+.PP+\f[C]aregister\f[R] shows the register for just one account (and its+subaccounts).+This account must be specified as the first argument.+You can write either the full account name, or a case-insensitive+regular expression which will select the alphabetically first matched+account.+(Eg if you have \f[C]assets:aaa:checking\f[R] and+\f[C]assets:bbb:checking\f[R] accounts, \f[C]hledger areg checking\f[R]+would select \f[C]assets:aaa:checking\f[R].)+.PP+Any additional arguments form a query which will filter the transactions+shown.+.PP+Each \f[C]aregister\f[R] line item shows:+.IP \[bu] 2+the transaction\[aq]s date (or the relevant posting\[aq]s date if+different, see below)+.IP \[bu] 2+the names of all the other account(s) involved in this transaction+(probably abbreviated)+.IP \[bu] 2+the total change to this account\[aq]s balance from this transaction+.IP \[bu] 2+the account\[aq]s historical running balance after this transaction.+.PP+Transactions making a net change of zero are not shown by default; add+the \f[C]-E/--empty\f[R] flag to show them.+.PP+\f[C]aregister\f[R] ignores a depth limit, so its final total will+always match a balance report with similar arguments.+.PP+This command also supports the output destination and output format+options The output formats supported are \f[C]txt\f[R], \f[C]csv\f[R],+and \f[C]json\f[R].+.SS aregister and custom posting dates+.PP+Transactions whose date is outside the report period can still be shown,+if they have a posting to this account dated inside the report period.+(And in this case it\[aq]s the posting date that is shown.) This ensures+that \f[C]aregister\f[R] can show an accurate historical running+balance, matching the one shown by \f[C]register -H\f[R] with the same+arguments.+.PP+To filter strictly by transaction date instead, add the+\f[C]--txn-dates\f[R] flag.+If you use this flag and some of your postings have custom dates,+it\[aq]s probably best to assume the running balance is wrong.+.PP+Examples:+.PP+Show all transactions and historical running balance in the first+account whose name contains \[dq]checking\[dq]:+.IP+.nf+\f[C]+$ hledger areg checking+\f[R]+.fi+.PP+Show transactions and historical running balance in all asset accounts+during july:+.IP+.nf+\f[C]+$ hledger areg assets date:jul+\f[R]+.fi+.SS balance+.PP+balance, bal+.PD 0+.P+.PD+Show accounts and their balances.+.PP+\f[C]balance\f[R] is one of hledger\[aq]s oldest and most versatile+commands, for listing account balances, balance changes, values, value+changes and more, during one time period or many.+Generally it shows a table, with rows representing accounts, and columns+representing periods.+.PP+Note there are some higher-level variants of the \f[C]balance\f[R]+command with convenient defaults, which can be simpler to use:+\f[C]balancesheet\f[R], \f[C]balancesheetequity\f[R], \f[C]cashflow\f[R]+and \f[C]incomestatement\f[R].+When you need more control, then use \f[C]balance\f[R].+.SS balance features+.PP+Here\[aq]s a quick overview of the \f[C]balance\f[R] command\[aq]s+features, followed by more detailed descriptions and examples.+Many of these work with the higher-level commands as well.+.PP+\f[C]balance\f[R] can show..+.IP \[bu] 2+accounts as a list (\f[C]-l\f[R]) or a tree (\f[C]-t\f[R])+.IP \[bu] 2+optionally depth-limited (\f[C]-[1-9]\f[R])+.IP \[bu] 2+sorted by declaration order and name, or by amount+.PP+\&..and their..+.IP \[bu] 2+balance changes (the default)+.IP \[bu] 2+or actual and planned balance changes (\f[C]--budget\f[R])+.IP \[bu] 2+or value of balance changes (\f[C]-V\f[R])+.IP \[bu] 2+or change of balance values (\f[C]--valuechange\f[R])+.PP+\&..in..+.IP \[bu] 2+one time period (the whole journal period by default)+.IP \[bu] 2+or multiple periods (\f[C]-D\f[R], \f[C]-W\f[R], \f[C]-M\f[R],+\f[C]-Q\f[R], \f[C]-Y\f[R], \f[C]-p INTERVAL\f[R])+.PP+\&..either..+.IP \[bu] 2+per period (the default)+.IP \[bu] 2+or accumulated since report start date (\f[C]--cumulative\f[R])+.IP \[bu] 2+or accumulated since account creation (\f[C]--historical/-H\f[R])+.PP+\&..possibly converted to..+.IP \[bu] 2+cost (\f[C]--value=cost[,COMM]\f[R]/\f[C]--cost\f[R]/\f[C]-B\f[R])+.IP \[bu] 2+or market value, as of transaction dates (\f[C]--value=then[,COMM]\f[R])+.IP \[bu] 2+or at period ends (\f[C]--value=end[,COMM]\f[R])+.IP \[bu] 2+or now (\f[C]--value=now\f[R])+.IP \[bu] 2+or at some other date (\f[C]--value=YYYY-MM-DD\f[R])+.PP+\&..with..+.IP \[bu] 2+totals (\f[C]-T\f[R]), averages (\f[C]-A\f[R]), percentages+(\f[C]-%\f[R]), inverted sign (\f[C]--invert\f[R])+.IP \[bu] 2+rows and columns swapped (\f[C]--transpose\f[R])+.IP \[bu] 2+another field used as account name (\f[C]--pivot\f[R])+.IP \[bu] 2+custom-formatted line items (single-period reports only)+(\f[C]--format\f[R])+.PP+This command supports the output destination and output format options,+with output formats \f[C]txt\f[R], \f[C]csv\f[R], \f[C]json\f[R], and+(multi-period reports only:) \f[C]html\f[R].+In \f[C]txt\f[R] output in a colour-supporting terminal, negative+amounts are shown in red.+.SS Simple balance report+.PP+With no arguments, \f[C]balance\f[R] shows a list of all accounts and+their change of balance - ie, the sum of posting amounts, both inflows+and outflows - during the entire period of the journal.+For real-world accounts, this should also match their end balance at the+end of the journal period (more on this below).+.PP+Accounts are sorted by declaration order if any, and then alphabetically+by account name.+For instance, using examples/sample.journal:+.IP+.nf+\f[C]+$ hledger bal+ $1 assets:bank:saving+ $-2 assets:cash+ $1 expenses:food+ $1 expenses:supplies+ $-1 income:gifts+ $-1 income:salary+ $1 liabilities:debts+--------------------+ 0 +\f[R]+.fi+.PP+Accounts with a zero balance (and no non-zero subaccounts, in tree mode+- see below) are hidden by default.+Use \f[C]-E/--empty\f[R] to show them (revealing+\f[C]assets:bank:checking\f[R] here):+.IP+.nf+\f[C]+$ hledger -f examples/sample.journal bal -E+ 0 assets:bank:checking+ $1 assets:bank:saving+ $-2 assets:cash+ $1 expenses:food+ $1 expenses:supplies+ $-1 income:gifts+ $-1 income:salary+ $1 liabilities:debts+--------------------+ 0 +\f[R]+.fi+.PP+The total of the amounts displayed is shown as the last line, unless+\f[C]-N\f[R]/\f[C]--no-total\f[R] is used.+.SS Filtered balance report+.PP+You can show fewer accounts, a different time period, totals from+cleared transactions only, etc.+by using query arguments or options to limit the postings being matched.+Eg:+.IP+.nf+\f[C]+$ hledger bal --cleared assets date:200806+ $-2 assets:cash+--------------------+ $-2 +\f[R]+.fi+.SS List or tree mode+.PP+By default, or with \f[C]-l/--flat\f[R], accounts are shown as a flat+list with their full names visible, as in the examples above.+.PP+With \f[C]-t/--tree\f[R], the account hierarchy is shown, with+subaccounts\[aq] \[dq]leaf\[dq] names indented below their parent:+.IP+.nf+\f[C]+$ hledger balance+ $-1 assets+ $1 bank:saving+ $-2 cash+ $2 expenses+ $1 food+ $1 supplies+ $-2 income+ $-1 gifts+ $-1 salary+ $1 liabilities:debts+--------------------+ 0+\f[R]+.fi+.PP+Notes:+.IP \[bu] 2+\[dq]Boring\[dq] accounts are combined with their subaccount for more+compact output, unless \f[C]--no-elide\f[R] is used.+Boring accounts have no balance of their own and just one subaccount (eg+\f[C]assets:bank\f[R] and \f[C]liabilities\f[R] above).+.IP \[bu] 2+All balances shown are \[dq]inclusive\[dq], ie including the balances+from all subaccounts.+Note this means some repetition in the output, which requires+explanation when sharing reports with non-plaintextaccounting-users.+A tree mode report\[aq]s final total is the sum of the top-level+balances shown, not of all the balances shown.+.IP \[bu] 2+Each group of sibling accounts (ie, under a common parent) is sorted+separately.+.SS Depth limiting+.PP+With a \f[C]depth:N\f[R] query, or \f[C]--depth N\f[R] option, or just+\f[C]-N\f[R], balance reports will show accounts only to the specified+depth, hiding the deeper subaccounts.+Account balances at the depth limit always include the balances from any+hidden subaccounts (even in list mode).+This can be useful for getting an overview.+Eg, limiting to depth 1:+.IP+.nf+\f[C]+$ hledger balance -N -1+ $-1 assets+ $2 expenses+ $-2 income+ $1 liabilities+\f[R]+.fi+.PP+You can also hide top-level account name parts, using+\f[C]--drop N\f[R].+This can be useful for hiding repetitive top-level account names:+.IP+.nf+\f[C]+$ hledger bal expenses --drop 1+ $1 food+ $1 supplies+--------------------+ $2 +\f[R]+.fi+.PP+.SS Multi-period balance report+.PP+With a report interval (set by the \f[C]-D/--daily\f[R],+\f[C]-W/--weekly\f[R], \f[C]-M/--monthly\f[R], \f[C]-Q/--quarterly\f[R],+\f[C]-Y/--yearly\f[R], or \f[C]-p/--period\f[R] flag), \f[C]balance\f[R]+shows a tabular report, with columns representing successive time+periods (and a title):+.IP+.nf+\f[C]+$ hledger balance --quarterly income expenses -E+Balance changes in 2008:++ || 2008q1 2008q2 2008q3 2008q4 +===================++=================================+ expenses:food || 0 $1 0 0 + expenses:supplies || 0 $1 0 0 + income:gifts || 0 $-1 0 0 + income:salary || $-1 0 0 0 +-------------------++---------------------------------+ || $-1 $1 0 0 +\f[R]+.fi+.PP+Notes:+.IP \[bu] 2+The report\[aq]s start/end dates will be expanded, if necessary, to+fully encompass the displayed subperiods (so that the first and last+subperiods have the same duration as the others).+.IP \[bu] 2+Leading and trailing periods (columns) containing all zeroes are not+shown, unless \f[C]-E/--empty\f[R] is used.+.IP \[bu] 2+Accounts (rows) containing all zeroes are not shown, unless+\f[C]-E/--empty\f[R] is used.+.IP \[bu] 2+Amounts with many commodities are shown in abbreviated form, unless+\f[C]--no-elide\f[R] is used.+\f[I](experimental)\f[R]+.IP \[bu] 2+Average and/or total columns can be added with the+\f[C]-A/--average\f[R] and \f[C]-T/--row-total\f[R] flags.+.IP \[bu] 2+The \f[C]--transpose\f[R] flag can be used to exchange rows and columns.+.IP \[bu] 2+The \f[C]--pivot FIELD\f[R] option causes a different transaction field+to be used as \[dq]account name\[dq].+See PIVOTING.+.PP+Multi-period reports with many periods can be too wide for easy viewing+in the terminal.+Here are some ways to handle that:+.IP \[bu] 2+Hide the totals row with \f[C]-N/--no-total\f[R]+.IP \[bu] 2+Convert to a single currency with \f[C]-V\f[R]+.IP \[bu] 2+Maximize the terminal window+.IP \[bu] 2+Reduce the terminal\[aq]s font size+.IP \[bu] 2+View with a pager like less, eg:+\f[C]hledger bal -D --color=yes | less -RS\f[R]+.IP \[bu] 2+Output as CSV and use a CSV viewer like visidata+(\f[C]hledger bal -D -O csv | vd -f csv\f[R]), Emacs\[aq] csv-mode+(\f[C]M-x csv-mode, C-c C-a\f[R]), or a spreadsheet+(\f[C]hledger bal -D -o a.csv && open a.csv\f[R])+.IP \[bu] 2+Output as HTML and view with a browser:+\f[C]hledger bal -D -o a.html && open a.html\f[R]+.SS Sorting by amount+.PP+With \f[C]-S/--sort-amount\f[R], accounts with the largest (most+positive) balances are shown first.+Eg: \f[C]hledger bal expenses -MAS\f[R] shows your biggest averaged+monthly expenses first.+.PP+Revenues and liability balances are typically negative, however, so+\f[C]-S\f[R] shows these in reverse order.+To work around this, you can add \f[C]--invert\f[R] to flip the signs.+(Or, use one of the higher-level reports, which flip the sign+automatically.+Eg: \f[C]hledger incomestatement -MAS\f[R]).+.PP+.SS Percentages+.PP+With \f[C]-%/--percent\f[R], balance reports show each account\[aq]s+value expressed as a percentage of the (column) total:+.IP+.nf+\f[C]+$ hledger bal expenses -Q -%+Balance changes in 2008:++ || 2008Q1 2008Q2 2008Q3 2008Q4 +===================++=================================+ expenses:food || 0 50.0 % 0 0 + expenses:supplies || 0 50.0 % 0 0 +-------------------++---------------------------------+ || 0 100.0 % 0 0 +\f[R]+.fi+.PP+Note it is not useful to calculate percentages if the amounts in a+column have mixed signs.+In this case, make a separate report for each sign, eg:+.IP+.nf+\f[C]+$ hledger bal -% amt:\[ga]>0\[ga]+$ hledger bal -% amt:\[ga]<0\[ga]+\f[R]+.fi+.PP+Similarly, if the amounts in a column have mixed commodities, convert+them to one commodity with \f[C]-B\f[R], \f[C]-V\f[R], \f[C]-X\f[R] or+\f[C]--value\f[R], or make a separate report for each commodity:+.IP+.nf+\f[C]+$ hledger bal -% cur:\[rs]\[rs]$+$ hledger bal -% cur:\[Eu]+\f[R]+.fi+.SS Balance change, end balance+.PP+It\[aq]s important to be clear on the meaning of the numbers shown in+balance reports.+Here is some terminology we use:+.PP+A \f[B]\f[BI]balance change\f[B]\f[R] is the net amount added to, or+removed from, an account during some period.+.PP+An \f[B]\f[BI]end balance\f[B]\f[R] is the amount accumulated in an+account as of some date (and some time, but hledger doesn\[aq]t store+that; assume end of day in your timezone).+It is the sum of previous balance changes.+.PP+We call it a \f[B]\f[BI]historical end balance\f[B]\f[R] if it includes+all balance changes since the account was created.+For a real world account, this means it will match the \[dq]historical+record\[dq], eg the balances reported in your bank statements or bank+web UI.+(If they are correct!)+.PP+In general, balance changes are what you want to see when reviewing+revenues and expenses, and historical end balances are what you want to+see when reviewing or reconciling asset, liability and equity accounts.+.PP+\f[C]balance\f[R] shows balance changes by default.+To see accurate historical end balances:+.IP "1." 3+Initialise account starting balances with an \[dq]opening balances\[dq]+transaction (a transfer from equity to the account), unless the journal+covers the account\[aq]s full lifetime.+.IP "2." 3+Include all of of the account\[aq]s prior postings in the report, by not+specifying a report start date, or by using the+\f[C]-H/--historical\f[R] flag.+(\f[C]-H\f[R] causes report start date to be ignored when summing+postings.)+.SS Balance report types+.PP+For more flexible reporting, there are three important option groups:+.PP+\f[C]hledger balance [CALCULATIONTYPE] [ACCUMULATIONTYPE] [VALUATIONTYPE] ...\f[R]+.PP+The first two are the most important: calculation type selects the basic+calculation to perform for each table cell, while accumulation type says+which postings should be included in each cell\[aq]s calculation.+Typically one or both of these are selected by default, so you don\[aq]t+need to write them explicitly.+A valuation type can be added if you want to convert the basic report to+value or cost.+.PP+\f[B]Calculation type:\f[R]+.PD 0+.P+.PD+The basic calculation to perform for each table cell.+It is one of:+.IP \[bu] 2+\f[C]--sum\f[R] : sum the posting amounts (\f[B]default\f[R])+.IP \[bu] 2+\f[C]--budget\f[R] : like --sum but also show a goal amount+.IP \[bu] 2+\f[C]--valuechange\f[R] : show the change in period-end historical+balance values+.PP+\f[B]Accumulation type:\f[R]+.PD 0+.P+.PD+Which postings should be included in each cell\[aq]s calculation.+It is one of:+.IP \[bu] 2+\f[C]--change\f[R] : postings from column start to column end, ie within+the cell\[aq]s period.+Typically used to see revenues/expenses.+(\f[B]default for balance, incomestatement\f[R])+.IP \[bu] 2+\f[C]--cumulative\f[R] : postings from report start to column end, eg to+show changes accumulated since the report\[aq]s start date.+Rarely used.+.IP \[bu] 2+\f[C]--historical/-H\f[R] : postings from journal start to column end,+ie all postings from account creation to the end of the cell\[aq]s+period.+Typically used to see historical end balances of+assets/liabilities/equity.+(\f[B]default for balancesheet, balancesheetequity, cashflow\f[R])+.PP+\f[B]Valuation type:\f[R]+.PD 0+.P+.PD+Which kind of valuation, valuation date(s) and optionally a target+valuation commodity to use.+It is one of:+.IP \[bu] 2+no valuation, show amounts in their original commodities+(\f[B]default\f[R])+.IP \[bu] 2+\f[C]--value=cost[,COMM]\f[R] : no valuation, show amounts converted to+cost+.IP \[bu] 2+\f[C]--value=then[,COMM]\f[R] : show value at transaction dates+.IP \[bu] 2+\f[C]--value=end[,COMM]\f[R] : show value at period end date(s)+(\f[B]default with \f[CB]--valuechange\f[B]\f[R])+.IP \[bu] 2+\f[C]--value=now[,COMM]\f[R] : show value at today\[aq]s date+.IP \[bu] 2+\f[C]--value=YYYY-MM-DD[,COMM]\f[R] : show value at another date+.PP+or one of their aliases: \f[C]--cost/-B\f[R], \f[C]--market/-V\f[R] or+\f[C]--exchange/-X\f[R].+.PP+Most combinations of these options should produce reasonable reports,+but if you find any that seem wrong or misleading, let us know.+The following restrictions are applied:+.IP \[bu] 2+\f[C]--valuechange\f[R] implies \f[C]--value=end\f[R]+.IP \[bu] 2+\f[C]--valuechange\f[R] makes \f[C]--change\f[R] the default when used+with the \f[C]balancesheet\f[R]/\f[C]balancesheetequity\f[R] commands+.IP \[bu] 2+\f[C]--cumulative\f[R] or \f[C]--historical\f[R] disables+\f[C]--row-total/-T\f[R]+.PP+For reference, here is what the combinations of accumulation and+valuation show:+.PP+.TS+tab(@);+lw(8.2n) lw(16.3n) lw(16.8n) lw(15.1n) lw(13.6n).+T{+Valuation: >Accumulation: v+T}@T{+no valuation+T}@T{+\f[C]--value= then\f[R]+T}@T{+\f[C]--value= end\f[R]+T}@T{+\f[C]--value= YYYY-MM-DD /now\f[R]+T}+_+T{+\f[C]--change\f[R]+T}@T{+change in period+T}@T{+sum of posting-date market values in period+T}@T{+period-end value of change in period+T}@T{+DATE-value of change in period+T}+T{+\f[C]--cumulative\f[R]+T}@T{+change from report start to period end+T}@T{+sum of posting-date market values from report start to period end+T}@T{+period-end value of change from report start to period end+T}@T{+DATE-value of change from report start to period end+T}+T{+\f[C]--historical /-H\f[R]+T}@T{+change from journal start to period end (historical end balance)+T}@T{+sum of posting-date market values from journal start to period end+T}@T{+period-end value of change from journal start to period end+T}@T{+DATE-value of change from journal start to period end+T}+.TE+.SS Useful balance reports+.PP+Some frequently used \f[C]balance\f[R] options/reports are:+.IP \[bu] 2+\f[C]bal -M revenues expenses\f[R]+.PD 0+.P+.PD+Show revenues/expenses in each month.+Also available as the \f[C]incomestatement\f[R] command.+.IP \[bu] 2+\f[C]bal -M -H assets liabilities\f[R]+.PD 0+.P+.PD+Show historical asset/liability balances at each month end.+Also available as the \f[C]balancesheet\f[R] command.+.IP \[bu] 2+\f[C]bal -M -H assets liabilities equity\f[R]+.PD 0+.P+.PD+Show historical asset/liability/equity balances at each month end.+Also available as the \f[C]balancesheetequity\f[R] command.+.IP \[bu] 2+\f[C]bal -M assets not:receivable\f[R]+.PD 0+.P+.PD+Show changes to liquid assets in each month.+Also available as the \f[C]cashflow\f[R] command.+.PP+Also:+.IP \[bu] 2+\f[C]bal -M expenses -2 -SA\f[R]+.PD 0+.P+.PD+Show monthly expenses summarised to depth 2 and sorted by average+amount.+.IP \[bu] 2+\f[C]bal -M --budget expenses\f[R]+.PD 0+.P+.PD+Show monthly expenses and budget goals.+.IP \[bu] 2+\f[C]bal -M --valuechange investments\f[R]+.PD 0+.P+.PD+Show monthly change in market value of investment assets.+.IP \[bu] 2+\f[C]bal investments --valuechange -D date:lastweek amt:\[aq]>1000\[aq] -STA [--invert]\f[R]+.PD 0+.P+.PD+Show top gainers [or losers] last week+.SS Budget report+.PP+The \f[C]--budget\f[R] report type activates extra columns showing any+budget goals for each account and period.+The budget goals are defined by periodic transactions.+This is very useful for comparing planned and actual income, expenses,+time usage, etc.+.PP+For example, you can take average monthly expenses in the common expense+categories to construct a minimal monthly budget:+.IP+.nf+\f[C]+;; Budget+\[ti] monthly+ income $2000+ expenses:food $400+ expenses:bus $50+ expenses:movies $30+ assets:bank:checking++;; Two months worth of expenses+2017-11-01+ income $1950+ expenses:food $396+ expenses:bus $49+ expenses:movies $30+ expenses:supplies $20+ assets:bank:checking++2017-12-01+ income $2100+ expenses:food $412+ expenses:bus $53+ expenses:gifts $100+ assets:bank:checking+\f[R]+.fi+.PP+You can now see a monthly budget report:+.IP+.nf+\f[C]+$ hledger balance -M --budget+Budget performance in 2017/11/01-2017/12/31:++ || Nov Dec +======================++====================================================+ assets || $-2445 [ 99% of $-2480] $-2665 [ 107% of $-2480] + assets:bank || $-2445 [ 99% of $-2480] $-2665 [ 107% of $-2480] + assets:bank:checking || $-2445 [ 99% of $-2480] $-2665 [ 107% of $-2480] + expenses || $495 [ 103% of $480] $565 [ 118% of $480] + expenses:bus || $49 [ 98% of $50] $53 [ 106% of $50] + expenses:food || $396 [ 99% of $400] $412 [ 103% of $400] + expenses:movies || $30 [ 100% of $30] 0 [ 0% of $30] + income || $1950 [ 98% of $2000] $2100 [ 105% of $2000] +----------------------++----------------------------------------------------+ || 0 [ 0] 0 [ 0] +\f[R]+.fi+.PP+This is different from a normal balance report in several ways:+.IP \[bu] 2+Only accounts with budget goals during the report period are shown, by+default.+.IP \[bu] 2+In each column, in square brackets after the actual amount, budget goal+amounts are shown, and the actual/goal percentage.+(Note: budget goals should be in the same commodity as the actual+amount.)+.IP \[bu] 2+All parent accounts are always shown, even in list mode.+Eg assets, assets:bank, and expenses above.+.IP \[bu] 2+Amounts always include all subaccounts, budgeted or unbudgeted, even in+list mode.+.PP+This means that the numbers displayed will not always add up! Eg above,+the \f[C]expenses\f[R] actual amount includes the gifts and supplies+transactions, but the \f[C]expenses:gifts\f[R] and+\f[C]expenses:supplies\f[R] accounts are not shown, as they have no+budget amounts declared.+.PP+This can be confusing.+When you need to make things clearer, use the \f[C]-E/--empty\f[R] flag,+which will reveal all accounts including unbudgeted ones, giving the+full picture.+Eg:+.IP+.nf+\f[C]+$ hledger balance -M --budget --empty+Budget performance in 2017/11/01-2017/12/31:++ || Nov Dec +======================++====================================================+ assets || $-2445 [ 99% of $-2480] $-2665 [ 107% of $-2480] + assets:bank || $-2445 [ 99% of $-2480] $-2665 [ 107% of $-2480] + assets:bank:checking || $-2445 [ 99% of $-2480] $-2665 [ 107% of $-2480] + expenses || $495 [ 103% of $480] $565 [ 118% of $480] + expenses:bus || $49 [ 98% of $50] $53 [ 106% of $50] + expenses:food || $396 [ 99% of $400] $412 [ 103% of $400] + expenses:gifts || 0 $100 + expenses:movies || $30 [ 100% of $30] 0 [ 0% of $30] + expenses:supplies || $20 0 + income || $1950 [ 98% of $2000] $2100 [ 105% of $2000] +----------------------++----------------------------------------------------+ || 0 [ 0] 0 [ 0] +\f[R]+.fi+.PP+You can roll over unspent budgets to next period with+\f[C]--cumulative\f[R]:+.IP+.nf+\f[C]+$ hledger balance -M --budget --cumulative+Budget performance in 2017/11/01-2017/12/31:++ || Nov Dec +======================++====================================================+ assets || $-2445 [ 99% of $-2480] $-5110 [ 103% of $-4960] + assets:bank || $-2445 [ 99% of $-2480] $-5110 [ 103% of $-4960] + assets:bank:checking || $-2445 [ 99% of $-2480] $-5110 [ 103% of $-4960] + expenses || $495 [ 103% of $480] $1060 [ 110% of $960] + expenses:bus || $49 [ 98% of $50] $102 [ 102% of $100] + expenses:food || $396 [ 99% of $400] $808 [ 101% of $800] + expenses:movies || $30 [ 100% of $30] $30 [ 50% of $60] + income || $1950 [ 98% of $2000] $4050 [ 101% of $4000] +----------------------++----------------------------------------------------+ || 0 [ 0] 0 [ 0] +\f[R]+.fi+.PP+For more examples and notes, see Budgeting.+.SS Budget report start date+.PP+This might be a bug, but for now: when making budget reports, it\[aq]s a+good idea to explicitly set the report\[aq]s start date to the first day+of a reporting period, because a periodic rule like+\f[C]\[ti] monthly\f[R] generates its transactions on the 1st of each+month, and if your journal has no regular transactions on the 1st, the+default report start date could exclude that budget goal, which can be a+little surprising.+Eg here the default report period is just the day of 2020-01-15:+.IP+.nf+\f[C]+\[ti] monthly in 2020+ (expenses:food) $500++2020-01-15+ expenses:food $400+ assets:checking+\f[R]+.fi+.IP+.nf+\f[C]+$ hledger bal expenses --budget+Budget performance in 2020-01-15:++ || 2020-01-15 +==============++============+ <unbudgeted> || $400 +--------------++------------+ || $400 +\f[R]+.fi+.PP+To avoid this, specify the budget report\[aq]s period, or at least the+start date, with \f[C]-b\f[R]/\f[C]-e\f[R]/\f[C]-p\f[R]/\f[C]date:\f[R],+to ensure it includes the budget goal transactions (periodic+transactions) that you want.+Eg, adding \f[C]-b 2020/1/1\f[R] to the above:+.IP+.nf+\f[C]+$ hledger bal expenses --budget -b 2020/1/1+Budget performance in 2020-01-01..2020-01-15:++ || 2020-01-01..2020-01-15 +===============++========================+ expenses:food || $400 [80% of $500] +---------------++------------------------+ || $400 [80% of $500] +\f[R]+.fi+.SS Nested budgets+.PP+You can add budgets to any account in your account hierarchy.+If you have budgets on both parent account and some of its children,+then budget(s) of the child account(s) would be added to the budget of+their parent, much like account balances behave.+.PP+In the most simple case this means that once you add a budget to any+account, all its parents would have budget as well.+.PP+To illustrate this, consider the following budget:+.IP+.nf+\f[C]+\[ti] monthly from 2019/01+ expenses:personal $1,000.00+ expenses:personal:electronics $100.00+ liabilities+\f[R]+.fi+.PP+With this, monthly budget for electronics is defined to be $100 and+budget for personal expenses is an additional $1000, which implicitly+means that budget for both \f[C]expenses:personal\f[R] and+\f[C]expenses\f[R] is $1100.+.PP+Transactions in \f[C]expenses:personal:electronics\f[R] will be counted+both towards its $100 budget and $1100 of \f[C]expenses:personal\f[R] ,+and transactions in any other subaccount of \f[C]expenses:personal\f[R]+would be counted towards only towards the budget of+\f[C]expenses:personal\f[R].+.PP+For example, let\[aq]s consider these transactions:+.IP+.nf+\f[C]+\[ti] monthly from 2019/01+ expenses:personal $1,000.00+ expenses:personal:electronics $100.00+ liabilities++2019/01/01 Google home hub+ expenses:personal:electronics $90.00+ liabilities $-90.00++2019/01/02 Phone screen protector+ expenses:personal:electronics:upgrades $10.00+ liabilities++2019/01/02 Weekly train ticket+ expenses:personal:train tickets $153.00+ liabilities++2019/01/03 Flowers+ expenses:personal $30.00+ liabilities+\f[R]+.fi+.PP+As you can see, we have transactions in+\f[C]expenses:personal:electronics:upgrades\f[R] and+\f[C]expenses:personal:train tickets\f[R], and since both of these+accounts are without explicitly defined budget, these transactions would+be counted towards budgets of \f[C]expenses:personal:electronics\f[R]+and \f[C]expenses:personal\f[R] accordingly:+.IP+.nf+\f[C]+$ hledger balance --budget -M+Budget performance in 2019/01:++ || Jan +===============================++===============================+ expenses || $283.00 [ 26% of $1100.00] + expenses:personal || $283.00 [ 26% of $1100.00] + expenses:personal:electronics || $100.00 [ 100% of $100.00] + liabilities || $-283.00 [ 26% of $-1100.00] +-------------------------------++-------------------------------+ || 0 [ 0] +\f[R]+.fi+.PP+And with \f[C]--empty\f[R], we can get a better picture of budget+allocation and consumption:+.IP+.nf+\f[C]+$ hledger balance --budget -M --empty+Budget performance in 2019/01:++ || Jan +========================================++===============================+ expenses || $283.00 [ 26% of $1100.00] + expenses:personal || $283.00 [ 26% of $1100.00] + expenses:personal:electronics || $100.00 [ 100% of $100.00] + expenses:personal:electronics:upgrades || $10.00 + expenses:personal:train tickets || $153.00 + liabilities || $-283.00 [ 26% of $-1100.00] +----------------------------------------++-------------------------------+ || 0 [ 0] +\f[R]+.fi+.SS Customising single-period balance reports+.PP+For single-period balance reports displayed in the terminal (only), you+can use \f[C]--format FMT\f[R] to customise the format and content of+each line.+Eg:+.IP+.nf+\f[C]+$ hledger balance --format \[dq]%20(account) %12(total)\[dq]+ assets $-1+ bank:saving $1+ cash $-2+ expenses $2+ food $1+ supplies $1+ income $-2+ gifts $-1+ salary $-1+ liabilities:debts $1+---------------------------------+ 0+\f[R]+.fi+.PP+The FMT format string (plus a newline) specifies the formatting applied+to each account/balance pair.+It may contain any suitable text, with data fields interpolated like so:+.PP+\f[C]%[MIN][.MAX](FIELDNAME)\f[R]+.IP \[bu] 2+MIN pads with spaces to at least this width (optional)+.IP \[bu] 2+MAX truncates at this width (optional)+.IP \[bu] 2+FIELDNAME must be enclosed in parentheses, and can be one of:+.RS 2+.IP \[bu] 2+\f[C]depth_spacer\f[R] - a number of spaces equal to the account\[aq]s+depth, or if MIN is specified, MIN * depth spaces.+.IP \[bu] 2+\f[C]account\f[R] - the account\[aq]s name+.IP \[bu] 2+\f[C]total\f[R] - the account\[aq]s balance/posted total, right+justified+.RE+.PP+Also, FMT can begin with an optional prefix to control how+multi-commodity amounts are rendered:+.IP \[bu] 2+\f[C]%_\f[R] - render on multiple lines, bottom-aligned (the default)+.IP \[bu] 2+\f[C]%\[ha]\f[R] - render on multiple lines, top-aligned+.IP \[bu] 2+\f[C]%,\f[R] - render on one line, comma-separated+.PP+There are some quirks.+Eg in one-line mode, \f[C]%(depth_spacer)\f[R] has no effect, instead+\f[C]%(account)\f[R] has indentation built in.+Experimentation may be needed to get pleasing results.+.PP+Some example formats:+.IP \[bu] 2+\f[C]%(total)\f[R] - the account\[aq]s total+.IP \[bu] 2+\f[C]%-20.20(account)\f[R] - the account\[aq]s name, left justified,+padded to 20 characters and clipped at 20 characters+.IP \[bu] 2+\f[C]%,%-50(account) %25(total)\f[R] - account name padded to 50+characters, total padded to 20 characters, with multiple commodities+rendered on one line+.IP \[bu] 2+\f[C]%20(total) %2(depth_spacer)%-(account)\f[R] - the default format+for the single-column balance report+.SS balancesheet+.PP+balancesheet, bs+.PD 0+.P+.PD+This command displays a balance sheet, showing historical ending+balances of asset and liability accounts.+(To see equity as well, use the balancesheetequity command.) Amounts are+shown with normal positive sign, as in conventional financial+statements.+.PP+The asset and liability accounts shown are those accounts declared with+the \f[C]Asset\f[R] or \f[C]Cash\f[R] or \f[C]Liability\f[R] type, or+otherwise all accounts under a top-level \f[C]asset\f[R] or+\f[C]liability\f[R] account (case insensitive, plurals allowed).+.PP+Example:+.IP+.nf+\f[C]+$ hledger balancesheet+Balance Sheet++Assets:+ $-1 assets+ $1 bank:saving+ $-2 cash+--------------------+ $-1++Liabilities:+ $1 liabilities:debts+--------------------+ $1++Total:+--------------------+ 0+\f[R]+.fi+.PP+This command is a higher-level variant of the \f[C]balance\f[R] command,+and supports many of that command\[aq]s features, such as multi-period+reports.+It is similar to \f[C]hledger balance -H assets liabilities\f[R], but+with smarter account detection, and liabilities displayed with their+sign flipped.+.PP+This command also supports the output destination and output format+options The output formats supported are \f[C]txt\f[R], \f[C]csv\f[R],+\f[C]html\f[R], and (experimental) \f[C]json\f[R].+.SS balancesheetequity+.PP+balancesheetequity, bse+.PD 0+.P+.PD+This command displays a balance sheet, showing historical ending+balances of asset, liability and equity accounts.+Amounts are shown with normal positive sign, as in conventional+financial statements.+.PP+The asset, liability and equity accounts shown are those accounts+declared with the \f[C]Asset\f[R], \f[C]Cash\f[R], \f[C]Liability\f[R]+or \f[C]Equity\f[R] type, or otherwise all accounts under a top-level+\f[C]asset\f[R], \f[C]liability\f[R] or \f[C]equity\f[R] account (case+insensitive, plurals allowed).+.PP+Example:+.IP+.nf+\f[C]+$ hledger balancesheetequity+Balance Sheet With Equity++Assets:+ $-2 assets+ $1 bank:saving+ $-3 cash+--------------------+ $-2++Liabilities:+ $1 liabilities:debts+--------------------+ $1++Equity:+ $1 equity:owner+--------------------+ $1++Total:+--------------------+ 0+\f[R]+.fi+.PP+This command is a higher-level variant of the \f[C]balance\f[R] command,+and supports many of that command\[aq]s features, such as multi-period+reports.+It is similar to \f[C]hledger balance -H assets liabilities equity\f[R],+but with smarter account detection, and liabilities/equity displayed+with their sign flipped.+.PP+This command also supports the output destination and output format+options The output formats supported are \f[C]txt\f[R], \f[C]csv\f[R],+\f[C]html\f[R], and (experimental) \f[C]json\f[R].+.SS cashflow+.PP+cashflow, cf+.PD 0+.P+.PD+This command displays a cashflow statement, showing the inflows and+outflows affecting \[dq]cash\[dq] (ie, liquid) assets.+Amounts are shown with normal positive sign, as in conventional+financial statements.+.PP+The \[dq]cash\[dq] accounts shown are those accounts declared with the+\f[C]Cash\f[R] type, or otherwise all accounts under a top-level+\f[C]asset\f[R] account (case insensitive, plural allowed) which do not+have \f[C]fixed\f[R], \f[C]investment\f[R], \f[C]receivable\f[R] or+\f[C]A/R\f[R] in their name.+.PP+Example:+.IP+.nf+\f[C]+$ hledger cashflow+Cashflow Statement++Cash flows:+ $-1 assets+ $1 bank:saving+ $-2 cash+--------------------+ $-1++Total:+--------------------+ $-1+\f[R]+.fi+.PP+This command is a higher-level variant of the \f[C]balance\f[R] command,+and supports many of that command\[aq]s features, such as multi-period+reports.+It is similar to+\f[C]hledger balance assets not:fixed not:investment not:receivable\f[R],+but with smarter account detection.+.PP+This command also supports the output destination and output format+options The output formats supported are \f[C]txt\f[R], \f[C]csv\f[R],+\f[C]html\f[R], and (experimental) \f[C]json\f[R].+.SS check+.PP+check+.PD 0+.P+.PD+Check for various kinds of errors in your data.+.PP+hledger provides a number of built-in error checks to help prevent+problems in your data.+Some of these are run automatically; or, you can use this+\f[C]check\f[R] command to run them on demand, with no output and a zero+exit code if all is well.+Specify their names (or a prefix) as argument(s).+.PP+Some examples:+.IP+.nf+\f[C]+hledger check # basic checks+hledger check -s # basic + strict checks+hledger check ordereddates payees # basic + two other checks+\f[R]+.fi+.PP+Here are the checks currently available:+.SS Basic checks+.PP+These checks are always run automatically, by (almost) all hledger+commands, including \f[C]check\f[R]:+.IP \[bu] 2+\f[B]parseable\f[R] - data files are well-formed and can be successfully+parsed+.IP \[bu] 2+\f[B]autobalanced\f[R] - all transactions are balanced, inferring+missing amounts where necessary, and possibly converting commodities+using transaction prices or automatically-inferred transaction prices+.IP \[bu] 2+\f[B]assertions\f[R] - all balance assertions in the journal are+passing.+(This check can be disabled with+\f[C]-I\f[R]/\f[C]--ignore-assertions\f[R].)+.SS Strict checks+.PP+These additional checks are run when the \f[C]-s\f[R]/\f[C]--strict\f[R]+(strict mode) flag is used.+Or, they can be run by giving their names as arguments to+\f[C]check\f[R]:+.IP \[bu] 2+\f[B]accounts\f[R] - all account names used by transactions have been+declared+.IP \[bu] 2+\f[B]commodities\f[R] - all commodity symbols used have been declared+.SS Other checks+.PP+These checks can be run only by giving their names as arguments to+\f[C]check\f[R].+They are more specialised and not desirable for everyone, therefore+optional:+.IP \[bu] 2+\f[B]ordereddates\f[R] - transactions are ordered by date in each file+.IP \[bu] 2+\f[B]payees\f[R] - all payees used by transactions have been declared+.IP \[bu] 2+\f[B]uniqueleafnames\f[R] - all account leaf names are unique+.SS Custom checks+.PP+A few more checks are are available as separate add-on commands, in+https://github.com/simonmichael/hledger/tree/master/bin:+.IP \[bu] 2+\f[B]hledger-check-tagfiles\f[R] - all tag values containing / (a+forward slash) exist as file paths+.IP \[bu] 2+\f[B]hledger-check-fancyassertions\f[R] - more complex balance+assertions are passing+.PP+You could make similar scripts to perform your own custom checks.+See: Cookbook -> Scripting.+.SS close+.PP+close, equity+.PD 0+.P+.PD+Prints a \[dq]closing balances\[dq] transaction and an \[dq]opening+balances\[dq] transaction that bring account balances to and from zero,+respectively.+These can be added to your journal file(s), eg to bring asset/liability+balances forward into a new journal file, or to close out+revenues/expenses to retained earnings at the end of a period.+.PP+You can print just one of these transactions by using the+\f[C]--close\f[R] or \f[C]--open\f[R] flag.+You can customise their descriptions with the \f[C]--close-desc\f[R] and+\f[C]--open-desc\f[R] options.+.PP+One amountless posting to \[dq]equity:opening/closing balances\[dq] is+added to balance the transactions, by default.+You can customise this account name with \f[C]--close-acct\f[R] and+\f[C]--open-acct\f[R]; if you specify only one of these, it will be used+for both.+.PP+With \f[C]--x/--explicit\f[R], the equity posting\[aq]s amount will be+shown.+And if it involves multiple commodities, a posting for each commodity+will be shown, as with the print command.+.PP+With \f[C]--interleaved\f[R], the equity postings are shown next to the+postings they balance, which makes troubleshooting easier.+.PP+By default, transaction prices in the journal are ignored when+generating the closing/opening transactions.+With \f[C]--show-costs\f[R], this cost information is preserved+(\f[C]balance -B\f[R] reports will be unchanged after the transition).+Separate postings are generated for each cost in each commodity.+Note this can generate very large journal entries, if you have many+foreign currency or investment transactions.+.SS close usage+.PP+If you split your journal files by time (eg yearly), you will typically+run this command at the end of the year, and save the closing+transaction as last entry of the old file, and the opening transaction+as the first entry of the new file.+This makes the files self contained, so that correct balances are+reported no matter which of them are loaded.+Ie, if you load just one file, the balances are initialised correctly;+or if you load several files, the redundant closing/opening transactions+cancel each other out.+(They will show up in print or register reports; you can exclude them+with a query like+\f[C]not:desc:\[aq](opening|closing) balances\[aq]\f[R].)+.PP+If you\[aq]re running a business, you might also use this command to+\[dq]close the books\[dq] at the end of an accounting period,+transferring income statement account balances to retained earnings.+(You may want to change the equity account name to something like+\[dq]equity:retained earnings\[dq].)+.PP+By default, the closing transaction is dated yesterday, the balances are+calculated as of end of yesterday, and the opening transaction is dated+today.+To close on some other date, use:+\f[C]hledger close -e OPENINGDATE\f[R].+Eg, to close/open on the 2018/2019 boundary, use \f[C]-e 2019\f[R].+You can also use -p or \f[C]date:PERIOD\f[R] (any starting date is+ignored).+.PP+Both transactions will include balance assertions for the+closed/reopened accounts.+You probably shouldn\[aq]t use status or realness filters (like -C or -R+or \f[C]status:\f[R]) with this command, or the generated balance+assertions will depend on these flags.+Likewise, if you run this command with --auto, the balance assertions+will probably always require --auto.+.PP+Examples:+.PP+Carrying asset/liability balances into a new file for 2019:+.IP+.nf+\f[C]+$ hledger close -f 2018.journal -e 2019 assets liabilities --open+ # (copy/paste the output to the start of your 2019 journal file)+$ hledger close -f 2018.journal -e 2019 assets liabilities --close+ # (copy/paste the output to the end of your 2018 journal file)+\f[R]+.fi+.PP+Now:+.IP+.nf+\f[C]+$ hledger bs -f 2019.journal # one file - balances are correct+$ hledger bs -f 2018.journal -f 2019.journal # two files - balances still correct+$ hledger bs -f 2018.journal not:desc:closing # to see year-end balances, must exclude closing txn+\f[R]+.fi+.PP+Transactions spanning the closing date can complicate matters, breaking+balance assertions:+.IP+.nf+\f[C]+2018/12/30 a purchase made in 2018, clearing the following year+ expenses:food 5+ assets:bank:checking -5 ; [2019/1/2]+\f[R]+.fi+.PP+Here\[aq]s one way to resolve that:+.IP+.nf+\f[C]+; in 2018.journal:+2018/12/30 a purchase made in 2018, clearing the following year+ expenses:food 5+ liabilities:pending++; in 2019.journal:+2019/1/2 clearance of last year\[aq]s pending transactions+ liabilities:pending 5 = 0+ assets:checking+\f[R]+.fi+.SS codes+.PP+codes+.PD 0+.P+.PD+List the codes seen in transactions, in the order parsed.+.PP+This command prints the value of each transaction\[aq]s code field, in+the order transactions were parsed.+The transaction code is an optional value written in parentheses between+the date and description, often used to store a cheque number, order+number or similar.+.PP+Transactions aren\[aq]t required to have a code, and missing or empty+codes will not be shown by default.+With the \f[C]-E\f[R]/\f[C]--empty\f[R] flag, they will be printed as+blank lines.+.PP+You can add a query to select a subset of transactions.+.PP+Examples:+.IP+.nf+\f[C]+1/1 (123)+ (a) 1++1/1 ()+ (a) 1++1/1+ (a) 1++1/1 (126)+ (a) 1+\f[R]+.fi+.IP+.nf+\f[C]+$ hledger codes+123+124+126+\f[R]+.fi+.IP+.nf+\f[C]+$ hledger codes -E+123+124+++126+\f[R]+.fi+.SS commodities+.PP+commodities+.PD 0+.P+.PD+List all commodity/currency symbols used or declared in the journal.+.SS descriptions+.PP+descriptions+.PD 0+.P+.PD+List the unique descriptions that appear in transactions.+.PP+This command lists the unique descriptions that appear in transactions,+in alphabetic order.+You can add a query to select a subset of transactions.+.PP+Example:+.IP+.nf+\f[C]+$ hledger descriptions+Store Name+Gas Station | Petrol+Person A+\f[R]+.fi+.SS diff+.PP+diff+.PD 0+.P+.PD+Compares a particular account\[aq]s transactions in two input files.+It shows any transactions to this account which are in one file but not+in the other.+.PP+More precisely, for each posting affecting this account in either file,+it looks for a corresponding posting in the other file which posts the+same amount to the same account (ignoring date, description, etc.) Since+postings not transactions are compared, this also works when multiple+bank transactions have been combined into a single journal entry.+.PP+This is useful eg if you have downloaded an account\[aq]s transactions+from your bank (eg as CSV data).+When hledger and your bank disagree about the account balance, you can+compare the bank data with your journal to find out the cause.+.PP+Examples:+.IP+.nf+\f[C]+$ hledger diff -f $LEDGER_FILE -f bank.csv assets:bank:giro +These transactions are in the first file only:++2014/01/01 Opening Balances+ assets:bank:giro EUR ...+ ...+ equity:opening balances EUR -...++These transactions are in the second file only:+\f[R]+.fi+.SS files+.PP+files+.PD 0+.P+.PD+List all files included in the journal.+With a REGEX argument, only file names matching the regular expression+(case sensitive) are shown.+.SS help+.PP+help+.PD 0+.P+.PD+Show the hledger user manual in one of several formats, optionally+positioned at a given TOPIC (if possible).+TOPIC is any heading, or heading prefix, in the manual.+Some examples: commands, print, \[aq]auto postings\[aq], periodic.+.PP+This command shows the user manual built in to this hledger version.+It can be useful if the correct version of the hledger manual, or the+usual viewing tools, are not installed on your system.+.PP+By default it uses the best viewer it can find in $PATH, in this order:+\f[C]info\f[R], \f[C]man\f[R], $PAGER (unless a topic is specified),+\f[C]less\f[R], or stdout.+When run non-interactively, it always uses stdout.+Or you can select a particular viewer with the \f[C]-i\f[R] (info),+\f[C]-m\f[R] (man), or \f[C]-p\f[R] (pager) flags.+.SS import+.PP+import+.PD 0+.P+.PD+Read new transactions added to each FILE since last run, and add them to+the main journal file.+Or with --dry-run, just print the transactions that would be added.+Or with --catchup, just mark all of the FILEs\[aq] transactions as+imported, without actually importing any.+.PP+Unlike other hledger commands, with \f[C]import\f[R] the journal file is+an output file, and will be modified, though only by appending (existing+data will not be changed).+The input files are specified as arguments, so to import one or more CSV+files to your main journal, you will run+\f[C]hledger import bank.csv\f[R] or perhaps+\f[C]hledger import *.csv\f[R].+.PP+Note you can import from any file format, though CSV files are the most+common import source, and these docs focus on that case.+.SS Deduplication+.PP+As a convenience \f[C]import\f[R] does \f[I]deduplication\f[R] while+reading transactions.+This does not mean \[dq]ignore transactions that look the same\[dq], but+rather \[dq]ignore transactions that have been seen before\[dq].+This is intended for when you are periodically importing foreign data+which may contain already-imported transactions.+So eg, if every day you download bank CSV files containing redundant+data, you can safely run \f[C]hledger import bank.csv\f[R] and only new+transactions will be imported.+(\f[C]import\f[R] is idempotent.)+.PP+Since the items being read (CSV records, eg) often do not come with+unique identifiers, hledger detects new transactions by date, assuming+that:+.IP "1." 3+new items always have the newest dates+.IP "2." 3+item dates do not change across reads+.IP "3." 3+and items with the same date remain in the same relative order across+reads.+.PP+These are often true of CSV files representing transactions, or true+enough so that it works pretty well in practice.+1 is important, but violations of 2 and 3 amongst the old transactions+won\[aq]t matter (and if you import often, the new transactions will be+few, so less likely to be the ones affected).+.PP+hledger remembers the latest date processed in each input file by saving+a hidden \[dq].latest\[dq] state file in the same directory.+Eg when reading \f[C]finance/bank.csv\f[R], it will look for and update+the \f[C]finance/.latest.bank.csv\f[R] state file.+The format is simple: one or more lines containing the same ISO-format+date (YYYY-MM-DD), meaning \[dq]I have processed transactions up to this+date, and this many of them on that date.\[dq] Normally you won\[aq]t+see or manipulate these state files yourself.+But if needed, you can delete them to reset the state (making all+transactions \[dq]new\[dq]), or you can construct them to \[dq]catch+up\[dq] to a certain date.+.PP+Note deduplication (and updating of state files) can also be done by+\f[C]print --new\f[R], but this is less often used.+.SS Import testing+.PP+With \f[C]--dry-run\f[R], the transactions that will be imported are+printed to the terminal, without updating your journal or state files.+The output is valid journal format, like the print command, so you can+re-parse it.+Eg, to see any importable transactions which CSV rules have not+categorised:+.IP+.nf+\f[C]+$ hledger import --dry bank.csv | hledger -f- -I print unknown+\f[R]+.fi+.PP+or (live updating):+.IP+.nf+\f[C]+$ ls bank.csv* | entr bash -c \[aq]echo ====; hledger import --dry bank.csv | hledger -f- -I print unknown\[aq]+\f[R]+.fi+.SS Importing balance assignments+.PP+Entries added by import will have their posting amounts made explicit+(like \f[C]hledger print -x\f[R]).+This means that any balance assignments in imported files must be+evaluated; but, imported files don\[aq]t get to see the main file\[aq]s+account balances.+As a result, importing entries with balance assignments (eg from an+institution that provides only balances and not posting amounts) will+probably generate incorrect posting amounts.+To avoid this problem, use print instead of import:+.IP+.nf+\f[C]+$ hledger print IMPORTFILE [--new] >> $LEDGER_FILE+\f[R]+.fi+.PP+(If you think import should leave amounts implicit like print does,+please test it and send a pull request.)+.SS Commodity display styles+.PP+Imported amounts will be formatted according to the canonical commodity+styles (declared or inferred) in the main journal file.+.SS incomestatement+.PP+incomestatement, is+.PD 0+.P+.PD+.PP+This command displays an income statement, showing revenues and expenses+during one or more periods.+Amounts are shown with normal positive sign, as in conventional+financial statements.+.PP+The revenue and expense accounts shown are those accounts declared with+the \f[C]Revenue\f[R] or \f[C]Expense\f[R] type, or otherwise all+accounts under a top-level \f[C]revenue\f[R] or \f[C]income\f[R] or+\f[C]expense\f[R] account (case insensitive, plurals allowed).+.PP+Example:+.IP+.nf+\f[C]+$ hledger incomestatement+Income Statement++Revenues:+ $-2 income+ $-1 gifts+ $-1 salary+--------------------+ $-2++Expenses:+ $2 expenses+ $1 food+ $1 supplies+--------------------+ $2++Total:+--------------------+ 0+\f[R]+.fi+.PP+This command is a higher-level variant of the \f[C]balance\f[R] command,+and supports many of that command\[aq]s features, such as multi-period+reports.+It is similar to+\f[C]hledger balance \[aq](revenues|income)\[aq] expenses\f[R], but with+smarter account detection, and revenues/income displayed with their sign+flipped.+.PP+This command also supports the output destination and output format+options The output formats supported are \f[C]txt\f[R], \f[C]csv\f[R],+\f[C]html\f[R], and (experimental) \f[C]json\f[R].+.SS notes+.PP+notes+.PD 0+.P+.PD+List the unique notes that appear in transactions.+.PP+This command lists the unique notes that appear in transactions, in+alphabetic order.+You can add a query to select a subset of transactions.+The note is the part of the transaction description after a | character+(or if there is no |, the whole description).+.PP+Example:+.IP+.nf+\f[C]+$ hledger notes+Petrol+Snacks+\f[R]+.fi+.SS payees+.PP+payees+.PD 0+.P+.PD+List the unique payee/payer names that appear in transactions.+.PP+This command lists unique payee/payer names which have been declared+with payee directives (--declared), used in transaction descriptions+(--used), or both (the default).+.PP+The payee/payer is the part of the transaction description before a |+character (or if there is no |, the whole description).+.PP+You can add query arguments to select a subset of transactions.+This implies --used.+.PP+Example:+.IP+.nf+\f[C]+$ hledger payees+Store Name+Gas Station+Person A+\f[R]+.fi+.SS prices+.PP+prices+.PD 0+.P+.PD+Print market price directives from the journal.+With --costs, also print synthetic market prices based on transaction+prices.+With --inverted-costs, also print inverse prices based on transaction+prices.+Prices (and postings providing prices) can be filtered by a query.+Price amounts are always displayed with their full precision.+.SS print+.PP+print+.PD 0+.P+.PD+Show transaction journal entries, sorted by date.+.PP+The print command displays full journal entries (transactions) from the+journal file, sorted by date (or with \f[C]--date2\f[R], by secondary+date).+.PP+Amounts are shown mostly normalised to commodity display style, eg the+placement of commodity symbols will be consistent.+All of their decimal places are shown, as in the original journal entry+(with one alteration: in some cases trailing zeroes are added.)+.PP+Amounts are shown right-aligned within each transaction (but not across+all transactions).+.PP+Directives and inter-transaction comments are not shown, currently.+This means the print command is somewhat lossy, and if you are using it+to reformat your journal you should take care to also copy over the+directives and file-level comments.+.PP+Eg:+.IP+.nf+\f[C]+$ hledger print+2008/01/01 income+ assets:bank:checking $1+ income:salary $-1++2008/06/01 gift+ assets:bank:checking $1+ income:gifts $-1++2008/06/02 save+ assets:bank:saving $1+ assets:bank:checking $-1++2008/06/03 * eat & shop+ expenses:food $1+ expenses:supplies $1+ assets:cash $-2++2008/12/31 * pay off+ liabilities:debts $1+ assets:bank:checking $-1+\f[R]+.fi+.PP+print\[aq]s output is usually a valid hledger journal, and you can+process it again with a second hledger command.+This can be useful for certain kinds of search, eg:+.IP+.nf+\f[C]+# Show running total of food expenses paid from cash.+# -f- reads from stdin. -I/--ignore-assertions is sometimes needed.+$ hledger print assets:cash | hledger -f- -I reg expenses:food+\f[R]+.fi+.PP+There are some situations where print\[aq]s output can become+unparseable:+.IP \[bu] 2+Valuation affects posting amounts but not balance assertion or balance+assignment amounts, potentially causing those to fail.+.IP \[bu] 2+Auto postings can generate postings with too many missing amounts.+.PP+Normally, the journal entry\[aq]s explicit or implicit amount style is+preserved.+For example, when an amount is omitted in the journal, it will not+appear in the output.+Similarly, when a transaction price is implied but not written, it will+not appear in the output.+You can use the \f[C]-x\f[R]/\f[C]--explicit\f[R] flag to make all+amounts and transaction prices explicit, which can be useful for+troubleshooting or for making your journal more readable and robust+against data entry errors.+\f[C]-x\f[R] is also implied by using any of+\f[C]-B\f[R],\f[C]-V\f[R],\f[C]-X\f[R],\f[C]--value\f[R].+.PP+Note, \f[C]-x\f[R]/\f[C]--explicit\f[R] will cause postings with a+multi-commodity amount (these can arise when a multi-commodity+transaction has an implicit amount) to be split into multiple+single-commodity postings, keeping the output parseable.+.PP+With \f[C]-B\f[R]/\f[C]--cost\f[R], amounts with transaction prices are+converted to cost using that price.+This can be used for troubleshooting.+.PP+With \f[C]-m\f[R]/\f[C]--match\f[R] and a STR argument, print will show+at most one transaction: the one one whose description is most similar+to STR, and is most recent.+STR should contain at least two characters.+If there is no similar-enough match, no transaction will be shown.+.PP+With \f[C]--new\f[R], hledger prints only transactions it has not seen+on a previous run.+This uses the same deduplication system as the \f[C]import\f[R] command.+(See import\[aq]s docs for details.)+.PP+This command also supports the output destination and output format+options The output formats supported are \f[C]txt\f[R], \f[C]csv\f[R],+and (experimental) \f[C]json\f[R] and \f[C]sql\f[R].+.PP+Here\[aq]s an example of print\[aq]s CSV output:+.IP+.nf+\f[C]+$ hledger print -Ocsv+\[dq]txnidx\[dq],\[dq]date\[dq],\[dq]date2\[dq],\[dq]status\[dq],\[dq]code\[dq],\[dq]description\[dq],\[dq]comment\[dq],\[dq]account\[dq],\[dq]amount\[dq],\[dq]commodity\[dq],\[dq]credit\[dq],\[dq]debit\[dq],\[dq]posting-status\[dq],\[dq]posting-comment\[dq]+\[dq]1\[dq],\[dq]2008/01/01\[dq],\[dq]\[dq],\[dq]\[dq],\[dq]\[dq],\[dq]income\[dq],\[dq]\[dq],\[dq]assets:bank:checking\[dq],\[dq]1\[dq],\[dq]$\[dq],\[dq]\[dq],\[dq]1\[dq],\[dq]\[dq],\[dq]\[dq]+\[dq]1\[dq],\[dq]2008/01/01\[dq],\[dq]\[dq],\[dq]\[dq],\[dq]\[dq],\[dq]income\[dq],\[dq]\[dq],\[dq]income:salary\[dq],\[dq]-1\[dq],\[dq]$\[dq],\[dq]1\[dq],\[dq]\[dq],\[dq]\[dq],\[dq]\[dq]+\[dq]2\[dq],\[dq]2008/06/01\[dq],\[dq]\[dq],\[dq]\[dq],\[dq]\[dq],\[dq]gift\[dq],\[dq]\[dq],\[dq]assets:bank:checking\[dq],\[dq]1\[dq],\[dq]$\[dq],\[dq]\[dq],\[dq]1\[dq],\[dq]\[dq],\[dq]\[dq]+\[dq]2\[dq],\[dq]2008/06/01\[dq],\[dq]\[dq],\[dq]\[dq],\[dq]\[dq],\[dq]gift\[dq],\[dq]\[dq],\[dq]income:gifts\[dq],\[dq]-1\[dq],\[dq]$\[dq],\[dq]1\[dq],\[dq]\[dq],\[dq]\[dq],\[dq]\[dq]+\[dq]3\[dq],\[dq]2008/06/02\[dq],\[dq]\[dq],\[dq]\[dq],\[dq]\[dq],\[dq]save\[dq],\[dq]\[dq],\[dq]assets:bank:saving\[dq],\[dq]1\[dq],\[dq]$\[dq],\[dq]\[dq],\[dq]1\[dq],\[dq]\[dq],\[dq]\[dq]+\[dq]3\[dq],\[dq]2008/06/02\[dq],\[dq]\[dq],\[dq]\[dq],\[dq]\[dq],\[dq]save\[dq],\[dq]\[dq],\[dq]assets:bank:checking\[dq],\[dq]-1\[dq],\[dq]$\[dq],\[dq]1\[dq],\[dq]\[dq],\[dq]\[dq],\[dq]\[dq]+\[dq]4\[dq],\[dq]2008/06/03\[dq],\[dq]\[dq],\[dq]*\[dq],\[dq]\[dq],\[dq]eat & shop\[dq],\[dq]\[dq],\[dq]expenses:food\[dq],\[dq]1\[dq],\[dq]$\[dq],\[dq]\[dq],\[dq]1\[dq],\[dq]\[dq],\[dq]\[dq]+\[dq]4\[dq],\[dq]2008/06/03\[dq],\[dq]\[dq],\[dq]*\[dq],\[dq]\[dq],\[dq]eat & shop\[dq],\[dq]\[dq],\[dq]expenses:supplies\[dq],\[dq]1\[dq],\[dq]$\[dq],\[dq]\[dq],\[dq]1\[dq],\[dq]\[dq],\[dq]\[dq]+\[dq]4\[dq],\[dq]2008/06/03\[dq],\[dq]\[dq],\[dq]*\[dq],\[dq]\[dq],\[dq]eat & shop\[dq],\[dq]\[dq],\[dq]assets:cash\[dq],\[dq]-2\[dq],\[dq]$\[dq],\[dq]2\[dq],\[dq]\[dq],\[dq]\[dq],\[dq]\[dq]+\[dq]5\[dq],\[dq]2008/12/31\[dq],\[dq]\[dq],\[dq]*\[dq],\[dq]\[dq],\[dq]pay off\[dq],\[dq]\[dq],\[dq]liabilities:debts\[dq],\[dq]1\[dq],\[dq]$\[dq],\[dq]\[dq],\[dq]1\[dq],\[dq]\[dq],\[dq]\[dq]+\[dq]5\[dq],\[dq]2008/12/31\[dq],\[dq]\[dq],\[dq]*\[dq],\[dq]\[dq],\[dq]pay off\[dq],\[dq]\[dq],\[dq]assets:bank:checking\[dq],\[dq]-1\[dq],\[dq]$\[dq],\[dq]1\[dq],\[dq]\[dq],\[dq]\[dq],\[dq]\[dq]+\f[R]+.fi+.IP \[bu] 2+There is one CSV record per posting, with the parent transaction\[aq]s+fields repeated.+.IP \[bu] 2+The \[dq]txnidx\[dq] (transaction index) field shows which postings+belong to the same transaction.+(This number might change if transactions are reordered within the file,+files are parsed/included in a different order, etc.)+.IP \[bu] 2+The amount is separated into \[dq]commodity\[dq] (the symbol) and+\[dq]amount\[dq] (numeric quantity) fields.+.IP \[bu] 2+The numeric amount is repeated in either the \[dq]credit\[dq] or+\[dq]debit\[dq] column, for convenience.+(Those names are not accurate in the accounting sense; it just puts+negative amounts under credit and zero or greater amounts under debit.)+.SS print-unique+.PP+print-unique+.PD 0+.P+.PD+Print transactions which do not reuse an already-seen description.+.PP+Example:+.IP+.nf+\f[C]+$ cat unique.journal+1/1 test+ (acct:one) 1+2/2 test+ (acct:two) 2+$ LEDGER_FILE=unique.journal hledger print-unique+(-f option not supported)+2015/01/01 test+ (acct:one) 1+\f[R]+.fi+.SS register+.PP+register, reg+.PD 0+.P+.PD+Show postings and their running total.+.PP+The register command displays matched postings, across all accounts, in+date order, with their running total or running historical balance.+(See also the \f[C]aregister\f[R] command, which shows matched+transactions in a specific account.)+.PP+register normally shows line per posting, but note that multi-commodity+amounts will occupy multiple lines (one line per commodity).+.PP+It is typically used with a query selecting a particular account, to see+that account\[aq]s activity:+.IP+.nf+\f[C]+$ hledger register checking+2008/01/01 income assets:bank:checking $1 $1+2008/06/01 gift assets:bank:checking $1 $2+2008/06/02 save assets:bank:checking $-1 $1+2008/12/31 pay off assets:bank:checking $-1 0+\f[R]+.fi+.PP+With --date2, it shows and sorts by secondary date instead.+.PP+The \f[C]--historical\f[R]/\f[C]-H\f[R] flag adds the balance from any+undisplayed prior postings to the running total.+This is useful when you want to see only recent activity, with a+historically accurate running balance:+.IP+.nf+\f[C]+$ hledger register checking -b 2008/6 --historical+2008/06/01 gift assets:bank:checking $1 $2+2008/06/02 save assets:bank:checking $-1 $1+2008/12/31 pay off assets:bank:checking $-1 0+\f[R]+.fi+.PP+The \f[C]--depth\f[R] option limits the amount of sub-account detail+displayed.+.PP+The \f[C]--average\f[R]/\f[C]-A\f[R] flag shows the running average+posting amount instead of the running total (so, the final number+displayed is the average for the whole report period).+This flag implies \f[C]--empty\f[R] (see below).+It is affected by \f[C]--historical\f[R].+It works best when showing just one account and one commodity.+.PP+The \f[C]--related\f[R]/\f[C]-r\f[R] flag shows the \f[I]other\f[R]+postings in the transactions of the postings which would normally be+shown.+.PP+The \f[C]--invert\f[R] flag negates all amounts.+For example, it can be used on an income account where amounts are+normally displayed as negative numbers.+It\[aq]s also useful to show postings on the checking account together+with the related account:+.IP+.nf+\f[C]+$ hledger register --related --invert assets:checking+\f[R]+.fi+.PP+With a reporting interval, register shows summary postings, one per+interval, aggregating the postings to each account:+.IP+.nf+\f[C]+$ hledger register --monthly income+2008/01 income:salary $-1 $-1+2008/06 income:gifts $-1 $-2+\f[R]+.fi+.PP+Periods with no activity, and summary postings with a zero amount, are+not shown by default; use the \f[C]--empty\f[R]/\f[C]-E\f[R] flag to see+them:+.IP+.nf+\f[C]+$ hledger register --monthly income -E+2008/01 income:salary $-1 $-1+2008/02 0 $-1+2008/03 0 $-1+2008/04 0 $-1+2008/05 0 $-1+2008/06 income:gifts $-1 $-2+2008/07 0 $-2+2008/08 0 $-2+2008/09 0 $-2+2008/10 0 $-2+2008/11 0 $-2+2008/12 0 $-2+\f[R]+.fi+.PP+Often, you\[aq]ll want to see just one line per interval.+The \f[C]--depth\f[R] option helps with this, causing subaccounts to be+aggregated:+.IP+.nf+\f[C]+$ hledger register --monthly assets --depth 1h+2008/01 assets $1 $1+2008/06 assets $-1 0+2008/12 assets $-1 $-1+\f[R]+.fi+.PP+Note when using report intervals, if you specify start/end dates these+will be adjusted outward if necessary to contain a whole number of+intervals.+This ensures that the first and last intervals are full length and+comparable to the others in the report.+.SS Custom register output+.PP+register uses the full terminal width by default, except on windows.+You can override this by setting the \f[C]COLUMNS\f[R] environment+variable (not a bash shell variable) or by using the+\f[C]--width\f[R]/\f[C]-w\f[R] option.+.PP+The description and account columns normally share the space equally+(about half of (width - 40) each).+You can adjust this by adding a description width as part of+--width\[aq]s argument, comma-separated: \f[C]--width W,D\f[R] .+Here\[aq]s a diagram (won\[aq]t display correctly in --help):+.IP+.nf+\f[C]+<--------------------------------- width (W) ---------------------------------->+date (10) description (D) account (W-41-D) amount (12) balance (12)+DDDDDDDDDD dddddddddddddddddddd aaaaaaaaaaaaaaaaaaa AAAAAAAAAAAA AAAAAAAAAAAA+\f[R]+.fi+.PP+and some examples:+.IP+.nf+\f[C]+$ hledger reg # use terminal width (or 80 on windows)+$ hledger reg -w 100 # use width 100+$ COLUMNS=100 hledger reg # set with one-time environment variable+$ export COLUMNS=100; hledger reg # set till session end (or window resize)+$ hledger reg -w 100,40 # set overall width 100, description width 40+$ hledger reg -w $COLUMNS,40 # use terminal width, & description width 40+\f[R]+.fi+.PP+This command also supports the output destination and output format+options The output formats supported are \f[C]txt\f[R], \f[C]csv\f[R],+and (experimental) \f[C]json\f[R].+.SS register-match+.PP+register-match+.PD 0+.P+.PD+Print the one posting whose transaction description is closest to DESC,+in the style of the register command.+If there are multiple equally good matches, it shows the most recent.+Query options (options, not arguments) can be used to restrict the+search space.+Helps ledger-autosync detect already-seen transactions when importing.+.SS rewrite+.PP+rewrite+.PD 0+.P+.PD+Print all transactions, rewriting the postings of matched transactions.+For now the only rewrite available is adding new postings, like print+--auto.+.PP+This is a start at a generic rewriter of transaction entries.+It reads the default journal and prints the transactions, like print,+but adds one or more specified postings to any transactions matching+QUERY.+The posting amounts can be fixed, or a multiplier of the existing+transaction\[aq]s first posting amount.+.PP+Examples:+.IP+.nf+\f[C]+$ hledger-rewrite.hs \[ha]income --add-posting \[aq](liabilities:tax) *.33 ; income tax\[aq] --add-posting \[aq](reserve:gifts) $100\[aq]+$ hledger-rewrite.hs expenses:gifts --add-posting \[aq](reserve:gifts) *-1\[dq]\[aq]+$ hledger-rewrite.hs -f rewrites.hledger+\f[R]+.fi+.PP+rewrites.hledger may consist of entries like:+.IP+.nf+\f[C]+= \[ha]income amt:<0 date:2017+ (liabilities:tax) *0.33 ; tax on income+ (reserve:grocery) *0.25 ; reserve 25% for grocery+ (reserve:) *0.25 ; reserve 25% for grocery+\f[R]+.fi+.PP+Note the single quotes to protect the dollar sign from bash, and the two+spaces between account and amount.+.PP+More:+.IP+.nf+\f[C]+$ hledger rewrite -- [QUERY] --add-posting \[dq]ACCT AMTEXPR\[dq] ...+$ hledger rewrite -- \[ha]income --add-posting \[aq](liabilities:tax) *.33\[aq]+$ hledger rewrite -- expenses:gifts --add-posting \[aq](budget:gifts) *-1\[dq]\[aq]+$ hledger rewrite -- \[ha]income --add-posting \[aq](budget:foreign currency) *0.25 JPY; diversify\[aq]+\f[R]+.fi+.PP+Argument for \f[C]--add-posting\f[R] option is a usual posting of+transaction with an exception for amount specification.+More precisely, you can use \f[C]\[aq]*\[aq]\f[R] (star symbol) before+the amount to indicate that that this is a factor for an amount of+original matched posting.+If the amount includes a commodity name, the new posting amount will be+in the new commodity; otherwise, it will be in the matched posting+amount\[aq]s commodity.+.SS Re-write rules in a file+.PP+During the run this tool will execute so called \[dq]Automated+Transactions\[dq] found in any journal it process.+I.e instead of specifying this operations in command line you can put+them in a journal file.+.IP+.nf+\f[C]+$ rewrite-rules.journal+\f[R]+.fi+.PP+Make contents look like this:+.IP+.nf+\f[C]+= \[ha]income+ (liabilities:tax) *.33++= expenses:gifts+ budget:gifts *-1+ assets:budget *1+\f[R]+.fi+.PP+Note that \f[C]\[aq]=\[aq]\f[R] (equality symbol) that is used instead+of date in transactions you usually write.+It indicates the query by which you want to match the posting to add new+ones.+.IP+.nf+\f[C]+$ hledger rewrite -- -f input.journal -f rewrite-rules.journal > rewritten-tidy-output.journal+\f[R]+.fi+.PP+This is something similar to the commands pipeline:+.IP+.nf+\f[C]+$ hledger rewrite -- -f input.journal \[aq]\[ha]income\[aq] --add-posting \[aq](liabilities:tax) *.33\[aq] \[rs]+ | hledger rewrite -- -f - expenses:gifts --add-posting \[aq]budget:gifts *-1\[aq] \[rs]+ --add-posting \[aq]assets:budget *1\[aq] \[rs]+ > rewritten-tidy-output.journal+\f[R]+.fi+.PP+It is important to understand that relative order of such entries in+journal is important.+You can re-use result of previously added postings.+.SS Diff output format+.PP+To use this tool for batch modification of your journal files you may+find useful output in form of unified diff.+.IP+.nf+\f[C]+$ hledger rewrite -- --diff -f examples/sample.journal \[aq]\[ha]income\[aq] --add-posting \[aq](liabilities:tax) *.33\[aq]+\f[R]+.fi+.PP+Output might look like:+.IP+.nf+\f[C]+--- /tmp/examples/sample.journal++++ /tmp/examples/sample.journal+\[at]\[at] -18,3 +18,4 \[at]\[at]+ 2008/01/01 income+- assets:bank:checking $1++ assets:bank:checking $1+ income:salary++ (liabilities:tax) 0+\[at]\[at] -22,3 +23,4 \[at]\[at]+ 2008/06/01 gift+- assets:bank:checking $1++ assets:bank:checking $1+ income:gifts++ (liabilities:tax) 0+\f[R]+.fi+.PP+If you\[aq]ll pass this through \f[C]patch\f[R] tool you\[aq]ll get+transactions containing the posting that matches your query be updated.+Note that multiple files might be update according to list of input+files specified via \f[C]--file\f[R] options and \f[C]include\f[R]+directives inside of these files.+.PP+Be careful.+Whole transaction being re-formatted in a style of output from+\f[C]hledger print\f[R].+.PP+See also:+.PP+https://github.com/simonmichael/hledger/issues/99+.SS rewrite vs. print --auto+.PP+This command predates print --auto, and currently does much the same+thing, but with these differences:+.IP \[bu] 2+with multiple files, rewrite lets rules in any file affect all other+files.+print --auto uses standard directive scoping; rules affect only child+files.+.IP \[bu] 2+rewrite\[aq]s query limits which transactions can be rewritten; all are+printed.+print --auto\[aq]s query limits which transactions are printed.+.IP \[bu] 2+rewrite applies rules specified on command line or in the journal.+print --auto applies rules specified in the journal.+.SS roi+.PP+roi+.PD 0+.P+.PD+Shows the time-weighted (TWR) and money-weighted (IRR) rate of return on+your investments.+.PP+At a minimum, you need to supply a query (which could be just an account+name) to select your investment(s) with \f[C]--inv\f[R], and another+query to identify your profit and loss transactions with+\f[C]--pnl\f[R].+.PP+If you do not record changes in the value of your investment manually,+or do not require computation of time-weighted return (TWR),+\f[C]--pnl\f[R] could be an empty query (\f[C]--pnl \[dq]\[dq]\f[R] or+\f[C]--pnl STR\f[R] where \f[C]STR\f[R] does not match any of your+accounts).+.PP+This command will compute and display the internalized rate of return+(IRR) and time-weighted rate of return (TWR) for your investments for+the time period requested.+Both rates of return are annualized before display, regardless of the+length of reporting interval.+.PP+Price directives will be taken into account if you supply appropriate+\f[C]--cost\f[R] or \f[C]--value\f[R] flags (see VALUATION).+.PP+Note, in some cases this report can fail, for these reasons:+.IP \[bu] 2+Error (NotBracketed): No solution for Internal Rate of Return (IRR).+Possible causes: IRR is huge (>1000000%), balance of investment becomes+negative at some point in time.+.IP \[bu] 2+Error (SearchFailed): Failed to find solution for Internal Rate of+Return (IRR).+Either search does not converge to a solution, or converges too slowly.+.PP+Examples:+.IP \[bu] 2+Using roi to compute total return of investment in stocks:+https://github.com/simonmichael/hledger/blob/master/examples/roi-unrealised.ledger+.IP \[bu] 2+Cookbook -> Return on Investment+.SS Semantics of \f[C]--inv\f[R] and \f[C]--pnl\f[R]+.PP+Query supplied to \f[C]--inv\f[R] has to match all transactions that are+related to your investment.+Transactions not matching \f[C]--inv\f[R] will be ignored.+.PP+In these transactions, ROI will conside postings that match+\f[C]--inv\f[R] to be \[dq]investment postings\[dq] and other postings+(not matching \f[C]--inv\f[R]) will be sorted into two categories:+\[dq]cash flow\[dq] and \[dq]profit and loss\[dq], as ROI needs to know+which part of the investment value is your contributions and which is+due to the return on investment.+.IP \[bu] 2+\[dq]Cash flow\[dq] is depositing or withdrawing money, buying or+selling assets, or otherwise converting between your investment+commodity and any other commodity.+Example:+.RS 2+.IP+.nf+\f[C]+2019-01-01 Investing in Snake Oil+ assets:cash -$100+ investment:snake oil++2020-01-01 Selling my Snake Oil+ assets:cash $10+ investment:snake oil = 0+\f[R]+.fi+.RE+.IP \[bu] 2+\[dq]Profit and loss\[dq] is change in the value of your investment:+.RS 2+.IP+.nf+\f[C]+2019-06-01 Snake Oil falls in value+ investment:snake oil = $57+ equity:unrealized profit or loss+\f[R]+.fi+.RE+.PP+All non-investment postings are assumed to be \[dq]cash flow\[dq],+unless they match \f[C]--pnl\f[R] query.+Changes in value of your investment due to \[dq]profit and loss\[dq]+postings will be considered as part of your investment return.+.PP+Example: if you use \f[C]--inv snake --pnl equity:unrealized\f[R], then+postings in the example below would be classifed as:+.IP+.nf+\f[C]+2019-01-01 Snake Oil #1+ assets:cash -$100 ; cash flow posting+ investment:snake oil ; investment posting++2019-03-01 Snake Oil #2+ equity:unrealized pnl -$100 ; profit and loss posting+ snake oil ; investment posting++2019-07-01 Snake Oil #3+ equity:unrealized pnl ; profit and loss posting+ cash -$100 ; cash flow posting+ snake oil $50 ; investment posting+\f[R]+.fi+.SS IRR and TWR explained+.PP+\[dq]ROI\[dq] stands for \[dq]return on investment\[dq].+Traditionally this was computed as a difference between current value of+investment and its initial value, expressed in percentage of the initial+value.+.PP+However, this approach is only practical in simple cases, where+investments receives no in-flows or out-flows of money, and where rate+of growth is fixed over time.+For more complex scenarios you need different ways to compute rate of+return, and this command implements two of them: IRR and TWR.+.PP+Internal rate of return, or \[dq]IRR\[dq] (also called+\[dq]money-weighted rate of return\[dq]) takes into account effects of+in-flows and out-flows.+Naively, if you are withdrawing from your investment, your future gains+would be smaller (in absolute numbers), and will be a smaller percentage+of your initial investment, and if you are adding to your investment,+you will receive bigger absolute gains (but probably at the same rate of+return).+IRR is a way to compute rate of return for each period between in-flow+or out-flow of money, and then combine them in a way that gives you a+compound annual rate of return that investment is expected to generate.+.PP+As mentioned before, in-flows and out-flows would be any cash that you+personally put in or withdraw, and for the \[dq]roi\[dq] command, these+are the postings that match the query in the\f[C]--inv\f[R] argument and+NOT match the query in the\f[C]--pnl\f[R] argument.+.PP+If you manually record changes in the value of your investment as+transactions that balance them against \[dq]profit and loss\[dq] (or+\[dq]unrealized gains\[dq]) account or use price directives, then in+order for IRR to compute the precise effect of your in-flows and+out-flows on the rate of return, you will need to record the value of+your investement on or close to the days when in- or out-flows occur.+.PP+In technical terms, IRR uses the same approach as computation of net+present value, and tries to find a discount rate that makes net present+value of all the cash flows of your investment to add up to zero.+This could be hard to wrap your head around, especially if you+haven\[aq]t done discounted cash flow analysis before.+Implementation of IRR in hledger should produce results that match the+\f[C]XIRR\f[R] formula in Excel.+.PP+Second way to compute rate of return that \f[C]roi\f[R] command+implements is called \[dq]time-weighted rate of return\[dq] or+\[dq]TWR\[dq].+Like IRR, it will also break the history of your investment into periods+between in-flows, out-flows and value changes, to compute rate of return+per each period and then a compound rate of return.+However, internal workings of TWR are quite different.+.PP+TWR represents your investment as an imaginary \[dq]unit fund\[dq] where+in-flows/ out-flows lead to buying or selling \[dq]units\[dq] of your+investment and changes in its value change the value of \[dq]investment+unit\[dq].+Change in \[dq]unit price\[dq] over the reporting period gives you rate+of return of your investment.+.PP+References: * Explanation of rate of return * Explanation of IRR *+Explanation of TWR * Examples of computing IRR and TWR and discussion of+the limitations of both metrics+.SS stats+.PP+stats+.PD 0+.P+.PD+Show some journal statistics.+.PP+The stats command displays summary information for the whole journal, or+a matched part of it.+With a reporting interval, it shows a report for each report period.+.PP+Example:+.IP+.nf+\f[C]+$ hledger stats+Main journal file : /src/hledger/examples/sample.journal+Included journal files : +Transactions span : 2008-01-01 to 2009-01-01 (366 days)+Last transaction : 2008-12-31 (2333 days ago)+Transactions : 5 (0.0 per day)+Transactions last 30 days: 0 (0.0 per day)+Transactions last 7 days : 0 (0.0 per day)+Payees/descriptions : 5+Accounts : 8 (depth 3)+Commodities : 1 ($)+Market prices : 12 ($)+\f[R]+.fi+.PP+This command also supports output destination and output format+selection.+.SS tags+.PP+tags+.PD 0+.P+.PD+List the unique tag names used in the journal.+With a TAGREGEX argument, only tag names matching the regular expression+(case insensitive) are shown.+With QUERY arguments, only transactions matching the query are+considered.+.PP+With the --values flag, the tags\[aq] unique values are listed instead.+.PP+With --parsed flag, all tags or values are shown in the order they are+parsed from the input data, including duplicates.+.PP+With -E/--empty, any blank/empty values will also be shown, otherwise+they are omitted.+.SS test+.PP+test+.PD 0+.P+.PD+Run built-in unit tests.+.PP+This command runs the unit tests built in to hledger and hledger-lib,+printing the results on stdout.+If any test fails, the exit code will be non-zero.+.PP+This is mainly used by hledger developers, but you can also use it to+sanity-check the installed hledger executable on your platform.+All tests are expected to pass - if you ever see a failure, please+report as a bug!+.PP+This command also accepts tasty test runner options, written after a --+(double hyphen).+Eg to run only the tests in Hledger.Data.Amount, with ANSI colour codes+disabled:+.IP+.nf+\f[C]+$ hledger test -- -pData.Amount --color=never+\f[R]+.fi+.PP+For help on these, see https://github.com/feuerbach/tasty#options+(\f[C]-- --help\f[R] currently doesn\[aq]t show them).+.SS About add-on commands+.PP+Add-on commands are programs or scripts in your PATH+.IP \[bu] 2+whose name starts with \f[C]hledger-\f[R]+.IP \[bu] 2+whose name ends with a recognised file extension:+\f[C].bat\f[R],\f[C].com\f[R],\f[C].exe\f[R],+\f[C].hs\f[R],\f[C].lhs\f[R],\f[C].pl\f[R],\f[C].py\f[R],\f[C].rb\f[R],\f[C].rkt\f[R],\f[C].sh\f[R]+or none+.IP \[bu] 2+and (on unix, mac) which are executable by the current user.+.PP+Add-ons are a relatively easy way to add local features or experiment+with new ideas.+They can be written in any language, but haskell scripts have a big+advantage: they can use the same hledger library functions that built-in+commands use for command-line options, parsing and reporting.+Some experimental/example add-on scripts can be found in the hledger+repo\[aq]s bin/ directory.+.PP+Note in a hledger command line, add-on command flags must have a double+dash (\f[C]--\f[R]) preceding them.+Eg you must write:+.IP+.nf+\f[C]+$ hledger web -- --serve+\f[R]+.fi+.PP+and not:+.IP+.nf+\f[C]+$ hledger web --serve+\f[R]+.fi+.PP+(because the \f[C]--serve\f[R] flag belongs to \f[C]hledger-web\f[R],+not \f[C]hledger\f[R]).+.PP+The \f[C]-h/--help\f[R] and \f[C]--version\f[R] flags don\[aq]t require+\f[C]--\f[R].+.PP+If you have any trouble with this, remember you can always run the+add-on program directly, eg:+.IP+.nf+\f[C]+$ hledger-web --serve+\f[R]+.fi+.SH JOURNAL FORMAT+.PP+hledger\[aq]s default file format, representing a General Journal.+.PP+hledger\[aq]s usual data source is a plain text file containing journal+entries in hledger journal format.+This file represents a standard accounting general journal.+I use file names ending in \f[C].journal\f[R], but that\[aq]s not+required.+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+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.+.PP+You can use hledger without learning any more about this file; just use+the add or web or import commands to create and update it.+.PP+Many users, though, edit the journal file with a text editor, and track+changes with a version control system such as git.+Editor addons such as ledger-mode or hledger-mode for Emacs, vim-ledger+for Vim, and hledger-vscode for Visual Studio Code, make this easier,+adding colour, formatting, tab completion, and useful commands.+See Editor configuration at hledger.org for the full list.+.PP+Here\[aq]s a description of each part of the file format (and+hledger\[aq]s data model).+These are mostly in the order you\[aq]ll use them, but in some cases+related concepts have been grouped together for easy reference, or+linked before they are introduced, so feel free to skip over anything+that looks unnecessary right now.+.SS Transactions+.PP+Transactions are the main unit of information in a journal file.+They represent events, typically a movement of some quantity of+commodities between two or more named accounts.+.PP+Each transaction is recorded as a journal entry, beginning with a simple+date in column 0.+This can be followed by any of the following optional fields, separated+by spaces:+.IP \[bu] 2+a status character (empty, \f[C]!\f[R], or \f[C]*\f[R])+.IP \[bu] 2+a code (any short number or text, enclosed in parentheses)+.IP \[bu] 2+a description (any remaining text until end of line or a semicolon)+.IP \[bu] 2+a comment (any remaining text following a semicolon until end of line,+and any following indented lines beginning with a semicolon)+.IP \[bu] 2+0 or more indented \f[I]posting\f[R] lines, describing what was+transferred and the accounts involved (indented comment lines are also+allowed, but not blank lines or non-indented lines).+.PP+Here\[aq]s a simple journal file containing one transaction:+.IP+.nf+\f[C]+2008/01/01 income+ assets:bank:checking $1+ income:salary $-1+\f[R]+.fi+.SS Dates+.SS Simple dates+.PP+Dates in the journal file use \f[I]simple dates\f[R] format:+\f[C]YYYY-MM-DD\f[R] or \f[C]YYYY/MM/DD\f[R] or \f[C]YYYY.MM.DD\f[R],+with leading zeros optional.+The year may be omitted, in which case it will be inferred from the+context: the current transaction, the default year set with a default+year directive, or the current date when the command is run.+Some examples: \f[C]2010-01-31\f[R], \f[C]2010/01/31\f[R],+\f[C]2010.1.31\f[R], \f[C]1/31\f[R].+.PP+(The UI also accepts simple dates, as well as the more flexible smart+dates documented in the hledger manual.)+.SS Secondary dates+.PP+Real-life transactions sometimes involve more than one date - eg the+date you write a cheque, and the date it clears in your bank.+When you want to model this, for more accurate daily balances, you can+specify individual posting dates.+.PP+Or, you can use the older \f[I]secondary date\f[R] feature (Ledger calls+it auxiliary date or effective date).+Note: we support this for compatibility, but I usually recommend+avoiding this feature; posting dates are almost always clearer and+simpler.+.PP+A secondary date is written after the primary date, following an equals+sign.+If the year is omitted, the primary date\[aq]s year is assumed.+When running reports, the primary (left) date is used by default, but+with the \f[C]--date2\f[R] flag (or \f[C]--aux-date\f[R] or+\f[C]--effective\f[R]), the secondary (right) date will be used instead.+.PP+The meaning of secondary dates is up to you, but it\[aq]s best to follow+a consistent rule.+Eg \[dq]primary = the bank\[aq]s clearing date, secondary = date the+transaction was initiated, if different\[dq], as shown here:+.IP+.nf+\f[C]+2010/2/23=2/19 movie ticket+ expenses:cinema $10+ assets:checking+\f[R]+.fi+.IP+.nf+\f[C]+$ hledger register checking+2010-02-23 movie ticket assets:checking $-10 $-10+\f[R]+.fi+.IP+.nf+\f[C]+$ hledger register checking --date2+2010-02-19 movie ticket assets:checking $-10 $-10+\f[R]+.fi+.SS Posting dates+.PP+You can give individual postings a different date from their parent+transaction, by adding a posting comment containing a tag (see below)+like \f[C]date:DATE\f[R].+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+ expenses:food $10 ; food purchased on saturday 5/30+ assets:checking ; bank cleared it on monday, date:6/1+\f[R]+.fi+.IP+.nf+\f[C]+$ hledger -f t.j register food+2015-05-30 expenses:food $10 $10+\f[R]+.fi+.IP+.nf+\f[C]+$ hledger -f t.j register checking+2015-06-01 assets:checking $-10 $-10+\f[R]+.fi+.PP+DATE should be a simple date; if the year is not specified it will use+the year of the transaction\[aq]s date.+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.+.PP+Ledger\[aq]s earlier, more compact bracketed date syntax is also+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.+With this syntax, DATE infers its year from the transaction and DATE2+infers its year from DATE.+.SS Status+.PP+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:+.PP+.TS+tab(@);+l l.+T{+mark \ +T}@T{+status+T}+_+T{+\ +T}@T{+unmarked+T}+T{+\f[C]!\f[R]+T}@T{+pending+T}+T{+\f[C]*\f[R]+T}@T{+cleared+T}+.TE+.PP+When reporting, you can filter by status with the+\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.+.PP+Note, in Ledger and in older versions of hledger, the \[dq]unmarked\[dq]+state is called \[dq]uncleared\[dq].+As of hledger 1.3 we have renamed it to unmarked for clarity.+.PP+To replicate Ledger and old hledger\[aq]s behaviour of also matching+pending, combine -U and -P.+.PP+Status marks are optional, but can be helpful eg for reconciling with+real-world accounts.+Some editor modes provide highlighting and shortcuts for working with+status.+Eg in Emacs ledger-mode, you can toggle transaction status with C-c C-e,+or posting status with C-c C-c.+.PP+What \[dq]uncleared\[dq], \[dq]pending\[dq], and \[dq]cleared\[dq]+actually mean is up to you.+Here\[aq]s one suggestion:+.PP+.TS+tab(@);+lw(9.7n) lw(60.3n).+T{+status+T}@T{+meaning+T}+_+T{+uncleared+T}@T{+recorded but not yet reconciled; needs review+T}+T{+pending+T}@T{+tentatively reconciled (if needed, eg during a big reconciliation)+T}+T{+cleared+T}@T{+complete, reconciled as far as possible, and considered correct+T}+.TE+.PP+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+bank soon (like uncashed checks), and no flags to see the most+up-to-date state of your finances.+.SS Description+.PP+A transaction\[aq]s description is the rest of the line following the+date and status mark (or until a comment begins).+Sometimes called the \[dq]narration\[dq] in traditional bookkeeping, it+can be used for whatever you wish, or left blank.+Transaction descriptions can be queried, unlike comments.+.SS Payee and note+.PP+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]).+This may be worthwhile if you need to do more precise querying and+pivoting by payee or by note.+.SS Comments+.PP+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.)+.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.+Transaction and posting comments must begin with a semicolon+(\f[C];\f[R]).+.PP+Some examples:+.IP+.nf+\f[C]+# a file comment+; another file comment+* also a file comment, useful in org/orgstruct mode++comment+A multiline file comment, which continues+until a line containing just \[dq]end comment\[dq]+(or end of file).+end comment++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]+.fi+.PP+You can also comment larger regions of a file using \f[C]comment\f[R]+and \f[C]end comment\f[R] directives.+.SS Tags+.PP+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]+2017/1/16 bought groceries ; sometag:+\f[R]+.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]+ expenses:food $10 ; a-posting-tag: the tag value+\f[R]+.fi+.PP+Note this means hledger\[aq]s tag values can not contain commas or+newlines.+Ending at commas means you can write multiple short tags on one line,+comma separated:+.IP+.nf+\f[C]+ assets:checking ; a comment containing tag1:, tag2: some value ...+\f[R]+.fi+.PP+Here,+.IP \[bu] 2+\[dq]\f[C]a comment containing\f[R]\[dq] is just comment text, not a tag+.IP \[bu] 2+\[dq]\f[C]tag1\f[R]\[dq] is a tag with no value+.IP \[bu] 2+\[dq]\f[C]tag2\f[R]\[dq] is another tag, whose value is+\[dq]\f[C]some value ...\f[R]\[dq]+.PP+Tags in a transaction comment affect the transaction and all of its+postings, while tags in a posting comment affect only that posting.+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]):+.IP+.nf+\f[C]+1/1 a transaction ; A:, TAG2:+ ; third-tag: a third transaction tag, <- with a value+ (a) $1 ; posting-tag:+\f[R]+.fi+.PP+Tags are like Ledger\[aq]s metadata feature, except hledger\[aq]s tag+values are simple strings.+.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:+.IP \[bu] 2+(optional) a status character (empty, \f[C]!\f[R], or \f[C]*\f[R]),+followed by a space+.IP \[bu] 2+(required) an account name (any text, optionally containing \f[B]single+spaces\f[R], until end of line or a double space)+.IP \[bu] 2+(optional) \f[B]two or more spaces\f[R] or tabs followed by an amount.+.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+Be sure to note the unusual two-space delimiter between account name and+amount.+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.+.SS Virtual postings+.PP+A posting with a parenthesised account name is called a \f[I]virtual+posting\f[R] or \f[I]unbalanced posting\f[R], which means it is exempt+from the usual rule that a transaction\[aq]s postings must balance add+up to zero.+.PP+This is not part of double entry accounting, so you might choose to+avoid this feature.+Or you can use it sparingly for certain special cases where it can be+convenient.+Eg, you could set opening balances without using a balancing equity+account:+.IP+.nf+\f[C]+1/1 opening balances+ (assets:checking) $1000+ (assets:savings) $2000+\f[R]+.fi+.PP+A posting with a bracketed account name is called a \f[I]balanced+virtual posting\f[R].+The balanced virtual postings in a transaction must add up to zero+(separately from other postings).+Eg:+.IP+.nf+\f[C]+1/1 buy food with cash, update budget envelope subaccounts, & something else+ assets:cash $-10 ; <- these balance+ expenses:food $7 ; <-+ expenses:food $3 ; <-+ [assets:checking:budget:food] $-10 ; <- and these balance+ [assets:checking:available] $10 ; <-+ (something:else) $5 ; <- not required to balance+\f[R]+.fi+.PP+Ordinary non-parenthesised, non-bracketed postings are called \f[I]real+postings\f[R].+You can exclude virtual postings from reports with the+\f[C]-R/--real\f[R] flag or \f[C]real:1\f[R] query.+.SS Account names+.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+five top-level accounts: \f[C]assets\f[R], \f[C]liabilities\f[R],+\f[C]revenue\f[R], \f[C]expenses\f[R], and \f[C]equity\f[R].+.PP+Account names may contain single spaces, eg:+\f[C]assets:accounts receivable\f[R].+Because of this, they must always be followed by \f[B]two or more+spaces\f[R] (or newline).+.PP+Account names can be aliased.+.SS Amounts+.PP+After the account name, there is usually an amount.+(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 preceded by a minus sign (or a plus sign, though plus is+the default), The sign can be written before or after a left-side+commodity symbol:+.IP+.nf+\f[C]+-$1+$-1+\f[R]+.fi+.PP+One or more spaces between the sign and the number are acceptable when+parsing (but they won\[aq]t be displayed in output):+.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+.SS Decimal marks, digit group marks+.PP+A decimal mark can be written as a period or a comma:+.IP+.nf+\f[C]+1.23+1,23456780000009+\f[R]+.fi+.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 digit group mark and no decimal mark+is ambiguous.+Are these digit group marks or decimal marks ?+.IP+.nf+\f[C]+1,000+1.000+\f[R]+.fi+.PP+If you don\[aq]t tell it otherwise, hledger will assume both of the+above are decimal marks, parsing both numbers as 1.+To prevent confusion and undetected typos, especially if your data+contains digit group marks, we recommend you explicitly declare the+decimal mark (and optionally a digit group mark), for each commodity,+using \f[C]commodity\f[R] directives (described below):+.IP+.nf+\f[C]+# number formats for $, EUR, INR and the no-symbol commodity:+commodity $1,000.00+commodity EUR 1.000,00+commodity INR 9,99,99,999.00+commodity 1 000 000.9455+\f[R]+.fi+.PP+Note, \f[C]commodity\f[R] directives declare both the number format for+parsing input, and the display style for showing output.+For the former, they are position-sensitive, affecting only following+amounts, so commodity directives should be at the top of your journal+file.+This is discussed more on #793.+.PP+.SS Commodity display style+.PP+For the amounts in each commodity, hledger chooses a consistent display+style to use in most reports.+(Except for price amounts, which are always displayed as written).+The display style is inferred as follows.+.PP+First, if a default commodity is declared with \f[C]D\f[R], this+commodity and its style is applied to any no-symbol amounts in the+journal.+.PP+Then each commodity\[aq]s style is inferred from one of the following,+in order of preference:+.IP \[bu] 2+The commodity directive for that commodity (including the no-symbol+commodity), if any.+.IP \[bu] 2+The amounts in that commodity seen in the journal\[aq]s transactions.+(Posting amounts only; prices and periodic or auto rules are ignored,+currently.)+.IP \[bu] 2+The built-in fallback style, which looks like this: \f[C]$1000.00\f[R].+(Symbol on the left, period decimal mark, two decimal places.)+.PP+A style is inferred from journal amounts as follows:+.IP \[bu] 2+Use the general style (decimal mark, symbol placement) of the first+amount+.IP \[bu] 2+Use the first-seen digit group style (digit group mark, digit group+sizes), if any+.IP \[bu] 2+Use the maximum number of decimal places of all.+.PP+Transaction price amounts don\[aq]t affect the commodity display style+directly, but occasionally they can do so indirectly (eg when a+posting\[aq]s amount is inferred using a transaction price).+If you find this causing problems, use a commodity directive to fix the+display style.+.PP+To summarise: each commodity\[aq]s amounts will be normalised to (a) the+style declared by a \f[C]commodity\f[R] directive, or (b) the style of+the first posting amount in the journal, with the first-seen digit group+style and the maximum-seen number of decimal places.+So if your reports are showing amounts in a way you don\[aq]t like, eg+with too many decimal places, use a commodity directive.+Some examples:+.IP+.nf+\f[C]+# declare euro, dollar, bitcoin and no-symbol commodities and set their +# input number formats and output display styles:+commodity EUR 1.000,+commodity $1000.00+commodity 1000.00000000 BTC+commodity 1 000.+\f[R]+.fi+.SS Rounding+.PP+Amounts are stored internally as decimal numbers with up to 255 decimal+places, and displayed with the number of decimal places specified by the+commodity display style.+Note, hledger uses banker\[aq]s rounding: it rounds to the nearest even+number, eg 0.5 displayed with zero decimal places is \[dq]0\[dq]).+(Guaranteed since hledger 1.17.1; in older versions this could vary if+hledger was built with Decimal < 0.5.1.)+.SS Transaction prices+.PP+Within a transaction, you can note an amount\[aq]s price in another+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.+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.+.PP+There are several ways to record a transaction price:+.IP "1." 3+Write the price per unit, as \f[C]\[at] UNITPRICE\f[R] after the amount:+.RS 4+.IP+.nf+\f[C]+2009/1/1+ assets:euros \[Eu]100 \[at] $1.35 ; one hundred euros purchased at $1.35 each+ assets:dollars ; balancing amount is -$135.00+\f[R]+.fi+.RE+.IP "2." 3+Write the total price, as \f[C]\[at]\[at] TOTALPRICE\f[R] after the+amount:+.RS 4+.IP+.nf+\f[C]+2009/1/1+ assets:euros \[Eu]100 \[at]\[at] $135 ; one hundred euros purchased at $135 for the lot+ assets:dollars+\f[R]+.fi+.RE+.IP "3." 3+Specify amounts for all postings, using exactly two commodities, and let+hledger infer the price that balances the transaction:+.RS 4+.IP+.nf+\f[C]+2009/1/1+ assets:euros \[Eu]100 ; one hundred euros purchased+ assets:dollars $-135 ; for $135+\f[R]+.fi+.RE+.IP "4." 3+Like 1, but the \f[C]\[at]\f[R] is parenthesised, i.e.+\f[C](\[at])\f[R]; this is for compatibility with Ledger journals+(Virtual posting costs), and is equivalent to 1 in hledger.+.IP "5." 3+Like 2, but as in 4 the \f[C]\[at]\[at]\f[R] is parenthesised, i.e.+\f[C](\[at]\[at])\f[R]; in hledger, this is equivalent to 2.+.PP+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:+.IP+.nf+\f[C]+$ 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]+.fi+.PP+Note -B is sensitive to the order of postings when a transaction price+is inferred: the inferred price will be in the commodity of the last+amount.+So if example 3\[aq]s postings are reversed, while the transaction is+equivalent, -B shows something different:+.IP+.nf+\f[C]+2009/1/1+ assets:dollars $-135 ; 135 dollars sold+ assets:euros \[Eu]100 ; for 100 euros+\f[R]+.fi+.IP+.nf+\f[C]+$ hledger bal -N --flat -B+ \[Eu]-100 assets:dollars # <- the dollars\[aq] selling price+ \[Eu]100 assets:euros+\f[R]+.fi+.SS Lot prices, lot dates+.PP+Ledger allows another kind of price, lot price (four variants:+\f[C]{UNITPRICE}\f[R], \f[C]{{TOTALPRICE}}\f[R],+\f[C]{=FIXEDUNITPRICE}\f[R], \f[C]{{=FIXEDTOTALPRICE}}\f[R]), and/or a+lot date (\f[C][DATE]\f[R]) to be specified.+These are normally used to select a lot when selling investments.+hledger will parse these, for compatibility with Ledger journals, but+currently ignores them.+A transaction price, lot price and/or lot date may appear in any order,+after the posting amount and before the balance assertion if any.+.SS Balance assertions+.PP+hledger supports Ledger-style balance assertions in journal files.+These look like, for example, \f[C]= EXPECTEDBALANCE\f[R] following a+posting\[aq]s amount.+Eg here we assert the expected dollar balance in accounts a and b after+each posting:+.IP+.nf+\f[C]+2013/1/1+ a $1 =$1+ b =$-1++2013/1/2+ a $1 =$2+ b $-1 =$-2+\f[R]+.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+\f[C]-I/--ignore-assertions\f[R] flag, which can be useful for+troubleshooting or for reading Ledger files.+(Note: this flag currently does not disable balance assignments, below).+.SS Assertions and ordering+.PP+hledger sorts an account\[aq]s postings and assertions first by date and+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+differently-dated transactions within the journal.+But if you reorder same-dated transactions or postings, assertions might+break and require updating.+This order dependence does bring an advantage: precise control over the+order of postings and assertions within a day, so you can assert+intra-day balances.+.SS Assertions and included files+.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+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.+.SS Assertions and multiple -f options+.PP+Balance assertions don\[aq]t work well across files specified with+multiple -f options.+Use include or concatenate the files instead.+.SS Assertions and commodities+.PP+The asserted balance must be a simple single-commodity amount, and in+fact the assertion checks only this commodity\[aq]s balance within the+(possibly multi-commodity) account balance.+This is how assertions work in Ledger also.+We could call this a \[dq]partial\[dq] balance assertion.+.PP+To assert the balance of more than one commodity in an account, you can+write multiple postings, each asserting one commodity\[aq]s balance.+.PP+You can make a stronger \[dq]total\[dq] balance assertion by writing a+double equals sign (\f[C]== EXPECTEDBALANCE\f[R]).+This asserts that there are no other unasserted commodities in the+account (or, that their balance is 0).+.IP+.nf+\f[C]+2013/1/1+ a $1+ a 1\[Eu]+ b $-1+ c -1\[Eu]++2013/1/2 ; These assertions succeed+ a 0 = $1+ a 0 = 1\[Eu]+ b 0 == $-1+ c 0 == -1\[Eu]++2013/1/3 ; This assertion fails as \[aq]a\[aq] also contains 1\[Eu]+ a 0 == $1+\f[R]+.fi+.PP+It\[aq]s not yet possible to make a complete assertion about a balance+that has multiple commodities.+One workaround is to isolate each commodity into its own subaccount:+.IP+.nf+\f[C]+2013/1/1+ a:usd $1+ a:euro 1\[Eu]+ b++2013/1/2+ a 0 == 0+ a:usd 0 == $1+ a:euro 0 == 1\[Eu]+\f[R]+.fi+.SS Assertions and prices+.PP+Balance assertions ignore transaction prices, and should normally be+written without one:+.IP+.nf+\f[C]+2019/1/1+ (a) $1 \[at] \[Eu]1 = $1+\f[R]+.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+\f[I]assignments\f[R] do use them (see below).+.SS Assertions and subaccounts+.PP+The balance assertions above (\f[C]=\f[R] and \f[C]==\f[R]) do not count+the balance from subaccounts; they check the account\[aq]s exclusive+balance only.+You can assert the balance including subaccounts by writing \f[C]=*\f[R]+or \f[C]==*\f[R], eg:+.IP+.nf+\f[C]+2019/1/1+ equity:opening balances+ checking:a 5+ checking:b 5+ checking 1 ==* 11+\f[R]+.fi+.SS Assertions and virtual postings+.PP+Balance assertions are checked against all postings, both real and+virtual.+They are not affected by the \f[C]--real/-R\f[R] flag or \f[C]real:\f[R]+query.+.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.+.SS Balance assignments+.PP+Ledger-style balance assignments are also supported.+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]+; 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]+.fi+.PP+or when adjusting a balance to reality:+.IP+.nf+\f[C]+; no cash left; update balance, record any untracked spending as a generic expense+2016/1/15+ assets:cash = $0+ expenses:misc+\f[R]+.fi+.PP+The calculated amount depends on the account\[aq]s balance in the+commodity at that point (which depends on the previously-dated postings+of the commodity to that account since the last balance assertion or+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.+.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+ (a) = $1 \[at] \[Eu]2+\f[R]+.fi+.IP+.nf+\f[C]+$ hledger print --explicit+2019-01-01+ (a) $1 \[at] \[Eu]2 = $1 \[at] \[Eu]2+\f[R]+.fi+.SS Directives+.PP+A directive is a line in the journal beginning with a special keyword,+that influences how the journal is processed.+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).+.PP+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.+Note part of this table is hidden when viewed in a web browser - scroll+it sideways to see more.+.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{+\f[C]account\f[R]+T}@T{+T}@T{+any text+T}@T{+document account names, declare account types & display order+T}@T{+all entries in all files, before or after+T}+T{+\f[C]alias\f[R]+T}@T{+\f[C]end aliases\f[R]+T}@T{+T}@T{+rewrite account names+T}@T{+following entries until end of current file or end directive+T}+T{+\f[C]apply account\f[R]+T}@T{+\f[C]end apply account\f[R]+T}@T{+T}@T{+prepend a common parent to account names+T}@T{+following entries until end of current file or end directive+T}+T{+\f[C]comment\f[R]+T}@T{+\f[C]end comment\f[R]+T}@T{+T}@T{+ignore part of journal+T}@T{+following entries until end of current file or end directive+T}+T{+\f[C]commodity\f[R]+T}@T{+T}@T{+\f[C]format\f[R]+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{+\f[C]D\f[R]+T}@T{+T}@T{+T}@T{+declare a commodity to be used for commodityless amounts, and its number+notation & display style+T}@T{+default commodity: following commodityless entries until end of current+file; number notation: following entries in that commodity until end of+current file; display style: amounts of that commodity in reports+T}+T{+\f[C]include\f[R]+T}@T{+T}@T{+T}@T{+include entries/directives from another file+T}@T{+what the included directives affect+T}+T{+[\f[C]payee\f[R]]+T}@T{+T}@T{+T}@T{+declare a payee name+T}@T{+following entries until end of current file+T}+T{+\f[C]P\f[R]+T}@T{+T}@T{+T}@T{+declare a market price for a commodity+T}@T{+amounts of that commodity in reports, when -V is used+T}+T{+\f[C]Y\f[R]+T}@T{+T}@T{+T}@T{+declare a year for yearless dates+T}@T{+following entries until end of current file+T}+T{+\f[C]=\f[R]+T}@T{+T}@T{+T}@T{+declare an auto posting rule, adding postings to other transactions+T}@T{+all entries in parent/current/child files (but not sibling files, see+#1212)+T}+.TE+.PP+And some definitions:+.PP+.TS+tab(@);+lw(6.0n) lw(64.0n).+T{+subdirective+T}@T{+optional indented directive line immediately following a parent+directive+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+.PP+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.+.SS Directives and multiple files+.PP+If you use multiple \f[C]-f\f[R]/\f[C]--file\f[R] options, or the+\f[C]include\f[R] directive, hledger will process multiple input files.+But note that directives which affect input (see above) typically last+only until the end of the file in which they occur.+.PP+This may seem inconvenient, but it\[aq]s intentional; it makes reports+stable and deterministic, independent of the order of input.+Otherwise you could see different numbers if you happened to write -f+options in a different order, or if you moved includes around while+cleaning up your files.+.PP+It can be surprising though; for example, it means that \f[C]alias\f[R]+directives do not affect parent or sibling files (see below).+.SS Comment blocks+.PP+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.+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]+include FILEPATH+\f[R]+.fi+.PP+Only journal files can include, and only journal, timeclock or timedot+files can be included (not CSV files, currently).+.PP+If the file path does not begin with a slash, it is relative to the+current file\[aq]s folder.+.PP+A tilde means home directory, eg: \f[C]include \[ti]/main.journal\f[R].+.PP+The path may contain glob patterns to match multiple files, eg:+\f[C]include *.journal\f[R].+.PP+There is limited support for recursive wildcards: \f[C]**/\f[R] (the+slash is required) matches 0 or more subdirectories.+It\[aq]s not super convenient since you have to avoid include cycles and+including directories, but this can be done, eg:+\f[C]include */**/*.journal\f[R].+.PP+The path may also be prefixed to force a specific file format,+overriding the file extension (as described in hledger.1 -> Input+files): \f[C]include timedot:\[ti]/notes/2020*.md\f[R].+.SS Default year+.PP+You can set a default year to be used for subsequent dates which+don\[aq]t specify a year.+This is a line beginning with \f[C]Y\f[R] followed by the year.+Eg:+.IP+.nf+\f[C]+Y2009 ; set default year to 2009++12/15 ; equivalent to 2009/12/15+ expenses 1+ assets++Y2010 ; change default year to 2010++2009/1/30 ; specifies the year, not affected+ expenses 1+ assets++1/31 ; equivalent to 2010/1/31+ expenses 1+ assets+\f[R]+.fi+.SS Declaring payees+.PP+The \f[C]payee\f[R] directive can be used to declare a limited set of+payees which may appear in transaction descriptions.+The \[dq]payees\[dq] check will report an error if any transaction+refers to a payee that has not been declared.+Eg:+.IP+.nf+\f[C]+payee Whole Foods+\f[R]+.fi+.SS Declaring commodities+.PP+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 (period or comma) 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 a commodity\[aq]s display style in output - decimal and+digit group marks, number of decimal places, symbol placement etc.+.PP+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.+It may be written on a single line, like this:+.IP+.nf+\f[C]+; commodity EXAMPLEAMOUNT++; 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]+.fi+.PP+or on multiple lines, using the \[dq]format\[dq] subdirective.+(In this case the commodity symbol appears twice and should be the same+in both places.):+.IP+.nf+\f[C]+; commodity SYMBOL+; format EXAMPLEAMOUNT++; 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+ format INR 1,00,00,000.00+\f[R]+.fi+.PP+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.+.PP+Note hledger normally uses banker\[aq]s rounding, so 0.5 displayed with+zero decimal digits is \[dq]0\[dq].+(More at Commodity display style.)+.SS Commodity error checking+.PP+In strict mode, enabled with the \f[C]-s\f[R]/\f[C]--strict\f[R] flag,+hledger will report an error if a commodity symbol is used that has not+been declared by a \f[C]commodity\f[R] directive.+This works similarly to account error checking, see the notes there for+more details.+.SS Default commodity+.PP+The \f[C]D\f[R] directive sets a default commodity, to be used for+amounts without a commodity symbol (ie, plain numbers).+This commodity will be applied to all subsequent commodity-less amounts,+or until the next \f[C]D\f[R] directive.+(Note, this is different from Ledger\[aq]s \f[C]D\f[R].)+.PP+For compatibility/historical reasons, \f[C]D\f[R] also acts like a+\f[C]commodity\f[R] directive, setting the commodity\[aq]s display style+(for output) and decimal mark (for parsing input).+As with \f[C]commodity\f[R], the amount must always be written with a+decimal mark (period or comma).+If both directives are used, \f[C]commodity\f[R]\[aq]s style takes+precedence.+.PP+The syntax is \f[C]D AMOUNT\f[R].+Eg:+.IP+.nf+\f[C]+; commodity-less amounts should be treated as dollars+; (and displayed with the dollar sign on the left, thousands separators and two decimal places)+D $1,000.00++1/1+ a 5 ; <- commodity-less amount, parsed as $5 and displayed as $5.00+ b+\f[R]+.fi+.SS Declaring market prices+.PP+The \f[C]P\f[R] directive declares a market price, which is an exchange+rate between two commodities on a certain date.+(In Ledger, they are called \[dq]historical prices\[dq].) These are+often obtained from a stock exchange, cryptocurrency exchange, or the+foreign exchange market.+.PP+Here is the format:+.IP+.nf+\f[C]+P DATE COMMODITYA COMMODITYBAMOUNT+\f[R]+.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]+P 2009/1/1 \[Eu] $1.35+P 2010/1/1 \[Eu] $1.40+\f[R]+.fi+.PP+The \f[C]-V\f[R], \f[C]-X\f[R] and \f[C]--value\f[R] flags use these+market prices to show amount values in another commodity.+See Valuation.+.SS Declaring accounts+.PP+\f[C]account\f[R] directives can be used to declare accounts (ie, the+places that amounts are transferred from and to).+Though not required, these declarations can provide several benefits:+.IP \[bu] 2+They can document your intended chart of accounts, providing a+reference.+.IP \[bu] 2+They can help hledger know your accounts\[aq] types (asset, liability,+equity, revenue, expense), useful for reports like balancesheet and+incomestatement.+.IP \[bu] 2+They control account display order in reports, allowing non-alphabetic+sorting (eg Revenues to appear above Expenses).+.IP \[bu] 2+They can store extra information about accounts (account numbers, notes,+etc.)+.IP \[bu] 2+They help with account name completion in the add command, hledger-iadd,+hledger-web, ledger-mode etc.+.IP \[bu] 2+In strict mode, they restrict which accounts may be posted to by+transactions, which helps detect typos.+.PP+The simplest form is just the word \f[C]account\f[R] followed by a+hledger-style account name, eg this account directive declares the+\f[C]assets:bank:checking\f[R] account:+.IP+.nf+\f[C]+account assets:bank:checking+\f[R]+.fi+.SS Account error checking+.PP+By default, accounts come into existence when a transaction references+them by name.+This is convenient, but it means hledger can\[aq]t warn you when you+mis-spell an account name in the journal.+Usually you\[aq]ll find the error later, as an extra account in balance+reports, or an incorrect balance when reconciling.+.PP+In strict mode, enabled with the \f[C]-s\f[R]/\f[C]--strict\f[R] flag,+hledger will report an error if any transaction uses an account name+that has not been declared by an account directive.+Some notes:+.IP \[bu] 2+The declaration is case-sensitive; transactions must use the correct+account name capitalisation.+.IP \[bu] 2+The account directive\[aq]s scope is \[dq]whole file and below\[dq] (see+directives).+This means it affects all of the current file, and any files it+includes, but not parent or sibling files.+The position of account directives within the file does not matter,+though it\[aq]s usual to put them at the top.+.IP \[bu] 2+Accounts can only be declared in \f[C]journal\f[R] files (but will+affect included files in other formats).+.IP \[bu] 2+It\[aq]s currently not possible to declare \[dq]all possible+subaccounts\[dq] with a wildcard; every account posted to must be+declared.+.SS Account comments+.PP+Comments, beginning with a semicolon, can be added:+.IP \[bu] 2+on the same line, \f[B]after two or more spaces\f[R] (because ; is+allowed in account names)+.IP \[bu] 2+on the next lines, indented+.PP+An example of both:+.IP+.nf+\f[C]+account assets:bank:checking ; same-line comment, note 2+ spaces before ;+ ; next-line comment+ ; another with tag, acctno:12345 (not used yet)+\f[R]+.fi+.PP+Same-line comments are not supported by Ledger, or hledger <1.13.+.SS Account subdirectives+.PP+We also allow (and ignore) Ledger-style indented subdirectives, just for+compatibility.:+.IP+.nf+\f[C]+account assets:bank:checking+ format blah blah ; <- subdirective, ignored+\f[R]+.fi+.PP+Here is the full syntax of account directives:+.IP+.nf+\f[C]+account ACCTNAME [ACCTTYPE] [;COMMENT]+ [;COMMENTS]+ [LEDGER-STYLE SUBDIRECTIVES, IGNORED]+\f[R]+.fi+.SS Account types+.PP+hledger recognises five main types of account, corresponding to the+account classes in the accounting equation:+.PP+\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].+.PP+These account types are important for controlling which accounts appear+in the balancesheet, balancesheetequity, incomestatement reports (and+probably for other things in future).+.PP+Additionally, we recognise the \f[C]Cash\f[R] type, which is also an+\f[C]Asset\f[R], and which causes accounts to appear in the cashflow+report.+(\[dq]Cash\[dq] here means liquid assets, eg bank balances but typically+not investments or receivables.)+.SS Declaring account types+.PP+Generally, to make these reports work you should declare your top-level+accounts and their types, using account directives with \f[C]type:\f[R]+tags.+.PP+The tag\[aq]s value should be one of: \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], \f[C]Cash\f[R], \f[C]A\f[R], \f[C]L\f[R],+\f[C]E\f[R], \f[C]R\f[R], \f[C]X\f[R], \f[C]C\f[R] (all case+insensitive).+The type is inherited by all subaccounts except where they override it.+Here\[aq]s a complete example:+.IP+.nf+\f[C]+account assets ; type: Asset+account assets:bank ; type: Cash+account assets:cash ; type: Cash+account liabilities ; type: Liability+account equity ; type: Equity+account revenues ; type: Revenue+account expenses ; type: Expense+\f[R]+.fi+.SS Auto-detected account types+.PP+If you happen to use common english top-level account names, you may not+need to declare account types, as they will be detected automatically+using the following rules:+.PP+.TS+tab(@);+l l.+T{+If name matches regular expression:+T}@T{+account type is:+T}+_+T{+\f[C]\[ha]assets?(:|$)\f[R]+T}@T{+\f[C]Asset\f[R]+T}+T{+\f[C]\[ha](debts?|liabilit(y|ies))(:|$)\f[R]+T}@T{+\f[C]Liability\f[R]+T}+T{+\f[C]\[ha]equity(:|$)\f[R]+T}@T{+\f[C]Equity\f[R]+T}+T{+\f[C]\[ha](income|revenue)s?(:|$)\f[R]+T}@T{+\f[C]Revenue\f[R]+T}+T{+\f[C]\[ha]expenses?(:|$)\f[R]+T}@T{+\f[C]Expense\f[R]+T}+.TE+.PP+.TS+tab(@);+lw(56.9n) lw(13.1n).+T{+If account type is \f[C]Asset\f[R] and name does not contain regular+expression:+T}@T{+account type is:+T}+_+T{+\f[C](investment|receivable|:A/R|:fixed)\f[R]+T}@T{+\f[C]Cash\f[R]+T}+.TE+.PP+Even so, explicit declarations may be a good idea, for clarity and+predictability.+.SS Interference from auto-detected account types+.PP+If you assign any account type, it\[aq]s a good idea to assign all of+them, to prevent any confusion from mixing declared and auto-detected+types.+Although it\[aq]s unlikely to happen in real life, here\[aq]s an+example: with the following journal, \f[C]balancesheetequity\f[R] shows+\[dq]liabilities\[dq] in both Liabilities and Equity sections.+Declaring another account as \f[C]type:Liability\f[R] would fix it:+.IP+.nf+\f[C]+account liabilities ; type:Equity++2020-01-01+ assets 1+ liabilities 1+ equity -2+\f[R]+.fi+.SS Old account type syntax+.PP+In some hledger journals you might instead see this old syntax (the+letters ALERX, separated from the account name by two or more spaces);+this is deprecated and may be removed soon:+.IP+.nf+\f[C]+account assets A+account liabilities L+account equity E+account revenues R+account expenses X+\f[R]+.fi+.SS Account display order+.PP+Account directives also set the order in which accounts are displayed,+eg in reports, the hledger-ui accounts screen, and the hledger-web+sidebar.+By default accounts are listed in alphabetical order.+But if you have these account directives in the journal:+.IP+.nf+\f[C]+account assets+account liabilities+account equity+account revenues+account expenses+\f[R]+.fi+.PP+you\[aq]ll see those accounts displayed in declaration order, not+alphabetically:+.IP+.nf+\f[C]+$ hledger accounts -1+assets+liabilities+equity+revenues+expenses+\f[R]+.fi+.PP+Undeclared accounts, if any, are displayed last, in alphabetical order.+.PP+Note that sorting is done at each level of the account tree (within each+group of sibling accounts under the same parent).+And currently, this directive:+.IP+.nf+\f[C]+account other:zoo+\f[R]+.fi+.PP+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:+.IP \[bu] 2+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+.IP \[bu] 2+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]).+.SS Rewriting accounts+.PP+You can define account alias rules which rewrite your account names, or+parts of them, before generating reports.+This can be useful for:+.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+Account aliases also rewrite account names in account directives.+They do not affect account names being entered via hledger add or+hledger-web.+.PP+See also Rewrite account names.+.SS Basic aliases+.PP+To set an account alias, use the \f[C]alias\f[R] directive in your+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]+alias OLD = NEW+\f[R]+.fi+.PP+Or, you can use the \f[C]--alias \[aq]OLD=NEW\[aq]\f[R] option on the+command line.+This affects all entries.+It\[aq]s useful for trying out aliases interactively.+.PP+OLD and NEW are case sensitive full account names.+hledger will replace any occurrence of the old account name with the new+one.+Subaccounts are also affected.+Eg:+.IP+.nf+\f[C]+alias checking = assets:bank:wells fargo:checking+; 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]+\f[R]+.fi+.SS Regex aliases+.PP+There is also a more powerful variant that uses a regular expression,+indicated by the forward slashes:+.IP+.nf+\f[C]+alias /REGEX/ = REPLACEMENT+\f[R]+.fi+.PP+or \f[C]--alias \[aq]/REGEX/=REPLACEMENT\[aq]\f[R].+.PP+REGEX is a case-insensitive regular expression.+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.+Eg:+.IP+.nf+\f[C]+alias /\[ha](.+):bank:([\[ha]:]+):(.*)/ = \[rs]1:\[rs]2 \[rs]3+; rewrites \[dq]assets:bank:wells fargo:checking\[dq] to \[dq]assets:wells fargo checking\[dq]+\f[R]+.fi+.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.+.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:+.IP "1." 3+\f[C]alias\f[R] directives preceding the journal entry, most recently+parsed first (ie, reading upward from the journal entry, bottom to top)+.IP "2." 3+\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.+.SS Aliases and multiple files+.PP+As explained at Directives and multiple files, \f[C]alias\f[R]+directives do not affect parent or sibling files.+Eg in this command,+.IP+.nf+\f[C]+hledger -f a.aliases -f b.journal+\f[R]+.fi+.PP+account aliases defined in a.aliases will not affect b.journal.+Including the aliases doesn\[aq]t work either:+.IP+.nf+\f[C]+include a.aliases++2020-01-01 ; not affected by a.aliases+ foo 1+ bar+\f[R]+.fi+.PP+This means that account aliases should usually be declared at the start+of your top-most file, like this:+.IP+.nf+\f[C]+alias foo=Foo+alias bar=Bar++2020-01-01 ; affected by aliases above+ foo 1+ bar++include c.journal ; also affected+\f[R]+.fi+.SS \f[C]end aliases\f[R]+.PP+You can clear (forget) all currently defined aliases with the+\f[C]end aliases\f[R] directive:+.IP+.nf+\f[C]+end aliases+\f[R]+.fi+.SS Default parent account+.PP+You can specify a parent account which will be prepended to all accounts+within a section of the journal.+Use the \f[C]apply account\f[R] and \f[C]end apply account\f[R]+directives like so:+.IP+.nf+\f[C]+apply account home++2010/1/1+ food $10+ cash++end apply account+\f[R]+.fi+.PP+which is equivalent to:+.IP+.nf+\f[C]+2010/01/01+ home:food $10+ home:cash $-10+\f[R]+.fi+.PP+If \f[C]end apply account\f[R] is omitted, the effect lasts to the end+of the file.+Included files are also affected, eg:+.IP+.nf+\f[C]+apply account business+include biz.journal+end apply account+apply account personal+include personal.journal+\f[R]+.fi+.PP+Prior to hledger 1.0, legacy \f[C]account\f[R] and \f[C]end\f[R]+spellings were also supported.+.PP+A default parent account also affects account directives.+It does not affect account names being entered via hledger add or+hledger-web.+If account aliases are present, they are applied after the default+parent account.+.SS Periodic transactions+.PP+Periodic transaction rules describe transactions that recur.+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.+.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.+.PP+Periodic transaction rules also have a second meaning: they are used to+define budget goals, shown in budget reports.+.SS Periodic rule syntax+.PP+A periodic transaction rule looks like a normal journal entry, with the+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.):+.IP+.nf+\f[C]+\[ti] monthly+ expenses:rent $2000+ assets:bank:checking+\f[R]+.fi+.PP+There is an additional constraint on the period expression: the start+date must fall on a natural boundary of the interval.+Eg \f[C]monthly from 2018/1/1\f[R] is valid, but+\f[C]monthly from 2018/1/15\f[R] is not.+.PP+Partial or relative dates (M/D, D, tomorrow, last week) in the period+expression can work (useful or not).+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.+.SS Two spaces between period expression and description!+.PP+If the period expression is followed by a transaction description, these+must be separated by \f[B]two or more spaces\f[R].+This helps hledger know where the period expression ends, so that+descriptions can not accidentally alter their meaning, as in this+example:+.IP+.nf+\f[C]+; 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]+.fi+.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.+.SS Forecasting with periodic transactions+.PP+The \f[C]--forecast\f[R] flag activates any periodic transaction rules+in the journal.+They will generate temporary recurring transactions, which are not saved+in the journal, but will appear in all reports (eg print).+This can be useful for estimating balances into the future, or+experimenting with different scenarios.+Or, it can be used as a data entry aid: describe recurring transactions,+and every so often copy the output of \f[C]print --forecast\f[R] into+the journal.+.PP+These transactions will have an extra tag indicating which periodic rule+generated them: \f[C]generated-transaction:\[ti] PERIODICEXPR\f[R].+And a similar, hidden tag (beginning with an underscore) which, because+it\[aq]s never displayed by print, can be used to match transactions+generated \[dq]just now\[dq]:+\f[C]_generated-transaction:\[ti] PERIODICEXPR\f[R].+.PP+Periodic transactions are generated within some forecast period.+By default, this+.IP \[bu] 2+begins on the later of+.RS 2+.IP \[bu] 2+the report start date if specified with -b/-p/date:+.IP \[bu] 2+the day after the latest normal (non-periodic) transaction in the+journal, or today if there are no normal transactions.+.RE+.IP \[bu] 2+ends on the report end date if specified with -e/-p/date:, or 6 months+(180 days) from today.+.PP+This means that periodic transactions will begin only after the latest+recorded transaction.+And a recorded transaction dated in the future can prevent generation of+periodic transactions.+(You can avoid that by writing the future transaction as a one-time+periodic rule instead - put tilde before the date, eg+\f[C]\[ti] YYYY-MM-DD ...\f[R]).+.PP+Or, you can set your own arbitrary \[dq]forecast period\[dq], which can+overlap recorded transactions, and need not be in the future, by+providing an option argument, like \f[C]--forecast=PERIODEXPR\f[R].+Note the equals sign is required, a space won\[aq]t work.+PERIODEXPR is a period expression, which can specify the start date, end+date, or both, like in a \f[C]date:\f[R] query.+(See also hledger.1 -> Report start & end date).+Some examples: \f[C]--forecast=202001-202004\f[R],+\f[C]--forecast=jan-\f[R], \f[C]--forecast=2020\f[R].+.SS Budgeting with periodic transactions+.PP+With the \f[C]--budget\f[R] flag, currently supported by the balance+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.+.PP+See also: Budgeting and Forecasting.+.PP+.SS Auto postings+.PP+\[dq]Automated postings\[dq] or \[dq]auto postings\[dq] are extra+postings which get added automatically to transactions which match+certain queries, defined by \[dq]auto posting rules\[dq], when you use+the \f[C]--auto\f[R] flag.+.PP+An auto posting rule looks a bit like a transaction:+.IP+.nf+\f[C]+= QUERY+ ACCOUNT AMOUNT+ ...+ ACCOUNT [AMOUNT]+\f[R]+.fi+.PP+except the first line is an equals sign (mnemonic: \f[C]=\f[R] suggests+matching), followed by a query (which matches existing postings), and+each \[dq]posting\[dq] line describes a posting to be generated, and the+posting amounts can be:+.IP \[bu] 2+a normal amount with a commodity symbol, eg \f[C]$2\f[R].+This will be used as-is.+.IP \[bu] 2+a number, eg \f[C]2\f[R].+The commodity symbol (if any) from the matched posting will be added to+this.+.IP \[bu] 2+a numeric multiplier, eg \f[C]*2\f[R] (a star followed by a number N).+The matched posting\[aq]s amount (and total price, if any) will be+multiplied by N.+.IP \[bu] 2+a multiplier with a commodity symbol, eg \f[C]*$2\f[R] (a star, number+N, and symbol S).+The matched posting\[aq]s amount will be multiplied by N, and its+commodity symbol will be replaced with S.+.PP+Any query term containing spaces must be enclosed in single or double+quotes, as on the command line.+Eg, note the quotes around the second query term below:+.IP+.nf+\f[C]+= expenses:groceries \[aq]expenses:dining out\[aq]+ (budget:funds:dining out) *-1+\f[R]+.fi+.PP+Some examples:+.IP+.nf+\f[C]+; every time I buy food, schedule a dollar donation+= expenses:food+ (liabilities:charity) $-1++; when I buy a gift, also deduct that amount from a budget envelope subaccount+= expenses:gifts+ assets:checking:gifts *-1+ assets:checking *1++2017/12/1+ expenses:food $10+ assets:checking++2017/12/14+ expenses:gifts $20+ assets:checking+\f[R]+.fi+.IP+.nf+\f[C]+$ hledger print --auto+2017-12-01+ expenses:food $10+ assets:checking+ (liabilities:charity) $-1++2017-12-14+ expenses:gifts $20+ assets:checking+ assets:checking:gifts -$20+ assets:checking $20+\f[R]+.fi+.SS Auto postings and multiple files+.PP+An auto posting rule can affect any transaction in the current file, or+in any parent file or child file.+Note, currently it will not affect sibling files (when multiple+\f[C]-f\f[R]/\f[C]--file\f[R] are used - see #1212).+.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.+.SS Auto postings and transaction balancing / inferred amounts / balance assertions+.PP+Currently, 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+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.+.SS Auto posting tags+.PP+Automated postings 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 auto posting 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].+.SH CSV FORMAT+.PP+How hledger reads CSV data, and the CSV rules file format.+.PP+hledger can read CSV files (Character Separated Value - usually comma,+semicolon, or tab) containing dated records as if they were journal+files, automatically converting each CSV record into a transaction.+.PP+(To learn about \f[I]writing\f[R] CSV, see CSV output.)+.PP+We describe each CSV file\[aq]s format with a corresponding \f[I]rules+file\f[R].+By default this is named like the CSV file with a \f[C].rules\f[R]+extension added.+Eg when reading \f[C]FILE.csv\f[R], hledger also looks for+\f[C]FILE.csv.rules\f[R] in the same directory as \f[C]FILE.csv\f[R].+You can specify a different rules file with the \f[C]--rules-file\f[R]+option.+If a rules file is not found, hledger will create a sample rules file,+which you\[aq]ll need to adjust.+.PP+This file contains rules describing the CSV data (header line, fields+layout, date format etc.), and how to construct hledger journal entries+(transactions) from it.+Often there will also be a list of conditional rules for categorising+transactions based on their descriptions.+Here\[aq]s an overview of the CSV rules; these are described more fully+below, after the examples:+.PP+.TS+tab(@);+lw(30.1n) lw(39.9n).+T{+\f[B]\f[CB]skip\f[B]\f[R]+T}@T{+skip one or more header lines or matched CSV records+T}+T{+\f[B]\f[CB]fields\f[B]\f[R]+T}@T{+name CSV fields, assign them to hledger fields+T}+T{+\f[B]field assignment\f[R]+T}@T{+assign a value to one hledger field, with interpolation+T}+T{+\f[B]\f[CB]separator\f[B]\f[R]+T}@T{+a custom field separator+T}+T{+\f[B]\f[CB]if\f[B] block\f[R]+T}@T{+apply some rules to CSV records matched by patterns+T}+T{+\f[B]\f[CB]if\f[B] table\f[R]+T}@T{+apply some rules to CSV records matched by patterns, alternate syntax+T}+T{+\f[B]\f[CB]end\f[B]\f[R]+T}@T{+skip the remaining CSV records+T}+T{+\f[B]\f[CB]date-format\f[B]\f[R]+T}@T{+how to parse dates in CSV records+T}+T{+\f[B]\f[CB]decimal-mark\f[B]\f[R]+T}@T{+the decimal mark used in CSV amounts, if ambiguous+T}+T{+\f[B]\f[CB]newest-first\f[B]\f[R]+T}@T{+disambiguate record order when there\[aq]s only one date+T}+T{+\f[B]\f[CB]include\f[B]\f[R]+T}@T{+inline another CSV rules file+T}+T{+\f[B]\f[CB]balance-type\f[B]\f[R]+T}@T{+choose which type of balance assignments to use+T}+.TE+.PP+Note, for best error messages when reading CSV files, use a+\f[C].csv\f[R], \f[C].tsv\f[R] or \f[C].ssv\f[R] file extension or file+prefix - see File Extension below.+.PP+There\[aq]s an introductory Convert CSV files tutorial on hledger.org.+.SS Examples+.PP+Here are some sample hledger CSV rules files.+See also the full collection at:+.PD 0+.P+.PD+https://github.com/simonmichael/hledger/tree/master/examples/csv+.SS Basic+.PP+At minimum, the rules file must identify the date and amount fields, and+often it also specifies the date format and how many header lines there+are.+Here\[aq]s a simple CSV file and a rules file for it:+.IP+.nf+\f[C]+Date, Description, Id, Amount+12/11/2019, Foo, 123, 10.23+\f[R]+.fi+.IP+.nf+\f[C]+# basic.csv.rules+skip 1+fields date, description, _, amount+date-format %d/%m/%Y+\f[R]+.fi+.IP+.nf+\f[C]+$ hledger print -f basic.csv+2019-11-12 Foo+ expenses:unknown 10.23+ income:unknown -10.23+\f[R]+.fi+.PP+Default account names are chosen, since we didn\[aq]t set them.+.SS Bank of Ireland+.PP+Here\[aq]s a CSV with two amount fields (Debit and Credit), and a+balance field, which we can use to add balance assertions, which is not+necessary but provides extra error checking:+.IP+.nf+\f[C]+Date,Details,Debit,Credit,Balance+07/12/2012,LODGMENT 529898,,10.0,131.21+07/12/2012,PAYMENT,5,,126+\f[R]+.fi+.IP+.nf+\f[C]+# bankofireland-checking.csv.rules++# skip the header line+skip++# name the csv fields, and assign some of them as journal entry fields+fields date, description, amount-out, amount-in, balance++# We generate balance assertions by assigning to \[dq]balance\[dq]+# above, but you may sometimes need to remove these because:+#+# - the CSV balance differs from the true balance,+# by up to 0.0000000000005 in my experience+#+# - it is sometimes calculated based on non-chronological ordering,+# eg when multiple transactions clear on the same day++# date is in UK/Ireland format+date-format %d/%m/%Y++# set the currency+currency EUR++# set the base account for all txns+account1 assets:bank:boi:checking+\f[R]+.fi+.IP+.nf+\f[C]+$ hledger -f bankofireland-checking.csv print+2012-12-07 LODGMENT 529898+ assets:bank:boi:checking EUR10.0 = EUR131.2+ income:unknown EUR-10.0++2012-12-07 PAYMENT+ assets:bank:boi:checking EUR-5.0 = EUR126.0+ expenses:unknown EUR5.0+\f[R]+.fi+.PP+The balance assertions don\[aq]t raise an error above, because we\[aq]re+reading directly from CSV, but they will be checked if these entries are+imported into a journal file.+.SS Amazon+.PP+Here we convert amazon.com order history, and use an if block to+generate a third posting if there\[aq]s a fee.+(In practice you\[aq]d probably get this data from your bank instead,+but it\[aq]s an example.)+.IP+.nf+\f[C]+\[dq]Date\[dq],\[dq]Type\[dq],\[dq]To/From\[dq],\[dq]Name\[dq],\[dq]Status\[dq],\[dq]Amount\[dq],\[dq]Fees\[dq],\[dq]Transaction ID\[dq]+\[dq]Jul 29, 2012\[dq],\[dq]Payment\[dq],\[dq]To\[dq],\[dq]Foo.\[dq],\[dq]Completed\[dq],\[dq]$20.00\[dq],\[dq]$0.00\[dq],\[dq]16000000000000DGLNJPI1P9B8DKPVHL\[dq]+\[dq]Jul 30, 2012\[dq],\[dq]Payment\[dq],\[dq]To\[dq],\[dq]Adapteva, Inc.\[dq],\[dq]Completed\[dq],\[dq]$25.00\[dq],\[dq]$1.00\[dq],\[dq]17LA58JSKRD4HDGLNJPI1P9B8DKPVHL\[dq]+\f[R]+.fi+.IP+.nf+\f[C]+# amazon-orders.csv.rules++# skip one header line+skip 1++# name the csv fields, and assign the transaction\[aq]s date, amount and code.+# Avoided the \[dq]status\[dq] and \[dq]amount\[dq] hledger field names to prevent confusion.+fields date, _, toorfrom, name, amzstatus, amzamount, fees, code++# how to parse the date+date-format %b %-d, %Y++# combine two fields to make the description+description %toorfrom %name++# save the status as a tag+comment status:%amzstatus++# set the base account for all transactions+account1 assets:amazon+# leave amount1 blank so it can balance the other(s).+# I\[aq]m assuming amzamount excludes the fees, don\[aq]t remember++# set a generic account2+account2 expenses:misc+amount2 %amzamount+# and maybe refine it further:+#include categorisation.rules++# add a third posting for fees, but only if they are non-zero.+if %fees [1-9]+ account3 expenses:fees+ amount3 %fees+\f[R]+.fi+.IP+.nf+\f[C]+$ hledger -f amazon-orders.csv print+2012-07-29 (16000000000000DGLNJPI1P9B8DKPVHL) To Foo. ; status:Completed+ assets:amazon+ expenses:misc $20.00++2012-07-30 (17LA58JSKRD4HDGLNJPI1P9B8DKPVHL) To Adapteva, Inc. ; status:Completed+ assets:amazon+ expenses:misc $25.00+ expenses:fees $1.00+\f[R]+.fi+.SS Paypal+.PP+Here\[aq]s a real-world rules file for (customised) Paypal CSV, with+some Paypal-specific rules, and a second rules file included:+.IP+.nf+\f[C]+\[dq]Date\[dq],\[dq]Time\[dq],\[dq]TimeZone\[dq],\[dq]Name\[dq],\[dq]Type\[dq],\[dq]Status\[dq],\[dq]Currency\[dq],\[dq]Gross\[dq],\[dq]Fee\[dq],\[dq]Net\[dq],\[dq]From Email Address\[dq],\[dq]To Email Address\[dq],\[dq]Transaction ID\[dq],\[dq]Item Title\[dq],\[dq]Item ID\[dq],\[dq]Reference Txn ID\[dq],\[dq]Receipt ID\[dq],\[dq]Balance\[dq],\[dq]Note\[dq]+\[dq]10/01/2019\[dq],\[dq]03:46:20\[dq],\[dq]PDT\[dq],\[dq]Calm Radio\[dq],\[dq]Subscription Payment\[dq],\[dq]Completed\[dq],\[dq]USD\[dq],\[dq]-6.99\[dq],\[dq]0.00\[dq],\[dq]-6.99\[dq],\[dq]simon\[at]joyful.com\[dq],\[dq]memberships\[at]calmradio.com\[dq],\[dq]60P57143A8206782E\[dq],\[dq]MONTHLY - $1 for the first 2 Months: Me - Order 99309. Item total: $1.00 USD first 2 months, then $6.99 / Month\[dq],\[dq]\[dq],\[dq]I-R8YLY094FJYR\[dq],\[dq]\[dq],\[dq]-6.99\[dq],\[dq]\[dq]+\[dq]10/01/2019\[dq],\[dq]03:46:20\[dq],\[dq]PDT\[dq],\[dq]\[dq],\[dq]Bank Deposit to PP Account \[dq],\[dq]Pending\[dq],\[dq]USD\[dq],\[dq]6.99\[dq],\[dq]0.00\[dq],\[dq]6.99\[dq],\[dq]\[dq],\[dq]simon\[at]joyful.com\[dq],\[dq]0TU1544T080463733\[dq],\[dq]\[dq],\[dq]\[dq],\[dq]60P57143A8206782E\[dq],\[dq]\[dq],\[dq]0.00\[dq],\[dq]\[dq]+\[dq]10/01/2019\[dq],\[dq]08:57:01\[dq],\[dq]PDT\[dq],\[dq]Patreon\[dq],\[dq]PreApproved Payment Bill User Payment\[dq],\[dq]Completed\[dq],\[dq]USD\[dq],\[dq]-7.00\[dq],\[dq]0.00\[dq],\[dq]-7.00\[dq],\[dq]simon\[at]joyful.com\[dq],\[dq]support\[at]patreon.com\[dq],\[dq]2722394R5F586712G\[dq],\[dq]Patreon* Membership\[dq],\[dq]\[dq],\[dq]B-0PG93074E7M86381M\[dq],\[dq]\[dq],\[dq]-7.00\[dq],\[dq]\[dq]+\[dq]10/01/2019\[dq],\[dq]08:57:01\[dq],\[dq]PDT\[dq],\[dq]\[dq],\[dq]Bank Deposit to PP Account \[dq],\[dq]Pending\[dq],\[dq]USD\[dq],\[dq]7.00\[dq],\[dq]0.00\[dq],\[dq]7.00\[dq],\[dq]\[dq],\[dq]simon\[at]joyful.com\[dq],\[dq]71854087RG994194F\[dq],\[dq]Patreon* Membership\[dq],\[dq]\[dq],\[dq]2722394R5F586712G\[dq],\[dq]\[dq],\[dq]0.00\[dq],\[dq]\[dq]+\[dq]10/19/2019\[dq],\[dq]03:02:12\[dq],\[dq]PDT\[dq],\[dq]Wikimedia Foundation, Inc.\[dq],\[dq]Subscription Payment\[dq],\[dq]Completed\[dq],\[dq]USD\[dq],\[dq]-2.00\[dq],\[dq]0.00\[dq],\[dq]-2.00\[dq],\[dq]simon\[at]joyful.com\[dq],\[dq]tle\[at]wikimedia.org\[dq],\[dq]K9U43044RY432050M\[dq],\[dq]Monthly donation to the Wikimedia Foundation\[dq],\[dq]\[dq],\[dq]I-R5C3YUS3285L\[dq],\[dq]\[dq],\[dq]-2.00\[dq],\[dq]\[dq]+\[dq]10/19/2019\[dq],\[dq]03:02:12\[dq],\[dq]PDT\[dq],\[dq]\[dq],\[dq]Bank Deposit to PP Account \[dq],\[dq]Pending\[dq],\[dq]USD\[dq],\[dq]2.00\[dq],\[dq]0.00\[dq],\[dq]2.00\[dq],\[dq]\[dq],\[dq]simon\[at]joyful.com\[dq],\[dq]3XJ107139A851061F\[dq],\[dq]\[dq],\[dq]\[dq],\[dq]K9U43044RY432050M\[dq],\[dq]\[dq],\[dq]0.00\[dq],\[dq]\[dq]+\[dq]10/22/2019\[dq],\[dq]05:07:06\[dq],\[dq]PDT\[dq],\[dq]Noble Benefactor\[dq],\[dq]Subscription Payment\[dq],\[dq]Completed\[dq],\[dq]USD\[dq],\[dq]10.00\[dq],\[dq]-0.59\[dq],\[dq]9.41\[dq],\[dq]noble\[at]bene.fac.tor\[dq],\[dq]simon\[at]joyful.com\[dq],\[dq]6L8L1662YP1334033\[dq],\[dq]Joyful Systems\[dq],\[dq]\[dq],\[dq]I-KC9VBGY2GWDB\[dq],\[dq]\[dq],\[dq]9.41\[dq],\[dq]\[dq]+\f[R]+.fi+.IP+.nf+\f[C]+# paypal-custom.csv.rules++# Tips:+# Export from Activity -> Statements -> Custom -> Activity download+# Suggested transaction type: \[dq]Balance affecting\[dq]+# Paypal\[aq]s default fields in 2018 were:+# \[dq]Date\[dq],\[dq]Time\[dq],\[dq]TimeZone\[dq],\[dq]Name\[dq],\[dq]Type\[dq],\[dq]Status\[dq],\[dq]Currency\[dq],\[dq]Gross\[dq],\[dq]Fee\[dq],\[dq]Net\[dq],\[dq]From Email Address\[dq],\[dq]To Email Address\[dq],\[dq]Transaction ID\[dq],\[dq]Shipping Address\[dq],\[dq]Address Status\[dq],\[dq]Item Title\[dq],\[dq]Item ID\[dq],\[dq]Shipping and Handling Amount\[dq],\[dq]Insurance Amount\[dq],\[dq]Sales Tax\[dq],\[dq]Option 1 Name\[dq],\[dq]Option 1 Value\[dq],\[dq]Option 2 Name\[dq],\[dq]Option 2 Value\[dq],\[dq]Reference Txn ID\[dq],\[dq]Invoice Number\[dq],\[dq]Custom Number\[dq],\[dq]Quantity\[dq],\[dq]Receipt ID\[dq],\[dq]Balance\[dq],\[dq]Address Line 1\[dq],\[dq]Address Line 2/District/Neighborhood\[dq],\[dq]Town/City\[dq],\[dq]State/Province/Region/County/Territory/Prefecture/Republic\[dq],\[dq]Zip/Postal Code\[dq],\[dq]Country\[dq],\[dq]Contact Phone Number\[dq],\[dq]Subject\[dq],\[dq]Note\[dq],\[dq]Country Code\[dq],\[dq]Balance Impact\[dq]+# This rules file assumes the following more detailed fields, configured in \[dq]Customize report fields\[dq]:+# \[dq]Date\[dq],\[dq]Time\[dq],\[dq]TimeZone\[dq],\[dq]Name\[dq],\[dq]Type\[dq],\[dq]Status\[dq],\[dq]Currency\[dq],\[dq]Gross\[dq],\[dq]Fee\[dq],\[dq]Net\[dq],\[dq]From Email Address\[dq],\[dq]To Email Address\[dq],\[dq]Transaction ID\[dq],\[dq]Item Title\[dq],\[dq]Item ID\[dq],\[dq]Reference Txn ID\[dq],\[dq]Receipt ID\[dq],\[dq]Balance\[dq],\[dq]Note\[dq]++fields date, time, timezone, description_, type, status_, currency, grossamount, feeamount, netamount, fromemail, toemail, code, itemtitle, itemid, referencetxnid, receiptid, balance, note++skip 1++date-format %-m/%-d/%Y++# ignore some paypal events+if+In Progress+Temporary Hold+Update to+ skip++# add more fields to the description+description %description_ %itemtitle++# save some other fields as tags+comment itemid:%itemid, fromemail:%fromemail, toemail:%toemail, time:%time, type:%type, status:%status_++# convert to short currency symbols+if %currency USD+ currency $+if %currency EUR+ currency E+if %currency GBP+ currency P++# generate postings++# the first posting will be the money leaving/entering my paypal account+# (negative means leaving my account, in all amount fields)+account1 assets:online:paypal+amount1 %netamount++# the second posting will be money sent to/received from other party+# (account2 is set below)+amount2 -%grossamount++# if there\[aq]s a fee, add a third posting for the money taken by paypal.+if %feeamount [1-9]+ account3 expenses:banking:paypal+ amount3 -%feeamount+ comment3 business:++# choose an account for the second posting++# override the default account names:+# if the amount is positive, it\[aq]s income (a debit)+if %grossamount \[ha][\[ha]-]+ account2 income:unknown+# if negative, it\[aq]s an expense (a credit)+if %grossamount \[ha]-+ account2 expenses:unknown++# apply common rules for setting account2 & other tweaks+include common.rules++# apply some overrides specific to this csv++# Transfers from/to bank. These are usually marked Pending,+# which can be disregarded in this case.+if+Bank Account+Bank Deposit to PP Account+ description %type for %referencetxnid %itemtitle+ account2 assets:bank:wf:pchecking+ account1 assets:online:paypal++# Currency conversions+if Currency Conversion+ account2 equity:currency conversion+\f[R]+.fi+.IP+.nf+\f[C]+# common.rules++if+darcs+noble benefactor+ account2 revenues:foss donations:darcshub+ comment2 business:++if+Calm Radio+ account2 expenses:online:apps++if+electronic frontier foundation+Patreon+wikimedia+Advent of Code+ account2 expenses:dues++if Google+ account2 expenses:online:apps+ description google | music+\f[R]+.fi+.IP+.nf+\f[C]+$ hledger -f paypal-custom.csv print+2019-10-01 (60P57143A8206782E) Calm Radio MONTHLY - $1 for the first 2 Months: Me - Order 99309. Item total: $1.00 USD first 2 months, then $6.99 / Month ; itemid:, fromemail:simon\[at]joyful.com, toemail:memberships\[at]calmradio.com, time:03:46:20, type:Subscription Payment, status:Completed+ assets:online:paypal $-6.99 = $-6.99+ expenses:online:apps $6.99++2019-10-01 (0TU1544T080463733) Bank Deposit to PP Account for 60P57143A8206782E ; itemid:, fromemail:, toemail:simon\[at]joyful.com, time:03:46:20, type:Bank Deposit to PP Account, status:Pending+ assets:online:paypal $6.99 = $0.00+ assets:bank:wf:pchecking $-6.99++2019-10-01 (2722394R5F586712G) Patreon Patreon* Membership ; itemid:, fromemail:simon\[at]joyful.com, toemail:support\[at]patreon.com, time:08:57:01, type:PreApproved Payment Bill User Payment, status:Completed+ assets:online:paypal $-7.00 = $-7.00+ expenses:dues $7.00++2019-10-01 (71854087RG994194F) Bank Deposit to PP Account for 2722394R5F586712G Patreon* Membership ; itemid:, fromemail:, toemail:simon\[at]joyful.com, time:08:57:01, type:Bank Deposit to PP Account, status:Pending+ assets:online:paypal $7.00 = $0.00+ assets:bank:wf:pchecking $-7.00++2019-10-19 (K9U43044RY432050M) Wikimedia Foundation, Inc. Monthly donation to the Wikimedia Foundation ; itemid:, fromemail:simon\[at]joyful.com, toemail:tle\[at]wikimedia.org, time:03:02:12, type:Subscription Payment, status:Completed+ assets:online:paypal $-2.00 = $-2.00+ expenses:dues $2.00+ expenses:banking:paypal ; business:++2019-10-19 (3XJ107139A851061F) Bank Deposit to PP Account for K9U43044RY432050M ; itemid:, fromemail:, toemail:simon\[at]joyful.com, time:03:02:12, type:Bank Deposit to PP Account, status:Pending+ assets:online:paypal $2.00 = $0.00+ assets:bank:wf:pchecking $-2.00++2019-10-22 (6L8L1662YP1334033) Noble Benefactor Joyful Systems ; itemid:, fromemail:noble\[at]bene.fac.tor, toemail:simon\[at]joyful.com, time:05:07:06, type:Subscription Payment, status:Completed+ assets:online:paypal $9.41 = $9.41+ revenues:foss donations:darcshub $-10.00 ; business:+ expenses:banking:paypal $0.59 ; business:+\f[R]+.fi+.SS CSV rules+.PP+The following kinds of rule can appear in the rules file, in any order.+Blank lines and lines beginning with \f[C]#\f[R] or \f[C];\f[R] are+ignored.+.SS \f[C]skip\f[R]+.IP+.nf+\f[C]+skip N+\f[R]+.fi+.PP+The word \[dq]skip\[dq] followed by a number (or no number, meaning 1)+tells hledger to ignore this many non-empty lines preceding the CSV+data.+(Empty/blank lines are skipped automatically.) You\[aq]ll need this+whenever your CSV data contains header lines.+.PP+It also has a second purpose: it can be used inside if blocks to ignore+certain CSV records (described below).+.SS \f[C]fields\f[R]+.IP+.nf+\f[C]+fields FIELDNAME1, FIELDNAME2, ...+\f[R]+.fi+.PP+A fields list (the word \[dq]fields\[dq] followed by comma-separated+field names) is the quick way to assign CSV field values to hledger+fields.+It does two things:+.IP "1." 3+it names the CSV fields.+This is optional, but can be convenient later for interpolating them.+.IP "2." 3+when you use a standard hledger field name, it assigns the CSV value to+that part of the hledger transaction.+.PP+Here\[aq]s an example that says \[dq]use the 1st, 2nd and 4th fields as+the transaction\[aq]s date, description and amount; name the last two+fields for later reference; and ignore the others\[dq]:+.IP+.nf+\f[C]+fields date, description, , amount, , , somefield, anotherfield+\f[R]+.fi+.PP+Field names may not contain whitespace.+Fields you don\[aq]t care about can be left unnamed.+Currently there must be least two items (there must be at least one+comma).+.PP+Note, always use comma in the fields list, even if your CSV uses another+separator character.+.PP+Here are the standard hledger field/pseudo-field names.+For more about the transaction parts they refer to, see the manual for+hledger\[aq]s journal format.+.SS Transaction field names+.PP+\f[C]date\f[R], \f[C]date2\f[R], \f[C]status\f[R], \f[C]code\f[R],+\f[C]description\f[R], \f[C]comment\f[R] can be used to form the+transaction\[aq]s first line.+.SS Posting field names+.SS account+.PP+\f[C]accountN\f[R], where N is 1 to 99, causes a posting to be+generated, with that account name.+.PP+Most often there are two postings, so you\[aq]ll want to set+\f[C]account1\f[R] and \f[C]account2\f[R].+Typically \f[C]account1\f[R] is associated with the CSV file, and is set+once with a top-level assignment, while \f[C]account2\f[R] is set based+on each transaction\[aq]s description, and in conditional blocks.+.PP+If a posting\[aq]s account name is left unset but its amount is set (see+below), a default account name will be chosen (like+\[dq]expenses:unknown\[dq] or \[dq]income:unknown\[dq]).+.SS amount+.PP+\f[C]amountN\f[R] sets posting N\[aq]s amount.+If the CSV uses separate fields for inflows and outflows, you can use+\f[C]amountN-in\f[R] and \f[C]amountN-out\f[R] instead.+By assigning to \f[C]amount1\f[R], \f[C]amount2\f[R], ...+etc.+you can generate anywhere from 0 to 99 postings.+.PP+There is also an older, unnumbered form of these names, suitable for+2-posting transactions, which sets both posting 1\[aq]s and (negated)+posting 2\[aq]s amount: \f[C]amount\f[R], or \f[C]amount-in\f[R] and+\f[C]amount-out\f[R].+This is still supported because it keeps pre-hledger-1.17 csv rules+files working, and because it can be more succinct, and because it+converts posting 2\[aq]s amount to cost if there\[aq]s a transaction+price, which can be useful.+.PP+If you have an existing rules file using the unnumbered form, you might+want to use the numbered form in certain conditional blocks, without+having to update and retest all the old rules.+To facilitate this, posting 1 ignores+\f[C]amount\f[R]/\f[C]amount-in\f[R]/\f[C]amount-out\f[R] if any of+\f[C]amount1\f[R]/\f[C]amount1-in\f[R]/\f[C]amount1-out\f[R] are+assigned, and posting 2 ignores them if any of+\f[C]amount2\f[R]/\f[C]amount2-in\f[R]/\f[C]amount2-out\f[R] are+assigned, avoiding conflicts.+.SS currency+.PP+If the CSV has the currency symbol in a separate field (ie, not part of+the amount field), you can use \f[C]currencyN\f[R] to prepend it to+posting N\[aq]s amount.+Or, \f[C]currency\f[R] with no number affects all postings.+.SS balance+.PP+\f[C]balanceN\f[R] sets a balance assertion amount (or if the posting+amount is left empty, a balance assignment) on posting N.+.PP+Also, for compatibility with hledger <1.17: \f[C]balance\f[R] with no+number is equivalent to \f[C]balance1\f[R].+.PP+You can adjust the type of assertion/assignment with the+\f[C]balance-type\f[R] rule (see below).+.SS comment+.PP+Finally, \f[C]commentN\f[R] sets a comment on the Nth posting.+Comments can also contain tags, as usual.+.PP+See TIPS below for more about setting amounts and currency.+.SS field assignment+.IP+.nf+\f[C]+HLEDGERFIELDNAME FIELDVALUE+\f[R]+.fi+.PP+Instead of or in addition to a fields list, you can use a \[dq]field+assignment\[dq] rule to set the value of a single hledger field, by+writing its name (any of the standard hledger field names above)+followed by a text value.+The value may contain interpolated CSV fields, referenced by their+1-based position in the CSV record (\f[C]%N\f[R]), or by the name they+were given in the fields list (\f[C]%CSVFIELDNAME\f[R]).+Some examples:+.IP+.nf+\f[C]+# set the amount to the 4th CSV field, with \[dq] USD\[dq] appended+amount %4 USD++# combine three fields to make a comment, containing note: and date: tags+comment note: %somefield - %anotherfield, date: %1+\f[R]+.fi+.PP+Interpolation strips outer whitespace (so a CSV value like+\f[C]\[dq] 1 \[dq]\f[R] becomes \f[C]1\f[R] when interpolated) (#1051).+See TIPS below for more about referencing other fields.+.SS \f[C]separator\f[R]+.PP+You can use the \f[C]separator\f[R] rule to read other kinds of+character-separated data.+The argument is any single separator character, or the words+\f[C]tab\f[R] or \f[C]space\f[R] (case insensitive).+Eg, for comma-separated values (CSV):+.IP+.nf+\f[C]+separator ,+\f[R]+.fi+.PP+or for semicolon-separated values (SSV):+.IP+.nf+\f[C]+separator ;+\f[R]+.fi+.PP+or for tab-separated values (TSV):+.IP+.nf+\f[C]+separator TAB+\f[R]+.fi+.PP+If the input file has a \f[C].csv\f[R], \f[C].ssv\f[R] or \f[C].tsv\f[R]+file extension (or a \f[C]csv:\f[R], \f[C]ssv:\f[R], \f[C]tsv:\f[R]+prefix), the appropriate separator will be inferred automatically, and+you won\[aq]t need this rule.+.SS \f[C]if\f[R] block+.IP+.nf+\f[C]+if MATCHER+ RULE++if+MATCHER+MATCHER+MATCHER+ RULE+ RULE+\f[R]+.fi+.PP+Conditional blocks (\[dq]if blocks\[dq]) are a block of rules that are+applied only to CSV records which match certain patterns.+They are often used for customising account names based on transaction+descriptions.+.SS Matching the whole record+.PP+Each MATCHER can be a record matcher, which looks like this:+.IP+.nf+\f[C]+REGEX+\f[R]+.fi+.PP+REGEX is a case-insensitive regular expression which tries to match+anywhere within the CSV record.+It is a POSIX ERE (extended regular expression) that also supports GNU+word boundaries (\f[C]\[rs]b\f[R], \f[C]\[rs]B\f[R], \f[C]\[rs]<\f[R],+\f[C]\[rs]>\f[R]), and nothing else.+If you have trouble, be sure to check our+https://hledger.org/hledger.html#regular-expressions doc.+.PP+Important note: the record that is matched is not the original record,+but a synthetic one, with any enclosing double quotes (but not enclosing+whitespace) removed, and always comma-separated (which means that a+field containing a comma will appear like two fields).+Eg, if the original record is+\f[C]2020-01-01; \[dq]Acme, Inc.\[dq]; 1,000\f[R], the REGEX will+actually see \f[C]2020-01-01,Acme, Inc., 1,000\f[R]).+.SS Matching individual fields+.PP+Or, MATCHER can be a field matcher, like this:+.IP+.nf+\f[C]+%CSVFIELD REGEX+\f[R]+.fi+.PP+which matches just the content of a particular CSV field.+CSVFIELD is a percent sign followed by the field\[aq]s name or column+number, like \f[C]%date\f[R] or \f[C]%1\f[R].+.SS Combining matchers+.PP+A single matcher can be written on the same line as the \[dq]if\[dq]; or+multiple matchers can be written on the following lines, non-indented.+Multiple matchers are OR\[aq]d (any one of them can match), unless one+begins with an \f[C]&\f[R] symbol, in which case it is AND\[aq]ed with+the previous matcher.+.IP+.nf+\f[C]+if+MATCHER+& MATCHER+ RULE+\f[R]+.fi+.SS Rules applied on successful match+.PP+After the patterns there should be one or more rules to apply, all+indented by at least one space.+Three kinds of rule are allowed in conditional blocks:+.IP \[bu] 2+field assignments (to set a hledger field)+.IP \[bu] 2+skip (to skip the matched CSV record)+.IP \[bu] 2+end (to skip all remaining CSV records).+.PP+Examples:+.IP+.nf+\f[C]+# if the CSV record contains \[dq]groceries\[dq], set account2 to \[dq]expenses:groceries\[dq]+if groceries+ account2 expenses:groceries+\f[R]+.fi+.IP+.nf+\f[C]+# if the CSV record contains any of these patterns, set account2 and comment as shown+if+monthly service fee+atm transaction fee+banking thru software+ account2 expenses:business:banking+ comment XXX deductible ? check it+\f[R]+.fi+.SS \f[C]if\f[R] table+.IP+.nf+\f[C]+if,CSVFIELDNAME1,CSVFIELDNAME2,...,CSVFIELDNAMEn+MATCHER1,VALUE11,VALUE12,...,VALUE1n+MATCHER2,VALUE21,VALUE22,...,VALUE2n+MATCHER3,VALUE31,VALUE32,...,VALUE3n+<empty line>+\f[R]+.fi+.PP+Conditional tables (\[dq]if tables\[dq]) are a different syntax to+specify field assignments that will be applied only to CSV records which+match certain patterns.+.PP+MATCHER could be either field or record matcher, as described above.+When MATCHER matches, values from that row would be assigned to the CSV+fields named on the \f[C]if\f[R] line, in the same order.+.PP+Therefore \f[C]if\f[R] table is exactly equivalent to a sequence of of+\f[C]if\f[R] blocks:+.IP+.nf+\f[C]+if MATCHER1+ CSVFIELDNAME1 VALUE11+ CSVFIELDNAME2 VALUE12+ ...+ CSVFIELDNAMEn VALUE1n++if MATCHER2+ CSVFIELDNAME1 VALUE21+ CSVFIELDNAME2 VALUE22+ ...+ CSVFIELDNAMEn VALUE2n++if MATCHER3+ CSVFIELDNAME1 VALUE31+ CSVFIELDNAME2 VALUE32+ ...+ CSVFIELDNAMEn VALUE3n+\f[R]+.fi+.PP+Each line starting with MATCHER should contain enough (possibly empty)+values for all the listed fields.+.PP+Rules would be checked and applied in the order they are listed in the+table and, like with \f[C]if\f[R] blocks, later rules (in the same or+another table) or \f[C]if\f[R] blocks could override the effect of any+rule.+.PP+Instead of \[aq],\[aq] you can use a variety of other non-alphanumeric+characters as a separator.+First character after \f[C]if\f[R] is taken to be the separator for the+rest of the table.+It is the responsibility of the user to ensure that separator does not+occur inside MATCHERs and values - there is no way to escape separator.+.PP+Example:+.IP+.nf+\f[C]+if,account2,comment+atm transaction fee,expenses:business:banking,deductible? check it+%description groceries,expenses:groceries,+2020/01/12.*Plumbing LLC,expenses:house:upkeep,emergency plumbing call-out+\f[R]+.fi+.SS \f[C]end\f[R]+.PP+This rule can be used inside if blocks (only), to make hledger stop+reading this CSV file and move on to the next input file, or to command+execution.+Eg:+.IP+.nf+\f[C]+# ignore everything following the first empty record+if ,,,,+ end+\f[R]+.fi+.SS \f[C]date-format\f[R]+.IP+.nf+\f[C]+date-format DATEFMT+\f[R]+.fi+.PP+This is a helper for the \f[C]date\f[R] (and \f[C]date2\f[R]) fields.+If your CSV dates are not formatted like \f[C]YYYY-MM-DD\f[R],+\f[C]YYYY/MM/DD\f[R] or \f[C]YYYY.MM.DD\f[R], you\[aq]ll need to add a+date-format rule describing them with a strptime date parsing pattern,+which must parse the CSV date value completely.+Some examples:+.IP+.nf+\f[C]+# MM/DD/YY+date-format %m/%d/%y+\f[R]+.fi+.IP+.nf+\f[C]+# D/M/YYYY+# The - makes leading zeros optional.+date-format %-d/%-m/%Y+\f[R]+.fi+.IP+.nf+\f[C]+# YYYY-Mmm-DD+date-format %Y-%h-%d+\f[R]+.fi+.IP+.nf+\f[C]+# M/D/YYYY HH:MM AM some other junk+# Note the time and junk must be fully parsed, though only the date is used.+date-format %-m/%-d/%Y %l:%M %p some other junk+\f[R]+.fi+.PP+For the supported strptime syntax, see:+.PD 0+.P+.PD+https://hackage.haskell.org/package/time/docs/Data-Time-Format.html#v:formatTime+.SS \f[C]decimal-mark\f[R]+.IP+.nf+\f[C]+decimal-mark .+\f[R]+.fi+.PP+or:+.IP+.nf+\f[C]+decimal-mark ,+\f[R]+.fi+.PP+hledger automatically accepts either period or comma as a decimal mark+when parsing numbers (cf Amounts).+However if any numbers in the CSV contain digit group marks, such as+thousand-separating commas, you should declare the decimal mark+explicitly with this rule, to avoid misparsed numbers.+.SS \f[C]newest-first\f[R]+.PP+hledger always sorts the generated transactions by date.+Transactions on the same date should appear in the same order as their+CSV records, as hledger can usually auto-detect whether the CSV\[aq]s+normal order is oldest first or newest first.+But if all of the following are true:+.IP \[bu] 2+the CSV might sometimes contain just one day of data (all records having+the same date)+.IP \[bu] 2+the CSV records are normally in reverse chronological order (newest at+the top)+.IP \[bu] 2+and you care about preserving the order of same-day transactions+.PP+then, you should add the \f[C]newest-first\f[R] rule as a hint.+Eg:+.IP+.nf+\f[C]+# tell hledger explicitly that the CSV is normally newest first+newest-first+\f[R]+.fi+.SS \f[C]include\f[R]+.IP+.nf+\f[C]+include RULESFILE+\f[R]+.fi+.PP+This includes the contents of another CSV rules file at this point.+\f[C]RULESFILE\f[R] is an absolute file path or a path relative to the+current file\[aq]s directory.+This can be useful for sharing common rules between several rules files,+eg:+.IP+.nf+\f[C]+# someaccount.csv.rules++## someaccount-specific rules+fields date,description,amount+account1 assets:someaccount+account2 expenses:misc++## common rules+include categorisation.rules+\f[R]+.fi+.SS \f[C]balance-type\f[R]+.PP+Balance assertions generated by assigning to balanceN are of the simple+\f[C]=\f[R] type by default, which is a single-commodity,+subaccount-excluding assertion.+You may find the subaccount-including variants more useful, eg if you+have created some virtual subaccounts of checking to help with+budgeting.+You can select a different type of assertion with the+\f[C]balance-type\f[R] rule:+.IP+.nf+\f[C]+# balance assertions will consider all commodities and all subaccounts+balance-type ==*+\f[R]+.fi+.PP+Here are the balance assertion types for quick reference:+.IP+.nf+\f[C]+= single commodity, exclude subaccounts+=* single commodity, include subaccounts+== multi commodity, exclude subaccounts+==* multi commodity, include subaccounts+\f[R]+.fi+.SS Tips+.SS Rapid feedback+.PP+It\[aq]s a good idea to get rapid feedback while+creating/troubleshooting CSV rules.+Here\[aq]s a good way, using entr from http://eradman.com/entrproject :+.IP+.nf+\f[C]+$ ls foo.csv* | entr bash -c \[aq]echo ----; hledger -f foo.csv print desc:SOMEDESC\[aq]+\f[R]+.fi+.PP+A desc: query (eg) is used to select just one, or a few, transactions of+interest.+\[dq]bash -c\[dq] is used to run multiple commands, so we can echo a+separator each time the command re-runs, making it easier to read the+output.+.SS Valid CSV+.PP+hledger accepts CSV conforming to RFC 4180.+When CSV values are enclosed in quotes, note:+.IP \[bu] 2+they must be double quotes (not single quotes)+.IP \[bu] 2+spaces outside the quotes are not allowed+.SS File Extension+.PP+To help hledger identify the format and show the right error messages,+CSV/SSV/TSV files should normally be named with a \f[C].csv\f[R],+\f[C].ssv\f[R] or \f[C].tsv\f[R] filename extension.+Or, the file path should be prefixed with \f[C]csv:\f[R], \f[C]ssv:\f[R]+or \f[C]tsv:\f[R].+Eg:+.IP+.nf+\f[C]+$ hledger -f foo.ssv print+\f[R]+.fi+.PP+or:+.IP+.nf+\f[C]+$ cat foo | hledger -f ssv:- foo+\f[R]+.fi+.PP+You can override the file extension with a separator rule if needed.+See also: Input files in the hledger manual.+.SS Reading multiple CSV files+.PP+If you use multiple \f[C]-f\f[R] options to read multiple CSV files at+once, hledger will look for a correspondingly-named rules file for each+CSV file.+But if you use the \f[C]--rules-file\f[R] option, that rules file will+be used for all the CSV files.+.SS Valid transactions+.PP+After reading a CSV file, hledger post-processes and validates the+generated journal entries as it would for a journal file - balancing+them, applying balance assignments, and canonicalising amount styles.+Any errors at this stage will be reported in the usual way, displaying+the problem entry.+.PP+There is one exception: balance assertions, if you have generated them,+will not be checked, since normally these will work only when the CSV+data is part of the main journal.+If you do need to check balance assertions generated from CSV right+away, pipe into another hledger:+.IP+.nf+\f[C]+$ hledger -f file.csv print | hledger -f- print+\f[R]+.fi+.SS Deduplicating, importing+.PP+When you download a CSV file periodically, eg to get your latest bank+transactions, the new file may overlap with the old one, containing some+of the same records.+.PP+The import command will (a) detect the new transactions, and (b) append+just those transactions to your main journal.+It is idempotent, so you don\[aq]t have to remember how many times you+ran it or with which version of the CSV.+(It keeps state in a hidden \f[C].latest.FILE.csv\f[R] file.) This is+the easiest way to import CSV data.+Eg:+.IP+.nf+\f[C]+# download the latest CSV files, then run this command.+# Note, no -f flags needed here.+$ hledger import *.csv [--dry]+\f[R]+.fi+.PP+This method works for most CSV files.+(Where records have a stable chronological order, and new records appear+only at the new end.)+.PP+A number of other tools and workflows, hledger-specific and otherwise,+exist for converting, deduplicating, classifying and managing CSV data.+See:+.IP \[bu] 2+https://hledger.org -> sidebar -> real world setups+.IP \[bu] 2+https://plaintextaccounting.org -> data import/conversion+.SS Setting amounts+.PP+Some tips on using the amount-setting rules discussed above.+.PP+Here are the ways to set a posting\[aq]s amount:+.IP "1." 3+\f[B]If the CSV has a single amount field:\f[R]+.PD 0+.P+.PD+Assign (via a fields list or a field assignment) to \f[C]amountN\f[R].+This sets the Nth posting\[aq]s amount.+N is usually 1 or 2 but can go up to 99.+.IP "2." 3+\f[B]If the CSV has separate Debit and Credit amount fields:\f[R]+.PD 0+.P+.PD+Assign to \f[C]amountN-in\f[R] and \f[C]amountN-out\f[R].+This sets posting N\[aq]s amount to whichever of these has a non-zero+value, guessing an appropriate sign.+.RS 4+.IP \[bu] 2+\f[B]If hledger guesses the wrong sign:\f[R]+.PD 0+.P+.PD+Prepend a minus sign to flip it.+Eg:+.RS 2+.IP+.nf+\f[C]+fields date, description, amount-in, amount-out+amount-out -%amount-out+\f[R]+.fi+.RE+.IP \[bu] 2+\f[B]If both fields contain a non-zero value:\f[R]+.PD 0+.P+.PD+The \f[C]amountN-in\f[R]/\f[C]amountN-out\f[R] rules require that each+CSV record has a non-zero value in exactly one of the two fields, so+that hledger knows which to choose.+So these would all be rejected:+.RS 2+.IP+.nf+\f[C]+\[dq]\[dq], \[dq]\[dq]+\[dq]0\[dq], \[dq]0\[dq]+\[dq]1\[dq], \[dq]none\[dq]+\f[R]+.fi+.PP+If your CSV has amount values like this, use conditional rules instead.+For example, to make hledger to choose the value containing non-zero+digits:+.IP+.nf+\f[C]+fields date, description, in, out+if %in [1-9]+ amount1 %in+if %out [1-9]+ amount1 %out+\f[R]+.fi+.RE+.RE+.IP "3." 3+\f[B]Using the old numberless syntax:\f[R]+.PD 0+.P+.PD+Assign to \f[C]amount\f[R] (or to \f[C]amount-in\f[R] and+\f[C]amount-out\f[R]).+This sets posting 1\[aq]s and posting 2\[aq]s amounts (and converts+posting 2\[aq]s amount to cost).+This is supported for backwards compatibility (and occasional+convenience).+.IP "4." 3+\f[B]If the CSV has the balance instead of the transaction amount:\f[R]+.PD 0+.P+.PD+Assign to \f[C]balanceN\f[R], which sets posting N\[aq]s amount+indirectly via a balance assignment.+(Old syntax: \f[C]balance\f[R], equivalent to \f[C]balance1\f[R].)+.RS 4+.IP \[bu] 2+\f[B]If hledger guesses the wrong default account name:\f[R]+.PD 0+.P+.PD+When setting the amount via balance assertion, hledger may guess the+wrong default account name.+So, set the account name explicitly, eg:+.RS 2+.IP+.nf+\f[C]+fields date, description, balance1+account1 assets:checking+\f[R]+.fi+.RE+.RE+.SS Amount signs+.PP+There is some special handling for amount signs, to simplify parsing and+sign-flipping:+.IP \[bu] 2+\f[B]If an amount value begins with a plus sign:\f[R]+.PD 0+.P+.PD+that will be removed: \f[C]+AMT\f[R] becomes \f[C]AMT\f[R]+.IP \[bu] 2+\f[B]If an amount value is parenthesised:\f[R]+.PD 0+.P+.PD+it will be de-parenthesised and sign-flipped: \f[C](AMT)\f[R] becomes+\f[C]-AMT\f[R]+.IP \[bu] 2+\f[B]If an amount value has two minus signs (or two sets of parentheses,+or a minus sign and parentheses):\f[R]+.PD 0+.P+.PD+they cancel out and will be removed: \f[C]--AMT\f[R] or \f[C]-(AMT)\f[R]+becomes \f[C]AMT\f[R]+.IP \[bu] 2+\f[B]If an amount value contains just a sign (or just a set of+parentheses):\f[R]+.PD 0+.P+.PD+that is removed, making it an empty value.+\f[C]\[dq]+\[dq]\f[R] or \f[C]\[dq]-\[dq]\f[R] or \f[C]\[dq]()\[dq]\f[R]+becomes \f[C]\[dq]\[dq]\f[R].+.SS Setting currency/commodity+.PP+If the currency/commodity symbol is included in the CSV\[aq]s amount+field(s):+.IP+.nf+\f[C]+2020-01-01,foo,$123.00+\f[R]+.fi+.PP+you don\[aq]t have to do anything special for the commodity symbol, it+will be assigned as part of the amount.+Eg:+.IP+.nf+\f[C]+fields date,description,amount+\f[R]+.fi+.IP+.nf+\f[C]+2020-01-01 foo+ expenses:unknown $123.00+ income:unknown $-123.00+\f[R]+.fi+.PP+If the currency is provided as a separate CSV field:+.IP+.nf+\f[C]+2020-01-01,foo,USD,123.00+\f[R]+.fi+.PP+You can assign that to the \f[C]currency\f[R] pseudo-field, which has+the special effect of prepending itself to every amount in the+transaction (on the left, with no separating space):+.IP+.nf+\f[C]+fields date,description,currency,amount+\f[R]+.fi+.IP+.nf+\f[C]+2020-01-01 foo+ expenses:unknown USD123.00+ income:unknown USD-123.00+\f[R]+.fi+.PP+Or, you can use a field assignment to construct the amount yourself,+with more control.+Eg to put the symbol on the right, and separated by a space:+.IP+.nf+\f[C]+fields date,description,cur,amt+amount %amt %cur+\f[R]+.fi+.IP+.nf+\f[C]+2020-01-01 foo+ expenses:unknown 123.00 USD+ income:unknown -123.00 USD+\f[R]+.fi+.PP+Note we used a temporary field name (\f[C]cur\f[R]) that is not+\f[C]currency\f[R] - that would trigger the prepending effect, which we+don\[aq]t want here.+.SS Amount decimal places+.PP+Like amounts in a journal file, the amounts generated by CSV rules like+\f[C]amount1\f[R] influence commodity display styles, such as the number+of decimal places displayed in reports.+.PP+The original amounts as written in the CSV file do not affect display+style (because we don\[aq]t yet reliably know their commodity).+.SS Referencing other fields+.PP+In field assignments, you can interpolate only CSV fields, not hledger+fields.+In the example below, there\[aq]s both a CSV field and a hledger field+named amount1, but %amount1 always means the CSV field, not the hledger+field:+.IP+.nf+\f[C]+# Name the third CSV field \[dq]amount1\[dq]+fields date,description,amount1++# Set hledger\[aq]s amount1 to the CSV amount1 field followed by USD+amount1 %amount1 USD++# Set comment to the CSV amount1 (not the amount1 assigned above)+comment %amount1+\f[R]+.fi+.PP+Here, since there\[aq]s no CSV amount1 field, %amount1 will produce a+literal \[dq]amount1\[dq]:+.IP+.nf+\f[C]+fields date,description,csvamount+amount1 %csvamount USD+# Can\[aq]t interpolate amount1 here+comment %amount1+\f[R]+.fi+.PP+When there are multiple field assignments to the same hledger field,+only the last one takes effect.+Here, comment\[aq]s value will be be B, or C if \[dq]something\[dq] is+matched, but never A:+.IP+.nf+\f[C]+comment A+comment B+if something+ comment C+\f[R]+.fi+.SS How CSV rules are evaluated+.PP+Here\[aq]s how to think of CSV rules being evaluated (if you really need+to).+First,+.IP \[bu] 2+\f[C]include\f[R] - all includes are inlined, from top to bottom, depth+first.+(At each include point the file is inlined and scanned for further+includes, recursively, before proceeding.)+.PP+Then \[dq]global\[dq] rules are evaluated, top to bottom.+If a rule is repeated, the last one wins:+.IP \[bu] 2+\f[C]skip\f[R] (at top level)+.IP \[bu] 2+\f[C]date-format\f[R]+.IP \[bu] 2+\f[C]newest-first\f[R]+.IP \[bu] 2+\f[C]fields\f[R] - names the CSV fields, optionally sets up initial+assignments to hledger fields+.PP+Then for each CSV record in turn:+.IP \[bu] 2+test all \f[C]if\f[R] blocks.+If any of them contain a \f[C]end\f[R] rule, skip all remaining CSV+records.+Otherwise if any of them contain a \f[C]skip\f[R] rule, skip that many+CSV records.+If there are multiple matched \f[C]skip\f[R] rules, the first one wins.+.IP \[bu] 2+collect all field assignments at top level and in matched \f[C]if\f[R]+blocks.+When there are multiple assignments for a field, keep only the last one.+.IP \[bu] 2+compute a value for each hledger field - either the one that was+assigned to it (and interpolate the %CSVFIELDNAME references), or a+default+.IP \[bu] 2+generate a synthetic hledger transaction from these values.+.PP+This is all part of the CSV reader, one of several readers hledger can+use to parse input files.+When all files have been read successfully, the transactions are passed+as input to whichever hledger command the user specified.+.SH TIMECLOCK FORMAT+.PP+The time logging format of timeclock.el, as read by hledger.+.PP+hledger can read time logs in timeclock format.+As with Ledger, these are (a subset of) timeclock.el\[aq]s format,+containing clock-in and clock-out entries as in the example below.+The date is a simple date.+The time format is HH:MM[:SS][+-ZZZZ].+Seconds and timezone are optional.+The timezone, if present, must be four digits and is ignored (currently+the time is always interpreted as a local time).+.IP+.nf+\f[C]+i 2015/03/30 09:00:00 some:account name optional description after two spaces+o 2015/03/30 09:20:00+i 2015/03/31 22:21:45 another account+o 2015/04/01 02:00:34+\f[R]+.fi+.PP+hledger treats each clock-in/clock-out pair as a transaction posting+some number of hours to an account.+Or if the session spans more than one day, it is split into several+transactions, one for each day.+For the above time log, \f[C]hledger print\f[R] generates these journal+entries:+.IP+.nf+\f[C]+$ hledger -f t.timeclock print+2015-03-30 * optional description after two spaces+ (some:account name) 0.33h++2015-03-31 * 22:21-23:59+ (another account) 1.64h++2015-04-01 * 00:00-02:00+ (another account) 2.01h+\f[R]+.fi+.PP+Here is a sample.timeclock to download and some queries to try:+.IP+.nf+\f[C]+$ hledger -f sample.timeclock balance # current time balances+$ hledger -f sample.timeclock register -p 2009/3 # sessions in march 2009+$ hledger -f sample.timeclock register -p weekly --depth 1 --empty # time summary by week+\f[R]+.fi+.PP+To generate time logs, ie to clock in and clock out, you could:+.IP \[bu] 2+use emacs and the built-in timeclock.el, or the extended timeclock-x.el+and perhaps the extras in ledgerutils.el+.IP \[bu] 2+at the command line, use these bash aliases:+\f[C]shell alias ti=\[dq]echo i \[ga]date \[aq]+%Y-%m-%d %H:%M:%S\[aq]\[ga] \[rs]$* >>$TIMELOG\[dq] alias to=\[dq]echo o \[ga]date \[aq]+%Y-%m-%d %H:%M:%S\[aq]\[ga] >>$TIMELOG\[dq]\f[R]+.IP \[bu] 2+or use the old \f[C]ti\f[R] and \f[C]to\f[R] scripts in the ledger 2.x+repository.+These rely on a \[dq]timeclock\[dq] executable which I think is just the+ledger 2 executable renamed.+.SH TIMEDOT FORMAT+.PP+hledger\[aq]s human-friendly time logging format.+.PP+Timedot is a plain text format for logging dated, categorised quantities+(of time, usually), supported by hledger.+It is convenient for approximate and retroactive time logging, eg when+the real-time clock-in/out required with a timeclock file is too precise+or too interruptive.+It can be formatted like a bar chart, making clear at a glance where+time was spent.+.PP+Though called \[dq]timedot\[dq], this format is read by hledger as+commodityless quantities, so it could be used to represent dated+quantities other than time.+In the docs below we\[aq]ll assume it\[aq]s time.+.PP+A timedot file contains a series of day entries.+A day entry begins with a non-indented hledger-style simple date (Y-M-D,+Y/M/D, Y.M.D..) Any additional text on the same line is used as a+transaction description for this day.+.PP+This is followed by optionally-indented timelog items for that day, one+per line.+Each timelog item is a note, usually a hledger:style:account:name+representing a time category, followed by two or more spaces, and a+quantity.+Each timelog item generates a hledger transaction.+.PP+Quantities can be written as:+.IP \[bu] 2+dots: a sequence of dots (.) representing quarter hours.+Spaces may optionally be used for grouping.+Eg: ....+\&..+.IP \[bu] 2+an integral or decimal number, representing hours.+Eg: 1.5+.IP \[bu] 2+an integral or decimal number immediately followed by a unit symbol+\f[C]s\f[R], \f[C]m\f[R], \f[C]h\f[R], \f[C]d\f[R], \f[C]w\f[R],+\f[C]mo\f[R], or \f[C]y\f[R], representing seconds, minutes, hours, days+weeks, months or years respectively.+Eg: 90m.+The following equivalencies are assumed, currently: 1m = 60s, 1h = 60m,+1d = 24h, 1w = 7d, 1mo = 30d, 1y=365d.+.PP+There is some flexibility allowing notes and todo lists to be kept right+in the time log, if needed:+.IP \[bu] 2+Blank lines and lines beginning with \f[C]#\f[R] or \f[C];\f[R] are+ignored.+.IP \[bu] 2+Lines not ending with a double-space and quantity are parsed as items+taking no time, which will not appear in balance reports by default.+(Add -E to see them.)+.IP \[bu] 2+Org mode headlines (lines beginning with one or more \f[C]*\f[R]+followed by a space) can be used as date lines or timelog items (the+stars are ignored).+Also all org headlines before the first date line are ignored.+This means org users can manage their timelog as an org outline (eg+using org-mode/orgstruct-mode in Emacs), for organisation, faster+navigation, controlling visibility etc.+.PP+Examples:+.IP+.nf+\f[C]+# on this day, 6h was spent on client work, 1.5h on haskell FOSS work, etc.+2016/2/1+inc:client1 .... .... .... .... .... ....+fos:haskell .... ..+biz:research .++2016/2/2+inc:client1 .... ....+biz:research .+\f[R]+.fi+.IP+.nf+\f[C]+2016/2/3+inc:client1 4+fos:hledger 3+biz:research 1+\f[R]+.fi+.IP+.nf+\f[C]+* Time log+** 2020-01-01+*** adm:time .+*** adm:finance .+\f[R]+.fi+.IP+.nf+\f[C]+* 2020 Work Diary+** Q1+*** 2020-02-29+**** DONE+0700 yoga+**** UNPLANNED+**** BEGUN+hom:chores+ cleaning ...+ water plants+ outdoor - one full watering can+ indoor - light watering+**** TODO+adm:planning: trip+*** LATER+\f[R]+.fi+.PP+Reporting:+.IP+.nf+\f[C]+$ hledger -f t.timedot print date:2016/2/2+2016-02-02 *+ (inc:client1) 2.00++2016-02-02 *+ (biz:research) 0.25+\f[R]+.fi+.IP+.nf+\f[C]+$ hledger -f t.timedot bal --daily --tree+Balance changes in 2016-02-01-2016-02-03:++ || 2016-02-01d 2016-02-02d 2016-02-03d +============++========================================+ biz || 0.25 0.25 1.00 + research || 0.25 0.25 1.00 + fos || 1.50 0 3.00 + haskell || 1.50 0 0 + hledger || 0 0 3.00 + inc || 6.00 2.00 4.00 + client1 || 6.00 2.00 4.00 +------------++----------------------------------------+ || 7.75 2.25 8.00 +\f[R]+.fi+.PP+I prefer to use period for separating account components.+We can make this work with an account alias:+.IP+.nf+\f[C]+2016/2/4+fos.hledger.timedot 4+fos.ledger ..+\f[R]+.fi+.IP+.nf+\f[C]+$ hledger -f t.timedot --alias /\[rs]\[rs]./=: bal date:2016/2/4 --tree+ 4.50 fos+ 4.00 hledger:timedot+ 0.50 ledger+--------------------+ 4.50+\f[R]+.fi+.PP+Here is a sample.timedot.+.SH COMMON TASKS+.PP+Here are some quick examples of how to do some basic tasks with hledger.+For more details, see the reference section below, the+hledger_journal(5) manual, or the more extensive docs at+https://hledger.org.+.SS Getting help+.IP+.nf+\f[C]+$ hledger # show available commands+$ hledger --help # show common options+$ hledger CMD --help # show common and command options, and command help+$ hledger help # show available manuals/topics+$ hledger help hledger # show hledger manual as info/man/text (auto-chosen)+$ hledger help journal --man # show the journal manual as a man page+$ hledger help --help # show more detailed help for the help command+\f[R]+.fi+.PP+Find more docs, chat, mail list, reddit, issue tracker:+https://hledger.org#help-feedback+.SS Constructing command lines+.PP+hledger has an extensive and powerful command line interface.+We strive to keep it simple and ergonomic, but you may run into one of+the confusing real world details described in OPTIONS, below.+If that happens, here are some tips that may help:+.IP \[bu] 2+command-specific options must go after the command (it\[aq]s fine to put+all options there) (\f[C]hledger CMD OPTS ARGS\f[R])+.IP \[bu] 2+running add-on executables directly simplifies command line parsing+(\f[C]hledger-ui OPTS ARGS\f[R])+.IP \[bu] 2+enclose \[dq]problematic\[dq] args in single quotes+.IP \[bu] 2+if needed, also add a backslash to hide regular expression+metacharacters from the shell+.IP \[bu] 2+to see how a misbehaving command is being parsed, add+\f[C]--debug=2\f[R].+.SS Starting a journal file+.PP+hledger looks for your accounting data in a journal file,+\f[C]$HOME/.hledger.journal\f[R] by default:+.IP+.nf+\f[C]+$ hledger stats+The hledger journal file \[dq]/Users/simon/.hledger.journal\[dq] was not found.+Please create it first, eg with \[dq]hledger add\[dq] or a text editor.+Or, specify an existing journal file with -f or LEDGER_FILE.+\f[R]+.fi+.PP+You can override this by setting the \f[C]LEDGER_FILE\f[R] environment+variable.+It\[aq]s a good practice to keep this important file under version+control, and to start a new file each year.+So you could do something like this:+.IP+.nf+\f[C]+$ mkdir \[ti]/finance+$ cd \[ti]/finance+$ git init+Initialized empty Git repository in /Users/simon/finance/.git/+$ touch 2020.journal+$ echo \[dq]export LEDGER_FILE=$HOME/finance/2020.journal\[dq] >> \[ti]/.bashrc+$ source \[ti]/.bashrc+$ hledger stats+Main file : /Users/simon/finance/2020.journal+Included files : +Transactions span : to (0 days)+Last transaction : none+Transactions : 0 (0.0 per day)+Transactions last 30 days: 0 (0.0 per day)+Transactions last 7 days : 0 (0.0 per day)+Payees/descriptions : 0+Accounts : 0 (depth 0)+Commodities : 0 ()+Market prices : 0 ()+\f[R]+.fi+.SS Setting opening balances+.PP+Pick a starting date for which you can look up the balances of some+real-world assets (bank accounts, wallet..) and liabilities (credit+cards..).+.PP+To avoid a lot of data entry, you may want to start with just one or two+accounts, like your checking account or cash wallet; and pick a recent+starting date, like today or the start of the week.+You can always come back later and add more accounts and older+transactions, eg going back to january 1st.+.PP+Add an opening balances transaction to the journal, declaring the+balances on this date.+Here are two ways to do it:+.IP \[bu] 2+The first way: open the journal in any text editor and save an entry+like this:+.RS 2+.IP+.nf+\f[C]+2020-01-01 * opening balances+ assets:bank:checking $1000 = $1000+ assets:bank:savings $2000 = $2000+ assets:cash $100 = $100+ liabilities:creditcard $-50 = $-50+ equity:opening/closing balances+\f[R]+.fi+.PP+These are start-of-day balances, ie whatever was in the account at the+end of the previous day.+.PP+The * after the date is an optional status flag.+Here it means \[dq]cleared & confirmed\[dq].+.PP+The currency symbols are optional, but usually a good idea as you\[aq]ll+be dealing with multiple currencies sooner or later.+.PP+The = amounts are optional balance assertions, providing extra error+checking.+.RE+.IP \[bu] 2+The second way: run \f[C]hledger add\f[R] and follow the prompts to+record a similar transaction:+.RS 2+.IP+.nf+\f[C]+$ hledger add+Adding transactions to journal file /Users/simon/finance/2020.journal+Any command line arguments will be used as defaults.+Use tab key to complete, readline keys to edit, enter to accept defaults.+An optional (CODE) may follow transaction dates.+An optional ; COMMENT may follow descriptions or amounts.+If you make a mistake, enter < at any prompt to go one step backward.+To end a transaction, enter . when prompted.+To quit, enter . at a date prompt or press control-d or control-c.+Date [2020-02-07]: 2020-01-01+Description: * opening balances+Account 1: assets:bank:checking+Amount 1: $1000+Account 2: assets:bank:savings+Amount 2 [$-1000]: $2000+Account 3: assets:cash+Amount 3 [$-3000]: $100+Account 4: liabilities:creditcard+Amount 4 [$-3100]: $-50+Account 5: equity:opening/closing balances+Amount 5 [$-3050]: +Account 6 (or . or enter to finish this transaction): .+2020-01-01 * opening balances+ assets:bank:checking $1000+ assets:bank:savings $2000+ assets:cash $100+ liabilities:creditcard $-50+ equity:opening/closing balances $-3050++Save this transaction to the journal ? [y]: +Saved.+Starting the next transaction (. or ctrl-D/ctrl-C to quit)+Date [2020-01-01]: .+\f[R]+.fi+.RE+.PP+If you\[aq]re using version control, this could be a good time to commit+the journal.+Eg:+.IP+.nf+\f[C]+$ git commit -m \[aq]initial balances\[aq] 2020.journal+\f[R]+.fi+.SS Recording transactions+.PP+As you spend or receive money, you can record these transactions using+one of the methods above (text editor, hledger add) or by using the+hledger-iadd or hledger-web add-ons, or by using the import command to+convert CSV data downloaded from your bank.+.PP+Here are some simple transactions, see the hledger_journal(5) manual and+hledger.org for more ideas:+.IP+.nf+\f[C]+2020/1/10 * gift received+ assets:cash $20+ income:gifts++2020.1.12 * farmers market+ expenses:food $13+ assets:cash++2020-01-15 paycheck+ income:salary+ assets:bank:checking $1000+\f[R]+.fi+.SS Reconciling+.PP+Periodically you should reconcile - compare your hledger-reported+balances against external sources of truth, like bank statements or your+bank\[aq]s website - to be sure that your ledger accurately represents+the real-world balances (and, that the real-world institutions have not+made a mistake!).+This gets easy and fast with (1) practice and (2) frequency.+If you do it daily, it can take 2-10 minutes.+If you let it pile up, expect it to take longer as you hunt down errors+and discrepancies.+.PP+A typical workflow:+.IP "1." 3+Reconcile cash.+Count what\[aq]s in your wallet.+Compare with what hledger reports (\f[C]hledger bal cash\f[R]).+If they are different, try to remember the missing transaction, or look+for the error in the already-recorded transactions.+A register report can be helpful (\f[C]hledger reg cash\f[R]).+If you can\[aq]t find the error, add an adjustment transaction.+Eg if you have $105 after the above, and can\[aq]t explain the missing+$2, it could be:+.RS 4+.IP+.nf+\f[C]+2020-01-16 * adjust cash+ assets:cash $-2 = $105+ expenses:misc+\f[R]+.fi+.RE+.IP "2." 3+Reconcile checking.+Log in to your bank\[aq]s website.+Compare today\[aq]s (cleared) balance with hledger\[aq]s cleared balance+(\f[C]hledger bal checking -C\f[R]).+If they are different, track down the error or record the missing+transaction(s) or add an adjustment transaction, similar to the above.+Unlike the cash case, you can usually compare the transaction history+and running balance from your bank with the one reported by+\f[C]hledger reg checking -C\f[R].+This will be easier if you generally record transaction dates quite+similar to your bank\[aq]s clearing dates.+.IP "3." 3+Repeat for other asset/liability accounts.+.PP+Tip: instead of the register command, use hledger-ui to see a+live-updating register while you edit the journal:+\f[C]hledger-ui --watch --register checking -C\f[R]+.PP+After reconciling, it could be a good time to mark the reconciled+transactions\[aq] status as \[dq]cleared and confirmed\[dq], if you want+to track that, by adding the \f[C]*\f[R] marker.+Eg in the paycheck transaction above, insert \f[C]*\f[R] between+\f[C]2020-01-15\f[R] and \f[C]paycheck\f[R]+.PP+If you\[aq]re using version control, this can be another good time to+commit:+.IP+.nf+\f[C]+$ git commit -m \[aq]txns\[aq] 2020.journal+\f[R]+.fi+.SS Reporting+.PP+Here are some basic reports.+.PP+Show all transactions:+.IP+.nf+\f[C]+$ hledger print+2020-01-01 * opening balances+ assets:bank:checking $1000+ assets:bank:savings $2000+ assets:cash $100+ liabilities:creditcard $-50+ equity:opening/closing balances $-3050++2020-01-10 * gift received+ assets:cash $20+ income:gifts++2020-01-12 * farmers market+ expenses:food $13+ assets:cash++2020-01-15 * paycheck+ income:salary+ assets:bank:checking $1000++2020-01-16 * adjust cash+ assets:cash $-2 = $105+ expenses:misc+\f[R]+.fi+.PP+Show account names, and their hierarchy:+.IP+.nf+\f[C]+$ hledger accounts --tree+assets+ bank+ checking+ savings+ cash+equity+ opening/closing balances+expenses+ food+ misc+income+ gifts+ salary+liabilities+ creditcard+\f[R]+.fi+.PP+Show all account totals:+.IP+.nf+\f[C]+$ hledger balance+ $4105 assets+ $4000 bank+ $2000 checking+ $2000 savings+ $105 cash+ $-3050 equity:opening/closing balances+ $15 expenses+ $13 food+ $2 misc+ $-1020 income+ $-20 gifts+ $-1000 salary+ $-50 liabilities:creditcard+--------------------+ 0+\f[R]+.fi+.PP+Show only asset and liability balances, as a flat list, limited to depth+2:+.IP+.nf+\f[C]+$ hledger bal assets liabilities --flat -2+ $4000 assets:bank+ $105 assets:cash+ $-50 liabilities:creditcard+--------------------+ $4055+\f[R]+.fi+.PP+Show the same thing without negative numbers, formatted as a simple+balance sheet:+.IP+.nf+\f[C]+$ hledger bs --flat -2+Balance Sheet 2020-01-16++ || 2020-01-16 +========================++============+ Assets || +------------------------++------------+ assets:bank || $4000 + assets:cash || $105 +------------------------++------------+ || $4105 +========================++============+ Liabilities || +------------------------++------------+ liabilities:creditcard || $50 +------------------------++------------+ || $50 +========================++============+ Net: || $4055 +\f[R]+.fi+.PP+The final total is your \[dq]net worth\[dq] on the end date.+(Or use \f[C]bse\f[R] for a full balance sheet with equity.)+.PP+Show income and expense totals, formatted as an income statement:+.IP+.nf+\f[C]+hledger is +Income Statement 2020-01-01-2020-01-16++ || 2020-01-01-2020-01-16 +===============++=======================+ Revenues || +---------------++-----------------------+ income:gifts || $20 + income:salary || $1000 +---------------++-----------------------+ || $1020 +===============++=======================+ Expenses || +---------------++-----------------------+ expenses:food || $13 + expenses:misc || $2 +---------------++-----------------------+ || $15 +===============++=======================+ Net: || $1005 +\f[R]+.fi+.PP+The final total is your net income during this period.+.PP+Show transactions affecting your wallet, with running total:+.IP+.nf+\f[C]+$ hledger register cash+2020-01-01 opening balances assets:cash $100 $100+2020-01-10 gift received assets:cash $20 $120+2020-01-12 farmers market assets:cash $-13 $107+2020-01-16 adjust cash assets:cash $-2 $105+\f[R]+.fi+.PP+Show weekly posting counts as a bar chart:+.IP+.nf+\f[C]+$ hledger activity -W+2019-12-30 *****+2020-01-06 ****+2020-01-13 ****+\f[R]+.fi+.SS Migrating to a new file+.PP+At the end of the year, you may want to continue your journal in a new+file, so that old transactions don\[aq]t slow down or clutter your+reports, and to help ensure the integrity of your accounting history.+See the close command.+.PP+If using version control, don\[aq]t forget to \f[C]git add\f[R] the new+file.+.SH LIMITATIONS+.PP+The need to precede add-on command options with \f[C]--\f[R] when+invoked from hledger is awkward.+.PP+When input data contains non-ascii characters, a suitable system locale+must be configured (or there will be an unhelpful error).+Eg on POSIX, set LANG to something other than C.+.PP+In a Microsoft Windows CMD window, non-ascii characters and colours are+not supported.+.PP+On Windows, non-ascii characters may not display correctly when running+a hledger built in CMD in MSYS/CYGWIN, or vice-versa.+.PP+In a Cygwin/MSYS/Mintty window, the tab key is not supported in hledger+add.+.PP+Not all of Ledger\[aq]s journal file syntax is supported.+See file format differences.+.PP+On large data files, hledger is slower and uses more memory than Ledger.+.SH TROUBLESHOOTING+.PP+Here are some issues you might encounter when you run hledger (and+remember you can also seek help from the IRC channel, mail list or bug+tracker):+.PP+\f[B]Successfully installed, but \[dq]No command \[aq]hledger\[aq]+found\[dq]\f[R]+.PD 0+.P+.PD+stack and cabal install binaries into a special directory, which should+be added to your PATH environment variable.+Eg on unix-like systems, that is \[ti]/.local/bin and \[ti]/.cabal/bin+respectively.+.PP+\f[B]I set a custom LEDGER_FILE, but hledger is still using the default+file\f[R]+.PD 0+.P+.PD+\f[C]LEDGER_FILE\f[R] should be a real environment variable, not just a+shell variable.+The command \f[C]env | grep LEDGER_FILE\f[R] should show it.+You may need to use \f[C]export\f[R].+Here\[aq]s an explanation.+.PP+\f[B]Getting errors like \[dq]Illegal byte sequence\[dq] or \[dq]Invalid+or incomplete multibyte or wide character\[dq] or+\[dq]commitAndReleaseBuffer: invalid argument (invalid+character)\[dq]\f[R]+.PD 0+.P+.PD+Programs compiled with GHC (hledger, haskell build tools, etc.) need to+have a UTF-8-aware locale configured in the environment, otherwise they+will fail with these kinds of errors when they encounter non-ascii+characters.+.PP+To fix it, set the LANG environment variable to some locale which+supports UTF-8.+The locale you choose must be installed on your system.+.PP+Here\[aq]s an example of setting LANG temporarily, on Ubuntu GNU/Linux:+.IP+.nf+\f[C]+$ file my.journal+my.journal: UTF-8 Unicode text # the file is UTF8-encoded+$ echo $LANG+C # LANG is set to the default locale, which does not support UTF8+$ locale -a # which locales are installed ?+C+en_US.utf8 # here\[aq]s a UTF8-aware one we can use+POSIX+$ LANG=en_US.utf8 hledger -f my.journal print # ensure it is used for this command+\f[R]+.fi+.PP+If available, \f[C]C.UTF-8\f[R] will also work.+If your preferred locale isn\[aq]t listed by \f[C]locale -a\f[R], you+might need to install it.+Eg on Ubuntu/Debian:+.IP+.nf+\f[C]+$ apt-get install language-pack-fr+$ locale -a+C+en_US.utf8+fr_BE.utf8+fr_CA.utf8+fr_CH.utf8+fr_FR.utf8+fr_LU.utf8+POSIX+$ LANG=fr_FR.utf8 hledger -f my.journal print+\f[R]+.fi+.PP+Here\[aq]s how you could set it permanently, if you use a bash shell:+.IP+.nf+\f[C]+$ echo \[dq]export LANG=en_US.utf8\[dq] >>\[ti]/.bash_profile+$ bash --login+\f[R]+.fi+.PP+Exact spelling and capitalisation may be important.+Note the difference on MacOS (\f[C]UTF-8\f[R], not \f[C]utf8\f[R]).+Some platforms (eg ubuntu) allow variant spellings, but others (eg+macos) require it to be exact:+.IP+.nf+\f[C]+$ locale -a | grep -iE en_us.*utf+en_US.UTF-8+$ LANG=en_US.UTF-8 hledger -f my.journal print+\f[R]+.fi+++.SH "REPORTING BUGS"+Report bugs at http://bugs.hledger.org+(or on the #hledger IRC channel or hledger mail list)++.SH AUTHORS+Simon Michael <simon@joyful.com> and contributors++.SH COPYRIGHT++Copyright (C) 2007-2020 Simon Michael.+.br+Released under GNU GPL v3 or later.++.SH SEE ALSO+hledger(1), hledger\-ui(1), hledger\-web(1), ledger(1)
embeddedfiles/hledger.info view
@@ -7,4613 +7,9052 @@ hledger(1) ********** -A command-line accounting tool for both power users and folks new to-accounting.-- `hledger'-- `hledger [-f FILE] COMMAND [OPTIONS] [ARGS]'-- `hledger [-f FILE] ADDONCMD -- [OPTIONS] [ARGS]'-- hledger is a reliable, cross-platform set of programs for tracking-money, time, or any other commodity, using double-entry accounting and a-simple, editable file format. hledger is inspired by and largely-compatible with ledger(1).-- This is hledger's command-line interface (there are also terminal and-web interfaces). Its basic function is to read a plain text file-describing financial transactions (in accounting terms, a general-journal) and print useful reports on standard output, or export them as-CSV. hledger can also read some other file formats such as CSV files,-translating them to journal format. Additionally, hledger lists other-hledger-* executables found in the user's $PATH and can invoke them as-subcommands.-- hledger reads data from one or more files in hledger journal,-timeclock, timedot, or CSV format specified with `-f', or-`$LEDGER_FILE', or `$HOME/.hledger.journal' (on windows, perhaps-`C:/Users/USER/.hledger.journal'). If using `$LEDGER_FILE', note this-must be a real environment variable, not a shell variable. You can-specify standard input with `-f-'.-- Transactions are dated movements of money between two (or more) named-accounts, and are recorded with journal entries like this:---2015/10/16 bought food- expenses:food $10- assets:cash-- For more about this format, see hledger_journal(5).-- Most users use a text editor to edit the journal, usually with an-editor mode such as ledger-mode for added convenience. hledger's-interactive add command is another way to record new transactions.-hledger never changes existing transactions.-- To get started, you can either save some entries like the above in-`~/.hledger.journal', or run `hledger add' and follow the prompts. Then-try some commands like `hledger print' or `hledger balance'. Run-`hledger' with no arguments for a list of commands.--* Menu:--* COMMON TASKS::-* OPTIONS::-* COMMANDS::-* ENVIRONMENT::-* FILES::-* LIMITATIONS::-* TROUBLESHOOTING::---File: hledger.info, Node: COMMON TASKS, Next: OPTIONS, Prev: Top, Up: Top--1 COMMON TASKS-**************--Here are some quick examples of how to do some basic tasks with hledger.-For more details, see the reference section below, the-hledger_journal(5) manual, or the more extensive docs at-https://hledger.org.--* Menu:--* Getting help::-* Constructing command lines::-* Starting a journal file::-* Setting opening balances::-* Recording transactions::-* Reconciling::-* Reporting::-* Migrating to a new file::---File: hledger.info, Node: Getting help, Next: Constructing command lines, Up: COMMON TASKS--1.1 Getting help-================---$ hledger # show available commands-$ hledger --help # show common options-$ hledger CMD --help # show common and command options, and command help-$ hledger help # show available manuals/topics-$ hledger help hledger # show hledger manual as info/man/text (auto-chosen)-$ hledger help journal --man # show the journal manual as a man page-$ hledger help --help # show more detailed help for the help command--Find more docs, chat, mail list, reddit, issue tracker:-https://hledger.org#help-feedback---File: hledger.info, Node: Constructing command lines, Next: Starting a journal file, Prev: Getting help, Up: COMMON TASKS--1.2 Constructing command lines-==============================--hledger has an extensive and powerful command line interface. We strive-to keep it simple and ergonomic, but you may run into one of the-confusing real world details described in OPTIONS, below. If that-happens, here are some tips that may help:-- * command-specific options must go after the command (it's fine to- put all options there) (`hledger CMD OPTS ARGS')-- * running add-on executables directly simplifies command line parsing- (`hledger-ui OPTS ARGS')-- * enclose "problematic" args in single quotes-- * if needed, also add a backslash to hide regular expression- metacharacters from the shell-- * to see how a misbehaving command is being parsed, add `--debug=2'.---File: hledger.info, Node: Starting a journal file, Next: Setting opening balances, Prev: Constructing command lines, Up: COMMON TASKS--1.3 Starting a journal file-===========================--hledger looks for your accounting data in a journal file,-`$HOME/.hledger.journal' by default:---$ hledger stats-The hledger journal file "/Users/simon/.hledger.journal" was not found.-Please create it first, eg with "hledger add" or a text editor.-Or, specify an existing journal file with -f or LEDGER_FILE.-- You can override this by setting the `LEDGER_FILE' environment-variable. It's a good practice to keep this important file under version-control, and to start a new file each year. So you could do something-like this:---$ mkdir ~/finance-$ cd ~/finance-$ git init-Initialized empty Git repository in /Users/simon/finance/.git/-$ touch 2020.journal-$ echo "export LEDGER_FILE=$HOME/finance/2020.journal" >> ~/.bashrc-$ source ~/.bashrc-$ hledger stats-Main file : /Users/simon/finance/2020.journal-Included files :-Transactions span : to (0 days)-Last transaction : none-Transactions : 0 (0.0 per day)-Transactions last 30 days: 0 (0.0 per day)-Transactions last 7 days : 0 (0.0 per day)-Payees/descriptions : 0-Accounts : 0 (depth 0)-Commodities : 0 ()-Market prices : 0 ()---File: hledger.info, Node: Setting opening balances, Next: Recording transactions, Prev: Starting a journal file, Up: COMMON TASKS--1.4 Setting opening balances-============================--Pick a starting date for which you can look up the balances of some-real-world assets (bank accounts, wallet..) and liabilities (credit-cards..).-- To avoid a lot of data entry, you may want to start with just one or-two accounts, like your checking account or cash wallet; and pick a-recent starting date, like today or the start of the week. You can-always come back later and add more accounts and older transactions, eg-going back to january 1st.-- Add an opening balances transaction to the journal, declaring the-balances on this date. Here are two ways to do it:-- * The first way: open the journal in any text editor and save an- entry like this:--- 2020-01-01 * opening balances- assets:bank:checking $1000 = $1000- assets:bank:savings $2000 = $2000- assets:cash $100 = $100- liabilities:creditcard $-50 = $-50- equity:opening/closing balances-- These are start-of-day balances, ie whatever was in the account at- the end of the previous day.-- The * after the date is an optional status flag. Here it means- "cleared & confirmed".-- The currency symbols are optional, but usually a good idea as- you'll be dealing with multiple currencies sooner or later.-- The = amounts are optional balance assertions, providing extra- error checking.-- * The second way: run `hledger add' and follow the prompts to record- a similar transaction:--- $ hledger add- Adding transactions to journal file /Users/simon/finance/2020.journal- Any command line arguments will be used as defaults.- Use tab key to complete, readline keys to edit, enter to accept defaults.- An optional (CODE) may follow transaction dates.- An optional ; COMMENT may follow descriptions or amounts.- If you make a mistake, enter < at any prompt to go one step backward.- To end a transaction, enter . when prompted.- To quit, enter . at a date prompt or press control-d or control-c.- Date [2020-02-07]: 2020-01-01- Description: * opening balances- Account 1: assets:bank:checking- Amount 1: $1000- Account 2: assets:bank:savings- Amount 2 [$-1000]: $2000- Account 3: assets:cash- Amount 3 [$-3000]: $100- Account 4: liabilities:creditcard- Amount 4 [$-3100]: $-50- Account 5: equity:opening/closing balances- Amount 5 [$-3050]:- Account 6 (or . or enter to finish this transaction): .- 2020-01-01 * opening balances- assets:bank:checking $1000- assets:bank:savings $2000- assets:cash $100- liabilities:creditcard $-50- equity:opening/closing balances $-3050-- Save this transaction to the journal ? [y]:- Saved.- Starting the next transaction (. or ctrl-D/ctrl-C to quit)- Date [2020-01-01]: .--- If you're using version control, this could be a good time to commit-the journal. Eg:---$ git commit -m 'initial balances' 2020.journal---File: hledger.info, Node: Recording transactions, Next: Reconciling, Prev: Setting opening balances, Up: COMMON TASKS--1.5 Recording transactions-==========================--As you spend or receive money, you can record these transactions using-one of the methods above (text editor, hledger add) or by using the-hledger-iadd or hledger-web add-ons, or by using the import command to-convert CSV data downloaded from your bank.-- Here are some simple transactions, see the hledger_journal(5) manual-and hledger.org for more ideas:---2020/1/10 * gift received- assets:cash $20- income:gifts--2020.1.12 * farmers market- expenses:food $13- assets:cash--2020-01-15 paycheck- income:salary- assets:bank:checking $1000---File: hledger.info, Node: Reconciling, Next: Reporting, Prev: Recording transactions, Up: COMMON TASKS--1.6 Reconciling-===============--Periodically you should reconcile - compare your hledger-reported-balances against external sources of truth, like bank statements or your-bank's website - to be sure that your ledger accurately represents the-real-world balances (and, that the real-world institutions have not made-a mistake!). This gets easy and fast with (1) practice and (2)-frequency. If you do it daily, it can take 2-10 minutes. If you let it-pile up, expect it to take longer as you hunt down errors and-discrepancies.-- A typical workflow:-- 1. Reconcile cash. Count what's in your wallet. Compare with what- hledger reports (`hledger bal cash'). If they are different, try to- remember the missing transaction, or look for the error in the- already-recorded transactions. A register report can be helpful- (`hledger reg cash'). If you can't find the error, add an- adjustment transaction. Eg if you have $105 after the above, and- can't explain the missing $2, it could be:--- 2020-01-16 * adjust cash- assets:cash $-2 = $105- expenses:misc-- 2. Reconcile checking. Log in to your bank's website. Compare today's- (cleared) balance with hledger's cleared balance (`hledger bal- checking -C'). If they are different, track down the error or- record the missing transaction(s) or add an adjustment- transaction, similar to the above. Unlike the cash case, you can- usually compare the transaction history and running balance from- your bank with the one reported by `hledger reg checking -C'. This- will be easier if you generally record transaction dates quite- similar to your bank's clearing dates.-- 3. Repeat for other asset/liability accounts.--- Tip: instead of the register command, use hledger-ui to see a-live-updating register while you edit the journal: `hledger-ui --watch---register checking -C'-- After reconciling, it could be a good time to mark the reconciled-transactions' status as "cleared and confirmed", if you want to track-that, by adding the `*' marker. Eg in the paycheck transaction above,-insert `*' between `2020-01-15' and `paycheck'-- If you're using version control, this can be another good time to-commit:---$ git commit -m 'txns' 2020.journal---File: hledger.info, Node: Reporting, Next: Migrating to a new file, Prev: Reconciling, Up: COMMON TASKS--1.7 Reporting-=============--Here are some basic reports.-- Show all transactions:---$ hledger print-2020-01-01 * opening balances- assets:bank:checking $1000- assets:bank:savings $2000- assets:cash $100- liabilities:creditcard $-50- equity:opening/closing balances $-3050--2020-01-10 * gift received- assets:cash $20- income:gifts--2020-01-12 * farmers market- expenses:food $13- assets:cash--2020-01-15 * paycheck- income:salary- assets:bank:checking $1000--2020-01-16 * adjust cash- assets:cash $-2 = $105- expenses:misc-- Show account names, and their hierarchy:---$ hledger accounts --tree-assets- bank- checking- savings- cash-equity- opening/closing balances-expenses- food- misc-income- gifts- salary-liabilities- creditcard-- Show all account totals:---$ hledger balance- $4105 assets- $4000 bank- $2000 checking- $2000 savings- $105 cash- $-3050 equity:opening/closing balances- $15 expenses- $13 food- $2 misc- $-1020 income- $-20 gifts- $-1000 salary- $-50 liabilities:creditcard---------------------- 0-- Show only asset and liability balances, as a flat list, limited to-depth 2:---$ hledger bal assets liabilities --flat -2- $4000 assets:bank- $105 assets:cash- $-50 liabilities:creditcard---------------------- $4055-- Show the same thing without negative numbers, formatted as a simple-balance sheet:---$ hledger bs --flat -2-Balance Sheet 2020-01-16-- || 2020-01-16-========================++============- Assets ||-------------------------++------------- assets:bank || $4000- assets:cash || $105-------------------------++------------- || $4105-========================++============- Liabilities ||-------------------------++------------- liabilities:creditcard || $50-------------------------++------------- || $50-========================++============- Net: || $4055-- The final total is your "net worth" on the end date. (Or use `bse'-for a full balance sheet with equity.)-- Show income and expense totals, formatted as an income statement:---hledger is-Income Statement 2020-01-01-2020-01-16-- || 2020-01-01-2020-01-16-===============++=======================- Revenues ||----------------++------------------------ income:gifts || $20- income:salary || $1000----------------++------------------------ || $1020-===============++=======================- Expenses ||----------------++------------------------ expenses:food || $13- expenses:misc || $2----------------++------------------------ || $15-===============++=======================- Net: || $1005-- The final total is your net income during this period.-- Show transactions affecting your wallet, with running total:---$ hledger register cash-2020-01-01 opening balances assets:cash $100 $100-2020-01-10 gift received assets:cash $20 $120-2020-01-12 farmers market assets:cash $-13 $107-2020-01-16 adjust cash assets:cash $-2 $105-- Show weekly posting counts as a bar chart:---$ hledger activity -W-2019-12-30 *****-2020-01-06 ****-2020-01-13 ****---File: hledger.info, Node: Migrating to a new file, Prev: Reporting, Up: COMMON TASKS--1.8 Migrating to a new file-===========================--At the end of the year, you may want to continue your journal in a new-file, so that old transactions don't slow down or clutter your reports,-and to help ensure the integrity of your accounting history. See the-close command.-- If using version control, don't forget to `git add' the new file.---File: hledger.info, Node: OPTIONS, Next: COMMANDS, Prev: COMMON TASKS, Up: Top--2 OPTIONS-*********--* Menu:--* General options::-* Command options::-* Command arguments::-* Queries::-* Special characters in arguments and queries::-* Unicode characters::-* Input files::-* Strict mode::-* Output destination::-* Output format::-* Regular expressions::-* Smart dates::-* Report start & end date::-* Report intervals::-* Period expressions::-* Depth limiting::-* Pivoting::-* Valuation::---File: hledger.info, Node: General options, Next: Command options, Up: OPTIONS--2.1 General options-===================--To see general usage help, including general options which are supported-by most hledger commands, run `hledger -h'.-- General help options:--`-h --help'- show general usage (or after COMMAND, command usage)--`--version'- show version--`--debug[=N]'- show debug output (levels 1-9, default: 1)-- General input options:--`-f FILE --file=FILE'- use a different input file. For stdin, use - (default:- `$LEDGER_FILE' or `$HOME/.hledger.journal')--`--rules-file=RULESFILE'- Conversion rules file to use when reading CSV (default: FILE.rules)--`--separator=CHAR'- Field separator to expect when reading CSV (default: ',')--`--alias=OLD=NEW'- rename accounts named OLD to NEW--`--anon'- anonymize accounts and payees--`--pivot FIELDNAME'- use some other field or tag for the account name--`-I --ignore-assertions'- disable balance assertion checks (note: does not disable balance- assignments)--`-s --strict'- do extra error checking (check that all posted accounts are- declared)-- General reporting options:--`-b --begin=DATE'- include postings/txns on or after this date--`-e --end=DATE'- include postings/txns before this date--`-D --daily'- multiperiod/multicolumn report by day--`-W --weekly'- multiperiod/multicolumn report by week--`-M --monthly'- multiperiod/multicolumn report by month--`-Q --quarterly'- multiperiod/multicolumn report by quarter--`-Y --yearly'- multiperiod/multicolumn report by year--`-p --period=PERIODEXP'- set start date, end date, and/or reporting interval all at once- using period expressions syntax--`--date2'- match the secondary date instead (see command help for other- effects)--`-U --unmarked'- include only unmarked postings/txns (can combine with -P or -C)--`-P --pending'- include only pending postings/txns--`-C --cleared'- include only cleared postings/txns--`-R --real'- include only non-virtual postings--`-NUM --depth=NUM'- hide/aggregate accounts or postings more than NUM levels deep--`-E --empty'- show items with zero amount, normally hidden (and vice-versa in- hledger-ui/hledger-web)--`-B --cost'- convert amounts to their cost/selling amount at transaction time--`-V --market'- convert amounts to their market value in default valuation- commodities--`-X --exchange=COMM'- convert amounts to their market value in commodity COMM--`--value'- convert amounts to cost or market value, more flexibly than- -B/-V/-X--`--infer-value'- with -V/-X/-value, also infer market prices from transactions--`--auto'- apply automated posting rules to modify transactions.--`--forecast'- generate future transactions from periodic transaction rules, for- the next 6 months or till report end date. In hledger-ui, also- make ordinary future transactions visible.--`--color=WHEN (or --colour=WHEN)'- Should color-supporting commands use ANSI color codes in text- output. 'auto' (default): whenever stdout seems to be a- color-supporting terminal. 'always' or 'yes': always, useful eg- when piping output into 'less -R'. 'never' or 'no': never. A- NO_COLOR environment variable overrides this.-- When a reporting option appears more than once in the command line,-the last one takes precedence.-- Some reporting options can also be written as query arguments.---File: hledger.info, Node: Command options, Next: Command arguments, Prev: General options, Up: OPTIONS--2.2 Command options-===================--To see options for a particular command, including command-specific-options, run: `hledger COMMAND -h'.-- Command-specific options must be written after the command name, eg:-`hledger print -x'.-- Additionally, if the command is an add-on, you may need to put its-options after a double-hyphen, eg: `hledger ui -- --watch'. Or, you can-run the add-on executable directly: `hledger-ui --watch'.---File: hledger.info, Node: Command arguments, Next: Queries, Prev: Command options, Up: OPTIONS--2.3 Command arguments-=====================--Most hledger commands accept arguments after the command name, which are-often a query, filtering the data in some way.-- You can save a set of command line options/arguments in a file, and-then reuse them by writing `@FILENAME' as a command line argument. Eg:-`hledger bal @foo.args'. (To prevent this, eg if you have an argument-that begins with a literal `@', precede it with `--', eg: `hledger bal--- @ARG').-- Inside the argument file, each line should contain just one option or-argument. Avoid the use of spaces, except inside quotes (or you'll see a-confusing error). Between a flag and its argument, use = (or nothing).-Bad:---assets depth:2--X USD-- Good:---assets-depth:2--X=USD-- For special characters (see below), use one less level of quoting-than you would at the command prompt. Bad:----X"$"-- Good:----X$-- See also: Save frequently used options.---File: hledger.info, Node: Queries, Next: Special characters in arguments and queries, Prev: Command arguments, Up: OPTIONS--2.4 Queries-===========--One of hledger's strengths is being able to quickly report on precise-subsets of your data. Most commands accept an optional query expression,-written as arguments after the command name, to filter the data by date,-account name or other criteria. The syntax is similar to a web search:-one or more space-separated search terms, quotes to enclose whitespace,-prefixes to match specific fields, a not: prefix to negate the match.-- We do not yet support arbitrary boolean combinations of search terms;-instead most commands show transactions/postings/accounts which match-(or negatively match):-- * any of the description terms AND-- * any of the account terms AND-- * any of the status terms AND-- * all the other terms.-- The print command instead shows transactions which:-- * match any of the description terms AND-- * have any postings matching any of the positive account terms AND-- * have no postings matching any of the negative account terms AND-- * match all the other terms.-- The following kinds of search terms can be used. Remember these can-also be prefixed with *`not:'*, eg to exclude a particular subaccount.--*`REGEX', `acct:REGEX'*- match account names by this regular expression. (With no prefix,- `acct:' is assumed.) same as above--*`amt:N, amt:<N, amt:<=N, amt:>N, amt:>=N'*- match postings with a single-commodity amount that is equal to,- less than, or greater than N. (Multi-commodity amounts are not- tested, and will always match.) The comparison has two modes: if N- is preceded by a + or - sign (or is 0), the two signed numbers are- compared. Otherwise, the absolute magnitudes are compared,- ignoring sign.--*`code:REGEX'*- match by transaction code (eg check number)--*`cur:REGEX'*- match postings or transactions including any amounts whose- currency/commodity symbol is fully matched by REGEX. (For a partial- match, use `.*REGEX.*'). Note, to match characters which are- regex-significant, like the dollar sign (`$'), you need to prepend- `\'. And when using the command line you need to add one more level- of quoting to hide it from the shell, so eg do: `hledger print- cur:'\$'' or `hledger print cur:\\$'.--*`desc:REGEX'*- match transaction descriptions.--*`date:PERIODEXPR'*- match dates within the specified period. PERIODEXPR is a period- expression (with no report interval). Examples: `date:2016',- `date:thismonth', `date:2000/2/1-2/15', `date:lastweek-'. If the- `--date2' command line flag is present, this matches secondary- dates instead.--*`date2:PERIODEXPR'*- match secondary dates within the specified period.--*`depth:N'*- match (or display, depending on command) accounts at or above this- depth--*`note:REGEX'*- match transaction notes (part of description right of `|', or whole- description when there's no `|')--*`payee:REGEX'*- match transaction payee/payer names (part of description left of- `|', or whole description when there's no `|')--*`real:, real:0'*- match real or virtual postings respectively--*`status:, status:!, status:*'*- match unmarked, pending, or cleared transactions respectively--*`tag:REGEX[=REGEX]'*- match by tag name, and optionally also by tag value. Note a tag:- query is considered to match a transaction if it matches any of- the postings. Also remember that postings inherit the tags of- their parent transaction.-- The following special search term is used automatically in-hledger-web, only:--*`inacct:ACCTNAME'*- tells hledger-web to show the transaction register for this- account. Can be filtered further with `acct' etc.-- Some of these can also be expressed as command-line options (eg-`depth:2' is equivalent to `--depth 2'). Generally you can mix options-and query arguments, and the resulting query will be their intersection-(perhaps excluding the `-p/--period' option).---File: hledger.info, Node: Special characters in arguments and queries, Next: Unicode characters, Prev: Queries, Up: OPTIONS--2.5 Special characters in arguments and queries-===============================================--In shell command lines, option and argument values which contain-"problematic" characters, ie spaces, and also characters significant to-your shell such as `<', `>', `(', `)', `|' and `$', should be escaped-by enclosing them in quotes or by writing backslashes before the-characters. Eg:-- `hledger register -p 'last year' "accounts receivable-(receivable|payable)" amt:\>100'.--* Menu:--* More escaping::-* Even more escaping::-* Less escaping::---File: hledger.info, Node: More escaping, Next: Even more escaping, Up: Special characters in arguments and queries--2.5.1 More escaping----------------------Characters significant both to the shell and in regular expressions may-need one extra level of escaping. These include parentheses, the pipe-symbol and the dollar sign. Eg, to match the dollar symbol, bash users-should do:-- `hledger balance cur:'\$''-- or:-- `hledger balance cur:\\$'---File: hledger.info, Node: Even more escaping, Next: Less escaping, Prev: More escaping, Up: Special characters in arguments and queries--2.5.2 Even more escaping---------------------------When hledger runs an add-on executable (eg you type `hledger ui',-hledger runs `hledger-ui'), it de-escapes command-line options and-arguments once, so you might need to _triple_-escape. Eg in bash,-running the ui command and matching the dollar sign, it's:-- `hledger ui cur:'\\$''-- or:-- `hledger ui cur:\\\\$'-- If you asked why _four_ slashes above, this may help:--unescaped: `$'-escaped: `\$'-double-escaped: `\\$'-triple-escaped: `\\\\$'-- (The number of backslashes in fish shell is left as an exercise for-the reader.)-- You can always avoid the extra escaping for add-ons by running the-add-on directly:-- `hledger-ui cur:\\$'---File: hledger.info, Node: Less escaping, Prev: Even more escaping, Up: Special characters in arguments and queries--2.5.3 Less escaping----------------------Inside an argument file, or in the search field of hledger-ui or-hledger-web, or at a GHCI prompt, you need one less level of escaping-than at the command line. And backslashes may work better than quotes.-Eg:-- `ghci> :main balance cur:\$'---File: hledger.info, Node: Unicode characters, Next: Input files, Prev: Special characters in arguments and queries, Up: OPTIONS--2.6 Unicode characters-======================--hledger is expected to handle non-ascii characters correctly:-- * they should be parsed correctly in input files and on the command- line, by all hledger tools (add, iadd, hledger-web's- search/add/edit forms, etc.)-- * they should be displayed correctly by all hledger tools, and- on-screen alignment should be preserved.--- This requires a well-configured environment. Here are some tips:-- * A system locale must be configured, and it must be one that can- decode the characters being used. In bash, you can set a locale- like this: `export LANG=en_US.UTF-8'. There are some more details- in Troubleshooting. This step is essential - without it, hledger- will quit on encountering a non-ascii character (as with all- GHC-compiled programs).-- * your terminal software (eg Terminal.app, iTerm, CMD.exe, xterm..)- must support unicode-- * the terminal must be using a font which includes the required- unicode glyphs-- * the terminal should be configured to display wide characters as- double width (for report alignment)-- * on Windows, for best results you should run hledger in the same- kind of environment in which it was built. Eg hledger built in the- standard CMD.EXE environment (like the binaries on our download- page) might show display problems when run in a cygwin or msys- terminal, and vice versa. (See eg #961).----File: hledger.info, Node: Input files, Next: Strict mode, Prev: Unicode characters, Up: OPTIONS--2.7 Input files-===============--hledger reads transactions from a data file (and the add command writes-to it). By default this file is `$HOME/.hledger.journal' (or on-Windows, something like `C:/Users/USER/.hledger.journal'). You can-override this with the `$LEDGER_FILE' environment variable:---$ setenv LEDGER_FILE ~/finance/2016.journal-$ hledger stats-- or with the `-f/--file' option:---$ hledger -f /some/file stats-- The file name `-' (hyphen) means standard input:---$ cat some.journal | hledger -f--- Usually the data file is in hledger's journal format, but it can be-in any of the supported file formats, which currently are:--Reader: Reads: Used for file- extensions:--------------------------------------------------------------------------- -`journal'hledger journal files and some Ledger `.journal' `.j'- journals, for transactions `.hledger' `.ledger'-`timeclock'timeclock files, for precise time `.timeclock'- logging -`timedot'timedot files, for approximate time `.timedot'- logging -`csv' comma/semicolon/tab/other-separated `.csv' `.ssv' `.tsv'- values, for data import -- hledger detects the format automatically based on the file extensions-shown above. If it can't recognise the file extension, it assumes-`journal' format. So for non-journal files, it's important to use a-recognised file extension, so as to either read successfully or to show-relevant error messages.-- When you can't ensure the right file extension, not to worry: you can-force a specific reader/format by prefixing the file path with the-format and a colon. Eg to read a .dat file as csv:---$ hledger -f csv:/some/csv-file.dat stats-$ echo 'i 2009/13/1 08:00:00' | hledger print -ftimeclock:--- You can specify multiple `-f' options, to read multiple files as one-big journal. There are some limitations with this:-- * directives in one file will not affect the other files-- * balance assertions will not see any account balances from previous- files-- If you need either of those things, you can-- * use a single parent file which includes the others-- * or concatenate the files into one before reading, eg: `cat- a.journal b.journal | hledger -f- CMD'.---File: hledger.info, Node: Strict mode, Next: Output destination, Prev: Input files, Up: OPTIONS--2.8 Strict mode-===============--hledger checks input files for valid data. By default, the most-important errors are detected, while still accepting easy journal files-without a lot of declarations:-- * Are the input files parseable, with valid syntax ?-- * Are all transactions balanced ?-- * Do all balance assertions pass ?-- With the `-s'/`--strict' flag, additional checks are performed:-- * Are all accounts posted to, declared with an `account' directive ?- (Account error checking)-- * Are all commodities declared with a `commodity' directive ?- (Commodity error checking)-- See also: https://hledger.org/checking-for-errors.html-- _experimental._---File: hledger.info, Node: Output destination, Next: Output format, Prev: Strict mode, Up: OPTIONS--2.9 Output destination-======================--hledger commands send their output to the terminal by default. You can-of course redirect this, eg into a file, using standard shell syntax:---$ hledger print > foo.txt-- Some commands (print, register, stats, the balance commands) also-provide the `-o/--output-file' option, which does the same thing-without needing the shell. Eg:---$ hledger print -o foo.txt-$ hledger print -o - # write to stdout (the default)---File: hledger.info, Node: Output format, Next: Regular expressions, Prev: Output destination, Up: OPTIONS--2.10 Output format-==================--Some commands (print, register, the balance commands) offer a choice of-output format. In addition to the usual plain text format (`txt'),-there are CSV (`csv'), HTML (`html'), JSON (`json') and SQL (`sql').-This is controlled by the `-O/--output-format' option:---$ hledger print -O csv-- or, by a file extension specified with `-o/--output-file':---$ hledger balancesheet -o foo.html # write HTML to foo.html-- The `-O' option can be used to override the file extension if needed:---$ hledger balancesheet -o foo.txt -O html # write HTML to foo.txt-- Some notes about JSON output:-- * This feature is marked experimental, and not yet much used; you- should expect our JSON to evolve. Real-world feedback is welcome.-- * Our JSON is rather large and verbose, as it is quite a faithful- representation of hledger's internal data types. To understand the- JSON, read the Haskell type definitions, which are mostly in- https://github.com/simonmichael/hledger/blob/master/hledger-lib/Hledger/Data/Types.hs.--- * hledger represents quantities as Decimal values storing up to 255- significant digits, eg for repeating decimals. Such numbers can- arise in practice (from automatically-calculated transaction- prices), and would break most JSON consumers. So in JSON, we show- quantities as simple Numbers with at most 10 decimal places. We- don't limit the number of integer digits, but that part is under- your control. We hope this approach will not cause problems in- practice; if you find otherwise, please let us know. (Cf #1195)-- Notes about SQL output:-- * SQL output is also marked experimental, and much like JSON could- use real-world feedback.-- * SQL output is expected to work with sqlite, MySQL and PostgreSQL-- * SQL output is structured with the expectations that statements- will be executed in the empty database. If you already have tables- created via SQL output of hledger, you would probably want to- either clear tables of existing data (via `delete' or `truncate'- SQL statements) or drop tables completely as otherwise your- postings will be duped.----File: hledger.info, Node: Regular expressions, Next: Smart dates, Prev: Output format, Up: OPTIONS--2.11 Regular expressions-========================--hledger uses regular expressions in a number of places:-- * query terms, on the command line and in the hledger-web search- form: `REGEX', `desc:REGEX', `cur:REGEX', `tag:...=REGEX'-- * CSV rules conditional blocks: `if REGEX ...'-- * account alias directives and options: `alias /REGEX/ =- REPLACEMENT', `--alias /REGEX/=REPLACEMENT'-- hledger's regular expressions come from the regex-tdfa library. If-they're not doing what you expect, it's important to know exactly what-they support:-- 1. they are case insensitive-- 2. they are infix matching (they do not need to match the entire thing- being matched)-- 3. they are POSIX ERE (extended regular expressions)-- 4. they also support GNU word boundaries (`\b', `\B', `\<', `\>')-- 5. they do not support backreferences; if you write `\1', it will- match the digit `1'. Except when doing text replacement, eg in- account aliases, where backreferences can be used in the- replacement string to reference capturing groups in the search- regexp.-- 6. they do not support mode modifiers (`(?s)'), character classes- (`\w', `\d'), or anything else not mentioned above.-- Some things to note:-- * In the `alias' directive and `--alias' option, regular expressions- must be enclosed in forward slashes (`/REGEX/'). Elsewhere in- hledger, these are not required.-- * In queries, to match a regular expression metacharacter like `$' as- a literal character, prepend a backslash. Eg to search for amounts- with the dollar sign in hledger-web, write `cur:\$'.-- * On the command line, some metacharacters like `$' have a special- meaning to the shell and so must be escaped at least once more. See- Special characters.----File: hledger.info, Node: Smart dates, Next: Report start & end date, Prev: Regular expressions, Up: OPTIONS--2.12 Smart dates-================--hledger's user interfaces accept a flexible "smart date" syntax (unlike-dates in the journal file). Smart dates allow some english words, can be-relative to today's date, and can have less-significant date parts-omitted (defaulting to 1).-- Examples:--`2004/10/1', exact date, several separators allowed. Year-`2004-01-01', `2004.9.1' is 4+ digits, month is 1-12, day is 1-31-`2004' start of year-`2004/10' start of month-`10/1' month and day in current year-`21' day in current month-`october, oct' start of month in current year-`yesterday, today, -1, 0, 1 days from today-tomorrow' -`last/this/next -1, 0, 1 periods from the current period-day/week/month/quarter/year'-`20181201' 8 digit YYYYMMDD with valid year month and day-`201812' 6 digit YYYYMM with valid year and month-- Counterexamples - malformed digit sequences might give surprising-results:--`201813' 6 digits with an invalid month is parsed as start of- 6-digit year-`20181301' 8 digits with an invalid month is parsed as start of- 8-digit year-`20181232' 8 digits with an invalid day gives an error-`201801012' 9+ digits beginning with a valid YYYYMMDD gives an error---File: hledger.info, Node: Report start & end date, Next: Report intervals, Prev: Smart dates, Up: OPTIONS--2.13 Report start & end date-============================--Most hledger reports show the full span of time represented by the-journal data, by default. So, the effective report start and end dates-will be the earliest and latest transaction or posting dates found in-the journal.-- Often you will want to see a shorter time span, such as the current-month. You can specify a start and/or end date using `-b/--begin',-`-e/--end', `-p/--period' or a `date:' query (described below). All of-these accept the smart date syntax.-- Some notes:-- * As in Ledger, end dates are exclusive, so you need to write the- date _after_ the last day you want to include.-- * As noted in reporting options: among start/end dates specified with- _options_, the last (i.e. right-most) option takes precedence.-- * The effective report start and end dates are the intersection of- the start/end dates from options and that from `date:' queries.- That is, `date:2019-01 date:2019 -p'2000 to 2030'' yields January- 2019, the smallest common time span.-- Examples:--`-b begin on St. Patrick's day 2016-2016/3/17' -`-e 12/1' end at the start of december 1st of the current year- (11/30 will be the last date included)-`-b all transactions on or after the 1st of the current month-thismonth' -`-p all transactions in the current month-thismonth' -`date:2016/3/17..'the above written as queries instead (`..' can also be- replaced with `-')-`date:..12/1' -`date:thismonth..'-`date:thismonth'---File: hledger.info, Node: Report intervals, Next: Period expressions, Prev: Report start & end date, Up: OPTIONS--2.14 Report intervals-=====================--A report interval can be specified so that commands like register,-balance and activity will divide their reports into multiple subperiods.-The basic intervals can be selected with one of `-D/--daily',-`-W/--weekly', `-M/--monthly', `-Q/--quarterly', or `-Y/--yearly'. More-complex intervals may be specified with a period expression. Report-intervals can not be specified with a query.---File: hledger.info, Node: Period expressions, Next: Depth limiting, Prev: Report intervals, Up: OPTIONS--2.15 Period expressions-=======================--The `-p/--period' option accepts period expressions, a shorthand way of-expressing a start date, end date, and/or report interval all at once.-- Here's a basic period expression specifying the first quarter of-2009. Note, hledger always treats start dates as inclusive and end-dates as exclusive:-- `-p "from 2009/1/1 to 2009/4/1"'-- Keywords like "from" and "to" are optional, and so are the spaces, as-long as you don't run two dates together. "to" can also be written as-".." or "-". These are equivalent to the above:--`-p "2009/1/1 2009/4/1"'-`-p2009/1/1to2009/4/1'-`-p2009/1/1..2009/4/1'-- Dates are smart dates, so if the current year is 2009, the above can-also be written as:--`-p "1/1 4/1"'-`-p "january-apr"'-`-p "this year to 4/1"'-- If you specify only one date, the missing start or end date will be-the earliest or latest transaction in your journal:--`-p "from 2009/1/1"' everything after january 1, 2009-`-p "from 2009/1"' the same-`-p "from 2009"' the same-`-p "to 2009"' everything before january 1, 2009-- A single date with no "from" or "to" defines both the start and end-date like so:--`-p "2009"' the year 2009; equivalent to “2009/1/1 to 2010/1/1”-`-p "2009/1"' the month of jan; equivalent to “2009/1/1 to 2009/2/1”-`-p "2009/1/1"' just that day; equivalent to “2009/1/1 to 2009/1/2”-- Or you can specify a single quarter like so:--`-p "2009Q1"' first quarter of 2009, equivalent to “2009/1/1 to 2009/4/1”-`-p "q4"' fourth quarter of the current year-- The argument of `-p' can also begin with, or be, a report interval-expression. The basic report intervals are `daily', `weekly',-`monthly', `quarterly', or `yearly', which have the same effect as the-`-D',`-W',`-M',`-Q', or `-Y' flags. Between report interval and-start/end dates (if any), the word `in' is optional. Examples:--`-p "weekly from 2009/1/1 to 2009/4/1"'-`-p "monthly in 2008"'-`-p "quarterly"'-- Note that `weekly', `monthly', `quarterly' and `yearly' intervals-will always start on the first day on week, month, quarter or year-accordingly, and will end on the last day of same period, even if-associated period expression specifies different explicit start and end-date.-- For example:--`-p "weekly from 2009/1/1 starts on 2008/12/29, closest preceding Monday-to 2009/4/1"' -`-p "monthly in starts on 2018/11/01-2008/11/25"' -`-p "quarterly from starts on 2009/04/01, ends on 2009/06/30,-2009-05-05 to 2009-06-01"' which are first and last days of Q2 2009-`-p "yearly from starts on 2009/01/01, first day of 2009-2009-12-29"' -- The following more complex report intervals are also supported:-`biweekly', `fortnightly', `bimonthly', `every-day|week|month|quarter|year', `every N-days|weeks|months|quarters|years'.-- All of these will start on the first day of the requested period and-end on the last one, as described above.-- Examples:--`-p "bimonthly from 2008"' periods will have boundaries on 2008/01/01,- 2008/03/01, ...-`-p "every 2 weeks"' starts on closest preceding Monday-`-p "every 5 month from periods will have boundaries on 2009/03/01,-2009/03"' 2009/08/01, ...-- If you want intervals that start on arbitrary day of your choosing-and span a week, month or year, you need to use any of the following:-- `every Nth day of week', `every WEEKDAYNAME' (eg-`mon|tue|wed|thu|fri|sat|sun'), `every Nth day [of month]', `every Nth-WEEKDAYNAME [of month]', `every MM/DD [of year]', `every Nth MMM [of-year]', `every MMM Nth [of year]'.-- Examples:--`-p "every 2nd day of periods will go from Tue to Tue-week"' -`-p "every Tue"' same-`-p "every 15th day"' period boundaries will be on 15th of each month-`-p "every 2nd Monday"' period boundaries will be on second Monday of- each month-`-p "every 11/05"' yearly periods with boundaries on 5th of Nov-`-p "every 5th Nov"' same-`-p "every Nov 5th"' same-- Show historical balances at end of 15th each month (N is exclusive-end date):-- `hledger balance -H -p "every 16th day"'-- Group postings from start of wednesday to end of next tuesday (N is-start date and exclusive end date):-- `hledger register checking -p "every 3rd day of week"'---File: hledger.info, Node: Depth limiting, Next: Pivoting, Prev: Period expressions, Up: OPTIONS--2.16 Depth limiting-===================--With the `--depth N' option (short form: `-N'), commands like account,-balance and register will show only the uppermost accounts in the-account tree, down to level N. Use this when you want a summary with-less detail. This flag has the same effect as a `depth:' query argument-(so `-2', `--depth=2' or `depth:2' are equivalent).---File: hledger.info, Node: Pivoting, Next: Valuation, Prev: Depth limiting, Up: OPTIONS--2.17 Pivoting-=============--Normally hledger sums amounts, and organizes them in a hierarchy, based-on account name. The `--pivot FIELD' option causes it to sum and-organize hierarchy based on the value of some other field instead. FIELD-can be: `code', `description', `payee', `note', or the full name (case-insensitive) of any tag. As with account names, values containing-`colon:separated:parts' will be displayed hierarchically in reports.-- `--pivot' is a general option affecting all reports; you can think-of hledger transforming the journal before any other processing,-replacing every posting's account name with the value of the specified-field on that posting, inheriting it from the transaction or using a-blank value if it's not present.-- An example:---2016/02/16 Member Fee Payment- assets:bank account 2 EUR- income:member fees -2 EUR ; member: John Doe-- Normal balance report showing account names:---$ hledger balance- 2 EUR assets:bank account- -2 EUR income:member fees---------------------- 0-- Pivoted balance report, using member: tag values instead:---$ hledger balance --pivot member- 2 EUR- -2 EUR John Doe---------------------- 0-- One way to show only amounts with a member: value (using a query,-described below):---$ hledger balance --pivot member tag:member=.- -2 EUR John Doe---------------------- -2 EUR-- Another way (the acct: query matches against the pivoted "account-name"):---$ hledger balance --pivot member acct:.- -2 EUR John Doe---------------------- -2 EUR---File: hledger.info, Node: Valuation, Prev: Pivoting, Up: OPTIONS--2.18 Valuation-==============--Instead of reporting amounts in their original commodity, hledger can-convert them to cost/sale amount (using the conversion rate recorded in-the transaction), or to market value (using some market price on a-certain date). This is controlled by the `--value=TYPE[,COMMODITY]'-option, but we also provide the simpler `-B'/`-V'/`-X' flags, and-usually one of those is all you need.--* Menu:--* -B Cost::-* -V Value::-* -X Value in specified commodity::-* Valuation date::-* Market prices::-* --infer-value market prices from transactions::-* Valuation commodity::-* Simple valuation examples::-* --value Flexible valuation::-* More valuation examples::-* Effect of valuation on reports::---File: hledger.info, Node: -B Cost, Next: -V Value, Up: Valuation--2.18.1 -B: Cost------------------The `-B/--cost' flag converts amounts to their cost or sale amount at-transaction time, if they have a transaction price specified.---File: hledger.info, Node: -V Value, Next: -X Value in specified commodity, Prev: -B Cost, Up: Valuation--2.18.2 -V: Value-------------------The `-V/--market' flag converts amounts to market value in their-default _valuation commodity_, using the market prices in effect on the-_valuation date(s)_, if any. More on these in a minute.---File: hledger.info, Node: -X Value in specified commodity, Next: Valuation date, Prev: -V Value, Up: Valuation--2.18.3 -X: Value in specified commodity------------------------------------------The `-X/--exchange=COMM' option is like `-V', except you tell it which-currency you want to convert to, and it tries to convert everything to-that.---File: hledger.info, Node: Valuation date, Next: Market prices, Prev: -X Value in specified commodity, Up: Valuation--2.18.4 Valuation date------------------------Since market prices can change from day to day, market value reports-have a valuation date (or more than one), which determines which market-prices will be used.-- For single period reports, if an explicit report end date is-specified, that will be used as the valuation date; otherwise the-valuation date is "today".-- For multiperiod reports, each column/period is valued on the last-day of the period, by default.---File: hledger.info, Node: Market prices, Next: --infer-value market prices from transactions, Prev: Valuation date, Up: Valuation--2.18.5 Market prices-----------------------_(experimental)_-- To convert a commodity A to its market value in another commodity B,-hledger looks for a suitable market price (exchange rate) as follows, in-this order of preference :-- 1. A _declared market price_ or _inferred market price_: A's latest- market price in B on or before the valuation date as declared by a- P directive, or (with the `--infer-value' flag) inferred from- transaction prices.-- 2. A _reverse market price_: the inverse of a declared or inferred- market price from B to A.-- 3. A _a forward chain of market prices_: a synthetic price formed by- combining the shortest chain of "forward" (only 1 above) market- prices, leading from A to B.-- 4. A _any chain of market prices_: a chain of any market prices,- including both forward and reverse prices (1 and 2 above), leading- from A to B.--- Amounts for which no applicable market price can be found, are not-converted.---File: hledger.info, Node: --infer-value market prices from transactions, Next: Valuation commodity, Prev: Market prices, Up: Valuation--2.18.6 -infer-value: market prices from transactions-------------------------------------------------------_(experimental)_-- Normally, market value in hledger is fully controlled by, and-requires, P directives in your journal. Since adding and updating those-can be a chore, and since transactions usually take place at close to-market value, why not use the recorded transaction prices as additional-market prices (as Ledger does) ? We could produce value reports without-needing P directives at all.-- Adding the `--infer-value' flag to `-V', `-X' or `--value' enables-this. So for example, `hledger bs -V --infer-value' will get market-prices both from P directives and from transactions.-- There is a downside: value reports can sometimes be affected in-confusing/undesired ways by your journal entries. If this happens to-you, read all of this Valuation section carefully, and try adding-`--debug' or `--debug=2' to troubleshoot.-- `--infer-value' can infer market prices from:-- * multicommodity transactions with explicit prices (`@'/`@@')-- * multicommodity transactions with implicit prices (no `@', two- commodities, unbalanced). (With these, the order of postings- matters. `hledger print -x' can be useful for troubleshooting.)-- * but not, currently, from "more correct" multicommodity- transactions (no `@', multiple commodities, balanced).----File: hledger.info, Node: Valuation commodity, Next: Simple valuation examples, Prev: --infer-value market prices from transactions, Up: Valuation--2.18.7 Valuation commodity-----------------------------_(experimental)_-- *When you specify a valuation commodity (`-X COMM' or `--value-TYPE,COMM'):*-hledger will convert all amounts to COMM, wherever it can find a-suitable market price (including by reversing or chaining prices).-- *When you leave the valuation commodity unspecified (`-V' or-`--value TYPE'):*-For each commodity A, hledger picks a default valuation commodity as-follows, in this order of preference:-- 1. The price commodity from the latest P-declared market price for A- on or before valuation date.-- 2. The price commodity from the latest P-declared market price for A- on any date. (Allows conversion to proceed when there are inferred- prices before the valuation date.)-- 3. If there are no P directives at all (any commodity or date) and the- `--infer-value' flag is used: the price commodity from the latest- transaction-inferred price for A on or before valuation date.--- This means:-- * If you have P directives, they determine which commodities `-V'- will convert, and to what.-- * If you have no P directives, and use the `--infer-value' flag,- transaction prices determine it.--- Amounts for which no valuation commodity can be found are not-converted.---File: hledger.info, Node: Simple valuation examples, Next: --value Flexible valuation, Prev: Valuation commodity, Up: Valuation--2.18.8 Simple valuation examples-----------------------------------Here are some quick examples of `-V':---; one euro is worth this many dollars from nov 1-P 2016/11/01 € $1.10--; purchase some euros on nov 3-2016/11/3- assets:euros €100- assets:checking--; the euro is worth fewer dollars by dec 21-P 2016/12/21 € $1.03-- How many euros do I have ?---$ hledger -f t.j bal -N euros- €100 assets:euros-- What are they worth at end of nov 3 ?---$ hledger -f t.j bal -N euros -V -e 2016/11/4- $110.00 assets:euros-- What are they worth after 2016/12/21 ? (no report end date specified,-defaults to today)---$ hledger -f t.j bal -N euros -V- $103.00 assets:euros---File: hledger.info, Node: --value Flexible valuation, Next: More valuation examples, Prev: Simple valuation examples, Up: Valuation--2.18.9 -value: Flexible valuation------------------------------------`-B', `-V' and `-X' are special cases of the more general `--value'-option:--- --value=TYPE[,COMM] TYPE is cost, then, end, now or YYYY-MM-DD.- COMM is an optional commodity symbol.- Shows amounts converted to:- - cost commodity using transaction prices (then optionally to COMM using market prices at period end(s))- - default valuation commodity (or COMM) using market prices at posting dates- - default valuation commodity (or COMM) using market prices at period end(s)- - default valuation commodity (or COMM) using current market prices- - default valuation commodity (or COMM) using market prices at some date-- The TYPE part selects cost or value and valuation date:--`--value=cost'- Convert amounts to cost, using the prices recorded in transactions.--`--value=then'- Convert amounts to their value in the default valuation commodity,- using market prices on each posting's date. This is currently- supported only by the print and register commands.--`--value=end'- Convert amounts to their value in the default valuation commodity,- using market prices on the last day of the report period (or if- unspecified, the journal's end date); or in multiperiod reports,- market prices on the last day of each subperiod.--`--value=now'- Convert amounts to their value in the default valuation commodity- using current market prices (as of when report is generated).--`--value=YYYY-MM-DD'- Convert amounts to their value in the default valuation commodity- using market prices on this date.-- To select a different valuation commodity, add the optional `,COMM'-part: a comma, then the target commodity's symbol. Eg:-*`--value=now,EUR'*. hledger will do its best to convert amounts to-this commodity, deducing market prices as described above.---File: hledger.info, Node: More valuation examples, Next: Effect of valuation on reports, Prev: --value Flexible valuation, Up: Valuation--2.18.10 More valuation examples----------------------------------Here are some examples showing the effect of `--value', as seen with-`print':---P 2000-01-01 A 1 B-P 2000-02-01 A 2 B-P 2000-03-01 A 3 B-P 2000-04-01 A 4 B--2000-01-01- (a) 1 A @ 5 B--2000-02-01- (a) 1 A @ 6 B--2000-03-01- (a) 1 A @ 7 B-- Show the cost of each posting:---$ hledger -f- print --value=cost-2000-01-01- (a) 5 B--2000-02-01- (a) 6 B--2000-03-01- (a) 7 B-- Show the value as of the last day of the report period (2000-02-29):---$ hledger -f- print --value=end date:2000/01-2000/03-2000-01-01- (a) 2 B--2000-02-01- (a) 2 B-- With no report period specified, that shows the value as of the last-day of the journal (2000-03-01):---$ hledger -f- print --value=end-2000-01-01- (a) 3 B--2000-02-01- (a) 3 B--2000-03-01- (a) 3 B-- Show the current value (the 2000-04-01 price is still in effect-today):---$ hledger -f- print --value=now-2000-01-01- (a) 4 B--2000-02-01- (a) 4 B--2000-03-01- (a) 4 B-- Show the value on 2000/01/15:---$ hledger -f- print --value=2000-01-15-2000-01-01- (a) 1 B--2000-02-01- (a) 1 B--2000-03-01- (a) 1 B-- You may need to explicitly set a commodity's display style, when-reverse prices are used. Eg this output might be surprising:---P 2000-01-01 A 2B--2000-01-01- a 1B- b---$ hledger print -x -X A-2000-01-01- a 0- b 0-- Explanation: because there's no amount or commodity directive-specifying a display style for A, 0.5A gets the default style, which-shows no decimal digits. Because the displayed amount looks like zero,-the commodity symbol and minus sign are not displayed either. Adding a-commodity directive sets a more useful display style for A:---P 2000-01-01 A 2B-commodity 0.00A--2000-01-01- a 1B- b---$ hledger print -X A-2000-01-01- a 0.50A- b -0.50A---File: hledger.info, Node: Effect of valuation on reports, Prev: More valuation examples, Up: Valuation--2.18.11 Effect of valuation on reports-----------------------------------------Here is a reference for how valuation is supposed to affect each part of-hledger's reports (and a glossary). (It's wide, you'll have to scroll-sideways.) It may be useful when troubleshooting. If you find problems,-please report them, ideally with a reproducible example. Related: #329,-#1083.--Report type `-B', `-V', `-X' `--value=then'`--value=end' `--value=DATE',- `--value=cost' `--value=now'--------------------------------------------------------------------------------- -*print* -posting cost value at value at value at value at-amounts report end or posting date report or DATE/today- today journal end -balance unchanged unchanged unchanged unchanged unchanged-assertions/assignments --*register* -starting cost value at day not value at day value at-balance before report supported before report DATE/today-(-H) or journal or journal - start start -posting cost value at value at value at value at-amounts report end or posting date report or DATE/today- today journal end -summary summarised value at sum of value at value at-posting cost period ends postings in period ends DATE/today-amounts interval, -with valued at -report interval -interval start -running sum/average sum/average sum/average sum/average sum/average-total/averageof displayed of displayed of of displayed of- values values displayed values displayed- values values--*balance -(bs, bse, -cf, is)* -balance sums of costs value at not value at value at-changes report end or supported report or DATE/today- today of sums journal end of sums- of postings of sums of of- postings postings-budget like balance like balance not like balances like-amounts changes changes supported balance-(-budget) changes-grand total sum of sum of not sum of sum of- displayed displayed supported displayed displayed- values values values values--*balance -(bs, bse, -cf, is) -with -report -interval* -starting sums of costs value at not value at sums of-balances of postings report start supported report start postings-(-H) before report of sums of of sums of before- start all postings all postings report- before report before report start- start start -balance sums of costs same as not balance value at-changes of postings -value=end supported change in DATE/today-(bal, is, in period each period, of sums-bs valued at of--change, period ends postings-cf -change) -end sums of costs same as not period end value at-balances of postings -value=end supported balances, DATE/today-(bal -H, from before valued at of sums-is -H, bs, report start period ends of-cf) to period end postings-budget like balance like balance not like balances like-amounts changes/end changes/end supported balance-(-budget) balances balances changes/end- balances-row sums, sums, not sums, sums,-totals, averages of averages of supported averages of averages-row displayed displayed displayed of-averages values values values displayed-(-T, -A) values-column sums of sums of not sums of sums of-totals displayed displayed supported displayed displayed- values values values values-grand sum, average sum, average not sum, average sum,-total, of column of column supported of column average-grand totals totals totals of-average column- totals--- `--cumulative' is omitted to save space, it works like `-H' but with-a zero starting balance.-- *Glossary:*--_cost_- calculated using price(s) recorded in the transaction(s).--_value_- market value using available market price declarations, or the- unchanged amount if no conversion rate can be found.--_report start_- the first day of the report period specified with -b or -p or- date:, otherwise today.--_report or journal start_- the first day of the report period specified with -b or -p or- date:, otherwise the earliest transaction date in the journal,- otherwise today.--_report end_- the last day of the report period specified with -e or -p or date:,- otherwise today.--_report or journal end_- the last day of the report period specified with -e or -p or date:,- otherwise the latest transaction date in the journal, otherwise- today.--_report interval_- a flag (-D/-W/-M/-Q/-Y) or period expression that activates the- report's multi-period mode (whether showing one or many- subperiods).---File: hledger.info, Node: COMMANDS, Next: ENVIRONMENT, Prev: OPTIONS, Up: Top--3 COMMANDS-**********--hledger provides a number of commands for producing reports and managing-your data. Run `hledger' with no arguments to list the commands-available.-- To run a command, write its name (or its abbreviation shown in the-commands list, or any unambiguous prefix of the name) as hledger's first-argument. Eg: `hledger balance' or `hledger bal'.-- Here are the built-in commands:-- *Data entry (these modify the journal file):*-- * add - add transactions using guided prompts-- * import - add any new transactions from other files (eg csv)-- *Data management*:-- * check - check for various kinds of issue in the data-- * close (equity) - generate balance-resetting transactions-- * diff - compare account transactions in two journal files-- * rewrite - generate extra postings, similar to print -auto-- *Financial statements:*-- * aregister (areg) - show transactions in a particular account-- * balancesheet (bs) - show assets, liabilities and net worth-- * balancesheetequity (bse) - show assets, liabilities and equity-- * cashflow (cf) - show changes in liquid assets-- * incomestatement (is) - show revenues and expenses-- * roi - show return on investments-- *Miscellaneous reports:*-- * accounts (a) - show account names-- * activity - show postings-per-interval bar charts-- * balance (b, bal) - show balance changes/end balances/budgets in- accounts-- * codes - show transaction codes-- * commodities - show commodity/currency symbols-- * descriptions - show unique transaction descriptions-- * files - show input file paths-- * notes - show unique note segments of transaction descriptions-- * payees - show unique payee segments of transaction descriptions-- * prices - show market price records-- * print (p, txns) - show transactions (journal entries)-- * print-unique - show only transactions with unique descriptions-- * register (r, reg) - show postings in one or more accounts & running- total-- * register-match - show a recent posting that best matches a- description-- * stats - show journal statistics-- * tags - show tag names-- * test - run self tests-- Next, the detailed command docs, in alphabetical order.--* Menu:--* accounts::-* activity::-* add::-* aregister::-* balance::-* balancesheet::-* balancesheetequity::-* cashflow::-* check::-* close::-* codes::-* commodities::-* descriptions::-* diff::-* files::-* help::-* import::-* incomestatement::-* notes::-* rewrite::-* roi::-* stats::-* tags::-* test::-* Add-on commands::-* Add-on command flags::-* Making add-on commands::---File: hledger.info, Node: accounts, Next: activity, Up: COMMANDS--3.1 accounts-============--accounts, a-Show account names.-- This command lists account names, either declared with account-directives (-declared), posted to (-used), or both (the default). With-query arguments, only matched account names and account names referenced-by matched postings are shown. It shows a flat list by default. With-`--tree', it uses indentation to show the account hierarchy. In flat-mode you can add `--drop N' to omit the first few account name-components. Account names can be depth-clipped with `depth:N' or-`--depth N' or `-N'.-- Examples:---$ hledger accounts-assets:bank:checking-assets:bank:saving-assets:cash-expenses:food-expenses:supplies-income:gifts-income:salary-liabilities:debts---File: hledger.info, Node: activity, Next: add, Prev: accounts, Up: COMMANDS--3.2 activity-============--activity-Show an ascii barchart of posting counts per interval.-- The activity command displays an ascii histogram showing transaction-counts by day, week, month or other reporting interval (by day is the-default). With query arguments, it counts only matched transactions.-- Examples:---$ hledger activity --quarterly-2008-01-01 **-2008-04-01 *******-2008-07-01-2008-10-01 **---File: hledger.info, Node: add, Next: aregister, Prev: activity, Up: COMMANDS--3.3 add-=======--add-Prompt for transactions and add them to the journal. Any arguments will-be used as default inputs for the first N prompts.-- Many hledger users edit their journals directly with a text editor,-or generate them from CSV. For more interactive data entry, there is the-`add' command, which prompts interactively on the console for new-transactions, and appends them to the journal file (if there are-multiple `-f FILE' options, the first file is used.) Existing-transactions are not changed. This is the only hledger command that-writes to the journal file.-- To use it, just run `hledger add' and follow the prompts. You can-add as many transactions as you like; when you are finished, enter `.'-or press control-d or control-c to exit.-- Features:-- * add tries to provide useful defaults, using the most similar (by- description) recent transaction (filtered by the query, if any) as- a template.-- * You can also set the initial defaults with command line arguments.-- * Readline-style edit keys can be used during data entry.-- * The tab key will auto-complete whenever possible - accounts,- descriptions, dates (`yesterday', `today', `tomorrow'). If the- input area is empty, it will insert the default value.-- * If the journal defines a default commodity, it will be added to- any bare numbers entered.-- * A parenthesised transaction code may be entered following a date.-- * Comments and tags may be entered following a description or amount.-- * If you make a mistake, enter `<' at any prompt to go one step- backward.-- * Input prompts are displayed in a different colour when the terminal- supports it.-- Example (see the tutorial for a detailed explanation):---$ hledger add-Adding transactions to journal file /src/hledger/examples/sample.journal-Any command line arguments will be used as defaults.-Use tab key to complete, readline keys to edit, enter to accept defaults.-An optional (CODE) may follow transaction dates.-An optional ; COMMENT may follow descriptions or amounts.-If you make a mistake, enter < at any prompt to go one step backward.-To end a transaction, enter . when prompted.-To quit, enter . at a date prompt or press control-d or control-c.-Date [2015/05/22]:-Description: supermarket-Account 1: expenses:food-Amount 1: $10-Account 2: assets:checking-Amount 2 [$-10.0]:-Account 3 (or . or enter to finish this transaction): .-2015/05/22 supermarket- expenses:food $10- assets:checking $-10.0--Save this transaction to the journal ? [y]:-Saved.-Starting the next transaction (. or ctrl-D/ctrl-C to quit)-Date [2015/05/22]: <CTRL-D> $-- On Microsoft Windows, the add command makes sure that no part of the-file path ends with a period, as that would cause problems (#1056).---File: hledger.info, Node: aregister, Next: balance, Prev: add, Up: COMMANDS--3.4 aregister-=============--aregister, areg-Show the transactions and running historical balance in an account, with-each line item representing one transaction.-- `aregister' shows the transactions affecting a particular account-and its subaccounts, with each line item representing a whole-transaction - as in bank statements, hledger-ui, hledger-web and other-accounting apps.-- Note this is unlike the `register' command, which shows individual-postings and does not always show a single account or a historical-balance.-- A reminder, "historical" balances include any balance from-transactions before the report start date, so (if opening balances are-recorded correctly) `aregister' will show the real-world balances of an-account, as you would see in a bank statement.-- As a quick rule of thumb, use `aregister' for reconciling real-world-asset/liability accounts and `register' for reviewing detailed-revenues/expenses.-- `aregister' shows the register for just one account (and its-subaccounts). This account must be specified as the first argument. You-can write either the full account name, or a case-insensitive regular-expression which will select the alphabetically first matched account.-(Eg if you have `assets:aaa:checking' and `assets:bbb:checking'-accounts, `hledger areg checking' would select `assets:aaa:checking'.)-- Any additional arguments form a query which will filter the-transactions shown.-- Each `aregister' line item shows:-- * the transaction's date (or the relevant posting's date if- different, see below)-- * the names of all the other account(s) involved in this transaction- (probably abbreviated)-- * the total change to this account's balance from this transaction-- * the account's historical running balance after this transaction.-- Transactions making a net change of zero are not shown by default;-add the `-E/--empty' flag to show them.-- `aregister' ignores a depth limit, so its final total will always-match a balance report with similar arguments.-- This command also supports the output destination and output format-options The output formats supported are `txt', `csv', and `json'.--* Menu:--* aregister and custom posting dates::---File: hledger.info, Node: aregister and custom posting dates, Up: aregister--3.4.1 aregister and custom posting dates-------------------------------------------Transactions whose date is outside the report period can still be shown,-if they have a posting to this account dated inside the report period.-(And in this case it's the posting date that is shown.) This ensures-that `aregister' can show an accurate historical running balance,-matching the one shown by `register -H' with the same arguments.-- To filter strictly by transaction date instead, add the-`--txn-dates' flag. If you use this flag and some of your postings have-custom dates, it's probably best to assume the running balance is wrong.-- Examples:-- Show all transactions and historical running balance in the first-account whose name contains "checking":---$ hledger areg checking-- Show transactions and historical running balance in all asset-accounts during july:---$ hledger areg assets date:jul---File: hledger.info, Node: balance, Next: balancesheet, Prev: aregister, Up: COMMANDS--3.5 balance-===========--balance, bal, b-Show accounts and their balances.-- The balance command is hledger's most versatile command. Note,-despite the name, it is not always used for showing real-world account-balances; the more accounting-aware balancesheet and incomestatement-may be more convenient for that.-- By default, it displays all accounts, and each account's change in-balance during the entire period of the journal. Balance changes are-calculated by adding up the postings in each account. You can limit the-postings matched, by a query, to see fewer accounts, changes over a-different time period, changes from only cleared transactions, etc.-- If you include an account's complete history of postings in the-report, the balance change is equivalent to the account's current ending-balance. For a real-world account, typically you won't have all-transactions in the journal; instead you'll have all transactions after-a certain date, and an "opening balances" transaction setting the-correct starting balance on that date. Then the balance command will-show real-world account balances. In some cases the -H/-historical flag-is used to ensure this (more below).-- This command also supports the output destination and output format-options The output formats supported are (in most modes): `txt', `csv',-`html', and `json'.-- The balance command can produce several styles of report:--* Menu:--* Single-period flat balance report::-* Single-period tree-mode balance report::-* Multi-period balance report::-* Depth limiting::-* Colour support::-* Sorting by amount::-* Percentages::-* Customising single-period balance reports::-* Budget report::---File: hledger.info, Node: Single-period flat balance report, Next: Single-period tree-mode balance report, Up: balance--3.5.1 Single-period flat balance report------------------------------------------This is the default for hledger's balance command: a flat list of all-(or with a query, matched) accounts, showing full account names.-Accounts are sorted by declaration order if any, and then by account-name. Accounts which have zero balance are not shown unless-`-E/--empty' is used. The reported balances' total is shown as the last-line, unless disabled by `-N'/`--no-total'.---$ hledger bal- $1 assets:bank:saving- $-2 assets:cash- $1 expenses:food- $1 expenses:supplies- $-1 income:gifts- $-1 income:salary- $1 liabilities:debts---------------------- 0---File: hledger.info, Node: Single-period tree-mode balance report, Next: Multi-period balance report, Prev: Single-period flat balance report, Up: balance--3.5.2 Single-period tree-mode balance report-----------------------------------------------With the `-t/--tree' flag, accounts are displayed hierarchically,-showing subaccounts as short names indented below their parent. (This is-the default style in Ledger and in older hledger versions.)---$ hledger balance- $-1 assets- $1 bank:saving- $-2 cash- $2 expenses- $1 food- $1 supplies- $-2 income- $-1 gifts- $-1 salary- $1 liabilities:debts---------------------- 0-- For more compact output, "boring" accounts containing a single-interesting subaccount and no balance of their own (`assets:bank' and-`liabilities' here) are elided into the following line, unless-`--no-elide' is used. And accounts which have zero balance and no-non-zero subaccounts are omitted, unless `-E/--empty' is used.-- Account balances in tree mode are "inclusive" - they include the-balances of any subaccounts. Eg, the `assets' `$-1' balance here-includes the `$1' from `assets:bank:saving' and the `$-2' from-`assets:cash'. (And it would include balance posted to the `assets'-account itself, if there was any). Note this causes some repetition,-and the final total (`0') is the sum of the top-level balances, not of-all the balances shown.-- Each group of sibling accounts is sorted separately, by declaration-order and then by account name.---File: hledger.info, Node: Multi-period balance report, Next: Depth limiting, Prev: Single-period tree-mode balance report, Up: balance--3.5.3 Multi-period balance report------------------------------------Multi-period balance reports are a very useful hledger feature,-activated if you provide one of the reporting interval flags, such as-`-M'/`--monthly'. They are similar to single-period balance reports,-but they show the report as a table, with columns representing one or-more successive time periods. This is the usually the preferred style-of balance report in hledger (even for a single period).-- Multi-period balance reports come in several types, showing different-information:-- 1. A balance change report: by default, each column shows the sum of- postings in that period, ie the account's change of balance in that- period. This is useful eg for a monthly income statement:---$ hledger balance --quarterly income expenses -E-Balance changes in 2008:-- || 2008q1 2008q2 2008q3 2008q4-===================++=================================- expenses:food || 0 $1 0 0- expenses:supplies || 0 $1 0 0- income:gifts || 0 $-1 0 0- income:salary || $-1 0 0 0--------------------++---------------------------------- || $-1 $1 0 0-- 2. A cumulative end balance report: with `--cumulative', each column- shows the end balance for that period, accumulating the changes- across periods, starting from 0 at the report start date:--- $ hledger balance --quarterly income expenses -E --cumulative- Ending balances (cumulative) in 2008:-- || 2008/03/31 2008/06/30 2008/09/30 2008/12/31- ===================++=================================================- expenses:food || 0 $1 $1 $1- expenses:supplies || 0 $1 $1 $1- income:gifts || 0 $-1 $-1 $-1- income:salary || $-1 $-1 $-1 $-1- -------------------++-------------------------------------------------- || $-1 0 0 0-- 3. A historical end balance report: with `--historical/-H', each- column shows the actual historical end balance for that period,- accumulating the changes across periods, and including the balance- from any postings before the report start date. This is useful eg- for a multi-period balance sheet, and when you want to see- balances only after a certain date:--- $ hledger balance ^assets ^liabilities --quarterly --historical --begin 2008/4/1- Ending balances (historical) in 2008/04/01-2008/12/31:-- || 2008/06/30 2008/09/30 2008/12/31- ======================++=====================================- assets:bank:checking || $1 $1 0- assets:bank:saving || $1 $1 $1- assets:cash || $-2 $-2 $-2- liabilities:debts || 0 0 $1- ----------------------++-------------------------------------- || 0 0 0--- Note that `--cumulative' or `--historical/-H' disable-`--row-total/-T', since summing end balances generally does not make-sense.-- With a reporting interval (like `--quarterly' above), the report-start/end dates will be adjusted if necessary so that they encompass the-displayed report periods. This is so that the first and last periods-will be "full" and comparable to the others.-- The `-E/--empty' flag does two things in multicolumn balance-reports: first, the report will show all columns within the specified-report period (without -E, leading and trailing columns with all zeroes-are not shown). Second, all accounts which existed at the report start-date will be considered, not just the ones with activity during the-report period (use -E to include low-activity accounts which would-otherwise would be omitted).-- The `-T/--row-total' flag adds an additional column showing the-total for each row.-- The `-A/--average' flag adds a column showing the average value in-each row.-- Here's an example of all three:---$ hledger balance -Q income expenses --tree -ETA-Balance changes in 2008:-- || 2008q1 2008q2 2008q3 2008q4 Total Average-============++===================================================- expenses || 0 $2 0 0 $2 $1- food || 0 $1 0 0 $1 0- supplies || 0 $1 0 0 $1 0- income || $-1 $-1 0 0 $-2 $-1- gifts || 0 $-1 0 0 $-1 0- salary || $-1 0 0 0 $-1 0-------------++---------------------------------------------------- || $-1 $1 0 0 0 0--(Average is rounded to the dollar here since all journal amounts are)-- The `--transpose' flag can be used to exchange the rows and columns-of a multicolumn report.-- When showing multicommodity amounts, multicolumn balance reports will-elide any amounts which have more than two commodities, since otherwise-columns could get very wide. The `--no-elide' flag disables this.-Hiding totals with the `-N/--no-total' flag can also help reduce the-width of multicommodity reports.-- When the report is still too wide, a good workaround is to pipe it-into `less -RS' (-R for colour, -S to chop long lines). Eg: `hledger-bal -D --color=yes | less -RS'.---File: hledger.info, Node: Depth limiting, Next: Colour support, Prev: Multi-period balance report, Up: balance--3.5.4 Depth limiting-----------------------With a `depth:N' query, or `--depth N' option, or just `-N', balance-reports will show accounts only to the specified depth. This is very-useful to hide low-level accounts and get an overview. Eg, limiting to-depth 1 shows the top-level accounts:---$ hledger balance -N -1- $-1 assets- $2 expenses- $-2 income- $1 liabilities-- Accounts at the depth limit will include the balances of any hidden-subaccounts (even in flat mode, which normally shows exclusive-balances).-- You can also drop account name components from the start of account-names, using `--drop N'. This can be useful to hide unwanted top-level-detail.---File: hledger.info, Node: Colour support, Next: Sorting by amount, Prev: Depth limiting, Up: balance--3.5.5 Colour support-----------------------In terminal output, when colour is enabled, the balance command shows-negative amounts in red.---File: hledger.info, Node: Sorting by amount, Next: Percentages, Prev: Colour support, Up: balance--3.5.6 Sorting by amount--------------------------With `-S'/`--sort-amount', accounts with the largest (most positive)-balances are shown first. For example, `hledger bal expenses -MAS'-shows your biggest averaged monthly expenses first.-- Revenues and liability balances are typically negative, however, so-`-S' shows these in reverse order. To work around this, you can add-`--invert' to flip the signs. Or, use one of the sign-flipping reports-like `balancesheet' or `incomestatement', which also support `-S'. Eg:-`hledger is -MAS'.---File: hledger.info, Node: Percentages, Next: Customising single-period balance reports, Prev: Sorting by amount, Up: balance--3.5.7 Percentages--------------------With `-%' or `--percent', balance reports show each account's value-expressed as a percentage of the column's total. This is useful to get-an overview of the relative sizes of account balances. For example to-obtain an overview of expenses:---$ hledger balance expenses -%- 100.0 % expenses- 50.0 % food- 50.0 % supplies---------------------- 100.0 %-- Note that `--tree' does not have an effect on `-%'. The percentages-are always relative to the total sum of each column, they are never-relative to the parent account.-- Since the percentages are relative to the columns sum, it is usually-not useful to calculate percentages if the signs of the amounts are-mixed. Although the results are technically correct, they are most-likely useless. Especially in a balance report that sums up to zero (eg-`hledger balance -B') all percentage values will be zero.-- This flag does not work if the report contains any mixed commodity-accounts. If there are mixed commodity accounts in the report be sure to-use `-V' or `-B' to coerce the report into using a single commodity.---File: hledger.info, Node: Customising single-period balance reports, Next: Budget report, Prev: Percentages, Up: balance--3.5.8 Customising single-period balance reports--------------------------------------------------You can customise the layout of single-period balance reports with-`--format FMT', which sets the format of each line. Eg:---$ hledger balance --format "%20(account) %12(total)"- assets $-1- bank:saving $1- cash $-2- expenses $2- food $1- supplies $1- income $-2- gifts $-1- salary $-1- liabilities:debts $1----------------------------------- 0-- The FMT format string (plus a newline) specifies the formatting-applied to each account/balance pair. It may contain any suitable text,-with data fields interpolated like so:-- `%[MIN][.MAX](FIELDNAME)'-- * MIN pads with spaces to at least this width (optional)-- * MAX truncates at this width (optional)-- * FIELDNAME must be enclosed in parentheses, and can be one of:-- * `depth_spacer' - a number of spaces equal to the account's- depth, or if MIN is specified, MIN * depth spaces.-- * `account' - the account's name-- * `total' - the account's balance/posted total, right justified--- Also, FMT can begin with an optional prefix to control how-multi-commodity amounts are rendered:-- * `%_' - render on multiple lines, bottom-aligned (the default)-- * `%^' - render on multiple lines, top-aligned-- * `%,' - render on one line, comma-separated-- There are some quirks. Eg in one-line mode, `%(depth_spacer)' has no-effect, instead `%(account)' has indentation built in. Experimentation-may be needed to get pleasing results.-- Some example formats:-- * `%(total)' - the account's total-- * `%-20.20(account)' - the account's name, left justified, padded to- 20 characters and clipped at 20 characters-- * `%,%-50(account) %25(total)' - account name padded to 50- characters, total padded to 20 characters, with multiple- commodities rendered on one line-- * `%20(total) %2(depth_spacer)%-(account)' - the default format for- the single-column balance report---File: hledger.info, Node: Budget report, Prev: Customising single-period balance reports, Up: balance--3.5.9 Budget report----------------------There is also a special balance report mode for showing budget-performance. The `--budget' flag activates extra columns showing the-budget goals for each account and period, if any. For this report,-budget goals are defined by periodic transactions. This is very useful-for comparing planned and actual income, expenses, time usage, etc.-- For example, you can take average monthly expenses in the common-expense categories to construct a minimal monthly budget:---;; Budget-~ monthly- income $2000- expenses:food $400- expenses:bus $50- expenses:movies $30- assets:bank:checking--;; Two months worth of expenses-2017-11-01- income $1950- expenses:food $396- expenses:bus $49- expenses:movies $30- expenses:supplies $20- assets:bank:checking--2017-12-01- income $2100- expenses:food $412- expenses:bus $53- expenses:gifts $100- assets:bank:checking-- You can now see a monthly budget report:---$ hledger balance -M --budget-Budget performance in 2017/11/01-2017/12/31:-- || Nov Dec-======================++====================================================- assets || $-2445 [ 99% of $-2480] $-2665 [ 107% of $-2480]- assets:bank || $-2445 [ 99% of $-2480] $-2665 [ 107% of $-2480]- assets:bank:checking || $-2445 [ 99% of $-2480] $-2665 [ 107% of $-2480]- expenses || $495 [ 103% of $480] $565 [ 118% of $480]- expenses:bus || $49 [ 98% of $50] $53 [ 106% of $50]- expenses:food || $396 [ 99% of $400] $412 [ 103% of $400]- expenses:movies || $30 [ 100% of $30] 0 [ 0% of $30]- income || $1950 [ 98% of $2000] $2100 [ 105% of $2000]-----------------------++----------------------------------------------------- || 0 [ 0] 0 [ 0]-- This is different from a normal balance report in several ways:-- * Only accounts with budget goals during the report period are- shown, by default.-- * In each column, in square brackets after the actual amount, budget- goal amounts are shown, and the actual/goal percentage. (Note:- budget goals should be in the same commodity as the actual amount.)-- * All parent accounts are always shown, even in flat mode. Eg assets,- assets:bank, and expenses above.-- * Amounts always include all subaccounts, budgeted or unbudgeted,- even in flat mode.--- This means that the numbers displayed will not always add up! Eg-above, the `expenses' actual amount includes the gifts and supplies-transactions, but the `expenses:gifts' and `expenses:supplies' accounts-are not shown, as they have no budget amounts declared.-- This can be confusing. When you need to make things clearer, use the-`-E/--empty' flag, which will reveal all accounts including unbudgeted-ones, giving the full picture. Eg:---$ hledger balance -M --budget --empty-Budget performance in 2017/11/01-2017/12/31:-- || Nov Dec-======================++====================================================- assets || $-2445 [ 99% of $-2480] $-2665 [ 107% of $-2480]- assets:bank || $-2445 [ 99% of $-2480] $-2665 [ 107% of $-2480]- assets:bank:checking || $-2445 [ 99% of $-2480] $-2665 [ 107% of $-2480]- expenses || $495 [ 103% of $480] $565 [ 118% of $480]- expenses:bus || $49 [ 98% of $50] $53 [ 106% of $50]- expenses:food || $396 [ 99% of $400] $412 [ 103% of $400]- expenses:gifts || 0 $100- expenses:movies || $30 [ 100% of $30] 0 [ 0% of $30]- expenses:supplies || $20 0- income || $1950 [ 98% of $2000] $2100 [ 105% of $2000]-----------------------++----------------------------------------------------- || 0 [ 0] 0 [ 0]-- You can roll over unspent budgets to next period with `--cumulative':---$ hledger balance -M --budget --cumulative-Budget performance in 2017/11/01-2017/12/31:-- || Nov Dec-======================++====================================================- assets || $-2445 [ 99% of $-2480] $-5110 [ 103% of $-4960]- assets:bank || $-2445 [ 99% of $-2480] $-5110 [ 103% of $-4960]- assets:bank:checking || $-2445 [ 99% of $-2480] $-5110 [ 103% of $-4960]- expenses || $495 [ 103% of $480] $1060 [ 110% of $960]- expenses:bus || $49 [ 98% of $50] $102 [ 102% of $100]- expenses:food || $396 [ 99% of $400] $808 [ 101% of $800]- expenses:movies || $30 [ 100% of $30] $30 [ 50% of $60]- income || $1950 [ 98% of $2000] $4050 [ 101% of $4000]-----------------------++----------------------------------------------------- || 0 [ 0] 0 [ 0]-- For more examples and notes, see Budgeting.--* Menu:--* Budget report start date::-* Nested budgets::---File: hledger.info, Node: Budget report start date, Next: Nested budgets, Up: Budget report--3.5.9.1 Budget report start date-................................--This might be a bug, but for now: when making budget reports, it's a-good idea to explicitly set the report's start date to the first day of-a reporting period, because a periodic rule like `~ monthly' generates-its transactions on the 1st of each month, and if your journal has no-regular transactions on the 1st, the default report start date could-exclude that budget goal, which can be a little surprising. Eg here the-default report period is just the day of 2020-01-15:---~ monthly in 2020- (expenses:food) $500--2020-01-15- expenses:food $400- assets:checking---$ hledger bal expenses --budget-Budget performance in 2020-01-15:-- || 2020-01-15-==============++============- <unbudgeted> || $400---------------++------------- || $400-- To avoid this, specify the budget report's period, or at least the-start date, with `-b'/`-e'/`-p'/`date:', to ensure it includes the-budget goal transactions (periodic transactions) that you want. Eg,-adding `-b 2020/1/1' to the above:---$ hledger bal expenses --budget -b 2020/1/1-Budget performance in 2020-01-01..2020-01-15:-- || 2020-01-01..2020-01-15-===============++========================- expenses:food || $400 [80% of $500]----------------++------------------------- || $400 [80% of $500]---File: hledger.info, Node: Nested budgets, Prev: Budget report start date, Up: Budget report--3.5.9.2 Nested budgets-......................--You can add budgets to any account in your account hierarchy. If you-have budgets on both parent account and some of its children, then-budget(s) of the child account(s) would be added to the budget of their-parent, much like account balances behave.-- In the most simple case this means that once you add a budget to any-account, all its parents would have budget as well.-- To illustrate this, consider the following budget:---~ monthly from 2019/01- expenses:personal $1,000.00- expenses:personal:electronics $100.00- liabilities-- With this, monthly budget for electronics is defined to be $100 and-budget for personal expenses is an additional $1000, which implicitly-means that budget for both `expenses:personal' and `expenses' is $1100.-- Transactions in `expenses:personal:electronics' will be counted both-towards its $100 budget and $1100 of `expenses:personal' , and-transactions in any other subaccount of `expenses:personal' would be-counted towards only towards the budget of `expenses:personal'.-- For example, let's consider these transactions:---~ monthly from 2019/01- expenses:personal $1,000.00- expenses:personal:electronics $100.00- liabilities--2019/01/01 Google home hub- expenses:personal:electronics $90.00- liabilities $-90.00--2019/01/02 Phone screen protector- expenses:personal:electronics:upgrades $10.00- liabilities--2019/01/02 Weekly train ticket- expenses:personal:train tickets $153.00- liabilities--2019/01/03 Flowers- expenses:personal $30.00- liabilities-- As you can see, we have transactions in-`expenses:personal:electronics:upgrades' and `expenses:personal:train-tickets', and since both of these accounts are without explicitly-defined budget, these transactions would be counted towards budgets of-`expenses:personal:electronics' and `expenses:personal' accordingly:---$ hledger balance --budget -M-Budget performance in 2019/01:-- || Jan-===============================++===============================- expenses || $283.00 [ 26% of $1100.00]- expenses:personal || $283.00 [ 26% of $1100.00]- expenses:personal:electronics || $100.00 [ 100% of $100.00]- liabilities || $-283.00 [ 26% of $-1100.00]--------------------------------++-------------------------------- || 0 [ 0]-- And with `--empty', we can get a better picture of budget allocation-and consumption:---$ hledger balance --budget -M --empty-Budget performance in 2019/01:-- || Jan-========================================++===============================- expenses || $283.00 [ 26% of $1100.00]- expenses:personal || $283.00 [ 26% of $1100.00]- expenses:personal:electronics || $100.00 [ 100% of $100.00]- expenses:personal:electronics:upgrades || $10.00- expenses:personal:train tickets || $153.00- liabilities || $-283.00 [ 26% of $-1100.00]-----------------------------------------++-------------------------------- || 0 [ 0]---File: hledger.info, Node: balancesheet, Next: balancesheetequity, Prev: balance, Up: COMMANDS--3.6 balancesheet-================--balancesheet, bs-This command displays a balance sheet, showing historical ending-balances of asset and liability accounts. (To see equity as well, use-the balancesheetequity command.) Amounts are shown with normal positive-sign, as in conventional financial statements.-- The asset and liability accounts shown are those accounts declared-with the `Asset' or `Cash' or `Liability' type, or otherwise all-accounts under a top-level `asset' or `liability' account (case-insensitive, plurals allowed).-- Example:---$ hledger balancesheet-Balance Sheet--Assets:- $-1 assets- $1 bank:saving- $-2 cash---------------------- $-1--Liabilities:- $1 liabilities:debts---------------------- $1--Total:---------------------- 0-- With a reporting interval, multiple columns will be shown, one for-each report period. As with multicolumn balance reports, you can alter-the report mode with `--change'/`--cumulative'/`--historical'. Normally-balancesheet shows historical ending balances, which is what you need-for a balance sheet; note this means it ignores report begin dates (and-`-T/--row-total', since summing end balances generally does not make-sense). Instead of absolute values percentages can be displayed with-`-%'.-- This command also supports the output destination and output format-options The output formats supported are `txt', `csv', `html', and-(experimental) `json'.---File: hledger.info, Node: balancesheetequity, Next: cashflow, Prev: balancesheet, Up: COMMANDS--3.7 balancesheetequity-======================--balancesheetequity, bse-This command displays a balance sheet, showing historical ending-balances of asset, liability and equity accounts. Amounts are shown with-normal positive sign, as in conventional financial statements.-- The asset, liability and equity accounts shown are those accounts-declared with the `Asset', `Cash', `Liability' or `Equity' type, or-otherwise all accounts under a top-level `asset', `liability' or-`equity' account (case insensitive, plurals allowed).-- Example:---$ hledger balancesheetequity-Balance Sheet With Equity--Assets:- $-2 assets- $1 bank:saving- $-3 cash---------------------- $-2--Liabilities:- $1 liabilities:debts---------------------- $1--Equity:- $1 equity:owner---------------------- $1--Total:---------------------- 0-- This command also supports the output destination and output format-options The output formats supported are `txt', `csv', `html', and-(experimental) `json'.---File: hledger.info, Node: cashflow, Next: check, Prev: balancesheetequity, Up: COMMANDS--3.8 cashflow-============--cashflow, cf-This command displays a cashflow statement, showing the inflows and-outflows affecting "cash" (ie, liquid) assets. Amounts are shown with-normal positive sign, as in conventional financial statements.-- The "cash" accounts shown are those accounts declared with the-`Cash' type, or otherwise all accounts under a top-level `asset'-account (case insensitive, plural allowed) which do not have `fixed',-`investment', `receivable' or `A/R' in their name.-- Example:---$ hledger cashflow-Cashflow Statement--Cash flows:- $-1 assets- $1 bank:saving- $-2 cash---------------------- $-1--Total:---------------------- $-1-- With a reporting interval, multiple columns will be shown, one for-each report period. Normally cashflow shows changes in assets per-period, though as with multicolumn balance reports you can alter the-report mode with `--change'/`--cumulative'/`--historical'. Instead of-absolute values percentages can be displayed with `-%'.-- This command also supports the output destination and output format-options The output formats supported are `txt', `csv', `html', and-(experimental) `json'.---File: hledger.info, Node: check, Next: close, Prev: cashflow, Up: COMMANDS--3.9 check-=========--check-Check for various kinds of errors in your data. _experimental_-- hledger provides a number of built-in error checks to help prevent-problems in your data. Some of these are run automatically; or, you can-use this `check' command to run them on demand, with no output and a-zero exit code if all is well. Some examples:---hledger check # basic checks-hledger check -s # basic + strict checks-hledger check ordereddates uniqueleafnames # basic + specified checks-- Here are the checks currently available:--* Menu:--* Basic checks::-* Strict checks::-* Other checks::-* Add-on checks::---File: hledger.info, Node: Basic checks, Next: Strict checks, Up: check--3.9.1 Basic checks---------------------These are always run by this command and other commands:-- * *parseable* - data files are well-formed and can be successfully- parsed-- * *autobalanced* - all transactions are balanced, inferring missing- amounts where necessary, and possibly converting commodities using- transaction prices or automatically-inferred transaction prices-- * *assertions* - all balance assertions in the journal are passing.- (This check can be disabled with `-I'/`--ignore-assertions'.)----File: hledger.info, Node: Strict checks, Next: Other checks, Prev: Basic checks, Up: check--3.9.2 Strict checks----------------------These are always run by this and other commands when `-s'/`--strict' is-used (strict mode):-- * *accounts* - all account names used by transactions have been- declared-- * *commodities* - all commodity symbols used have been declared----File: hledger.info, Node: Other checks, Next: Add-on checks, Prev: Strict checks, Up: check--3.9.3 Other checks---------------------These checks can be run by specifying their names as arguments to the-check command:-- * *ordereddates* - transactions are ordered by date (similar to the- old `check-dates' command)-- * *uniqueleafnames* - all account leaf names are unique (similar to- the old `check-dupes' command)----File: hledger.info, Node: Add-on checks, Prev: Other checks, Up: check--3.9.4 Add-on checks----------------------Some checks are not yet integrated with this command, but are available-as add-on commands in-https://github.com/simonmichael/hledger/tree/master/bin:-- * *hledger-check-tagfiles* - all tag values containing / (a forward- slash) exist as file paths-- * *hledger-check-fancyassertions* - more complex balance assertions- are passing--- You could make your own similar scripts to perform custom checks;-Cookbook -> Scripting may be helpful.---File: hledger.info, Node: close, Next: codes, Prev: check, Up: COMMANDS--3.10 close-==========--close, equity-Prints a "closing balances" transaction and an "opening balances"-transaction that bring account balances to and from zero, respectively.-These can be added to your journal file(s), eg to bring asset/liability-balances forward into a new journal file, or to close out-revenues/expenses to retained earnings at the end of a period.-- You can print just one of these transactions by using the `--close'-or `--open' flag. You can customise their descriptions with the-`--close-desc' and `--open-desc' options.-- One amountless posting to "equity:opening/closing balances" is added-to balance the transactions, by default. You can customise this account-name with `--close-acct' and `--open-acct'; if you specify only one of-these, it will be used for both.-- With `--x/--explicit', the equity posting's amount will be shown.-And if it involves multiple commodities, a posting for each commodity-will be shown, as with the print command.-- With `--interleaved', the equity postings are shown next to the-postings they balance, which makes troubleshooting easier.-- By default, transaction prices in the journal are ignored when-generating the closing/opening transactions. With `--show-costs', this-cost information is preserved (`balance -B' reports will be unchanged-after the transition). Separate postings are generated for each cost in-each commodity. Note this can generate very large journal entries, if-you have many foreign currency or investment transactions.--* Menu:--* close usage::---File: hledger.info, Node: close usage, Up: close--3.10.1 close usage---------------------If you split your journal files by time (eg yearly), you will typically-run this command at the end of the year, and save the closing-transaction as last entry of the old file, and the opening transaction-as the first entry of the new file. This makes the files self contained,-so that correct balances are reported no matter which of them are-loaded. Ie, if you load just one file, the balances are initialised-correctly; or if you load several files, the redundant closing/opening-transactions cancel each other out. (They will show up in print or-register reports; you can exclude them with a query like-`not:desc:'(opening|closing) balances''.)-- If you're running a business, you might also use this command to-"close the books" at the end of an accounting period, transferring-income statement account balances to retained earnings. (You may want-to change the equity account name to something like "equity:retained-earnings".)-- By default, the closing transaction is dated yesterday, the balances-are calculated as of end of yesterday, and the opening transaction is-dated today. To close on some other date, use: `hledger close -e-OPENINGDATE'. Eg, to close/open on the 2018/2019 boundary, use `-e-2019'. You can also use -p or `date:PERIOD' (any starting date is-ignored).-- Both transactions will include balance assertions for the-closed/reopened accounts. You probably shouldn't use status or realness-filters (like -C or -R or `status:') with this command, or the-generated balance assertions will depend on these flags. Likewise, if-you run this command with -auto, the balance assertions will probably-always require -auto.-- Examples:-- Carrying asset/liability balances into a new file for 2019:---$ hledger close -f 2018.journal -e 2019 assets liabilities --open- # (copy/paste the output to the start of your 2019 journal file)-$ hledger close -f 2018.journal -e 2019 assets liabilities --close- # (copy/paste the output to the end of your 2018 journal file)-- Now:---$ hledger bs -f 2019.journal # one file - balances are correct-$ hledger bs -f 2018.journal -f 2019.journal # two files - balances still correct-$ hledger bs -f 2018.journal not:desc:closing # to see year-end balances, must exclude closing txn-- Transactions spanning the closing date can complicate matters,-breaking balance assertions:---2018/12/30 a purchase made in 2018, clearing the following year- expenses:food 5- assets:bank:checking -5 ; [2019/1/2]-- Here's one way to resolve that:---; in 2018.journal:-2018/12/30 a purchase made in 2018, clearing the following year- expenses:food 5- liabilities:pending--; in 2019.journal:-2019/1/2 clearance of last year's pending transactions- liabilities:pending 5 = 0- assets:checking---File: hledger.info, Node: codes, Next: commodities, Prev: close, Up: COMMANDS--3.11 codes-==========--codes-List the codes seen in transactions, in the order parsed.-- This command prints the value of each transaction's code field, in-the order transactions were parsed. The transaction code is an optional-value written in parentheses between the date and description, often-used to store a cheque number, order number or similar.-- Transactions aren't required to have a code, and missing or empty-codes will not be shown by default. With the `-E'/`--empty' flag, they-will be printed as blank lines.-- You can add a query to select a subset of transactions.-- Examples:---1/1 (123)- (a) 1--1/1 ()- (a) 1--1/1- (a) 1--1/1 (126)- (a) 1---$ hledger codes-123-124-126---$ hledger codes -E-123-124---126---File: hledger.info, Node: commodities, Next: descriptions, Prev: codes, Up: COMMANDS--3.12 commodities-================--commodities-List all commodity/currency symbols used or declared in the journal.---File: hledger.info, Node: descriptions, Next: diff, Prev: commodities, Up: COMMANDS--3.13 descriptions-=================--descriptions-List the unique descriptions that appear in transactions.-- This command lists the unique descriptions that appear in-transactions, in alphabetic order. You can add a query to select a-subset of transactions.-- Example:---$ hledger descriptions-Store Name-Gas Station | Petrol-Person A---File: hledger.info, Node: diff, Next: files, Prev: descriptions, Up: COMMANDS--3.14 diff-=========--diff-Compares a particular account's transactions in two input files. It-shows any transactions to this account which are in one file but not in-the other.-- More precisely, for each posting affecting this account in either-file, it looks for a corresponding posting in the other file which-posts the same amount to the same account (ignoring date, description,-etc.) Since postings not transactions are compared, this also works-when multiple bank transactions have been combined into a single-journal entry.-- This is useful eg if you have downloaded an account's transactions-from your bank (eg as CSV data). When hledger and your bank disagree-about the account balance, you can compare the bank data with your-journal to find out the cause.-- Examples:---$ hledger diff -f $LEDGER_FILE -f bank.csv assets:bank:giro-These transactions are in the first file only:--2014/01/01 Opening Balances- assets:bank:giro EUR ...- ...- equity:opening balances EUR -...--These transactions are in the second file only:---File: hledger.info, Node: files, Next: help, Prev: diff, Up: COMMANDS--3.15 files-==========--files-List all files included in the journal. With a REGEX argument, only file-names matching the regular expression (case sensitive) are shown.---File: hledger.info, Node: help, Next: import, Prev: files, Up: COMMANDS--3.16 help-=========--help-Show any of the hledger manuals.-- The `help' command displays any of the main hledger manuals, in one-of several ways. Run it with no argument to list the manuals, or provide-a full or partial manual name to select one.-- hledger manuals are available in several formats. hledger help will-use the first of these display methods that it finds: info, man, $PAGER,-less, stdout (or when non-interactive, just stdout). You can force a-particular viewer with the `--info', `--man', `--pager', `--cat' flags.-- Examples:---$ hledger help-Please choose a manual by typing "hledger help MANUAL" (a substring is ok).-Manuals: hledger hledger-ui hledger-web journal csv timeclock timedot---$ hledger help h --man--hledger(1) hledger User Manuals hledger(1)--NAME- hledger - a command-line accounting tool--SYNOPSIS- hledger [-f FILE] COMMAND [OPTIONS] [ARGS]- hledger [-f FILE] ADDONCMD -- [OPTIONS] [ARGS]- hledger--DESCRIPTION- hledger is a cross-platform program for tracking money, time, or any-...---File: hledger.info, Node: import, Next: incomestatement, Prev: help, Up: COMMANDS--3.17 import-===========--import-Read new transactions added to each FILE since last run, and add them to-the main journal file. Or with -dry-run, just print the transactions-that would be added. Or with -catchup, just mark all of the FILEs'-transactions as imported, without actually importing any.-- The input files are specified as arguments - no need to write -f-before each one. So eg to add new transactions from all CSV files to-the main journal, it's just: `hledger import *.csv'-- New transactions are detected in the same way as print -new: by-assuming transactions are always added to the input files in increasing-date order, and by saving `.latest.FILE' state files.-- The -dry-run output is in journal format, so you can filter it, eg to-see only uncategorised transactions:---$ hledger import --dry ... | hledger -f- print unknown --ignore-assertions--* Menu:--* Importing balance assignments::-* Commodity display styles::---File: hledger.info, Node: Importing balance assignments, Next: Commodity display styles, Up: import--3.17.1 Importing balance assignments---------------------------------------Entries added by import will have their posting amounts made explicit-(like `hledger print -x'). This means that any balance assignments in-imported files must be evaluated; but, imported files don't get to see-the main file's account balances. As a result, importing entries with-balance assignments (eg from an institution that provides only balances-and not posting amounts) will probably generate incorrect posting-amounts. To avoid this problem, use print instead of import:---$ hledger print IMPORTFILE [--new] >> $LEDGER_FILE-- (If you think import should leave amounts implicit like print does,-please test it and send a pull request.)---File: hledger.info, Node: Commodity display styles, Prev: Importing balance assignments, Up: import--3.17.2 Commodity display styles----------------------------------Imported amounts will be formatted according to the canonical commodity-styles (declared or inferred) in the main journal file.---File: hledger.info, Node: incomestatement, Next: notes, Prev: import, Up: COMMANDS--3.18 incomestatement-====================--incomestatement, is-This command displays an income statement, showing revenues and expenses-during one or more periods. Amounts are shown with normal positive sign,-as in conventional financial statements.-- The revenue and expense accounts shown are those accounts declared-with the `Revenue' or `Expense' type, or otherwise all accounts under a-top-level `revenue' or `income' or `expense' account (case insensitive,-plurals allowed).-- Example:---$ hledger incomestatement-Income Statement--Revenues:- $-2 income- $-1 gifts- $-1 salary---------------------- $-2--Expenses:- $2 expenses- $1 food- $1 supplies---------------------- $2--Total:---------------------- 0-- With a reporting interval, multiple columns will be shown, one for-each report period. Normally incomestatement shows revenues/expenses per-period, though as with multicolumn balance reports you can alter the-report mode with `--change'/`--cumulative'/`--historical'. Instead of-absolute values percentages can be displayed with `-%'.-- This command also supports the output destination and output format-options The output formats supported are `txt', `csv', `html', and-(experimental) `json'.---File: hledger.info, Node: notes, Next: rewrite, Prev: incomestatement, Up: COMMANDS--3.19 notes-==========--notes-List the unique notes that appear in transactions.-- This command lists the unique notes that appear in transactions, in-alphabetic order. You can add a query to select a subset of-transactions. The note is the part of the transaction description after-a | character (or if there is no |, the whole description).-- Example:---$ hledger notes-Petrol-Snacks---File: hledger.info, Node: rewrite, Next: roi, Prev: notes, Up: COMMANDS--3.20 rewrite-============--rewrite-Print all transactions, rewriting the postings of matched transactions.-For now the only rewrite available is adding new postings, like print--auto.-- This is a start at a generic rewriter of transaction entries. It-reads the default journal and prints the transactions, like print, but-adds one or more specified postings to any transactions matching QUERY.-The posting amounts can be fixed, or a multiplier of the existing-transaction's first posting amount.-- Examples:---$ hledger-rewrite.hs ^income --add-posting '(liabilities:tax) *.33 ; income tax' --add-posting '(reserve:gifts) $100'-$ hledger-rewrite.hs expenses:gifts --add-posting '(reserve:gifts) *-1"'-$ hledger-rewrite.hs -f rewrites.hledger-- rewrites.hledger may consist of entries like:---= ^income amt:<0 date:2017- (liabilities:tax) *0.33 ; tax on income- (reserve:grocery) *0.25 ; reserve 25% for grocery- (reserve:) *0.25 ; reserve 25% for grocery-- Note the single quotes to protect the dollar sign from bash, and the-two spaces between account and amount.-- More:---$ hledger rewrite -- [QUERY] --add-posting "ACCT AMTEXPR" ...-$ hledger rewrite -- ^income --add-posting '(liabilities:tax) *.33'-$ hledger rewrite -- expenses:gifts --add-posting '(budget:gifts) *-1"'-$ hledger rewrite -- ^income --add-posting '(budget:foreign currency) *0.25 JPY; diversify'-- Argument for `--add-posting' option is a usual posting of-transaction with an exception for amount specification. More precisely,-you can use `'*'' (star symbol) before the amount to indicate that that-this is a factor for an amount of original matched posting. If the-amount includes a commodity name, the new posting amount will be in the-new commodity; otherwise, it will be in the matched posting amount's-commodity.--* Menu:--* Re-write rules in a file::-* Diff output format::-* rewrite vs print --auto::---File: hledger.info, Node: Re-write rules in a file, Next: Diff output format, Up: rewrite--3.20.1 Re-write rules in a file----------------------------------During the run this tool will execute so called "Automated Transactions"-found in any journal it process. I.e instead of specifying this-operations in command line you can put them in a journal file.---$ rewrite-rules.journal-- Make contents look like this:---= ^income- (liabilities:tax) *.33--= expenses:gifts- budget:gifts *-1- assets:budget *1-- Note that `'='' (equality symbol) that is used instead of date in-transactions you usually write. It indicates the query by which you want-to match the posting to add new ones.---$ hledger rewrite -- -f input.journal -f rewrite-rules.journal > rewritten-tidy-output.journal-- This is something similar to the commands pipeline:---$ hledger rewrite -- -f input.journal '^income' --add-posting '(liabilities:tax) *.33' \- | hledger rewrite -- -f - expenses:gifts --add-posting 'budget:gifts *-1' \- --add-posting 'assets:budget *1' \- > rewritten-tidy-output.journal-- It is important to understand that relative order of such entries in-journal is important. You can re-use result of previously added-postings.---File: hledger.info, Node: Diff output format, Next: rewrite vs print --auto, Prev: Re-write rules in a file, Up: rewrite--3.20.2 Diff output format----------------------------To use this tool for batch modification of your journal files you may-find useful output in form of unified diff.---$ hledger rewrite -- --diff -f examples/sample.journal '^income' --add-posting '(liabilities:tax) *.33'-- Output might look like:------ /tmp/examples/sample.journal-+++ /tmp/examples/sample.journal-@@ -18,3 +18,4 @@- 2008/01/01 income-- assets:bank:checking $1-+ assets:bank:checking $1- income:salary-+ (liabilities:tax) 0-@@ -22,3 +23,4 @@- 2008/06/01 gift-- assets:bank:checking $1-+ assets:bank:checking $1- income:gifts-+ (liabilities:tax) 0-- If you'll pass this through `patch' tool you'll get transactions-containing the posting that matches your query be updated. Note that-multiple files might be update according to list of input files-specified via `--file' options and `include' directives inside of these-files.-- Be careful. Whole transaction being re-formatted in a style of output-from `hledger print'.-- See also:-- https://github.com/simonmichael/hledger/issues/99---File: hledger.info, Node: rewrite vs print --auto, Prev: Diff output format, Up: rewrite--3.20.3 rewrite vs. print -auto---------------------------------This command predates print -auto, and currently does much the same-thing, but with these differences:-- * with multiple files, rewrite lets rules in any file affect all- other files. print -auto uses standard directive scoping; rules- affect only child files.-- * rewrite's query limits which transactions can be rewritten; all are- printed. print -auto's query limits which transactions are printed.-- * rewrite applies rules specified on command line or in the journal.- print -auto applies rules specified in the journal.----File: hledger.info, Node: roi, Next: stats, Prev: rewrite, Up: COMMANDS--3.21 roi-========--roi-Shows the time-weighted (TWR) and money-weighted (IRR) rate of return on-your investments.-- This command assumes that you have account(s) that hold nothing but-your investments and whenever you record current appraisal/valuation of-these investments you offset unrealized profit and loss into account(s)-that, again, hold nothing but unrealized profit and loss.-- Any transactions affecting balance of investment account(s) and not-originating from unrealized profit and loss account(s) are assumed to be-your investments or withdrawals.-- At a minimum, you need to supply a query (which could be just an-account name) to select your investments with `--inv', and another-query to identify your profit and loss transactions with `--pnl'.-- This command will compute and display the internalized rate of return-(IRR) and time-weighted rate of return (TWR) for your investments for-the time period requested. Both rates of return are annualized before-display, regardless of the length of reporting interval.-- Note, in some cases this report can fail, for these reasons:-- * Error (NotBracketed): No solution for Internal Rate of Return- (IRR). Possible causes: IRR is huge (>1000000%), balance of- investment becomes negative at some point in time.-- * Error (SearchFailed): Failed to find solution for Internal Rate of- Return (IRR). Either search does not converge to a solution, or- converges too slowly.-- Examples:-- * Using roi to report unrealised gains:- https://github.com/simonmichael/hledger/blob/master/examples/roi-unrealised.ledger-- More background:-- "ROI" stands for "return on investment". Traditionally this was-computed as a difference between current value of investment and its-initial value, expressed in percentage of the initial value.-- However, this approach is only practical in simple cases, where-investments receives no in-flows or out-flows of money, and where rate-of growth is fixed over time. For more complex scenarios you need-different ways to compute rate of return, and this command implements-two of them: IRR and TWR.-- Internal rate of return, or "IRR" (also called "money-weighted rate-of return") takes into account effects of in-flows and out-flows.-Naively, if you are withdrawing from your investment, your future gains-would be smaller (in absolute numbers), and will be a smaller-percentage of your initial investment, and if you are adding to your-investment, you will receive bigger absolute gains (but probably at the-same rate of return). IRR is a way to compute rate of return for each-period between in-flow or out-flow of money, and then combine them in a-way that gives you an annual rate of return that investment is expected-to generate.-- As mentioned before, in-flows and out-flows would be any cash that-you personally put in or withdraw, and for the "roi" command, these are-transactions that involve account(s) matching `--inv' argument and NOT-involve account(s) matching `--pnl' argument.-- Presumably, you will also record changes in the value of your-investment, and balance them against "profit and loss" (or "unrealized-gains") account. Note that in order for IRR to compute the precise-effect of your in-flows and out-flows on the rate of return, you will-need to record the value of your investement on or close to the days-when in- or out-flows occur.-- Implementation of IRR in hledger should match the `XIRR' formula in-Excel.-- Second way to compute rate of return that `roi' command implements-is called "time-weighted rate of return" or "TWR". Like IRR, it will-also break the history of your investment into periods between in-flows-and out-flows to compute rate of return per each period and then a-compound rate of return. However, internal workings of TWR are quite-different.-- In technical terms, IRR uses the same approach as computation of net-present value, and tries to find a discount rate that makes net present-value of all the cash flows of your investment to add up to zero. This-could be hard to wrap your head around, especially if you haven't done-discounted cash flow analysis before.-- TWR represents your investment as an imaginary "unit fund" where-in-flows/ out-flows lead to buying or selling "units" of your investment-and changes in its value change the value of "investment unit". Change-in "unit price" over the reporting period gives you rate of return of-your investment.-- References: * Explanation of rate of return * Explanation of IRR *-Explanation of TWR * Examples of computing IRR and TWR and discussion of-the limitations of both metrics-- More examples:-- Lets say that we found an investment in Snake Oil that is proising to-give us 10% annually:---2019-01-01 Investing in Snake Oil- assets:cash -$100- investment:snake oil--2019-12-24 Recording the growth of Snake Oil- investment:snake oil = $110- equity:unrealized gains-- For now, basic computation of the rate of return, as well as IRR and-TWR, gives us the expected 10%:---$ hledger roi -Y --inv investment --pnl "unrealized"-+---++------------+------------++---------------+----------+-------------+-----++--------+--------+-| || Begin | End || Value (begin) | Cashflow | Value (end) | PnL || IRR | TWR |-+===++============+============++===============+==========+=============+=====++========+========+-| 1 || 2019-01-01 | 2019-12-31 || 0 | 100 | 110 | 10 || 10.00% | 10.00% |-+---++------------+------------++---------------+----------+-------------+-----++--------+--------+-- However, lets say that shorty after investing in the Snake Oil we-started to have second thoughs, so we prompty withdrew $90, leaving only-$10 in. Before Christmas, though, we started to get the "fear of mission-out", so we put the $90 back in. So for most of the year, our investment-was just $10 dollars, and it gave us just $1 in growth:---2019-01-01 Investing in Snake Oil- assets:cash -$100- investment:snake oil--2019-01-02 Buyers remorse- assets:cash $90- investment:snake oil--2019-12-30 Fear of missing out- assets:cash -$90- investment:snake oil--2019-12-31 Recording the growth of Snake Oil- investment:snake oil = $101- equity:unrealized gains-- Now IRR and TWR are drastically different:---$ hledger roi -Y --inv investment --pnl "unrealized"-+---++------------+------------++---------------+----------+-------------+-----++-------+-------+-| || Begin | End || Value (begin) | Cashflow | Value (end) | PnL || IRR | TWR |-+===++============+============++===============+==========+=============+=====++=======+=======+-| 1 || 2019-01-01 | 2019-12-31 || 0 | 100 | 101 | 1 || 9.32% | 1.00% |-+---++------------+------------++---------------+----------+-------------+-----++-------+-------+-- Here, IRR tells us that we made close to 10% on the $10 dollars that-we had in the account most of the time. And TWR is ... just 1%? Why?-- Based on the transactions in our journal, TWR "think" that we are-buying back $90 worst of Snake Oil at the same price that it had at the-beginning of they year, and then after that our $100 investment gets $1-increase in value, or 1% of $100. Let's take a closer look at what is-happening here by asking for quarterly reports instead of annual:---$ hledger roi -Q --inv investment --pnl "unrealized"-+---++------------+------------++---------------+----------+-------------+-----++--------+-------+-| || Begin | End || Value (begin) | Cashflow | Value (end) | PnL || IRR | TWR |-+===++============+============++===============+==========+=============+=====++========+=======+-| 1 || 2019-01-01 | 2019-03-31 || 0 | 10 | 10 | 0 || 0.00% | 0.00% |-| 2 || 2019-04-01 | 2019-06-30 || 10 | 0 | 10 | 0 || 0.00% | 0.00% |-| 3 || 2019-07-01 | 2019-09-30 || 10 | 0 | 10 | 0 || 0.00% | 0.00% |-| 4 || 2019-10-01 | 2019-12-31 || 10 | 90 | 101 | 1 || 37.80% | 4.03% |-+---++------------+------------++---------------+----------+-------------+-----++--------+-------+-- Now both IRR and TWR are thrown off by the fact that all of the-growth for our investment happens in Q4 2019. This happes because IRR-computation is still yielding 9.32% and TWR is still 1%, but this time-these are rates for three month period instead of twelve, so in order to-get an annual rate they should be multiplied by four!-- Let's try to keep a better record of how Snake Oil grew in value:---2019-01-01 Investing in Snake Oil- assets:cash -$100- investment:snake oil--2019-01-02 Buyers remorse- assets:cash $90- investment:snake oil--2019-02-28 Recording the growth of Snake Oil- investment:snake oil- equity:unrealized gains -$0.25--2019-06-30 Recording the growth of Snake Oil- investment:snake oil- equity:unrealized gains -$0.25--2019-09-30 Recording the growth of Snake Oil- investment:snake oil- equity:unrealized gains -$0.25--2019-12-30 Fear of missing out- assets:cash -$90- investment:snake oil--2019-12-31 Recording the growth of Snake Oil- investment:snake oil- equity:unrealized gains -$0.25-- Would our quartery report look better now? Almost:---$ hledger roi -Q --inv investment --pnl "unrealized"-+---++------------+------------++---------------+----------+-------------+------++--------+--------+-| || Begin | End || Value (begin) | Cashflow | Value (end) | PnL || IRR | TWR |-+===++============+============++===============+==========+=============+======++========+========+-| 1 || 2019-01-01 | 2019-03-31 || 0 | 10 | 10.25 | 0.25 || 9.53% | 10.53% |-| 2 || 2019-04-01 | 2019-06-30 || 10.25 | 0 | 10.50 | 0.25 || 10.15% | 10.15% |-| 3 || 2019-07-01 | 2019-09-30 || 10.50 | 0 | 10.75 | 0.25 || 9.79% | 9.78% |-| 4 || 2019-10-01 | 2019-12-31 || 10.75 | 90 | 101.00 | 0.25 || 8.05% | 1.00% |-+---++------------+------------++---------------+----------+-------------+------++--------+--------+-- Something is still wrong with TWR computation for Q4, and if you have-been paying attention you know what it is already: big $90 buy-back is-recorded prior to the only transaction that captures the change of value-of Snake Oil that happened in this time period. Lets combine-transactions from 30th and 31st of Dec into one:---2019-12-30 Fear of missing out and growth of Snake Oil- assets:cash -$90- investment:snake oil- equity:unrealized gains -$0.25-- Now growth of investment properly affects its price at the time of-buy-back:---$ hledger roi -Q --inv investment --pnl "unrealized"-+---++------------+------------++---------------+----------+-------------+------++--------+--------+-| || Begin | End || Value (begin) | Cashflow | Value (end) | PnL || IRR | TWR |-+===++============+============++===============+==========+=============+======++========+========+-| 1 || 2019-01-01 | 2019-03-31 || 0 | 10 | 10.25 | 0.25 || 9.53% | 10.53% |-| 2 || 2019-04-01 | 2019-06-30 || 10.25 | 0 | 10.50 | 0.25 || 10.15% | 10.15% |-| 3 || 2019-07-01 | 2019-09-30 || 10.50 | 0 | 10.75 | 0.25 || 9.79% | 9.78% |-| 4 || 2019-10-01 | 2019-12-31 || 10.75 | 90 | 101.00 | 0.25 || 8.05% | 9.57% |-+---++------------+------------++---------------+----------+-------------+------++--------+--------+-- And for annual report, TWR now reports the exact profitability of our-investment:---$ hledger roi -Y --inv investment --pnl "unrealized"-+---++------------+------------++---------------+----------+-------------+------++-------+--------+-| || Begin | End || Value (begin) | Cashflow | Value (end) | PnL || IRR | TWR |-+===++============+============++===============+==========+=============+======++=======+========+-| 1 || 2019-01-01 | 2019-12-31 || 0 | 100 | 101.00 | 1.00 || 9.32% | 10.00% |-+---++------------+------------++---------------+----------+-------------+------++-------+--------+---File: hledger.info, Node: stats, Next: tags, Prev: roi, Up: COMMANDS--3.22 stats-==========--stats-Show some journal statistics.-- The stats command displays summary information for the whole-journal, or a matched part of it. With a reporting interval, it shows a-report for each report period.-- Example:---$ hledger stats-Main journal file : /src/hledger/examples/sample.journal-Included journal files :-Transactions span : 2008-01-01 to 2009-01-01 (366 days)-Last transaction : 2008-12-31 (2333 days ago)-Transactions : 5 (0.0 per day)-Transactions last 30 days: 0 (0.0 per day)-Transactions last 7 days : 0 (0.0 per day)-Payees/descriptions : 5-Accounts : 8 (depth 3)-Commodities : 1 ($)-Market prices : 12 ($)-- This command also supports output destination and output format-selection.---File: hledger.info, Node: tags, Next: test, Prev: stats, Up: COMMANDS--3.23 tags-=========--tags-List the unique tag names used in the journal. With a TAGREGEX argument,-only tag names matching the regular expression (case insensitive) are-shown. With QUERY arguments, only transactions matching the query are-considered.-- With the -values flag, the tags' unique values are listed instead.-- With -parsed flag, all tags or values are shown in the order they are-parsed from the input data, including duplicates.-- With -E/-empty, any blank/empty values will also be shown, otherwise-they are omitted.---File: hledger.info, Node: test, Next: Add-on commands, Prev: tags, Up: COMMANDS--3.24 test-=========--test-Run built-in unit tests.-- This command runs the unit tests built in to hledger and hledger-lib,-printing the results on stdout. If any test fails, the exit code will be-non-zero.-- This is mainly used by hledger developers, but you can also use it to-sanity-check the installed hledger executable on your platform. All-tests are expected to pass - if you ever see a failure, please report as-a bug!-- This command also accepts tasty test runner options, written after a-- (double hyphen). Eg to run only the tests in Hledger.Data.Amount, with-ANSI colour codes disabled:---$ hledger test -- -pData.Amount --color=never-- For help on these, see https://github.com/feuerbach/tasty#options-(`-- --help' currently doesn't show them).---File: hledger.info, Node: Add-on commands, Next: Add-on command flags, Prev: test, Up: COMMANDS--3.25 Add-on commands-====================--Any programs or scripts in your PATH named named `hledger-SOMETHING'-will also appear in the commands list (with a `+' mark). These are-called add-on commands.-- These offical add-ons are maintained and released along with hledger:-- * ui an efficient terminal interface for hledger (TUI)-- * web a simple web interface for hledger (WUI)-- These add-ons are maintained separately:-- * iadd a more interactive alternative for the add command-- * interest generates interest transactions according to various- schemes-- * stockquotes downloads market prices for your commodities from- AlphaVantage _(experimental)_-- Additional experimental add-ons, which may not be in a working state,-can be found in the bin/ directory in the hledger repo.---File: hledger.info, Node: Add-on command flags, Next: Making add-on commands, Prev: Add-on commands, Up: COMMANDS--3.26 Add-on command flags-=========================--In a hledger command line, add-on command flags must have a double dash-(`--') preceding them. Eg you must write:---$ hledger web -- --serve-- and not:---$ hledger web --serve-- (because the `--serve' flag belongs to `hledger-web', not `hledger').-- The `-h/--help' and `--version' flags work without `--', with their-position deciding which program they refer to. Eg `hledger -h web'-shows hledger's help, `hledger web -h' shows hledger-web's help.-- If you have any trouble with this, remember you can always run the-add-on program directly, eg:---$ hledger-web --serve---File: hledger.info, Node: Making add-on commands, Prev: Add-on command flags, Up: COMMANDS--3.27 Making add-on commands-===========================--Add-on commands are programs or scripts in your PATH-- * whose name starts with `hledger-'-- * whose name ends with a recognised file extension:- `.bat',`.com',`.exe', `.hs',`.lhs',`.pl',`.py',`.rb',`.rkt',`.sh'- or none-- * and (on unix, mac) which are executable by the current user.-- Add-ons are a relatively easy way to add local features or experiment-with new ideas. They can be written in any language, but haskell scripts-have a big advantage: they can use the same hledger library functions-that built-in commands use for command-line options, parsing and-reporting.---File: hledger.info, Node: ENVIRONMENT, Next: FILES, Prev: COMMANDS, Up: Top--4 ENVIRONMENT-*************--*LEDGER_FILE* The journal file path when not specified with `-f'.-Default: `~/.hledger.journal' (on windows, perhaps-`C:/Users/USER/.hledger.journal').-- A typical value is `~/DIR/YYYY.journal', where DIR is a-version-controlled finance directory and YYYY is the current year. Or-`~/DIR/current.journal', where current.journal is a symbolic link to-YYYY.journal.-- On Mac computers, you can set this and other environment variables-in a more thorough way that also affects applications started from the-GUI (say, an Emacs dock icon). Eg on MacOS Catalina I have a-`~/.MacOSX/environment.plist' file containing---{- "LEDGER_FILE" : "~/finance/current.journal"-}-- To see the effect you may need to `killall Dock', or reboot.-- *COLUMNS* The screen width used by the register command. Default:-the full terminal width.-- *NO_COLOR* If this variable exists with any value, hledger will not-use ANSI color codes in terminal output. This overrides the--color/-colour option.---File: hledger.info, Node: FILES, Next: LIMITATIONS, Prev: ENVIRONMENT, Up: Top--5 FILES-*******--Reads data from one or more files in hledger journal, timeclock,-timedot, or CSV format specified with `-f', or `$LEDGER_FILE', or-`$HOME/.hledger.journal' (on windows, perhaps-`C:/Users/USER/.hledger.journal').---File: hledger.info, Node: LIMITATIONS, Next: TROUBLESHOOTING, Prev: FILES, Up: Top--6 LIMITATIONS-*************--The need to precede add-on command options with `--' when invoked from-hledger is awkward.-- When input data contains non-ascii characters, a suitable system-locale must be configured (or there will be an unhelpful error). Eg on-POSIX, set LANG to something other than C.-- In a Microsoft Windows CMD window, non-ascii characters and colours-are not supported.-- On Windows, non-ascii characters may not display correctly when-running a hledger built in CMD in MSYS/CYGWIN, or vice-versa.-- In a Cygwin/MSYS/Mintty window, the tab key is not supported in-hledger add.-- Not all of Ledger's journal file syntax is supported. See file format-differences.-- On large data files, hledger is slower and uses more memory than-Ledger.---File: hledger.info, Node: TROUBLESHOOTING, Prev: LIMITATIONS, Up: Top--7 TROUBLESHOOTING-*****************--Here are some issues you might encounter when you run hledger (and-remember you can also seek help from the IRC channel, mail list or bug-tracker):-- *Successfully installed, but "No command 'hledger' found"*-stack and cabal install binaries into a special directory, which should-be added to your PATH environment variable. Eg on unix-like systems,-that is ~/.local/bin and ~/.cabal/bin respectively.-- *I set a custom LEDGER_FILE, but hledger is still using the default-file*-`LEDGER_FILE' should be a real environment variable, not just a shell-variable. The command `env | grep LEDGER_FILE' should show it. You may-need to use `export'. Here's an explanation.-- *Getting errors like "Illegal byte sequence" or "Invalid or-incomplete multibyte or wide character" or "commitAndReleaseBuffer:-invalid argument (invalid character)"*-Programs compiled with GHC (hledger, haskell build tools, etc.) need to-have a UTF-8-aware locale configured in the environment, otherwise they-will fail with these kinds of errors when they encounter non-ascii-characters.-- To fix it, set the LANG environment variable to some locale which-supports UTF-8. The locale you choose must be installed on your system.-- Here's an example of setting LANG temporarily, on Ubuntu GNU/Linux:---$ file my.journal-my.journal: UTF-8 Unicode text # the file is UTF8-encoded-$ echo $LANG-C # LANG is set to the default locale, which does not support UTF8-$ locale -a # which locales are installed ?-C-en_US.utf8 # here's a UTF8-aware one we can use-POSIX-$ LANG=en_US.utf8 hledger -f my.journal print # ensure it is used for this command-- If available, `C.UTF-8' will also work. If your preferred locale-isn't listed by `locale -a', you might need to install it. Eg on-Ubuntu/Debian:---$ apt-get install language-pack-fr-$ locale -a-C-en_US.utf8-fr_BE.utf8-fr_CA.utf8-fr_CH.utf8-fr_FR.utf8-fr_LU.utf8-POSIX-$ LANG=fr_FR.utf8 hledger -f my.journal print-- Here's how you could set it permanently, if you use a bash shell:---$ echo "export LANG=en_US.utf8" >>~/.bash_profile-$ bash --login-- Exact spelling and capitalisation may be important. Note the-difference on MacOS (`UTF-8', not `utf8'). Some platforms (eg ubuntu)-allow variant spellings, but others (eg macos) require it to be exact:---$ locale -a | grep -iE en_us.*utf-en_US.UTF-8-$ LANG=en_US.UTF-8 hledger -f my.journal print----Tag Table:-Node: Top76-Node: COMMON TASKS2317-Ref: #common-tasks2429-Node: Getting help2836-Ref: #getting-help2968-Node: Constructing command lines3519-Ref: #constructing-command-lines3711-Node: Starting a journal file4410-Ref: #starting-a-journal-file4608-Node: Setting opening balances5795-Ref: #setting-opening-balances5991-Node: Recording transactions9124-Ref: #recording-transactions9304-Node: Reconciling9861-Ref: #reconciling10004-Node: Reporting12249-Ref: #reporting12389-Node: Migrating to a new file16309-Ref: #migrating-to-a-new-file16457-Node: OPTIONS16755-Ref: #options16862-Node: General options17248-Ref: #general-options17373-Node: Command options20770-Ref: #command-options20921-Node: Command arguments21320-Ref: #command-arguments21467-Node: Queries22345-Ref: #queries22500-Node: Special characters in arguments and queries26452-Ref: #special-characters-in-arguments-and-queries26680-Node: More escaping27130-Ref: #more-escaping27292-Node: Even more escaping27586-Ref: #even-more-escaping27780-Node: Less escaping28453-Ref: #less-escaping28615-Node: Unicode characters28859-Ref: #unicode-characters29041-Node: Input files30450-Ref: #input-files30586-Node: Strict mode32974-Ref: #strict-mode33110-Node: Output destination33760-Ref: #output-destination33912-Node: Output format34337-Ref: #output-format34489-Node: Regular expressions36652-Ref: #regular-expressions36809-Node: Smart dates38550-Ref: #smart-dates38701-Node: Report start & end date40040-Ref: #report-start-end-date40212-Node: Report intervals41720-Ref: #report-intervals41885-Node: Period expressions42273-Ref: #period-expressions42433-Node: Depth limiting46812-Ref: #depth-limiting46956-Node: Pivoting47287-Ref: #pivoting47410-Node: Valuation49089-Ref: #valuation49191-Node: -B Cost49879-Ref: #b-cost49983-Node: -V Value50116-Ref: #v-value50262-Node: -X Value in specified commodity50456-Ref: #x-value-in-specified-commodity50655-Node: Valuation date50804-Ref: #valuation-date50972-Node: Market prices51394-Ref: #market-prices51574-Node: --infer-value market prices from transactions52517-Ref: #infer-value-market-prices-from-transactions52766-Node: Valuation commodity54044-Ref: #valuation-commodity54253-Node: Simple valuation examples55480-Ref: #simple-valuation-examples55682-Node: --value Flexible valuation56344-Ref: #value-flexible-valuation56552-Node: More valuation examples58496-Ref: #more-valuation-examples58705-Node: Effect of valuation on reports60717-Ref: #effect-of-valuation-on-reports60905-Node: COMMANDS68470-Ref: #commands68578-Node: accounts71166-Ref: #accounts71264-Node: activity71959-Ref: #activity72069-Node: add72451-Ref: #add72552-Node: aregister75347-Ref: #aregister75459-Node: aregister and custom posting dates77654-Ref: #aregister-and-custom-posting-dates77818-Node: balance78639-Ref: #balance78756-Node: Single-period flat balance report80405-Ref: #single-period-flat-balance-report80611-Node: Single-period tree-mode balance report81312-Ref: #single-period-tree-mode-balance-report81564-Node: Multi-period balance report83005-Ref: #multi-period-balance-report83216-Node: Depth limiting88827-Ref: #depth-limiting-188988-Node: Colour support89682-Ref: #colour-support89833-Node: Sorting by amount89929-Ref: #sorting-by-amount90083-Node: Percentages90573-Ref: #percentages90742-Node: Customising single-period balance reports91875-Ref: #customising-single-period-balance-reports92100-Node: Budget report94231-Ref: #budget-report94380-Node: Budget report start date99639-Ref: #budget-report-start-date99804-Node: Nested budgets101131-Ref: #nested-budgets101276-Node: balancesheet104663-Ref: #balancesheet104799-Node: balancesheetequity106307-Ref: #balancesheetequity106456-Node: cashflow107532-Ref: #cashflow107654-Node: check108868-Ref: #check108971-Node: Basic checks109574-Ref: #basic-checks109690-Node: Strict checks110184-Ref: #strict-checks110323-Node: Other checks110567-Ref: #other-checks110705-Node: Add-on checks111004-Ref: #add-on-checks111122-Node: close111576-Ref: #close111678-Node: close usage113195-Ref: #close-usage113288-Node: codes116096-Ref: #codes116204-Node: commodities116917-Ref: #commodities117044-Node: descriptions117126-Ref: #descriptions117254-Node: diff117558-Ref: #diff117664-Node: files118709-Ref: #files118809-Node: help118955-Ref: #help119055-Node: import120135-Ref: #import120249-Node: Importing balance assignments121169-Ref: #importing-balance-assignments121350-Node: Commodity display styles121997-Ref: #commodity-display-styles122168-Node: incomestatement122297-Ref: #incomestatement122430-Node: notes123769-Ref: #notes123883-Node: rewrite124250-Ref: #rewrite124356-Node: Re-write rules in a file126262-Ref: #re-write-rules-in-a-file126423-Node: Diff output format127573-Ref: #diff-output-format127754-Node: rewrite vs print --auto128846-Ref: #rewrite-vs.-print---auto129004-Node: roi129554-Ref: #roi129652-Node: stats141845-Ref: #stats141944-Node: tags142731-Ref: #tags142829-Node: test143346-Ref: #test143454-Node: Add-on commands144199-Ref: #add-on-commands144345-Node: Add-on command flags145111-Ref: #add-on-command-flags145285-Node: Making add-on commands145866-Ref: #making-add-on-commands146020-Node: ENVIRONMENT146614-Ref: #environment146726-Node: FILES147708-Ref: #files-1147811-Node: LIMITATIONS148024-Ref: #limitations148143-Node: TROUBLESHOOTING148884-Ref: #troubleshooting148997+This is the command-line interface (CLI) for the hledger accounting+tool. Here we also describe hledger's concepts and file formats. This+manual is for hledger 1.21.++ `hledger'++ `hledger [-f FILE] COMMAND [OPTIONS] [ARGS]'++ `hledger [-f FILE] ADDONCMD -- [OPTIONS] [ARGS]'++ hledger is a reliable, cross-platform set of programs for tracking+money, time, or any other commodity, using double-entry accounting and a+simple, editable file format. hledger is inspired by and largely+compatible with ledger(1).++ The basic function of the hledger CLI is to read a plain text file+describing financial transactions (in accounting terms, a general+journal) and print useful reports on standard output, or export them as+CSV. hledger can also read some other file formats such as CSV files,+translating them to journal format. Additionally, hledger lists other+hledger-* executables found in the user's $PATH and can invoke them as+subcommands.++ hledger reads data from one or more files in hledger journal,+timeclock, timedot, or CSV format specified with `-f', or+`$LEDGER_FILE', or `$HOME/.hledger.journal' (on windows, perhaps+`C:/Users/USER/.hledger.journal'). If using `$LEDGER_FILE', note this+must be a real environment variable, not a shell variable. You can+specify standard input with `-f-'.++ Transactions are dated movements of money between two (or more) named+accounts, and are recorded with journal entries like this:+++2015/10/16 bought food+ expenses:food $10+ assets:cash++ For more about this format, see hledger_journal(5).++ Most users use a text editor to edit the journal, usually with an+editor mode such as ledger-mode for added convenience. hledger's+interactive add command is another way to record new transactions.+hledger never changes existing transactions.++ To get started, you can either save some entries like the above in+`~/.hledger.journal', or run `hledger add' and follow the prompts. Then+try some commands like `hledger print' or `hledger balance'. Run+`hledger' with no arguments for a list of commands.++* Menu:++* OPTIONS::+* ENVIRONMENT::+* DATA FILES::+* TIME PERIODS::+* DEPTH::+* QUERIES::+* COSTING::+* VALUATION::+* PIVOTING::+* OUTPUT::+* COMMANDS::+* JOURNAL FORMAT::+* CSV FORMAT::+* TIMECLOCK FORMAT::+* TIMEDOT FORMAT::+* COMMON TASKS::+* LIMITATIONS::+* TROUBLESHOOTING::+++File: hledger.info, Node: OPTIONS, Next: ENVIRONMENT, Prev: Top, Up: Top++1 OPTIONS+*********++* Menu:++* General options::+* Command options::+* Command arguments::+* Special characters::+* Unicode characters::+* Regular expressions::+++File: hledger.info, Node: General options, Next: Command options, Up: OPTIONS++1.1 General options+===================++To see general usage help, including general options which are supported+by most hledger commands, run `hledger -h'.++ General help options:++`-h --help'+ show general or COMMAND help++`--man'+ show general or COMMAND user manual with man++`--info'+ show general or COMMAND user manual with info++`--version'+ show general or ADDONCMD version++`--debug[=N]'+ show debug output (levels 1-9, default: 1)++ General input options:++`-f FILE --file=FILE'+ use a different input file. For stdin, use - (default:+ `$LEDGER_FILE' or `$HOME/.hledger.journal')++`--rules-file=RULESFILE'+ Conversion rules file to use when reading CSV (default: FILE.rules)++`--separator=CHAR'+ Field separator to expect when reading CSV (default: ',')++`--alias=OLD=NEW'+ rename accounts named OLD to NEW++`--anon'+ anonymize accounts and payees++`--pivot FIELDNAME'+ use some other field or tag for the account name++`-I --ignore-assertions'+ disable balance assertion checks (note: does not disable balance+ assignments)++`-s --strict'+ do extra error checking (check that all posted accounts are+ declared)++ General reporting options:++`-b --begin=DATE'+ include postings/txns on or after this date++`-e --end=DATE'+ include postings/txns before this date++`-D --daily'+ multiperiod/multicolumn report by day++`-W --weekly'+ multiperiod/multicolumn report by week++`-M --monthly'+ multiperiod/multicolumn report by month++`-Q --quarterly'+ multiperiod/multicolumn report by quarter++`-Y --yearly'+ multiperiod/multicolumn report by year++`-p --period=PERIODEXP'+ set start date, end date, and/or reporting interval all at once+ using period expressions syntax++`--date2'+ match the secondary date instead (see command help for other+ effects)++`-U --unmarked'+ include only unmarked postings/txns (can combine with -P or -C)++`-P --pending'+ include only pending postings/txns++`-C --cleared'+ include only cleared postings/txns++`-R --real'+ include only non-virtual postings++`-NUM --depth=NUM'+ hide/aggregate accounts or postings more than NUM levels deep++`-E --empty'+ show items with zero amount, normally hidden (and vice-versa in+ hledger-ui/hledger-web)++`-B --cost'+ convert amounts to their cost/selling amount at transaction time++`-V --market'+ convert amounts to their market value in default valuation+ commodities++`-X --exchange=COMM'+ convert amounts to their market value in commodity COMM++`--value'+ convert amounts to cost or market value, more flexibly than+ -B/-V/-X++`--infer-market-prices'+ use transaction prices (recorded with @ or @@) as additional market+ prices, as if they were P directives++`--auto'+ apply automated posting rules to modify transactions.++`--forecast'+ generate future transactions from periodic transaction rules, for+ the next 6 months or till report end date. In hledger-ui, also+ make ordinary future transactions visible.++`--color=WHEN (or --colour=WHEN)'+ Should color-supporting commands use ANSI color codes in text+ output. 'auto' (default): whenever stdout seems to be a+ color-supporting terminal. 'always' or 'yes': always, useful eg+ when piping output into 'less -R'. 'never' or 'no': never. A+ NO_COLOR environment variable overrides this.++ When a reporting option appears more than once in the command line,+the last one takes precedence.++ Some reporting options can also be written as query arguments.+++File: hledger.info, Node: Command options, Next: Command arguments, Prev: General options, Up: OPTIONS++1.2 Command options+===================++To see options for a particular command, including command-specific+options, run: `hledger COMMAND -h'.++ Command-specific options must be written after the command name, eg:+`hledger print -x'.++ Additionally, if the command is an add-on, you may need to put its+options after a double-hyphen, eg: `hledger ui -- --watch'. Or, you can+run the add-on executable directly: `hledger-ui --watch'.+++File: hledger.info, Node: Command arguments, Next: Special characters, Prev: Command options, Up: OPTIONS++1.3 Command arguments+=====================++Most hledger commands accept arguments after the command name, which are+often a query, filtering the data in some way.++ You can save a set of command line options/arguments in a file, and+then reuse them by writing `@FILENAME' as a command line argument. Eg:+`hledger bal @foo.args'. (To prevent this, eg if you have an argument+that begins with a literal `@', precede it with `--', eg: `hledger bal+-- @ARG').++ Inside the argument file, each line should contain just one option or+argument. Avoid the use of spaces, except inside quotes (or you'll see a+confusing error). Between a flag and its argument, use = (or nothing).+Bad:+++assets depth:2+-X USD++ Good:+++assets+depth:2+-X=USD++ For special characters (see below), use one less level of quoting+than you would at the command prompt. Bad:+++-X"$"++ Good:+++-X$++ See also: Save frequently used options.+++File: hledger.info, Node: Special characters, Next: Unicode characters, Prev: Command arguments, Up: OPTIONS++1.4 Special characters+======================++* Menu:++* Single escaping shell metacharacters::+* Double escaping regular expression metacharacters::+* Triple escaping for add-on commands::+* Less escaping::+++File: hledger.info, Node: Single escaping shell metacharacters, Next: Double escaping regular expression metacharacters, Up: Special characters++1.4.1 Single escaping (shell metacharacters)+--------------------------------------------++In shell command lines, characters significant to your shell - such as+spaces, `<', `>', `(', `)', `|', `$' and `\' - should be+"shell-escaped" if you want hledger to see them. This is done by+enclosing them in single or double quotes, or by writing a backslash+before them. Eg to match an account name containing a space:+++$ hledger register 'credit card'++ or:+++$ hledger register credit\ card+++File: hledger.info, Node: Double escaping regular expression metacharacters, Next: Triple escaping for add-on commands, Prev: Single escaping shell metacharacters, Up: Special characters++1.4.2 Double escaping (regular expression metacharacters)+---------------------------------------------------------++Characters significant in regular expressions (described below) - such+as `.', `^', `$', `[', `]', `(', `)', `|', and `\' - may need to be+"regex-escaped" if you don't want them to be interpreted by hledger's+regular expression engine. This is done by writing backslashes before+them, but since backslash is typically also a shell metacharacter, both+shell-escaping and regex-escaping will be needed. Eg to match a literal+`$' sign while using the bash shell:+++$ hledger balance cur:'\$'++ or:+++$ hledger balance cur:\\$+++File: hledger.info, Node: Triple escaping for add-on commands, Next: Less escaping, Prev: Double escaping regular expression metacharacters, Up: Special characters++1.4.3 Triple escaping (for add-on commands)+-------------------------------------------++When you use hledger to run an external add-on command (described+below), one level of shell-escaping is lost from any options or+arguments intended for by the add-on command, so those need an extra+level of shell-escaping. Eg to match a literal `$' sign while using the+bash shell and running an add-on command (`ui'):+++$ hledger ui cur:'\\$'++ or:+++$ hledger ui cur:\\\\$++ If you wondered why _four_ backslashes, perhaps this helps:++unescaped: `$'+escaped: `\$'+double-escaped: `\\$'+triple-escaped: `\\\\$'++ Or, you can avoid the extra escaping by running the add-on executable+directly:+++$ hledger-ui cur:\\$+++File: hledger.info, Node: Less escaping, Prev: Triple escaping for add-on commands, Up: Special characters++1.4.4 Less escaping+-------------------++Options and arguments are sometimes used in places other than the shell+command line, where shell-escaping is not needed, so there you should+use one less level of escaping. Those places include:++ * an @argumentfile++ * hledger-ui's filter field++ * hledger-web's search form++ * GHCI's prompt (used by developers).+++File: hledger.info, Node: Unicode characters, Next: Regular expressions, Prev: Special characters, Up: OPTIONS++1.5 Unicode characters+======================++hledger is expected to handle non-ascii characters correctly:++ * they should be parsed correctly in input files and on the command+ line, by all hledger tools (add, iadd, hledger-web's+ search/add/edit forms, etc.)++ * they should be displayed correctly by all hledger tools, and+ on-screen alignment should be preserved.+++ This requires a well-configured environment. Here are some tips:++ * A system locale must be configured, and it must be one that can+ decode the characters being used. In bash, you can set a locale+ like this: `export LANG=en_US.UTF-8'. There are some more details+ in Troubleshooting. This step is essential - without it, hledger+ will quit on encountering a non-ascii character (as with all+ GHC-compiled programs).++ * your terminal software (eg Terminal.app, iTerm, CMD.exe, xterm..)+ must support unicode++ * the terminal must be using a font which includes the required+ unicode glyphs++ * the terminal should be configured to display wide characters as+ double width (for report alignment)++ * on Windows, for best results you should run hledger in the same+ kind of environment in which it was built. Eg hledger built in the+ standard CMD.EXE environment (like the binaries on our download+ page) might show display problems when run in a cygwin or msys+ terminal, and vice versa. (See eg #961).++++File: hledger.info, Node: Regular expressions, Prev: Unicode characters, Up: OPTIONS++1.6 Regular expressions+=======================++hledger uses regular expressions in a number of places:++ * query terms, on the command line and in the hledger-web search+ form: `REGEX', `desc:REGEX', `cur:REGEX', `tag:...=REGEX'++ * CSV rules conditional blocks: `if REGEX ...'++ * account alias directives and options: `alias /REGEX/ =+ REPLACEMENT', `--alias /REGEX/=REPLACEMENT'++ hledger's regular expressions come from the regex-tdfa library. If+they're not doing what you expect, it's important to know exactly what+they support:++ 1. they are case insensitive++ 2. they are infix matching (they do not need to match the entire thing+ being matched)++ 3. they are POSIX ERE (extended regular expressions)++ 4. they also support GNU word boundaries (`\b', `\B', `\<', `\>')++ 5. they do not support backreferences; if you write `\1', it will+ match the digit `1'. Except when doing text replacement, eg in+ account aliases, where backreferences can be used in the+ replacement string to reference capturing groups in the search+ regexp.++ 6. they do not support mode modifiers (`(?s)'), character classes+ (`\w', `\d'), or anything else not mentioned above.++ Some things to note:++ * In the `alias' directive and `--alias' option, regular expressions+ must be enclosed in forward slashes (`/REGEX/'). Elsewhere in+ hledger, these are not required.++ * In queries, to match a regular expression metacharacter like `$' as+ a literal character, prepend a backslash. Eg to search for amounts+ with the dollar sign in hledger-web, write `cur:\$'.++ * On the command line, some metacharacters like `$' have a special+ meaning to the shell and so must be escaped at least once more. See+ Special characters.++++File: hledger.info, Node: ENVIRONMENT, Next: DATA FILES, Prev: OPTIONS, Up: Top++2 ENVIRONMENT+*************++*LEDGER_FILE* The journal file path when not specified with `-f'.+Default: `~/.hledger.journal' (on windows, perhaps+`C:/Users/USER/.hledger.journal').++ A typical value is `~/DIR/YYYY.journal', where DIR is a+version-controlled finance directory and YYYY is the current year. Or+`~/DIR/current.journal', where current.journal is a symbolic link to+YYYY.journal.++ On Mac computers, you can set this and other environment variables+in a more thorough way that also affects applications started from the+GUI (say, an Emacs dock icon). Eg on MacOS Catalina I have a+`~/.MacOSX/environment.plist' file containing+++{+ "LEDGER_FILE" : "~/finance/current.journal"+}++ To see the effect you may need to `killall Dock', or reboot.++ *COLUMNS* The screen width used by the register command. Default:+the full terminal width.++ *NO_COLOR* If this variable exists with any value, hledger will not+use ANSI color codes in terminal output. This overrides the+-color/-colour option.+++File: hledger.info, Node: DATA FILES, Next: TIME PERIODS, Prev: ENVIRONMENT, Up: Top++3 DATA FILES+************++hledger reads transactions from one or more data files. The default data+file is `$HOME/.hledger.journal' (or on Windows, something like+`C:/Users/USER/.hledger.journal').++ You can override this with the `$LEDGER_FILE' environment variable:+++$ setenv LEDGER_FILE ~/finance/2016.journal+$ hledger stats++ or with one or more `-f/--file' options:+++$ hledger -f /some/file -f another_file stats++ The file name `-' means standard input:+++$ cat some.journal | hledger -f-++* Menu:++* Data formats::+* Multiple files::+* Strict mode::+++File: hledger.info, Node: Data formats, Next: Multiple files, Up: DATA FILES++3.1 Data formats+================++Usually the data file is in hledger's journal format, but it can be in+any of the supported file formats, which currently are:++Reader: Reads: Used for file+ extensions:+-------------------------------------------------------------------------- +`journal'hledger journal files and some Ledger `.journal' `.j'+ journals, for transactions `.hledger' `.ledger'+`timeclock'timeclock files, for precise time `.timeclock'+ logging +`timedot'timedot files, for approximate time `.timedot'+ logging +`csv' comma/semicolon/tab/other-separated `.csv' `.ssv' `.tsv'+ values, for data import ++ These formats are described in their own sections, below.++ hledger detects the format automatically based on the file extensions+shown above. If it can't recognise the file extension, it assumes+`journal' format. So for non-journal files, it's important to use a+recognised file extension, so as to either read successfully or to show+relevant error messages.++ You can also force a specific reader/format by prefixing the file+path with the format and a colon. Eg, to read a .dat file as csv format:+++$ hledger -f csv:/some/csv-file.dat stats++ Or to read stdin (`-') as timeclock format:+++$ echo 'i 2009/13/1 08:00:00' | hledger print -ftimeclock:-+++File: hledger.info, Node: Multiple files, Next: Strict mode, Prev: Data formats, Up: DATA FILES++3.2 Multiple files+==================++You can specify multiple `-f' options, to read multiple files as one+big journal. There are some limitations with this:++ * most directives do not affect sibling files++ * balance assertions will not see any account balances from previous+ files++ If you need either of those things, you can++ * use a single parent file which includes the others++ * or concatenate the files into one before reading, eg: `cat+ a.journal b.journal | hledger -f- CMD'.+++File: hledger.info, Node: Strict mode, Prev: Multiple files, Up: DATA FILES++3.3 Strict mode+===============++hledger checks input files for valid data. By default, the most+important errors are detected, while still accepting easy journal files+without a lot of declarations:++ * Are the input files parseable, with valid syntax ?++ * Are all transactions balanced ?++ * Do all balance assertions pass ?++ With the `-s'/`--strict' flag, additional checks are performed:++ * Are all accounts posted to, declared with an `account' directive ?+ (Account error checking)++ * Are all commodities declared with a `commodity' directive ?+ (Commodity error checking)++ See also: https://hledger.org/checking-for-errors.html++ _experimental._+++File: hledger.info, Node: TIME PERIODS, Next: DEPTH, Prev: DATA FILES, Up: Top++4 TIME PERIODS+**************++* Menu:++* Smart dates::+* Report start & end date::+* Report intervals::+* Period expressions::+++File: hledger.info, Node: Smart dates, Next: Report start & end date, Up: TIME PERIODS++4.1 Smart dates+===============++hledger's user interfaces accept a flexible "smart date" syntax. Smart+dates allow some english words, can be relative to today's date, and can+have less-significant date parts omitted (defaulting to 1).++ Examples:++`2004/10/1', exact date, several separators allowed. Year+`2004-01-01', `2004.9.1' is 4+ digits, month is 1-12, day is 1-31+`2004' start of year+`2004/10' start of month+`10/1' month and day in current year+`21' day in current month+`october, oct' start of month in current year+`yesterday, today, -1, 0, 1 days from today+tomorrow' +`last/this/next -1, 0, 1 periods from the current period+day/week/month/quarter/year'+`20181201' 8 digit YYYYMMDD with valid year month and day+`201812' 6 digit YYYYMM with valid year and month++ Counterexamples - malformed digit sequences might give surprising+results:++`201813' 6 digits with an invalid month is parsed as start of+ 6-digit year+`20181301' 8 digits with an invalid month is parsed as start of+ 8-digit year+`20181232' 8 digits with an invalid day gives an error+`201801012' 9+ digits beginning with a valid YYYYMMDD gives an error+++File: hledger.info, Node: Report start & end date, Next: Report intervals, Prev: Smart dates, Up: TIME PERIODS++4.2 Report start & end date+===========================++By default, most hledger reports will show the full span of time+represented by the journal data. The report start date will be the+earliest transaction or posting date, and the report end date will be+the latest transaction, posting, or market price date.++ Often you will want to see a shorter time span, such as the current+month. You can specify a start and/or end date using `-b/--begin',+`-e/--end', `-p/--period' or a `date:' query (described below). All of+these accept the smart date syntax.++ Some notes:++ * As in Ledger, end dates are exclusive, so you need to write the+ date _after_ the last day you want to include.++ * As noted in reporting options: among start/end dates specified with+ _options_, the last (i.e. right-most) option takes precedence.++ * The effective report start and end dates are the intersection of+ the start/end dates from options and that from `date:' queries.+ That is, `date:2019-01 date:2019 -p'2000 to 2030'' yields January+ 2019, the smallest common time span.++ Examples:++`-b begin on St. Patrick's day 2016+2016/3/17' +`-e 12/1' end at the start of december 1st of the current year+ (11/30 will be the last date included)+`-b all transactions on or after the 1st of the current month+thismonth' +`-p all transactions in the current month+thismonth' +`date:2016/3/17..'the above written as queries instead (`..' can also be+ replaced with `-')+`date:..12/1' +`date:thismonth..'+`date:thismonth'+++File: hledger.info, Node: Report intervals, Next: Period expressions, Prev: Report start & end date, Up: TIME PERIODS++4.3 Report intervals+====================++A report interval can be specified so that commands like register,+balance and activity will divide their reports into multiple subperiods.+The basic intervals can be selected with one of `-D/--daily',+`-W/--weekly', `-M/--monthly', `-Q/--quarterly', or `-Y/--yearly'. More+complex intervals may be specified with a period expression. Report+intervals can not be specified with a query.+++File: hledger.info, Node: Period expressions, Prev: Report intervals, Up: TIME PERIODS++4.4 Period expressions+======================++The `-p/--period' option accepts period expressions, a shorthand way of+expressing a start date, end date, and/or report interval all at once.++ Here's a basic period expression specifying the first quarter of+2009. Note, hledger always treats start dates as inclusive and end+dates as exclusive:++ `-p "from 2009/1/1 to 2009/4/1"'++ Keywords like "from" and "to" are optional, and so are the spaces, as+long as you don't run two dates together. "to" can also be written as+".." or "-". These are equivalent to the above:++`-p "2009/1/1 2009/4/1"'+`-p2009/1/1to2009/4/1'+`-p2009/1/1..2009/4/1'++ Dates are smart dates, so if the current year is 2009, the above can+also be written as:++`-p "1/1 4/1"'+`-p "january-apr"'+`-p "this year to 4/1"'++ If you specify only one date, the missing start or end date will be+the earliest or latest transaction in your journal:++`-p "from 2009/1/1"' everything after january 1, 2009+`-p "from 2009/1"' the same+`-p "from 2009"' the same+`-p "to 2009"' everything before january 1, 2009++ A single date with no "from" or "to" defines both the start and end+date like so:++`-p "2009"' the year 2009; equivalent to “2009/1/1 to 2010/1/1”+`-p "2009/1"' the month of jan; equivalent to “2009/1/1 to 2009/2/1”+`-p "2009/1/1"' just that day; equivalent to “2009/1/1 to 2009/1/2”++ Or you can specify a single quarter like so:++`-p "2009Q1"' first quarter of 2009, equivalent to “2009/1/1 to 2009/4/1”+`-p "q4"' fourth quarter of the current year++ The argument of `-p' can also begin with, or be, a report interval+expression. The basic report intervals are `daily', `weekly',+`monthly', `quarterly', or `yearly', which have the same effect as the+`-D',`-W',`-M',`-Q', or `-Y' flags. Between report interval and+start/end dates (if any), the word `in' is optional. Examples:++`-p "weekly from 2009/1/1 to 2009/4/1"'+`-p "monthly in 2008"'+`-p "quarterly"'++ Note that `weekly', `monthly', `quarterly' and `yearly' intervals+will always start on the first day on week, month, quarter or year+accordingly, and will end on the last day of same period, even if+associated period expression specifies different explicit start and end+date.++ For example:++`-p "weekly from 2009/1/1 starts on 2008/12/29, closest preceding Monday+to 2009/4/1"' +`-p "monthly in starts on 2018/11/01+2008/11/25"' +`-p "quarterly from starts on 2009/04/01, ends on 2009/06/30,+2009-05-05 to 2009-06-01"' which are first and last days of Q2 2009+`-p "yearly from starts on 2009/01/01, first day of 2009+2009-12-29"' ++ The following more complex report intervals are also supported:+`biweekly', `fortnightly', `bimonthly', `every+day|week|month|quarter|year', `every N+days|weeks|months|quarters|years'.++ All of these will start on the first day of the requested period and+end on the last one, as described above.++ Examples:++`-p "bimonthly from 2008"' periods will have boundaries on 2008/01/01,+ 2008/03/01, ...+`-p "every 2 weeks"' starts on closest preceding Monday+`-p "every 5 month from periods will have boundaries on 2009/03/01,+2009/03"' 2009/08/01, ...++ If you want intervals that start on arbitrary day of your choosing+and span a week, month or year, you need to use any of the following:++ `every Nth day of week', `every WEEKDAYNAME' (eg+`mon|tue|wed|thu|fri|sat|sun'), `every Nth day [of month]', `every Nth+WEEKDAYNAME [of month]', `every MM/DD [of year]', `every Nth MMM [of+year]', `every MMM Nth [of year]'.++ Examples:++`-p "every 2nd day of periods will go from Tue to Tue+week"' +`-p "every Tue"' same+`-p "every 15th day"' period boundaries will be on 15th of each month+`-p "every 2nd Monday"' period boundaries will be on second Monday of+ each month+`-p "every 11/05"' yearly periods with boundaries on 5th of Nov+`-p "every 5th Nov"' same+`-p "every Nov 5th"' same++ Show historical balances at end of 15th each month (N is exclusive+end date):++ `hledger balance -H -p "every 16th day"'++ Group postings from start of wednesday to end of next tuesday (N is+start date and exclusive end date):++ `hledger register checking -p "every 3rd day of week"'+++File: hledger.info, Node: DEPTH, Next: QUERIES, Prev: TIME PERIODS, Up: Top++5 DEPTH+*******++With the `--depth N' option (short form: `-N'), commands like account,+balance and register will show only the uppermost accounts in the+account tree, down to level N. Use this when you want a summary with+less detail. This flag has the same effect as a `depth:' query argument+(so `-2', `--depth=2' or `depth:2' are equivalent).+++File: hledger.info, Node: QUERIES, Next: COSTING, Prev: DEPTH, Up: Top++6 QUERIES+*********++One of hledger's strengths is being able to quickly report on precise+subsets of your data. Most commands accept an optional query expression,+written as arguments after the command name, to filter the data by date,+account name or other criteria. The syntax is similar to a web search:+one or more space-separated search terms, quotes to enclose whitespace,+prefixes to match specific fields, a not: prefix to negate the match.++ We do not yet support arbitrary boolean combinations of search terms;+instead most commands show transactions/postings/accounts which match+(or negatively match):++ * any of the description terms AND++ * any of the account terms AND++ * any of the status terms AND++ * all the other terms.++ The print command instead shows transactions which:++ * match any of the description terms AND++ * have any postings matching any of the positive account terms AND++ * have no postings matching any of the negative account terms AND++ * match all the other terms.++ The following kinds of search terms can be used. Remember these can+also be prefixed with *`not:'*, eg to exclude a particular subaccount.++*`REGEX', `acct:REGEX'*+ match account names by this regular expression. (With no prefix,+ `acct:' is assumed.) same as above++*`amt:N, amt:<N, amt:<=N, amt:>N, amt:>=N'*+ match postings with a single-commodity amount that is equal to,+ less than, or greater than N. (Multi-commodity amounts are not+ tested, and will always match.) The comparison has two modes: if N+ is preceded by a + or - sign (or is 0), the two signed numbers are+ compared. Otherwise, the absolute magnitudes are compared,+ ignoring sign.++*`code:REGEX'*+ match by transaction code (eg check number)++*`cur:REGEX'*+ match postings or transactions including any amounts whose+ currency/commodity symbol is fully matched by REGEX. (For a partial+ match, use `.*REGEX.*'). Note, to match characters which are+ regex-significant, like the dollar sign (`$'), you need to prepend+ `\'. And when using the command line you need to add one more level+ of quoting to hide it from the shell, so eg do: `hledger print+ cur:'\$'' or `hledger print cur:\\$'.++*`desc:REGEX'*+ match transaction descriptions.++*`date:PERIODEXPR'*+ match dates within the specified period. PERIODEXPR is a period+ expression (with no report interval). Examples: `date:2016',+ `date:thismonth', `date:2000/2/1-2/15', `date:lastweek-'. If the+ `--date2' command line flag is present, this matches secondary+ dates instead.++*`date2:PERIODEXPR'*+ match secondary dates within the specified period.++*`depth:N'*+ match (or display, depending on command) accounts at or above this+ depth++*`note:REGEX'*+ match transaction notes (part of description right of `|', or whole+ description when there's no `|')++*`payee:REGEX'*+ match transaction payee/payer names (part of description left of+ `|', or whole description when there's no `|')++*`real:, real:0'*+ match real or virtual postings respectively++*`status:, status:!, status:*'*+ match unmarked, pending, or cleared transactions respectively++*`tag:REGEX[=REGEX]'*+ match by tag name, and optionally also by tag value. Note a tag:+ query is considered to match a transaction if it matches any of+ the postings. Also remember that postings inherit the tags of+ their parent transaction.++ The following special search term is used automatically in+hledger-web, only:++*`inacct:ACCTNAME'*+ tells hledger-web to show the transaction register for this+ account. Can be filtered further with `acct' etc.++ Some of these can also be expressed as command-line options (eg+`depth:2' is equivalent to `--depth 2'). Generally you can mix options+and query arguments, and the resulting query will be their intersection+(perhaps excluding the `-p/--period' option).+++File: hledger.info, Node: COSTING, Next: VALUATION, Prev: QUERIES, Up: Top++7 COSTING+*********++The `-B/--cost' flag converts amounts to their cost or sale amount at+transaction time, if they have a transaction price specified. If this+flag is supplied, hledger will perform cost conversion first, and will+apply any market price valuations (if requested) afterwards.+++File: hledger.info, Node: VALUATION, Next: PIVOTING, Prev: COSTING, Up: Top++8 VALUATION+***********++Instead of reporting amounts in their original commodity, hledger can+convert them to cost/sale amount (using the conversion rate recorded in+the transaction), and/or to market value (using some market price on a+certain date). This is controlled by the `--value=TYPE[,COMMODITY]'+option, which will be described below. We also provide the simpler `-V'+and `-X COMMODITY' options, and often one of these is all you need:++* Menu:++* -V Value::+* -X Value in specified commodity::+* Valuation date::+* Market prices::+* --infer-market-price market prices from transactions::+* Valuation commodity::+* Simple valuation examples::+* --value Flexible valuation::+* More valuation examples::+* Effect of valuation on reports::+++File: hledger.info, Node: -V Value, Next: -X Value in specified commodity, Up: VALUATION++8.1 -V: Value+=============++The `-V/--market' flag converts amounts to market value in their+default _valuation commodity_, using the market prices in effect on the+_valuation date(s)_, if any. More on these in a minute.+++File: hledger.info, Node: -X Value in specified commodity, Next: Valuation date, Prev: -V Value, Up: VALUATION++8.2 -X: Value in specified commodity+====================================++The `-X/--exchange=COMM' option is like `-V', except you tell it which+currency you want to convert to, and it tries to convert everything to+that.+++File: hledger.info, Node: Valuation date, Next: Market prices, Prev: -X Value in specified commodity, Up: VALUATION++8.3 Valuation date+==================++Since market prices can change from day to day, market value reports+have a valuation date (or more than one), which determines which market+prices will be used.++ For single period reports, if an explicit report end date is+specified, that will be used as the valuation date; otherwise the+valuation date is the journal's end date.++ For multiperiod reports, each column/period is valued on the last+day of the period, by default.+++File: hledger.info, Node: Market prices, Next: --infer-market-price market prices from transactions, Prev: Valuation date, Up: VALUATION++8.4 Market prices+=================++To convert a commodity A to its market value in another commodity B,+hledger looks for a suitable market price (exchange rate) as follows, in+this order of preference :++ 1. A _declared market price_ or _inferred market price_: A's latest+ market price in B on or before the valuation date as declared by a+ P directive, or (with the `--infer-market-price' flag) inferred+ from transaction prices.++ 2. A _reverse market price_: the inverse of a declared or inferred+ market price from B to A.++ 3. A _forward chain of market prices_: a synthetic price formed by+ combining the shortest chain of "forward" (only 1 above) market+ prices, leading from A to B.++ 4. _Any chain of market prices_: a chain of any market prices,+ including both forward and reverse prices (1 and 2 above), leading+ from A to B.+++ There is a limit to the length of these price chains; if hledger+reaches that length without finding a complete chain or exhausting all+possibilities, it will give up (with a "gave up" message visible in+`--debug=2' output). That limit is currently 1000.++ Amounts for which no suitable market price can be found, are not+converted.+++File: hledger.info, Node: --infer-market-price market prices from transactions, Next: Valuation commodity, Prev: Market prices, Up: VALUATION++8.5 -infer-market-price: market prices from transactions+========================================================++Normally, market value in hledger is fully controlled by, and requires,+P directives in your journal. Since adding and updating those can be a+chore, and since transactions usually take place at close to market+value, why not use the recorded transaction prices as additional market+prices (as Ledger does) ? We could produce value reports without needing+P directives at all.++ Adding the `--infer-market-price' flag to `-V', `-X' or `--value'+enables this. So for example, `hledger bs -V --infer-market-price' will+get market prices both from P directives and from transactions. (And if+both occur on the same day, the P directive takes precedence).++ There is a downside: value reports can sometimes be affected in+confusing/undesired ways by your journal entries. If this happens to+you, read all of this Valuation section carefully, and try adding+`--debug' or `--debug=2' to troubleshoot.++ `--infer-market-price' can infer market prices from:++ * multicommodity transactions with explicit prices (`@'/`@@')++ * multicommodity transactions with implicit prices (no `@', two+ commodities, unbalanced). (With these, the order of postings+ matters. `hledger print -x' can be useful for troubleshooting.)++ * but not, currently, from "more correct" multicommodity+ transactions (no `@', multiple commodities, balanced).++++File: hledger.info, Node: Valuation commodity, Next: Simple valuation examples, Prev: --infer-market-price market prices from transactions, Up: VALUATION++8.6 Valuation commodity+=======================++*When you specify a valuation commodity (`-X COMM' or `--value+TYPE,COMM'):*+hledger will convert all amounts to COMM, wherever it can find a+suitable market price (including by reversing or chaining prices).++ *When you leave the valuation commodity unspecified (`-V' or+`--value TYPE'):*+For each commodity A, hledger picks a default valuation commodity as+follows, in this order of preference:++ 1. The price commodity from the latest P-declared market price for A+ on or before valuation date.++ 2. The price commodity from the latest P-declared market price for A+ on any date. (Allows conversion to proceed when there are inferred+ prices before the valuation date.)++ 3. If there are no P directives at all (any commodity or date) and the+ `--infer-market-price' flag is used: the price commodity from the+ latest transaction-inferred price for A on or before valuation+ date.+++ This means:++ * If you have P directives, they determine which commodities `-V'+ will convert, and to what.++ * If you have no P directives, and use the `--infer-market-price'+ flag, transaction prices determine it.+++ Amounts for which no valuation commodity can be found are not+converted.+++File: hledger.info, Node: Simple valuation examples, Next: --value Flexible valuation, Prev: Valuation commodity, Up: VALUATION++8.7 Simple valuation examples+=============================++Here are some quick examples of `-V':+++; one euro is worth this many dollars from nov 1+P 2016/11/01 € $1.10++; purchase some euros on nov 3+2016/11/3+ assets:euros €100+ assets:checking++; the euro is worth fewer dollars by dec 21+P 2016/12/21 € $1.03++ How many euros do I have ?+++$ hledger -f t.j bal -N euros+ €100 assets:euros++ What are they worth at end of nov 3 ?+++$ hledger -f t.j bal -N euros -V -e 2016/11/4+ $110.00 assets:euros++ What are they worth after 2016/12/21 ? (no report end date specified,+defaults to today)+++$ hledger -f t.j bal -N euros -V+ $103.00 assets:euros+++File: hledger.info, Node: --value Flexible valuation, Next: More valuation examples, Prev: Simple valuation examples, Up: VALUATION++8.8 -value: Flexible valuation+==============================++`-V' and `-X' are special cases of the more general `--value' option:+++ --value=TYPE[,COMM] TYPE is then, end, now or YYYY-MM-DD.+ COMM is an optional commodity symbol.+ Shows amounts converted to:+ - default valuation commodity (or COMM) using market prices at posting dates+ - default valuation commodity (or COMM) using market prices at period end(s)+ - default valuation commodity (or COMM) using current market prices+ - default valuation commodity (or COMM) using market prices at some date++ The TYPE part selects cost or value and valuation date:++`--value=then'+ Convert amounts to their value in the default valuation commodity,+ using market prices on each posting's date.++`--value=end'+ Convert amounts to their value in the default valuation commodity,+ using market prices on the last day of the report period (or if+ unspecified, the journal's end date); or in multiperiod reports,+ market prices on the last day of each subperiod.++`--value=now'+ Convert amounts to their value in the default valuation commodity+ using current market prices (as of when report is generated).++`--value=YYYY-MM-DD'+ Convert amounts to their value in the default valuation commodity+ using market prices on this date.++ To select a different valuation commodity, add the optional `,COMM'+part: a comma, then the target commodity's symbol. Eg:+*`--value=now,EUR'*. hledger will do its best to convert amounts to+this commodity, deducing market prices as described above.+++File: hledger.info, Node: More valuation examples, Next: Effect of valuation on reports, Prev: --value Flexible valuation, Up: VALUATION++8.9 More valuation examples+===========================++Here are some examples showing the effect of `--value', as seen with+`print':+++P 2000-01-01 A 1 B+P 2000-02-01 A 2 B+P 2000-03-01 A 3 B+P 2000-04-01 A 4 B++2000-01-01+ (a) 1 A @ 5 B++2000-02-01+ (a) 1 A @ 6 B++2000-03-01+ (a) 1 A @ 7 B++ Show the cost of each posting:+++$ hledger -f- print --cost+2000-01-01+ (a) 5 B++2000-02-01+ (a) 6 B++2000-03-01+ (a) 7 B++ Show the value as of the last day of the report period (2000-02-29):+++$ hledger -f- print --value=end date:2000/01-2000/03+2000-01-01+ (a) 2 B++2000-02-01+ (a) 2 B++ With no report period specified, that shows the value as of the last+day of the journal (2000-03-01):+++$ hledger -f- print --value=end+2000-01-01+ (a) 3 B++2000-02-01+ (a) 3 B++2000-03-01+ (a) 3 B++ Show the current value (the 2000-04-01 price is still in effect+today):+++$ hledger -f- print --value=now+2000-01-01+ (a) 4 B++2000-02-01+ (a) 4 B++2000-03-01+ (a) 4 B++ Show the value on 2000/01/15:+++$ hledger -f- print --value=2000-01-15+2000-01-01+ (a) 1 B++2000-02-01+ (a) 1 B++2000-03-01+ (a) 1 B++ You may need to explicitly set a commodity's display style, when+reverse prices are used. Eg this output might be surprising:+++P 2000-01-01 A 2B++2000-01-01+ a 1B+ b+++$ hledger print -x -X A+2000-01-01+ a 0+ b 0++ Explanation: because there's no amount or commodity directive+specifying a display style for A, 0.5A gets the default style, which+shows no decimal digits. Because the displayed amount looks like zero,+the commodity symbol and minus sign are not displayed either. Adding a+commodity directive sets a more useful display style for A:+++P 2000-01-01 A 2B+commodity 0.00A++2000-01-01+ a 1B+ b+++$ hledger print -X A+2000-01-01+ a 0.50A+ b -0.50A+++File: hledger.info, Node: Effect of valuation on reports, Prev: More valuation examples, Up: VALUATION++8.10 Effect of valuation on reports+===================================++Here is a reference for how valuation is supposed to affect each part of+hledger's reports (and a glossary). (It's wide, you'll have to scroll+sideways.) It may be useful when troubleshooting. If you find problems,+please report them, ideally with a reproducible example. Related: #329,+#1083.++Report `-B', `-V', `-X' `--value=then' `--value=end'`--value=DATE',+type `--cost' `--value=now'+------------------------------------------------------------------------------ +*print* +posting cost value at value at posting value at value+amounts report end date report or at+ or today journal end DATE/today+balance unchanged unchanged unchanged unchanged unchanged+assertions/assignments ++*register* +starting cost value at valued at day value at value+balance day before each historical day before at+(-H) report or posting was made report or DATE/today+ journal journal + start start +posting cost value at value at posting value at value+amounts report end date report or at+ or today journal end DATE/today+summary summarised value at sum of postings value at value+posting cost period ends in interval, period ends at+amounts valued at DATE/today+with interval start +report +interval +running sum/average sum/average sum/average of sum/average sum/average+total/averageof of displayed values of of+ displayed displayed displayed displayed+ values values values values++*balance +(bs, bse, +cf, is)* +balance sums of value at value at posting value at value+changes costs report end date report or at+ or today of journal end DATE/today+ sums of of sums of of sums+ postings postings of+ postings+budget like like like balance like like+amounts balance balance changes balances balance+(-budget) changes changes changes+grand sum of sum of sum of displayed sum of sum of+total displayed displayed valued displayed displayed+ values values values values++*balance +(bs, bse, +cf, is) +with +report +interval* +starting sums of value at sums of values of value at sums of+balances costs of report postings before report postings+(-H) postings start of report start at start of before+ before sums of all respective sums of all report+ report start postings posting dates postings start+ before before + report start report start +balance sums of same as sums of values of balance value+changes costs of -value=end postings in change in at+(bal, is, postings in period at each DATE/today+bs period respective period, of sums+-change, posting dates valued at of+cf period ends postings+-change) +end sums of same as sums of values of period end value+balances costs of -value=end postings from balances, at+(bal -H, postings before period valued at DATE/today+is -H, from before start to period period ends of sums+bs, cf) report end at respective of+ start to posting dates postings+ period end +budget like like like balance like like+amounts balance balance changes/end balances balance+(-budget) changes/end changes/end balances changes/end+ balances balances balances+row sums, sums, sums, averages of sums, sums,+totals, averages of averages of displayed values averages of averages+row displayed displayed displayed of+averages values values values displayed+(-T, -A) values+column sums of sums of sums of displayed sums of sums of+totals displayed displayed values displayed displayed+ values values values values+grand sum, sum, sum, average of sum, sum,+total, average of average of column totals average of average+grand column column column of+average totals totals totals column+ totals+++ `--cumulative' is omitted to save space, it works like `-H' but with+a zero starting balance.++ *Glossary:*++_cost_+ calculated using price(s) recorded in the transaction(s).++_value_+ market value using available market price declarations, or the+ unchanged amount if no conversion rate can be found.++_report start_+ the first day of the report period specified with -b or -p or+ date:, otherwise today.++_report or journal start_+ the first day of the report period specified with -b or -p or+ date:, otherwise the earliest transaction date in the journal,+ otherwise today.++_report end_+ the last day of the report period specified with -e or -p or date:,+ otherwise today.++_report or journal end_+ the last day of the report period specified with -e or -p or date:,+ otherwise the latest transaction date in the journal, otherwise+ today.++_report interval_+ a flag (-D/-W/-M/-Q/-Y) or period expression that activates the+ report's multi-period mode (whether showing one or many+ subperiods).+++File: hledger.info, Node: PIVOTING, Next: OUTPUT, Prev: VALUATION, Up: Top++9 PIVOTING+**********++Normally hledger sums amounts, and organizes them in a hierarchy, based+on account name. The `--pivot FIELD' option causes it to sum and+organize hierarchy based on the value of some other field instead. FIELD+can be: `code', `description', `payee', `note', or the full name (case+insensitive) of any tag. As with account names, values containing+`colon:separated:parts' will be displayed hierarchically in reports.++ `--pivot' is a general option affecting all reports; you can think+of hledger transforming the journal before any other processing,+replacing every posting's account name with the value of the specified+field on that posting, inheriting it from the transaction or using a+blank value if it's not present.++ An example:+++2016/02/16 Member Fee Payment+ assets:bank account 2 EUR+ income:member fees -2 EUR ; member: John Doe++ Normal balance report showing account names:+++$ hledger balance+ 2 EUR assets:bank account+ -2 EUR income:member fees+--------------------+ 0++ Pivoted balance report, using member: tag values instead:+++$ hledger balance --pivot member+ 2 EUR+ -2 EUR John Doe+--------------------+ 0++ One way to show only amounts with a member: value (using a query,+described below):+++$ hledger balance --pivot member tag:member=.+ -2 EUR John Doe+--------------------+ -2 EUR++ Another way (the acct: query matches against the pivoted "account+name"):+++$ hledger balance --pivot member acct:.+ -2 EUR John Doe+--------------------+ -2 EUR+++File: hledger.info, Node: OUTPUT, Next: COMMANDS, Prev: PIVOTING, Up: Top++10 OUTPUT+*********++* Menu:++* Output destination::+* Output format::+++File: hledger.info, Node: Output destination, Next: Output format, Up: OUTPUT++10.1 Output destination+=======================++hledger commands send their output to the terminal by default. You can+of course redirect this, eg into a file, using standard shell syntax:+++$ hledger print > foo.txt++ Some commands (print, register, stats, the balance commands) also+provide the `-o/--output-file' option, which does the same thing+without needing the shell. Eg:+++$ hledger print -o foo.txt+$ hledger print -o - # write to stdout (the default)+++File: hledger.info, Node: Output format, Prev: Output destination, Up: OUTPUT++10.2 Output format+==================++Some commands (print, register, the balance commands) offer a choice of+output format. In addition to the usual plain text format (`txt'),+there are CSV (`csv'), HTML (`html'), JSON (`json') and SQL (`sql').+This is controlled by the `-O/--output-format' option:+++$ hledger print -O csv++ or, by a file extension specified with `-o/--output-file':+++$ hledger balancesheet -o foo.html # write HTML to foo.html++ The `-O' option can be used to override the file extension if needed:+++$ hledger balancesheet -o foo.txt -O html # write HTML to foo.txt++ Some notes about JSON output:++ * This feature is marked experimental, and not yet much used; you+ should expect our JSON to evolve. Real-world feedback is welcome.++ * Our JSON is rather large and verbose, as it is quite a faithful+ representation of hledger's internal data types. To understand the+ JSON, read the Haskell type definitions, which are mostly in+ https://github.com/simonmichael/hledger/blob/master/hledger-lib/Hledger/Data/Types.hs.+++ * hledger represents quantities as Decimal values storing up to 255+ significant digits, eg for repeating decimals. Such numbers can+ arise in practice (from automatically-calculated transaction+ prices), and would break most JSON consumers. So in JSON, we show+ quantities as simple Numbers with at most 10 decimal places. We+ don't limit the number of integer digits, but that part is under+ your control. We hope this approach will not cause problems in+ practice; if you find otherwise, please let us know. (Cf #1195)++ Notes about SQL output:++ * SQL output is also marked experimental, and much like JSON could+ use real-world feedback.++ * SQL output is expected to work with sqlite, MySQL and PostgreSQL++ * SQL output is structured with the expectations that statements+ will be executed in the empty database. If you already have tables+ created via SQL output of hledger, you would probably want to+ either clear tables of existing data (via `delete' or `truncate'+ SQL statements) or drop tables completely as otherwise your+ postings will be duped.++++File: hledger.info, Node: COMMANDS, Next: JOURNAL FORMAT, Prev: OUTPUT, Up: Top++11 COMMANDS+***********++hledger provides a number of commands for producing reports and managing+your data. Run `hledger' with no arguments to list the commands+available, and `hledger CMD' to run a command. CMD can be the full+command name, or its standard abbreviation shown in the commands list,+or any unambiguous prefix of the name. Eg: `hledger bal'.++ Here are the built-in commands, with the most often-used in bold:++ *Data entry:*++ These data entry commands are the only ones which can modify your+journal file.++ * *add* - add transactions using guided prompts++ * *import* - add any new transactions from other files (eg csv)++ *Data management:*++ * check - check for various kinds of issue in the data++ * close (equity) - generate balance-resetting transactions++ * diff - compare account transactions in two journal files++ * rewrite - generate extra postings, similar to print -auto++ *Financial statements:*++ * *aregister (areg)* - show transactions in a particular account++ * *balancesheet (bs)* - show assets, liabilities and net worth++ * balancesheetequity (bse) - show assets, liabilities and equity++ * cashflow (cf) - show changes in liquid assets++ * *incomestatement (is)* - show revenues and expenses++ * roi - show return on investments++ *Miscellaneous reports:*++ * accounts - show account names++ * activity - show postings-per-interval bar charts++ * *balance (bal)* - show balance changes/end balances/budgets in any+ accounts++ * codes - show transaction codes++ * commodities - show commodity/currency symbols++ * descriptions - show unique transaction descriptions++ * files - show input file paths++ * help - show hledger user manuals in several formats++ * notes - show unique note segments of transaction descriptions++ * payees - show unique payee segments of transaction descriptions++ * prices - show market price records++ * *print* - show transactions (journal entries)++ * print-unique - show only transactions with unique descriptions++ * *register (reg)* - show postings in one or more accounts & running+ total++ * register-match - show a recent posting that best matches a+ description++ * stats - show journal statistics++ * tags - show tag names++ * test - run self tests++ *Add-on commands:*++ Programs or scripts named `hledger-SOMETHING' in your PATH are+add-on commands; these appear in the commands list with a `+' mark.+Two of these are maintained and released with hledger:++ * *ui* - an efficient terminal interface (TUI) for hledger++ * *web* - a simple web interface (WUI) for hledger++ And these add-ons are maintained separately:++ * iadd - a more interactive alternative for the add command++ * interest - generates interest transactions according to various+ schemes++ * stockquotes - downloads market prices for your commodities from+ AlphaVantage _(experimental)_++ Next, the detailed command docs, in alphabetical order.++* Menu:++* accounts::+* activity::+* add::+* aregister::+* balance::+* balancesheet::+* balancesheetequity::+* cashflow::+* check::+* close::+* codes::+* commodities::+* descriptions::+* diff::+* files::+* help::+* import::+* incomestatement::+* notes::+* payees::+* prices::+* print::+* print-unique::+* register::+* register-match::+* rewrite::+* roi::+* stats::+* tags::+* test::+* About add-on commands::+++File: hledger.info, Node: accounts, Next: activity, Up: COMMANDS++11.1 accounts+=============++accounts+Show account names.++ This command lists account names, either declared with account+directives (-declared), posted to (-used), or both (the default). With+query arguments, only matched account names and account names referenced+by matched postings are shown. It shows a flat list by default. With+`--tree', it uses indentation to show the account hierarchy. In flat+mode you can add `--drop N' to omit the first few account name+components. Account names can be depth-clipped with `depth:N' or+`--depth N' or `-N'.++ Examples:+++$ hledger accounts+assets:bank:checking+assets:bank:saving+assets:cash+expenses:food+expenses:supplies+income:gifts+income:salary+liabilities:debts+++File: hledger.info, Node: activity, Next: add, Prev: accounts, Up: COMMANDS++11.2 activity+=============++activity+Show an ascii barchart of posting counts per interval.++ The activity command displays an ascii histogram showing transaction+counts by day, week, month or other reporting interval (by day is the+default). With query arguments, it counts only matched transactions.++ Examples:+++$ hledger activity --quarterly+2008-01-01 **+2008-04-01 *******+2008-07-01+2008-10-01 **+++File: hledger.info, Node: add, Next: aregister, Prev: activity, Up: COMMANDS++11.3 add+========++add+Prompt for transactions and add them to the journal. Any arguments will+be used as default inputs for the first N prompts.++ Many hledger users edit their journals directly with a text editor,+or generate them from CSV. For more interactive data entry, there is the+`add' command, which prompts interactively on the console for new+transactions, and appends them to the journal file (if there are+multiple `-f FILE' options, the first file is used.) Existing+transactions are not changed. This is the only hledger command that+writes to the journal file.++ To use it, just run `hledger add' and follow the prompts. You can+add as many transactions as you like; when you are finished, enter `.'+or press control-d or control-c to exit.++ Features:++ * add tries to provide useful defaults, using the most similar (by+ description) recent transaction (filtered by the query, if any) as+ a template.++ * You can also set the initial defaults with command line arguments.++ * Readline-style edit keys can be used during data entry.++ * The tab key will auto-complete whenever possible - accounts,+ descriptions, dates (`yesterday', `today', `tomorrow'). If the+ input area is empty, it will insert the default value.++ * If the journal defines a default commodity, it will be added to+ any bare numbers entered.++ * A parenthesised transaction code may be entered following a date.++ * Comments and tags may be entered following a description or amount.++ * If you make a mistake, enter `<' at any prompt to go one step+ backward.++ * Input prompts are displayed in a different colour when the terminal+ supports it.++ Example (see the tutorial for a detailed explanation):+++$ hledger add+Adding transactions to journal file /src/hledger/examples/sample.journal+Any command line arguments will be used as defaults.+Use tab key to complete, readline keys to edit, enter to accept defaults.+An optional (CODE) may follow transaction dates.+An optional ; COMMENT may follow descriptions or amounts.+If you make a mistake, enter < at any prompt to go one step backward.+To end a transaction, enter . when prompted.+To quit, enter . at a date prompt or press control-d or control-c.+Date [2015/05/22]:+Description: supermarket+Account 1: expenses:food+Amount 1: $10+Account 2: assets:checking+Amount 2 [$-10.0]:+Account 3 (or . or enter to finish this transaction): .+2015/05/22 supermarket+ expenses:food $10+ assets:checking $-10.0++Save this transaction to the journal ? [y]:+Saved.+Starting the next transaction (. or ctrl-D/ctrl-C to quit)+Date [2015/05/22]: <CTRL-D> $++ On Microsoft Windows, the add command makes sure that no part of the+file path ends with a period, as that would cause problems (#1056).+++File: hledger.info, Node: aregister, Next: balance, Prev: add, Up: COMMANDS++11.4 aregister+==============++aregister, areg+Show the transactions and running historical balance in an account, with+each line item representing one transaction.++ `aregister' shows the transactions affecting a particular account+and its subaccounts, with each line item representing a whole+transaction - as in bank statements, hledger-ui, hledger-web and other+accounting apps.++ Note this is unlike the `register' command, which shows individual+postings and does not always show a single account or a historical+balance.++ A reminder, "historical" balances include any balance from+transactions before the report start date, so (if opening balances are+recorded correctly) `aregister' will show the real-world balances of an+account, as you would see in a bank statement.++ As a quick rule of thumb, use `aregister' for reconciling real-world+asset/liability accounts and `register' for reviewing detailed+revenues/expenses.++ `aregister' shows the register for just one account (and its+subaccounts). This account must be specified as the first argument. You+can write either the full account name, or a case-insensitive regular+expression which will select the alphabetically first matched account.+(Eg if you have `assets:aaa:checking' and `assets:bbb:checking'+accounts, `hledger areg checking' would select `assets:aaa:checking'.)++ Any additional arguments form a query which will filter the+transactions shown.++ Each `aregister' line item shows:++ * the transaction's date (or the relevant posting's date if+ different, see below)++ * the names of all the other account(s) involved in this transaction+ (probably abbreviated)++ * the total change to this account's balance from this transaction++ * the account's historical running balance after this transaction.++ Transactions making a net change of zero are not shown by default;+add the `-E/--empty' flag to show them.++ `aregister' ignores a depth limit, so its final total will always+match a balance report with similar arguments.++ This command also supports the output destination and output format+options The output formats supported are `txt', `csv', and `json'.++* Menu:++* aregister and custom posting dates::+++File: hledger.info, Node: aregister and custom posting dates, Up: aregister++11.4.1 aregister and custom posting dates+-----------------------------------------++Transactions whose date is outside the report period can still be shown,+if they have a posting to this account dated inside the report period.+(And in this case it's the posting date that is shown.) This ensures+that `aregister' can show an accurate historical running balance,+matching the one shown by `register -H' with the same arguments.++ To filter strictly by transaction date instead, add the+`--txn-dates' flag. If you use this flag and some of your postings have+custom dates, it's probably best to assume the running balance is wrong.++ Examples:++ Show all transactions and historical running balance in the first+account whose name contains "checking":+++$ hledger areg checking++ Show transactions and historical running balance in all asset+accounts during july:+++$ hledger areg assets date:jul+++File: hledger.info, Node: balance, Next: balancesheet, Prev: aregister, Up: COMMANDS++11.5 balance+============++balance, bal+Show accounts and their balances.++ `balance' is one of hledger's oldest and most versatile commands,+for listing account balances, balance changes, values, value changes and+more, during one time period or many. Generally it shows a table, with+rows representing accounts, and columns representing periods.++ Note there are some higher-level variants of the `balance' command+with convenient defaults, which can be simpler to use: `balancesheet',+`balancesheetequity', `cashflow' and `incomestatement'. When you need+more control, then use `balance'.++* Menu:++* balance features::+* Simple balance report::+* Filtered balance report::+* List or tree mode::+* Depth limiting::+* Multi-period balance report::+* Sorting by amount::+* Percentages::+* Balance change end balance::+* Balance report types::+* Useful balance reports::+* Budget report::+* Customising single-period balance reports::+++File: hledger.info, Node: balance features, Next: Simple balance report, Up: balance++11.5.1 balance features+-----------------------++Here's a quick overview of the `balance' command's features, followed+by more detailed descriptions and examples. Many of these work with the+higher-level commands as well.++ `balance' can show..++ * accounts as a list (`-l') or a tree (`-t')++ * optionally depth-limited (`-[1-9]')++ * sorted by declaration order and name, or by amount++ ..and their..++ * balance changes (the default)++ * or actual and planned balance changes (`--budget')++ * or value of balance changes (`-V')++ * or change of balance values (`--valuechange')++ ..in..++ * one time period (the whole journal period by default)++ * or multiple periods (`-D', `-W', `-M', `-Q', `-Y', `-p INTERVAL')++ ..either..++ * per period (the default)++ * or accumulated since report start date (`--cumulative')++ * or accumulated since account creation (`--historical/-H')++ ..possibly converted to..++ * cost (`--value=cost[,COMM]'/`--cost'/`-B')++ * or market value, as of transaction dates (`--value=then[,COMM]')++ * or at period ends (`--value=end[,COMM]')++ * or now (`--value=now')++ * or at some other date (`--value=YYYY-MM-DD')++ ..with..++ * totals (`-T'), averages (`-A'), percentages (`-%'), inverted sign+ (`--invert')++ * rows and columns swapped (`--transpose')++ * another field used as account name (`--pivot')++ * custom-formatted line items (single-period reports only)+ (`--format')++ This command supports the output destination and output format+options, with output formats `txt', `csv', `json', and (multi-period+reports only:) `html'. In `txt' output in a colour-supporting terminal,+negative amounts are shown in red.+++File: hledger.info, Node: Simple balance report, Next: Filtered balance report, Prev: balance features, Up: balance++11.5.2 Simple balance report+----------------------------++With no arguments, `balance' shows a list of all accounts and their+change of balance - ie, the sum of posting amounts, both inflows and+outflows - during the entire period of the journal. For real-world+accounts, this should also match their end balance at the end of the+journal period (more on this below).++ Accounts are sorted by declaration order if any, and then+alphabetically by account name. For instance, using+examples/sample.journal:+++$ hledger bal+ $1 assets:bank:saving+ $-2 assets:cash+ $1 expenses:food+ $1 expenses:supplies+ $-1 income:gifts+ $-1 income:salary+ $1 liabilities:debts+--------------------+ 0++ Accounts with a zero balance (and no non-zero subaccounts, in tree+mode - see below) are hidden by default. Use `-E/--empty' to show them+(revealing `assets:bank:checking' here):+++$ hledger -f examples/sample.journal bal -E+ 0 assets:bank:checking+ $1 assets:bank:saving+ $-2 assets:cash+ $1 expenses:food+ $1 expenses:supplies+ $-1 income:gifts+ $-1 income:salary+ $1 liabilities:debts+--------------------+ 0++ The total of the amounts displayed is shown as the last line, unless+`-N'/`--no-total' is used.+++File: hledger.info, Node: Filtered balance report, Next: List or tree mode, Prev: Simple balance report, Up: balance++11.5.3 Filtered balance report+------------------------------++You can show fewer accounts, a different time period, totals from+cleared transactions only, etc. by using query arguments or options to+limit the postings being matched. Eg:+++$ hledger bal --cleared assets date:200806+ $-2 assets:cash+--------------------+ $-2+++File: hledger.info, Node: List or tree mode, Next: Depth limiting, Prev: Filtered balance report, Up: balance++11.5.4 List or tree mode+------------------------++By default, or with `-l/--flat', accounts are shown as a flat list with+their full names visible, as in the examples above.++ With `-t/--tree', the account hierarchy is shown, with subaccounts'+"leaf" names indented below their parent:+++$ hledger balance+ $-1 assets+ $1 bank:saving+ $-2 cash+ $2 expenses+ $1 food+ $1 supplies+ $-2 income+ $-1 gifts+ $-1 salary+ $1 liabilities:debts+--------------------+ 0++ Notes:++ * "Boring" accounts are combined with their subaccount for more+ compact output, unless `--no-elide' is used. Boring accounts have+ no balance of their own and just one subaccount (eg `assets:bank'+ and `liabilities' above).++ * All balances shown are "inclusive", ie including the balances from+ all subaccounts. Note this means some repetition in the output,+ which requires explanation when sharing reports with+ non-plaintextaccounting-users. A tree mode report's final total is+ the sum of the top-level balances shown, not of all the balances+ shown.++ * Each group of sibling accounts (ie, under a common parent) is+ sorted separately.++++File: hledger.info, Node: Depth limiting, Next: Multi-period balance report, Prev: List or tree mode, Up: balance++11.5.5 Depth limiting+---------------------++With a `depth:N' query, or `--depth N' option, or just `-N', balance+reports will show accounts only to the specified depth, hiding the+deeper subaccounts. Account balances at the depth limit always include+the balances from any hidden subaccounts (even in list mode). This can+be useful for getting an overview. Eg, limiting to depth 1:+++$ hledger balance -N -1+ $-1 assets+ $2 expenses+ $-2 income+ $1 liabilities++ You can also hide top-level account name parts, using `--drop N'.+This can be useful for hiding repetitive top-level account names:+++$ hledger bal expenses --drop 1+ $1 food+ $1 supplies+--------------------+ $2+++File: hledger.info, Node: Multi-period balance report, Next: Sorting by amount, Prev: Depth limiting, Up: balance++11.5.6 Multi-period balance report+----------------------------------++With a report interval (set by the `-D/--daily', `-W/--weekly',+`-M/--monthly', `-Q/--quarterly', `-Y/--yearly', or `-p/--period'+flag), `balance' shows a tabular report, with columns representing+successive time periods (and a title):+++$ hledger balance --quarterly income expenses -E+Balance changes in 2008:++ || 2008q1 2008q2 2008q3 2008q4+===================++=================================+ expenses:food || 0 $1 0 0+ expenses:supplies || 0 $1 0 0+ income:gifts || 0 $-1 0 0+ income:salary || $-1 0 0 0+-------------------++---------------------------------+ || $-1 $1 0 0++ Notes:++ * The report's start/end dates will be expanded, if necessary, to+ fully encompass the displayed subperiods (so that the first and+ last subperiods have the same duration as the others).++ * Leading and trailing periods (columns) containing all zeroes are+ not shown, unless `-E/--empty' is used.++ * Accounts (rows) containing all zeroes are not shown, unless+ `-E/--empty' is used.++ * Amounts with many commodities are shown in abbreviated form, unless+ `--no-elide' is used. _(experimental)_++ * Average and/or total columns can be added with the `-A/--average'+ and `-T/--row-total' flags.++ * The `--transpose' flag can be used to exchange rows and columns.++ * The `--pivot FIELD' option causes a different transaction field to+ be used as "account name". See PIVOTING.++ Multi-period reports with many periods can be too wide for easy+viewing in the terminal. Here are some ways to handle that:++ * Hide the totals row with `-N/--no-total'++ * Convert to a single currency with `-V'++ * Maximize the terminal window++ * Reduce the terminal's font size++ * View with a pager like less, eg: `hledger bal -D --color=yes |+ less -RS'++ * Output as CSV and use a CSV viewer like visidata (`hledger bal -D+ -O csv | vd -f csv'), Emacs' csv-mode (`M-x csv-mode, C-c C-a'),+ or a spreadsheet (`hledger bal -D -o a.csv && open a.csv')++ * Output as HTML and view with a browser: `hledger bal -D -o a.html+ && open a.html'+++File: hledger.info, Node: Sorting by amount, Next: Percentages, Prev: Multi-period balance report, Up: balance++11.5.7 Sorting by amount+------------------------++With `-S/--sort-amount', accounts with the largest (most positive)+balances are shown first. Eg: `hledger bal expenses -MAS' shows your+biggest averaged monthly expenses first.++ Revenues and liability balances are typically negative, however, so+`-S' shows these in reverse order. To work around this, you can add+`--invert' to flip the signs. (Or, use one of the higher-level reports,+which flip the sign automatically. Eg: `hledger incomestatement -MAS').+++File: hledger.info, Node: Percentages, Next: Balance change end balance, Prev: Sorting by amount, Up: balance++11.5.8 Percentages+------------------++With `-%/--percent', balance reports show each account's value+expressed as a percentage of the (column) total:+++$ hledger bal expenses -Q -%+Balance changes in 2008:++ || 2008Q1 2008Q2 2008Q3 2008Q4+===================++=================================+ expenses:food || 0 50.0 % 0 0+ expenses:supplies || 0 50.0 % 0 0+-------------------++---------------------------------+ || 0 100.0 % 0 0++ Note it is not useful to calculate percentages if the amounts in a+column have mixed signs. In this case, make a separate report for each+sign, eg:+++$ hledger bal -% amt:`>0`+$ hledger bal -% amt:`<0`++ Similarly, if the amounts in a column have mixed commodities, convert+them to one commodity with `-B', `-V', `-X' or `--value', or make a+separate report for each commodity:+++$ hledger bal -% cur:\\$+$ hledger bal -% cur:€+++File: hledger.info, Node: Balance change end balance, Next: Balance report types, Prev: Percentages, Up: balance++11.5.9 Balance change, end balance+----------------------------------++It's important to be clear on the meaning of the numbers shown in+balance reports. Here is some terminology we use:++ A *_balance change_* is the net amount added to, or removed from, an+account during some period.++ An *_end balance_* is the amount accumulated in an account as of+some date (and some time, but hledger doesn't store that; assume end of+day in your timezone). It is the sum of previous balance changes.++ We call it a *_historical end balance_* if it includes all balance+changes since the account was created. For a real world account, this+means it will match the "historical record", eg the balances reported+in your bank statements or bank web UI. (If they are correct!)++ In general, balance changes are what you want to see when reviewing+revenues and expenses, and historical end balances are what you want to+see when reviewing or reconciling asset, liability and equity accounts.++ `balance' shows balance changes by default. To see accurate+historical end balances:++ 1. Initialise account starting balances with an "opening balances"+ transaction (a transfer from equity to the account), unless the+ journal covers the account's full lifetime.++ 2. Include all of of the account's prior postings in the report, by+ not specifying a report start date, or by using the+ `-H/--historical' flag. (`-H' causes report start date to be+ ignored when summing postings.)++++File: hledger.info, Node: Balance report types, Next: Useful balance reports, Prev: Balance change end balance, Up: balance++11.5.10 Balance report types+----------------------------++For more flexible reporting, there are three important option groups:++ `hledger balance [CALCULATIONTYPE] [ACCUMULATIONTYPE]+[VALUATIONTYPE] ...'++ The first two are the most important: calculation type selects the+basic calculation to perform for each table cell, while accumulation+type says which postings should be included in each cell's calculation.+Typically one or both of these are selected by default, so you don't+need to write them explicitly. A valuation type can be added if you+want to convert the basic report to value or cost.++ *Calculation type:*+The basic calculation to perform for each table cell. It is one of:++ * `--sum' : sum the posting amounts (*default*)++ * `--budget' : like -sum but also show a goal amount++ * `--valuechange' : show the change in period-end historical balance+ values++ *Accumulation type:*+Which postings should be included in each cell's calculation. It is one+of:++ * `--change' : postings from column start to column end, ie within+ the cell's period. Typically used to see revenues/expenses.+ (*default for balance, incomestatement*)++ * `--cumulative' : postings from report start to column end, eg to+ show changes accumulated since the report's start date. Rarely+ used.++ * `--historical/-H' : postings from journal start to column end, ie+ all postings from account creation to the end of the cell's period.+ Typically used to see historical end balances of+ assets/liabilities/equity. (*default for balancesheet,+ balancesheetequity, cashflow*)+++ *Valuation type:*+Which kind of valuation, valuation date(s) and optionally a target+valuation commodity to use. It is one of:++ * no valuation, show amounts in their original commodities+ (*default*)++ * `--value=cost[,COMM]' : no valuation, show amounts converted to+ cost++ * `--value=then[,COMM]' : show value at transaction dates++ * `--value=end[,COMM]' : show value at period end date(s) (*default+ with `--valuechange'*)++ * `--value=now[,COMM]' : show value at today's date++ * `--value=YYYY-MM-DD[,COMM]' : show value at another date++ or one of their aliases: `--cost/-B', `--market/-V' or+`--exchange/-X'.++ Most combinations of these options should produce reasonable reports,+but if you find any that seem wrong or misleading, let us know. The+following restrictions are applied:++ * `--valuechange' implies `--value=end'++ * `--valuechange' makes `--change' the default when used with the+ `balancesheet'/`balancesheetequity' commands++ * `--cumulative' or `--historical' disables `--row-total/-T'++ For reference, here is what the combinations of accumulation and+valuation show:++Valuation:no valuation `--value= then' `--value= end' `--value=+>Accumulation: YYYY-MM-DD+v /now'+------------------------------------------------------------------------------ +`--change'change in period sum of period-end DATE-value of+ posting-date value of change change in+ market values in in period period+ period +`--cumulative'change from sum of period-end DATE-value of+ report start to posting-date value of change change from+ period end market values from report report start+ from report start to period to period end+ start to period end + end +`--historicalchange from sum of period-end DATE-value of+/-H' journal start to posting-date value of change change from+ period end market values from journal journal start+ (historical end from journal start to period to period end+ balance) start to period end + end +++File: hledger.info, Node: Useful balance reports, Next: Budget report, Prev: Balance report types, Up: balance++11.5.11 Useful balance reports+------------------------------++Some frequently used `balance' options/reports are:++ * `bal -M revenues expenses'+ Show revenues/expenses in each month. Also available as the+ `incomestatement' command.++ * `bal -M -H assets liabilities'+ Show historical asset/liability balances at each month end. Also+ available as the `balancesheet' command.++ * `bal -M -H assets liabilities equity'+ Show historical asset/liability/equity balances at each month end.+ Also available as the `balancesheetequity' command.++ * `bal -M assets not:receivable'+ Show changes to liquid assets in each month. Also available as the+ `cashflow' command.+++ Also:++ * `bal -M expenses -2 -SA'+ Show monthly expenses summarised to depth 2 and sorted by average+ amount.++ * `bal -M --budget expenses'+ Show monthly expenses and budget goals.++ * `bal -M --valuechange investments'+ Show monthly change in market value of investment assets.++ * `bal investments --valuechange -D date:lastweek amt:'>1000' -STA+ [--invert]'+ Show top gainers [or losers] last week++++File: hledger.info, Node: Budget report, Next: Customising single-period balance reports, Prev: Useful balance reports, Up: balance++11.5.12 Budget report+---------------------++The `--budget' report type activates extra columns showing any budget+goals for each account and period. The budget goals are defined by+periodic transactions. This is very useful for comparing planned and+actual income, expenses, time usage, etc.++ For example, you can take average monthly expenses in the common+expense categories to construct a minimal monthly budget:+++;; Budget+~ monthly+ income $2000+ expenses:food $400+ expenses:bus $50+ expenses:movies $30+ assets:bank:checking++;; Two months worth of expenses+2017-11-01+ income $1950+ expenses:food $396+ expenses:bus $49+ expenses:movies $30+ expenses:supplies $20+ assets:bank:checking++2017-12-01+ income $2100+ expenses:food $412+ expenses:bus $53+ expenses:gifts $100+ assets:bank:checking++ You can now see a monthly budget report:+++$ hledger balance -M --budget+Budget performance in 2017/11/01-2017/12/31:++ || Nov Dec+======================++====================================================+ assets || $-2445 [ 99% of $-2480] $-2665 [ 107% of $-2480]+ assets:bank || $-2445 [ 99% of $-2480] $-2665 [ 107% of $-2480]+ assets:bank:checking || $-2445 [ 99% of $-2480] $-2665 [ 107% of $-2480]+ expenses || $495 [ 103% of $480] $565 [ 118% of $480]+ expenses:bus || $49 [ 98% of $50] $53 [ 106% of $50]+ expenses:food || $396 [ 99% of $400] $412 [ 103% of $400]+ expenses:movies || $30 [ 100% of $30] 0 [ 0% of $30]+ income || $1950 [ 98% of $2000] $2100 [ 105% of $2000]+----------------------++----------------------------------------------------+ || 0 [ 0] 0 [ 0]++ This is different from a normal balance report in several ways:++ * Only accounts with budget goals during the report period are+ shown, by default.++ * In each column, in square brackets after the actual amount, budget+ goal amounts are shown, and the actual/goal percentage. (Note:+ budget goals should be in the same commodity as the actual amount.)++ * All parent accounts are always shown, even in list mode. Eg assets,+ assets:bank, and expenses above.++ * Amounts always include all subaccounts, budgeted or unbudgeted,+ even in list mode.+++ This means that the numbers displayed will not always add up! Eg+above, the `expenses' actual amount includes the gifts and supplies+transactions, but the `expenses:gifts' and `expenses:supplies' accounts+are not shown, as they have no budget amounts declared.++ This can be confusing. When you need to make things clearer, use the+`-E/--empty' flag, which will reveal all accounts including unbudgeted+ones, giving the full picture. Eg:+++$ hledger balance -M --budget --empty+Budget performance in 2017/11/01-2017/12/31:++ || Nov Dec+======================++====================================================+ assets || $-2445 [ 99% of $-2480] $-2665 [ 107% of $-2480]+ assets:bank || $-2445 [ 99% of $-2480] $-2665 [ 107% of $-2480]+ assets:bank:checking || $-2445 [ 99% of $-2480] $-2665 [ 107% of $-2480]+ expenses || $495 [ 103% of $480] $565 [ 118% of $480]+ expenses:bus || $49 [ 98% of $50] $53 [ 106% of $50]+ expenses:food || $396 [ 99% of $400] $412 [ 103% of $400]+ expenses:gifts || 0 $100+ expenses:movies || $30 [ 100% of $30] 0 [ 0% of $30]+ expenses:supplies || $20 0+ income || $1950 [ 98% of $2000] $2100 [ 105% of $2000]+----------------------++----------------------------------------------------+ || 0 [ 0] 0 [ 0]++ You can roll over unspent budgets to next period with `--cumulative':+++$ hledger balance -M --budget --cumulative+Budget performance in 2017/11/01-2017/12/31:++ || Nov Dec+======================++====================================================+ assets || $-2445 [ 99% of $-2480] $-5110 [ 103% of $-4960]+ assets:bank || $-2445 [ 99% of $-2480] $-5110 [ 103% of $-4960]+ assets:bank:checking || $-2445 [ 99% of $-2480] $-5110 [ 103% of $-4960]+ expenses || $495 [ 103% of $480] $1060 [ 110% of $960]+ expenses:bus || $49 [ 98% of $50] $102 [ 102% of $100]+ expenses:food || $396 [ 99% of $400] $808 [ 101% of $800]+ expenses:movies || $30 [ 100% of $30] $30 [ 50% of $60]+ income || $1950 [ 98% of $2000] $4050 [ 101% of $4000]+----------------------++----------------------------------------------------+ || 0 [ 0] 0 [ 0]++ For more examples and notes, see Budgeting.++* Menu:++* Budget report start date::+* Nested budgets::+++File: hledger.info, Node: Budget report start date, Next: Nested budgets, Up: Budget report++11.5.12.1 Budget report start date+..................................++This might be a bug, but for now: when making budget reports, it's a+good idea to explicitly set the report's start date to the first day of+a reporting period, because a periodic rule like `~ monthly' generates+its transactions on the 1st of each month, and if your journal has no+regular transactions on the 1st, the default report start date could+exclude that budget goal, which can be a little surprising. Eg here the+default report period is just the day of 2020-01-15:+++~ monthly in 2020+ (expenses:food) $500++2020-01-15+ expenses:food $400+ assets:checking+++$ hledger bal expenses --budget+Budget performance in 2020-01-15:++ || 2020-01-15+==============++============+ <unbudgeted> || $400+--------------++------------+ || $400++ To avoid this, specify the budget report's period, or at least the+start date, with `-b'/`-e'/`-p'/`date:', to ensure it includes the+budget goal transactions (periodic transactions) that you want. Eg,+adding `-b 2020/1/1' to the above:+++$ hledger bal expenses --budget -b 2020/1/1+Budget performance in 2020-01-01..2020-01-15:++ || 2020-01-01..2020-01-15+===============++========================+ expenses:food || $400 [80% of $500]+---------------++------------------------+ || $400 [80% of $500]+++File: hledger.info, Node: Nested budgets, Prev: Budget report start date, Up: Budget report++11.5.12.2 Nested budgets+........................++You can add budgets to any account in your account hierarchy. If you+have budgets on both parent account and some of its children, then+budget(s) of the child account(s) would be added to the budget of their+parent, much like account balances behave.++ In the most simple case this means that once you add a budget to any+account, all its parents would have budget as well.++ To illustrate this, consider the following budget:+++~ monthly from 2019/01+ expenses:personal $1,000.00+ expenses:personal:electronics $100.00+ liabilities++ With this, monthly budget for electronics is defined to be $100 and+budget for personal expenses is an additional $1000, which implicitly+means that budget for both `expenses:personal' and `expenses' is $1100.++ Transactions in `expenses:personal:electronics' will be counted both+towards its $100 budget and $1100 of `expenses:personal' , and+transactions in any other subaccount of `expenses:personal' would be+counted towards only towards the budget of `expenses:personal'.++ For example, let's consider these transactions:+++~ monthly from 2019/01+ expenses:personal $1,000.00+ expenses:personal:electronics $100.00+ liabilities++2019/01/01 Google home hub+ expenses:personal:electronics $90.00+ liabilities $-90.00++2019/01/02 Phone screen protector+ expenses:personal:electronics:upgrades $10.00+ liabilities++2019/01/02 Weekly train ticket+ expenses:personal:train tickets $153.00+ liabilities++2019/01/03 Flowers+ expenses:personal $30.00+ liabilities++ As you can see, we have transactions in+`expenses:personal:electronics:upgrades' and `expenses:personal:train+tickets', and since both of these accounts are without explicitly+defined budget, these transactions would be counted towards budgets of+`expenses:personal:electronics' and `expenses:personal' accordingly:+++$ hledger balance --budget -M+Budget performance in 2019/01:++ || Jan+===============================++===============================+ expenses || $283.00 [ 26% of $1100.00]+ expenses:personal || $283.00 [ 26% of $1100.00]+ expenses:personal:electronics || $100.00 [ 100% of $100.00]+ liabilities || $-283.00 [ 26% of $-1100.00]+-------------------------------++-------------------------------+ || 0 [ 0]++ And with `--empty', we can get a better picture of budget allocation+and consumption:+++$ hledger balance --budget -M --empty+Budget performance in 2019/01:++ || Jan+========================================++===============================+ expenses || $283.00 [ 26% of $1100.00]+ expenses:personal || $283.00 [ 26% of $1100.00]+ expenses:personal:electronics || $100.00 [ 100% of $100.00]+ expenses:personal:electronics:upgrades || $10.00+ expenses:personal:train tickets || $153.00+ liabilities || $-283.00 [ 26% of $-1100.00]+----------------------------------------++-------------------------------+ || 0 [ 0]+++File: hledger.info, Node: Customising single-period balance reports, Prev: Budget report, Up: balance++11.5.13 Customising single-period balance reports+-------------------------------------------------++For single-period balance reports displayed in the terminal (only), you+can use `--format FMT' to customise the format and content of each+line. Eg:+++$ hledger balance --format "%20(account) %12(total)"+ assets $-1+ bank:saving $1+ cash $-2+ expenses $2+ food $1+ supplies $1+ income $-2+ gifts $-1+ salary $-1+ liabilities:debts $1+---------------------------------+ 0++ The FMT format string (plus a newline) specifies the formatting+applied to each account/balance pair. It may contain any suitable text,+with data fields interpolated like so:++ `%[MIN][.MAX](FIELDNAME)'++ * MIN pads with spaces to at least this width (optional)++ * MAX truncates at this width (optional)++ * FIELDNAME must be enclosed in parentheses, and can be one of:++ * `depth_spacer' - a number of spaces equal to the account's+ depth, or if MIN is specified, MIN * depth spaces.++ * `account' - the account's name++ * `total' - the account's balance/posted total, right justified+++ Also, FMT can begin with an optional prefix to control how+multi-commodity amounts are rendered:++ * `%_' - render on multiple lines, bottom-aligned (the default)++ * `%^' - render on multiple lines, top-aligned++ * `%,' - render on one line, comma-separated++ There are some quirks. Eg in one-line mode, `%(depth_spacer)' has no+effect, instead `%(account)' has indentation built in. Experimentation+may be needed to get pleasing results.++ Some example formats:++ * `%(total)' - the account's total++ * `%-20.20(account)' - the account's name, left justified, padded to+ 20 characters and clipped at 20 characters++ * `%,%-50(account) %25(total)' - account name padded to 50+ characters, total padded to 20 characters, with multiple+ commodities rendered on one line++ * `%20(total) %2(depth_spacer)%-(account)' - the default format for+ the single-column balance report+++File: hledger.info, Node: balancesheet, Next: balancesheetequity, Prev: balance, Up: COMMANDS++11.6 balancesheet+=================++balancesheet, bs+This command displays a balance sheet, showing historical ending+balances of asset and liability accounts. (To see equity as well, use+the balancesheetequity command.) Amounts are shown with normal positive+sign, as in conventional financial statements.++ The asset and liability accounts shown are those accounts declared+with the `Asset' or `Cash' or `Liability' type, or otherwise all+accounts under a top-level `asset' or `liability' account (case+insensitive, plurals allowed).++ Example:+++$ hledger balancesheet+Balance Sheet++Assets:+ $-1 assets+ $1 bank:saving+ $-2 cash+--------------------+ $-1++Liabilities:+ $1 liabilities:debts+--------------------+ $1++Total:+--------------------+ 0++ This command is a higher-level variant of the `balance' command, and+supports many of that command's features, such as multi-period reports.+It is similar to `hledger balance -H assets liabilities', but with+smarter account detection, and liabilities displayed with their sign+flipped.++ This command also supports the output destination and output format+options The output formats supported are `txt', `csv', `html', and+(experimental) `json'.+++File: hledger.info, Node: balancesheetequity, Next: cashflow, Prev: balancesheet, Up: COMMANDS++11.7 balancesheetequity+=======================++balancesheetequity, bse+This command displays a balance sheet, showing historical ending+balances of asset, liability and equity accounts. Amounts are shown with+normal positive sign, as in conventional financial statements.++ The asset, liability and equity accounts shown are those accounts+declared with the `Asset', `Cash', `Liability' or `Equity' type, or+otherwise all accounts under a top-level `asset', `liability' or+`equity' account (case insensitive, plurals allowed).++ Example:+++$ hledger balancesheetequity+Balance Sheet With Equity++Assets:+ $-2 assets+ $1 bank:saving+ $-3 cash+--------------------+ $-2++Liabilities:+ $1 liabilities:debts+--------------------+ $1++Equity:+ $1 equity:owner+--------------------+ $1++Total:+--------------------+ 0++ This command is a higher-level variant of the `balance' command, and+supports many of that command's features, such as multi-period reports.+It is similar to `hledger balance -H assets liabilities equity', but+with smarter account detection, and liabilities/equity displayed with+their sign flipped.++ This command also supports the output destination and output format+options The output formats supported are `txt', `csv', `html', and+(experimental) `json'.+++File: hledger.info, Node: cashflow, Next: check, Prev: balancesheetequity, Up: COMMANDS++11.8 cashflow+=============++cashflow, cf+This command displays a cashflow statement, showing the inflows and+outflows affecting "cash" (ie, liquid) assets. Amounts are shown with+normal positive sign, as in conventional financial statements.++ The "cash" accounts shown are those accounts declared with the+`Cash' type, or otherwise all accounts under a top-level `asset'+account (case insensitive, plural allowed) which do not have `fixed',+`investment', `receivable' or `A/R' in their name.++ Example:+++$ hledger cashflow+Cashflow Statement++Cash flows:+ $-1 assets+ $1 bank:saving+ $-2 cash+--------------------+ $-1++Total:+--------------------+ $-1++ This command is a higher-level variant of the `balance' command, and+supports many of that command's features, such as multi-period reports.+It is similar to `hledger balance assets not:fixed not:investment+not:receivable', but with smarter account detection.++ This command also supports the output destination and output format+options The output formats supported are `txt', `csv', `html', and+(experimental) `json'.+++File: hledger.info, Node: check, Next: close, Prev: cashflow, Up: COMMANDS++11.9 check+==========++check+Check for various kinds of errors in your data.++ hledger provides a number of built-in error checks to help prevent+problems in your data. Some of these are run automatically; or, you can+use this `check' command to run them on demand, with no output and a+zero exit code if all is well. Specify their names (or a prefix) as+argument(s).++ Some examples:+++hledger check # basic checks+hledger check -s # basic + strict checks+hledger check ordereddates payees # basic + two other checks++ Here are the checks currently available:++* Menu:++* Basic checks::+* Strict checks::+* Other checks::+* Custom checks::+++File: hledger.info, Node: Basic checks, Next: Strict checks, Up: check++11.9.1 Basic checks+-------------------++These checks are always run automatically, by (almost) all hledger+commands, including `check':++ * *parseable* - data files are well-formed and can be successfully+ parsed++ * *autobalanced* - all transactions are balanced, inferring missing+ amounts where necessary, and possibly converting commodities using+ transaction prices or automatically-inferred transaction prices++ * *assertions* - all balance assertions in the journal are passing.+ (This check can be disabled with `-I'/`--ignore-assertions'.)++++File: hledger.info, Node: Strict checks, Next: Other checks, Prev: Basic checks, Up: check++11.9.2 Strict checks+--------------------++These additional checks are run when the `-s'/`--strict' (strict mode)+flag is used. Or, they can be run by giving their names as arguments to+`check':++ * *accounts* - all account names used by transactions have been+ declared++ * *commodities* - all commodity symbols used have been declared++++File: hledger.info, Node: Other checks, Next: Custom checks, Prev: Strict checks, Up: check++11.9.3 Other checks+-------------------++These checks can be run only by giving their names as arguments to+`check'. They are more specialised and not desirable for everyone,+therefore optional:++ * *ordereddates* - transactions are ordered by date in each file++ * *payees* - all payees used by transactions have been declared++ * *uniqueleafnames* - all account leaf names are unique++++File: hledger.info, Node: Custom checks, Prev: Other checks, Up: check++11.9.4 Custom checks+--------------------++A few more checks are are available as separate add-on commands, in+https://github.com/simonmichael/hledger/tree/master/bin:++ * *hledger-check-tagfiles* - all tag values containing / (a forward+ slash) exist as file paths++ * *hledger-check-fancyassertions* - more complex balance assertions+ are passing+++ You could make similar scripts to perform your own custom checks.+See: Cookbook -> Scripting.+++File: hledger.info, Node: close, Next: codes, Prev: check, Up: COMMANDS++11.10 close+===========++close, equity+Prints a "closing balances" transaction and an "opening balances"+transaction that bring account balances to and from zero, respectively.+These can be added to your journal file(s), eg to bring asset/liability+balances forward into a new journal file, or to close out+revenues/expenses to retained earnings at the end of a period.++ You can print just one of these transactions by using the `--close'+or `--open' flag. You can customise their descriptions with the+`--close-desc' and `--open-desc' options.++ One amountless posting to "equity:opening/closing balances" is added+to balance the transactions, by default. You can customise this account+name with `--close-acct' and `--open-acct'; if you specify only one of+these, it will be used for both.++ With `--x/--explicit', the equity posting's amount will be shown.+And if it involves multiple commodities, a posting for each commodity+will be shown, as with the print command.++ With `--interleaved', the equity postings are shown next to the+postings they balance, which makes troubleshooting easier.++ By default, transaction prices in the journal are ignored when+generating the closing/opening transactions. With `--show-costs', this+cost information is preserved (`balance -B' reports will be unchanged+after the transition). Separate postings are generated for each cost in+each commodity. Note this can generate very large journal entries, if+you have many foreign currency or investment transactions.++* Menu:++* close usage::+++File: hledger.info, Node: close usage, Up: close++11.10.1 close usage+-------------------++If you split your journal files by time (eg yearly), you will typically+run this command at the end of the year, and save the closing+transaction as last entry of the old file, and the opening transaction+as the first entry of the new file. This makes the files self contained,+so that correct balances are reported no matter which of them are+loaded. Ie, if you load just one file, the balances are initialised+correctly; or if you load several files, the redundant closing/opening+transactions cancel each other out. (They will show up in print or+register reports; you can exclude them with a query like+`not:desc:'(opening|closing) balances''.)++ If you're running a business, you might also use this command to+"close the books" at the end of an accounting period, transferring+income statement account balances to retained earnings. (You may want+to change the equity account name to something like "equity:retained+earnings".)++ By default, the closing transaction is dated yesterday, the balances+are calculated as of end of yesterday, and the opening transaction is+dated today. To close on some other date, use: `hledger close -e+OPENINGDATE'. Eg, to close/open on the 2018/2019 boundary, use `-e+2019'. You can also use -p or `date:PERIOD' (any starting date is+ignored).++ Both transactions will include balance assertions for the+closed/reopened accounts. You probably shouldn't use status or realness+filters (like -C or -R or `status:') with this command, or the+generated balance assertions will depend on these flags. Likewise, if+you run this command with -auto, the balance assertions will probably+always require -auto.++ Examples:++ Carrying asset/liability balances into a new file for 2019:+++$ hledger close -f 2018.journal -e 2019 assets liabilities --open+ # (copy/paste the output to the start of your 2019 journal file)+$ hledger close -f 2018.journal -e 2019 assets liabilities --close+ # (copy/paste the output to the end of your 2018 journal file)++ Now:+++$ hledger bs -f 2019.journal # one file - balances are correct+$ hledger bs -f 2018.journal -f 2019.journal # two files - balances still correct+$ hledger bs -f 2018.journal not:desc:closing # to see year-end balances, must exclude closing txn++ Transactions spanning the closing date can complicate matters,+breaking balance assertions:+++2018/12/30 a purchase made in 2018, clearing the following year+ expenses:food 5+ assets:bank:checking -5 ; [2019/1/2]++ Here's one way to resolve that:+++; in 2018.journal:+2018/12/30 a purchase made in 2018, clearing the following year+ expenses:food 5+ liabilities:pending++; in 2019.journal:+2019/1/2 clearance of last year's pending transactions+ liabilities:pending 5 = 0+ assets:checking+++File: hledger.info, Node: codes, Next: commodities, Prev: close, Up: COMMANDS++11.11 codes+===========++codes+List the codes seen in transactions, in the order parsed.++ This command prints the value of each transaction's code field, in+the order transactions were parsed. The transaction code is an optional+value written in parentheses between the date and description, often+used to store a cheque number, order number or similar.++ Transactions aren't required to have a code, and missing or empty+codes will not be shown by default. With the `-E'/`--empty' flag, they+will be printed as blank lines.++ You can add a query to select a subset of transactions.++ Examples:+++1/1 (123)+ (a) 1++1/1 ()+ (a) 1++1/1+ (a) 1++1/1 (126)+ (a) 1+++$ hledger codes+123+124+126+++$ hledger codes -E+123+124+++126+++File: hledger.info, Node: commodities, Next: descriptions, Prev: codes, Up: COMMANDS++11.12 commodities+=================++commodities+List all commodity/currency symbols used or declared in the journal.+++File: hledger.info, Node: descriptions, Next: diff, Prev: commodities, Up: COMMANDS++11.13 descriptions+==================++descriptions+List the unique descriptions that appear in transactions.++ This command lists the unique descriptions that appear in+transactions, in alphabetic order. You can add a query to select a+subset of transactions.++ Example:+++$ hledger descriptions+Store Name+Gas Station | Petrol+Person A+++File: hledger.info, Node: diff, Next: files, Prev: descriptions, Up: COMMANDS++11.14 diff+==========++diff+Compares a particular account's transactions in two input files. It+shows any transactions to this account which are in one file but not in+the other.++ More precisely, for each posting affecting this account in either+file, it looks for a corresponding posting in the other file which+posts the same amount to the same account (ignoring date, description,+etc.) Since postings not transactions are compared, this also works+when multiple bank transactions have been combined into a single+journal entry.++ This is useful eg if you have downloaded an account's transactions+from your bank (eg as CSV data). When hledger and your bank disagree+about the account balance, you can compare the bank data with your+journal to find out the cause.++ Examples:+++$ hledger diff -f $LEDGER_FILE -f bank.csv assets:bank:giro+These transactions are in the first file only:++2014/01/01 Opening Balances+ assets:bank:giro EUR ...+ ...+ equity:opening balances EUR -...++These transactions are in the second file only:+++File: hledger.info, Node: files, Next: help, Prev: diff, Up: COMMANDS++11.15 files+===========++files+List all files included in the journal. With a REGEX argument, only file+names matching the regular expression (case sensitive) are shown.+++File: hledger.info, Node: help, Next: import, Prev: files, Up: COMMANDS++11.16 help+==========++help+Show the hledger user manual in one of several formats, optionally+positioned at a given TOPIC (if possible). TOPIC is any heading, or+heading prefix, in the manual. Some examples: commands, print, 'auto+postings', periodic.++ This command shows the user manual built in to this hledger version.+It can be useful if the correct version of the hledger manual, or the+usual viewing tools, are not installed on your system.++ By default it uses the best viewer it can find in $PATH, in this+order: `info', `man', $PAGER (unless a topic is specified), `less', or+stdout. When run non-interactively, it always uses stdout. Or you can+select a particular viewer with the `-i' (info), `-m' (man), or `-p'+(pager) flags.+++File: hledger.info, Node: import, Next: incomestatement, Prev: help, Up: COMMANDS++11.17 import+============++import+Read new transactions added to each FILE since last run, and add them to+the main journal file. Or with -dry-run, just print the transactions+that would be added. Or with -catchup, just mark all of the FILEs'+transactions as imported, without actually importing any.++ Unlike other hledger commands, with `import' the journal file is an+output file, and will be modified, though only by appending (existing+data will not be changed). The input files are specified as arguments,+so to import one or more CSV files to your main journal, you will run+`hledger import bank.csv' or perhaps `hledger import *.csv'.++ Note you can import from any file format, though CSV files are the+most common import source, and these docs focus on that case.++* Menu:++* Deduplication::+* Import testing::+* Importing balance assignments::+* Commodity display styles::+++File: hledger.info, Node: Deduplication, Next: Import testing, Up: import++11.17.1 Deduplication+---------------------++As a convenience `import' does _deduplication_ while reading+transactions. This does not mean "ignore transactions that look the+same", but rather "ignore transactions that have been seen before". This+is intended for when you are periodically importing foreign data which+may contain already-imported transactions. So eg, if every day you+download bank CSV files containing redundant data, you can safely run+`hledger import bank.csv' and only new transactions will be imported.+(`import' is idempotent.)++ Since the items being read (CSV records, eg) often do not come with+unique identifiers, hledger detects new transactions by date, assuming+that:++ 1. new items always have the newest dates++ 2. item dates do not change across reads++ 3. and items with the same date remain in the same relative order+ across reads.++ These are often true of CSV files representing transactions, or true+enough so that it works pretty well in practice. 1 is important, but+violations of 2 and 3 amongst the old transactions won't matter (and if+you import often, the new transactions will be few, so less likely to be+the ones affected).++ hledger remembers the latest date processed in each input file by+saving a hidden ".latest" state file in the same directory. Eg when+reading `finance/bank.csv', it will look for and update the+`finance/.latest.bank.csv' state file. The format is simple: one or+more lines containing the same ISO-format date (YYYY-MM-DD), meaning "I+have processed transactions up to this date, and this many of them on+that date." Normally you won't see or manipulate these state files+yourself. But if needed, you can delete them to reset the state (making+all transactions "new"), or you can construct them to "catch up" to a+certain date.++ Note deduplication (and updating of state files) can also be done by+`print --new', but this is less often used.+++File: hledger.info, Node: Import testing, Next: Importing balance assignments, Prev: Deduplication, Up: import++11.17.2 Import testing+----------------------++With `--dry-run', the transactions that will be imported are printed to+the terminal, without updating your journal or state files. The output+is valid journal format, like the print command, so you can re-parse+it. Eg, to see any importable transactions which CSV rules have not+categorised:+++$ hledger import --dry bank.csv | hledger -f- -I print unknown++ or (live updating):+++$ ls bank.csv* | entr bash -c 'echo ====; hledger import --dry bank.csv | hledger -f- -I print unknown'+++File: hledger.info, Node: Importing balance assignments, Next: Commodity display styles, Prev: Import testing, Up: import++11.17.3 Importing balance assignments+-------------------------------------++Entries added by import will have their posting amounts made explicit+(like `hledger print -x'). This means that any balance assignments in+imported files must be evaluated; but, imported files don't get to see+the main file's account balances. As a result, importing entries with+balance assignments (eg from an institution that provides only balances+and not posting amounts) will probably generate incorrect posting+amounts. To avoid this problem, use print instead of import:+++$ hledger print IMPORTFILE [--new] >> $LEDGER_FILE++ (If you think import should leave amounts implicit like print does,+please test it and send a pull request.)+++File: hledger.info, Node: Commodity display styles, Prev: Importing balance assignments, Up: import++11.17.4 Commodity display styles+--------------------------------++Imported amounts will be formatted according to the canonical commodity+styles (declared or inferred) in the main journal file.+++File: hledger.info, Node: incomestatement, Next: notes, Prev: import, Up: COMMANDS++11.18 incomestatement+=====================++incomestatement, is+This command displays an income statement, showing revenues and expenses+during one or more periods. Amounts are shown with normal positive sign,+as in conventional financial statements.++ The revenue and expense accounts shown are those accounts declared+with the `Revenue' or `Expense' type, or otherwise all accounts under a+top-level `revenue' or `income' or `expense' account (case insensitive,+plurals allowed).++ Example:+++$ hledger incomestatement+Income Statement++Revenues:+ $-2 income+ $-1 gifts+ $-1 salary+--------------------+ $-2++Expenses:+ $2 expenses+ $1 food+ $1 supplies+--------------------+ $2++Total:+--------------------+ 0++ This command is a higher-level variant of the `balance' command, and+supports many of that command's features, such as multi-period reports.+It is similar to `hledger balance '(revenues|income)' expenses', but+with smarter account detection, and revenues/income displayed with+their sign flipped.++ This command also supports the output destination and output format+options The output formats supported are `txt', `csv', `html', and+(experimental) `json'.+++File: hledger.info, Node: notes, Next: payees, Prev: incomestatement, Up: COMMANDS++11.19 notes+===========++notes+List the unique notes that appear in transactions.++ This command lists the unique notes that appear in transactions, in+alphabetic order. You can add a query to select a subset of+transactions. The note is the part of the transaction description after+a | character (or if there is no |, the whole description).++ Example:+++$ hledger notes+Petrol+Snacks+++File: hledger.info, Node: payees, Next: prices, Prev: notes, Up: COMMANDS++11.20 payees+============++payees+List the unique payee/payer names that appear in transactions.++ This command lists unique payee/payer names which have been declared+with payee directives (-declared), used in transaction descriptions+(-used), or both (the default).++ The payee/payer is the part of the transaction description before a |+character (or if there is no |, the whole description).++ You can add query arguments to select a subset of transactions. This+implies -used.++ Example:+++$ hledger payees+Store Name+Gas Station+Person A+++File: hledger.info, Node: prices, Next: print, Prev: payees, Up: COMMANDS++11.21 prices+============++prices+Print market price directives from the journal. With -costs, also print+synthetic market prices based on transaction prices. With+-inverted-costs, also print inverse prices based on transaction prices.+Prices (and postings providing prices) can be filtered by a query. Price+amounts are always displayed with their full precision.+++File: hledger.info, Node: print, Next: print-unique, Prev: prices, Up: COMMANDS++11.22 print+===========++print+Show transaction journal entries, sorted by date.++ The print command displays full journal entries (transactions) from+the journal file, sorted by date (or with `--date2', by secondary date).++ Amounts are shown mostly normalised to commodity display style, eg+the placement of commodity symbols will be consistent. All of their+decimal places are shown, as in the original journal entry (with one+alteration: in some cases trailing zeroes are added.)++ Amounts are shown right-aligned within each transaction (but not+across all transactions).++ Directives and inter-transaction comments are not shown, currently.+This means the print command is somewhat lossy, and if you are using it+to reformat your journal you should take care to also copy over the+directives and file-level comments.++ Eg:+++$ hledger print+2008/01/01 income+ assets:bank:checking $1+ income:salary $-1++2008/06/01 gift+ assets:bank:checking $1+ income:gifts $-1++2008/06/02 save+ assets:bank:saving $1+ assets:bank:checking $-1++2008/06/03 * eat & shop+ expenses:food $1+ expenses:supplies $1+ assets:cash $-2++2008/12/31 * pay off+ liabilities:debts $1+ assets:bank:checking $-1++ print's output is usually a valid hledger journal, and you can+process it again with a second hledger command. This can be useful for+certain kinds of search, eg:+++# Show running total of food expenses paid from cash.+# -f- reads from stdin. -I/--ignore-assertions is sometimes needed.+$ hledger print assets:cash | hledger -f- -I reg expenses:food++ There are some situations where print's output can become+unparseable:++ * Valuation affects posting amounts but not balance assertion or+ balance assignment amounts, potentially causing those to fail.++ * Auto postings can generate postings with too many missing amounts.++ Normally, the journal entry's explicit or implicit amount style is+preserved. For example, when an amount is omitted in the journal, it+will not appear in the output. Similarly, when a transaction price is+implied but not written, it will not appear in the output. You can use+the `-x'/`--explicit' flag to make all amounts and transaction prices+explicit, which can be useful for troubleshooting or for making your+journal more readable and robust against data entry errors. `-x' is+also implied by using any of `-B',`-V',`-X',`--value'.++ Note, `-x'/`--explicit' will cause postings with a multi-commodity+amount (these can arise when a multi-commodity transaction has an+implicit amount) to be split into multiple single-commodity postings,+keeping the output parseable.++ With `-B'/`--cost', amounts with transaction prices are converted to+cost using that price. This can be used for troubleshooting.++ With `-m'/`--match' and a STR argument, print will show at most one+transaction: the one one whose description is most similar to STR, and+is most recent. STR should contain at least two characters. If there is+no similar-enough match, no transaction will be shown.++ With `--new', hledger prints only transactions it has not seen on a+previous run. This uses the same deduplication system as the `import'+command. (See import's docs for details.)++ This command also supports the output destination and output format+options The output formats supported are `txt', `csv', and+(experimental) `json' and `sql'.++ Here's an example of print's CSV output:+++$ hledger print -Ocsv+"txnidx","date","date2","status","code","description","comment","account","amount","commodity","credit","debit","posting-status","posting-comment"+"1","2008/01/01","","","","income","","assets:bank:checking","1","$","","1","",""+"1","2008/01/01","","","","income","","income:salary","-1","$","1","","",""+"2","2008/06/01","","","","gift","","assets:bank:checking","1","$","","1","",""+"2","2008/06/01","","","","gift","","income:gifts","-1","$","1","","",""+"3","2008/06/02","","","","save","","assets:bank:saving","1","$","","1","",""+"3","2008/06/02","","","","save","","assets:bank:checking","-1","$","1","","",""+"4","2008/06/03","","*","","eat & shop","","expenses:food","1","$","","1","",""+"4","2008/06/03","","*","","eat & shop","","expenses:supplies","1","$","","1","",""+"4","2008/06/03","","*","","eat & shop","","assets:cash","-2","$","2","","",""+"5","2008/12/31","","*","","pay off","","liabilities:debts","1","$","","1","",""+"5","2008/12/31","","*","","pay off","","assets:bank:checking","-1","$","1","","",""++ * There is one CSV record per posting, with the parent transaction's+ fields repeated.++ * The "txnidx" (transaction index) field shows which postings belong+ to the same transaction. (This number might change if transactions+ are reordered within the file, files are parsed/included in a+ different order, etc.)++ * The amount is separated into "commodity" (the symbol) and "amount"+ (numeric quantity) fields.++ * The numeric amount is repeated in either the "credit" or "debit"+ column, for convenience. (Those names are not accurate in the+ accounting sense; it just puts negative amounts under credit and+ zero or greater amounts under debit.)+++File: hledger.info, Node: print-unique, Next: register, Prev: print, Up: COMMANDS++11.23 print-unique+==================++print-unique+Print transactions which do not reuse an already-seen description.++ Example:+++$ cat unique.journal+1/1 test+ (acct:one) 1+2/2 test+ (acct:two) 2+$ LEDGER_FILE=unique.journal hledger print-unique+(-f option not supported)+2015/01/01 test+ (acct:one) 1+++File: hledger.info, Node: register, Next: register-match, Prev: print-unique, Up: COMMANDS++11.24 register+==============++register, reg+Show postings and their running total.++ The register command displays matched postings, across all accounts,+in date order, with their running total or running historical balance.+(See also the `aregister' command, which shows matched transactions in a+specific account.)++ register normally shows line per posting, but note that+multi-commodity amounts will occupy multiple lines (one line per+commodity).++ It is typically used with a query selecting a particular account, to+see that account's activity:+++$ hledger register checking+2008/01/01 income assets:bank:checking $1 $1+2008/06/01 gift assets:bank:checking $1 $2+2008/06/02 save assets:bank:checking $-1 $1+2008/12/31 pay off assets:bank:checking $-1 0++ With -date2, it shows and sorts by secondary date instead.++ The `--historical'/`-H' flag adds the balance from any undisplayed+prior postings to the running total. This is useful when you want to+see only recent activity, with a historically accurate running balance:+++$ hledger register checking -b 2008/6 --historical+2008/06/01 gift assets:bank:checking $1 $2+2008/06/02 save assets:bank:checking $-1 $1+2008/12/31 pay off assets:bank:checking $-1 0++ The `--depth' option limits the amount of sub-account detail+displayed.++ The `--average'/`-A' flag shows the running average posting amount+instead of the running total (so, the final number displayed is the+average for the whole report period). This flag implies `--empty' (see+below). It is affected by `--historical'. It works best when showing+just one account and one commodity.++ The `--related'/`-r' flag shows the _other_ postings in the+transactions of the postings which would normally be shown.++ The `--invert' flag negates all amounts. For example, it can be used+on an income account where amounts are normally displayed as negative+numbers. It's also useful to show postings on the checking account+together with the related account:+++$ hledger register --related --invert assets:checking++ With a reporting interval, register shows summary postings, one per+interval, aggregating the postings to each account:+++$ hledger register --monthly income+2008/01 income:salary $-1 $-1+2008/06 income:gifts $-1 $-2++ Periods with no activity, and summary postings with a zero amount,+are not shown by default; use the `--empty'/`-E' flag to see them:+++$ hledger register --monthly income -E+2008/01 income:salary $-1 $-1+2008/02 0 $-1+2008/03 0 $-1+2008/04 0 $-1+2008/05 0 $-1+2008/06 income:gifts $-1 $-2+2008/07 0 $-2+2008/08 0 $-2+2008/09 0 $-2+2008/10 0 $-2+2008/11 0 $-2+2008/12 0 $-2++ Often, you'll want to see just one line per interval. The `--depth'+option helps with this, causing subaccounts to be aggregated:+++$ hledger register --monthly assets --depth 1h+2008/01 assets $1 $1+2008/06 assets $-1 0+2008/12 assets $-1 $-1++ Note when using report intervals, if you specify start/end dates+these will be adjusted outward if necessary to contain a whole number of+intervals. This ensures that the first and last intervals are full+length and comparable to the others in the report.++* Menu:++* Custom register output::+++File: hledger.info, Node: Custom register output, Up: register++11.24.1 Custom register output+------------------------------++register uses the full terminal width by default, except on windows. You+can override this by setting the `COLUMNS' environment variable (not a+bash shell variable) or by using the `--width'/`-w' option.++ The description and account columns normally share the space equally+(about half of (width - 40) each). You can adjust this by adding a+description width as part of -width's argument, comma-separated:+`--width W,D' . Here's a diagram (won't display correctly in -help):+++<--------------------------------- width (W) ---------------------------------->+date (10) description (D) account (W-41-D) amount (12) balance (12)+DDDDDDDDDD dddddddddddddddddddd aaaaaaaaaaaaaaaaaaa AAAAAAAAAAAA AAAAAAAAAAAA++ and some examples:+++$ hledger reg # use terminal width (or 80 on windows)+$ hledger reg -w 100 # use width 100+$ COLUMNS=100 hledger reg # set with one-time environment variable+$ export COLUMNS=100; hledger reg # set till session end (or window resize)+$ hledger reg -w 100,40 # set overall width 100, description width 40+$ hledger reg -w $COLUMNS,40 # use terminal width, & description width 40++ This command also supports the output destination and output format+options The output formats supported are `txt', `csv', and+(experimental) `json'.+++File: hledger.info, Node: register-match, Next: rewrite, Prev: register, Up: COMMANDS++11.25 register-match+====================++register-match+Print the one posting whose transaction description is closest to DESC,+in the style of the register command. If there are multiple equally good+matches, it shows the most recent. Query options (options, not+arguments) can be used to restrict the search space. Helps+ledger-autosync detect already-seen transactions when importing.+++File: hledger.info, Node: rewrite, Next: roi, Prev: register-match, Up: COMMANDS++11.26 rewrite+=============++rewrite+Print all transactions, rewriting the postings of matched transactions.+For now the only rewrite available is adding new postings, like print+-auto.++ This is a start at a generic rewriter of transaction entries. It+reads the default journal and prints the transactions, like print, but+adds one or more specified postings to any transactions matching QUERY.+The posting amounts can be fixed, or a multiplier of the existing+transaction's first posting amount.++ Examples:+++$ hledger-rewrite.hs ^income --add-posting '(liabilities:tax) *.33 ; income tax' --add-posting '(reserve:gifts) $100'+$ hledger-rewrite.hs expenses:gifts --add-posting '(reserve:gifts) *-1"'+$ hledger-rewrite.hs -f rewrites.hledger++ rewrites.hledger may consist of entries like:+++= ^income amt:<0 date:2017+ (liabilities:tax) *0.33 ; tax on income+ (reserve:grocery) *0.25 ; reserve 25% for grocery+ (reserve:) *0.25 ; reserve 25% for grocery++ Note the single quotes to protect the dollar sign from bash, and the+two spaces between account and amount.++ More:+++$ hledger rewrite -- [QUERY] --add-posting "ACCT AMTEXPR" ...+$ hledger rewrite -- ^income --add-posting '(liabilities:tax) *.33'+$ hledger rewrite -- expenses:gifts --add-posting '(budget:gifts) *-1"'+$ hledger rewrite -- ^income --add-posting '(budget:foreign currency) *0.25 JPY; diversify'++ Argument for `--add-posting' option is a usual posting of+transaction with an exception for amount specification. More precisely,+you can use `'*'' (star symbol) before the amount to indicate that that+this is a factor for an amount of original matched posting. If the+amount includes a commodity name, the new posting amount will be in the+new commodity; otherwise, it will be in the matched posting amount's+commodity.++* Menu:++* Re-write rules in a file::+* Diff output format::+* rewrite vs print --auto::+++File: hledger.info, Node: Re-write rules in a file, Next: Diff output format, Up: rewrite++11.26.1 Re-write rules in a file+--------------------------------++During the run this tool will execute so called "Automated Transactions"+found in any journal it process. I.e instead of specifying this+operations in command line you can put them in a journal file.+++$ rewrite-rules.journal++ Make contents look like this:+++= ^income+ (liabilities:tax) *.33++= expenses:gifts+ budget:gifts *-1+ assets:budget *1++ Note that `'='' (equality symbol) that is used instead of date in+transactions you usually write. It indicates the query by which you want+to match the posting to add new ones.+++$ hledger rewrite -- -f input.journal -f rewrite-rules.journal > rewritten-tidy-output.journal++ This is something similar to the commands pipeline:+++$ hledger rewrite -- -f input.journal '^income' --add-posting '(liabilities:tax) *.33' \+ | hledger rewrite -- -f - expenses:gifts --add-posting 'budget:gifts *-1' \+ --add-posting 'assets:budget *1' \+ > rewritten-tidy-output.journal++ It is important to understand that relative order of such entries in+journal is important. You can re-use result of previously added+postings.+++File: hledger.info, Node: Diff output format, Next: rewrite vs print --auto, Prev: Re-write rules in a file, Up: rewrite++11.26.2 Diff output format+--------------------------++To use this tool for batch modification of your journal files you may+find useful output in form of unified diff.+++$ hledger rewrite -- --diff -f examples/sample.journal '^income' --add-posting '(liabilities:tax) *.33'++ Output might look like:+++--- /tmp/examples/sample.journal++++ /tmp/examples/sample.journal+@@ -18,3 +18,4 @@+ 2008/01/01 income+- assets:bank:checking $1++ assets:bank:checking $1+ income:salary++ (liabilities:tax) 0+@@ -22,3 +23,4 @@+ 2008/06/01 gift+- assets:bank:checking $1++ assets:bank:checking $1+ income:gifts++ (liabilities:tax) 0++ If you'll pass this through `patch' tool you'll get transactions+containing the posting that matches your query be updated. Note that+multiple files might be update according to list of input files+specified via `--file' options and `include' directives inside of these+files.++ Be careful. Whole transaction being re-formatted in a style of output+from `hledger print'.++ See also:++ https://github.com/simonmichael/hledger/issues/99+++File: hledger.info, Node: rewrite vs print --auto, Prev: Diff output format, Up: rewrite++11.26.3 rewrite vs. print -auto+-------------------------------++This command predates print -auto, and currently does much the same+thing, but with these differences:++ * with multiple files, rewrite lets rules in any file affect all+ other files. print -auto uses standard directive scoping; rules+ affect only child files.++ * rewrite's query limits which transactions can be rewritten; all are+ printed. print -auto's query limits which transactions are printed.++ * rewrite applies rules specified on command line or in the journal.+ print -auto applies rules specified in the journal.++++File: hledger.info, Node: roi, Next: stats, Prev: rewrite, Up: COMMANDS++11.27 roi+=========++roi+Shows the time-weighted (TWR) and money-weighted (IRR) rate of return on+your investments.++ At a minimum, you need to supply a query (which could be just an+account name) to select your investment(s) with `--inv', and another+query to identify your profit and loss transactions with `--pnl'.++ If you do not record changes in the value of your investment+manually, or do not require computation of time-weighted return (TWR),+`--pnl' could be an empty query (`--pnl ""' or `--pnl STR' where `STR'+does not match any of your accounts).++ This command will compute and display the internalized rate of return+(IRR) and time-weighted rate of return (TWR) for your investments for+the time period requested. Both rates of return are annualized before+display, regardless of the length of reporting interval.++ Price directives will be taken into account if you supply appropriate+`--cost' or `--value' flags (see VALUATION).++ Note, in some cases this report can fail, for these reasons:++ * Error (NotBracketed): No solution for Internal Rate of Return+ (IRR). Possible causes: IRR is huge (>1000000%), balance of+ investment becomes negative at some point in time.++ * Error (SearchFailed): Failed to find solution for Internal Rate of+ Return (IRR). Either search does not converge to a solution, or+ converges too slowly.++ Examples:++ * Using roi to compute total return of investment in stocks:+ https://github.com/simonmichael/hledger/blob/master/examples/roi-unrealised.ledger++ * Cookbook -> Return on Investment+++* Menu:++* Semantics of --inv and --pnl::+* IRR and TWR explained::+++File: hledger.info, Node: Semantics of --inv and --pnl, Next: IRR and TWR explained, Up: roi++11.27.1 Semantics of `--inv' and `--pnl'+----------------------------------------++Query supplied to `--inv' has to match all transactions that are+related to your investment. Transactions not matching `--inv' will be+ignored.++ In these transactions, ROI will conside postings that match `--inv'+to be "investment postings" and other postings (not matching `--inv')+will be sorted into two categories: "cash flow" and "profit and loss",+as ROI needs to know which part of the investment value is your+contributions and which is due to the return on investment.++ * "Cash flow" is depositing or withdrawing money, buying or selling+ assets, or otherwise converting between your investment commodity+ and any other commodity. Example:+++ 2019-01-01 Investing in Snake Oil+ assets:cash -$100+ investment:snake oil++ 2020-01-01 Selling my Snake Oil+ assets:cash $10+ investment:snake oil = 0++ * "Profit and loss" is change in the value of your investment:+++ 2019-06-01 Snake Oil falls in value+ investment:snake oil = $57+ equity:unrealized profit or loss+++ All non-investment postings are assumed to be "cash flow", unless+they match `--pnl' query. Changes in value of your investment due to+"profit and loss" postings will be considered as part of your investment+return.++ Example: if you use `--inv snake --pnl equity:unrealized', then+postings in the example below would be classifed as:+++2019-01-01 Snake Oil #1+ assets:cash -$100 ; cash flow posting+ investment:snake oil ; investment posting++2019-03-01 Snake Oil #2+ equity:unrealized pnl -$100 ; profit and loss posting+ snake oil ; investment posting++2019-07-01 Snake Oil #3+ equity:unrealized pnl ; profit and loss posting+ cash -$100 ; cash flow posting+ snake oil $50 ; investment posting+++File: hledger.info, Node: IRR and TWR explained, Prev: Semantics of --inv and --pnl, Up: roi++11.27.2 IRR and TWR explained+-----------------------------++"ROI" stands for "return on investment". Traditionally this was computed+as a difference between current value of investment and its initial+value, expressed in percentage of the initial value.++ However, this approach is only practical in simple cases, where+investments receives no in-flows or out-flows of money, and where rate+of growth is fixed over time. For more complex scenarios you need+different ways to compute rate of return, and this command implements+two of them: IRR and TWR.++ Internal rate of return, or "IRR" (also called "money-weighted rate+of return") takes into account effects of in-flows and out-flows.+Naively, if you are withdrawing from your investment, your future gains+would be smaller (in absolute numbers), and will be a smaller+percentage of your initial investment, and if you are adding to your+investment, you will receive bigger absolute gains (but probably at the+same rate of return). IRR is a way to compute rate of return for each+period between in-flow or out-flow of money, and then combine them in a+way that gives you a compound annual rate of return that investment is+expected to generate.++ As mentioned before, in-flows and out-flows would be any cash that+you personally put in or withdraw, and for the "roi" command, these are+the postings that match the query in the`--inv' argument and NOT match+the query in the`--pnl' argument.++ If you manually record changes in the value of your investment as+transactions that balance them against "profit and loss" (or "unrealized+gains") account or use price directives, then in order for IRR to+compute the precise effect of your in-flows and out-flows on the rate of+return, you will need to record the value of your investement on or+close to the days when in- or out-flows occur.++ In technical terms, IRR uses the same approach as computation of net+present value, and tries to find a discount rate that makes net present+value of all the cash flows of your investment to add up to zero. This+could be hard to wrap your head around, especially if you haven't done+discounted cash flow analysis before. Implementation of IRR in hledger+should produce results that match the `XIRR' formula in Excel.++ Second way to compute rate of return that `roi' command implements+is called "time-weighted rate of return" or "TWR". Like IRR, it will+also break the history of your investment into periods between in-flows,+out-flows and value changes, to compute rate of return per each period+and then a compound rate of return. However, internal workings of TWR+are quite different.++ TWR represents your investment as an imaginary "unit fund" where+in-flows/ out-flows lead to buying or selling "units" of your investment+and changes in its value change the value of "investment unit". Change+in "unit price" over the reporting period gives you rate of return of+your investment.++ References: * Explanation of rate of return * Explanation of IRR *+Explanation of TWR * Examples of computing IRR and TWR and discussion of+the limitations of both metrics+++File: hledger.info, Node: stats, Next: tags, Prev: roi, Up: COMMANDS++11.28 stats+===========++stats+Show some journal statistics.++ The stats command displays summary information for the whole+journal, or a matched part of it. With a reporting interval, it shows a+report for each report period.++ Example:+++$ hledger stats+Main journal file : /src/hledger/examples/sample.journal+Included journal files :+Transactions span : 2008-01-01 to 2009-01-01 (366 days)+Last transaction : 2008-12-31 (2333 days ago)+Transactions : 5 (0.0 per day)+Transactions last 30 days: 0 (0.0 per day)+Transactions last 7 days : 0 (0.0 per day)+Payees/descriptions : 5+Accounts : 8 (depth 3)+Commodities : 1 ($)+Market prices : 12 ($)++ This command also supports output destination and output format+selection.+++File: hledger.info, Node: tags, Next: test, Prev: stats, Up: COMMANDS++11.29 tags+==========++tags+List the unique tag names used in the journal. With a TAGREGEX argument,+only tag names matching the regular expression (case insensitive) are+shown. With QUERY arguments, only transactions matching the query are+considered.++ With the -values flag, the tags' unique values are listed instead.++ With -parsed flag, all tags or values are shown in the order they are+parsed from the input data, including duplicates.++ With -E/-empty, any blank/empty values will also be shown, otherwise+they are omitted.+++File: hledger.info, Node: test, Next: About add-on commands, Prev: tags, Up: COMMANDS++11.30 test+==========++test+Run built-in unit tests.++ This command runs the unit tests built in to hledger and hledger-lib,+printing the results on stdout. If any test fails, the exit code will be+non-zero.++ This is mainly used by hledger developers, but you can also use it to+sanity-check the installed hledger executable on your platform. All+tests are expected to pass - if you ever see a failure, please report as+a bug!++ This command also accepts tasty test runner options, written after a+- (double hyphen). Eg to run only the tests in Hledger.Data.Amount, with+ANSI colour codes disabled:+++$ hledger test -- -pData.Amount --color=never++ For help on these, see https://github.com/feuerbach/tasty#options+(`-- --help' currently doesn't show them).+++File: hledger.info, Node: About add-on commands, Prev: test, Up: COMMANDS++11.31 About add-on commands+===========================++Add-on commands are programs or scripts in your PATH++ * whose name starts with `hledger-'++ * whose name ends with a recognised file extension:+ `.bat',`.com',`.exe', `.hs',`.lhs',`.pl',`.py',`.rb',`.rkt',`.sh'+ or none++ * and (on unix, mac) which are executable by the current user.++ Add-ons are a relatively easy way to add local features or experiment+with new ideas. They can be written in any language, but haskell scripts+have a big advantage: they can use the same hledger library functions+that built-in commands use for command-line options, parsing and+reporting. Some experimental/example add-on scripts can be found in the+hledger repo's bin/ directory.++ Note in a hledger command line, add-on command flags must have a+double dash (`--') preceding them. Eg you must write:+++$ hledger web -- --serve++ and not:+++$ hledger web --serve++ (because the `--serve' flag belongs to `hledger-web', not `hledger').++ The `-h/--help' and `--version' flags don't require `--'.++ If you have any trouble with this, remember you can always run the+add-on program directly, eg:+++$ hledger-web --serve+++File: hledger.info, Node: JOURNAL FORMAT, Next: CSV FORMAT, Prev: COMMANDS, Up: Top++12 JOURNAL FORMAT+*****************++hledger's default file format, representing a General Journal.++ hledger's usual data source is a plain text file containing journal+entries in hledger journal format. This file represents a standard+accounting general journal. I use file names ending in `.journal', but+that's not required. 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.++ hledger's journal format is a compatible subset, mostly, of ledger's+journal format, so hledger can work with compatible ledger journal files+as well. It's safe, and encouraged, to run both hledger and ledger on+the same journal file, eg to validate the results you're getting.++ You can use hledger without learning any more about this file; just+use the add or web or import commands to create and update it.++ Many users, though, edit the journal file with a text editor, and+track changes with a version control system such as git. Editor addons+such as ledger-mode or hledger-mode for Emacs, vim-ledger for Vim, and+hledger-vscode for Visual Studio Code, make this easier, adding colour,+formatting, tab completion, and useful commands. See Editor+configuration at hledger.org for the full list.++ Here's a description of each part of the file format (and hledger's+data model). These are mostly in the order you'll use them, but in some+cases related concepts have been grouped together for easy reference, or+linked before they are introduced, so feel free to skip over anything+that looks unnecessary right now.++* Menu:++* Transactions::+* Dates::+* Status::+* Description::+* Comments::+* Tags::+* Postings::+* Account names::+* Amounts::+* Transaction prices::+* Lot prices lot dates::+* Balance assertions::+* Balance assignments::+* Directives::+* Directives and multiple files::+* Comment blocks::+* Including other files::+* Default year::+* Declaring payees::+* Declaring commodities::+* Default commodity::+* Declaring market prices::+* Declaring accounts::+* Rewriting accounts::+* Default parent account::+* Periodic transactions::+* Auto postings::+++File: hledger.info, Node: Transactions, Next: Dates, Up: JOURNAL FORMAT++12.1 Transactions+=================++Transactions are the main unit of information in a journal file. They+represent events, typically a movement of some quantity of commodities+between two or more named accounts.++ Each transaction is recorded as a journal entry, beginning with a+simple date in column 0. This can be followed by any of the following+optional fields, separated by spaces:++ * a status character (empty, `!', or `*')++ * a code (any short number or text, enclosed in parentheses)++ * a description (any remaining text until end of line or a semicolon)++ * a comment (any remaining text following a semicolon until end of+ line, and any following indented lines beginning with a semicolon)++ * 0 or more indented _posting_ lines, describing what was transferred+ and the accounts involved (indented comment lines are also+ allowed, but not blank lines or non-indented lines).++ Here's a simple journal file containing one transaction:+++2008/01/01 income+ assets:bank:checking $1+ income:salary $-1+++File: hledger.info, Node: Dates, Next: Status, Prev: Transactions, Up: JOURNAL FORMAT++12.2 Dates+==========++* Menu:++* Simple dates::+* Secondary dates::+* Posting dates::+++File: hledger.info, Node: Simple dates, Next: Secondary dates, Up: Dates++12.2.1 Simple dates+-------------------++Dates in the journal file use _simple dates_ format: `YYYY-MM-DD' or+`YYYY/MM/DD' or `YYYY.MM.DD', with leading zeros optional. The year may+be omitted, in which case it will be inferred from the context: the+current transaction, the default year set with a default year+directive, or the current date when the command is run. Some examples:+`2010-01-31', `2010/01/31', `2010.1.31', `1/31'.++ (The UI also accepts simple dates, as well as the more flexible smart+dates documented in the hledger manual.)+++File: hledger.info, Node: Secondary dates, Next: Posting dates, Prev: Simple dates, Up: Dates++12.2.2 Secondary dates+----------------------++Real-life transactions sometimes involve more than one date - eg the+date you write a cheque, and the date it clears in your bank. When you+want to model this, for more accurate daily balances, you can specify+individual posting dates.++ Or, you can use the older _secondary date_ feature (Ledger calls it+auxiliary date or effective date). Note: we support this for+compatibility, but I usually recommend avoiding this feature; posting+dates are almost always clearer and simpler.++ A secondary date is written after the primary date, following an+equals sign. If the year is omitted, the primary date's year is+assumed. When running reports, the primary (left) date is used by+default, but with the `--date2' flag (or `--aux-date' or `--effective'),+the secondary (right) date will be used instead.++ The meaning of secondary dates is up to you, but it's best to follow+a consistent rule. Eg "primary = the bank's clearing date, secondary =+date the transaction was initiated, if different", as shown here:+++2010/2/23=2/19 movie ticket+ expenses:cinema $10+ assets:checking+++$ hledger register checking+2010-02-23 movie ticket assets:checking $-10 $-10+++$ hledger register checking --date2+2010-02-19 movie ticket assets:checking $-10 $-10+++File: hledger.info, Node: Posting dates, Prev: Secondary dates, Up: Dates++12.2.3 Posting dates+--------------------++You can give individual postings a different date from their parent+transaction, by adding a posting comment containing a tag (see below)+like `date:DATE'. 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:+++2015/5/30+ expenses:food $10 ; food purchased on saturday 5/30+ assets:checking ; bank cleared it on monday, date:6/1+++$ hledger -f t.j register food+2015-05-30 expenses:food $10 $10+++$ hledger -f t.j register checking+2015-06-01 assets:checking $-10 $-10++ DATE should be a simple date; if the year is not specified it will+use the year of the transaction's date. You can set the secondary date+similarly, with `date2:DATE2'. The `date:' or `date2:' tags must have a+valid simple date value if they are present, eg a `date:' tag with no+value is not allowed.++ Ledger's earlier, more compact bracketed date syntax is also+supported: `[DATE]', `[DATE=DATE2]' or `[=DATE2]'. hledger will attempt+to parse any square-bracketed sequence of the `0123456789/-.='+characters in this way. With this syntax, DATE infers its year from the+transaction and DATE2 infers its year from DATE.+++File: hledger.info, Node: Status, Next: Description, Prev: Dates, Up: JOURNAL FORMAT++12.3 Status+===========++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:++mark status+----------------- + unmarked+`!' pending+`*' cleared++ When reporting, you can filter by status with the `-U/--unmarked',+`-P/--pending', and `-C/--cleared' flags; or the `status:', `status:!',+and `status:*' queries; or the U, P, C keys in hledger-ui.++ Note, in Ledger and in older versions of hledger, the "unmarked"+state is called "uncleared". As of hledger 1.3 we have renamed it to+unmarked for clarity.++ To replicate Ledger and old hledger's behaviour of also matching+pending, combine -U and -P.++ Status marks are optional, but can be helpful eg for reconciling with+real-world accounts. Some editor modes provide highlighting and+shortcuts for working with status. Eg in Emacs ledger-mode, you can+toggle transaction status with C-c C-e, or posting status with C-c C-c.++ What "uncleared", "pending", and "cleared" actually mean is up to+you. Here's one suggestion:++status meaning+-------------------------------------------------------------------------- +uncleared recorded but not yet reconciled; needs review+pending tentatively reconciled (if needed, eg during a big+ reconciliation)+cleared complete, reconciled as far as possible, and considered+ correct++ With this scheme, you would use `-PC' to see the current balance at+your bank, `-U' to see things which will probably hit your bank soon+(like uncashed checks), and no flags to see the most up-to-date state+of your finances.+++File: hledger.info, Node: Description, Next: Comments, Prev: Status, Up: JOURNAL FORMAT++12.4 Description+================++A transaction's description is the rest of the line following the date+and status mark (or until a comment begins). Sometimes called the+"narration" in traditional bookkeeping, it can be used for whatever you+wish, or left blank. Transaction descriptions can be queried, unlike+comments.++* Menu:++* Payee and note::+++File: hledger.info, Node: Payee and note, Up: Description++12.4.1 Payee and note+---------------------++You can optionally include a `|' (pipe) character in descriptions to+subdivide the description into separate fields for payee/payer name on+the left (up to the first `|') and an additional note field on the+right (after the first `|'). This may be worthwhile if you need to do+more precise querying and pivoting by payee or by note.+++File: hledger.info, Node: Comments, Next: Tags, Prev: Description, Up: JOURNAL FORMAT++12.5 Comments+=============++Lines in the journal beginning with a semicolon (`;') or hash (`#') or+star (`*') 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.)++ 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.+Transaction and posting comments must begin with a semicolon (`;').++ Some examples:+++# a file comment+; another file comment+* also a file comment, useful in org/orgstruct mode++comment+A multiline file comment, which continues+until a line containing just "end comment"+(or end of file).+end comment++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)++ You can also comment larger regions of a file using `comment' and+`end comment' directives.+++File: hledger.info, Node: Tags, Next: Postings, Prev: Comments, Up: JOURNAL FORMAT++12.6 Tags+=========++Tags are a way to add extra labels or labelled data to postings and+transactions, which you can then search or pivot on.++ A simple tag is a word (which may contain hyphens) followed by a full+colon, written inside a transaction or posting comment line:+++2017/1/16 bought groceries ; sometag:++ 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:+++ expenses:food $10 ; a-posting-tag: the tag value++ Note this means hledger's tag values can not contain commas or+newlines. Ending at commas means you can write multiple short tags on+one line, comma separated:+++ assets:checking ; a comment containing tag1:, tag2: some value ...++ Here,++ * "`a comment containing'" is just comment text, not a tag++ * "`tag1'" is a tag with no value++ * "`tag2'" is another tag, whose value is "`some value ...'"++ Tags in a transaction comment affect the transaction and all of its+postings, while tags in a posting comment affect only that posting. For+example, the following transaction has three tags (`A', `TAG2',+`third-tag') and the posting has four (those plus `posting-tag'):+++1/1 a transaction ; A:, TAG2:+ ; third-tag: a third transaction tag, <- with a value+ (a) $1 ; posting-tag:++ Tags are like Ledger's metadata feature, except hledger's tag values+are simple strings.+++File: hledger.info, Node: Postings, Next: Account names, Prev: Tags, Up: JOURNAL FORMAT++12.7 Postings+=============++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:++ * (optional) a status character (empty, `!', or `*'), followed by a+ space++ * (required) an account name (any text, optionally containing+ *single spaces*, until end of line or a double space)++ * (optional) *two or more spaces* or tabs followed by an amount.++ Positive amounts are being added to the account, negative amounts are+being removed.++ 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.++ Be sure to note the unusual two-space delimiter between account name+and amount. 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.++* Menu:++* Virtual postings::+++File: hledger.info, Node: Virtual postings, Up: Postings++12.7.1 Virtual postings+-----------------------++A posting with a parenthesised account name is called a _virtual+posting_ or _unbalanced posting_, which means it is exempt from the+usual rule that a transaction's postings must balance add up to zero.++ This is not part of double entry accounting, so you might choose to+avoid this feature. Or you can use it sparingly for certain special+cases where it can be convenient. Eg, you could set opening balances+without using a balancing equity account:+++1/1 opening balances+ (assets:checking) $1000+ (assets:savings) $2000++ A posting with a bracketed account name is called a _balanced+virtual posting_. The balanced virtual postings in a transaction must+add up to zero (separately from other postings). Eg:+++1/1 buy food with cash, update budget envelope subaccounts, & something else+ assets:cash $-10 ; <- these balance+ expenses:food $7 ; <-+ expenses:food $3 ; <-+ [assets:checking:budget:food] $-10 ; <- and these balance+ [assets:checking:available] $10 ; <-+ (something:else) $5 ; <- not required to balance++ Ordinary non-parenthesised, non-bracketed postings are called _real+postings_. You can exclude virtual postings from reports with the+`-R/--real' flag or `real:1' query.+++File: hledger.info, Node: Account names, Next: Amounts, Prev: Postings, Up: JOURNAL FORMAT++12.8 Account names+==================++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 five top-level+accounts: `assets', `liabilities', `revenue', `expenses', and `equity'.++ Account names may contain single spaces, eg: `assets:accounts+receivable'. Because of this, they must always be followed by *two or+more spaces* (or newline).++ Account names can be aliased.+++File: hledger.info, Node: Amounts, Next: Transaction prices, Prev: Account names, Up: JOURNAL FORMAT++12.9 Amounts+============++After the account name, there is usually an amount. (Important: between+account name and amount, there must be *two or more spaces*.)++ hledger's amount format is flexible, supporting several international+formats. Here are some examples. Amounts have a number (the "quantity"):+++1++ ..and usually a currency or commodity name (the "commodity"). This+is a symbol, word, or phrase, to the left or right of the quantity,+with or without a separating space:+++$1+4000 AAPL++ If the commodity name contains spaces, numbers, or punctuation, it+must be enclosed in double quotes:+++3 "no. 42 green apples"++ Amounts can be preceded by a minus sign (or a plus sign, though plus+is the default), The sign can be written before or after a left-side+commodity symbol:+++-$1+$-1++ One or more spaces between the sign and the number are acceptable+when parsing (but they won't be displayed in output):++++ $1+$- 1++ Scientific E notation is allowed:+++1E-6+EUR 1E3++* Menu:++* Decimal marks digit group marks::+* Commodity display style::+* Rounding::+++File: hledger.info, Node: Decimal marks digit group marks, Next: Commodity display style, Up: Amounts++12.9.1 Decimal marks, digit group marks+---------------------------------------++A decimal mark can be written as a period or a comma:+++1.23+1,23456780000009++ In the integer part of the quantity (left of the decimal mark),+groups of digits can optionally be separated by a "digit group mark" -+a space, comma, or period (different from the decimal mark):+++ $1,000,000.00+ EUR 2.000.000,00+INR 9,99,99,999.00+ 1 000 000.9455++ Note, a number containing a single digit group mark and no decimal+mark is ambiguous. Are these digit group marks or decimal marks ?+++1,000+1.000++ If you don't tell it otherwise, hledger will assume both of the above+are decimal marks, parsing both numbers as 1. To prevent confusion and+undetected typos, especially if your data contains digit group marks, we+recommend you explicitly declare the decimal mark (and optionally a+digit group mark), for each commodity, using `commodity' directives+(described below):+++# number formats for $, EUR, INR and the no-symbol commodity:+commodity $1,000.00+commodity EUR 1.000,00+commodity INR 9,99,99,999.00+commodity 1 000 000.9455++ Note, `commodity' directives declare both the number format for+parsing input, and the display style for showing output. For the former,+they are position-sensitive, affecting only following amounts, so+commodity directives should be at the top of your journal file. This is+discussed more on #793.+++File: hledger.info, Node: Commodity display style, Next: Rounding, Prev: Decimal marks digit group marks, Up: Amounts++12.9.2 Commodity display style+------------------------------++For the amounts in each commodity, hledger chooses a consistent display+style to use in most reports. (Except for price amounts, which are+always displayed as written). The display style is inferred as follows.++ First, if a default commodity is declared with `D', this commodity+and its style is applied to any no-symbol amounts in the journal.++ Then each commodity's style is inferred from one of the following, in+order of preference:++ * The commodity directive for that commodity (including the no-symbol+ commodity), if any.++ * The amounts in that commodity seen in the journal's transactions.+ (Posting amounts only; prices and periodic or auto rules are+ ignored, currently.)++ * The built-in fallback style, which looks like this: `$1000.00'.+ (Symbol on the left, period decimal mark, two decimal places.)++ A style is inferred from journal amounts as follows:++ * Use the general style (decimal mark, symbol placement) of the first+ amount++ * Use the first-seen digit group style (digit group mark, digit group+ sizes), if any++ * Use the maximum number of decimal places of all.++ Transaction price amounts don't affect the commodity display style+directly, but occasionally they can do so indirectly (eg when a+posting's amount is inferred using a transaction price). If you find+this causing problems, use a commodity directive to fix the display+style.++ To summarise: each commodity's amounts will be normalised to (a) the+style declared by a `commodity' directive, or (b) the style of the+first posting amount in the journal, with the first-seen digit group+style and the maximum-seen number of decimal places. So if your reports+are showing amounts in a way you don't like, eg with too many decimal+places, use a commodity directive. Some examples:+++# declare euro, dollar, bitcoin and no-symbol commodities and set their+# input number formats and output display styles:+commodity EUR 1.000,+commodity $1000.00+commodity 1000.00000000 BTC+commodity 1 000.+++File: hledger.info, Node: Rounding, Prev: Commodity display style, Up: Amounts++12.9.3 Rounding+---------------++Amounts are stored internally as decimal numbers with up to 255 decimal+places, and displayed with the number of decimal places specified by the+commodity display style. Note, hledger uses banker's rounding: it rounds+to the nearest even number, eg 0.5 displayed with zero decimal places is+"0"). (Guaranteed since hledger 1.17.1; in older versions this could+vary if hledger was built with Decimal < 0.5.1.)+++File: hledger.info, Node: Transaction prices, Next: Lot prices lot dates, Prev: Amounts, Up: JOURNAL FORMAT++12.10 Transaction prices+========================++Within a transaction, you can note an amount's price in another+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. 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.++ There are several ways to record a transaction price:++ 1. Write the price per unit, as `@ UNITPRICE' after the amount:+++ 2009/1/1+ assets:euros €100 @ $1.35 ; one hundred euros purchased at $1.35 each+ assets:dollars ; balancing amount is -$135.00++ 2. Write the total price, as `@@ TOTALPRICE' after the amount:+++ 2009/1/1+ assets:euros €100 @@ $135 ; one hundred euros purchased at $135 for the lot+ assets:dollars++ 3. Specify amounts for all postings, using exactly two commodities,+ and let hledger infer the price that balances the transaction:+++ 2009/1/1+ assets:euros €100 ; one hundred euros purchased+ assets:dollars $-135 ; for $135++ 4. Like 1, but the `@' is parenthesised, i.e. `(@)'; this is for+ compatibility with Ledger journals (Virtual posting costs), and is+ equivalent to 1 in hledger.++ 5. Like 2, but as in 4 the `@@' is parenthesised, i.e. `(@@)'; in+ hledger, this is equivalent to 2.+++ Use the `-B/--cost' flag to convert amounts to their transaction+price's commodity, if any. (mnemonic: "B" is from "cost Basis", as in+Ledger). Eg here is how -B affects the balance report for the example+above:+++$ hledger bal -N --flat+ $-135 assets:dollars+ €100 assets:euros+$ hledger bal -N --flat -B+ $-135 assets:dollars+ $135 assets:euros # <- the euros' cost++ Note -B is sensitive to the order of postings when a transaction+price is inferred: the inferred price will be in the commodity of the+last amount. So if example 3's postings are reversed, while the+transaction is equivalent, -B shows something different:+++2009/1/1+ assets:dollars $-135 ; 135 dollars sold+ assets:euros €100 ; for 100 euros+++$ hledger bal -N --flat -B+ €-100 assets:dollars # <- the dollars' selling price+ €100 assets:euros+++File: hledger.info, Node: Lot prices lot dates, Next: Balance assertions, Prev: Transaction prices, Up: JOURNAL FORMAT++12.11 Lot prices, lot dates+===========================++Ledger allows another kind of price, lot price (four variants:+`{UNITPRICE}', `{{TOTALPRICE}}', `{=FIXEDUNITPRICE}',+`{{=FIXEDTOTALPRICE}}'), and/or a lot date (`[DATE]') to be specified.+These are normally used to select a lot when selling investments.+hledger will parse these, for compatibility with Ledger journals, but+currently ignores them. A transaction price, lot price and/or lot date+may appear in any order, after the posting amount and before the+balance assertion if any.+++File: hledger.info, Node: Balance assertions, Next: Balance assignments, Prev: Lot prices lot dates, Up: JOURNAL FORMAT++12.12 Balance assertions+========================++hledger supports Ledger-style balance assertions in journal files. These+look like, for example, `= EXPECTEDBALANCE' following a posting's+amount. Eg here we assert the expected dollar balance in accounts a and+b after each posting:+++2013/1/1+ a $1 =$1+ b =$-1++2013/1/2+ a $1 =$2+ b $-1 =$-2++ 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+`-I/--ignore-assertions' flag, which can be useful for troubleshooting+or for reading Ledger files. (Note: this flag currently does not+disable balance assignments, below).++* Menu:++* Assertions and ordering::+* Assertions and included files::+* Assertions and multiple -f options::+* Assertions and commodities::+* Assertions and prices::+* Assertions and subaccounts::+* Assertions and virtual postings::+* Assertions and precision::+++File: hledger.info, Node: Assertions and ordering, Next: Assertions and included files, Up: Balance assertions++12.12.1 Assertions and ordering+-------------------------------++hledger sorts an account's postings and assertions first by date and+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.)++ So, hledger balance assertions keep working if you reorder+differently-dated transactions within the journal. But if you reorder+same-dated transactions or postings, assertions might break and require+updating. This order dependence does bring an advantage: precise control+over the order of postings and assertions within a day, so you can+assert intra-day balances.+++File: hledger.info, Node: Assertions and included files, Next: Assertions and multiple -f options, Prev: Assertions and ordering, Up: Balance assertions++12.12.2 Assertions and included files+-------------------------------------++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 across different files,+and you also want to assert the account's balance on the same day,+you'll have to put the assertion in the right file.+++File: hledger.info, Node: Assertions and multiple -f options, Next: Assertions and commodities, Prev: Assertions and included files, Up: Balance assertions++12.12.3 Assertions and multiple -f options+------------------------------------------++Balance assertions don't work well across files specified with multiple+-f options. Use include or concatenate the files instead.+++File: hledger.info, Node: Assertions and commodities, Next: Assertions and prices, Prev: Assertions and multiple -f options, Up: Balance assertions++12.12.4 Assertions and commodities+----------------------------------++The asserted balance must be a simple single-commodity amount, and in+fact the assertion checks only this commodity's balance within the+(possibly multi-commodity) account balance. This is how assertions work+in Ledger also. We could call this a "partial" balance assertion.++ To assert the balance of more than one commodity in an account, you+can write multiple postings, each asserting one commodity's balance.++ You can make a stronger "total" balance assertion by writing a double+equals sign (`== EXPECTEDBALANCE'). This asserts that there are no+other unasserted commodities in the account (or, that their balance is+0).+++2013/1/1+ a $1+ a 1€+ b $-1+ c -1€++2013/1/2 ; These assertions succeed+ a 0 = $1+ a 0 = 1€+ b 0 == $-1+ c 0 == -1€++2013/1/3 ; This assertion fails as 'a' also contains 1€+ a 0 == $1++ It's not yet possible to make a complete assertion about a balance+that has multiple commodities. One workaround is to isolate each+commodity into its own subaccount:+++2013/1/1+ a:usd $1+ a:euro 1€+ b++2013/1/2+ a 0 == 0+ a:usd 0 == $1+ a:euro 0 == 1€+++File: hledger.info, Node: Assertions and prices, Next: Assertions and subaccounts, Prev: Assertions and commodities, Up: Balance assertions++12.12.5 Assertions and prices+-----------------------------++Balance assertions ignore transaction prices, and should normally be+written without one:+++2019/1/1+ (a) $1 @ €1 = $1++ We do allow prices to be written there, however, and print shows+them, even though they don't affect whether the assertion passes or+fails. This is for backward compatibility (hledger's close command+used to generate balance assertions with prices), and because balance+_assignments_ do use them (see below).+++File: hledger.info, Node: Assertions and subaccounts, Next: Assertions and virtual postings, Prev: Assertions and prices, Up: Balance assertions++12.12.6 Assertions and subaccounts+----------------------------------++The balance assertions above (`=' and `==') do not count the balance+from subaccounts; they check the account's exclusive balance only. You+can assert the balance including subaccounts by writing `=*' or `==*',+eg:+++2019/1/1+ equity:opening balances+ checking:a 5+ checking:b 5+ checking 1 ==* 11+++File: hledger.info, Node: Assertions and virtual postings, Next: Assertions and precision, Prev: Assertions and subaccounts, Up: Balance assertions++12.12.7 Assertions and virtual postings+---------------------------------------++Balance assertions are checked against all postings, both real and+virtual. They are not affected by the `--real/-R' flag or `real:' query.+++File: hledger.info, Node: Assertions and precision, Prev: Assertions and virtual postings, Up: Balance assertions++12.12.8 Assertions and precision+--------------------------------++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.+++File: hledger.info, Node: Balance assignments, Next: Directives, Prev: Balance assertions, Up: JOURNAL FORMAT++12.13 Balance assignments+=========================++Ledger-style balance assignments are also supported. 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:+++; 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++ or when adjusting a balance to reality:+++; no cash left; update balance, record any untracked spending as a generic expense+2016/1/15+ assets:cash = $0+ expenses:misc++ The calculated amount depends on the account's balance in the+commodity at that point (which depends on the previously-dated postings+of the commodity to that account since the last balance assertion or+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.++* Menu:++* Balance assignments and prices::+++File: hledger.info, Node: Balance assignments and prices, Up: Balance assignments++12.13.1 Balance assignments and prices+--------------------------------------++A transaction price in a balance assignment will cause the calculated+amount to have that price attached:+++2019/1/1+ (a) = $1 @ €2+++$ hledger print --explicit+2019-01-01+ (a) $1 @ €2 = $1 @ €2+++File: hledger.info, Node: Directives, Next: Directives and multiple files, Prev: Balance assignments, Up: JOURNAL FORMAT++12.14 Directives+================++A directive is a line in the journal beginning with a special keyword,+that influences how the journal is processed. hledger's directives are+based on a subset of Ledger's, but there are many differences (and also+some differences between hledger versions).++ Directives' 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. Note part of this table is hidden when+viewed in a web browser - scroll it sideways to see more.++directiveend subdirectivespurpose can affect (as of+ directive 2018/06)+----------------------------------------------------------------------------- +`account' any document account names, all entries in all+ text declare account types & files, before or+ display order after+`alias' `end rewrite account names following entries+ aliases' until end of+ current file or+ end directive+`apply `end prepend a common parent to following entries+account' apply account names until end of+ account' current file or+ end directive+`comment'`end ignore part of journal following entries+ comment' until end of+ current file or+ end directive+`commodity' `format'declare a commodity and its number notation:+ number notation & display following entries+ style in that commodity+ in all files ;+ display style:+ amounts of that+ commodity in+ reports+`D' declare a commodity to be default commodity:+ used for commodityless following+ amounts, and its number commodityless+ notation & display style entries until end+ of current file;+ number notation:+ following entries+ in that commodity+ until end of+ current file;+ display style:+ amounts of that+ commodity in+ reports+`include' include entries/directives what the included+ from another file directives affect+[`payee'] declare a payee name following entries+ until end of+ current file+`P' declare a market price for a amounts of that+ commodity commodity in+ reports, when -V+ is used+`Y' declare a year for yearless following entries+ dates until end of+ current file+`=' declare an auto posting all entries in+ rule, adding postings to parent/current/child+ other transactions files (but not+ sibling files, see+ #1212)++ And some definitions:++subdirectiveoptional indented directive line immediately following a parent+ directive+number how to interpret numbers when parsing journal entries (the+notationidentity of the decimal separator character). (Currently each+ commodity can have its own notation, even in the same file.)+displayhow to display amounts of a commodity in reports (symbol side and+style spacing, digit groups, decimal separator, decimal places)+directivewhich entries and (when there are multiple files) which files are+scope affected by a directive++ 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.+++File: hledger.info, Node: Directives and multiple files, Next: Comment blocks, Prev: Directives, Up: JOURNAL FORMAT++12.15 Directives and multiple files+===================================++If you use multiple `-f'/`--file' options, or the `include' directive,+hledger will process multiple input files. But note that directives+which affect input (see above) typically last only until the end of the+file in which they occur.++ This may seem inconvenient, but it's intentional; it makes reports+stable and deterministic, independent of the order of input. Otherwise+you could see different numbers if you happened to write -f options in a+different order, or if you moved includes around while cleaning up your+files.++ It can be surprising though; for example, it means that `alias'+directives do not affect parent or sibling files (see below).+++File: hledger.info, Node: Comment blocks, Next: Including other files, Prev: Directives and multiple files, Up: JOURNAL FORMAT++12.16 Comment blocks+====================++A line containing just `comment' starts a commented region of the file,+and a line containing just `end comment' (or the end of the current+file) ends it. See also comments.+++File: hledger.info, Node: Including other files, Next: Default year, Prev: Comment blocks, Up: JOURNAL FORMAT++12.17 Including other files+===========================++You can pull in the content of additional files by writing an include+directive, like this:+++include FILEPATH++ Only journal files can include, and only journal, timeclock or+timedot files can be included (not CSV files, currently).++ If the file path does not begin with a slash, it is relative to the+current file's folder.++ A tilde means home directory, eg: `include ~/main.journal'.++ The path may contain glob patterns to match multiple files, eg:+`include *.journal'.++ There is limited support for recursive wildcards: `**/' (the slash+is required) matches 0 or more subdirectories. It's not super convenient+since you have to avoid include cycles and including directories, but+this can be done, eg: `include */**/*.journal'.++ The path may also be prefixed to force a specific file format,+overriding the file extension (as described in hledger.1 -> Input+files): `include timedot:~/notes/2020*.md'.+++File: hledger.info, Node: Default year, Next: Declaring payees, Prev: Including other files, Up: JOURNAL FORMAT++12.18 Default year+==================++You can set a default year to be used for subsequent dates which don't+specify a year. This is a line beginning with `Y' followed by the year.+Eg:+++Y2009 ; set default year to 2009++12/15 ; equivalent to 2009/12/15+ expenses 1+ assets++Y2010 ; change default year to 2010++2009/1/30 ; specifies the year, not affected+ expenses 1+ assets++1/31 ; equivalent to 2010/1/31+ expenses 1+ assets+++File: hledger.info, Node: Declaring payees, Next: Declaring commodities, Prev: Default year, Up: JOURNAL FORMAT++12.19 Declaring payees+======================++The `payee' directive can be used to declare a limited set of payees+which may appear in transaction descriptions. The "payees" check will+report an error if any transaction refers to a payee that has not been+declared. Eg:+++payee Whole Foods+++File: hledger.info, Node: Declaring commodities, Next: Default commodity, Prev: Declaring payees, Up: JOURNAL FORMAT++12.20 Declaring commodities+===========================++The `commodity' directive has several functions:++ 1. It declares commodities which may be used in the journal. This is+ currently not enforced, but can serve as documentation.++ 2. It declares what decimal mark character (period or comma) to+ expect when parsing input - useful to disambiguate international+ number formats in your data. (Without this, hledger will parse+ both `1,000' and `1.000' as 1).++ 3. It declares a commodity's display style in output - decimal and+ digit group marks, number of decimal places, symbol placement etc.+++ You are likely to run into one of the problems solved by commodity+directives, sooner or later, so it's a good idea to just always use them+to declare your commodities.++ A commodity directive is just the word `commodity' followed by an+amount. It may be written on a single line, like this:+++; commodity EXAMPLEAMOUNT++; 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++ or on multiple lines, using the "format" subdirective. (In this case+the commodity symbol appears twice and should be the same in both+places.):+++; commodity SYMBOL+; format EXAMPLEAMOUNT++; 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+ format INR 1,00,00,000.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.++ Note hledger normally uses banker's rounding, so 0.5 displayed with+zero decimal digits is "0". (More at Commodity display style.)++* Menu:++* Commodity error checking::+++File: hledger.info, Node: Commodity error checking, Up: Declaring commodities++12.20.1 Commodity error checking+--------------------------------++In strict mode, enabled with the `-s'/`--strict' flag, hledger will+report an error if a commodity symbol is used that has not been+declared by a `commodity' directive. This works similarly to account+error checking, see the notes there for more details.+++File: hledger.info, Node: Default commodity, Next: Declaring market prices, Prev: Declaring commodities, Up: JOURNAL FORMAT++12.21 Default commodity+=======================++The `D' directive sets a default commodity, to be used for amounts+without a commodity symbol (ie, plain numbers). This commodity will be+applied to all subsequent commodity-less amounts, or until the next `D'+directive. (Note, this is different from Ledger's `D'.)++ For compatibility/historical reasons, `D' also acts like a+`commodity' directive, setting the commodity's display style (for+output) and decimal mark (for parsing input). As with `commodity', the+amount must always be written with a decimal mark (period or comma).+If both directives are used, `commodity''s style takes precedence.++ The syntax is `D AMOUNT'. Eg:+++; commodity-less amounts should be treated as dollars+; (and displayed with the dollar sign on the left, thousands separators and two decimal places)+D $1,000.00++1/1+ a 5 ; <- commodity-less amount, parsed as $5 and displayed as $5.00+ b+++File: hledger.info, Node: Declaring market prices, Next: Declaring accounts, Prev: Default commodity, Up: JOURNAL FORMAT++12.22 Declaring market prices+=============================++The `P' directive declares a market price, which is an exchange rate+between two commodities on a certain date. (In Ledger, they are called+"historical prices".) These are often obtained from a stock exchange,+cryptocurrency exchange, or the foreign exchange market.++ Here is the format:+++P DATE COMMODITYA COMMODITYBAMOUNT++ * DATE is a simple date++ * COMMODITYA is the symbol of the commodity being priced++ * COMMODITYBAMOUNT is an amount (symbol and quantity) in a second+ commodity, giving the price in commodity B of one unit of+ commodity A.++ These two market price directives say that one euro was worth 1.35 US+dollars during 2009, and $1.40 from 2010 onward:+++P 2009/1/1 € $1.35+P 2010/1/1 € $1.40++ The `-V', `-X' and `--value' flags use these market prices to show+amount values in another commodity. See Valuation.+++File: hledger.info, Node: Declaring accounts, Next: Rewriting accounts, Prev: Declaring market prices, Up: JOURNAL FORMAT++12.23 Declaring accounts+========================++`account' directives can be used to declare accounts (ie, the places+that amounts are transferred from and to). Though not required, these+declarations can provide several benefits:++ * They can document your intended chart of accounts, providing a+ reference.++ * They can help hledger know your accounts' types (asset, liability,+ equity, revenue, expense), useful for reports like balancesheet and+ incomestatement.++ * They control account display order in reports, allowing+ non-alphabetic sorting (eg Revenues to appear above Expenses).++ * They can store extra information about accounts (account numbers,+ notes, etc.)++ * They help with account name completion in the add command,+ hledger-iadd, hledger-web, ledger-mode etc.++ * In strict mode, they restrict which accounts may be posted to by+ transactions, which helps detect typos.++ The simplest form is just the word `account' followed by a+hledger-style account name, eg this account directive declares the+`assets:bank:checking' account:+++account assets:bank:checking++* Menu:++* Account error checking::+* Account comments::+* Account subdirectives::+* Account types::+* Account display order::+++File: hledger.info, Node: Account error checking, Next: Account comments, Up: Declaring accounts++12.23.1 Account error checking+------------------------------++By default, accounts come into existence when a transaction references+them by name. This is convenient, but it means hledger can't warn you+when you mis-spell an account name in the journal. Usually you'll find+the error later, as an extra account in balance reports, or an incorrect+balance when reconciling.++ In strict mode, enabled with the `-s'/`--strict' flag, hledger will+report an error if any transaction uses an account name that has not+been declared by an account directive. Some notes:++ * The declaration is case-sensitive; transactions must use the+ correct account name capitalisation.++ * The account directive's scope is "whole file and below" (see+ directives). This means it affects all of the current file, and any+ files it includes, but not parent or sibling files. The position of+ account directives within the file does not matter, though it's+ usual to put them at the top.++ * Accounts can only be declared in `journal' files (but will affect+ included files in other formats).++ * It's currently not possible to declare "all possible subaccounts"+ with a wildcard; every account posted to must be declared.+++File: hledger.info, Node: Account comments, Next: Account subdirectives, Prev: Account error checking, Up: Declaring accounts++12.23.2 Account comments+------------------------++Comments, beginning with a semicolon, can be added:++ * on the same line, *after two or more spaces* (because ; is allowed+ in account names)++ * on the next lines, indented++ An example of both:+++account assets:bank:checking ; same-line comment, note 2+ spaces before ;+ ; next-line comment+ ; another with tag, acctno:12345 (not used yet)++ Same-line comments are not supported by Ledger, or hledger <1.13.+++File: hledger.info, Node: Account subdirectives, Next: Account types, Prev: Account comments, Up: Declaring accounts++12.23.3 Account subdirectives+-----------------------------++We also allow (and ignore) Ledger-style indented subdirectives, just for+compatibility.:+++account assets:bank:checking+ format blah blah ; <- subdirective, ignored++ Here is the full syntax of account directives:+++account ACCTNAME [ACCTTYPE] [;COMMENT]+ [;COMMENTS]+ [LEDGER-STYLE SUBDIRECTIVES, IGNORED]+++File: hledger.info, Node: Account types, Next: Account display order, Prev: Account subdirectives, Up: Declaring accounts++12.23.4 Account types+---------------------++hledger recognises five main types of account, corresponding to the+account classes in the accounting equation:++ `Asset', `Liability', `Equity', `Revenue', `Expense'.++ These account types are important for controlling which accounts+appear in the balancesheet, balancesheetequity, incomestatement reports+(and probably for other things in future).++ Additionally, we recognise the `Cash' type, which is also an+`Asset', and which causes accounts to appear in the cashflow report.+("Cash" here means liquid assets, eg bank balances but typically not+investments or receivables.)++* Menu:++* Declaring account types::+* Auto-detected account types::+* Interference from auto-detected account types::+* Old account type syntax::+++File: hledger.info, Node: Declaring account types, Next: Auto-detected account types, Up: Account types++12.23.4.1 Declaring account types+.................................++Generally, to make these reports work you should declare your top-level+accounts and their types, using account directives with `type:' tags.++ The tag's value should be one of: `Asset', `Liability', `Equity',+`Revenue', `Expense', `Cash', `A', `L', `E', `R', `X', `C' (all case+insensitive). The type is inherited by all subaccounts except where+they override it. Here's a complete example:+++account assets ; type: Asset+account assets:bank ; type: Cash+account assets:cash ; type: Cash+account liabilities ; type: Liability+account equity ; type: Equity+account revenues ; type: Revenue+account expenses ; type: Expense+++File: hledger.info, Node: Auto-detected account types, Next: Interference from auto-detected account types, Prev: Declaring account types, Up: Account types++12.23.4.2 Auto-detected account types+.....................................++If you happen to use common english top-level account names, you may not+need to declare account types, as they will be detected automatically+using the following rules:++If name matches regular account type+expression: is:+------------------------------------------------- +`^assets?(:|$)' `Asset'+`^(debts?|liabilit(y|ies))(:|$)' `Liability'+`^equity(:|$)' `Equity'+`^(income|revenue)s?(:|$)' `Revenue'+`^expenses?(:|$)' `Expense'++If account type is `Asset' and name does not contain account type+regular expression: is:+-------------------------------------------------------------------------- +`(investment|receivable|:A/R|:fixed)' `Cash'++ Even so, explicit declarations may be a good idea, for clarity and+predictability.+++File: hledger.info, Node: Interference from auto-detected account types, Next: Old account type syntax, Prev: Auto-detected account types, Up: Account types++12.23.4.3 Interference from auto-detected account types+.......................................................++If you assign any account type, it's a good idea to assign all of them,+to prevent any confusion from mixing declared and auto-detected types.+Although it's unlikely to happen in real life, here's an example: with+the following journal, `balancesheetequity' shows "liabilities" in both+Liabilities and Equity sections. Declaring another account as+`type:Liability' would fix it:+++account liabilities ; type:Equity++2020-01-01+ assets 1+ liabilities 1+ equity -2+++File: hledger.info, Node: Old account type syntax, Prev: Interference from auto-detected account types, Up: Account types++12.23.4.4 Old account type syntax+.................................++In some hledger journals you might instead see this old syntax (the+letters ALERX, separated from the account name by two or more spaces);+this is deprecated and may be removed soon:+++account assets A+account liabilities L+account equity E+account revenues R+account expenses X+++File: hledger.info, Node: Account display order, Prev: Account types, Up: Declaring accounts++12.23.5 Account display order+-----------------------------++Account directives also set the order in which accounts are displayed,+eg in reports, the hledger-ui accounts screen, and the hledger-web+sidebar. By default accounts are listed in alphabetical order. But if+you have these account directives in the journal:+++account assets+account liabilities+account equity+account revenues+account expenses++ you'll see those accounts displayed in declaration order, not+alphabetically:+++$ hledger accounts -1+assets+liabilities+equity+revenues+expenses++ Undeclared accounts, if any, are displayed last, in alphabetical+order.++ Note that sorting is done at each level of the account tree (within+each group of sibling accounts under the same parent). And currently,+this directive:+++account other:zoo++ would influence the position of `zoo' among `other''s subaccounts,+but not the position of `other' among the top-level accounts. This+means:++ * you will sometimes declare parent accounts (eg `account other'+ above) that you don't intend to post to, just to customize their+ display order++ * sibling accounts stay together (you couldn't display `x:y' in+ between `a:b' and `a:c').+++File: hledger.info, Node: Rewriting accounts, Next: Default parent account, Prev: Declaring accounts, Up: JOURNAL FORMAT++12.24 Rewriting accounts+========================++You can define account alias rules which rewrite your account names, or+parts of them, before generating reports. This can be useful for:++ * expanding shorthand account names to their full form, allowing+ easier data entry and a less verbose journal++ * adapting old journals to your current chart of accounts++ * experimenting with new account organisations, like a new hierarchy+ or combining two accounts into one++ * customising reports++ Account aliases also rewrite account names in account directives.+They do not affect account names being entered via hledger add or+hledger-web.++ See also Rewrite account names.++* Menu:++* Basic aliases::+* Regex aliases::+* Combining aliases::+* Aliases and multiple files::+* end aliases::+++File: hledger.info, Node: Basic aliases, Next: Regex aliases, Up: Rewriting accounts++12.24.1 Basic aliases+---------------------++To set an account alias, use the `alias' directive in your journal+file. This affects all subsequent journal entries in the current file or+its included files. The spaces around the = are optional:+++alias OLD = NEW++ Or, you can use the `--alias 'OLD=NEW'' option on the command line.+This affects all entries. It's useful for trying out aliases+interactively.++ OLD and NEW are case sensitive full account names. hledger will+replace any occurrence of the old account name with the new one.+Subaccounts are also affected. Eg:+++alias checking = assets:bank:wells fargo:checking+; rewrites "checking" to "assets:bank:wells fargo:checking", or "checking:a" to "assets:bank:wells fargo:checking:a"+++File: hledger.info, Node: Regex aliases, Next: Combining aliases, Prev: Basic aliases, Up: Rewriting accounts++12.24.2 Regex aliases+---------------------++There is also a more powerful variant that uses a regular expression,+indicated by the forward slashes:+++alias /REGEX/ = REPLACEMENT++ or `--alias '/REGEX/=REPLACEMENT''.++ REGEX is a case-insensitive regular expression. 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. Eg:+++alias /^(.+):bank:([^:]+):(.*)/ = \1:\2 \3+; rewrites "assets:bank:wells fargo:checking" to "assets:wells fargo checking"++ 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.+++File: hledger.info, Node: Combining aliases, Next: Aliases and multiple files, Prev: Regex aliases, Up: Rewriting accounts++12.24.3 Combining aliases+-------------------------++You can define as many aliases as you like, using journal directives+and/or command line options.++ 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.++ 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:++ 1. `alias' directives preceding the journal entry, most recently+ parsed first (ie, reading upward from the journal entry, bottom to+ top)++ 2. `--alias' options, in the order they appeared on the command line+ (left to right).++ In other words, for (an account name in) a given journal entry:++ * the nearest alias declaration before/above the entry is applied+ first++ * the next alias before/above that will be be applied next, and so on++ * aliases defined after/below the entry do not affect it.++ 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.++ In case of trouble, adding `--debug=6' to the command line will show+which aliases are being applied when.+++File: hledger.info, Node: Aliases and multiple files, Next: end aliases, Prev: Combining aliases, Up: Rewriting accounts++12.24.4 Aliases and multiple files+----------------------------------++As explained at Directives and multiple files, `alias' directives do+not affect parent or sibling files. Eg in this command,+++hledger -f a.aliases -f b.journal++ account aliases defined in a.aliases will not affect b.journal.+Including the aliases doesn't work either:+++include a.aliases++2020-01-01 ; not affected by a.aliases+ foo 1+ bar++ This means that account aliases should usually be declared at the+start of your top-most file, like this:+++alias foo=Foo+alias bar=Bar++2020-01-01 ; affected by aliases above+ foo 1+ bar++include c.journal ; also affected+++File: hledger.info, Node: end aliases, Prev: Aliases and multiple files, Up: Rewriting accounts++12.24.5 `end aliases'+---------------------++You can clear (forget) all currently defined aliases with the `end+aliases' directive:+++end aliases+++File: hledger.info, Node: Default parent account, Next: Periodic transactions, Prev: Rewriting accounts, Up: JOURNAL FORMAT++12.25 Default parent account+============================++You can specify a parent account which will be prepended to all accounts+within a section of the journal. Use the `apply account' and `end apply+account' directives like so:+++apply account home++2010/1/1+ food $10+ cash++end apply account++ which is equivalent to:+++2010/01/01+ home:food $10+ home:cash $-10++ If `end apply account' is omitted, the effect lasts to the end of+the file. Included files are also affected, eg:+++apply account business+include biz.journal+end apply account+apply account personal+include personal.journal++ Prior to hledger 1.0, legacy `account' and `end' spellings were also+supported.++ A default parent account also affects account directives. It does not+affect account names being entered via hledger add or hledger-web. If+account aliases are present, they are applied after the default parent+account.+++File: hledger.info, Node: Periodic transactions, Next: Auto postings, Prev: Default parent account, Up: JOURNAL FORMAT++12.26 Periodic transactions+===========================++Periodic transaction rules describe transactions that recur. They allow+hledger to generate temporary future transactions to help with+forecasting, so you don't have to write out each one in the journal, and+it's easy to try out different forecasts.++ Periodic transactions can be a little tricky, so before you use them,+read this whole section - or at least these tips:++ 1. Two spaces accidentally added or omitted will cause you trouble -+ read about this below.++ 2. For troubleshooting, show the generated transactions with `hledger+ print --forecast tag:generated' or `hledger register --forecast+ tag:generated'.++ 3. Forecasted transactions will begin only after the last+ non-forecasted transaction's date.++ 4. Forecasted transactions will end 6 months from today, by default.+ See below for the exact start/end rules.++ 5. period expressions can be tricky. Their documentation needs+ improvement, but is worth studying.++ 6. Some period expressions with a repeating interval must begin on a+ natural boundary of that interval. Eg in `weekly from DATE', DATE+ must be a monday. `~ weekly from 2019/10/1' (a tuesday) will give+ an error.++ 7. 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's a bit inconsistent with the above.) Eg: `~ every 10th+ day of month from 2020/01', which is equivalent to `~ every 10th+ day of month from 2020/01/01', will be adjusted to start on+ 2019/12/10.++ Periodic transaction rules also have a second meaning: they are used+to define budget goals, shown in budget reports.++* Menu:++* Periodic rule syntax::+* Two spaces between period expression and description!::+* Forecasting with periodic transactions::+* Budgeting with periodic transactions::+++File: hledger.info, Node: Periodic rule syntax, Next: Two spaces between period expression and description!, Up: Periodic transactions++12.26.1 Periodic rule syntax+----------------------------++A periodic transaction rule looks like a normal journal entry, with the+date replaced by a tilde (`~') followed by a period expression+(mnemonic: `~' looks like a recurring sine wave.):+++~ monthly+ expenses:rent $2000+ assets:bank:checking++ There is an additional constraint on the period expression: the start+date must fall on a natural boundary of the interval. Eg `monthly from+2018/1/1' is valid, but `monthly from 2018/1/15' is not.++ Partial or relative dates (M/D, D, tomorrow, last week) in the period+expression can work (useful or not). They will be relative to today's+date, unless a Y default year directive is in effect, in which case they+will be relative to Y/1/1.+++File: hledger.info, Node: Two spaces between period expression and description!, Next: Forecasting with periodic transactions, Prev: Periodic rule syntax, Up: Periodic transactions++12.26.2 Two spaces between period expression and description!+-------------------------------------------------------------++If the period expression is followed by a transaction description, these+must be separated by *two or more spaces*. This helps hledger know+where the period expression ends, so that descriptions can not+accidentally alter their meaning, as in this example:+++; 2 or more spaces needed here, so the period is not understood as "every 2 months in 2020"+; ||+; vv+~ every 2 months in 2020, we will review+ assets:bank:checking $1500+ income:acme inc++ So,++ * Do write two spaces between your period expression and your+ transaction description, if any.++ * Don't accidentally write two spaces in the middle of your period+ expression.+++File: hledger.info, Node: Forecasting with periodic transactions, Next: Budgeting with periodic transactions, Prev: Two spaces between period expression and description!, Up: Periodic transactions++12.26.3 Forecasting with periodic transactions+----------------------------------------------++The `--forecast' flag activates any periodic transaction rules in the+journal. They will generate temporary recurring transactions, which are+not saved in the journal, but will appear in all reports (eg print).+This can be useful for estimating balances into the future, or+experimenting with different scenarios. Or, it can be used as a data+entry aid: describe recurring transactions, and every so often copy the+output of `print --forecast' into the journal.++ These transactions will have an extra tag indicating which periodic+rule generated them: `generated-transaction:~ PERIODICEXPR'. And a+similar, hidden tag (beginning with an underscore) which, because it's+never displayed by print, can be used to match transactions generated+"just now": `_generated-transaction:~ PERIODICEXPR'.++ Periodic transactions are generated within some forecast period. By+default, this++ * begins on the later of+ * the report start date if specified with -b/-p/date:++ * the day after the latest normal (non-periodic) transaction in+ the journal, or today if there are no normal transactions.++ * ends on the report end date if specified with -e/-p/date:, or 6+ months (180 days) from today.++ This means that periodic transactions will begin only after the+latest recorded transaction. And a recorded transaction dated in the+future can prevent generation of periodic transactions. (You can avoid+that by writing the future transaction as a one-time periodic rule+instead - put tilde before the date, eg `~ YYYY-MM-DD ...').++ Or, you can set your own arbitrary "forecast period", which can+overlap recorded transactions, and need not be in the future, by+providing an option argument, like `--forecast=PERIODEXPR'. Note the+equals sign is required, a space won't work. PERIODEXPR is a period+expression, which can specify the start date, end date, or both, like+in a `date:' query. (See also hledger.1 -> Report start & end date).+Some examples: `--forecast=202001-202004', `--forecast=jan-',+`--forecast=2020'.+++File: hledger.info, Node: Budgeting with periodic transactions, Prev: Forecasting with periodic transactions, Up: Periodic transactions++12.26.4 Budgeting with periodic transactions+--------------------------------------------++With the `--budget' flag, currently supported by the balance 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.++ See also: Budgeting and Forecasting.+++File: hledger.info, Node: Auto postings, Prev: Periodic transactions, Up: JOURNAL FORMAT++12.27 Auto postings+===================++"Automated postings" or "auto postings" are extra postings which get+added automatically to transactions which match certain queries, defined+by "auto posting rules", when you use the `--auto' flag.++ An auto posting rule looks a bit like a transaction:+++= QUERY+ ACCOUNT AMOUNT+ ...+ ACCOUNT [AMOUNT]++ except the first line is an equals sign (mnemonic: `=' suggests+matching), followed by a query (which matches existing postings), and+each "posting" line describes a posting to be generated, and the posting+amounts can be:++ * a normal amount with a commodity symbol, eg `$2'. This will be used+ as-is.++ * a number, eg `2'. The commodity symbol (if any) from the matched+ posting will be added to this.++ * a numeric multiplier, eg `*2' (a star followed by a number N). The+ matched posting's amount (and total price, if any) will be+ multiplied by N.++ * a multiplier with a commodity symbol, eg `*$2' (a star, number N,+ and symbol S). The matched posting's amount will be multiplied by+ N, and its commodity symbol will be replaced with S.++ Any query term containing spaces must be enclosed in single or double+quotes, as on the command line. Eg, note the quotes around the second+query term below:+++= expenses:groceries 'expenses:dining out'+ (budget:funds:dining out) *-1++ Some examples:+++; every time I buy food, schedule a dollar donation+= expenses:food+ (liabilities:charity) $-1++; when I buy a gift, also deduct that amount from a budget envelope subaccount+= expenses:gifts+ assets:checking:gifts *-1+ assets:checking *1++2017/12/1+ expenses:food $10+ assets:checking++2017/12/14+ expenses:gifts $20+ assets:checking+++$ hledger print --auto+2017-12-01+ expenses:food $10+ assets:checking+ (liabilities:charity) $-1++2017-12-14+ expenses:gifts $20+ assets:checking+ assets:checking:gifts -$20+ assets:checking $20++* Menu:++* Auto postings and multiple files::+* Auto postings and dates::+* Auto postings and transaction balancing / inferred amounts / balance assertions::+* Auto posting tags::+++File: hledger.info, Node: Auto postings and multiple files, Next: Auto postings and dates, Up: Auto postings++12.27.1 Auto postings and multiple files+----------------------------------------++An auto posting rule can affect any transaction in the current file, or+in any parent file or child file. Note, currently it will not affect+sibling files (when multiple `-f'/`--file' are used - see #1212).+++File: hledger.info, Node: Auto postings and dates, Next: Auto postings and transaction balancing / inferred amounts / balance assertions, Prev: Auto postings and multiple files, Up: Auto postings++12.27.2 Auto postings and dates+-------------------------------++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.+++File: hledger.info, Node: Auto postings and transaction balancing / inferred amounts / balance assertions, Next: Auto posting tags, Prev: Auto postings and dates, Up: Auto postings++12.27.3 Auto postings and transaction balancing / inferred amounts /+--------------------------------------------------------------------++balance assertions++ Currently, auto postings are added:++ * after missing amounts are inferred, and transactions are checked+ for balancedness,++ * but before balance assertions are checked.++ 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.+++File: hledger.info, Node: Auto posting tags, Prev: Auto postings and transaction balancing / inferred amounts / balance assertions, Up: Auto postings++12.27.4 Auto posting tags+-------------------------++Automated postings will have some extra tags:++ * `generated-posting:= QUERY' - shows this was generated by an auto+ posting rule, and the query++ * `_generated-posting:= QUERY' - a hidden tag, which does not appear+ in hledger's output. This can be used to match postings generated+ "just now", rather than generated in the past and saved to the+ journal.++ Also, any transaction that has been changed by auto posting rules+will have these tags added:++ * `modified:' - this transaction was modified++ * `_modified:' - a hidden tag not appearing in the comment; this+ transaction was modified "just now".+++File: hledger.info, Node: CSV FORMAT, Next: TIMECLOCK FORMAT, Prev: JOURNAL FORMAT, Up: Top++13 CSV FORMAT+*************++How hledger reads CSV data, and the CSV rules file format.++ hledger can read CSV files (Character Separated Value - usually+comma, semicolon, or tab) containing dated records as if they were+journal files, automatically converting each CSV record into a+transaction.++ (To learn about _writing_ CSV, see CSV output.)++ We describe each CSV file's format with a corresponding _rules+file_. By default this is named like the CSV file with a `.rules'+extension added. Eg when reading `FILE.csv', hledger also looks for+`FILE.csv.rules' in the same directory as `FILE.csv'. You can specify a+different rules file with the `--rules-file' option. If a rules file is+not found, hledger will create a sample rules file, which you'll need+to adjust.++ This file contains rules describing the CSV data (header line, fields+layout, date format etc.), and how to construct hledger journal entries+(transactions) from it. Often there will also be a list of conditional+rules for categorising transactions based on their descriptions. Here's+an overview of the CSV rules; these are described more fully below,+after the examples:++*`skip'* skip one or more header lines or matched+ CSV records+*`fields'* name CSV fields, assign them to hledger+ fields+*field assignment* assign a value to one hledger field,+ with interpolation+*`separator'* a custom field separator+*`if' block* apply some rules to CSV records matched+ by patterns+*`if' table* apply some rules to CSV records matched+ by patterns, alternate syntax+*`end'* skip the remaining CSV records+*`date-format'* how to parse dates in CSV records+*`decimal-mark'* the decimal mark used in CSV amounts, if+ ambiguous+*`newest-first'* disambiguate record order when there's+ only one date+*`include'* inline another CSV rules file+*`balance-type'* choose which type of balance assignments+ to use++ Note, for best error messages when reading CSV files, use a `.csv',+`.tsv' or `.ssv' file extension or file prefix - see File Extension+below.++ There's an introductory Convert CSV files tutorial on hledger.org.++* Menu:++* Examples::+* CSV rules::+* Tips::+++File: hledger.info, Node: Examples, Next: CSV rules, Up: CSV FORMAT++13.1 Examples+=============++Here are some sample hledger CSV rules files. See also the full+collection at:+https://github.com/simonmichael/hledger/tree/master/examples/csv++* Menu:++* Basic::+* Bank of Ireland::+* Amazon::+* Paypal::+++File: hledger.info, Node: Basic, Next: Bank of Ireland, Up: Examples++13.1.1 Basic+------------++At minimum, the rules file must identify the date and amount fields, and+often it also specifies the date format and how many header lines there+are. Here's a simple CSV file and a rules file for it:+++Date, Description, Id, Amount+12/11/2019, Foo, 123, 10.23+++# basic.csv.rules+skip 1+fields date, description, _, amount+date-format %d/%m/%Y+++$ hledger print -f basic.csv+2019-11-12 Foo+ expenses:unknown 10.23+ income:unknown -10.23++ Default account names are chosen, since we didn't set them.+++File: hledger.info, Node: Bank of Ireland, Next: Amazon, Prev: Basic, Up: Examples++13.1.2 Bank of Ireland+----------------------++Here's a CSV with two amount fields (Debit and Credit), and a balance+field, which we can use to add balance assertions, which is not+necessary but provides extra error checking:+++Date,Details,Debit,Credit,Balance+07/12/2012,LODGMENT 529898,,10.0,131.21+07/12/2012,PAYMENT,5,,126+++# bankofireland-checking.csv.rules++# skip the header line+skip++# name the csv fields, and assign some of them as journal entry fields+fields date, description, amount-out, amount-in, balance++# We generate balance assertions by assigning to "balance"+# above, but you may sometimes need to remove these because:+#+# - the CSV balance differs from the true balance,+# by up to 0.0000000000005 in my experience+#+# - it is sometimes calculated based on non-chronological ordering,+# eg when multiple transactions clear on the same day++# date is in UK/Ireland format+date-format %d/%m/%Y++# set the currency+currency EUR++# set the base account for all txns+account1 assets:bank:boi:checking+++$ hledger -f bankofireland-checking.csv print+2012-12-07 LODGMENT 529898+ assets:bank:boi:checking EUR10.0 = EUR131.2+ income:unknown EUR-10.0++2012-12-07 PAYMENT+ assets:bank:boi:checking EUR-5.0 = EUR126.0+ expenses:unknown EUR5.0++ The balance assertions don't raise an error above, because we're+reading directly from CSV, but they will be checked if these entries are+imported into a journal file.+++File: hledger.info, Node: Amazon, Next: Paypal, Prev: Bank of Ireland, Up: Examples++13.1.3 Amazon+-------------++Here we convert amazon.com order history, and use an if block to+generate a third posting if there's a fee. (In practice you'd probably+get this data from your bank instead, but it's an example.)+++"Date","Type","To/From","Name","Status","Amount","Fees","Transaction ID"+"Jul 29, 2012","Payment","To","Foo.","Completed","$20.00","$0.00","16000000000000DGLNJPI1P9B8DKPVHL"+"Jul 30, 2012","Payment","To","Adapteva, Inc.","Completed","$25.00","$1.00","17LA58JSKRD4HDGLNJPI1P9B8DKPVHL"+++# amazon-orders.csv.rules++# skip one header line+skip 1++# name the csv fields, and assign the transaction's date, amount and code.+# Avoided the "status" and "amount" hledger field names to prevent confusion.+fields date, _, toorfrom, name, amzstatus, amzamount, fees, code++# how to parse the date+date-format %b %-d, %Y++# combine two fields to make the description+description %toorfrom %name++# save the status as a tag+comment status:%amzstatus++# set the base account for all transactions+account1 assets:amazon+# leave amount1 blank so it can balance the other(s).+# I'm assuming amzamount excludes the fees, don't remember++# set a generic account2+account2 expenses:misc+amount2 %amzamount+# and maybe refine it further:+#include categorisation.rules++# add a third posting for fees, but only if they are non-zero.+if %fees [1-9]+ account3 expenses:fees+ amount3 %fees+++$ hledger -f amazon-orders.csv print+2012-07-29 (16000000000000DGLNJPI1P9B8DKPVHL) To Foo. ; status:Completed+ assets:amazon+ expenses:misc $20.00++2012-07-30 (17LA58JSKRD4HDGLNJPI1P9B8DKPVHL) To Adapteva, Inc. ; status:Completed+ assets:amazon+ expenses:misc $25.00+ expenses:fees $1.00+++File: hledger.info, Node: Paypal, Prev: Amazon, Up: Examples++13.1.4 Paypal+-------------++Here's a real-world rules file for (customised) Paypal CSV, with some+Paypal-specific rules, and a second rules file included:+++"Date","Time","TimeZone","Name","Type","Status","Currency","Gross","Fee","Net","From Email Address","To Email Address","Transaction ID","Item Title","Item ID","Reference Txn ID","Receipt ID","Balance","Note"+"10/01/2019","03:46:20","PDT","Calm Radio","Subscription Payment","Completed","USD","-6.99","0.00","-6.99","simon@joyful.com","memberships@calmradio.com","60P57143A8206782E","MONTHLY - $1 for the first 2 Months: Me - Order 99309. Item total: $1.00 USD first 2 months, then $6.99 / Month","","I-R8YLY094FJYR","","-6.99",""+"10/01/2019","03:46:20","PDT","","Bank Deposit to PP Account ","Pending","USD","6.99","0.00","6.99","","simon@joyful.com","0TU1544T080463733","","","60P57143A8206782E","","0.00",""+"10/01/2019","08:57:01","PDT","Patreon","PreApproved Payment Bill User Payment","Completed","USD","-7.00","0.00","-7.00","simon@joyful.com","support@patreon.com","2722394R5F586712G","Patreon* Membership","","B-0PG93074E7M86381M","","-7.00",""+"10/01/2019","08:57:01","PDT","","Bank Deposit to PP Account ","Pending","USD","7.00","0.00","7.00","","simon@joyful.com","71854087RG994194F","Patreon* Membership","","2722394R5F586712G","","0.00",""+"10/19/2019","03:02:12","PDT","Wikimedia Foundation, Inc.","Subscription Payment","Completed","USD","-2.00","0.00","-2.00","simon@joyful.com","tle@wikimedia.org","K9U43044RY432050M","Monthly donation to the Wikimedia Foundation","","I-R5C3YUS3285L","","-2.00",""+"10/19/2019","03:02:12","PDT","","Bank Deposit to PP Account ","Pending","USD","2.00","0.00","2.00","","simon@joyful.com","3XJ107139A851061F","","","K9U43044RY432050M","","0.00",""+"10/22/2019","05:07:06","PDT","Noble Benefactor","Subscription Payment","Completed","USD","10.00","-0.59","9.41","noble@bene.fac.tor","simon@joyful.com","6L8L1662YP1334033","Joyful Systems","","I-KC9VBGY2GWDB","","9.41",""+++# paypal-custom.csv.rules++# Tips:+# Export from Activity -> Statements -> Custom -> Activity download+# Suggested transaction type: "Balance affecting"+# Paypal's default fields in 2018 were:+# "Date","Time","TimeZone","Name","Type","Status","Currency","Gross","Fee","Net","From Email Address","To Email Address","Transaction ID","Shipping Address","Address Status","Item Title","Item ID","Shipping and Handling Amount","Insurance Amount","Sales Tax","Option 1 Name","Option 1 Value","Option 2 Name","Option 2 Value","Reference Txn ID","Invoice Number","Custom Number","Quantity","Receipt ID","Balance","Address Line 1","Address Line 2/District/Neighborhood","Town/City","State/Province/Region/County/Territory/Prefecture/Republic","Zip/Postal Code","Country","Contact Phone Number","Subject","Note","Country Code","Balance Impact"+# This rules file assumes the following more detailed fields, configured in "Customize report fields":+# "Date","Time","TimeZone","Name","Type","Status","Currency","Gross","Fee","Net","From Email Address","To Email Address","Transaction ID","Item Title","Item ID","Reference Txn ID","Receipt ID","Balance","Note"++fields date, time, timezone, description_, type, status_, currency, grossamount, feeamount, netamount, fromemail, toemail, code, itemtitle, itemid, referencetxnid, receiptid, balance, note++skip 1++date-format %-m/%-d/%Y++# ignore some paypal events+if+In Progress+Temporary Hold+Update to+ skip++# add more fields to the description+description %description_ %itemtitle++# save some other fields as tags+comment itemid:%itemid, fromemail:%fromemail, toemail:%toemail, time:%time, type:%type, status:%status_++# convert to short currency symbols+if %currency USD+ currency $+if %currency EUR+ currency E+if %currency GBP+ currency P++# generate postings++# the first posting will be the money leaving/entering my paypal account+# (negative means leaving my account, in all amount fields)+account1 assets:online:paypal+amount1 %netamount++# the second posting will be money sent to/received from other party+# (account2 is set below)+amount2 -%grossamount++# if there's a fee, add a third posting for the money taken by paypal.+if %feeamount [1-9]+ account3 expenses:banking:paypal+ amount3 -%feeamount+ comment3 business:++# choose an account for the second posting++# override the default account names:+# if the amount is positive, it's income (a debit)+if %grossamount ^[^-]+ account2 income:unknown+# if negative, it's an expense (a credit)+if %grossamount ^-+ account2 expenses:unknown++# apply common rules for setting account2 & other tweaks+include common.rules++# apply some overrides specific to this csv++# Transfers from/to bank. These are usually marked Pending,+# which can be disregarded in this case.+if+Bank Account+Bank Deposit to PP Account+ description %type for %referencetxnid %itemtitle+ account2 assets:bank:wf:pchecking+ account1 assets:online:paypal++# Currency conversions+if Currency Conversion+ account2 equity:currency conversion+++# common.rules++if+darcs+noble benefactor+ account2 revenues:foss donations:darcshub+ comment2 business:++if+Calm Radio+ account2 expenses:online:apps++if+electronic frontier foundation+Patreon+wikimedia+Advent of Code+ account2 expenses:dues++if Google+ account2 expenses:online:apps+ description google | music+++$ hledger -f paypal-custom.csv print+2019-10-01 (60P57143A8206782E) Calm Radio MONTHLY - $1 for the first 2 Months: Me - Order 99309. Item total: $1.00 USD first 2 months, then $6.99 / Month ; itemid:, fromemail:simon@joyful.com, toemail:memberships@calmradio.com, time:03:46:20, type:Subscription Payment, status:Completed+ assets:online:paypal $-6.99 = $-6.99+ expenses:online:apps $6.99++2019-10-01 (0TU1544T080463733) Bank Deposit to PP Account for 60P57143A8206782E ; itemid:, fromemail:, toemail:simon@joyful.com, time:03:46:20, type:Bank Deposit to PP Account, status:Pending+ assets:online:paypal $6.99 = $0.00+ assets:bank:wf:pchecking $-6.99++2019-10-01 (2722394R5F586712G) Patreon Patreon* Membership ; itemid:, fromemail:simon@joyful.com, toemail:support@patreon.com, time:08:57:01, type:PreApproved Payment Bill User Payment, status:Completed+ assets:online:paypal $-7.00 = $-7.00+ expenses:dues $7.00++2019-10-01 (71854087RG994194F) Bank Deposit to PP Account for 2722394R5F586712G Patreon* Membership ; itemid:, fromemail:, toemail:simon@joyful.com, time:08:57:01, type:Bank Deposit to PP Account, status:Pending+ assets:online:paypal $7.00 = $0.00+ assets:bank:wf:pchecking $-7.00++2019-10-19 (K9U43044RY432050M) Wikimedia Foundation, Inc. Monthly donation to the Wikimedia Foundation ; itemid:, fromemail:simon@joyful.com, toemail:tle@wikimedia.org, time:03:02:12, type:Subscription Payment, status:Completed+ assets:online:paypal $-2.00 = $-2.00+ expenses:dues $2.00+ expenses:banking:paypal ; business:++2019-10-19 (3XJ107139A851061F) Bank Deposit to PP Account for K9U43044RY432050M ; itemid:, fromemail:, toemail:simon@joyful.com, time:03:02:12, type:Bank Deposit to PP Account, status:Pending+ assets:online:paypal $2.00 = $0.00+ assets:bank:wf:pchecking $-2.00++2019-10-22 (6L8L1662YP1334033) Noble Benefactor Joyful Systems ; itemid:, fromemail:noble@bene.fac.tor, toemail:simon@joyful.com, time:05:07:06, type:Subscription Payment, status:Completed+ assets:online:paypal $9.41 = $9.41+ revenues:foss donations:darcshub $-10.00 ; business:+ expenses:banking:paypal $0.59 ; business:+++File: hledger.info, Node: CSV rules, Next: Tips, Prev: Examples, Up: CSV FORMAT++13.2 CSV rules+==============++The following kinds of rule can appear in the rules file, in any order.+Blank lines and lines beginning with `#' or `;' are ignored.++* Menu:++* skip::+* fields::+* field assignment::+* separator::+* if block::+* if table::+* end::+* date-format::+* decimal-mark::+* newest-first::+* include::+* balance-type::+++File: hledger.info, Node: skip, Next: fields, Up: CSV rules++13.2.1 `skip'+-------------+++skip N++The word "skip" followed by a number (or no number, meaning 1) tells+hledger to ignore this many non-empty lines preceding the CSV data.+(Empty/blank lines are skipped automatically.) You'll need this whenever+your CSV data contains header lines.++ It also has a second purpose: it can be used inside if blocks to+ignore certain CSV records (described below).+++File: hledger.info, Node: fields, Next: field assignment, Prev: skip, Up: CSV rules++13.2.2 `fields'+---------------+++fields FIELDNAME1, FIELDNAME2, ...++A fields list (the word "fields" followed by comma-separated field+names) is the quick way to assign CSV field values to hledger fields. It+does two things:++ 1. it names the CSV fields. This is optional, but can be convenient+ later for interpolating them.++ 2. when you use a standard hledger field name, it assigns the CSV+ value to that part of the hledger transaction.+++ Here's an example that says "use the 1st, 2nd and 4th fields as the+transaction's date, description and amount; name the last two fields for+later reference; and ignore the others":+++fields date, description, , amount, , , somefield, anotherfield++ Field names may not contain whitespace. Fields you don't care about+can be left unnamed. Currently there must be least two items (there+must be at least one comma).++ Note, always use comma in the fields list, even if your CSV uses+another separator character.++ Here are the standard hledger field/pseudo-field names. For more+about the transaction parts they refer to, see the manual for hledger's+journal format.++* Menu:++* Transaction field names::+* Posting field names::+++File: hledger.info, Node: Transaction field names, Next: Posting field names, Up: fields++13.2.2.1 Transaction field names+................................++`date', `date2', `status', `code', `description', `comment' can be used+to form the transaction's first line.+++File: hledger.info, Node: Posting field names, Prev: Transaction field names, Up: fields++13.2.2.2 Posting field names+............................++account `accountN', where N is 1 to 99, causes a posting to be+generated, with that account name.++ Most often there are two postings, so you'll want to set `account1'+and `account2'. Typically `account1' is associated with the CSV file,+and is set once with a top-level assignment, while `account2' is set+based on each transaction's description, and in conditional blocks.++ If a posting's account name is left unset but its amount is set (see+below), a default account name will be chosen (like "expenses:unknown"+or "income:unknown"). amount `amountN' sets posting N's amount. If the+CSV uses separate fields for inflows and outflows, you can use+`amountN-in' and `amountN-out' instead. By assigning to `amount1',+`amount2', ... etc. you can generate anywhere from 0 to 99 postings.++ There is also an older, unnumbered form of these names, suitable for+2-posting transactions, which sets both posting 1's and (negated)+posting 2's amount: `amount', or `amount-in' and `amount-out'. This is+still supported because it keeps pre-hledger-1.17 csv rules files+working, and because it can be more succinct, and because it converts+posting 2's amount to cost if there's a transaction price, which can be+useful.++ If you have an existing rules file using the unnumbered form, you+might want to use the numbered form in certain conditional blocks,+without having to update and retest all the old rules. To facilitate+this, posting 1 ignores `amount'/`amount-in'/`amount-out' if any of+`amount1'/`amount1-in'/`amount1-out' are assigned, and posting 2+ignores them if any of `amount2'/`amount2-in'/`amount2-out' are+assigned, avoiding conflicts. currency If the CSV has the currency+symbol in a separate field (ie, not part of the amount field), you can+use `currencyN' to prepend it to posting N's amount. Or, `currency'+with no number affects all postings. balance `balanceN' sets a balance+assertion amount (or if the posting amount is left empty, a balance+assignment) on posting N.++ Also, for compatibility with hledger <1.17: `balance' with no number+is equivalent to `balance1'.++ You can adjust the type of assertion/assignment with the+`balance-type' rule (see below). comment Finally, `commentN' sets a+comment on the Nth posting. Comments can also contain tags, as usual.++ See TIPS below for more about setting amounts and currency.+++File: hledger.info, Node: field assignment, Next: separator, Prev: fields, Up: CSV rules++13.2.3 field assignment+-----------------------+++HLEDGERFIELDNAME FIELDVALUE++Instead of or in addition to a fields list, you can use a "field+assignment" rule to set the value of a single hledger field, by writing+its name (any of the standard hledger field names above) followed by a+text value. The value may contain interpolated CSV fields, referenced by+their 1-based position in the CSV record (`%N'), or by the name they+were given in the fields list (`%CSVFIELDNAME'). Some examples:+++# set the amount to the 4th CSV field, with " USD" appended+amount %4 USD++# combine three fields to make a comment, containing note: and date: tags+comment note: %somefield - %anotherfield, date: %1++ Interpolation strips outer whitespace (so a CSV value like `" 1 "'+becomes `1' when interpolated) (#1051). See TIPS below for more about+referencing other fields.+++File: hledger.info, Node: separator, Next: if block, Prev: field assignment, Up: CSV rules++13.2.4 `separator'+------------------++You can use the `separator' rule to read other kinds of+character-separated data. The argument is any single separator+character, or the words `tab' or `space' (case insensitive). Eg, for+comma-separated values (CSV):+++separator ,++ or for semicolon-separated values (SSV):+++separator ;++ or for tab-separated values (TSV):+++separator TAB++ If the input file has a `.csv', `.ssv' or `.tsv' file extension (or+a `csv:', `ssv:', `tsv:' prefix), the appropriate separator will be+inferred automatically, and you won't need this rule.+++File: hledger.info, Node: if block, Next: if table, Prev: separator, Up: CSV rules++13.2.5 `if' block+-----------------+++if MATCHER+ RULE++if+MATCHER+MATCHER+MATCHER+ RULE+ RULE++Conditional blocks ("if blocks") are a block of rules that are applied+only to CSV records which match certain patterns. They are often used+for customising account names based on transaction descriptions.++* Menu:++* Matching the whole record::+* Matching individual fields::+* Combining matchers::+* Rules applied on successful match::+++File: hledger.info, Node: Matching the whole record, Next: Matching individual fields, Up: if block++13.2.5.1 Matching the whole record+..................................++Each MATCHER can be a record matcher, which looks like this:+++REGEX++ REGEX is a case-insensitive regular expression which tries to match+anywhere within the CSV record. It is a POSIX ERE (extended regular+expression) that also supports GNU word boundaries (`\b', `\B', `\<',+`\>'), and nothing else. If you have trouble, be sure to check our+https://hledger.org/hledger.html#regular-expressions doc.++ Important note: the record that is matched is not the original+record, but a synthetic one, with any enclosing double quotes (but not+enclosing whitespace) removed, and always comma-separated (which means+that a field containing a comma will appear like two fields). Eg, if the+original record is `2020-01-01; "Acme, Inc."; 1,000', the REGEX will+actually see `2020-01-01,Acme, Inc., 1,000').+++File: hledger.info, Node: Matching individual fields, Next: Combining matchers, Prev: Matching the whole record, Up: if block++13.2.5.2 Matching individual fields+...................................++Or, MATCHER can be a field matcher, like this:+++%CSVFIELD REGEX++ which matches just the content of a particular CSV field. CSVFIELD+is a percent sign followed by the field's name or column number, like+`%date' or `%1'.+++File: hledger.info, Node: Combining matchers, Next: Rules applied on successful match, Prev: Matching individual fields, Up: if block++13.2.5.3 Combining matchers+...........................++A single matcher can be written on the same line as the "if"; or+multiple matchers can be written on the following lines, non-indented.+Multiple matchers are OR'd (any one of them can match), unless one+begins with an `&' symbol, in which case it is AND'ed with the previous+matcher.+++if+MATCHER+& MATCHER+ RULE+++File: hledger.info, Node: Rules applied on successful match, Prev: Combining matchers, Up: if block++13.2.5.4 Rules applied on successful match+..........................................++After the patterns there should be one or more rules to apply, all+indented by at least one space. Three kinds of rule are allowed in+conditional blocks:++ * field assignments (to set a hledger field)++ * skip (to skip the matched CSV record)++ * end (to skip all remaining CSV records).++ Examples:+++# if the CSV record contains "groceries", set account2 to "expenses:groceries"+if groceries+ account2 expenses:groceries+++# if the CSV record contains any of these patterns, set account2 and comment as shown+if+monthly service fee+atm transaction fee+banking thru software+ account2 expenses:business:banking+ comment XXX deductible ? check it+++File: hledger.info, Node: if table, Next: end, Prev: if block, Up: CSV rules++13.2.6 `if' table+-----------------+++if,CSVFIELDNAME1,CSVFIELDNAME2,...,CSVFIELDNAMEn+MATCHER1,VALUE11,VALUE12,...,VALUE1n+MATCHER2,VALUE21,VALUE22,...,VALUE2n+MATCHER3,VALUE31,VALUE32,...,VALUE3n+<empty line>++Conditional tables ("if tables") are a different syntax to specify field+assignments that will be applied only to CSV records which match certain+patterns.++ MATCHER could be either field or record matcher, as described above.+When MATCHER matches, values from that row would be assigned to the CSV+fields named on the `if' line, in the same order.++ Therefore `if' table is exactly equivalent to a sequence of of `if'+blocks:+++if MATCHER1+ CSVFIELDNAME1 VALUE11+ CSVFIELDNAME2 VALUE12+ ...+ CSVFIELDNAMEn VALUE1n++if MATCHER2+ CSVFIELDNAME1 VALUE21+ CSVFIELDNAME2 VALUE22+ ...+ CSVFIELDNAMEn VALUE2n++if MATCHER3+ CSVFIELDNAME1 VALUE31+ CSVFIELDNAME2 VALUE32+ ...+ CSVFIELDNAMEn VALUE3n++ Each line starting with MATCHER should contain enough (possibly+empty) values for all the listed fields.++ Rules would be checked and applied in the order they are listed in+the table and, like with `if' blocks, later rules (in the same or+another table) or `if' blocks could override the effect of any rule.++ Instead of ',' you can use a variety of other non-alphanumeric+characters as a separator. First character after `if' is taken to be+the separator for the rest of the table. It is the responsibility of+the user to ensure that separator does not occur inside MATCHERs and+values - there is no way to escape separator.++ Example:+++if,account2,comment+atm transaction fee,expenses:business:banking,deductible? check it+%description groceries,expenses:groceries,+2020/01/12.*Plumbing LLC,expenses:house:upkeep,emergency plumbing call-out+++File: hledger.info, Node: end, Next: date-format, Prev: if table, Up: CSV rules++13.2.7 `end'+------------++This rule can be used inside if blocks (only), to make hledger stop+reading this CSV file and move on to the next input file, or to command+execution. Eg:+++# ignore everything following the first empty record+if ,,,,+ end+++File: hledger.info, Node: date-format, Next: decimal-mark, Prev: end, Up: CSV rules++13.2.8 `date-format'+--------------------+++date-format DATEFMT++This is a helper for the `date' (and `date2') fields. If your CSV dates+are not formatted like `YYYY-MM-DD', `YYYY/MM/DD' or `YYYY.MM.DD',+you'll need to add a date-format rule describing them with a strptime+date parsing pattern, which must parse the CSV date value completely.+Some examples:+++# MM/DD/YY+date-format %m/%d/%y+++# D/M/YYYY+# The - makes leading zeros optional.+date-format %-d/%-m/%Y+++# YYYY-Mmm-DD+date-format %Y-%h-%d+++# M/D/YYYY HH:MM AM some other junk+# Note the time and junk must be fully parsed, though only the date is used.+date-format %-m/%-d/%Y %l:%M %p some other junk++ For the supported strptime syntax, see:+https://hackage.haskell.org/package/time/docs/Data-Time-Format.html#v:formatTime+++File: hledger.info, Node: decimal-mark, Next: newest-first, Prev: date-format, Up: CSV rules++13.2.9 `decimal-mark'+---------------------+++decimal-mark .++or:+++decimal-mark ,++ hledger automatically accepts either period or comma as a decimal+mark when parsing numbers (cf Amounts). However if any numbers in the+CSV contain digit group marks, such as thousand-separating commas, you+should declare the decimal mark explicitly with this rule, to avoid+misparsed numbers.+++File: hledger.info, Node: newest-first, Next: include, Prev: decimal-mark, Up: CSV rules++13.2.10 `newest-first'+----------------------++hledger always sorts the generated transactions by date. Transactions on+the same date should appear in the same order as their CSV records, as+hledger can usually auto-detect whether the CSV's normal order is oldest+first or newest first. But if all of the following are true:++ * the CSV might sometimes contain just one day of data (all records+ having the same date)++ * the CSV records are normally in reverse chronological order+ (newest at the top)++ * and you care about preserving the order of same-day transactions++ then, you should add the `newest-first' rule as a hint. Eg:+++# tell hledger explicitly that the CSV is normally newest first+newest-first+++File: hledger.info, Node: include, Next: balance-type, Prev: newest-first, Up: CSV rules++13.2.11 `include'+-----------------+++include RULESFILE++This includes the contents of another CSV rules file at this point.+`RULESFILE' is an absolute file path or a path relative to the current+file's directory. This can be useful for sharing common rules between+several rules files, eg:+++# someaccount.csv.rules++## someaccount-specific rules+fields date,description,amount+account1 assets:someaccount+account2 expenses:misc++## common rules+include categorisation.rules+++File: hledger.info, Node: balance-type, Prev: include, Up: CSV rules++13.2.12 `balance-type'+----------------------++Balance assertions generated by assigning to balanceN are of the simple+`=' type by default, which is a single-commodity, subaccount-excluding+assertion. You may find the subaccount-including variants more useful,+eg if you have created some virtual subaccounts of checking to help+with budgeting. You can select a different type of assertion with the+`balance-type' rule:+++# balance assertions will consider all commodities and all subaccounts+balance-type ==*++ Here are the balance assertion types for quick reference:+++= single commodity, exclude subaccounts+=* single commodity, include subaccounts+== multi commodity, exclude subaccounts+==* multi commodity, include subaccounts+++File: hledger.info, Node: Tips, Prev: CSV rules, Up: CSV FORMAT++13.3 Tips+=========++* Menu:++* Rapid feedback::+* Valid CSV::+* File Extension::+* Reading multiple CSV files::+* Valid transactions::+* Deduplicating importing::+* Setting amounts::+* Amount signs::+* Setting currency/commodity::+* Amount decimal places::+* Referencing other fields::+* How CSV rules are evaluated::+++File: hledger.info, Node: Rapid feedback, Next: Valid CSV, Up: Tips++13.3.1 Rapid feedback+---------------------++It's a good idea to get rapid feedback while creating/troubleshooting+CSV rules. Here's a good way, using entr from+http://eradman.com/entrproject :+++$ ls foo.csv* | entr bash -c 'echo ----; hledger -f foo.csv print desc:SOMEDESC'++ A desc: query (eg) is used to select just one, or a few,+transactions of interest. "bash -c" is used to run multiple commands,+so we can echo a separator each time the command re-runs, making it+easier to read the output.+++File: hledger.info, Node: Valid CSV, Next: File Extension, Prev: Rapid feedback, Up: Tips++13.3.2 Valid CSV+----------------++hledger accepts CSV conforming to RFC 4180. When CSV values are enclosed+in quotes, note:++ * they must be double quotes (not single quotes)++ * spaces outside the quotes are not allowed+++File: hledger.info, Node: File Extension, Next: Reading multiple CSV files, Prev: Valid CSV, Up: Tips++13.3.3 File Extension+---------------------++To help hledger identify the format and show the right error messages,+CSV/SSV/TSV files should normally be named with a `.csv', `.ssv' or+`.tsv' filename extension. Or, the file path should be prefixed with+`csv:', `ssv:' or `tsv:'. Eg:+++$ hledger -f foo.ssv print++ or:+++$ cat foo | hledger -f ssv:- foo++ You can override the file extension with a separator rule if needed.+See also: Input files in the hledger manual.+++File: hledger.info, Node: Reading multiple CSV files, Next: Valid transactions, Prev: File Extension, Up: Tips++13.3.4 Reading multiple CSV files+---------------------------------++If you use multiple `-f' options to read multiple CSV files at once,+hledger will look for a correspondingly-named rules file for each CSV+file. But if you use the `--rules-file' option, that rules file will be+used for all the CSV files.+++File: hledger.info, Node: Valid transactions, Next: Deduplicating importing, Prev: Reading multiple CSV files, Up: Tips++13.3.5 Valid transactions+-------------------------++After reading a CSV file, hledger post-processes and validates the+generated journal entries as it would for a journal file - balancing+them, applying balance assignments, and canonicalising amount styles.+Any errors at this stage will be reported in the usual way, displaying+the problem entry.++ There is one exception: balance assertions, if you have generated+them, will not be checked, since normally these will work only when the+CSV data is part of the main journal. If you do need to check balance+assertions generated from CSV right away, pipe into another hledger:+++$ hledger -f file.csv print | hledger -f- print+++File: hledger.info, Node: Deduplicating importing, Next: Setting amounts, Prev: Valid transactions, Up: Tips++13.3.6 Deduplicating, importing+-------------------------------++When you download a CSV file periodically, eg to get your latest bank+transactions, the new file may overlap with the old one, containing some+of the same records.++ The import command will (a) detect the new transactions, and (b)+append just those transactions to your main journal. It is idempotent,+so you don't have to remember how many times you ran it or with which+version of the CSV. (It keeps state in a hidden `.latest.FILE.csv'+file.) This is the easiest way to import CSV data. Eg:+++# download the latest CSV files, then run this command.+# Note, no -f flags needed here.+$ hledger import *.csv [--dry]++ This method works for most CSV files. (Where records have a stable+chronological order, and new records appear only at the new end.)++ A number of other tools and workflows, hledger-specific and+otherwise, exist for converting, deduplicating, classifying and+managing CSV data. See:++ * https://hledger.org -> sidebar -> real world setups++ * https://plaintextaccounting.org -> data import/conversion+++File: hledger.info, Node: Setting amounts, Next: Amount signs, Prev: Deduplicating importing, Up: Tips++13.3.7 Setting amounts+----------------------++Some tips on using the amount-setting rules discussed above.++ Here are the ways to set a posting's amount:++ 1. *If the CSV has a single amount field:*+ Assign (via a fields list or a field assignment) to `amountN'. This+ sets the Nth posting's amount. N is usually 1 or 2 but can go up+ to 99.++ 2. *If the CSV has separate Debit and Credit amount fields:*+ Assign to `amountN-in' and `amountN-out'. This sets posting N's+ amount to whichever of these has a non-zero value, guessing an+ appropriate sign.++ * *If hledger guesses the wrong sign:*+ Prepend a minus sign to flip it. Eg:+++ fields date, description, amount-in, amount-out+ amount-out -%amount-out++ * *If both fields contain a non-zero value:*+ The `amountN-in'/`amountN-out' rules require that each CSV+ record has a non-zero value in exactly one of the two fields,+ so that hledger knows which to choose. So these would all be+ rejected:+++ "", ""+ "0", "0"+ "1", "none"++ If your CSV has amount values like this, use conditional+ rules instead. For example, to make hledger to choose the+ value containing non-zero digits:+++ fields date, description, in, out+ if %in [1-9]+ amount1 %in+ if %out [1-9]+ amount1 %out+++ 3. *Using the old numberless syntax:*+ Assign to `amount' (or to `amount-in' and `amount-out'). This+ sets posting 1's and posting 2's amounts (and converts posting 2's+ amount to cost). This is supported for backwards compatibility (and+ occasional convenience).++ 4. *If the CSV has the balance instead of the transaction amount:*+ Assign to `balanceN', which sets posting N's amount indirectly via+ a balance assignment. (Old syntax: `balance', equivalent to+ `balance1'.)++ * *If hledger guesses the wrong default account name:*+ When setting the amount via balance assertion, hledger may+ guess the wrong default account name. So, set the account+ name explicitly, eg:+++ fields date, description, balance1+ account1 assets:checking+++++File: hledger.info, Node: Amount signs, Next: Setting currency/commodity, Prev: Setting amounts, Up: Tips++13.3.8 Amount signs+-------------------++There is some special handling for amount signs, to simplify parsing and+sign-flipping:++ * *If an amount value begins with a plus sign:*+ that will be removed: `+AMT' becomes `AMT'++ * *If an amount value is parenthesised:*+ it will be de-parenthesised and sign-flipped: `(AMT)' becomes+ `-AMT'++ * *If an amount value has two minus signs (or two sets of+ parentheses, or a minus sign and parentheses):*+ they cancel out and will be removed: `--AMT' or `-(AMT)' becomes+ `AMT'++ * *If an amount value contains just a sign (or just a set of+ parentheses):*+ that is removed, making it an empty value. `"+"' or `"-"' or+ `"()"' becomes `""'.++++File: hledger.info, Node: Setting currency/commodity, Next: Amount decimal places, Prev: Amount signs, Up: Tips++13.3.9 Setting currency/commodity+---------------------------------++If the currency/commodity symbol is included in the CSV's amount+field(s):+++2020-01-01,foo,$123.00++ you don't have to do anything special for the commodity symbol, it+will be assigned as part of the amount. Eg:+++fields date,description,amount+++2020-01-01 foo+ expenses:unknown $123.00+ income:unknown $-123.00++ If the currency is provided as a separate CSV field:+++2020-01-01,foo,USD,123.00++ You can assign that to the `currency' pseudo-field, which has the+special effect of prepending itself to every amount in the transaction+(on the left, with no separating space):+++fields date,description,currency,amount+++2020-01-01 foo+ expenses:unknown USD123.00+ income:unknown USD-123.00++ Or, you can use a field assignment to construct the amount yourself,+with more control. Eg to put the symbol on the right, and separated by a+space:+++fields date,description,cur,amt+amount %amt %cur+++2020-01-01 foo+ expenses:unknown 123.00 USD+ income:unknown -123.00 USD++ Note we used a temporary field name (`cur') that is not `currency' -+that would trigger the prepending effect, which we don't want here.+++File: hledger.info, Node: Amount decimal places, Next: Referencing other fields, Prev: Setting currency/commodity, Up: Tips++13.3.10 Amount decimal places+-----------------------------++Like amounts in a journal file, the amounts generated by CSV rules like+`amount1' influence commodity display styles, such as the number of+decimal places displayed in reports.++ The original amounts as written in the CSV file do not affect display+style (because we don't yet reliably know their commodity).+++File: hledger.info, Node: Referencing other fields, Next: How CSV rules are evaluated, Prev: Amount decimal places, Up: Tips++13.3.11 Referencing other fields+--------------------------------++In field assignments, you can interpolate only CSV fields, not hledger+fields. In the example below, there's both a CSV field and a hledger+field named amount1, but %amount1 always means the CSV field, not the+hledger field:+++# Name the third CSV field "amount1"+fields date,description,amount1++# Set hledger's amount1 to the CSV amount1 field followed by USD+amount1 %amount1 USD++# Set comment to the CSV amount1 (not the amount1 assigned above)+comment %amount1++ Here, since there's no CSV amount1 field, %amount1 will produce a+literal "amount1":+++fields date,description,csvamount+amount1 %csvamount USD+# Can't interpolate amount1 here+comment %amount1++ When there are multiple field assignments to the same hledger field,+only the last one takes effect. Here, comment's value will be be B, or C+if "something" is matched, but never A:+++comment A+comment B+if something+ comment C+++File: hledger.info, Node: How CSV rules are evaluated, Prev: Referencing other fields, Up: Tips++13.3.12 How CSV rules are evaluated+-----------------------------------++Here's how to think of CSV rules being evaluated (if you really need+to). First,++ * `include' - all includes are inlined, from top to bottom, depth+ first. (At each include point the file is inlined and scanned for+ further includes, recursively, before proceeding.)++ Then "global" rules are evaluated, top to bottom. If a rule is+repeated, the last one wins:++ * `skip' (at top level)++ * `date-format'++ * `newest-first'++ * `fields' - names the CSV fields, optionally sets up initial+ assignments to hledger fields++ Then for each CSV record in turn:++ * test all `if' blocks. If any of them contain a `end' rule, skip+ all remaining CSV records. Otherwise if any of them contain a+ `skip' rule, skip that many CSV records. If there are multiple+ matched `skip' rules, the first one wins.++ * collect all field assignments at top level and in matched `if'+ blocks. When there are multiple assignments for a field, keep only+ the last one.++ * compute a value for each hledger field - either the one that was+ assigned to it (and interpolate the %CSVFIELDNAME references), or a+ default++ * generate a synthetic hledger transaction from these values.++ This is all part of the CSV reader, one of several readers hledger+can use to parse input files. When all files have been read+successfully, the transactions are passed as input to whichever hledger+command the user specified.+++File: hledger.info, Node: TIMECLOCK FORMAT, Next: TIMEDOT FORMAT, Prev: CSV FORMAT, Up: Top++14 TIMECLOCK FORMAT+*******************++The time logging format of timeclock.el, as read by hledger.++ hledger can read time logs in timeclock format. As with Ledger, these+are (a subset of) timeclock.el's format, containing clock-in and+clock-out entries as in the example below. The date is a simple date.+The time format is HH:MM[:SS][+-ZZZZ]. Seconds and timezone are+optional. The timezone, if present, must be four digits and is ignored+(currently the time is always interpreted as a local time).+++i 2015/03/30 09:00:00 some:account name optional description after two spaces+o 2015/03/30 09:20:00+i 2015/03/31 22:21:45 another account+o 2015/04/01 02:00:34++ hledger treats each clock-in/clock-out pair as a transaction posting+some number of hours to an account. Or if the session spans more than+one day, it is split into several transactions, one for each day. For+the above time log, `hledger print' generates these journal entries:+++$ hledger -f t.timeclock print+2015-03-30 * optional description after two spaces+ (some:account name) 0.33h++2015-03-31 * 22:21-23:59+ (another account) 1.64h++2015-04-01 * 00:00-02:00+ (another account) 2.01h++ Here is a sample.timeclock to download and some queries to try:+++$ hledger -f sample.timeclock balance # current time balances+$ hledger -f sample.timeclock register -p 2009/3 # sessions in march 2009+$ hledger -f sample.timeclock register -p weekly --depth 1 --empty # time summary by week++ To generate time logs, ie to clock in and clock out, you could:++ * use emacs and the built-in timeclock.el, or the extended+ timeclock-x.el and perhaps the extras in ledgerutils.el++ * at the command line, use these bash aliases: `shell alias+ ti="echo i `date '+%Y-%m-%d %H:%M:%S'` \$* >>$TIMELOG" alias+ to="echo o `date '+%Y-%m-%d %H:%M:%S'` >>$TIMELOG"'++ * or use the old `ti' and `to' scripts in the ledger 2.x repository.+ These rely on a "timeclock" executable which I think is just the+ ledger 2 executable renamed.++++File: hledger.info, Node: TIMEDOT FORMAT, Next: COMMON TASKS, Prev: TIMECLOCK FORMAT, Up: Top++15 TIMEDOT FORMAT+*****************++hledger's human-friendly time logging format.++ Timedot is a plain text format for logging dated, categorised+quantities (of time, usually), supported by hledger. It is convenient+for approximate and retroactive time logging, eg when the real-time+clock-in/out required with a timeclock file is too precise or too+interruptive. It can be formatted like a bar chart, making clear at a+glance where time was spent.++ Though called "timedot", this format is read by hledger as+commodityless quantities, so it could be used to represent dated+quantities other than time. In the docs below we'll assume it's time.++ A timedot file contains a series of day entries. A day entry begins+with a non-indented hledger-style simple date (Y-M-D, Y/M/D, Y.M.D..)+Any additional text on the same line is used as a transaction+description for this day.++ This is followed by optionally-indented timelog items for that day,+one per line. Each timelog item is a note, usually a+hledger:style:account:name representing a time category, followed by two+or more spaces, and a quantity. Each timelog item generates a hledger+transaction.++ Quantities can be written as:++ * dots: a sequence of dots (.) representing quarter hours. Spaces may+ optionally be used for grouping. Eg: .... ..++ * an integral or decimal number, representing hours. Eg: 1.5++ * an integral or decimal number immediately followed by a unit symbol+ `s', `m', `h', `d', `w', `mo', or `y', representing seconds,+ minutes, hours, days weeks, months or years respectively. Eg: 90m.+ The following equivalencies are assumed, currently: 1m = 60s, 1h =+ 60m, 1d = 24h, 1w = 7d, 1mo = 30d, 1y=365d.+++ There is some flexibility allowing notes and todo lists to be kept+right in the time log, if needed:++ * Blank lines and lines beginning with `#' or `;' are ignored.++ * Lines not ending with a double-space and quantity are parsed as+ items taking no time, which will not appear in balance reports by+ default. (Add -E to see them.)++ * Org mode headlines (lines beginning with one or more `*' followed+ by a space) can be used as date lines or timelog items (the stars+ are ignored). Also all org headlines before the first date line+ are ignored. This means org users can manage their timelog as an+ org outline (eg using org-mode/orgstruct-mode in Emacs), for+ organisation, faster navigation, controlling visibility etc.+++ Examples:+++# on this day, 6h was spent on client work, 1.5h on haskell FOSS work, etc.+2016/2/1+inc:client1 .... .... .... .... .... ....+fos:haskell .... ..+biz:research .++2016/2/2+inc:client1 .... ....+biz:research .+++2016/2/3+inc:client1 4+fos:hledger 3+biz:research 1+++* Time log+** 2020-01-01+*** adm:time .+*** adm:finance .+++* 2020 Work Diary+** Q1+*** 2020-02-29+**** DONE+0700 yoga+**** UNPLANNED+**** BEGUN+hom:chores+ cleaning ...+ water plants+ outdoor - one full watering can+ indoor - light watering+**** TODO+adm:planning: trip+*** LATER++ Reporting:+++$ hledger -f t.timedot print date:2016/2/2+2016-02-02 *+ (inc:client1) 2.00++2016-02-02 *+ (biz:research) 0.25+++$ hledger -f t.timedot bal --daily --tree+Balance changes in 2016-02-01-2016-02-03:++ || 2016-02-01d 2016-02-02d 2016-02-03d+============++========================================+ biz || 0.25 0.25 1.00+ research || 0.25 0.25 1.00+ fos || 1.50 0 3.00+ haskell || 1.50 0 0+ hledger || 0 0 3.00+ inc || 6.00 2.00 4.00+ client1 || 6.00 2.00 4.00+------------++----------------------------------------+ || 7.75 2.25 8.00++ I prefer to use period for separating account components. We can make+this work with an account alias:+++2016/2/4+fos.hledger.timedot 4+fos.ledger ..+++$ hledger -f t.timedot --alias /\\./=: bal date:2016/2/4 --tree+ 4.50 fos+ 4.00 hledger:timedot+ 0.50 ledger+--------------------+ 4.50++ Here is a sample.timedot.+++File: hledger.info, Node: COMMON TASKS, Next: LIMITATIONS, Prev: TIMEDOT FORMAT, Up: Top++16 COMMON TASKS+***************++Here are some quick examples of how to do some basic tasks with hledger.+For more details, see the reference section below, the+hledger_journal(5) manual, or the more extensive docs at+https://hledger.org.++* Menu:++* Getting help::+* Constructing command lines::+* Starting a journal file::+* Setting opening balances::+* Recording transactions::+* Reconciling::+* Reporting::+* Migrating to a new file::+++File: hledger.info, Node: Getting help, Next: Constructing command lines, Up: COMMON TASKS++16.1 Getting help+=================+++$ hledger # show available commands+$ hledger --help # show common options+$ hledger CMD --help # show common and command options, and command help+$ hledger help # show available manuals/topics+$ hledger help hledger # show hledger manual as info/man/text (auto-chosen)+$ hledger help journal --man # show the journal manual as a man page+$ hledger help --help # show more detailed help for the help command++Find more docs, chat, mail list, reddit, issue tracker:+https://hledger.org#help-feedback+++File: hledger.info, Node: Constructing command lines, Next: Starting a journal file, Prev: Getting help, Up: COMMON TASKS++16.2 Constructing command lines+===============================++hledger has an extensive and powerful command line interface. We strive+to keep it simple and ergonomic, but you may run into one of the+confusing real world details described in OPTIONS, below. If that+happens, here are some tips that may help:++ * command-specific options must go after the command (it's fine to+ put all options there) (`hledger CMD OPTS ARGS')++ * running add-on executables directly simplifies command line parsing+ (`hledger-ui OPTS ARGS')++ * enclose "problematic" args in single quotes++ * if needed, also add a backslash to hide regular expression+ metacharacters from the shell++ * to see how a misbehaving command is being parsed, add `--debug=2'.+++File: hledger.info, Node: Starting a journal file, Next: Setting opening balances, Prev: Constructing command lines, Up: COMMON TASKS++16.3 Starting a journal file+============================++hledger looks for your accounting data in a journal file,+`$HOME/.hledger.journal' by default:+++$ hledger stats+The hledger journal file "/Users/simon/.hledger.journal" was not found.+Please create it first, eg with "hledger add" or a text editor.+Or, specify an existing journal file with -f or LEDGER_FILE.++ You can override this by setting the `LEDGER_FILE' environment+variable. It's a good practice to keep this important file under version+control, and to start a new file each year. So you could do something+like this:+++$ mkdir ~/finance+$ cd ~/finance+$ git init+Initialized empty Git repository in /Users/simon/finance/.git/+$ touch 2020.journal+$ echo "export LEDGER_FILE=$HOME/finance/2020.journal" >> ~/.bashrc+$ source ~/.bashrc+$ hledger stats+Main file : /Users/simon/finance/2020.journal+Included files :+Transactions span : to (0 days)+Last transaction : none+Transactions : 0 (0.0 per day)+Transactions last 30 days: 0 (0.0 per day)+Transactions last 7 days : 0 (0.0 per day)+Payees/descriptions : 0+Accounts : 0 (depth 0)+Commodities : 0 ()+Market prices : 0 ()+++File: hledger.info, Node: Setting opening balances, Next: Recording transactions, Prev: Starting a journal file, Up: COMMON TASKS++16.4 Setting opening balances+=============================++Pick a starting date for which you can look up the balances of some+real-world assets (bank accounts, wallet..) and liabilities (credit+cards..).++ To avoid a lot of data entry, you may want to start with just one or+two accounts, like your checking account or cash wallet; and pick a+recent starting date, like today or the start of the week. You can+always come back later and add more accounts and older transactions, eg+going back to january 1st.++ Add an opening balances transaction to the journal, declaring the+balances on this date. Here are two ways to do it:++ * The first way: open the journal in any text editor and save an+ entry like this:+++ 2020-01-01 * opening balances+ assets:bank:checking $1000 = $1000+ assets:bank:savings $2000 = $2000+ assets:cash $100 = $100+ liabilities:creditcard $-50 = $-50+ equity:opening/closing balances++ These are start-of-day balances, ie whatever was in the account at+ the end of the previous day.++ The * after the date is an optional status flag. Here it means+ "cleared & confirmed".++ The currency symbols are optional, but usually a good idea as+ you'll be dealing with multiple currencies sooner or later.++ The = amounts are optional balance assertions, providing extra+ error checking.++ * The second way: run `hledger add' and follow the prompts to record+ a similar transaction:+++ $ hledger add+ Adding transactions to journal file /Users/simon/finance/2020.journal+ Any command line arguments will be used as defaults.+ Use tab key to complete, readline keys to edit, enter to accept defaults.+ An optional (CODE) may follow transaction dates.+ An optional ; COMMENT may follow descriptions or amounts.+ If you make a mistake, enter < at any prompt to go one step backward.+ To end a transaction, enter . when prompted.+ To quit, enter . at a date prompt or press control-d or control-c.+ Date [2020-02-07]: 2020-01-01+ Description: * opening balances+ Account 1: assets:bank:checking+ Amount 1: $1000+ Account 2: assets:bank:savings+ Amount 2 [$-1000]: $2000+ Account 3: assets:cash+ Amount 3 [$-3000]: $100+ Account 4: liabilities:creditcard+ Amount 4 [$-3100]: $-50+ Account 5: equity:opening/closing balances+ Amount 5 [$-3050]:+ Account 6 (or . or enter to finish this transaction): .+ 2020-01-01 * opening balances+ assets:bank:checking $1000+ assets:bank:savings $2000+ assets:cash $100+ liabilities:creditcard $-50+ equity:opening/closing balances $-3050++ Save this transaction to the journal ? [y]:+ Saved.+ Starting the next transaction (. or ctrl-D/ctrl-C to quit)+ Date [2020-01-01]: .+++ If you're using version control, this could be a good time to commit+the journal. Eg:+++$ git commit -m 'initial balances' 2020.journal+++File: hledger.info, Node: Recording transactions, Next: Reconciling, Prev: Setting opening balances, Up: COMMON TASKS++16.5 Recording transactions+===========================++As you spend or receive money, you can record these transactions using+one of the methods above (text editor, hledger add) or by using the+hledger-iadd or hledger-web add-ons, or by using the import command to+convert CSV data downloaded from your bank.++ Here are some simple transactions, see the hledger_journal(5) manual+and hledger.org for more ideas:+++2020/1/10 * gift received+ assets:cash $20+ income:gifts++2020.1.12 * farmers market+ expenses:food $13+ assets:cash++2020-01-15 paycheck+ income:salary+ assets:bank:checking $1000+++File: hledger.info, Node: Reconciling, Next: Reporting, Prev: Recording transactions, Up: COMMON TASKS++16.6 Reconciling+================++Periodically you should reconcile - compare your hledger-reported+balances against external sources of truth, like bank statements or your+bank's website - to be sure that your ledger accurately represents the+real-world balances (and, that the real-world institutions have not made+a mistake!). This gets easy and fast with (1) practice and (2)+frequency. If you do it daily, it can take 2-10 minutes. If you let it+pile up, expect it to take longer as you hunt down errors and+discrepancies.++ A typical workflow:++ 1. Reconcile cash. Count what's in your wallet. Compare with what+ hledger reports (`hledger bal cash'). If they are different, try to+ remember the missing transaction, or look for the error in the+ already-recorded transactions. A register report can be helpful+ (`hledger reg cash'). If you can't find the error, add an+ adjustment transaction. Eg if you have $105 after the above, and+ can't explain the missing $2, it could be:+++ 2020-01-16 * adjust cash+ assets:cash $-2 = $105+ expenses:misc++ 2. Reconcile checking. Log in to your bank's website. Compare today's+ (cleared) balance with hledger's cleared balance (`hledger bal+ checking -C'). If they are different, track down the error or+ record the missing transaction(s) or add an adjustment+ transaction, similar to the above. Unlike the cash case, you can+ usually compare the transaction history and running balance from+ your bank with the one reported by `hledger reg checking -C'. This+ will be easier if you generally record transaction dates quite+ similar to your bank's clearing dates.++ 3. Repeat for other asset/liability accounts.+++ Tip: instead of the register command, use hledger-ui to see a+live-updating register while you edit the journal: `hledger-ui --watch+--register checking -C'++ After reconciling, it could be a good time to mark the reconciled+transactions' status as "cleared and confirmed", if you want to track+that, by adding the `*' marker. Eg in the paycheck transaction above,+insert `*' between `2020-01-15' and `paycheck'++ If you're using version control, this can be another good time to+commit:+++$ git commit -m 'txns' 2020.journal+++File: hledger.info, Node: Reporting, Next: Migrating to a new file, Prev: Reconciling, Up: COMMON TASKS++16.7 Reporting+==============++Here are some basic reports.++ Show all transactions:+++$ hledger print+2020-01-01 * opening balances+ assets:bank:checking $1000+ assets:bank:savings $2000+ assets:cash $100+ liabilities:creditcard $-50+ equity:opening/closing balances $-3050++2020-01-10 * gift received+ assets:cash $20+ income:gifts++2020-01-12 * farmers market+ expenses:food $13+ assets:cash++2020-01-15 * paycheck+ income:salary+ assets:bank:checking $1000++2020-01-16 * adjust cash+ assets:cash $-2 = $105+ expenses:misc++ Show account names, and their hierarchy:+++$ hledger accounts --tree+assets+ bank+ checking+ savings+ cash+equity+ opening/closing balances+expenses+ food+ misc+income+ gifts+ salary+liabilities+ creditcard++ Show all account totals:+++$ hledger balance+ $4105 assets+ $4000 bank+ $2000 checking+ $2000 savings+ $105 cash+ $-3050 equity:opening/closing balances+ $15 expenses+ $13 food+ $2 misc+ $-1020 income+ $-20 gifts+ $-1000 salary+ $-50 liabilities:creditcard+--------------------+ 0++ Show only asset and liability balances, as a flat list, limited to+depth 2:+++$ hledger bal assets liabilities --flat -2+ $4000 assets:bank+ $105 assets:cash+ $-50 liabilities:creditcard+--------------------+ $4055++ Show the same thing without negative numbers, formatted as a simple+balance sheet:+++$ hledger bs --flat -2+Balance Sheet 2020-01-16++ || 2020-01-16+========================++============+ Assets ||+------------------------++------------+ assets:bank || $4000+ assets:cash || $105+------------------------++------------+ || $4105+========================++============+ Liabilities ||+------------------------++------------+ liabilities:creditcard || $50+------------------------++------------+ || $50+========================++============+ Net: || $4055++ The final total is your "net worth" on the end date. (Or use `bse'+for a full balance sheet with equity.)++ Show income and expense totals, formatted as an income statement:+++hledger is+Income Statement 2020-01-01-2020-01-16++ || 2020-01-01-2020-01-16+===============++=======================+ Revenues ||+---------------++-----------------------+ income:gifts || $20+ income:salary || $1000+---------------++-----------------------+ || $1020+===============++=======================+ Expenses ||+---------------++-----------------------+ expenses:food || $13+ expenses:misc || $2+---------------++-----------------------+ || $15+===============++=======================+ Net: || $1005++ The final total is your net income during this period.++ Show transactions affecting your wallet, with running total:+++$ hledger register cash+2020-01-01 opening balances assets:cash $100 $100+2020-01-10 gift received assets:cash $20 $120+2020-01-12 farmers market assets:cash $-13 $107+2020-01-16 adjust cash assets:cash $-2 $105++ Show weekly posting counts as a bar chart:+++$ hledger activity -W+2019-12-30 *****+2020-01-06 ****+2020-01-13 ****+++File: hledger.info, Node: Migrating to a new file, Prev: Reporting, Up: COMMON TASKS++16.8 Migrating to a new file+============================++At the end of the year, you may want to continue your journal in a new+file, so that old transactions don't slow down or clutter your reports,+and to help ensure the integrity of your accounting history. See the+close command.++ If using version control, don't forget to `git add' the new file.+++File: hledger.info, Node: LIMITATIONS, Next: TROUBLESHOOTING, Prev: COMMON TASKS, Up: Top++17 LIMITATIONS+**************++The need to precede add-on command options with `--' when invoked from+hledger is awkward.++ When input data contains non-ascii characters, a suitable system+locale must be configured (or there will be an unhelpful error). Eg on+POSIX, set LANG to something other than C.++ In a Microsoft Windows CMD window, non-ascii characters and colours+are not supported.++ On Windows, non-ascii characters may not display correctly when+running a hledger built in CMD in MSYS/CYGWIN, or vice-versa.++ In a Cygwin/MSYS/Mintty window, the tab key is not supported in+hledger add.++ Not all of Ledger's journal file syntax is supported. See file format+differences.++ On large data files, hledger is slower and uses more memory than+Ledger.+++File: hledger.info, Node: TROUBLESHOOTING, Prev: LIMITATIONS, Up: Top++18 TROUBLESHOOTING+******************++Here are some issues you might encounter when you run hledger (and+remember you can also seek help from the IRC channel, mail list or bug+tracker):++ *Successfully installed, but "No command 'hledger' found"*+stack and cabal install binaries into a special directory, which should+be added to your PATH environment variable. Eg on unix-like systems,+that is ~/.local/bin and ~/.cabal/bin respectively.++ *I set a custom LEDGER_FILE, but hledger is still using the default+file*+`LEDGER_FILE' should be a real environment variable, not just a shell+variable. The command `env | grep LEDGER_FILE' should show it. You may+need to use `export'. Here's an explanation.++ *Getting errors like "Illegal byte sequence" or "Invalid or+incomplete multibyte or wide character" or "commitAndReleaseBuffer:+invalid argument (invalid character)"*+Programs compiled with GHC (hledger, haskell build tools, etc.) need to+have a UTF-8-aware locale configured in the environment, otherwise they+will fail with these kinds of errors when they encounter non-ascii+characters.++ To fix it, set the LANG environment variable to some locale which+supports UTF-8. The locale you choose must be installed on your system.++ Here's an example of setting LANG temporarily, on Ubuntu GNU/Linux:+++$ file my.journal+my.journal: UTF-8 Unicode text # the file is UTF8-encoded+$ echo $LANG+C # LANG is set to the default locale, which does not support UTF8+$ locale -a # which locales are installed ?+C+en_US.utf8 # here's a UTF8-aware one we can use+POSIX+$ LANG=en_US.utf8 hledger -f my.journal print # ensure it is used for this command++ If available, `C.UTF-8' will also work. If your preferred locale+isn't listed by `locale -a', you might need to install it. Eg on+Ubuntu/Debian:+++$ apt-get install language-pack-fr+$ locale -a+C+en_US.utf8+fr_BE.utf8+fr_CA.utf8+fr_CH.utf8+fr_FR.utf8+fr_LU.utf8+POSIX+$ LANG=fr_FR.utf8 hledger -f my.journal print++ Here's how you could set it permanently, if you use a bash shell:+++$ echo "export LANG=en_US.utf8" >>~/.bash_profile+$ bash --login++ Exact spelling and capitalisation may be important. Note the+difference on MacOS (`UTF-8', not `utf8'). Some platforms (eg ubuntu)+allow variant spellings, but others (eg macos) require it to be exact:+++$ locale -a | grep -iE en_us.*utf+en_US.UTF-8+$ LANG=en_US.UTF-8 hledger -f my.journal print++++Tag Table:+Node: Top76+Node: OPTIONS2502+Ref: #options2603+Node: General options2745+Ref: #general-options2870+Node: Command options6439+Ref: #command-options6590+Node: Command arguments6989+Ref: #command-arguments7147+Node: Special characters8025+Ref: #special-characters8188+Node: Single escaping shell metacharacters8351+Ref: #single-escaping-shell-metacharacters8592+Node: Double escaping regular expression metacharacters8994+Ref: #double-escaping-regular-expression-metacharacters9305+Node: Triple escaping for add-on commands9831+Ref: #triple-escaping-for-add-on-commands10091+Node: Less escaping10737+Ref: #less-escaping10891+Node: Unicode characters11217+Ref: #unicode-characters11382+Node: Regular expressions12791+Ref: #regular-expressions12931+Node: ENVIRONMENT14672+Ref: #environment14788+Node: DATA FILES15770+Ref: #data-files15889+Node: Data formats16430+Ref: #data-formats16548+Node: Multiple files18030+Ref: #multiple-files18172+Node: Strict mode18642+Ref: #strict-mode18757+Node: TIME PERIODS19407+Ref: #time-periods19524+Node: Smart dates19622+Ref: #smart-dates19748+Node: Report start & end date21052+Ref: #report-start-end-date21227+Node: Report intervals22771+Ref: #report-intervals22939+Node: Period expressions23327+Ref: #period-expressions23467+Node: DEPTH27846+Ref: #depth27946+Node: QUERIES28277+Ref: #queries28376+Node: COSTING32328+Ref: #costing32431+Node: VALUATION32704+Ref: #valuation32812+Node: -V Value33535+Ref: #v-value33659+Node: -X Value in specified commodity33853+Ref: #x-value-in-specified-commodity34046+Node: Valuation date34195+Ref: #valuation-date34357+Node: Market prices34794+Ref: #market-prices34975+Node: --infer-market-price market prices from transactions36157+Ref: #infer-market-price-market-prices-from-transactions36421+Node: Valuation commodity37770+Ref: #valuation-commodity37980+Node: Simple valuation examples39205+Ref: #simple-valuation-examples39401+Node: --value Flexible valuation40063+Ref: #value-flexible-valuation40265+Node: More valuation examples41907+Ref: #more-valuation-examples42108+Node: Effect of valuation on reports44114+Ref: #effect-of-valuation-on-reports44296+Node: PIVOTING52193+Ref: #pivoting52298+Node: OUTPUT53977+Ref: #output54079+Node: Output destination54130+Ref: #output-destination54263+Node: Output format54688+Ref: #output-format54811+Node: COMMANDS56974+Ref: #commands57086+Node: accounts60476+Ref: #accounts60576+Node: activity61268+Ref: #activity61380+Node: add61762+Ref: #add61865+Node: aregister64660+Ref: #aregister64774+Node: aregister and custom posting dates66969+Ref: #aregister-and-custom-posting-dates67135+Node: balance67956+Ref: #balance68075+Node: balance features68988+Ref: #balance-features69128+Node: Simple balance report70798+Ref: #simple-balance-report70980+Node: Filtered balance report72428+Ref: #filtered-balance-report72615+Node: List or tree mode72912+Ref: #list-or-tree-mode73080+Node: Depth limiting74397+Ref: #depth-limiting74563+Node: Multi-period balance report75321+Ref: #multi-period-balance-report75513+Node: Sorting by amount77769+Ref: #sorting-by-amount77938+Node: Percentages78400+Ref: #percentages78556+Node: Balance change end balance79488+Ref: #balance-change-end-balance79679+Node: Balance report types81103+Ref: #balance-report-types81293+Node: Useful balance reports85457+Ref: #useful-balance-reports85638+Node: Budget report86722+Ref: #budget-report86906+Node: Budget report start date92075+Ref: #budget-report-start-date92244+Node: Nested budgets93571+Ref: #nested-budgets93720+Node: Customising single-period balance reports97107+Ref: #customising-single-period-balance-reports97316+Node: balancesheet99473+Ref: #balancesheet99611+Node: balancesheetequity100909+Ref: #balancesheetequity101060+Node: cashflow102440+Ref: #cashflow102564+Node: check103710+Ref: #check103815+Node: Basic checks104448+Ref: #basic-checks104566+Node: Strict checks105099+Ref: #strict-checks105240+Node: Other checks105544+Ref: #other-checks105684+Node: Custom checks106037+Ref: #custom-checks106157+Node: close106575+Ref: #close106679+Node: close usage108196+Ref: #close-usage108291+Node: codes111099+Ref: #codes111209+Node: commodities111922+Ref: #commodities112051+Node: descriptions112133+Ref: #descriptions112263+Node: diff112567+Ref: #diff112675+Node: files113720+Ref: #files113822+Node: help113968+Ref: #help114070+Node: import114793+Ref: #import114909+Node: Deduplication115771+Ref: #deduplication115896+Node: Import testing117784+Ref: #import-testing117949+Node: Importing balance assignments118439+Ref: #importing-balance-assignments118645+Node: Commodity display styles119292+Ref: #commodity-display-styles119465+Node: incomestatement119594+Ref: #incomestatement119729+Node: notes121030+Ref: #notes121145+Node: payees121512+Ref: #payees121620+Node: prices122146+Ref: #prices122254+Node: print122593+Ref: #print122705+Node: print-unique128015+Ref: #print-unique128143+Node: register128429+Ref: #register128558+Node: Custom register output133002+Ref: #custom-register-output133133+Node: register-match134470+Ref: #register-match134606+Node: rewrite134954+Ref: #rewrite135071+Node: Re-write rules in a file136977+Ref: #re-write-rules-in-a-file137140+Node: Diff output format138290+Ref: #diff-output-format138473+Node: rewrite vs print --auto139565+Ref: #rewrite-vs.-print---auto139725+Node: roi140275+Ref: #roi140375+Node: Semantics of --inv and --pnl142010+Ref: #semantics-of---inv-and---pnl142192+Node: IRR and TWR explained144038+Ref: #irr-and-twr-explained144198+Node: stats147260+Ref: #stats147361+Node: tags148148+Ref: #tags148248+Node: test148765+Ref: #test148881+Node: About add-on commands149626+Ref: #about-add-on-commands149763+Node: JOURNAL FORMAT150896+Ref: #journal-format151024+Node: Transactions153204+Ref: #transactions153319+Node: Dates154336+Ref: #dates154452+Node: Simple dates154517+Ref: #simple-dates154637+Node: Secondary dates155144+Ref: #secondary-dates155292+Node: Posting dates156626+Ref: #posting-dates156749+Node: Status158118+Ref: #status158235+Node: Description159940+Ref: #description160070+Node: Payee and note160388+Ref: #payee-and-note160496+Node: Comments160830+Ref: #comments160952+Node: Tags162145+Ref: #tags-1162256+Node: Postings163654+Ref: #postings163778+Node: Virtual postings164802+Ref: #virtual-postings164913+Node: Account names166215+Ref: #account-names166352+Node: Amounts166838+Ref: #amounts166973+Node: Decimal marks digit group marks168032+Ref: #decimal-marks-digit-group-marks168221+Node: Commodity display style169568+Ref: #commodity-display-style169756+Node: Rounding171782+Ref: #rounding171900+Node: Transaction prices172310+Ref: #transaction-prices172476+Node: Lot prices lot dates174906+Ref: #lot-prices-lot-dates175089+Node: Balance assertions175576+Ref: #balance-assertions175754+Node: Assertions and ordering176784+Ref: #assertions-and-ordering176966+Node: Assertions and included files177663+Ref: #assertions-and-included-files177900+Node: Assertions and multiple -f options178231+Ref: #assertions-and-multiple--f-options178481+Node: Assertions and commodities178612+Ref: #assertions-and-commodities178838+Node: Assertions and prices179993+Ref: #assertions-and-prices180201+Node: Assertions and subaccounts180642+Ref: #assertions-and-subaccounts180865+Node: Assertions and virtual postings181189+Ref: #assertions-and-virtual-postings181425+Node: Assertions and precision181566+Ref: #assertions-and-precision181753+Node: Balance assignments182018+Ref: #balance-assignments182188+Node: Balance assignments and prices183351+Ref: #balance-assignments-and-prices183517+Node: Directives183743+Ref: #directives183906+Node: Directives and multiple files189311+Ref: #directives-and-multiple-files189507+Node: Comment blocks190169+Ref: #comment-blocks190346+Node: Including other files190521+Ref: #including-other-files190695+Node: Default year191619+Ref: #default-year191777+Node: Declaring payees192184+Ref: #declaring-payees192350+Node: Declaring commodities192595+Ref: #declaring-commodities192776+Node: Commodity error checking194617+Ref: #commodity-error-checking194767+Node: Default commodity195023+Ref: #default-commodity195203+Node: Declaring market prices196088+Ref: #declaring-market-prices196277+Node: Declaring accounts197135+Ref: #declaring-accounts197315+Node: Account error checking198522+Ref: #account-error-checking198688+Node: Account comments199865+Ref: #account-comments200049+Node: Account subdirectives200475+Ref: #account-subdirectives200660+Node: Account types200975+Ref: #account-types201149+Node: Declaring account types201884+Ref: #declaring-account-types202063+Node: Auto-detected account types202714+Ref: #auto-detected-account-types202955+Node: Interference from auto-detected account types203854+Ref: #interference-from-auto-detected-account-types204131+Node: Old account type syntax204614+Ref: #old-account-type-syntax204811+Node: Account display order205112+Ref: #account-display-order205272+Node: Rewriting accounts206423+Ref: #rewriting-accounts206602+Node: Basic aliases207361+Ref: #basic-aliases207497+Node: Regex aliases208199+Ref: #regex-aliases208361+Node: Combining aliases209081+Ref: #combining-aliases209264+Node: Aliases and multiple files210541+Ref: #aliases-and-multiple-files210740+Node: end aliases211321+Ref: #end-aliases211468+Node: Default parent account211570+Ref: #default-parent-account211760+Node: Periodic transactions212644+Ref: #periodic-transactions212827+Node: Periodic rule syntax214744+Ref: #periodic-rule-syntax214944+Node: Two spaces between period expression and description!215647+Ref: #two-spaces-between-period-expression-and-description215960+Node: Forecasting with periodic transactions216645+Ref: #forecasting-with-periodic-transactions216944+Node: Budgeting with periodic transactions218990+Ref: #budgeting-with-periodic-transactions219223+Node: Auto postings219630+Ref: #auto-postings219766+Node: Auto postings and multiple files221949+Ref: #auto-postings-and-multiple-files222147+Node: Auto postings and dates222355+Ref: #auto-postings-and-dates222623+Node: Auto postings and transaction balancing / inferred amounts / balance assertions222798+Ref: #auto-postings-and-transaction-balancing-inferred-amounts-balance-assertions223144+Node: Auto posting tags223489+Ref: #auto-posting-tags223698+Node: CSV FORMAT224335+Ref: #csv-format224463+Node: Examples227044+Ref: #examples227147+Node: Basic227354+Ref: #basic227456+Node: Bank of Ireland228000+Ref: #bank-of-ireland228137+Node: Amazon229602+Ref: #amazon229722+Node: Paypal231443+Ref: #paypal231539+Node: CSV rules239187+Ref: #csv-rules239305+Node: skip239617+Ref: #skip239712+Node: fields240084+Ref: #fields240208+Node: Transaction field names241369+Ref: #transaction-field-names241531+Node: Posting field names241642+Ref: #posting-field-names241796+Node: field assignment244157+Ref: #field-assignment244302+Node: separator245116+Ref: #separator245253+Node: if block245795+Ref: #if-block245922+Node: Matching the whole record246320+Ref: #matching-the-whole-record246497+Node: Matching individual fields247301+Ref: #matching-individual-fields247507+Node: Combining matchers247731+Ref: #combining-matchers247929+Node: Rules applied on successful match248243+Ref: #rules-applied-on-successful-match248436+Node: if table249093+Ref: #if-table249214+Node: end250950+Ref: #end251064+Node: date-format251288+Ref: #date-format251422+Node: decimal-mark252172+Ref: #decimal-mark252317+Node: newest-first252654+Ref: #newest-first252797+Node: include253480+Ref: #include253613+Node: balance-type254055+Ref: #balance-type254177+Node: Tips254877+Ref: #tips254968+Node: Rapid feedback255267+Ref: #rapid-feedback255386+Node: Valid CSV255845+Ref: #valid-csv255977+Node: File Extension256169+Ref: #file-extension256323+Node: Reading multiple CSV files256752+Ref: #reading-multiple-csv-files256939+Node: Valid transactions257179+Ref: #valid-transactions257359+Node: Deduplicating importing257987+Ref: #deduplicating-importing258168+Node: Setting amounts259200+Ref: #setting-amounts259357+Node: Amount signs261576+Ref: #amount-signs261730+Node: Setting currency/commodity262417+Ref: #setting-currencycommodity262605+Node: Amount decimal places263785+Ref: #amount-decimal-places263977+Node: Referencing other fields264289+Ref: #referencing-other-fields264488+Node: How CSV rules are evaluated265386+Ref: #how-csv-rules-are-evaluated265561+Node: TIMECLOCK FORMAT267010+Ref: #timeclock-format267150+Node: TIMEDOT FORMAT269218+Ref: #timedot-format269356+Node: COMMON TASKS273619+Ref: #common-tasks273748+Node: Getting help274155+Ref: #getting-help274289+Node: Constructing command lines274840+Ref: #constructing-command-lines275034+Node: Starting a journal file275733+Ref: #starting-a-journal-file275933+Node: Setting opening balances277120+Ref: #setting-opening-balances277318+Node: Recording transactions280451+Ref: #recording-transactions280633+Node: Reconciling281190+Ref: #reconciling281335+Node: Reporting283580+Ref: #reporting283722+Node: Migrating to a new file287642+Ref: #migrating-to-a-new-file287792+Node: LIMITATIONS288090+Ref: #limitations288218+Node: TROUBLESHOOTING288959+Ref: #troubleshooting289074 End Tag Table
embeddedfiles/hledger.txt view
@@ -4,3685 +4,6864 @@ NAME- A command-line accounting tool for both power users and folks new to- accounting.--SYNOPSIS- hledger-- hledger [-f FILE] COMMAND [OPTIONS] [ARGS]-- hledger [-f FILE] ADDONCMD -- [OPTIONS] [ARGS]--DESCRIPTION- hledger is a reliable, cross-platform set of programs for tracking- money, time, or any other commodity, using double-entry accounting and- a simple, editable file format. hledger is inspired by and largely- compatible with ledger(1).-- This is hledger's command-line interface (there are also terminal and- web interfaces). Its basic function is to read a plain text file- describing financial transactions (in accounting terms, a general jour-- nal) and print useful reports on standard output, or export them as- CSV. hledger can also read some other file formats such as CSV files,- translating them to journal format. Additionally, hledger lists other- hledger-* executables found in the user's $PATH and can invoke them as- subcommands.-- hledger reads data from one or more files in hledger journal, time-- clock, timedot, or CSV format specified with -f, or $LEDGER_FILE, or- $HOME/.hledger.journal (on windows, perhaps- C:/Users/USER/.hledger.journal). If using $LEDGER_FILE, note this must- be a real environment variable, not a shell variable. You can specify- standard input with -f-.-- Transactions are dated movements of money between two (or more) named- accounts, and are recorded with journal entries like this:-- 2015/10/16 bought food- expenses:food $10- assets:cash-- For more about this format, see hledger_journal(5).-- Most users use a text editor to edit the journal, usually with an edi-- tor mode such as ledger-mode for added convenience. hledger's interac-- tive add command is another way to record new transactions. hledger- never changes existing transactions.-- To get started, you can either save some entries like the above in- ~/.hledger.journal, or run hledger add and follow the prompts. Then- try some commands like hledger print or hledger balance. Run hledger- with no arguments for a list of commands.--COMMON TASKS- Here are some quick examples of how to do some basic tasks with- hledger. For more details, see the reference section below, the- hledger_journal(5) manual, or the more extensive docs at- https://hledger.org.-- Getting help- $ hledger # show available commands- $ hledger --help # show common options- $ hledger CMD --help # show common and command options, and command help- $ hledger help # show available manuals/topics- $ hledger help hledger # show hledger manual as info/man/text (auto-chosen)- $ hledger help journal --man # show the journal manual as a man page- $ hledger help --help # show more detailed help for the help command-- Find more docs, chat, mail list, reddit, issue tracker:- https://hledger.org#help-feedback-- Constructing command lines- hledger has an extensive and powerful command line interface. We- strive to keep it simple and ergonomic, but you may run into one of the- confusing real world details described in OPTIONS, below. If that hap-- pens, here are some tips that may help:-- o command-specific options must go after the command (it's fine to put- all options there) (hledger CMD OPTS ARGS)-- o running add-on executables directly simplifies command line parsing- (hledger-ui OPTS ARGS)-- o enclose "problematic" args in single quotes-- o if needed, also add a backslash to hide regular expression metachar-- acters from the shell-- o to see how a misbehaving command is being parsed, add --debug=2.-- Starting a journal file- hledger looks for your accounting data in a journal file,- $HOME/.hledger.journal by default:-- $ hledger stats- The hledger journal file "/Users/simon/.hledger.journal" was not found.- Please create it first, eg with "hledger add" or a text editor.- Or, specify an existing journal file with -f or LEDGER_FILE.-- You can override this by setting the LEDGER_FILE environment variable.- It's a good practice to keep this important file under version control,- and to start a new file each year. So you could do something like- this:-- $ mkdir ~/finance- $ cd ~/finance- $ git init- Initialized empty Git repository in /Users/simon/finance/.git/- $ touch 2020.journal- $ echo "export LEDGER_FILE=$HOME/finance/2020.journal" >> ~/.bashrc- $ source ~/.bashrc- $ hledger stats- Main file : /Users/simon/finance/2020.journal- Included files :- Transactions span : to (0 days)- Last transaction : none- Transactions : 0 (0.0 per day)- Transactions last 30 days: 0 (0.0 per day)- Transactions last 7 days : 0 (0.0 per day)- Payees/descriptions : 0- Accounts : 0 (depth 0)- Commodities : 0 ()- Market prices : 0 ()-- Setting opening balances- Pick a starting date for which you can look up the balances of some- real-world assets (bank accounts, wallet..) and liabilities (credit- cards..).-- To avoid a lot of data entry, you may want to start with just one or- two accounts, like your checking account or cash wallet; and pick a- recent starting date, like today or the start of the week. You can- always come back later and add more accounts and older transactions, eg- going back to january 1st.-- Add an opening balances transaction to the journal, declaring the bal-- ances on this date. Here are two ways to do it:-- o The first way: open the journal in any text editor and save an entry- like this:-- 2020-01-01 * opening balances- assets:bank:checking $1000 = $1000- assets:bank:savings $2000 = $2000- assets:cash $100 = $100- liabilities:creditcard $-50 = $-50- equity:opening/closing balances-- These are start-of-day balances, ie whatever was in the account at- the end of the previous day.-- The * after the date is an optional status flag. Here it means- "cleared & confirmed".-- The currency symbols are optional, but usually a good idea as you'll- be dealing with multiple currencies sooner or later.-- The = amounts are optional balance assertions, providing extra error- checking.-- o The second way: run hledger add and follow the prompts to record a- similar transaction:-- $ hledger add- Adding transactions to journal file /Users/simon/finance/2020.journal- Any command line arguments will be used as defaults.- Use tab key to complete, readline keys to edit, enter to accept defaults.- An optional (CODE) may follow transaction dates.- An optional ; COMMENT may follow descriptions or amounts.- If you make a mistake, enter < at any prompt to go one step backward.- To end a transaction, enter . when prompted.- To quit, enter . at a date prompt or press control-d or control-c.- Date [2020-02-07]: 2020-01-01- Description: * opening balances- Account 1: assets:bank:checking- Amount 1: $1000- Account 2: assets:bank:savings- Amount 2 [$-1000]: $2000- Account 3: assets:cash- Amount 3 [$-3000]: $100- Account 4: liabilities:creditcard- Amount 4 [$-3100]: $-50- Account 5: equity:opening/closing balances- Amount 5 [$-3050]:- Account 6 (or . or enter to finish this transaction): .- 2020-01-01 * opening balances- assets:bank:checking $1000- assets:bank:savings $2000- assets:cash $100- liabilities:creditcard $-50- equity:opening/closing balances $-3050-- Save this transaction to the journal ? [y]:- Saved.- Starting the next transaction (. or ctrl-D/ctrl-C to quit)- Date [2020-01-01]: .-- If you're using version control, this could be a good time to commit- the journal. Eg:-- $ git commit -m 'initial balances' 2020.journal-- Recording transactions- As you spend or receive money, you can record these transactions using- one of the methods above (text editor, hledger add) or by using the- hledger-iadd or hledger-web add-ons, or by using the import command to- convert CSV data downloaded from your bank.-- Here are some simple transactions, see the hledger_journal(5) manual- and hledger.org for more ideas:-- 2020/1/10 * gift received- assets:cash $20- income:gifts-- 2020.1.12 * farmers market- expenses:food $13- assets:cash-- 2020-01-15 paycheck- income:salary- assets:bank:checking $1000-- Reconciling- Periodically you should reconcile - compare your hledger-reported bal-- ances against external sources of truth, like bank statements or your- bank's website - to be sure that your ledger accurately represents the- real-world balances (and, that the real-world institutions have not- made a mistake!). This gets easy and fast with (1) practice and (2)- frequency. If you do it daily, it can take 2-10 minutes. If you let- it pile up, expect it to take longer as you hunt down errors and dis-- crepancies.-- A typical workflow:-- 1. Reconcile cash. Count what's in your wallet. Compare with what- hledger reports (hledger bal cash). If they are different, try to- remember the missing transaction, or look for the error in the- already-recorded transactions. A register report can be helpful- (hledger reg cash). If you can't find the error, add an adjustment- transaction. Eg if you have $105 after the above, and can't explain- the missing $2, it could be:-- 2020-01-16 * adjust cash- assets:cash $-2 = $105- expenses:misc-- 2. Reconcile checking. Log in to your bank's website. Compare today's- (cleared) balance with hledger's cleared balance (hledger bal check-- ing -C). If they are different, track down the error or record the- missing transaction(s) or add an adjustment transaction, similar to- the above. Unlike the cash case, you can usually compare the trans-- action history and running balance from your bank with the one- reported by hledger reg checking -C. This will be easier if you- generally record transaction dates quite similar to your bank's- clearing dates.-- 3. Repeat for other asset/liability accounts.-- Tip: instead of the register command, use hledger-ui to see a live-- updating register while you edit the journal: hledger-ui --watch --reg-- ister checking -C-- After reconciling, it could be a good time to mark the reconciled- transactions' status as "cleared and confirmed", if you want to track- that, by adding the * marker. Eg in the paycheck transaction above,- insert * between 2020-01-15 and paycheck-- If you're using version control, this can be another good time to com-- mit:-- $ git commit -m 'txns' 2020.journal-- Reporting- Here are some basic reports.-- Show all transactions:-- $ hledger print- 2020-01-01 * opening balances- assets:bank:checking $1000- assets:bank:savings $2000- assets:cash $100- liabilities:creditcard $-50- equity:opening/closing balances $-3050-- 2020-01-10 * gift received- assets:cash $20- income:gifts-- 2020-01-12 * farmers market- expenses:food $13- assets:cash-- 2020-01-15 * paycheck- income:salary- assets:bank:checking $1000-- 2020-01-16 * adjust cash- assets:cash $-2 = $105- expenses:misc-- Show account names, and their hierarchy:-- $ hledger accounts --tree- assets- bank- checking- savings- cash- equity- opening/closing balances- expenses- food- misc- income- gifts- salary- liabilities- creditcard-- Show all account totals:-- $ hledger balance- $4105 assets- $4000 bank- $2000 checking- $2000 savings- $105 cash- $-3050 equity:opening/closing balances- $15 expenses- $13 food- $2 misc- $-1020 income- $-20 gifts- $-1000 salary- $-50 liabilities:creditcard- --------------------- 0-- Show only asset and liability balances, as a flat list, limited to- depth 2:-- $ hledger bal assets liabilities --flat -2- $4000 assets:bank- $105 assets:cash- $-50 liabilities:creditcard- --------------------- $4055-- Show the same thing without negative numbers, formatted as a simple- balance sheet:-- $ hledger bs --flat -2- Balance Sheet 2020-01-16-- || 2020-01-16- ========================++============- Assets ||- ------------------------++------------- assets:bank || $4000- assets:cash || $105- ------------------------++------------- || $4105- ========================++============- Liabilities ||- ------------------------++------------- liabilities:creditcard || $50- ------------------------++------------- || $50- ========================++============- Net: || $4055-- The final total is your "net worth" on the end date. (Or use bse for a- full balance sheet with equity.)-- Show income and expense totals, formatted as an income statement:-- hledger is- Income Statement 2020-01-01-2020-01-16-- || 2020-01-01-2020-01-16- ===============++=======================- Revenues ||- ---------------++------------------------ income:gifts || $20- income:salary || $1000- ---------------++------------------------ || $1020- ===============++=======================- Expenses ||- ---------------++------------------------ expenses:food || $13- expenses:misc || $2- ---------------++------------------------ || $15- ===============++=======================- Net: || $1005-- The final total is your net income during this period.-- Show transactions affecting your wallet, with running total:-- $ hledger register cash- 2020-01-01 opening balances assets:cash $100 $100- 2020-01-10 gift received assets:cash $20 $120- 2020-01-12 farmers market assets:cash $-13 $107- 2020-01-16 adjust cash assets:cash $-2 $105-- Show weekly posting counts as a bar chart:-- $ hledger activity -W- 2019-12-30 *****- 2020-01-06 ****- 2020-01-13 ****-- Migrating to a new file- At the end of the year, you may want to continue your journal in a new- file, so that old transactions don't slow down or clutter your reports,- and to help ensure the integrity of your accounting history. See the- close command.-- If using version control, don't forget to git add the new file.--OPTIONS- General options- To see general usage help, including general options which are sup-- ported by most hledger commands, run hledger -h.-- General help options:-- -h --help- show general usage (or after COMMAND, command usage)-- --version- show version-- --debug[=N]- show debug output (levels 1-9, default: 1)-- General input options:-- -f FILE --file=FILE- use a different input file. For stdin, use - (default:- $LEDGER_FILE or $HOME/.hledger.journal)-- --rules-file=RULESFILE- Conversion rules file to use when reading CSV (default:- FILE.rules)-- --separator=CHAR- Field separator to expect when reading CSV (default: ',')-- --alias=OLD=NEW- rename accounts named OLD to NEW-- --anon anonymize accounts and payees-- --pivot FIELDNAME- use some other field or tag for the account name-- -I --ignore-assertions- disable balance assertion checks (note: does not disable balance- assignments)-- -s --strict- do extra error checking (check that all posted accounts are- declared)-- General reporting options:-- -b --begin=DATE- include postings/txns on or after this date-- -e --end=DATE- include postings/txns before this date-- -D --daily- multiperiod/multicolumn report by day-- -W --weekly- multiperiod/multicolumn report by week-- -M --monthly- multiperiod/multicolumn report by month-- -Q --quarterly- multiperiod/multicolumn report by quarter-- -Y --yearly- multiperiod/multicolumn report by year-- -p --period=PERIODEXP- set start date, end date, and/or reporting interval all at once- using period expressions syntax-- --date2- match the secondary date instead (see command help for other- effects)-- -U --unmarked- include only unmarked postings/txns (can combine with -P or -C)-- -P --pending- include only pending postings/txns-- -C --cleared- include only cleared postings/txns-- -R --real- include only non-virtual postings-- -NUM --depth=NUM- hide/aggregate accounts or postings more than NUM levels deep-- -E --empty- show items with zero amount, normally hidden (and vice-versa in- hledger-ui/hledger-web)-- -B --cost- convert amounts to their cost/selling amount at transaction time-- -V --market- convert amounts to their market value in default valuation com-- modities-- -X --exchange=COMM- convert amounts to their market value in commodity COMM-- --value- convert amounts to cost or market value, more flexibly than- -B/-V/-X-- --infer-value- with -V/-X/--value, also infer market prices from transactions-- --auto apply automated posting rules to modify transactions.-- --forecast- generate future transactions from periodic transaction rules,- for the next 6 months or till report end date. In hledger-ui,- also make ordinary future transactions visible.-- --color=WHEN (or --colour=WHEN)- Should color-supporting commands use ANSI color codes in text- output. 'auto' (default): whenever stdout seems to be a color-- supporting terminal. 'always' or 'yes': always, useful eg when- piping output into 'less -R'. 'never' or 'no': never. A- NO_COLOR environment variable overrides this.-- When a reporting option appears more than once in the command line, the- last one takes precedence.-- Some reporting options can also be written as query arguments.-- Command options- To see options for a particular command, including command-specific- options, run: hledger COMMAND -h.-- Command-specific options must be written after the command name, eg:- hledger print -x.-- Additionally, if the command is an add-on, you may need to put its- options after a double-hyphen, eg: hledger ui -- --watch. Or, you can- run the add-on executable directly: hledger-ui --watch.-- Command arguments- Most hledger commands accept arguments after the command name, which- are often a query, filtering the data in some way.-- You can save a set of command line options/arguments in a file, and- then reuse them by writing @FILENAME as a command line argument. Eg:- hledger bal @foo.args. (To prevent this, eg if you have an argument- that begins with a literal @, precede it with --, eg: hledger bal --- @ARG).-- Inside the argument file, each line should contain just one option or- argument. Avoid the use of spaces, except inside quotes (or you'll see- a confusing error). Between a flag and its argument, use = (or noth-- ing). Bad:-- assets depth:2- -X USD-- Good:-- assets- depth:2- -X=USD-- For special characters (see below), use one less level of quoting than- you would at the command prompt. Bad:-- -X"$"-- Good:-- -X$-- See also: Save frequently used options.-- Queries- One of hledger's strengths is being able to quickly report on precise- subsets of your data. Most commands accept an optional query expres-- sion, written as arguments after the command name, to filter the data- by date, account name or other criteria. The syntax is similar to a- web search: one or more space-separated search terms, quotes to enclose- whitespace, prefixes to match specific fields, a not: prefix to negate- the match.-- We do not yet support arbitrary boolean combinations of search terms;- instead most commands show transactions/postings/accounts which match- (or negatively match):-- o any of the description terms AND-- o any of the account terms AND-- o any of the status terms AND-- o all the other terms.-- The print command instead shows transactions which:-- o match any of the description terms AND-- o have any postings matching any of the positive account terms AND-- o have no postings matching any of the negative account terms AND-- o match all the other terms.-- The following kinds of search terms can be used. Remember these can- also be prefixed with not:, eg to exclude a particular subaccount.-- REGEX, acct:REGEX- match account names by this regular expression. (With no pre-- fix, acct: is assumed.) same as above-- amt:N, amt:<N, amt:<=N, amt:>N, amt:>=N- match postings with a single-commodity amount that is equal to,- less than, or greater than N. (Multi-commodity amounts are not- tested, and will always match.) The comparison has two modes: if- N is preceded by a + or - sign (or is 0), the two signed numbers- are compared. Otherwise, the absolute magnitudes are compared,- ignoring sign.-- code:REGEX- match by transaction code (eg check number)-- cur:REGEX- match postings or transactions including any amounts whose cur-- rency/commodity symbol is fully matched by REGEX. (For a par-- tial match, use .*REGEX.*). Note, to match characters which are- regex-significant, like the dollar sign ($), you need to prepend- \. And when using the command line you need to add one more- level of quoting to hide it from the shell, so eg do: hledger- print cur:'\$' or hledger print cur:\\$.-- desc:REGEX- match transaction descriptions.-- date:PERIODEXPR- match dates within the specified period. PERIODEXPR is a period- expression (with no report interval). Examples: date:2016,- date:thismonth, date:2000/2/1-2/15, date:lastweek-. If the- --date2 command line flag is present, this matches secondary- dates instead.-- date2:PERIODEXPR- match secondary dates within the specified period.-- depth:N- match (or display, depending on command) accounts at or above- this depth-- note:REGEX- match transaction notes (part of description right of |, or- whole description when there's no |)-- payee:REGEX- match transaction payee/payer names (part of description left of- |, or whole description when there's no |)-- real:, real:0- match real or virtual postings respectively-- status:, status:!, status:*- match unmarked, pending, or cleared transactions respectively-- tag:REGEX[=REGEX]- match by tag name, and optionally also by tag value. Note a- tag: query is considered to match a transaction if it matches- any of the postings. Also remember that postings inherit the- tags of their parent transaction.-- The following special search term is used automatically in hledger-web,- only:-- inacct:ACCTNAME- tells hledger-web to show the transaction register for this- account. Can be filtered further with acct etc.-- Some of these can also be expressed as command-line options (eg depth:2- is equivalent to --depth 2). Generally you can mix options and query- arguments, and the resulting query will be their intersection (perhaps- excluding the -p/--period option).-- Special characters in arguments and queries- In shell command lines, option and argument values which contain "prob-- lematic" characters, ie spaces, and also characters significant to your- shell such as <, >, (, ), | and $, should be escaped by enclosing them- in quotes or by writing backslashes before the characters. Eg:-- hledger register -p 'last year' "accounts receivable (receiv-- able|payable)" amt:\>100.-- More escaping- Characters significant both to the shell and in regular expressions may- need one extra level of escaping. These include parentheses, the pipe- symbol and the dollar sign. Eg, to match the dollar symbol, bash users- should do:-- hledger balance cur:'\$'-- or:-- hledger balance cur:\\$-- Even more escaping- When hledger runs an add-on executable (eg you type hledger ui, hledger- runs hledger-ui), it de-escapes command-line options and arguments- once, so you might need to triple-escape. Eg in bash, running the ui- command and matching the dollar sign, it's:-- hledger ui cur:'\\$'-- or:-- hledger ui cur:\\\\$-- If you asked why four slashes above, this may help:--- unescaped: $- escaped: \$- double-escaped: \\$- triple-escaped: \\\\$-- (The number of backslashes in fish shell is left as an exercise for the- reader.)-- You can always avoid the extra escaping for add-ons by running the add-- on directly:-- hledger-ui cur:\\$-- Less escaping- Inside an argument file, or in the search field of hledger-ui or- hledger-web, or at a GHCI prompt, you need one less level of escaping- than at the command line. And backslashes may work better than quotes.- Eg:-- ghci> :main balance cur:\$-- Unicode characters- hledger is expected to handle non-ascii characters correctly:-- o they should be parsed correctly in input files and on the command- line, by all hledger tools (add, iadd, hledger-web's search/add/edit- forms, etc.)-- o they should be displayed correctly by all hledger tools, and on-- screen alignment should be preserved.-- This requires a well-configured environment. Here are some tips:-- o A system locale must be configured, and it must be one that can- decode the characters being used. In bash, you can set a locale like- this: export LANG=en_US.UTF-8. There are some more details in Trou-- bleshooting. This step is essential - without it, hledger will quit- on encountering a non-ascii character (as with all GHC-compiled pro-- grams).-- o your terminal software (eg Terminal.app, iTerm, CMD.exe, xterm..)- must support unicode-- o the terminal must be using a font which includes the required unicode- glyphs-- o the terminal should be configured to display wide characters as dou-- ble width (for report alignment)-- o on Windows, for best results you should run hledger in the same kind- of environment in which it was built. Eg hledger built in the stan-- dard CMD.EXE environment (like the binaries on our download page)- might show display problems when run in a cygwin or msys terminal,- and vice versa. (See eg #961).-- Input files- hledger reads transactions from a data file (and the add command writes- to it). By default this file is $HOME/.hledger.journal (or on Windows,- something like C:/Users/USER/.hledger.journal). You can override this- with the $LEDGER_FILE environment variable:-- $ setenv LEDGER_FILE ~/finance/2016.journal- $ hledger stats-- or with the -f/--file option:-- $ hledger -f /some/file stats-- The file name - (hyphen) means standard input:-- $ cat some.journal | hledger -f--- Usually the data file is in hledger's journal format, but it can be in- any of the supported file formats, which currently are:--- Reader: Reads: Used for file exten-- sions:- ------------------------------------------------------------------------------ journal hledger journal files and some Ledger .journal .j .hledger- journals, for transactions .ledger- time- timeclock files, for precise time log- .timeclock- clock ging- timedot timedot files, for approximate time .timedot- logging- csv comma/semicolon/tab/other-separated .csv .ssv .tsv- values, for data import-- hledger detects the format automatically based on the file extensions- shown above. If it can't recognise the file extension, it assumes- journal format. So for non-journal files, it's important to use a- recognised file extension, so as to either read successfully or to show- relevant error messages.-- When you can't ensure the right file extension, not to worry: you can- force a specific reader/format by prefixing the file path with the for-- mat and a colon. Eg to read a .dat file as csv:-- $ hledger -f csv:/some/csv-file.dat stats- $ echo 'i 2009/13/1 08:00:00' | hledger print -ftimeclock:--- You can specify multiple -f options, to read multiple files as one big- journal. There are some limitations with this:-- o directives in one file will not affect the other files-- o balance assertions will not see any account balances from previous- files-- If you need either of those things, you can-- o use a single parent file which includes the others-- o or concatenate the files into one before reading, eg: cat a.journal- b.journal | hledger -f- CMD.-- Strict mode- hledger checks input files for valid data. By default, the most impor-- tant errors are detected, while still accepting easy journal files- without a lot of declarations:-- o Are the input files parseable, with valid syntax ?-- o Are all transactions balanced ?-- o Do all balance assertions pass ?-- With the -s/--strict flag, additional checks are performed:-- o Are all accounts posted to, declared with an account directive ?- (Account error checking)-- o Are all commodities declared with a commodity directive ? (Commodity- error checking)-- See also: https://hledger.org/checking-for-errors.html-- experimental.-- Output destination- hledger commands send their output to the terminal by default. You can- of course redirect this, eg into a file, using standard shell syntax:-- $ hledger print > foo.txt-- Some commands (print, register, stats, the balance commands) also pro-- vide the -o/--output-file option, which does the same thing without- needing the shell. Eg:-- $ hledger print -o foo.txt- $ hledger print -o - # write to stdout (the default)-- Output format- Some commands (print, register, the balance commands) offer a choice of- output format. In addition to the usual plain text format (txt), there- are CSV (csv), HTML (html), JSON (json) and SQL (sql). This is con-- trolled by the -O/--output-format option:-- $ hledger print -O csv-- or, by a file extension specified with -o/--output-file:-- $ hledger balancesheet -o foo.html # write HTML to foo.html-- The -O option can be used to override the file extension if needed:-- $ hledger balancesheet -o foo.txt -O html # write HTML to foo.txt-- Some notes about JSON output:-- o This feature is marked experimental, and not yet much used; you- should expect our JSON to evolve. Real-world feedback is welcome.-- o Our JSON is rather large and verbose, as it is quite a faithful rep-- resentation of hledger's internal data types. To understand the- JSON, read the Haskell type definitions, which are mostly in- https://github.com/simonmichael/hledger/blob/master/hledger-- lib/Hledger/Data/Types.hs.-- o hledger represents quantities as Decimal values storing up to 255- significant digits, eg for repeating decimals. Such numbers can- arise in practice (from automatically-calculated transaction prices),- and would break most JSON consumers. So in JSON, we show quantities- as simple Numbers with at most 10 decimal places. We don't limit the- number of integer digits, but that part is under your control. We- hope this approach will not cause problems in practice; if you find- otherwise, please let us know. (Cf #1195)-- Notes about SQL output:-- o SQL output is also marked experimental, and much like JSON could use- real-world feedback.-- o SQL output is expected to work with sqlite, MySQL and PostgreSQL-- o SQL output is structured with the expectations that statements will- be executed in the empty database. If you already have tables cre-- ated via SQL output of hledger, you would probably want to either- clear tables of existing data (via delete or truncate SQL statements)- or drop tables completely as otherwise your postings will be duped.-- Regular expressions- hledger uses regular expressions in a number of places:-- o query terms, on the command line and in the hledger-web search form:- REGEX, desc:REGEX, cur:REGEX, tag:...=REGEX-- o CSV rules conditional blocks: if REGEX ...-- o account alias directives and options: alias /REGEX/ = REPLACEMENT,- --alias /REGEX/=REPLACEMENT-- hledger's regular expressions come from the regex-tdfa library. If- they're not doing what you expect, it's important to know exactly what- they support:-- 1. they are case insensitive-- 2. they are infix matching (they do not need to match the entire thing- being matched)-- 3. they are POSIX ERE (extended regular expressions)-- 4. they also support GNU word boundaries (\b, \B, \<, \>)-- 5. they do not support backreferences; if you write \1, it will match- the digit 1. Except when doing text replacement, eg in account- aliases, where backreferences can be used in the replacement string- to reference capturing groups in the search regexp.-- 6. they do not support mode modifiers ((?s)), character classes (\w,- \d), or anything else not mentioned above.-- Some things to note:-- o In the alias directive and --alias option, regular expressions must- be enclosed in forward slashes (/REGEX/). Elsewhere in hledger,- these are not required.-- o In queries, to match a regular expression metacharacter like $ as a- literal character, prepend a backslash. Eg to search for amounts- with the dollar sign in hledger-web, write cur:\$.-- o On the command line, some metacharacters like $ have a special mean-- ing to the shell and so must be escaped at least once more. See Spe-- cial characters.-- Smart dates- hledger's user interfaces accept a flexible "smart date" syntax (unlike- dates in the journal file). Smart dates allow some english words, can- be relative to today's date, and can have less-significant date parts- omitted (defaulting to 1).-- Examples:--- 2004/10/1, 2004-01-01, exact date, several separators allowed. Year- 2004.9.1 is 4+ digits, month is 1-12, day is 1-31- 2004 start of year- 2004/10 start of month- 10/1 month and day in current year- 21 day in current month- october, oct start of month in current year- yesterday, today, tomor- -1, 0, 1 days from today- row- last/this/next -1, 0, 1 periods from the current period- day/week/month/quar-- ter/year- 20181201 8 digit YYYYMMDD with valid year month and day- 201812 6 digit YYYYMM with valid year and month-- Counterexamples - malformed digit sequences might give surprising- results:--- 201813 6 digits with an invalid month is parsed as start of- 6-digit year- 20181301 8 digits with an invalid month is parsed as start of- 8-digit year- 20181232 8 digits with an invalid day gives an error- 201801012 9+ digits beginning with a valid YYYYMMDD gives an error-- Report start & end date- Most hledger reports show the full span of time represented by the- journal data, by default. So, the effective report start and end dates- will be the earliest and latest transaction or posting dates found in- the journal.-- Often you will want to see a shorter time span, such as the current- month. You can specify a start and/or end date using -b/--begin,- -e/--end, -p/--period or a date: query (described below). All of these- accept the smart date syntax.-- Some notes:-- o As in Ledger, end dates are exclusive, so you need to write the date- after the last day you want to include.-- o As noted in reporting options: among start/end dates specified with- options, the last (i.e. right-most) option takes precedence.-- o The effective report start and end dates are the intersection of the- start/end dates from options and that from date: queries. That is,- date:2019-01 date:2019 -p'2000 to 2030' yields January 2019, the- smallest common time span.-- Examples:--- -b 2016/3/17 begin on St. Patrick's day 2016- -e 12/1 end at the start of december 1st of the current year- (11/30 will be the last date included)- -b thismonth all transactions on or after the 1st of the current month- -p thismonth all transactions in the current month- date:2016/3/17.. the above written as queries instead (.. can also be- replaced with -)-- date:..12/1- date:thismonth..- date:thismonth-- Report intervals- A report interval can be specified so that commands like register, bal-- ance and activity will divide their reports into multiple subperiods.- The basic intervals can be selected with one of -D/--daily,- -W/--weekly, -M/--monthly, -Q/--quarterly, or -Y/--yearly. More com-- plex intervals may be specified with a period expression. Report- intervals can not be specified with a query.-- Period expressions- The -p/--period option accepts period expressions, a shorthand way of- expressing a start date, end date, and/or report interval all at once.-- Here's a basic period expression specifying the first quarter of 2009.- Note, hledger always treats start dates as inclusive and end dates as- exclusive:-- -p "from 2009/1/1 to 2009/4/1"-- Keywords like "from" and "to" are optional, and so are the spaces, as- long as you don't run two dates together. "to" can also be written as- ".." or "-". These are equivalent to the above:--- -p "2009/1/1 2009/4/1"- -p2009/1/1to2009/4/1- -p2009/1/1..2009/4/1-- Dates are smart dates, so if the current year is 2009, the above can- also be written as:--- -p "1/1 4/1"- -p "january-apr"- -p "this year to 4/1"-- If you specify only one date, the missing start or end date will be the- earliest or latest transaction in your journal:--- -p "from 2009/1/1" everything after january- 1, 2009- -p "from 2009/1" the same- -p "from 2009" the same- -p "to 2009" everything before january- 1, 2009-- A single date with no "from" or "to" defines both the start and end- date like so:--- -p "2009" the year 2009; equivalent- to "2009/1/1 to 2010/1/1"- -p "2009/1" the month of jan; equiva-- lent to "2009/1/1 to- 2009/2/1"- -p "2009/1/1" just that day; equivalent- to "2009/1/1 to 2009/1/2"-- Or you can specify a single quarter like so:----- -p "2009Q1" first quarter of 2009,- equivalent to "2009/1/1 to- 2009/4/1"- -p "q4" fourth quarter of the cur-- rent year-- The argument of -p can also begin with, or be, a report interval- expression. The basic report intervals are daily, weekly, monthly,- quarterly, or yearly, which have the same effect as the -D,-W,-M,-Q, or- -Y flags. Between report interval and start/end dates (if any), the- word in is optional. Examples:--- -p "weekly from 2009/1/1 to 2009/4/1"- -p "monthly in 2008"- -p "quarterly"-- Note that weekly, monthly, quarterly and yearly intervals will always- start on the first day on week, month, quarter or year accordingly, and- will end on the last day of same period, even if associated period- expression specifies different explicit start and end date.-- For example:--- -p "weekly from 2009/1/1 starts on 2008/12/29, closest preceding Mon-- to 2009/4/1" day- -p "monthly in starts on 2018/11/01- 2008/11/25"- -p "quarterly from starts on 2009/04/01, ends on 2009/06/30,- 2009-05-05 to 2009-06-01" which are first and last days of Q2 2009- -p "yearly from starts on 2009/01/01, first day of 2009- 2009-12-29"-- The following more complex report intervals are also supported:- biweekly, fortnightly, bimonthly, every day|week|month|quarter|year,- every N days|weeks|months|quarters|years.-- All of these will start on the first day of the requested period and- end on the last one, as described above.-- Examples:--- -p "bimonthly from 2008" periods will have boundaries on 2008/01/01,- 2008/03/01, ...- -p "every 2 weeks" starts on closest preceding Monday- -p "every 5 month from periods will have boundaries on 2009/03/01,- 2009/03" 2009/08/01, ...-- If you want intervals that start on arbitrary day of your choosing and- span a week, month or year, you need to use any of the following:-- every Nth day of week, every WEEKDAYNAME (eg- mon|tue|wed|thu|fri|sat|sun), every Nth day [of month], every Nth WEEK-- DAYNAME [of month], every MM/DD [of year], every Nth MMM [of year],- every MMM Nth [of year].-- Examples:--- -p "every 2nd day of periods will go from Tue to Tue- week"- -p "every Tue" same- -p "every 15th day" period boundaries will be on 15th of each- month-- -p "every 2nd Monday" period boundaries will be on second Monday of- each month- -p "every 11/05" yearly periods with boundaries on 5th of Nov- -p "every 5th Nov" same- -p "every Nov 5th" same-- Show historical balances at end of 15th each month (N is exclusive end- date):-- hledger balance -H -p "every 16th day"-- Group postings from start of wednesday to end of next tuesday (N is- start date and exclusive end date):-- hledger register checking -p "every 3rd day of week"-- Depth limiting- With the --depth N option (short form: -N), commands like account, bal-- ance and register will show only the uppermost accounts in the account- tree, down to level N. Use this when you want a summary with less- detail. This flag has the same effect as a depth: query argument (so- -2, --depth=2 or depth:2 are equivalent).-- Pivoting- Normally hledger sums amounts, and organizes them in a hierarchy, based- on account name. The --pivot FIELD option causes it to sum and orga-- nize hierarchy based on the value of some other field instead. FIELD- can be: code, description, payee, note, or the full name (case insensi-- tive) of any tag. As with account names, values containing colon:sepa-- rated:parts will be displayed hierarchically in reports.-- --pivot is a general option affecting all reports; you can think of- hledger transforming the journal before any other processing, replacing- every posting's account name with the value of the specified field on- that posting, inheriting it from the transaction or using a blank value- if it's not present.-- An example:-- 2016/02/16 Member Fee Payment- assets:bank account 2 EUR- income:member fees -2 EUR ; member: John Doe-- Normal balance report showing account names:-- $ hledger balance- 2 EUR assets:bank account- -2 EUR income:member fees- --------------------- 0-- Pivoted balance report, using member: tag values instead:-- $ hledger balance --pivot member- 2 EUR- -2 EUR John Doe- --------------------- 0-- One way to show only amounts with a member: value (using a query,- described below):-- $ hledger balance --pivot member tag:member=.- -2 EUR John Doe- --------------------- -2 EUR-- Another way (the acct: query matches against the pivoted "account- name"):-- $ hledger balance --pivot member acct:.- -2 EUR John Doe- --------------------- -2 EUR-- Valuation- Instead of reporting amounts in their original commodity, hledger can- convert them to cost/sale amount (using the conversion rate recorded in- the transaction), or to market value (using some market price on a cer-- tain date). This is controlled by the --value=TYPE[,COMMODITY] option,- but we also provide the simpler -B/-V/-X flags, and usually one of- those is all you need.-- -B: Cost- The -B/--cost flag converts amounts to their cost or sale amount at- transaction time, if they have a transaction price specified.-- -V: Value- The -V/--market flag converts amounts to market value in their default- valuation commodity, using the market prices in effect on the valuation- date(s), if any. More on these in a minute.-- -X: Value in specified commodity- The -X/--exchange=COMM option is like -V, except you tell it which cur-- rency you want to convert to, and it tries to convert everything to- that.-- Valuation date- Since market prices can change from day to day, market value reports- have a valuation date (or more than one), which determines which market- prices will be used.-- For single period reports, if an explicit report end date is specified,- that will be used as the valuation date; otherwise the valuation date- is "today".-- For multiperiod reports, each column/period is valued on the last day- of the period, by default.-- Market prices- (experimental)-- To convert a commodity A to its market value in another commodity B,- hledger looks for a suitable market price (exchange rate) as follows,- in this order of preference :-- 1. A declared market price or inferred market price: A's latest market- price in B on or before the valuation date as declared by a P direc-- tive, or (with the --infer-value flag) inferred from transaction- prices.-- 2. A reverse market price: the inverse of a declared or inferred market- price from B to A.-- 3. A a forward chain of market prices: a synthetic price formed by com-- bining the shortest chain of "forward" (only 1 above) market prices,- leading from A to B.-- 4. A any chain of market prices: a chain of any market prices, includ-- ing both forward and reverse prices (1 and 2 above), leading from A- to B.-- Amounts for which no applicable market price can be found, are not con-- verted.-- --infer-value: market prices from transactions- (experimental)-- Normally, market value in hledger is fully controlled by, and requires,- P directives in your journal. Since adding and updating those can be a- chore, and since transactions usually take place at close to market- value, why not use the recorded transaction prices as additional market- prices (as Ledger does) ? We could produce value reports without need-- ing P directives at all.-- Adding the --infer-value flag to -V, -X or --value enables this. So- for example, hledger bs -V --infer-value will get market prices both- from P directives and from transactions.-- There is a downside: value reports can sometimes be affected in confus-- ing/undesired ways by your journal entries. If this happens to you,- read all of this Valuation section carefully, and try adding --debug or- --debug=2 to troubleshoot.-- --infer-value can infer market prices from:-- o multicommodity transactions with explicit prices (@/@@)-- o multicommodity transactions with implicit prices (no @, two commodi-- ties, unbalanced). (With these, the order of postings matters.- hledger print -x can be useful for troubleshooting.)-- o but not, currently, from "more correct" multicommodity transactions- (no @, multiple commodities, balanced).-- Valuation commodity- (experimental)-- When you specify a valuation commodity (-X COMM or --value TYPE,COMM):- hledger will convert all amounts to COMM, wherever it can find a suit-- able market price (including by reversing or chaining prices).-- When you leave the valuation commodity unspecified (-V or --value- TYPE):- For each commodity A, hledger picks a default valuation commodity as- follows, in this order of preference:-- 1. The price commodity from the latest P-declared market price for A on- or before valuation date.-- 2. The price commodity from the latest P-declared market price for A on- any date. (Allows conversion to proceed when there are inferred- prices before the valuation date.)-- 3. If there are no P directives at all (any commodity or date) and the- --infer-value flag is used: the price commodity from the latest- transaction-inferred price for A on or before valuation date.-- This means:-- o If you have P directives, they determine which commodities -V will- convert, and to what.-- o If you have no P directives, and use the --infer-value flag, transac-- tion prices determine it.-- Amounts for which no valuation commodity can be found are not con-- verted.-- Simple valuation examples- Here are some quick examples of -V:-- ; one euro is worth this many dollars from nov 1- P 2016/11/01 EUR $1.10-- ; purchase some euros on nov 3- 2016/11/3- assets:euros EUR100- assets:checking-- ; the euro is worth fewer dollars by dec 21- P 2016/12/21 EUR $1.03-- How many euros do I have ?-- $ hledger -f t.j bal -N euros- EUR100 assets:euros-- What are they worth at end of nov 3 ?-- $ hledger -f t.j bal -N euros -V -e 2016/11/4- $110.00 assets:euros-- What are they worth after 2016/12/21 ? (no report end date specified,- defaults to today)-- $ hledger -f t.j bal -N euros -V- $103.00 assets:euros-- --value: Flexible valuation- -B, -V and -X are special cases of the more general --value option:-- --value=TYPE[,COMM] TYPE is cost, then, end, now or YYYY-MM-DD.- COMM is an optional commodity symbol.- Shows amounts converted to:- - cost commodity using transaction prices (then optionally to COMM using market prices at period end(s))- - default valuation commodity (or COMM) using market prices at posting dates- - default valuation commodity (or COMM) using market prices at period end(s)- - default valuation commodity (or COMM) using current market prices- - default valuation commodity (or COMM) using market prices at some date-- The TYPE part selects cost or value and valuation date:-- --value=cost- Convert amounts to cost, using the prices recorded in transac-- tions.-- --value=then- Convert amounts to their value in the default valuation commod-- ity, using market prices on each posting's date. This is cur-- rently supported only by the print and register commands.-- --value=end- Convert amounts to their value in the default valuation commod-- ity, using market prices on the last day of the report period- (or if unspecified, the journal's end date); or in multiperiod- reports, market prices on the last day of each subperiod.-- --value=now- Convert amounts to their value in the default valuation commod-- ity using current market prices (as of when report is gener-- ated).-- --value=YYYY-MM-DD- Convert amounts to their value in the default valuation commod-- ity using market prices on this date.-- To select a different valuation commodity, add the optional ,COMM part:- a comma, then the target commodity's symbol. Eg: --value=now,EUR.- hledger will do its best to convert amounts to this commodity, deducing- market prices as described above.-- More valuation examples- Here are some examples showing the effect of --value, as seen with- print:-- P 2000-01-01 A 1 B- P 2000-02-01 A 2 B- P 2000-03-01 A 3 B- P 2000-04-01 A 4 B-- 2000-01-01- (a) 1 A @ 5 B-- 2000-02-01- (a) 1 A @ 6 B-- 2000-03-01- (a) 1 A @ 7 B-- Show the cost of each posting:-- $ hledger -f- print --value=cost- 2000-01-01- (a) 5 B-- 2000-02-01- (a) 6 B-- 2000-03-01- (a) 7 B-- Show the value as of the last day of the report period (2000-02-29):-- $ hledger -f- print --value=end date:2000/01-2000/03- 2000-01-01- (a) 2 B-- 2000-02-01- (a) 2 B-- With no report period specified, that shows the value as of the last- day of the journal (2000-03-01):-- $ hledger -f- print --value=end- 2000-01-01- (a) 3 B-- 2000-02-01- (a) 3 B-- 2000-03-01- (a) 3 B-- Show the current value (the 2000-04-01 price is still in effect today):-- $ hledger -f- print --value=now- 2000-01-01- (a) 4 B-- 2000-02-01- (a) 4 B-- 2000-03-01- (a) 4 B-- Show the value on 2000/01/15:-- $ hledger -f- print --value=2000-01-15- 2000-01-01- (a) 1 B-- 2000-02-01- (a) 1 B-- 2000-03-01- (a) 1 B-- You may need to explicitly set a commodity's display style, when- reverse prices are used. Eg this output might be surprising:-- P 2000-01-01 A 2B-- 2000-01-01- a 1B- b-- $ hledger print -x -X A- 2000-01-01- a 0- b 0-- Explanation: because there's no amount or commodity directive specify-- ing a display style for A, 0.5A gets the default style, which shows no- decimal digits. Because the displayed amount looks like zero, the com-- modity symbol and minus sign are not displayed either. Adding a com-- modity directive sets a more useful display style for A:-- P 2000-01-01 A 2B- commodity 0.00A-- 2000-01-01- a 1B- b-- $ hledger print -X A- 2000-01-01- a 0.50A- b -0.50A-- Effect of valuation on reports- Here is a reference for how valuation is supposed to affect each part- of hledger's reports (and a glossary). (It's wide, you'll have to- scroll sideways.) It may be useful when troubleshooting. If you find- problems, please report them, ideally with a reproducible example.- Related: #329, #1083.--- Report type -B, -V, -X --value=then --value=end --value=DATE,- --value=cost --value=now- ----------------------------------------------------------------------------------------------- print- posting cost value at value at value at value at- amounts report end or posting date report or DATE/today- today journal end- balance unchanged unchanged unchanged unchanged unchanged- asser-- tions/assign-- ments-- register- starting bal- cost value at day not sup- value at day value at- ance (-H) before report ported before report DATE/today- or journal or journal- start start-- posting cost value at value at value at value at- amounts report end or posting date report or DATE/today- today journal end- summary post- summarised value at sum of post- value at value at- ing amounts cost period ends ings in period ends DATE/today- with report interval,- interval valued at- interval- start- running sum/average sum/average sum/average sum/average sum/average- total/average of displayed of displayed of displayed of displayed of displayed- values values values values values-- balance (bs,- bse, cf, is)- balance sums of costs value at not sup- value at value at- changes report end or ported report or DATE/today of- today of sums journal end sums of post-- of postings of sums of ings- postings- budget like balance like balance not sup- like balances like balance- amounts changes changes ported changes- (--budget)- grand total sum of dis- sum of dis- not sup- sum of dis- sum of dis-- played values played values ported played values played values-- balance (bs,- bse, cf, is)- with report- interval- starting bal- sums of costs value at not sup- value at sums of post-- ances (-H) of postings report start ported report start ings before- before report of sums of of sums of report start- start all postings all postings- before report before report- start start- balance sums of costs same as not sup- balance value at- changes (bal, of postings --value=end ported change in DATE/today of- is, bs in period each period, sums of post-- --change, cf valued at ings- --change) period ends- end balances sums of costs same as not sup- period end value at- (bal -H, is of postings --value=end ported balances, DATE/today of- --H, bs, cf) from before valued at sums of post-- report start period ends ings- to period end- budget like balance like balance not sup- like balances like balance- amounts changes/end changes/end ported changes/end- (--budget) balances balances balances- row totals, sums, aver- sums, aver- not sup- sums, aver- sums, aver-- row averages ages of dis- ages of dis- ported ages of dis- ages of dis-- (-T, -A) played values played values played values played values- column totals sums of dis- sums of dis- not sup- sums of dis- sums of dis-- played values played values ported played values played values- grand total, sum, average sum, average not sup- sum, average sum, average- grand average of column of column ported of column of column- totals totals totals totals--- --cumulative is omitted to save space, it works like -H but with a zero- starting balance.-- Glossary:-- cost calculated using price(s) recorded in the transaction(s).-- value market value using available market price declarations, or the- unchanged amount if no conversion rate can be found.-- report start- the first day of the report period specified with -b or -p or- date:, otherwise today.-- report or journal start- the first day of the report period specified with -b or -p or- date:, otherwise the earliest transaction date in the journal,- otherwise today.-- report end- the last day of the report period specified with -e or -p or- date:, otherwise today.-- report or journal end- the last day of the report period specified with -e or -p or- date:, otherwise the latest transaction date in the journal,- otherwise today.-- report interval- a flag (-D/-W/-M/-Q/-Y) or period expression that activates the- report's multi-period mode (whether showing one or many subperi-- ods).--COMMANDS- hledger provides a number of commands for producing reports and manag-- ing your data. Run hledger with no arguments to list the commands- available.-- To run a command, write its name (or its abbreviation shown in the com-- mands list, or any unambiguous prefix of the name) as hledger's first- argument. Eg: hledger balance or hledger bal.-- Here are the built-in commands:-- Data entry (these modify the journal file):-- o add - add transactions using guided prompts-- o import - add any new transactions from other files (eg csv)-- Data management:-- o check - check for various kinds of issue in the data-- o close (equity) - generate balance-resetting transactions-- o diff - compare account transactions in two journal files-- o rewrite - generate extra postings, similar to print --auto-- Financial statements:-- o aregister (areg) - show transactions in a particular account-- o balancesheet (bs) - show assets, liabilities and net worth-- o balancesheetequity (bse) - show assets, liabilities and equity-- o cashflow (cf) - show changes in liquid assets-- o incomestatement (is) - show revenues and expenses-- o roi - show return on investments-- Miscellaneous reports:-- o accounts (a) - show account names-- o activity - show postings-per-interval bar charts-- o balance (b, bal) - show balance changes/end balances/budgets in- accounts-- o codes - show transaction codes-- o commodities - show commodity/currency symbols-- o descriptions - show unique transaction descriptions-- o files - show input file paths-- o notes - show unique note segments of transaction descriptions-- o payees - show unique payee segments of transaction descriptions-- o prices - show market price records-- o print (p, txns) - show transactions (journal entries)-- o print-unique - show only transactions with unique descriptions-- o register (r, reg) - show postings in one or more accounts & running- total-- o register-match - show a recent posting that best matches a descrip-- tion-- o stats - show journal statistics-- o tags - show tag names-- o test - run self tests-- Next, the detailed command docs, in alphabetical order.-- accounts- accounts, a- Show account names.-- This command lists account names, either declared with account direc-- tives (--declared), posted to (--used), or both (the default). With- query arguments, only matched account names and account names refer-- enced by matched postings are shown. It shows a flat list by default.- With --tree, it uses indentation to show the account hierarchy. In- flat mode you can add --drop N to omit the first few account name com-- ponents. Account names can be depth-clipped with depth:N or --depth N- or -N.-- Examples:-- $ hledger accounts- assets:bank:checking- assets:bank:saving- assets:cash- expenses:food- expenses:supplies- income:gifts- income:salary- liabilities:debts-- activity- activity- Show an ascii barchart of posting counts per interval.-- The activity command displays an ascii histogram showing transaction- counts by day, week, month or other reporting interval (by day is the- default). With query arguments, it counts only matched transactions.-- Examples:-- $ hledger activity --quarterly- 2008-01-01 **- 2008-04-01 *******- 2008-07-01- 2008-10-01 **-- add- add- Prompt for transactions and add them to the journal. Any arguments- will be used as default inputs for the first N prompts.-- Many hledger users edit their journals directly with a text editor, or- generate them from CSV. For more interactive data entry, there is the- add command, which prompts interactively on the console for new trans-- actions, and appends them to the journal file (if there are multiple -f- FILE options, the first file is used.) Existing transactions are not- changed. This is the only hledger command that writes to the journal- file.-- To use it, just run hledger add and follow the prompts. You can add as- many transactions as you like; when you are finished, enter . or press- control-d or control-c to exit.-- Features:-- o add tries to provide useful defaults, using the most similar (by- description) recent transaction (filtered by the query, if any) as a- template.-- o You can also set the initial defaults with command line arguments.-- o Readline-style edit keys can be used during data entry.-- o The tab key will auto-complete whenever possible - accounts, descrip-- tions, dates (yesterday, today, tomorrow). If the input area is- empty, it will insert the default value.-- o If the journal defines a default commodity, it will be added to any- bare numbers entered.-- o A parenthesised transaction code may be entered following a date.-- o Comments and tags may be entered following a description or amount.-- o If you make a mistake, enter < at any prompt to go one step backward.-- o Input prompts are displayed in a different colour when the terminal- supports it.-- Example (see the tutorial for a detailed explanation):-- $ hledger add- Adding transactions to journal file /src/hledger/examples/sample.journal- Any command line arguments will be used as defaults.- Use tab key to complete, readline keys to edit, enter to accept defaults.- An optional (CODE) may follow transaction dates.- An optional ; COMMENT may follow descriptions or amounts.- If you make a mistake, enter < at any prompt to go one step backward.- To end a transaction, enter . when prompted.- To quit, enter . at a date prompt or press control-d or control-c.- Date [2015/05/22]:- Description: supermarket- Account 1: expenses:food- Amount 1: $10- Account 2: assets:checking- Amount 2 [$-10.0]:- Account 3 (or . or enter to finish this transaction): .- 2015/05/22 supermarket- expenses:food $10- assets:checking $-10.0-- Save this transaction to the journal ? [y]:- Saved.- Starting the next transaction (. or ctrl-D/ctrl-C to quit)- Date [2015/05/22]: <CTRL-D> $-- On Microsoft Windows, the add command makes sure that no part of the- file path ends with a period, as that would cause problems (#1056).-- aregister- aregister, areg-- Show the transactions and running historical balance in an account,- with each line item representing one transaction.-- aregister shows the transactions affecting a particular account and its- subaccounts, with each line item representing a whole transaction - as- in bank statements, hledger-ui, hledger-web and other accounting apps.-- Note this is unlike the register command, which shows individual post-- ings and does not always show a single account or a historical balance.-- A reminder, "historical" balances include any balance from transactions- before the report start date, so (if opening balances are recorded cor-- rectly) aregister will show the real-world balances of an account, as- you would see in a bank statement.-- As a quick rule of thumb, use aregister for reconciling real-world- asset/liability accounts and register for reviewing detailed rev-- enues/expenses.-- aregister shows the register for just one account (and its subac-- counts). This account must be specified as the first argument. You- can write either the full account name, or a case-insensitive regular- expression which will select the alphabetically first matched account.- (Eg if you have assets:aaa:checking and assets:bbb:checking accounts,- hledger areg checking would select assets:aaa:checking.)-- Any additional arguments form a query which will filter the transac-- tions shown.-- Each aregister line item shows:-- o the transaction's date (or the relevant posting's date if different,- see below)-- o the names of all the other account(s) involved in this transaction- (probably abbreviated)-- o the total change to this account's balance from this transaction-- o the account's historical running balance after this transaction.-- Transactions making a net change of zero are not shown by default; add- the -E/--empty flag to show them.-- aregister ignores a depth limit, so its final total will always match a- balance report with similar arguments.-- This command also supports the output destination and output format- options The output formats supported are txt, csv, and json.-- aregister and custom posting dates- Transactions whose date is outside the report period can still be- shown, if they have a posting to this account dated inside the report- period. (And in this case it's the posting date that is shown.) This- ensures that aregister can show an accurate historical running balance,- matching the one shown by register -H with the same arguments.-- To filter strictly by transaction date instead, add the --txn-dates- flag. If you use this flag and some of your postings have custom- dates, it's probably best to assume the running balance is wrong.-- Examples:-- Show all transactions and historical running balance in the first- account whose name contains "checking":-- $ hledger areg checking-- Show transactions and historical running balance in all asset accounts- during july:-- $ hledger areg assets date:jul-- balance- balance, bal, b- Show accounts and their balances.-- The balance command is hledger's most versatile command. Note, despite- the name, it is not always used for showing real-world account bal-- ances; the more accounting-aware balancesheet and incomestatement may- be more convenient for that.-- By default, it displays all accounts, and each account's change in bal-- ance during the entire period of the journal. Balance changes are cal-- culated by adding up the postings in each account. You can limit the- postings matched, by a query, to see fewer accounts, changes over a- different time period, changes from only cleared transactions, etc.-- If you include an account's complete history of postings in the report,- the balance change is equivalent to the account's current ending bal-- ance. For a real-world account, typically you won't have all transac-- tions in the journal; instead you'll have all transactions after a cer-- tain date, and an "opening balances" transaction setting the correct- starting balance on that date. Then the balance command will show- real-world account balances. In some cases the -H/--historical flag is- used to ensure this (more below).-- This command also supports the output destination and output format- options The output formats supported are (in most modes): txt, csv,- html, and json.-- The balance command can produce several styles of report:--- Single-period flat balance report- This is the default for hledger's balance command: a flat list of all- (or with a query, matched) accounts, showing full account names.- Accounts are sorted by declaration order if any, and then by account- name. Accounts which have zero balance are not shown unless -E/--empty- is used. The reported balances' total is shown as the last line,- unless disabled by -N/--no-total.-- $ hledger bal- $1 assets:bank:saving- $-2 assets:cash- $1 expenses:food- $1 expenses:supplies- $-1 income:gifts- $-1 income:salary- $1 liabilities:debts- --------------------- 0--- Single-period tree-mode balance report- With the -t/--tree flag, accounts are displayed hierarchically, showing- subaccounts as short names indented below their parent. (This is the- default style in Ledger and in older hledger versions.)-- $ hledger balance- $-1 assets- $1 bank:saving- $-2 cash- $2 expenses- $1 food- $1 supplies- $-2 income- $-1 gifts- $-1 salary- $1 liabilities:debts- --------------------- 0-- For more compact output, "boring" accounts containing a single inter-- esting subaccount and no balance of their own (assets:bank and liabili-- ties here) are elided into the following line, unless --no-elide is- used. And accounts which have zero balance and no non-zero subaccounts- are omitted, unless -E/--empty is used.-- Account balances in tree mode are "inclusive" - they include the bal-- ances of any subaccounts. Eg, the assets $-1 balance here includes the- $1 from assets:bank:saving and the $-2 from assets:cash. (And it would- include balance posted to the assets account itself, if there was any).- Note this causes some repetition, and the final total (0) is the sum of- the top-level balances, not of all the balances shown.-- Each group of sibling accounts is sorted separately, by declaration- order and then by account name.-- Multi-period balance report- Multi-period balance reports are a very useful hledger feature, acti-- vated if you provide one of the reporting interval flags, such as- -M/--monthly. They are similar to single-period balance reports, but- they show the report as a table, with columns representing one or more- successive time periods. This is the usually the preferred style of- balance report in hledger (even for a single period).-- Multi-period balance reports come in several types, showing different- information:-- 1. A balance change report: by default, each column shows the sum of- postings in that period, ie the account's change of balance in that- period. This is useful eg for a monthly income statement:-- $ hledger balance --quarterly income expenses -E- Balance changes in 2008:-- || 2008q1 2008q2 2008q3 2008q4- ===================++=================================- expenses:food || 0 $1 0 0- expenses:supplies || 0 $1 0 0- income:gifts || 0 $-1 0 0- income:salary || $-1 0 0 0- -------------------++---------------------------------- || $-1 $1 0 0-- 2. A cumulative end balance report: with --cumulative, each column- shows the end balance for that period, accumulating the changes- across periods, starting from 0 at the report start date:-- $ hledger balance --quarterly income expenses -E --cumulative- Ending balances (cumulative) in 2008:-- || 2008/03/31 2008/06/30 2008/09/30 2008/12/31- ===================++=================================================- expenses:food || 0 $1 $1 $1- expenses:supplies || 0 $1 $1 $1- income:gifts || 0 $-1 $-1 $-1- income:salary || $-1 $-1 $-1 $-1- -------------------++-------------------------------------------------- || $-1 0 0 0-- 3. A historical end balance report: with --historical/-H, each column- shows the actual historical end balance for that period, accumulat-- ing the changes across periods, and including the balance from any- postings before the report start date. This is useful eg for a- multi-period balance sheet, and when you want to see balances only- after a certain date:-- $ hledger balance ^assets ^liabilities --quarterly --historical --begin 2008/4/1- Ending balances (historical) in 2008/04/01-2008/12/31:-- || 2008/06/30 2008/09/30 2008/12/31- ======================++=====================================- assets:bank:checking || $1 $1 0- assets:bank:saving || $1 $1 $1- assets:cash || $-2 $-2 $-2- liabilities:debts || 0 0 $1- ----------------------++-------------------------------------- || 0 0 0-- Note that --cumulative or --historical/-H disable --row-total/-T, since- summing end balances generally does not make sense.-- With a reporting interval (like --quarterly above), the report- start/end dates will be adjusted if necessary so that they encompass- the displayed report periods. This is so that the first and last peri-- ods will be "full" and comparable to the others.-- The -E/--empty flag does two things in multicolumn balance reports:- first, the report will show all columns within the specified report- period (without -E, leading and trailing columns with all zeroes are- not shown). Second, all accounts which existed at the report start- date will be considered, not just the ones with activity during the- report period (use -E to include low-activity accounts which would oth-- erwise would be omitted).-- The -T/--row-total flag adds an additional column showing the total for- each row.-- The -A/--average flag adds a column showing the average value in each- row.-- Here's an example of all three:-- $ hledger balance -Q income expenses --tree -ETA- Balance changes in 2008:-- || 2008q1 2008q2 2008q3 2008q4 Total Average- ============++===================================================- expenses || 0 $2 0 0 $2 $1- food || 0 $1 0 0 $1 0- supplies || 0 $1 0 0 $1 0- income || $-1 $-1 0 0 $-2 $-1- gifts || 0 $-1 0 0 $-1 0- salary || $-1 0 0 0 $-1 0- ------------++---------------------------------------------------- || $-1 $1 0 0 0 0-- (Average is rounded to the dollar here since all journal amounts are)-- The --transpose flag can be used to exchange the rows and columns of a- multicolumn report.-- When showing multicommodity amounts, multicolumn balance reports will- elide any amounts which have more than two commodities, since otherwise- columns could get very wide. The --no-elide flag disables this. Hid-- ing totals with the -N/--no-total flag can also help reduce the width- of multicommodity reports.-- When the report is still too wide, a good workaround is to pipe it into- less -RS (-R for colour, -S to chop long lines). Eg: hledger bal -D- --color=yes | less -RS.-- Depth limiting- With a depth:N query, or --depth N option, or just -N, balance reports- will show accounts only to the specified depth. This is very useful to- hide low-level accounts and get an overview. Eg, limiting to depth 1- shows the top-level accounts:-- $ hledger balance -N -1- $-1 assets- $2 expenses- $-2 income- $1 liabilities-- Accounts at the depth limit will include the balances of any hidden- subaccounts (even in flat mode, which normally shows exclusive bal-- ances).-- You can also drop account name components from the start of account- names, using --drop N. This can be useful to hide unwanted top-level- detail.-- Colour support- In terminal output, when colour is enabled, the balance command shows- negative amounts in red.-- Sorting by amount- With -S/--sort-amount, accounts with the largest (most positive) bal-- ances are shown first. For example, hledger bal expenses -MAS shows- your biggest averaged monthly expenses first.-- Revenues and liability balances are typically negative, however, so -S- shows these in reverse order. To work around this, you can add- --invert to flip the signs. Or, use one of the sign-flipping reports- like balancesheet or incomestatement, which also support -S. Eg:- hledger is -MAS.-- Percentages- With -% or --percent, balance reports show each account's value- expressed as a percentage of the column's total. This is useful to get- an overview of the relative sizes of account balances. For example to- obtain an overview of expenses:-- $ hledger balance expenses -%- 100.0 % expenses- 50.0 % food- 50.0 % supplies- --------------------- 100.0 %-- Note that --tree does not have an effect on -%. The percentages are- always relative to the total sum of each column, they are never rela-- tive to the parent account.-- Since the percentages are relative to the columns sum, it is usually- not useful to calculate percentages if the signs of the amounts are- mixed. Although the results are technically correct, they are most- likely useless. Especially in a balance report that sums up to zero- (eg hledger balance -B) all percentage values will be zero.-- This flag does not work if the report contains any mixed commodity- accounts. If there are mixed commodity accounts in the report be sure- to use -V or -B to coerce the report into using a single commodity.--- Customising single-period balance reports- You can customise the layout of single-period balance reports with- --format FMT, which sets the format of each line. Eg:-- $ hledger balance --format "%20(account) %12(total)"- assets $-1- bank:saving $1- cash $-2- expenses $2- food $1- supplies $1- income $-2- gifts $-1- salary $-1- liabilities:debts $1- ---------------------------------- 0-- The FMT format string (plus a newline) specifies the formatting applied- to each account/balance pair. It may contain any suitable text, with- data fields interpolated like so:-- %[MIN][.MAX](FIELDNAME)-- o MIN pads with spaces to at least this width (optional)-- o MAX truncates at this width (optional)-- o FIELDNAME must be enclosed in parentheses, and can be one of:-- o depth_spacer - a number of spaces equal to the account's depth, or- if MIN is specified, MIN * depth spaces.-- o account - the account's name-- o total - the account's balance/posted total, right justified-- Also, FMT can begin with an optional prefix to control how multi-com-- modity amounts are rendered:-- o %_ - render on multiple lines, bottom-aligned (the default)-- o %^ - render on multiple lines, top-aligned-- o %, - render on one line, comma-separated-- There are some quirks. Eg in one-line mode, %(depth_spacer) has no- effect, instead %(account) has indentation built in. Experimentation- may be needed to get pleasing results.-- Some example formats:-- o %(total) - the account's total-- o %-20.20(account) - the account's name, left justified, padded to 20- characters and clipped at 20 characters-- o %,%-50(account) %25(total) - account name padded to 50 characters,- total padded to 20 characters, with multiple commodities rendered on- one line-- o %20(total) %2(depth_spacer)%-(account) - the default format for the- single-column balance report-- Budget report- There is also a special balance report mode for showing budget perfor-- mance. The --budget flag activates extra columns showing the budget- goals for each account and period, if any. For this report, budget- goals are defined by periodic transactions. This is very useful for- comparing planned and actual income, expenses, time usage, etc.-- For example, you can take average monthly expenses in the common- expense categories to construct a minimal monthly budget:-- ;; Budget- ~ monthly- income $2000- expenses:food $400- expenses:bus $50- expenses:movies $30- assets:bank:checking-- ;; Two months worth of expenses- 2017-11-01- income $1950- expenses:food $396- expenses:bus $49- expenses:movies $30- expenses:supplies $20- assets:bank:checking-- 2017-12-01- income $2100- expenses:food $412- expenses:bus $53- expenses:gifts $100- assets:bank:checking-- You can now see a monthly budget report:-- $ hledger balance -M --budget- Budget performance in 2017/11/01-2017/12/31:-- || Nov Dec- ======================++====================================================- assets || $-2445 [ 99% of $-2480] $-2665 [ 107% of $-2480]- assets:bank || $-2445 [ 99% of $-2480] $-2665 [ 107% of $-2480]- assets:bank:checking || $-2445 [ 99% of $-2480] $-2665 [ 107% of $-2480]- expenses || $495 [ 103% of $480] $565 [ 118% of $480]- expenses:bus || $49 [ 98% of $50] $53 [ 106% of $50]- expenses:food || $396 [ 99% of $400] $412 [ 103% of $400]- expenses:movies || $30 [ 100% of $30] 0 [ 0% of $30]- income || $1950 [ 98% of $2000] $2100 [ 105% of $2000]- ----------------------++----------------------------------------------------- || 0 [ 0] 0 [ 0]-- This is different from a normal balance report in several ways:-- o Only accounts with budget goals during the report period are shown,- by default.-- o In each column, in square brackets after the actual amount, budget- goal amounts are shown, and the actual/goal percentage. (Note: bud-- get goals should be in the same commodity as the actual amount.)-- o All parent accounts are always shown, even in flat mode. Eg assets,- assets:bank, and expenses above.-- o Amounts always include all subaccounts, budgeted or unbudgeted, even- in flat mode.-- This means that the numbers displayed will not always add up! Eg above,- the expenses actual amount includes the gifts and supplies transac-- tions, but the expenses:gifts and expenses:supplies accounts are not- shown, as they have no budget amounts declared.-- This can be confusing. When you need to make things clearer, use the- -E/--empty flag, which will reveal all accounts including unbudgeted- ones, giving the full picture. Eg:-- $ hledger balance -M --budget --empty- Budget performance in 2017/11/01-2017/12/31:-- || Nov Dec- ======================++====================================================- assets || $-2445 [ 99% of $-2480] $-2665 [ 107% of $-2480]- assets:bank || $-2445 [ 99% of $-2480] $-2665 [ 107% of $-2480]- assets:bank:checking || $-2445 [ 99% of $-2480] $-2665 [ 107% of $-2480]- expenses || $495 [ 103% of $480] $565 [ 118% of $480]- expenses:bus || $49 [ 98% of $50] $53 [ 106% of $50]- expenses:food || $396 [ 99% of $400] $412 [ 103% of $400]- expenses:gifts || 0 $100- expenses:movies || $30 [ 100% of $30] 0 [ 0% of $30]- expenses:supplies || $20 0- income || $1950 [ 98% of $2000] $2100 [ 105% of $2000]- ----------------------++----------------------------------------------------- || 0 [ 0] 0 [ 0]-- You can roll over unspent budgets to next period with --cumulative:-- $ hledger balance -M --budget --cumulative- Budget performance in 2017/11/01-2017/12/31:-- || Nov Dec- ======================++====================================================- assets || $-2445 [ 99% of $-2480] $-5110 [ 103% of $-4960]- assets:bank || $-2445 [ 99% of $-2480] $-5110 [ 103% of $-4960]- assets:bank:checking || $-2445 [ 99% of $-2480] $-5110 [ 103% of $-4960]- expenses || $495 [ 103% of $480] $1060 [ 110% of $960]- expenses:bus || $49 [ 98% of $50] $102 [ 102% of $100]- expenses:food || $396 [ 99% of $400] $808 [ 101% of $800]- expenses:movies || $30 [ 100% of $30] $30 [ 50% of $60]- income || $1950 [ 98% of $2000] $4050 [ 101% of $4000]- ----------------------++----------------------------------------------------- || 0 [ 0] 0 [ 0]-- For more examples and notes, see Budgeting.-- Budget report start date- This might be a bug, but for now: when making budget reports, it's a- good idea to explicitly set the report's start date to the first day of- a reporting period, because a periodic rule like ~ monthly generates- its transactions on the 1st of each month, and if your journal has no- regular transactions on the 1st, the default report start date could- exclude that budget goal, which can be a little surprising. Eg here- the default report period is just the day of 2020-01-15:-- ~ monthly in 2020- (expenses:food) $500-- 2020-01-15- expenses:food $400- assets:checking-- $ hledger bal expenses --budget- Budget performance in 2020-01-15:-- || 2020-01-15- ==============++============- <unbudgeted> || $400- --------------++------------- || $400-- To avoid this, specify the budget report's period, or at least the- start date, with -b/-e/-p/date:, to ensure it includes the budget goal- transactions (periodic transactions) that you want. Eg, adding -b- 2020/1/1 to the above:-- $ hledger bal expenses --budget -b 2020/1/1- Budget performance in 2020-01-01..2020-01-15:-- || 2020-01-01..2020-01-15- ===============++========================- expenses:food || $400 [80% of $500]- ---------------++------------------------- || $400 [80% of $500]-- Nested budgets- You can add budgets to any account in your account hierarchy. If you- have budgets on both parent account and some of its children, then bud-- get(s) of the child account(s) would be added to the budget of their- parent, much like account balances behave.-- In the most simple case this means that once you add a budget to any- account, all its parents would have budget as well.-- To illustrate this, consider the following budget:-- ~ monthly from 2019/01- expenses:personal $1,000.00- expenses:personal:electronics $100.00- liabilities-- With this, monthly budget for electronics is defined to be $100 and- budget for personal expenses is an additional $1000, which implicitly- means that budget for both expenses:personal and expenses is $1100.-- Transactions in expenses:personal:electronics will be counted both- towards its $100 budget and $1100 of expenses:personal , and transac-- tions in any other subaccount of expenses:personal would be counted- towards only towards the budget of expenses:personal.-- For example, let's consider these transactions:-- ~ monthly from 2019/01- expenses:personal $1,000.00- expenses:personal:electronics $100.00- liabilities-- 2019/01/01 Google home hub- expenses:personal:electronics $90.00- liabilities $-90.00-- 2019/01/02 Phone screen protector- expenses:personal:electronics:upgrades $10.00- liabilities-- 2019/01/02 Weekly train ticket- expenses:personal:train tickets $153.00- liabilities-- 2019/01/03 Flowers- expenses:personal $30.00- liabilities-- As you can see, we have transactions in expenses:personal:electron-- ics:upgrades and expenses:personal:train tickets, and since both of- these accounts are without explicitly defined budget, these transac-- tions would be counted towards budgets of expenses:personal:electronics- and expenses:personal accordingly:-- $ hledger balance --budget -M- Budget performance in 2019/01:-- || Jan- ===============================++===============================- expenses || $283.00 [ 26% of $1100.00]- expenses:personal || $283.00 [ 26% of $1100.00]- expenses:personal:electronics || $100.00 [ 100% of $100.00]- liabilities || $-283.00 [ 26% of $-1100.00]- -------------------------------++-------------------------------- || 0 [ 0]-- And with --empty, we can get a better picture of budget allocation and- consumption:-- $ hledger balance --budget -M --empty- Budget performance in 2019/01:-- || Jan- ========================================++===============================- expenses || $283.00 [ 26% of $1100.00]- expenses:personal || $283.00 [ 26% of $1100.00]- expenses:personal:electronics || $100.00 [ 100% of $100.00]- expenses:personal:electronics:upgrades || $10.00- expenses:personal:train tickets || $153.00- liabilities || $-283.00 [ 26% of $-1100.00]- ----------------------------------------++-------------------------------- || 0 [ 0]-- balancesheet- balancesheet, bs- This command displays a balance sheet, showing historical ending bal-- ances of asset and liability accounts. (To see equity as well, use the- balancesheetequity command.) Amounts are shown with normal positive- sign, as in conventional financial statements.-- The asset and liability accounts shown are those accounts declared with- the Asset or Cash or Liability type, or otherwise all accounts under a- top-level asset or liability account (case insensitive, plurals- allowed).-- Example:-- $ hledger balancesheet- Balance Sheet-- Assets:- $-1 assets- $1 bank:saving- $-2 cash- --------------------- $-1-- Liabilities:- $1 liabilities:debts- --------------------- $1-- Total:- --------------------- 0-- With a reporting interval, multiple columns will be shown, one for each- report period. As with multicolumn balance reports, you can alter the- report mode with --change/--cumulative/--historical. Normally bal-- ancesheet shows historical ending balances, which is what you need for- a balance sheet; note this means it ignores report begin dates (and- -T/--row-total, since summing end balances generally does not make- sense). Instead of absolute values percentages can be displayed with- -%.-- This command also supports the output destination and output format- options The output formats supported are txt, csv, html, and (experi-- mental) json.-- balancesheetequity- balancesheetequity, bse- This command displays a balance sheet, showing historical ending bal-- ances of asset, liability and equity accounts. Amounts are shown with- normal positive sign, as in conventional financial statements.-- The asset, liability and equity accounts shown are those accounts- declared with the Asset, Cash, Liability or Equity type, or otherwise- all accounts under a top-level asset, liability or equity account (case- insensitive, plurals allowed).-- Example:-- $ hledger balancesheetequity- Balance Sheet With Equity-- Assets:- $-2 assets- $1 bank:saving- $-3 cash- --------------------- $-2-- Liabilities:- $1 liabilities:debts- --------------------- $1-- Equity:- $1 equity:owner- --------------------- $1-- Total:- --------------------- 0-- This command also supports the output destination and output format- options The output formats supported are txt, csv, html, and (experi-- mental) json.-- cashflow- cashflow, cf- This command displays a cashflow statement, showing the inflows and- outflows affecting "cash" (ie, liquid) assets. Amounts are shown with- normal positive sign, as in conventional financial statements.-- The "cash" accounts shown are those accounts declared with the Cash- type, or otherwise all accounts under a top-level asset account (case- insensitive, plural allowed) which do not have fixed, investment,- receivable or A/R in their name.-- Example:-- $ hledger cashflow- Cashflow Statement-- Cash flows:- $-1 assets- $1 bank:saving- $-2 cash- --------------------- $-1-- Total:- --------------------- $-1-- With a reporting interval, multiple columns will be shown, one for each- report period. Normally cashflow shows changes in assets per period,- though as with multicolumn balance reports you can alter the report- mode with --change/--cumulative/--historical. Instead of absolute val-- ues percentages can be displayed with -%.-- This command also supports the output destination and output format- options The output formats supported are txt, csv, html, and (experi-- mental) json.-- check- check- Check for various kinds of errors in your data. experimental-- hledger provides a number of built-in error checks to help prevent- problems in your data. Some of these are run automatically; or, you- can use this check command to run them on demand, with no output and a- zero exit code if all is well. Some examples:-- hledger check # basic checks- hledger check -s # basic + strict checks- hledger check ordereddates uniqueleafnames # basic + specified checks-- Here are the checks currently available:-- Basic checks- These are always run by this command and other commands:-- o parseable - data files are well-formed and can be successfully parsed-- o autobalanced - all transactions are balanced, inferring missing- amounts where necessary, and possibly converting commodities using- transaction prices or automatically-inferred transaction prices-- o assertions - all balance assertions in the journal are passing.- (This check can be disabled with -I/--ignore-assertions.)-- Strict checks- These are always run by this and other commands when -s/--strict is- used (strict mode):-- o accounts - all account names used by transactions have been declared-- o commodities - all commodity symbols used have been declared-- Other checks- These checks can be run by specifying their names as arguments to the- check command:-- o ordereddates - transactions are ordered by date (similar to the old- check-dates command)-- o uniqueleafnames - all account leaf names are unique (similar to the- old check-dupes command)-- Add-on checks- Some checks are not yet integrated with this command, but are available- as add-on commands in https://github.com/simonmichael/hledger/tree/mas-- ter/bin:-- o hledger-check-tagfiles - all tag values containing / (a forward- slash) exist as file paths-- o hledger-check-fancyassertions - more complex balance assertions are- passing-- You could make your own similar scripts to perform custom checks; Cook-- book -> Scripting may be helpful.-- close- close, equity- Prints a "closing balances" transaction and an "opening balances"- transaction that bring account balances to and from zero, respectively.- These can be added to your journal file(s), eg to bring asset/liability- balances forward into a new journal file, or to close out rev-- enues/expenses to retained earnings at the end of a period.-- You can print just one of these transactions by using the --close or- --open flag. You can customise their descriptions with the --close-- desc and --open-desc options.-- One amountless posting to "equity:opening/closing balances" is added to- balance the transactions, by default. You can customise this account- name with --close-acct and --open-acct; if you specify only one of- these, it will be used for both.-- With --x/--explicit, the equity posting's amount will be shown. And if- it involves multiple commodities, a posting for each commodity will be- shown, as with the print command.-- With --interleaved, the equity postings are shown next to the postings- they balance, which makes troubleshooting easier.-- By default, transaction prices in the journal are ignored when generat-- ing the closing/opening transactions. With --show-costs, this cost- information is preserved (balance -B reports will be unchanged after- the transition). Separate postings are generated for each cost in each- commodity. Note this can generate very large journal entries, if you- have many foreign currency or investment transactions.-- close usage- If you split your journal files by time (eg yearly), you will typically- run this command at the end of the year, and save the closing transac-- tion as last entry of the old file, and the opening transaction as the- first entry of the new file. This makes the files self contained, so- that correct balances are reported no matter which of them are loaded.- Ie, if you load just one file, the balances are initialised correctly;- or if you load several files, the redundant closing/opening transac-- tions cancel each other out. (They will show up in print or register- reports; you can exclude them with a query like not:desc:'(open-- ing|closing) balances'.)-- If you're running a business, you might also use this command to "close- the books" at the end of an accounting period, transferring income- statement account balances to retained earnings. (You may want to- change the equity account name to something like "equity:retained earn-- ings".)-- By default, the closing transaction is dated yesterday, the balances- are calculated as of end of yesterday, and the opening transaction is- dated today. To close on some other date, use: hledger close -e OPEN-- INGDATE. Eg, to close/open on the 2018/2019 boundary, use -e 2019.- You can also use -p or date:PERIOD (any starting date is ignored).-- Both transactions will include balance assertions for the- closed/reopened accounts. You probably shouldn't use status or real-- ness filters (like -C or -R or status:) with this command, or the gen-- erated balance assertions will depend on these flags. Likewise, if you- run this command with --auto, the balance assertions will probably- always require --auto.-- Examples:-- Carrying asset/liability balances into a new file for 2019:-- $ hledger close -f 2018.journal -e 2019 assets liabilities --open- # (copy/paste the output to the start of your 2019 journal file)- $ hledger close -f 2018.journal -e 2019 assets liabilities --close- # (copy/paste the output to the end of your 2018 journal file)-- Now:-- $ hledger bs -f 2019.journal # one file - balances are correct- $ hledger bs -f 2018.journal -f 2019.journal # two files - balances still correct- $ hledger bs -f 2018.journal not:desc:closing # to see year-end balances, must exclude closing txn-- Transactions spanning the closing date can complicate matters, breaking- balance assertions:-- 2018/12/30 a purchase made in 2018, clearing the following year- expenses:food 5- assets:bank:checking -5 ; [2019/1/2]-- Here's one way to resolve that:-- ; in 2018.journal:- 2018/12/30 a purchase made in 2018, clearing the following year- expenses:food 5- liabilities:pending-- ; in 2019.journal:- 2019/1/2 clearance of last year's pending transactions- liabilities:pending 5 = 0- assets:checking-- codes- codes- List the codes seen in transactions, in the order parsed.-- This command prints the value of each transaction's code field, in the- order transactions were parsed. The transaction code is an optional- value written in parentheses between the date and description, often- used to store a cheque number, order number or similar.-- Transactions aren't required to have a code, and missing or empty codes- will not be shown by default. With the -E/--empty flag, they will be- printed as blank lines.-- You can add a query to select a subset of transactions.-- Examples:-- 1/1 (123)- (a) 1-- 1/1 ()- (a) 1-- 1/1- (a) 1-- 1/1 (126)- (a) 1-- $ hledger codes- 123- 124- 126-- $ hledger codes -E- 123- 124--- 126-- commodities- commodities- List all commodity/currency symbols used or declared in the journal.-- descriptions- descriptions- List the unique descriptions that appear in transactions.-- This command lists the unique descriptions that appear in transactions,- in alphabetic order. You can add a query to select a subset of trans-- actions.-- Example:-- $ hledger descriptions- Store Name- Gas Station | Petrol- Person A-- diff- diff- Compares a particular account's transactions in two input files. It- shows any transactions to this account which are in one file but not in- the other.-- More precisely, for each posting affecting this account in either file,- it looks for a corresponding posting in the other file which posts the- same amount to the same account (ignoring date, description, etc.)- Since postings not transactions are compared, this also works when mul-- tiple bank transactions have been combined into a single journal entry.-- This is useful eg if you have downloaded an account's transactions from- your bank (eg as CSV data). When hledger and your bank disagree about- the account balance, you can compare the bank data with your journal to- find out the cause.-- Examples:-- $ hledger diff -f $LEDGER_FILE -f bank.csv assets:bank:giro- These transactions are in the first file only:-- 2014/01/01 Opening Balances- assets:bank:giro EUR ...- ...- equity:opening balances EUR -...-- These transactions are in the second file only:-- files- files- List all files included in the journal. With a REGEX argument, only- file names matching the regular expression (case sensitive) are shown.-- help- help- Show any of the hledger manuals.-- The help command displays any of the main hledger manuals, in one of- several ways. Run it with no argument to list the manuals, or provide- a full or partial manual name to select one.-- hledger manuals are available in several formats. hledger help will- use the first of these display methods that it finds: info, man,- $PAGER, less, stdout (or when non-interactive, just stdout). You can- force a particular viewer with the --info, --man, --pager, --cat flags.-- Examples:-- $ hledger help- Please choose a manual by typing "hledger help MANUAL" (a substring is ok).- Manuals: hledger hledger-ui hledger-web journal csv timeclock timedot-- $ hledger help h --man-- hledger(1) hledger User Manuals hledger(1)-- NAME- hledger - a command-line accounting tool-- SYNOPSIS- hledger [-f FILE] COMMAND [OPTIONS] [ARGS]- hledger [-f FILE] ADDONCMD -- [OPTIONS] [ARGS]- hledger-- DESCRIPTION- hledger is a cross-platform program for tracking money, time, or any- ...-- import- import- Read new transactions added to each FILE since last run, and add them- to the main journal file. Or with --dry-run, just print the transac-- tions that would be added. Or with --catchup, just mark all of the- FILEs' transactions as imported, without actually importing any.-- The input files are specified as arguments - no need to write -f before- each one. So eg to add new transactions from all CSV files to the main- journal, it's just: hledger import *.csv-- New transactions are detected in the same way as print --new: by assum-- ing transactions are always added to the input files in increasing date- order, and by saving .latest.FILE state files.-- The --dry-run output is in journal format, so you can filter it, eg to- see only uncategorised transactions:-- $ hledger import --dry ... | hledger -f- print unknown --ignore-assertions-- Importing balance assignments- Entries added by import will have their posting amounts made explicit- (like hledger print -x). This means that any balance assignments in- imported files must be evaluated; but, imported files don't get to see- the main file's account balances. As a result, importing entries with- balance assignments (eg from an institution that provides only balances- and not posting amounts) will probably generate incorrect posting- amounts. To avoid this problem, use print instead of import:-- $ hledger print IMPORTFILE [--new] >> $LEDGER_FILE-- (If you think import should leave amounts implicit like print does,- please test it and send a pull request.)-- Commodity display styles- Imported amounts will be formatted according to the canonical commodity- styles (declared or inferred) in the main journal file.-- incomestatement- incomestatement, is-- This command displays an income statement, showing revenues and- expenses during one or more periods. Amounts are shown with normal- positive sign, as in conventional financial statements.-- The revenue and expense accounts shown are those accounts declared with- the Revenue or Expense type, or otherwise all accounts under a top-- level revenue or income or expense account (case insensitive, plurals- allowed).-- Example:-- $ hledger incomestatement- Income Statement-- Revenues:- $-2 income- $-1 gifts- $-1 salary- --------------------- $-2-- Expenses:- $2 expenses- $1 food- $1 supplies- --------------------- $2-- Total:- --------------------- 0-- With a reporting interval, multiple columns will be shown, one for each- report period. Normally incomestatement shows revenues/expenses per- period, though as with multicolumn balance reports you can alter the- report mode with --change/--cumulative/--historical. Instead of abso-- lute values percentages can be displayed with -%.-- This command also supports the output destination and output format- options The output formats supported are txt, csv, html, and (experi-- mental) json.-- notes- notes- List the unique notes that appear in transactions.-- This command lists the unique notes that appear in transactions, in- alphabetic order. You can add a query to select a subset of transac-- tions. The note is the part of the transaction description after a |- character (or if there is no |, the whole description).-- Example:-- $ hledger notes- Petrol- Snacks-- rewrite- rewrite- Print all transactions, rewriting the postings of matched transactions.- For now the only rewrite available is adding new postings, like print- --auto.-- This is a start at a generic rewriter of transaction entries. It reads- the default journal and prints the transactions, like print, but adds- one or more specified postings to any transactions matching QUERY. The- posting amounts can be fixed, or a multiplier of the existing transac-- tion's first posting amount.-- Examples:-- $ hledger-rewrite.hs ^income --add-posting '(liabilities:tax) *.33 ; income tax' --add-posting '(reserve:gifts) $100'- $ hledger-rewrite.hs expenses:gifts --add-posting '(reserve:gifts) *-1"'- $ hledger-rewrite.hs -f rewrites.hledger-- rewrites.hledger may consist of entries like:-- = ^income amt:<0 date:2017- (liabilities:tax) *0.33 ; tax on income- (reserve:grocery) *0.25 ; reserve 25% for grocery- (reserve:) *0.25 ; reserve 25% for grocery-- Note the single quotes to protect the dollar sign from bash, and the- two spaces between account and amount.-- More:-- $ hledger rewrite -- [QUERY] --add-posting "ACCT AMTEXPR" ...- $ hledger rewrite -- ^income --add-posting '(liabilities:tax) *.33'- $ hledger rewrite -- expenses:gifts --add-posting '(budget:gifts) *-1"'- $ hledger rewrite -- ^income --add-posting '(budget:foreign currency) *0.25 JPY; diversify'-- Argument for --add-posting option is a usual posting of transaction- with an exception for amount specification. More precisely, you can- use '*' (star symbol) before the amount to indicate that that this is a- factor for an amount of original matched posting. If the amount- includes a commodity name, the new posting amount will be in the new- commodity; otherwise, it will be in the matched posting amount's com-- modity.-- Re-write rules in a file- During the run this tool will execute so called "Automated Transac-- tions" found in any journal it process. I.e instead of specifying this- operations in command line you can put them in a journal file.-- $ rewrite-rules.journal-- Make contents look like this:-- = ^income- (liabilities:tax) *.33-- = expenses:gifts- budget:gifts *-1- assets:budget *1-- Note that '=' (equality symbol) that is used instead of date in trans-- actions you usually write. It indicates the query by which you want to- match the posting to add new ones.-- $ hledger rewrite -- -f input.journal -f rewrite-rules.journal > rewritten-tidy-output.journal-- This is something similar to the commands pipeline:-- $ hledger rewrite -- -f input.journal '^income' --add-posting '(liabilities:tax) *.33' \- | hledger rewrite -- -f - expenses:gifts --add-posting 'budget:gifts *-1' \- --add-posting 'assets:budget *1' \- > rewritten-tidy-output.journal-- It is important to understand that relative order of such entries in- journal is important. You can re-use result of previously added post-- ings.-- Diff output format- To use this tool for batch modification of your journal files you may- find useful output in form of unified diff.-- $ hledger rewrite -- --diff -f examples/sample.journal '^income' --add-posting '(liabilities:tax) *.33'-- Output might look like:-- --- /tmp/examples/sample.journal- +++ /tmp/examples/sample.journal- @@ -18,3 +18,4 @@- 2008/01/01 income- - assets:bank:checking $1- + assets:bank:checking $1- income:salary- + (liabilities:tax) 0- @@ -22,3 +23,4 @@- 2008/06/01 gift- - assets:bank:checking $1- + assets:bank:checking $1- income:gifts- + (liabilities:tax) 0-- If you'll pass this through patch tool you'll get transactions contain-- ing the posting that matches your query be updated. Note that multiple- files might be update according to list of input files specified via- --file options and include directives inside of these files.-- Be careful. Whole transaction being re-formatted in a style of output- from hledger print.-- See also:-- https://github.com/simonmichael/hledger/issues/99-- rewrite vs. print --auto- This command predates print --auto, and currently does much the same- thing, but with these differences:-- o with multiple files, rewrite lets rules in any file affect all other- files. print --auto uses standard directive scoping; rules affect- only child files.-- o rewrite's query limits which transactions can be rewritten; all are- printed. print --auto's query limits which transactions are printed.-- o rewrite applies rules specified on command line or in the journal.- print --auto applies rules specified in the journal.-- roi- roi- Shows the time-weighted (TWR) and money-weighted (IRR) rate of return- on your investments.-- This command assumes that you have account(s) that hold nothing but- your investments and whenever you record current appraisal/valuation of- these investments you offset unrealized profit and loss into account(s)- that, again, hold nothing but unrealized profit and loss.-- Any transactions affecting balance of investment account(s) and not- originating from unrealized profit and loss account(s) are assumed to- be your investments or withdrawals.-- At a minimum, you need to supply a query (which could be just an- account name) to select your investments with --inv, and another query- to identify your profit and loss transactions with --pnl.-- This command will compute and display the internalized rate of return- (IRR) and time-weighted rate of return (TWR) for your investments for- the time period requested. Both rates of return are annualized before- display, regardless of the length of reporting interval.-- Note, in some cases this report can fail, for these reasons:-- o Error (NotBracketed): No solution for Internal Rate of Return (IRR).- Possible causes: IRR is huge (>1000000%), balance of investment- becomes negative at some point in time.-- o Error (SearchFailed): Failed to find solution for Internal Rate of- Return (IRR). Either search does not converge to a solution, or con-- verges too slowly.-- Examples:-- o Using roi to report unrealised gains: https://github.com/simon-- michael/hledger/blob/master/examples/roi-unrealised.ledger-- More background:-- "ROI" stands for "return on investment". Traditionally this was com-- puted as a difference between current value of investment and its ini-- tial value, expressed in percentage of the initial value.-- However, this approach is only practical in simple cases, where invest-- ments receives no in-flows or out-flows of money, and where rate of- growth is fixed over time. For more complex scenarios you need differ-- ent ways to compute rate of return, and this command implements two of- them: IRR and TWR.-- Internal rate of return, or "IRR" (also called "money-weighted rate of- return") takes into account effects of in-flows and out-flows.- Naively, if you are withdrawing from your investment, your future gains- would be smaller (in absolute numbers), and will be a smaller percent-- age of your initial investment, and if you are adding to your invest-- ment, you will receive bigger absolute gains (but probably at the same- rate of return). IRR is a way to compute rate of return for each- period between in-flow or out-flow of money, and then combine them in a- way that gives you an annual rate of return that investment is expected- to generate.-- As mentioned before, in-flows and out-flows would be any cash that you- personally put in or withdraw, and for the "roi" command, these are- transactions that involve account(s) matching --inv argument and NOT- involve account(s) matching --pnl argument.-- Presumably, you will also record changes in the value of your invest-- ment, and balance them against "profit and loss" (or "unrealized- gains") account. Note that in order for IRR to compute the precise- effect of your in-flows and out-flows on the rate of return, you will- need to record the value of your investement on or close to the days- when in- or out-flows occur.-- Implementation of IRR in hledger should match the XIRR formula in- Excel.-- Second way to compute rate of return that roi command implements is- called "time-weighted rate of return" or "TWR". Like IRR, it will also- break the history of your investment into periods between in-flows and- out-flows to compute rate of return per each period and then a compound- rate of return. However, internal workings of TWR are quite different.-- In technical terms, IRR uses the same approach as computation of net- present value, and tries to find a discount rate that makes net present- value of all the cash flows of your investment to add up to zero. This- could be hard to wrap your head around, especially if you haven't done- discounted cash flow analysis before.-- TWR represents your investment as an imaginary "unit fund" where in-- flows/ out-flows lead to buying or selling "units" of your investment- and changes in its value change the value of "investment unit". Change- in "unit price" over the reporting period gives you rate of return of- your investment.-- References: * Explanation of rate of return * Explanation of IRR *- Explanation of TWR * Examples of computing IRR and TWR and discussion- of the limitations of both metrics-- More examples:-- Lets say that we found an investment in Snake Oil that is proising to- give us 10% annually:-- 2019-01-01 Investing in Snake Oil- assets:cash -$100- investment:snake oil-- 2019-12-24 Recording the growth of Snake Oil- investment:snake oil = $110- equity:unrealized gains-- For now, basic computation of the rate of return, as well as IRR and- TWR, gives us the expected 10%:-- $ hledger roi -Y --inv investment --pnl "unrealized"- +---++------------+------------++---------------+----------+-------------+-----++--------+--------+- | || Begin | End || Value (begin) | Cashflow | Value (end) | PnL || IRR | TWR |- +===++============+============++===============+==========+=============+=====++========+========+- | 1 || 2019-01-01 | 2019-12-31 || 0 | 100 | 110 | 10 || 10.00% | 10.00% |- +---++------------+------------++---------------+----------+-------------+-----++--------+--------+-- However, lets say that shorty after investing in the Snake Oil we- started to have second thoughs, so we prompty withdrew $90, leaving- only $10 in. Before Christmas, though, we started to get the "fear of- mission out", so we put the $90 back in. So for most of the year, our- investment was just $10 dollars, and it gave us just $1 in growth:-- 2019-01-01 Investing in Snake Oil- assets:cash -$100- investment:snake oil-- 2019-01-02 Buyers remorse- assets:cash $90- investment:snake oil-- 2019-12-30 Fear of missing out- assets:cash -$90- investment:snake oil-- 2019-12-31 Recording the growth of Snake Oil- investment:snake oil = $101- equity:unrealized gains-- Now IRR and TWR are drastically different:-- $ hledger roi -Y --inv investment --pnl "unrealized"- +---++------------+------------++---------------+----------+-------------+-----++-------+-------+- | || Begin | End || Value (begin) | Cashflow | Value (end) | PnL || IRR | TWR |- +===++============+============++===============+==========+=============+=====++=======+=======+- | 1 || 2019-01-01 | 2019-12-31 || 0 | 100 | 101 | 1 || 9.32% | 1.00% |- +---++------------+------------++---------------+----------+-------------+-----++-------+-------+-- Here, IRR tells us that we made close to 10% on the $10 dollars that we- had in the account most of the time. And TWR is ... just 1%? Why?-- Based on the transactions in our journal, TWR "think" that we are buy-- ing back $90 worst of Snake Oil at the same price that it had at the- beginning of they year, and then after that our $100 investment gets $1- increase in value, or 1% of $100. Let's take a closer look at what is- happening here by asking for quarterly reports instead of annual:-- $ hledger roi -Q --inv investment --pnl "unrealized"- +---++------------+------------++---------------+----------+-------------+-----++--------+-------+- | || Begin | End || Value (begin) | Cashflow | Value (end) | PnL || IRR | TWR |- +===++============+============++===============+==========+=============+=====++========+=======+- | 1 || 2019-01-01 | 2019-03-31 || 0 | 10 | 10 | 0 || 0.00% | 0.00% |- | 2 || 2019-04-01 | 2019-06-30 || 10 | 0 | 10 | 0 || 0.00% | 0.00% |- | 3 || 2019-07-01 | 2019-09-30 || 10 | 0 | 10 | 0 || 0.00% | 0.00% |- | 4 || 2019-10-01 | 2019-12-31 || 10 | 90 | 101 | 1 || 37.80% | 4.03% |- +---++------------+------------++---------------+----------+-------------+-----++--------+-------+-- Now both IRR and TWR are thrown off by the fact that all of the growth- for our investment happens in Q4 2019. This happes because IRR compu-- tation is still yielding 9.32% and TWR is still 1%, but this time these- are rates for three month period instead of twelve, so in order to get- an annual rate they should be multiplied by four!-- Let's try to keep a better record of how Snake Oil grew in value:-- 2019-01-01 Investing in Snake Oil- assets:cash -$100- investment:snake oil-- 2019-01-02 Buyers remorse- assets:cash $90- investment:snake oil-- 2019-02-28 Recording the growth of Snake Oil- investment:snake oil- equity:unrealized gains -$0.25-- 2019-06-30 Recording the growth of Snake Oil- investment:snake oil- equity:unrealized gains -$0.25-- 2019-09-30 Recording the growth of Snake Oil- investment:snake oil- equity:unrealized gains -$0.25-- 2019-12-30 Fear of missing out- assets:cash -$90- investment:snake oil-- 2019-12-31 Recording the growth of Snake Oil- investment:snake oil- equity:unrealized gains -$0.25-- Would our quartery report look better now? Almost:-- $ hledger roi -Q --inv investment --pnl "unrealized"- +---++------------+------------++---------------+----------+-------------+------++--------+--------+- | || Begin | End || Value (begin) | Cashflow | Value (end) | PnL || IRR | TWR |- +===++============+============++===============+==========+=============+======++========+========+- | 1 || 2019-01-01 | 2019-03-31 || 0 | 10 | 10.25 | 0.25 || 9.53% | 10.53% |- | 2 || 2019-04-01 | 2019-06-30 || 10.25 | 0 | 10.50 | 0.25 || 10.15% | 10.15% |- | 3 || 2019-07-01 | 2019-09-30 || 10.50 | 0 | 10.75 | 0.25 || 9.79% | 9.78% |- | 4 || 2019-10-01 | 2019-12-31 || 10.75 | 90 | 101.00 | 0.25 || 8.05% | 1.00% |- +---++------------+------------++---------------+----------+-------------+------++--------+--------+-- Something is still wrong with TWR computation for Q4, and if you have- been paying attention you know what it is already: big $90 buy-back is- recorded prior to the only transaction that captures the change of- value of Snake Oil that happened in this time period. Lets combine- transactions from 30th and 31st of Dec into one:-- 2019-12-30 Fear of missing out and growth of Snake Oil- assets:cash -$90- investment:snake oil- equity:unrealized gains -$0.25-- Now growth of investment properly affects its price at the time of buy-- back:-- $ hledger roi -Q --inv investment --pnl "unrealized"- +---++------------+------------++---------------+----------+-------------+------++--------+--------+- | || Begin | End || Value (begin) | Cashflow | Value (end) | PnL || IRR | TWR |- +===++============+============++===============+==========+=============+======++========+========+- | 1 || 2019-01-01 | 2019-03-31 || 0 | 10 | 10.25 | 0.25 || 9.53% | 10.53% |- | 2 || 2019-04-01 | 2019-06-30 || 10.25 | 0 | 10.50 | 0.25 || 10.15% | 10.15% |- | 3 || 2019-07-01 | 2019-09-30 || 10.50 | 0 | 10.75 | 0.25 || 9.79% | 9.78% |- | 4 || 2019-10-01 | 2019-12-31 || 10.75 | 90 | 101.00 | 0.25 || 8.05% | 9.57% |- +---++------------+------------++---------------+----------+-------------+------++--------+--------+-- And for annual report, TWR now reports the exact profitability of our- investment:-- $ hledger roi -Y --inv investment --pnl "unrealized"- +---++------------+------------++---------------+----------+-------------+------++-------+--------+- | || Begin | End || Value (begin) | Cashflow | Value (end) | PnL || IRR | TWR |- +===++============+============++===============+==========+=============+======++=======+========+- | 1 || 2019-01-01 | 2019-12-31 || 0 | 100 | 101.00 | 1.00 || 9.32% | 10.00% |- +---++------------+------------++---------------+----------+-------------+------++-------+--------+-- stats- stats- Show some journal statistics.-- The stats command displays summary information for the whole journal,- or a matched part of it. With a reporting interval, it shows a report- for each report period.-- Example:-- $ hledger stats- Main journal file : /src/hledger/examples/sample.journal- Included journal files :- Transactions span : 2008-01-01 to 2009-01-01 (366 days)- Last transaction : 2008-12-31 (2333 days ago)- Transactions : 5 (0.0 per day)- Transactions last 30 days: 0 (0.0 per day)- Transactions last 7 days : 0 (0.0 per day)- Payees/descriptions : 5- Accounts : 8 (depth 3)- Commodities : 1 ($)- Market prices : 12 ($)-- This command also supports output destination and output format selec-- tion.-- tags- tags- List the unique tag names used in the journal. With a TAGREGEX argu-- ment, only tag names matching the regular expression (case insensitive)- are shown. With QUERY arguments, only transactions matching the query- are considered.-- With the --values flag, the tags' unique values are listed instead.-- With --parsed flag, all tags or values are shown in the order they are- parsed from the input data, including duplicates.-- With -E/--empty, any blank/empty values will also be shown, otherwise- they are omitted.-- test- test- Run built-in unit tests.-- This command runs the unit tests built in to hledger and hledger-lib,- printing the results on stdout. If any test fails, the exit code will- be non-zero.-- This is mainly used by hledger developers, but you can also use it to- sanity-check the installed hledger executable on your platform. All- tests are expected to pass - if you ever see a failure, please report- as a bug!-- This command also accepts tasty test runner options, written after a --- (double hyphen). Eg to run only the tests in Hledger.Data.Amount, with- ANSI colour codes disabled:-- $ hledger test -- -pData.Amount --color=never-- For help on these, see https://github.com/feuerbach/tasty#options (--- --help currently doesn't show them).-- Add-on commands- Any programs or scripts in your PATH named named hledger-SOMETHING will- also appear in the commands list (with a + mark). These are called- add-on commands.-- These offical add-ons are maintained and released along with hledger:-- o ui an efficient terminal interface for hledger (TUI)-- o web a simple web interface for hledger (WUI)-- These add-ons are maintained separately:-- o iadd a more interactive alternative for the add command-- o interest generates interest transactions according to various schemes-- o stockquotes downloads market prices for your commodities from Alpha-- Vantage (experimental)-- Additional experimental add-ons, which may not be in a working state,- can be found in the bin/ directory in the hledger repo.-- Add-on command flags- In a hledger command line, add-on command flags must have a double dash- (--) preceding them. Eg you must write:-- $ hledger web -- --serve-- and not:-- $ hledger web --serve-- (because the --serve flag belongs to hledger-web, not hledger).-- The -h/--help and --version flags work without --, with their position- deciding which program they refer to. Eg hledger -h web shows- hledger's help, hledger web -h shows hledger-web's help.-- If you have any trouble with this, remember you can always run the add-- on program directly, eg:-- $ hledger-web --serve-- Making add-on commands- Add-on commands are programs or scripts in your PATH-- o whose name starts with hledger--- o whose name ends with a recognised file extension: .bat,.com,.exe,- .hs,.lhs,.pl,.py,.rb,.rkt,.sh or none-- o and (on unix, mac) which are executable by the current user.-- Add-ons are a relatively easy way to add local features or experiment- with new ideas. They can be written in any language, but haskell- scripts have a big advantage: they can use the same hledger library- functions that built-in commands use for command-line options, parsing- and reporting.--ENVIRONMENT- LEDGER_FILE The journal file path when not specified with -f. Default:- ~/.hledger.journal (on windows, perhaps C:/Users/USER/.hledger.jour-- nal).-- A typical value is ~/DIR/YYYY.journal, where DIR is a version-con-- trolled finance directory and YYYY is the current year. Or ~/DIR/cur-- rent.journal, where current.journal is a symbolic link to YYYY.journal.-- On Mac computers, you can set this and other environment variables in a- more thorough way that also affects applications started from the GUI- (say, an Emacs dock icon). Eg on MacOS Catalina I have a- ~/.MacOSX/environment.plist file containing-- {- "LEDGER_FILE" : "~/finance/current.journal"- }-- To see the effect you may need to killall Dock, or reboot.-- COLUMNS The screen width used by the register command. Default: the- full terminal width.-- NO_COLOR If this variable exists with any value, hledger will not use- ANSI color codes in terminal output. This overrides the- --color/--colour option.--FILES- Reads data from one or more files in hledger journal, timeclock, time-- dot, or CSV format specified with -f, or $LEDGER_FILE, or- $HOME/.hledger.journal (on windows, perhaps- C:/Users/USER/.hledger.journal).--LIMITATIONS- The need to precede add-on command options with -- when invoked from- hledger is awkward.-- When input data contains non-ascii characters, a suitable system locale- must be configured (or there will be an unhelpful error). Eg on POSIX,- set LANG to something other than C.-- In a Microsoft Windows CMD window, non-ascii characters and colours are- not supported.-- On Windows, non-ascii characters may not display correctly when running- a hledger built in CMD in MSYS/CYGWIN, or vice-versa.-- In a Cygwin/MSYS/Mintty window, the tab key is not supported in hledger- add.-- Not all of Ledger's journal file syntax is supported. See file format- differences.-- On large data files, hledger is slower and uses more memory than- Ledger.--TROUBLESHOOTING- Here are some issues you might encounter when you run hledger (and- remember you can also seek help from the IRC channel, mail list or bug- tracker):-- Successfully installed, but "No command 'hledger' found"- stack and cabal install binaries into a special directory, which should- be added to your PATH environment variable. Eg on unix-like systems,- that is ~/.local/bin and ~/.cabal/bin respectively.-- I set a custom LEDGER_FILE, but hledger is still using the default file- LEDGER_FILE should be a real environment variable, not just a shell- variable. The command env | grep LEDGER_FILE should show it. You may- need to use export. Here's an explanation.-- Getting errors like "Illegal byte sequence" or "Invalid or incomplete- multibyte or wide character" or "commitAndReleaseBuffer: invalid argu-- ment (invalid character)"- Programs compiled with GHC (hledger, haskell build tools, etc.) need to- have a UTF-8-aware locale configured in the environment, otherwise they- will fail with these kinds of errors when they encounter non-ascii- characters.-- To fix it, set the LANG environment variable to some locale which sup-- ports UTF-8. The locale you choose must be installed on your system.-- Here's an example of setting LANG temporarily, on Ubuntu GNU/Linux:-- $ file my.journal- my.journal: UTF-8 Unicode text # the file is UTF8-encoded- $ echo $LANG- C # LANG is set to the default locale, which does not support UTF8- $ locale -a # which locales are installed ?- C- en_US.utf8 # here's a UTF8-aware one we can use- POSIX- $ LANG=en_US.utf8 hledger -f my.journal print # ensure it is used for this command-- If available, C.UTF-8 will also work. If your preferred locale isn't- listed by locale -a, you might need to install it. Eg on- Ubuntu/Debian:-- $ apt-get install language-pack-fr- $ locale -a- C- en_US.utf8- fr_BE.utf8- fr_CA.utf8- fr_CH.utf8- fr_FR.utf8- fr_LU.utf8- POSIX- $ LANG=fr_FR.utf8 hledger -f my.journal print-- Here's how you could set it permanently, if you use a bash shell:-- $ echo "export LANG=en_US.utf8" >>~/.bash_profile- $ bash --login-- Exact spelling and capitalisation may be important. Note the differ-- ence on MacOS (UTF-8, not utf8). Some platforms (eg ubuntu) allow- variant spellings, but others (eg macos) require it to be exact:-- $ locale -a | grep -iE en_us.*utf- en_US.UTF-8- $ LANG=en_US.UTF-8 hledger -f my.journal print----REPORTING BUGS- Report bugs at http://bugs.hledger.org (or on the #hledger IRC channel- or hledger mail list)---AUTHORS- Simon Michael <simon@joyful.com> and contributors---COPYRIGHT- Copyright (C) 2007-2020 Simon Michael.- Released under GNU GPL v3 or later.---SEE ALSO- hledger(1), hledger-ui(1), hledger-web(1), ledger(1)-- hledger_journal(5), hledger_csv(5), hledger_timeclock(5), hledger_time-- dot(5)----hledger-1.20.4 December 2020 HLEDGER(1)+ This is the command-line interface (CLI) for the hledger accounting+ tool. Here we also describe hledger's concepts and file formats. This+ manual is for hledger 1.21.++SYNOPSIS+ hledger++ hledger [-f FILE] COMMAND [OPTIONS] [ARGS]++ hledger [-f FILE] ADDONCMD -- [OPTIONS] [ARGS]++DESCRIPTION+ hledger is a reliable, cross-platform set of programs for tracking+ money, time, or any other commodity, using double-entry accounting and+ a simple, editable file format. hledger is inspired by and largely+ compatible with ledger(1).++ The basic function of the hledger CLI is to read a plain text file+ describing financial transactions (in accounting terms, a general jour-+ nal) and print useful reports on standard output, or export them as+ CSV. hledger can also read some other file formats such as CSV files,+ translating them to journal format. Additionally, hledger lists other+ hledger-* executables found in the user's $PATH and can invoke them as+ subcommands.++ hledger reads data from one or more files in hledger journal, time-+ clock, timedot, or CSV format specified with -f, or $LEDGER_FILE, or+ $HOME/.hledger.journal (on windows, perhaps+ C:/Users/USER/.hledger.journal). If using $LEDGER_FILE, note this must+ be a real environment variable, not a shell variable. You can specify+ standard input with -f-.++ Transactions are dated movements of money between two (or more) named+ accounts, and are recorded with journal entries like this:++ 2015/10/16 bought food+ expenses:food $10+ assets:cash++ For more about this format, see hledger_journal(5).++ Most users use a text editor to edit the journal, usually with an edi-+ tor mode such as ledger-mode for added convenience. hledger's interac-+ tive add command is another way to record new transactions. hledger+ never changes existing transactions.++ To get started, you can either save some entries like the above in+ ~/.hledger.journal, or run hledger add and follow the prompts. Then+ try some commands like hledger print or hledger balance. Run hledger+ with no arguments for a list of commands.++OPTIONS+ General options+ To see general usage help, including general options which are sup-+ ported by most hledger commands, run hledger -h.++ General help options:++ -h --help+ show general or COMMAND help++ --man show general or COMMAND user manual with man++ --info show general or COMMAND user manual with info++ --version+ show general or ADDONCMD version++ --debug[=N]+ show debug output (levels 1-9, default: 1)++ General input options:++ -f FILE --file=FILE+ use a different input file. For stdin, use - (default:+ $LEDGER_FILE or $HOME/.hledger.journal)++ --rules-file=RULESFILE+ Conversion rules file to use when reading CSV (default:+ FILE.rules)++ --separator=CHAR+ Field separator to expect when reading CSV (default: ',')++ --alias=OLD=NEW+ rename accounts named OLD to NEW++ --anon anonymize accounts and payees++ --pivot FIELDNAME+ use some other field or tag for the account name++ -I --ignore-assertions+ disable balance assertion checks (note: does not disable balance+ assignments)++ -s --strict+ do extra error checking (check that all posted accounts are+ declared)++ General reporting options:++ -b --begin=DATE+ include postings/txns on or after this date++ -e --end=DATE+ include postings/txns before this date++ -D --daily+ multiperiod/multicolumn report by day++ -W --weekly+ multiperiod/multicolumn report by week++ -M --monthly+ multiperiod/multicolumn report by month++ -Q --quarterly+ multiperiod/multicolumn report by quarter++ -Y --yearly+ multiperiod/multicolumn report by year++ -p --period=PERIODEXP+ set start date, end date, and/or reporting interval all at once+ using period expressions syntax++ --date2+ match the secondary date instead (see command help for other+ effects)++ -U --unmarked+ include only unmarked postings/txns (can combine with -P or -C)++ -P --pending+ include only pending postings/txns++ -C --cleared+ include only cleared postings/txns++ -R --real+ include only non-virtual postings++ -NUM --depth=NUM+ hide/aggregate accounts or postings more than NUM levels deep++ -E --empty+ show items with zero amount, normally hidden (and vice-versa in+ hledger-ui/hledger-web)++ -B --cost+ convert amounts to their cost/selling amount at transaction time++ -V --market+ convert amounts to their market value in default valuation com-+ modities++ -X --exchange=COMM+ convert amounts to their market value in commodity COMM++ --value+ convert amounts to cost or market value, more flexibly than+ -B/-V/-X++ --infer-market-prices+ use transaction prices (recorded with @ or @@) as additional+ market prices, as if they were P directives++ --auto apply automated posting rules to modify transactions.++ --forecast+ generate future transactions from periodic transaction rules,+ for the next 6 months or till report end date. In hledger-ui,+ also make ordinary future transactions visible.++ --color=WHEN (or --colour=WHEN)+ Should color-supporting commands use ANSI color codes in text+ output. 'auto' (default): whenever stdout seems to be a color-+ supporting terminal. 'always' or 'yes': always, useful eg when+ piping output into 'less -R'. 'never' or 'no': never. A+ NO_COLOR environment variable overrides this.++ When a reporting option appears more than once in the command line, the+ last one takes precedence.++ Some reporting options can also be written as query arguments.++ Command options+ To see options for a particular command, including command-specific+ options, run: hledger COMMAND -h.++ Command-specific options must be written after the command name, eg:+ hledger print -x.++ Additionally, if the command is an add-on, you may need to put its+ options after a double-hyphen, eg: hledger ui -- --watch. Or, you can+ run the add-on executable directly: hledger-ui --watch.++ Command arguments+ Most hledger commands accept arguments after the command name, which+ are often a query, filtering the data in some way.++ You can save a set of command line options/arguments in a file, and+ then reuse them by writing @FILENAME as a command line argument. Eg:+ hledger bal @foo.args. (To prevent this, eg if you have an argument+ that begins with a literal @, precede it with --, eg: hledger bal --+ @ARG).++ Inside the argument file, each line should contain just one option or+ argument. Avoid the use of spaces, except inside quotes (or you'll see+ a confusing error). Between a flag and its argument, use = (or noth-+ ing). Bad:++ assets depth:2+ -X USD++ Good:++ assets+ depth:2+ -X=USD++ For special characters (see below), use one less level of quoting than+ you would at the command prompt. Bad:++ -X"$"++ Good:++ -X$++ See also: Save frequently used options.++ Special characters+ Single escaping (shell metacharacters)+ In shell command lines, characters significant to your shell - such as+ spaces, <, >, (, ), |, $ and \ - should be "shell-escaped" if you want+ hledger to see them. This is done by enclosing them in single or dou-+ ble quotes, or by writing a backslash before them. Eg to match an+ account name containing a space:++ $ hledger register 'credit card'++ or:++ $ hledger register credit\ card++ Double escaping (regular expression metacharacters)+ Characters significant in regular expressions (described below) - such+ as ., ^, $, [, ], (, ), |, and \ - may need to be "regex-escaped" if+ you don't want them to be interpreted by hledger's regular expression+ engine. This is done by writing backslashes before them, but since+ backslash is typically also a shell metacharacter, both shell-escaping+ and regex-escaping will be needed. Eg to match a literal $ sign while+ using the bash shell:++ $ hledger balance cur:'\$'++ or:++ $ hledger balance cur:\\$++ Triple escaping (for add-on commands)+ When you use hledger to run an external add-on command (described+ below), one level of shell-escaping is lost from any options or argu-+ ments intended for by the add-on command, so those need an extra level+ of shell-escaping. Eg to match a literal $ sign while using the bash+ shell and running an add-on command (ui):++ $ hledger ui cur:'\\$'++ or:++ $ hledger ui cur:\\\\$++ If you wondered why four backslashes, perhaps this helps:+++ unescaped: $+ escaped: \$+ double-escaped: \\$+ triple-escaped: \\\\$++ Or, you can avoid the extra escaping by running the add-on executable+ directly:++ $ hledger-ui cur:\\$++ Less escaping+ Options and arguments are sometimes used in places other than the shell+ command line, where shell-escaping is not needed, so there you should+ use one less level of escaping. Those places include:++ o an @argumentfile++ o hledger-ui's filter field++ o hledger-web's search form++ o GHCI's prompt (used by developers).++ Unicode characters+ hledger is expected to handle non-ascii characters correctly:++ o they should be parsed correctly in input files and on the command+ line, by all hledger tools (add, iadd, hledger-web's search/add/edit+ forms, etc.)++ o they should be displayed correctly by all hledger tools, and on-+ screen alignment should be preserved.++ This requires a well-configured environment. Here are some tips:++ o A system locale must be configured, and it must be one that can+ decode the characters being used. In bash, you can set a locale like+ this: export LANG=en_US.UTF-8. There are some more details in Trou-+ bleshooting. This step is essential - without it, hledger will quit+ on encountering a non-ascii character (as with all GHC-compiled pro-+ grams).++ o your terminal software (eg Terminal.app, iTerm, CMD.exe, xterm..)+ must support unicode++ o the terminal must be using a font which includes the required unicode+ glyphs++ o the terminal should be configured to display wide characters as dou-+ ble width (for report alignment)++ o on Windows, for best results you should run hledger in the same kind+ of environment in which it was built. Eg hledger built in the stan-+ dard CMD.EXE environment (like the binaries on our download page)+ might show display problems when run in a cygwin or msys terminal,+ and vice versa. (See eg #961).++ Regular expressions+ hledger uses regular expressions in a number of places:++ o query terms, on the command line and in the hledger-web search form:+ REGEX, desc:REGEX, cur:REGEX, tag:...=REGEX++ o CSV rules conditional blocks: if REGEX ...++ o account alias directives and options: alias /REGEX/ = REPLACEMENT,+ --alias /REGEX/=REPLACEMENT++ hledger's regular expressions come from the regex-tdfa library. If+ they're not doing what you expect, it's important to know exactly what+ they support:++ 1. they are case insensitive++ 2. they are infix matching (they do not need to match the entire thing+ being matched)++ 3. they are POSIX ERE (extended regular expressions)++ 4. they also support GNU word boundaries (\b, \B, \<, \>)++ 5. they do not support backreferences; if you write \1, it will match+ the digit 1. Except when doing text replacement, eg in account+ aliases, where backreferences can be used in the replacement string+ to reference capturing groups in the search regexp.++ 6. they do not support mode modifiers ((?s)), character classes (\w,+ \d), or anything else not mentioned above.++ Some things to note:++ o In the alias directive and --alias option, regular expressions must+ be enclosed in forward slashes (/REGEX/). Elsewhere in hledger,+ these are not required.++ o In queries, to match a regular expression metacharacter like $ as a+ literal character, prepend a backslash. Eg to search for amounts+ with the dollar sign in hledger-web, write cur:\$.++ o On the command line, some metacharacters like $ have a special mean-+ ing to the shell and so must be escaped at least once more. See Spe-+ cial characters.++ENVIRONMENT+ LEDGER_FILE The journal file path when not specified with -f. Default:+ ~/.hledger.journal (on windows, perhaps C:/Users/USER/.hledger.jour-+ nal).++ A typical value is ~/DIR/YYYY.journal, where DIR is a version-con-+ trolled finance directory and YYYY is the current year. Or ~/DIR/cur-+ rent.journal, where current.journal is a symbolic link to YYYY.journal.++ On Mac computers, you can set this and other environment variables in a+ more thorough way that also affects applications started from the GUI+ (say, an Emacs dock icon). Eg on MacOS Catalina I have a+ ~/.MacOSX/environment.plist file containing++ {+ "LEDGER_FILE" : "~/finance/current.journal"+ }++ To see the effect you may need to killall Dock, or reboot.++ COLUMNS The screen width used by the register command. Default: the+ full terminal width.++ NO_COLOR If this variable exists with any value, hledger will not use+ ANSI color codes in terminal output. This overrides the+ --color/--colour option.++DATA FILES+ hledger reads transactions from one or more data files. The default+ data file is $HOME/.hledger.journal (or on Windows, something like+ C:/Users/USER/.hledger.journal).++ You can override this with the $LEDGER_FILE environment variable:++ $ setenv LEDGER_FILE ~/finance/2016.journal+ $ hledger stats++ or with one or more -f/--file options:++ $ hledger -f /some/file -f another_file stats++ The file name - means standard input:++ $ cat some.journal | hledger -f-++ Data formats+ Usually the data file is in hledger's journal format, but it can be in+ any of the supported file formats, which currently are:+++ Reader: Reads: Used for file exten-+ sions:+ -----------------------------------------------------------------------------+ journal hledger journal files and some Ledger .journal .j .hledger+ journals, for transactions .ledger+ time- timeclock files, for precise time log- .timeclock+ clock ging+ timedot timedot files, for approximate time .timedot+ logging+ csv comma/semicolon/tab/other-separated .csv .ssv .tsv+ values, for data import++ These formats are described in their own sections, below.++ hledger detects the format automatically based on the file extensions+ shown above. If it can't recognise the file extension, it assumes+ journal format. So for non-journal files, it's important to use a+ recognised file extension, so as to either read successfully or to show+ relevant error messages.++ You can also force a specific reader/format by prefixing the file path+ with the format and a colon. Eg, to read a .dat file as csv format:++ $ hledger -f csv:/some/csv-file.dat stats++ Or to read stdin (-) as timeclock format:++ $ echo 'i 2009/13/1 08:00:00' | hledger print -ftimeclock:-++ Multiple files+ You can specify multiple -f options, to read multiple files as one big+ journal. There are some limitations with this:++ o most directives do not affect sibling files++ o balance assertions will not see any account balances from previous+ files++ If you need either of those things, you can++ o use a single parent file which includes the others++ o or concatenate the files into one before reading, eg: cat a.journal+ b.journal | hledger -f- CMD.++ Strict mode+ hledger checks input files for valid data. By default, the most impor-+ tant errors are detected, while still accepting easy journal files+ without a lot of declarations:++ o Are the input files parseable, with valid syntax ?++ o Are all transactions balanced ?++ o Do all balance assertions pass ?++ With the -s/--strict flag, additional checks are performed:++ o Are all accounts posted to, declared with an account directive ?+ (Account error checking)++ o Are all commodities declared with a commodity directive ? (Commodity+ error checking)++ See also: https://hledger.org/checking-for-errors.html++ experimental.++TIME PERIODS+ Smart dates+ hledger's user interfaces accept a flexible "smart date" syntax. Smart+ dates allow some english words, can be relative to today's date, and+ can have less-significant date parts omitted (defaulting to 1).++ Examples:+++ 2004/10/1, 2004-01-01, exact date, several separators allowed. Year+ 2004.9.1 is 4+ digits, month is 1-12, day is 1-31+ 2004 start of year+ 2004/10 start of month+ 10/1 month and day in current year+ 21 day in current month+ october, oct start of month in current year+ yesterday, today, tomor- -1, 0, 1 days from today+ row+ last/this/next -1, 0, 1 periods from the current period+ day/week/month/quar-+ ter/year+ 20181201 8 digit YYYYMMDD with valid year month and day+ 201812 6 digit YYYYMM with valid year and month++ Counterexamples - malformed digit sequences might give surprising+ results:+++ 201813 6 digits with an invalid month is parsed as start of+ 6-digit year+ 20181301 8 digits with an invalid month is parsed as start of+ 8-digit year+ 20181232 8 digits with an invalid day gives an error+ 201801012 9+ digits beginning with a valid YYYYMMDD gives an error++ Report start & end date+ By default, most hledger reports will show the full span of time repre-+ sented by the journal data. The report start date will be the earliest+ transaction or posting date, and the report end date will be the latest+ transaction, posting, or market price date.++ Often you will want to see a shorter time span, such as the current+ month. You can specify a start and/or end date using -b/--begin,+ -e/--end, -p/--period or a date: query (described below). All of these+ accept the smart date syntax.++ Some notes:++ o As in Ledger, end dates are exclusive, so you need to write the date+ after the last day you want to include.++ o As noted in reporting options: among start/end dates specified with+ options, the last (i.e. right-most) option takes precedence.++ o The effective report start and end dates are the intersection of the+ start/end dates from options and that from date: queries. That is,+ date:2019-01 date:2019 -p'2000 to 2030' yields January 2019, the+ smallest common time span.++ Examples:+++ -b 2016/3/17 begin on St. Patrick's day 2016+ -e 12/1 end at the start of december 1st of the current year+ (11/30 will be the last date included)+ -b thismonth all transactions on or after the 1st of the current month+ -p thismonth all transactions in the current month+ date:2016/3/17.. the above written as queries instead (.. can also be+ replaced with -)+ date:..12/1+ date:thismonth..+ date:thismonth++ Report intervals+ A report interval can be specified so that commands like register, bal-+ ance and activity will divide their reports into multiple subperiods.+ The basic intervals can be selected with one of -D/--daily,+ -W/--weekly, -M/--monthly, -Q/--quarterly, or -Y/--yearly. More com-+ plex intervals may be specified with a period expression. Report+ intervals can not be specified with a query.++ Period expressions+ The -p/--period option accepts period expressions, a shorthand way of+ expressing a start date, end date, and/or report interval all at once.++ Here's a basic period expression specifying the first quarter of 2009.+ Note, hledger always treats start dates as inclusive and end dates as+ exclusive:++ -p "from 2009/1/1 to 2009/4/1"++ Keywords like "from" and "to" are optional, and so are the spaces, as+ long as you don't run two dates together. "to" can also be written as+ ".." or "-". These are equivalent to the above:+++ -p "2009/1/1 2009/4/1"+ -p2009/1/1to2009/4/1+ -p2009/1/1..2009/4/1++ Dates are smart dates, so if the current year is 2009, the above can+ also be written as:+++ -p "1/1 4/1"+ -p "january-apr"+ -p "this year to 4/1"++ If you specify only one date, the missing start or end date will be the+ earliest or latest transaction in your journal:+++ -p "from 2009/1/1" everything after january+ 1, 2009+ -p "from 2009/1" the same+ -p "from 2009" the same+ -p "to 2009" everything before january+ 1, 2009++ A single date with no "from" or "to" defines both the start and end+ date like so:+++ -p "2009" the year 2009; equivalent+ to "2009/1/1 to 2010/1/1"++++ -p "2009/1" the month of jan; equiva-+ lent to "2009/1/1 to+ 2009/2/1"+ -p "2009/1/1" just that day; equivalent+ to "2009/1/1 to 2009/1/2"++ Or you can specify a single quarter like so:+++ -p "2009Q1" first quarter of 2009,+ equivalent to "2009/1/1 to+ 2009/4/1"+ -p "q4" fourth quarter of the cur-+ rent year++ The argument of -p can also begin with, or be, a report interval+ expression. The basic report intervals are daily, weekly, monthly,+ quarterly, or yearly, which have the same effect as the -D,-W,-M,-Q, or+ -Y flags. Between report interval and start/end dates (if any), the+ word in is optional. Examples:+++ -p "weekly from 2009/1/1 to 2009/4/1"+ -p "monthly in 2008"+ -p "quarterly"++ Note that weekly, monthly, quarterly and yearly intervals will always+ start on the first day on week, month, quarter or year accordingly, and+ will end on the last day of same period, even if associated period+ expression specifies different explicit start and end date.++ For example:+++ -p "weekly from 2009/1/1 starts on 2008/12/29, closest preceding Mon-+ to 2009/4/1" day+ -p "monthly in starts on 2018/11/01+ 2008/11/25"+ -p "quarterly from starts on 2009/04/01, ends on 2009/06/30,+ 2009-05-05 to 2009-06-01" which are first and last days of Q2 2009+ -p "yearly from starts on 2009/01/01, first day of 2009+ 2009-12-29"++ The following more complex report intervals are also supported:+ biweekly, fortnightly, bimonthly, every day|week|month|quarter|year,+ every N days|weeks|months|quarters|years.++ All of these will start on the first day of the requested period and+ end on the last one, as described above.++ Examples:+++ -p "bimonthly from 2008" periods will have boundaries on 2008/01/01,+ 2008/03/01, ...+ -p "every 2 weeks" starts on closest preceding Monday+ -p "every 5 month from periods will have boundaries on 2009/03/01,+ 2009/03" 2009/08/01, ...++ If you want intervals that start on arbitrary day of your choosing and+ span a week, month or year, you need to use any of the following:++ every Nth day of week, every WEEKDAYNAME (eg+ mon|tue|wed|thu|fri|sat|sun), every Nth day [of month], every Nth WEEK-+ DAYNAME [of month], every MM/DD [of year], every Nth MMM [of year],+ every MMM Nth [of year].++ Examples:++++ -p "every 2nd day of periods will go from Tue to Tue+ week"+ -p "every Tue" same+ -p "every 15th day" period boundaries will be on 15th of each+ month+ -p "every 2nd Monday" period boundaries will be on second Monday of+ each month+ -p "every 11/05" yearly periods with boundaries on 5th of Nov+ -p "every 5th Nov" same+ -p "every Nov 5th" same++ Show historical balances at end of 15th each month (N is exclusive end+ date):++ hledger balance -H -p "every 16th day"++ Group postings from start of wednesday to end of next tuesday (N is+ start date and exclusive end date):++ hledger register checking -p "every 3rd day of week"++DEPTH+ With the --depth N option (short form: -N), commands like account, bal-+ ance and register will show only the uppermost accounts in the account+ tree, down to level N. Use this when you want a summary with less+ detail. This flag has the same effect as a depth: query argument (so+ -2, --depth=2 or depth:2 are equivalent).++QUERIES+ One of hledger's strengths is being able to quickly report on precise+ subsets of your data. Most commands accept an optional query expres-+ sion, written as arguments after the command name, to filter the data+ by date, account name or other criteria. The syntax is similar to a+ web search: one or more space-separated search terms, quotes to enclose+ whitespace, prefixes to match specific fields, a not: prefix to negate+ the match.++ We do not yet support arbitrary boolean combinations of search terms;+ instead most commands show transactions/postings/accounts which match+ (or negatively match):++ o any of the description terms AND++ o any of the account terms AND++ o any of the status terms AND++ o all the other terms.++ The print command instead shows transactions which:++ o match any of the description terms AND++ o have any postings matching any of the positive account terms AND++ o have no postings matching any of the negative account terms AND++ o match all the other terms.++ The following kinds of search terms can be used. Remember these can+ also be prefixed with not:, eg to exclude a particular subaccount.++ REGEX, acct:REGEX+ match account names by this regular expression. (With no pre-+ fix, acct: is assumed.) same as above++ amt:N, amt:<N, amt:<=N, amt:>N, amt:>=N+ match postings with a single-commodity amount that is equal to,+ less than, or greater than N. (Multi-commodity amounts are not+ tested, and will always match.) The comparison has two modes: if+ N is preceded by a + or - sign (or is 0), the two signed numbers+ are compared. Otherwise, the absolute magnitudes are compared,+ ignoring sign.++ code:REGEX+ match by transaction code (eg check number)++ cur:REGEX+ match postings or transactions including any amounts whose cur-+ rency/commodity symbol is fully matched by REGEX. (For a par-+ tial match, use .*REGEX.*). Note, to match characters which are+ regex-significant, like the dollar sign ($), you need to prepend+ \. And when using the command line you need to add one more+ level of quoting to hide it from the shell, so eg do: hledger+ print cur:'\$' or hledger print cur:\\$.++ desc:REGEX+ match transaction descriptions.++ date:PERIODEXPR+ match dates within the specified period. PERIODEXPR is a period+ expression (with no report interval). Examples: date:2016,+ date:thismonth, date:2000/2/1-2/15, date:lastweek-. If the+ --date2 command line flag is present, this matches secondary+ dates instead.++ date2:PERIODEXPR+ match secondary dates within the specified period.++ depth:N+ match (or display, depending on command) accounts at or above+ this depth++ note:REGEX+ match transaction notes (part of description right of |, or+ whole description when there's no |)++ payee:REGEX+ match transaction payee/payer names (part of description left of+ |, or whole description when there's no |)++ real:, real:0+ match real or virtual postings respectively++ status:, status:!, status:*+ match unmarked, pending, or cleared transactions respectively++ tag:REGEX[=REGEX]+ match by tag name, and optionally also by tag value. Note a+ tag: query is considered to match a transaction if it matches+ any of the postings. Also remember that postings inherit the+ tags of their parent transaction.++ The following special search term is used automatically in hledger-web,+ only:++ inacct:ACCTNAME+ tells hledger-web to show the transaction register for this+ account. Can be filtered further with acct etc.++ Some of these can also be expressed as command-line options (eg depth:2+ is equivalent to --depth 2). Generally you can mix options and query+ arguments, and the resulting query will be their intersection (perhaps+ excluding the -p/--period option).++COSTING+ The -B/--cost flag converts amounts to their cost or sale amount at+ transaction time, if they have a transaction price specified. If this+ flag is supplied, hledger will perform cost conversion first, and will+ apply any market price valuations (if requested) afterwards.++VALUATION+ Instead of reporting amounts in their original commodity, hledger can+ convert them to cost/sale amount (using the conversion rate recorded in+ the transaction), and/or to market value (using some market price on a+ certain date). This is controlled by the --value=TYPE[,COMMODITY]+ option, which will be described below. We also provide the simpler -V+ and -X COMMODITY options, and often one of these is all you need:++ -V: Value+ The -V/--market flag converts amounts to market value in their default+ valuation commodity, using the market prices in effect on the valuation+ date(s), if any. More on these in a minute.++ -X: Value in specified commodity+ The -X/--exchange=COMM option is like -V, except you tell it which cur-+ rency you want to convert to, and it tries to convert everything to+ that.++ Valuation date+ Since market prices can change from day to day, market value reports+ have a valuation date (or more than one), which determines which market+ prices will be used.++ For single period reports, if an explicit report end date is specified,+ that will be used as the valuation date; otherwise the valuation date+ is the journal's end date.++ For multiperiod reports, each column/period is valued on the last day+ of the period, by default.++ Market prices+ To convert a commodity A to its market value in another commodity B,+ hledger looks for a suitable market price (exchange rate) as follows,+ in this order of preference :++ 1. A declared market price or inferred market price: A's latest market+ price in B on or before the valuation date as declared by a P direc-+ tive, or (with the --infer-market-price flag) inferred from transac-+ tion prices.++ 2. A reverse market price: the inverse of a declared or inferred market+ price from B to A.++ 3. A forward chain of market prices: a synthetic price formed by com-+ bining the shortest chain of "forward" (only 1 above) market prices,+ leading from A to B.++ 4. Any chain of market prices: a chain of any market prices, including+ both forward and reverse prices (1 and 2 above), leading from A to+ B.++ There is a limit to the length of these price chains; if hledger+ reaches that length without finding a complete chain or exhausting all+ possibilities, it will give up (with a "gave up" message visible in+ --debug=2 output). That limit is currently 1000.++ Amounts for which no suitable market price can be found, are not con-+ verted.++ --infer-market-price: market prices from transactions+ Normally, market value in hledger is fully controlled by, and requires,+ P directives in your journal. Since adding and updating those can be a+ chore, and since transactions usually take place at close to market+ value, why not use the recorded transaction prices as additional market+ prices (as Ledger does) ? We could produce value reports without need-+ ing P directives at all.++ Adding the --infer-market-price flag to -V, -X or --value enables this.+ So for example, hledger bs -V --infer-market-price will get market+ prices both from P directives and from transactions. (And if both+ occur on the same day, the P directive takes precedence).++ There is a downside: value reports can sometimes be affected in confus-+ ing/undesired ways by your journal entries. If this happens to you,+ read all of this Valuation section carefully, and try adding --debug or+ --debug=2 to troubleshoot.++ --infer-market-price can infer market prices from:++ o multicommodity transactions with explicit prices (@/@@)++ o multicommodity transactions with implicit prices (no @, two commodi-+ ties, unbalanced). (With these, the order of postings matters.+ hledger print -x can be useful for troubleshooting.)++ o but not, currently, from "more correct" multicommodity transactions+ (no @, multiple commodities, balanced).++ Valuation commodity+ When you specify a valuation commodity (-X COMM or --value TYPE,COMM):+ hledger will convert all amounts to COMM, wherever it can find a suit-+ able market price (including by reversing or chaining prices).++ When you leave the valuation commodity unspecified (-V or --value+ TYPE):+ For each commodity A, hledger picks a default valuation commodity as+ follows, in this order of preference:++ 1. The price commodity from the latest P-declared market price for A on+ or before valuation date.++ 2. The price commodity from the latest P-declared market price for A on+ any date. (Allows conversion to proceed when there are inferred+ prices before the valuation date.)++ 3. If there are no P directives at all (any commodity or date) and the+ --infer-market-price flag is used: the price commodity from the lat-+ est transaction-inferred price for A on or before valuation date.++ This means:++ o If you have P directives, they determine which commodities -V will+ convert, and to what.++ o If you have no P directives, and use the --infer-market-price flag,+ transaction prices determine it.++ Amounts for which no valuation commodity can be found are not con-+ verted.++ Simple valuation examples+ Here are some quick examples of -V:++ ; one euro is worth this many dollars from nov 1+ P 2016/11/01 EUR $1.10++ ; purchase some euros on nov 3+ 2016/11/3+ assets:euros EUR100+ assets:checking++ ; the euro is worth fewer dollars by dec 21+ P 2016/12/21 EUR $1.03++ How many euros do I have ?++ $ hledger -f t.j bal -N euros+ EUR100 assets:euros++ What are they worth at end of nov 3 ?++ $ hledger -f t.j bal -N euros -V -e 2016/11/4+ $110.00 assets:euros++ What are they worth after 2016/12/21 ? (no report end date specified,+ defaults to today)++ $ hledger -f t.j bal -N euros -V+ $103.00 assets:euros++ --value: Flexible valuation+ -V and -X are special cases of the more general --value option:++ --value=TYPE[,COMM] TYPE is then, end, now or YYYY-MM-DD.+ COMM is an optional commodity symbol.+ Shows amounts converted to:+ - default valuation commodity (or COMM) using market prices at posting dates+ - default valuation commodity (or COMM) using market prices at period end(s)+ - default valuation commodity (or COMM) using current market prices+ - default valuation commodity (or COMM) using market prices at some date++ The TYPE part selects cost or value and valuation date:++ --value=then+ Convert amounts to their value in the default valuation commod-+ ity, using market prices on each posting's date.++ --value=end+ Convert amounts to their value in the default valuation commod-+ ity, using market prices on the last day of the report period+ (or if unspecified, the journal's end date); or in multiperiod+ reports, market prices on the last day of each subperiod.++ --value=now+ Convert amounts to their value in the default valuation commod-+ ity using current market prices (as of when report is gener-+ ated).++ --value=YYYY-MM-DD+ Convert amounts to their value in the default valuation commod-+ ity using market prices on this date.++ To select a different valuation commodity, add the optional ,COMM part:+ a comma, then the target commodity's symbol. Eg: --value=now,EUR.+ hledger will do its best to convert amounts to this commodity, deducing+ market prices as described above.++ More valuation examples+ Here are some examples showing the effect of --value, as seen with+ print:++ P 2000-01-01 A 1 B+ P 2000-02-01 A 2 B+ P 2000-03-01 A 3 B+ P 2000-04-01 A 4 B++ 2000-01-01+ (a) 1 A @ 5 B++ 2000-02-01+ (a) 1 A @ 6 B++ 2000-03-01+ (a) 1 A @ 7 B++ Show the cost of each posting:++ $ hledger -f- print --cost+ 2000-01-01+ (a) 5 B++ 2000-02-01+ (a) 6 B++ 2000-03-01+ (a) 7 B++ Show the value as of the last day of the report period (2000-02-29):++ $ hledger -f- print --value=end date:2000/01-2000/03+ 2000-01-01+ (a) 2 B++ 2000-02-01+ (a) 2 B++ With no report period specified, that shows the value as of the last+ day of the journal (2000-03-01):++ $ hledger -f- print --value=end+ 2000-01-01+ (a) 3 B++ 2000-02-01+ (a) 3 B++ 2000-03-01+ (a) 3 B++ Show the current value (the 2000-04-01 price is still in effect today):++ $ hledger -f- print --value=now+ 2000-01-01+ (a) 4 B++ 2000-02-01+ (a) 4 B++ 2000-03-01+ (a) 4 B++ Show the value on 2000/01/15:++ $ hledger -f- print --value=2000-01-15+ 2000-01-01+ (a) 1 B++ 2000-02-01+ (a) 1 B++ 2000-03-01+ (a) 1 B++ You may need to explicitly set a commodity's display style, when+ reverse prices are used. Eg this output might be surprising:++ P 2000-01-01 A 2B++ 2000-01-01+ a 1B+ b++ $ hledger print -x -X A+ 2000-01-01+ a 0+ b 0++ Explanation: because there's no amount or commodity directive specify-+ ing a display style for A, 0.5A gets the default style, which shows no+ decimal digits. Because the displayed amount looks like zero, the com-+ modity symbol and minus sign are not displayed either. Adding a com-+ modity directive sets a more useful display style for A:++ P 2000-01-01 A 2B+ commodity 0.00A++ 2000-01-01+ a 1B+ b++ $ hledger print -X A+ 2000-01-01+ a 0.50A+ b -0.50A++ Effect of valuation on reports+ Here is a reference for how valuation is supposed to affect each part+ of hledger's reports (and a glossary). (It's wide, you'll have to+ scroll sideways.) It may be useful when troubleshooting. If you find+ problems, please report them, ideally with a reproducible example.+ Related: #329, #1083.+++ Report -B, --cost -V, -X --value=then --value=end --value=DATE,+ type --value=now+ -----------------------------------------------------------------------------------------------+ print+ posting cost value at value at posting value at value at+ amounts report end date report or DATE/today+ or today journal end+ balance unchanged unchanged unchanged unchanged unchanged+ asser-+ tions/assign-+ ments++ register+ starting bal- cost value at day valued at day value at day value at+ ance (-H) before each historical before DATE/today+ report or posting was made report or+ journal journal+ start start+ posting cost value at value at posting value at value at+ amounts report end date report or DATE/today+ or today journal end+ summary post- summarised value at sum of postings value at value at+ ing amounts cost period ends in interval, val- period ends DATE/today+ with report ued at interval+ interval start+ running sum/average sum/average sum/average of sum/average sum/average+ total/average of displayed of displayed displayed values of displayed of displayed+ values values values values++ balance (bs,+ bse, cf, is)+ balance sums of value at value at posting value at value at+ changes costs report end date report or DATE/today of+ or today of journal end sums of post-+ sums of of sums of ings+ postings postings+ budget like balance like balance like balance like bal- like balance+ amounts changes changes changes ances changes+ (--budget)+ grand total sum of dis- sum of dis- sum of displayed sum of dis- sum of dis-+ played val- played val- valued played val- played values+ ues ues ues++ balance (bs,+ bse, cf, is)+ with report+ interval+ starting bal- sums of value at sums of values of value at sums of post-+ ances (-H) costs of report start postings before report start ings before+ postings of sums of report start at of sums of report start+ before all postings respective post- all postings+ report start before ing dates before+ report start report start+ balance sums of same as sums of values of balance value at+ changes (bal, costs of --value=end postings in change in DATE/today of+ is, bs postings in period at respec- each period, sums of post-+ --change, cf period tive posting valued at ings+ --change) dates period ends++++++++ end balances sums of same as sums of values of period end value at+ (bal -H, is costs of --value=end postings from balances, DATE/today of+ --H, bs, cf) postings before period valued at sums of post-+ from before start to period period ends ings+ report start end at respective+ to period posting dates+ end+ budget like balance like balance like balance like bal- like balance+ amounts changes/end changes/end changes/end bal- ances changes/end+ (--budget) balances balances ances balances+ row totals, sums, aver- sums, aver- sums, averages of sums, aver- sums, aver-+ row averages ages of dis- ages of dis- displayed values ages of dis- ages of dis-+ (-T, -A) played val- played val- played val- played values+ ues ues ues+ column totals sums of dis- sums of dis- sums of displayed sums of dis- sums of dis-+ played val- played val- values played val- played values+ ues ues ues+ grand total, sum, average sum, average sum, average of sum, average sum, average+ grand average of column of column column totals of column of column+ totals totals totals totals+++ --cumulative is omitted to save space, it works like -H but with a zero+ starting balance.++ Glossary:++ cost calculated using price(s) recorded in the transaction(s).++ value market value using available market price declarations, or the+ unchanged amount if no conversion rate can be found.++ report start+ the first day of the report period specified with -b or -p or+ date:, otherwise today.++ report or journal start+ the first day of the report period specified with -b or -p or+ date:, otherwise the earliest transaction date in the journal,+ otherwise today.++ report end+ the last day of the report period specified with -e or -p or+ date:, otherwise today.++ report or journal end+ the last day of the report period specified with -e or -p or+ date:, otherwise the latest transaction date in the journal,+ otherwise today.++ report interval+ a flag (-D/-W/-M/-Q/-Y) or period expression that activates the+ report's multi-period mode (whether showing one or many subperi-+ ods).++PIVOTING+ Normally hledger sums amounts, and organizes them in a hierarchy, based+ on account name. The --pivot FIELD option causes it to sum and orga-+ nize hierarchy based on the value of some other field instead. FIELD+ can be: code, description, payee, note, or the full name (case insensi-+ tive) of any tag. As with account names, values containing colon:sepa-+ rated:parts will be displayed hierarchically in reports.++ --pivot is a general option affecting all reports; you can think of+ hledger transforming the journal before any other processing, replacing+ every posting's account name with the value of the specified field on+ that posting, inheriting it from the transaction or using a blank value+ if it's not present.++ An example:++ 2016/02/16 Member Fee Payment+ assets:bank account 2 EUR+ income:member fees -2 EUR ; member: John Doe++ Normal balance report showing account names:++ $ hledger balance+ 2 EUR assets:bank account+ -2 EUR income:member fees+ --------------------+ 0++ Pivoted balance report, using member: tag values instead:++ $ hledger balance --pivot member+ 2 EUR+ -2 EUR John Doe+ --------------------+ 0++ One way to show only amounts with a member: value (using a query,+ described below):++ $ hledger balance --pivot member tag:member=.+ -2 EUR John Doe+ --------------------+ -2 EUR++ Another way (the acct: query matches against the pivoted "account+ name"):++ $ hledger balance --pivot member acct:.+ -2 EUR John Doe+ --------------------+ -2 EUR++OUTPUT+ Output destination+ hledger commands send their output to the terminal by default. You can+ of course redirect this, eg into a file, using standard shell syntax:++ $ hledger print > foo.txt++ Some commands (print, register, stats, the balance commands) also pro-+ vide the -o/--output-file option, which does the same thing without+ needing the shell. Eg:++ $ hledger print -o foo.txt+ $ hledger print -o - # write to stdout (the default)++ Output format+ Some commands (print, register, the balance commands) offer a choice of+ output format. In addition to the usual plain text format (txt), there+ are CSV (csv), HTML (html), JSON (json) and SQL (sql). This is con-+ trolled by the -O/--output-format option:++ $ hledger print -O csv++ or, by a file extension specified with -o/--output-file:++ $ hledger balancesheet -o foo.html # write HTML to foo.html++ The -O option can be used to override the file extension if needed:++ $ hledger balancesheet -o foo.txt -O html # write HTML to foo.txt++ Some notes about JSON output:++ o This feature is marked experimental, and not yet much used; you+ should expect our JSON to evolve. Real-world feedback is welcome.++ o Our JSON is rather large and verbose, as it is quite a faithful rep-+ resentation of hledger's internal data types. To understand the+ JSON, read the Haskell type definitions, which are mostly in+ https://github.com/simonmichael/hledger/blob/master/hledger-+ lib/Hledger/Data/Types.hs.++ o hledger represents quantities as Decimal values storing up to 255+ significant digits, eg for repeating decimals. Such numbers can+ arise in practice (from automatically-calculated transaction prices),+ and would break most JSON consumers. So in JSON, we show quantities+ as simple Numbers with at most 10 decimal places. We don't limit the+ number of integer digits, but that part is under your control. We+ hope this approach will not cause problems in practice; if you find+ otherwise, please let us know. (Cf #1195)++ Notes about SQL output:++ o SQL output is also marked experimental, and much like JSON could use+ real-world feedback.++ o SQL output is expected to work with sqlite, MySQL and PostgreSQL++ o SQL output is structured with the expectations that statements will+ be executed in the empty database. If you already have tables cre-+ ated via SQL output of hledger, you would probably want to either+ clear tables of existing data (via delete or truncate SQL statements)+ or drop tables completely as otherwise your postings will be duped.++COMMANDS+ hledger provides a number of commands for producing reports and manag-+ ing your data. Run hledger with no arguments to list the commands+ available, and hledger CMD to run a command. CMD can be the full com-+ mand name, or its standard abbreviation shown in the commands list, or+ any unambiguous prefix of the name. Eg: hledger bal.++ Here are the built-in commands, with the most often-used in bold:++ Data entry:++ These data entry commands are the only ones which can modify your jour-+ nal file.++ o add - add transactions using guided prompts++ o import - add any new transactions from other files (eg csv)++ Data management:++ o check - check for various kinds of issue in the data++ o close (equity) - generate balance-resetting transactions++ o diff - compare account transactions in two journal files++ o rewrite - generate extra postings, similar to print --auto++ Financial statements:++ o aregister (areg) - show transactions in a particular account++ o balancesheet (bs) - show assets, liabilities and net worth++ o balancesheetequity (bse) - show assets, liabilities and equity++ o cashflow (cf) - show changes in liquid assets++ o incomestatement (is) - show revenues and expenses++ o roi - show return on investments++ Miscellaneous reports:++ o accounts - show account names++ o activity - show postings-per-interval bar charts++ o balance (bal) - show balance changes/end balances/budgets in any+ accounts++ o codes - show transaction codes++ o commodities - show commodity/currency symbols++ o descriptions - show unique transaction descriptions++ o files - show input file paths++ o help - show hledger user manuals in several formats++ o notes - show unique note segments of transaction descriptions++ o payees - show unique payee segments of transaction descriptions++ o prices - show market price records++ o print - show transactions (journal entries)++ o print-unique - show only transactions with unique descriptions++ o register (reg) - show postings in one or more accounts & running+ total++ o register-match - show a recent posting that best matches a descrip-+ tion++ o stats - show journal statistics++ o tags - show tag names++ o test - run self tests++ Add-on commands:++ Programs or scripts named hledger-SOMETHING in your PATH are add-on+ commands; these appear in the commands list with a + mark. Two of+ these are maintained and released with hledger:++ o ui - an efficient terminal interface (TUI) for hledger++ o web - a simple web interface (WUI) for hledger++ And these add-ons are maintained separately:++ o iadd - a more interactive alternative for the add command++ o interest - generates interest transactions according to various+ schemes++ o stockquotes - downloads market prices for your commodities from+ AlphaVantage (experimental)++ Next, the detailed command docs, in alphabetical order.++ accounts+ accounts+ Show account names.++ This command lists account names, either declared with account direc-+ tives (--declared), posted to (--used), or both (the default). With+ query arguments, only matched account names and account names refer-+ enced by matched postings are shown. It shows a flat list by default.+ With --tree, it uses indentation to show the account hierarchy. In+ flat mode you can add --drop N to omit the first few account name com-+ ponents. Account names can be depth-clipped with depth:N or --depth N+ or -N.++ Examples:++ $ hledger accounts+ assets:bank:checking+ assets:bank:saving+ assets:cash+ expenses:food+ expenses:supplies+ income:gifts+ income:salary+ liabilities:debts++ activity+ activity+ Show an ascii barchart of posting counts per interval.++ The activity command displays an ascii histogram showing transaction+ counts by day, week, month or other reporting interval (by day is the+ default). With query arguments, it counts only matched transactions.++ Examples:++ $ hledger activity --quarterly+ 2008-01-01 **+ 2008-04-01 *******+ 2008-07-01+ 2008-10-01 **++ add+ add+ Prompt for transactions and add them to the journal. Any arguments+ will be used as default inputs for the first N prompts.++ Many hledger users edit their journals directly with a text editor, or+ generate them from CSV. For more interactive data entry, there is the+ add command, which prompts interactively on the console for new trans-+ actions, and appends them to the journal file (if there are multiple -f+ FILE options, the first file is used.) Existing transactions are not+ changed. This is the only hledger command that writes to the journal+ file.++ To use it, just run hledger add and follow the prompts. You can add as+ many transactions as you like; when you are finished, enter . or press+ control-d or control-c to exit.++ Features:++ o add tries to provide useful defaults, using the most similar (by+ description) recent transaction (filtered by the query, if any) as a+ template.++ o You can also set the initial defaults with command line arguments.++ o Readline-style edit keys can be used during data entry.++ o The tab key will auto-complete whenever possible - accounts, descrip-+ tions, dates (yesterday, today, tomorrow). If the input area is+ empty, it will insert the default value.++ o If the journal defines a default commodity, it will be added to any+ bare numbers entered.++ o A parenthesised transaction code may be entered following a date.++ o Comments and tags may be entered following a description or amount.++ o If you make a mistake, enter < at any prompt to go one step backward.++ o Input prompts are displayed in a different colour when the terminal+ supports it.++ Example (see the tutorial for a detailed explanation):++ $ hledger add+ Adding transactions to journal file /src/hledger/examples/sample.journal+ Any command line arguments will be used as defaults.+ Use tab key to complete, readline keys to edit, enter to accept defaults.+ An optional (CODE) may follow transaction dates.+ An optional ; COMMENT may follow descriptions or amounts.+ If you make a mistake, enter < at any prompt to go one step backward.+ To end a transaction, enter . when prompted.+ To quit, enter . at a date prompt or press control-d or control-c.+ Date [2015/05/22]:+ Description: supermarket+ Account 1: expenses:food+ Amount 1: $10+ Account 2: assets:checking+ Amount 2 [$-10.0]:+ Account 3 (or . or enter to finish this transaction): .+ 2015/05/22 supermarket+ expenses:food $10+ assets:checking $-10.0++ Save this transaction to the journal ? [y]:+ Saved.+ Starting the next transaction (. or ctrl-D/ctrl-C to quit)+ Date [2015/05/22]: <CTRL-D> $++ On Microsoft Windows, the add command makes sure that no part of the+ file path ends with a period, as that would cause problems (#1056).++ aregister+ aregister, areg++ Show the transactions and running historical balance in an account,+ with each line item representing one transaction.++ aregister shows the transactions affecting a particular account and its+ subaccounts, with each line item representing a whole transaction - as+ in bank statements, hledger-ui, hledger-web and other accounting apps.++ Note this is unlike the register command, which shows individual post-+ ings and does not always show a single account or a historical balance.++ A reminder, "historical" balances include any balance from transactions+ before the report start date, so (if opening balances are recorded cor-+ rectly) aregister will show the real-world balances of an account, as+ you would see in a bank statement.++ As a quick rule of thumb, use aregister for reconciling real-world+ asset/liability accounts and register for reviewing detailed rev-+ enues/expenses.++ aregister shows the register for just one account (and its subac-+ counts). This account must be specified as the first argument. You+ can write either the full account name, or a case-insensitive regular+ expression which will select the alphabetically first matched account.+ (Eg if you have assets:aaa:checking and assets:bbb:checking accounts,+ hledger areg checking would select assets:aaa:checking.)++ Any additional arguments form a query which will filter the transac-+ tions shown.++ Each aregister line item shows:++ o the transaction's date (or the relevant posting's date if different,+ see below)++ o the names of all the other account(s) involved in this transaction+ (probably abbreviated)++ o the total change to this account's balance from this transaction++ o the account's historical running balance after this transaction.++ Transactions making a net change of zero are not shown by default; add+ the -E/--empty flag to show them.++ aregister ignores a depth limit, so its final total will always match a+ balance report with similar arguments.++ This command also supports the output destination and output format+ options The output formats supported are txt, csv, and json.++ aregister and custom posting dates+ Transactions whose date is outside the report period can still be+ shown, if they have a posting to this account dated inside the report+ period. (And in this case it's the posting date that is shown.) This+ ensures that aregister can show an accurate historical running balance,+ matching the one shown by register -H with the same arguments.++ To filter strictly by transaction date instead, add the --txn-dates+ flag. If you use this flag and some of your postings have custom+ dates, it's probably best to assume the running balance is wrong.++ Examples:++ Show all transactions and historical running balance in the first+ account whose name contains "checking":++ $ hledger areg checking++ Show transactions and historical running balance in all asset accounts+ during july:++ $ hledger areg assets date:jul++ balance+ balance, bal+ Show accounts and their balances.++ balance is one of hledger's oldest and most versatile commands, for+ listing account balances, balance changes, values, value changes and+ more, during one time period or many. Generally it shows a table, with+ rows representing accounts, and columns representing periods.++ Note there are some higher-level variants of the balance command with+ convenient defaults, which can be simpler to use: balancesheet, bal-+ ancesheetequity, cashflow and incomestatement. When you need more con-+ trol, then use balance.++ balance features+ Here's a quick overview of the balance command's features, followed by+ more detailed descriptions and examples. Many of these work with the+ higher-level commands as well.++ balance can show..++ o accounts as a list (-l) or a tree (-t)++ o optionally depth-limited (-[1-9])++ o sorted by declaration order and name, or by amount++ ..and their..++ o balance changes (the default)++ o or actual and planned balance changes (--budget)++ o or value of balance changes (-V)++ o or change of balance values (--valuechange)++ ..in..++ o one time period (the whole journal period by default)++ o or multiple periods (-D, -W, -M, -Q, -Y, -p INTERVAL)++ ..either..++ o per period (the default)++ o or accumulated since report start date (--cumulative)++ o or accumulated since account creation (--historical/-H)++ ..possibly converted to..++ o cost (--value=cost[,COMM]/--cost/-B)++ o or market value, as of transaction dates (--value=then[,COMM])++ o or at period ends (--value=end[,COMM])++ o or now (--value=now)++ o or at some other date (--value=YYYY-MM-DD)++ ..with..++ o totals (-T), averages (-A), percentages (-%), inverted sign+ (--invert)++ o rows and columns swapped (--transpose)++ o another field used as account name (--pivot)++ o custom-formatted line items (single-period reports only) (--format)++ This command supports the output destination and output format options,+ with output formats txt, csv, json, and (multi-period reports only:)+ html. In txt output in a colour-supporting terminal, negative amounts+ are shown in red.++ Simple balance report+ With no arguments, balance shows a list of all accounts and their+ change of balance - ie, the sum of posting amounts, both inflows and+ outflows - during the entire period of the journal. For real-world+ accounts, this should also match their end balance at the end of the+ journal period (more on this below).++ Accounts are sorted by declaration order if any, and then alphabeti-+ cally by account name. For instance, using examples/sample.journal:++ $ hledger bal+ $1 assets:bank:saving+ $-2 assets:cash+ $1 expenses:food+ $1 expenses:supplies+ $-1 income:gifts+ $-1 income:salary+ $1 liabilities:debts+ --------------------+ 0++ Accounts with a zero balance (and no non-zero subaccounts, in tree mode+ - see below) are hidden by default. Use -E/--empty to show them+ (revealing assets:bank:checking here):++ $ hledger -f examples/sample.journal bal -E+ 0 assets:bank:checking+ $1 assets:bank:saving+ $-2 assets:cash+ $1 expenses:food+ $1 expenses:supplies+ $-1 income:gifts+ $-1 income:salary+ $1 liabilities:debts+ --------------------+ 0++ The total of the amounts displayed is shown as the last line, unless+ -N/--no-total is used.++ Filtered balance report+ You can show fewer accounts, a different time period, totals from+ cleared transactions only, etc. by using query arguments or options to+ limit the postings being matched. Eg:++ $ hledger bal --cleared assets date:200806+ $-2 assets:cash+ --------------------+ $-2++ List or tree mode+ By default, or with -l/--flat, accounts are shown as a flat list with+ their full names visible, as in the examples above.++ With -t/--tree, the account hierarchy is shown, with subaccounts'+ "leaf" names indented below their parent:++ $ hledger balance+ $-1 assets+ $1 bank:saving+ $-2 cash+ $2 expenses+ $1 food+ $1 supplies+ $-2 income+ $-1 gifts+ $-1 salary+ $1 liabilities:debts+ --------------------+ 0++ Notes:++ o "Boring" accounts are combined with their subaccount for more compact+ output, unless --no-elide is used. Boring accounts have no balance+ of their own and just one subaccount (eg assets:bank and liabilities+ above).++ o All balances shown are "inclusive", ie including the balances from+ all subaccounts. Note this means some repetition in the output,+ which requires explanation when sharing reports with non-plaintextac-+ counting-users. A tree mode report's final total is the sum of the+ top-level balances shown, not of all the balances shown.++ o Each group of sibling accounts (ie, under a common parent) is sorted+ separately.++ Depth limiting+ With a depth:N query, or --depth N option, or just -N, balance reports+ will show accounts only to the specified depth, hiding the deeper sub-+ accounts. Account balances at the depth limit always include the bal-+ ances from any hidden subaccounts (even in list mode). This can be+ useful for getting an overview. Eg, limiting to depth 1:++ $ hledger balance -N -1+ $-1 assets+ $2 expenses+ $-2 income+ $1 liabilities++ You can also hide top-level account name parts, using --drop N. This+ can be useful for hiding repetitive top-level account names:++ $ hledger bal expenses --drop 1+ $1 food+ $1 supplies+ --------------------+ $2+++ Multi-period balance report+ With a report interval (set by the -D/--daily, -W/--weekly,+ -M/--monthly, -Q/--quarterly, -Y/--yearly, or -p/--period flag), bal-+ ance shows a tabular report, with columns representing successive time+ periods (and a title):++ $ hledger balance --quarterly income expenses -E+ Balance changes in 2008:++ || 2008q1 2008q2 2008q3 2008q4+ ===================++=================================+ expenses:food || 0 $1 0 0+ expenses:supplies || 0 $1 0 0+ income:gifts || 0 $-1 0 0+ income:salary || $-1 0 0 0+ -------------------++---------------------------------+ || $-1 $1 0 0++ Notes:++ o The report's start/end dates will be expanded, if necessary, to fully+ encompass the displayed subperiods (so that the first and last subpe-+ riods have the same duration as the others).++ o Leading and trailing periods (columns) containing all zeroes are not+ shown, unless -E/--empty is used.++ o Accounts (rows) containing all zeroes are not shown, unless+ -E/--empty is used.++ o Amounts with many commodities are shown in abbreviated form, unless+ --no-elide is used. (experimental)++ o Average and/or total columns can be added with the -A/--average and+ -T/--row-total flags.++ o The --transpose flag can be used to exchange rows and columns.++ o The --pivot FIELD option causes a different transaction field to be+ used as "account name". See PIVOTING.++ Multi-period reports with many periods can be too wide for easy viewing+ in the terminal. Here are some ways to handle that:++ o Hide the totals row with -N/--no-total++ o Convert to a single currency with -V++ o Maximize the terminal window++ o Reduce the terminal's font size++ o View with a pager like less, eg: hledger bal -D --color=yes | less+ -RS++ o Output as CSV and use a CSV viewer like visidata (hledger bal -D -O+ csv | vd -f csv), Emacs' csv-mode (M-x csv-mode, C-c C-a), or a+ spreadsheet (hledger bal -D -o a.csv && open a.csv)++ o Output as HTML and view with a browser: hledger bal -D -o a.html &&+ open a.html++ Sorting by amount+ With -S/--sort-amount, accounts with the largest (most positive) bal-+ ances are shown first. Eg: hledger bal expenses -MAS shows your big-+ gest averaged monthly expenses first.++ Revenues and liability balances are typically negative, however, so -S+ shows these in reverse order. To work around this, you can add+ --invert to flip the signs. (Or, use one of the higher-level reports,+ which flip the sign automatically. Eg: hledger incomestatement -MAS).+++ Percentages+ With -%/--percent, balance reports show each account's value expressed+ as a percentage of the (column) total:++ $ hledger bal expenses -Q -%+ Balance changes in 2008:++ || 2008Q1 2008Q2 2008Q3 2008Q4+ ===================++=================================+ expenses:food || 0 50.0 % 0 0+ expenses:supplies || 0 50.0 % 0 0+ -------------------++---------------------------------+ || 0 100.0 % 0 0++ Note it is not useful to calculate percentages if the amounts in a col-+ umn have mixed signs. In this case, make a separate report for each+ sign, eg:++ $ hledger bal -% amt:`>0`+ $ hledger bal -% amt:`<0`++ Similarly, if the amounts in a column have mixed commodities, convert+ them to one commodity with -B, -V, -X or --value, or make a separate+ report for each commodity:++ $ hledger bal -% cur:\\$+ $ hledger bal -% cur:EUR++ Balance change, end balance+ It's important to be clear on the meaning of the numbers shown in bal-+ ance reports. Here is some terminology we use:++ A balance change is the net amount added to, or removed from, an+ account during some period.++ An end balance is the amount accumulated in an account as of some date+ (and some time, but hledger doesn't store that; assume end of day in+ your timezone). It is the sum of previous balance changes.++ We call it a historical end balance if it includes all balance changes+ since the account was created. For a real world account, this means it+ will match the "historical record", eg the balances reported in your+ bank statements or bank web UI. (If they are correct!)++ In general, balance changes are what you want to see when reviewing+ revenues and expenses, and historical end balances are what you want to+ see when reviewing or reconciling asset, liability and equity accounts.++ balance shows balance changes by default. To see accurate historical+ end balances:++ 1. Initialise account starting balances with an "opening balances"+ transaction (a transfer from equity to the account), unless the+ journal covers the account's full lifetime.++ 2. Include all of of the account's prior postings in the report, by not+ specifying a report start date, or by using the -H/--historical+ flag. (-H causes report start date to be ignored when summing post-+ ings.)++ Balance report types+ For more flexible reporting, there are three important option groups:++ hledger balance [CALCULATIONTYPE] [ACCUMULATIONTYPE] [VALUATIONTYPE]+ ...++ The first two are the most important: calculation type selects the+ basic calculation to perform for each table cell, while accumulation+ type says which postings should be included in each cell's calculation.+ Typically one or both of these are selected by default, so you don't+ need to write them explicitly. A valuation type can be added if you+ want to convert the basic report to value or cost.++ Calculation type:+ The basic calculation to perform for each table cell. It is one of:++ o --sum : sum the posting amounts (default)++ o --budget : like --sum but also show a goal amount++ o --valuechange : show the change in period-end historical balance val-+ ues++ Accumulation type:+ Which postings should be included in each cell's calculation. It is+ one of:++ o --change : postings from column start to column end, ie within the+ cell's period. Typically used to see revenues/expenses. (default+ for balance, incomestatement)++ o --cumulative : postings from report start to column end, eg to show+ changes accumulated since the report's start date. Rarely used.++ o --historical/-H : postings from journal start to column end, ie all+ postings from account creation to the end of the cell's period. Typ-+ ically used to see historical end balances of assets/liabili-+ ties/equity. (default for balancesheet, balancesheetequity, cash-+ flow)++ Valuation type:+ Which kind of valuation, valuation date(s) and optionally a target val-+ uation commodity to use. It is one of:++ o no valuation, show amounts in their original commodities (default)++ o --value=cost[,COMM] : no valuation, show amounts converted to cost++ o --value=then[,COMM] : show value at transaction dates++ o --value=end[,COMM] : show value at period end date(s) (default with+ --valuechange)++ o --value=now[,COMM] : show value at today's date++ o --value=YYYY-MM-DD[,COMM] : show value at another date++ or one of their aliases: --cost/-B, --market/-V or --exchange/-X.++ Most combinations of these options should produce reasonable reports,+ but if you find any that seem wrong or misleading, let us know. The+ following restrictions are applied:++ o --valuechange implies --value=end++ o --valuechange makes --change the default when used with the bal-+ ancesheet/balancesheetequity commands++ o --cumulative or --historical disables --row-total/-T++ For reference, here is what the combinations of accumulation and valua-+ tion show:+++ Valua- no valuation --value= then --value= end --value= YYYY-+ tion: MM-DD /now+ >Accumu-+ lation:+ v+ ------------------------------------------------------------------------------------+ --change change in period sum of posting- period-end DATE-value of+ date market val- value of change change in+ ues in period in period period+ --cumu- change from sum of posting- period-end DATE-value of+ lative report start to date market val- value of change change from+ period end ues from report from report report start+ start to period start to period to period end+ end end+ --his- change from sum of posting- period-end DATE-value of+ torical journal start to date market val- value of change change from+ /-H period end (his- ues from journal from journal journal start+ torical end bal- start to period start to period to period end+ ance) end end++ Useful balance reports+ Some frequently used balance options/reports are:++ o bal -M revenues expenses+ Show revenues/expenses in each month. Also available as the incomes-+ tatement command.++ o bal -M -H assets liabilities+ Show historical asset/liability balances at each month end. Also+ available as the balancesheet command.++ o bal -M -H assets liabilities equity+ Show historical asset/liability/equity balances at each month end.+ Also available as the balancesheetequity command.++ o bal -M assets not:receivable+ Show changes to liquid assets in each month. Also available as the+ cashflow command.++ Also:++ o bal -M expenses -2 -SA+ Show monthly expenses summarised to depth 2 and sorted by average+ amount.++ o bal -M --budget expenses+ Show monthly expenses and budget goals.++ o bal -M --valuechange investments+ Show monthly change in market value of investment assets.++ o bal investments --valuechange -D date:lastweek amt:'>1000' -STA+ [--invert]+ Show top gainers [or losers] last week++ Budget report+ The --budget report type activates extra columns showing any budget+ goals for each account and period. The budget goals are defined by+ periodic transactions. This is very useful for comparing planned and+ actual income, expenses, time usage, etc.++ For example, you can take average monthly expenses in the common+ expense categories to construct a minimal monthly budget:++ ;; Budget+ ~ monthly+ income $2000+ expenses:food $400+ expenses:bus $50+ expenses:movies $30+ assets:bank:checking++ ;; Two months worth of expenses+ 2017-11-01+ income $1950+ expenses:food $396+ expenses:bus $49+ expenses:movies $30+ expenses:supplies $20+ assets:bank:checking++ 2017-12-01+ income $2100+ expenses:food $412+ expenses:bus $53+ expenses:gifts $100+ assets:bank:checking++ You can now see a monthly budget report:++ $ hledger balance -M --budget+ Budget performance in 2017/11/01-2017/12/31:++ || Nov Dec+ ======================++====================================================+ assets || $-2445 [ 99% of $-2480] $-2665 [ 107% of $-2480]+ assets:bank || $-2445 [ 99% of $-2480] $-2665 [ 107% of $-2480]+ assets:bank:checking || $-2445 [ 99% of $-2480] $-2665 [ 107% of $-2480]+ expenses || $495 [ 103% of $480] $565 [ 118% of $480]+ expenses:bus || $49 [ 98% of $50] $53 [ 106% of $50]+ expenses:food || $396 [ 99% of $400] $412 [ 103% of $400]+ expenses:movies || $30 [ 100% of $30] 0 [ 0% of $30]+ income || $1950 [ 98% of $2000] $2100 [ 105% of $2000]+ ----------------------++----------------------------------------------------+ || 0 [ 0] 0 [ 0]++ This is different from a normal balance report in several ways:++ o Only accounts with budget goals during the report period are shown,+ by default.++ o In each column, in square brackets after the actual amount, budget+ goal amounts are shown, and the actual/goal percentage. (Note: bud-+ get goals should be in the same commodity as the actual amount.)++ o All parent accounts are always shown, even in list mode. Eg assets,+ assets:bank, and expenses above.++ o Amounts always include all subaccounts, budgeted or unbudgeted, even+ in list mode.++ This means that the numbers displayed will not always add up! Eg above,+ the expenses actual amount includes the gifts and supplies transac-+ tions, but the expenses:gifts and expenses:supplies accounts are not+ shown, as they have no budget amounts declared.++ This can be confusing. When you need to make things clearer, use the+ -E/--empty flag, which will reveal all accounts including unbudgeted+ ones, giving the full picture. Eg:++ $ hledger balance -M --budget --empty+ Budget performance in 2017/11/01-2017/12/31:++ || Nov Dec+ ======================++====================================================+ assets || $-2445 [ 99% of $-2480] $-2665 [ 107% of $-2480]+ assets:bank || $-2445 [ 99% of $-2480] $-2665 [ 107% of $-2480]+ assets:bank:checking || $-2445 [ 99% of $-2480] $-2665 [ 107% of $-2480]+ expenses || $495 [ 103% of $480] $565 [ 118% of $480]+ expenses:bus || $49 [ 98% of $50] $53 [ 106% of $50]+ expenses:food || $396 [ 99% of $400] $412 [ 103% of $400]+ expenses:gifts || 0 $100+ expenses:movies || $30 [ 100% of $30] 0 [ 0% of $30]+ expenses:supplies || $20 0+ income || $1950 [ 98% of $2000] $2100 [ 105% of $2000]+ ----------------------++----------------------------------------------------+ || 0 [ 0] 0 [ 0]++ You can roll over unspent budgets to next period with --cumulative:++ $ hledger balance -M --budget --cumulative+ Budget performance in 2017/11/01-2017/12/31:++ || Nov Dec+ ======================++====================================================+ assets || $-2445 [ 99% of $-2480] $-5110 [ 103% of $-4960]+ assets:bank || $-2445 [ 99% of $-2480] $-5110 [ 103% of $-4960]+ assets:bank:checking || $-2445 [ 99% of $-2480] $-5110 [ 103% of $-4960]+ expenses || $495 [ 103% of $480] $1060 [ 110% of $960]+ expenses:bus || $49 [ 98% of $50] $102 [ 102% of $100]+ expenses:food || $396 [ 99% of $400] $808 [ 101% of $800]+ expenses:movies || $30 [ 100% of $30] $30 [ 50% of $60]+ income || $1950 [ 98% of $2000] $4050 [ 101% of $4000]+ ----------------------++----------------------------------------------------+ || 0 [ 0] 0 [ 0]++ For more examples and notes, see Budgeting.++ Budget report start date+ This might be a bug, but for now: when making budget reports, it's a+ good idea to explicitly set the report's start date to the first day of+ a reporting period, because a periodic rule like ~ monthly generates+ its transactions on the 1st of each month, and if your journal has no+ regular transactions on the 1st, the default report start date could+ exclude that budget goal, which can be a little surprising. Eg here+ the default report period is just the day of 2020-01-15:++ ~ monthly in 2020+ (expenses:food) $500++ 2020-01-15+ expenses:food $400+ assets:checking++ $ hledger bal expenses --budget+ Budget performance in 2020-01-15:++ || 2020-01-15+ ==============++============+ <unbudgeted> || $400+ --------------++------------+ || $400++ To avoid this, specify the budget report's period, or at least the+ start date, with -b/-e/-p/date:, to ensure it includes the budget goal+ transactions (periodic transactions) that you want. Eg, adding -b+ 2020/1/1 to the above:++ $ hledger bal expenses --budget -b 2020/1/1+ Budget performance in 2020-01-01..2020-01-15:++ || 2020-01-01..2020-01-15+ ===============++========================+ expenses:food || $400 [80% of $500]+ ---------------++------------------------+ || $400 [80% of $500]++ Nested budgets+ You can add budgets to any account in your account hierarchy. If you+ have budgets on both parent account and some of its children, then bud-+ get(s) of the child account(s) would be added to the budget of their+ parent, much like account balances behave.++ In the most simple case this means that once you add a budget to any+ account, all its parents would have budget as well.++ To illustrate this, consider the following budget:++ ~ monthly from 2019/01+ expenses:personal $1,000.00+ expenses:personal:electronics $100.00+ liabilities++ With this, monthly budget for electronics is defined to be $100 and+ budget for personal expenses is an additional $1000, which implicitly+ means that budget for both expenses:personal and expenses is $1100.++ Transactions in expenses:personal:electronics will be counted both+ towards its $100 budget and $1100 of expenses:personal , and transac-+ tions in any other subaccount of expenses:personal would be counted+ towards only towards the budget of expenses:personal.++ For example, let's consider these transactions:++ ~ monthly from 2019/01+ expenses:personal $1,000.00+ expenses:personal:electronics $100.00+ liabilities++ 2019/01/01 Google home hub+ expenses:personal:electronics $90.00+ liabilities $-90.00++ 2019/01/02 Phone screen protector+ expenses:personal:electronics:upgrades $10.00+ liabilities++ 2019/01/02 Weekly train ticket+ expenses:personal:train tickets $153.00+ liabilities++ 2019/01/03 Flowers+ expenses:personal $30.00+ liabilities++ As you can see, we have transactions in expenses:personal:electron-+ ics:upgrades and expenses:personal:train tickets, and since both of+ these accounts are without explicitly defined budget, these transac-+ tions would be counted towards budgets of expenses:personal:electronics+ and expenses:personal accordingly:++ $ hledger balance --budget -M+ Budget performance in 2019/01:++ || Jan+ ===============================++===============================+ expenses || $283.00 [ 26% of $1100.00]+ expenses:personal || $283.00 [ 26% of $1100.00]+ expenses:personal:electronics || $100.00 [ 100% of $100.00]+ liabilities || $-283.00 [ 26% of $-1100.00]+ -------------------------------++-------------------------------+ || 0 [ 0]++ And with --empty, we can get a better picture of budget allocation and+ consumption:++ $ hledger balance --budget -M --empty+ Budget performance in 2019/01:++ || Jan+ ========================================++===============================+ expenses || $283.00 [ 26% of $1100.00]+ expenses:personal || $283.00 [ 26% of $1100.00]+ expenses:personal:electronics || $100.00 [ 100% of $100.00]+ expenses:personal:electronics:upgrades || $10.00+ expenses:personal:train tickets || $153.00+ liabilities || $-283.00 [ 26% of $-1100.00]+ ----------------------------------------++-------------------------------+ || 0 [ 0]++ Customising single-period balance reports+ For single-period balance reports displayed in the terminal (only), you+ can use --format FMT to customise the format and content of each line.+ Eg:++ $ hledger balance --format "%20(account) %12(total)"+ assets $-1+ bank:saving $1+ cash $-2+ expenses $2+ food $1+ supplies $1+ income $-2+ gifts $-1+ salary $-1+ liabilities:debts $1+ ---------------------------------+ 0++ The FMT format string (plus a newline) specifies the formatting applied+ to each account/balance pair. It may contain any suitable text, with+ data fields interpolated like so:++ %[MIN][.MAX](FIELDNAME)++ o MIN pads with spaces to at least this width (optional)++ o MAX truncates at this width (optional)++ o FIELDNAME must be enclosed in parentheses, and can be one of:++ o depth_spacer - a number of spaces equal to the account's depth, or+ if MIN is specified, MIN * depth spaces.++ o account - the account's name++ o total - the account's balance/posted total, right justified++ Also, FMT can begin with an optional prefix to control how multi-com-+ modity amounts are rendered:++ o %_ - render on multiple lines, bottom-aligned (the default)++ o %^ - render on multiple lines, top-aligned++ o %, - render on one line, comma-separated++ There are some quirks. Eg in one-line mode, %(depth_spacer) has no+ effect, instead %(account) has indentation built in. Experimentation+ may be needed to get pleasing results.++ Some example formats:++ o %(total) - the account's total++ o %-20.20(account) - the account's name, left justified, padded to 20+ characters and clipped at 20 characters++ o %,%-50(account) %25(total) - account name padded to 50 characters,+ total padded to 20 characters, with multiple commodities rendered on+ one line++ o %20(total) %2(depth_spacer)%-(account) - the default format for the+ single-column balance report++ balancesheet+ balancesheet, bs+ This command displays a balance sheet, showing historical ending bal-+ ances of asset and liability accounts. (To see equity as well, use the+ balancesheetequity command.) Amounts are shown with normal positive+ sign, as in conventional financial statements.++ The asset and liability accounts shown are those accounts declared with+ the Asset or Cash or Liability type, or otherwise all accounts under a+ top-level asset or liability account (case insensitive, plurals+ allowed).++ Example:++ $ hledger balancesheet+ Balance Sheet++ Assets:+ $-1 assets+ $1 bank:saving+ $-2 cash+ --------------------+ $-1++ Liabilities:+ $1 liabilities:debts+ --------------------+ $1++ Total:+ --------------------+ 0++ This command is a higher-level variant of the balance command, and sup-+ ports many of that command's features, such as multi-period reports.+ It is similar to hledger balance -H assets liabilities, but with+ smarter account detection, and liabilities displayed with their sign+ flipped.++ This command also supports the output destination and output format+ options The output formats supported are txt, csv, html, and (experi-+ mental) json.++ balancesheetequity+ balancesheetequity, bse+ This command displays a balance sheet, showing historical ending bal-+ ances of asset, liability and equity accounts. Amounts are shown with+ normal positive sign, as in conventional financial statements.++ The asset, liability and equity accounts shown are those accounts+ declared with the Asset, Cash, Liability or Equity type, or otherwise+ all accounts under a top-level asset, liability or equity account (case+ insensitive, plurals allowed).++ Example:++ $ hledger balancesheetequity+ Balance Sheet With Equity++ Assets:+ $-2 assets+ $1 bank:saving+ $-3 cash+ --------------------+ $-2++ Liabilities:+ $1 liabilities:debts+ --------------------+ $1++ Equity:+ $1 equity:owner+ --------------------+ $1++ Total:+ --------------------+ 0++ This command is a higher-level variant of the balance command, and sup-+ ports many of that command's features, such as multi-period reports.+ It is similar to hledger balance -H assets liabilities equity, but with+ smarter account detection, and liabilities/equity displayed with their+ sign flipped.++ This command also supports the output destination and output format+ options The output formats supported are txt, csv, html, and (experi-+ mental) json.++ cashflow+ cashflow, cf+ This command displays a cashflow statement, showing the inflows and+ outflows affecting "cash" (ie, liquid) assets. Amounts are shown with+ normal positive sign, as in conventional financial statements.++ The "cash" accounts shown are those accounts declared with the Cash+ type, or otherwise all accounts under a top-level asset account (case+ insensitive, plural allowed) which do not have fixed, investment,+ receivable or A/R in their name.++ Example:++ $ hledger cashflow+ Cashflow Statement++ Cash flows:+ $-1 assets+ $1 bank:saving+ $-2 cash+ --------------------+ $-1++ Total:+ --------------------+ $-1++ This command is a higher-level variant of the balance command, and sup-+ ports many of that command's features, such as multi-period reports.+ It is similar to hledger balance assets not:fixed not:investment+ not:receivable, but with smarter account detection.++ This command also supports the output destination and output format+ options The output formats supported are txt, csv, html, and (experi-+ mental) json.++ check+ check+ Check for various kinds of errors in your data.++ hledger provides a number of built-in error checks to help prevent+ problems in your data. Some of these are run automatically; or, you+ can use this check command to run them on demand, with no output and a+ zero exit code if all is well. Specify their names (or a prefix) as+ argument(s).++ Some examples:++ hledger check # basic checks+ hledger check -s # basic + strict checks+ hledger check ordereddates payees # basic + two other checks++ Here are the checks currently available:++ Basic checks+ These checks are always run automatically, by (almost) all hledger com-+ mands, including check:++ o parseable - data files are well-formed and can be successfully parsed++ o autobalanced - all transactions are balanced, inferring missing+ amounts where necessary, and possibly converting commodities using+ transaction prices or automatically-inferred transaction prices++ o assertions - all balance assertions in the journal are passing.+ (This check can be disabled with -I/--ignore-assertions.)++ Strict checks+ These additional checks are run when the -s/--strict (strict mode) flag+ is used. Or, they can be run by giving their names as arguments to+ check:++ o accounts - all account names used by transactions have been declared++ o commodities - all commodity symbols used have been declared++ Other checks+ These checks can be run only by giving their names as arguments to+ check. They are more specialised and not desirable for everyone,+ therefore optional:++ o ordereddates - transactions are ordered by date in each file++ o payees - all payees used by transactions have been declared++ o uniqueleafnames - all account leaf names are unique++ Custom checks+ A few more checks are are available as separate add-on commands, in+ https://github.com/simonmichael/hledger/tree/master/bin:++ o hledger-check-tagfiles - all tag values containing / (a forward+ slash) exist as file paths++ o hledger-check-fancyassertions - more complex balance assertions are+ passing++ You could make similar scripts to perform your own custom checks. See:+ Cookbook -> Scripting.++ close+ close, equity+ Prints a "closing balances" transaction and an "opening balances"+ transaction that bring account balances to and from zero, respectively.+ These can be added to your journal file(s), eg to bring asset/liability+ balances forward into a new journal file, or to close out rev-+ enues/expenses to retained earnings at the end of a period.++ You can print just one of these transactions by using the --close or+ --open flag. You can customise their descriptions with the --close-+ desc and --open-desc options.++ One amountless posting to "equity:opening/closing balances" is added to+ balance the transactions, by default. You can customise this account+ name with --close-acct and --open-acct; if you specify only one of+ these, it will be used for both.++ With --x/--explicit, the equity posting's amount will be shown. And if+ it involves multiple commodities, a posting for each commodity will be+ shown, as with the print command.++ With --interleaved, the equity postings are shown next to the postings+ they balance, which makes troubleshooting easier.++ By default, transaction prices in the journal are ignored when generat-+ ing the closing/opening transactions. With --show-costs, this cost+ information is preserved (balance -B reports will be unchanged after+ the transition). Separate postings are generated for each cost in each+ commodity. Note this can generate very large journal entries, if you+ have many foreign currency or investment transactions.++ close usage+ If you split your journal files by time (eg yearly), you will typically+ run this command at the end of the year, and save the closing transac-+ tion as last entry of the old file, and the opening transaction as the+ first entry of the new file. This makes the files self contained, so+ that correct balances are reported no matter which of them are loaded.+ Ie, if you load just one file, the balances are initialised correctly;+ or if you load several files, the redundant closing/opening transac-+ tions cancel each other out. (They will show up in print or register+ reports; you can exclude them with a query like not:desc:'(open-+ ing|closing) balances'.)++ If you're running a business, you might also use this command to "close+ the books" at the end of an accounting period, transferring income+ statement account balances to retained earnings. (You may want to+ change the equity account name to something like "equity:retained earn-+ ings".)++ By default, the closing transaction is dated yesterday, the balances+ are calculated as of end of yesterday, and the opening transaction is+ dated today. To close on some other date, use: hledger close -e OPEN-+ INGDATE. Eg, to close/open on the 2018/2019 boundary, use -e 2019.+ You can also use -p or date:PERIOD (any starting date is ignored).++ Both transactions will include balance assertions for the+ closed/reopened accounts. You probably shouldn't use status or real-+ ness filters (like -C or -R or status:) with this command, or the gen-+ erated balance assertions will depend on these flags. Likewise, if you+ run this command with --auto, the balance assertions will probably+ always require --auto.++ Examples:++ Carrying asset/liability balances into a new file for 2019:++ $ hledger close -f 2018.journal -e 2019 assets liabilities --open+ # (copy/paste the output to the start of your 2019 journal file)+ $ hledger close -f 2018.journal -e 2019 assets liabilities --close+ # (copy/paste the output to the end of your 2018 journal file)++ Now:++ $ hledger bs -f 2019.journal # one file - balances are correct+ $ hledger bs -f 2018.journal -f 2019.journal # two files - balances still correct+ $ hledger bs -f 2018.journal not:desc:closing # to see year-end balances, must exclude closing txn++ Transactions spanning the closing date can complicate matters, breaking+ balance assertions:++ 2018/12/30 a purchase made in 2018, clearing the following year+ expenses:food 5+ assets:bank:checking -5 ; [2019/1/2]++ Here's one way to resolve that:++ ; in 2018.journal:+ 2018/12/30 a purchase made in 2018, clearing the following year+ expenses:food 5+ liabilities:pending++ ; in 2019.journal:+ 2019/1/2 clearance of last year's pending transactions+ liabilities:pending 5 = 0+ assets:checking++ codes+ codes+ List the codes seen in transactions, in the order parsed.++ This command prints the value of each transaction's code field, in the+ order transactions were parsed. The transaction code is an optional+ value written in parentheses between the date and description, often+ used to store a cheque number, order number or similar.++ Transactions aren't required to have a code, and missing or empty codes+ will not be shown by default. With the -E/--empty flag, they will be+ printed as blank lines.++ You can add a query to select a subset of transactions.++ Examples:++ 1/1 (123)+ (a) 1++ 1/1 ()+ (a) 1++ 1/1+ (a) 1++ 1/1 (126)+ (a) 1++ $ hledger codes+ 123+ 124+ 126++ $ hledger codes -E+ 123+ 124+++ 126++ commodities+ commodities+ List all commodity/currency symbols used or declared in the journal.++ descriptions+ descriptions+ List the unique descriptions that appear in transactions.++ This command lists the unique descriptions that appear in transactions,+ in alphabetic order. You can add a query to select a subset of trans-+ actions.++ Example:++ $ hledger descriptions+ Store Name+ Gas Station | Petrol+ Person A++ diff+ diff+ Compares a particular account's transactions in two input files. It+ shows any transactions to this account which are in one file but not in+ the other.++ More precisely, for each posting affecting this account in either file,+ it looks for a corresponding posting in the other file which posts the+ same amount to the same account (ignoring date, description, etc.)+ Since postings not transactions are compared, this also works when mul-+ tiple bank transactions have been combined into a single journal entry.++ This is useful eg if you have downloaded an account's transactions from+ your bank (eg as CSV data). When hledger and your bank disagree about+ the account balance, you can compare the bank data with your journal to+ find out the cause.++ Examples:++ $ hledger diff -f $LEDGER_FILE -f bank.csv assets:bank:giro+ These transactions are in the first file only:++ 2014/01/01 Opening Balances+ assets:bank:giro EUR ...+ ...+ equity:opening balances EUR -...++ These transactions are in the second file only:++ files+ files+ List all files included in the journal. With a REGEX argument, only+ file names matching the regular expression (case sensitive) are shown.++ help+ help+ Show the hledger user manual in one of several formats, optionally+ positioned at a given TOPIC (if possible). TOPIC is any heading, or+ heading prefix, in the manual. Some examples: commands, print, 'auto+ postings', periodic.++ This command shows the user manual built in to this hledger version.+ It can be useful if the correct version of the hledger manual, or the+ usual viewing tools, are not installed on your system.++ By default it uses the best viewer it can find in $PATH, in this order:+ info, man, $PAGER (unless a topic is specified), less, or stdout. When+ run non-interactively, it always uses stdout. Or you can select a par-+ ticular viewer with the -i (info), -m (man), or -p (pager) flags.++ import+ import+ Read new transactions added to each FILE since last run, and add them+ to the main journal file. Or with --dry-run, just print the transac-+ tions that would be added. Or with --catchup, just mark all of the+ FILEs' transactions as imported, without actually importing any.++ Unlike other hledger commands, with import the journal file is an out-+ put file, and will be modified, though only by appending (existing data+ will not be changed). The input files are specified as arguments, so+ to import one or more CSV files to your main journal, you will run+ hledger import bank.csv or perhaps hledger import *.csv.++ Note you can import from any file format, though CSV files are the most+ common import source, and these docs focus on that case.++ Deduplication+ As a convenience import does deduplication while reading transactions.+ This does not mean "ignore transactions that look the same", but rather+ "ignore transactions that have been seen before". This is intended for+ when you are periodically importing foreign data which may contain+ already-imported transactions. So eg, if every day you download bank+ CSV files containing redundant data, you can safely run hledger import+ bank.csv and only new transactions will be imported. (import is idem-+ potent.)++ Since the items being read (CSV records, eg) often do not come with+ unique identifiers, hledger detects new transactions by date, assuming+ that:++ 1. new items always have the newest dates++ 2. item dates do not change across reads++ 3. and items with the same date remain in the same relative order+ across reads.++ These are often true of CSV files representing transactions, or true+ enough so that it works pretty well in practice. 1 is important, but+ violations of 2 and 3 amongst the old transactions won't matter (and if+ you import often, the new transactions will be few, so less likely to+ be the ones affected).++ hledger remembers the latest date processed in each input file by sav-+ ing a hidden ".latest" state file in the same directory. Eg when read-+ ing finance/bank.csv, it will look for and update the finance/.lat-+ est.bank.csv state file. The format is simple: one or more lines con-+ taining the same ISO-format date (YYYY-MM-DD), meaning "I have pro-+ cessed transactions up to this date, and this many of them on that+ date." Normally you won't see or manipulate these state files yourself.+ But if needed, you can delete them to reset the state (making all+ transactions "new"), or you can construct them to "catch up" to a cer-+ tain date.++ Note deduplication (and updating of state files) can also be done by+ print --new, but this is less often used.++ Import testing+ With --dry-run, the transactions that will be imported are printed to+ the terminal, without updating your journal or state files. The output+ is valid journal format, like the print command, so you can re-parse+ it. Eg, to see any importable transactions which CSV rules have not+ categorised:++ $ hledger import --dry bank.csv | hledger -f- -I print unknown++ or (live updating):++ $ ls bank.csv* | entr bash -c 'echo ====; hledger import --dry bank.csv | hledger -f- -I print unknown'++ Importing balance assignments+ Entries added by import will have their posting amounts made explicit+ (like hledger print -x). This means that any balance assignments in+ imported files must be evaluated; but, imported files don't get to see+ the main file's account balances. As a result, importing entries with+ balance assignments (eg from an institution that provides only balances+ and not posting amounts) will probably generate incorrect posting+ amounts. To avoid this problem, use print instead of import:++ $ hledger print IMPORTFILE [--new] >> $LEDGER_FILE++ (If you think import should leave amounts implicit like print does,+ please test it and send a pull request.)++ Commodity display styles+ Imported amounts will be formatted according to the canonical commodity+ styles (declared or inferred) in the main journal file.++ incomestatement+ incomestatement, is++ This command displays an income statement, showing revenues and+ expenses during one or more periods. Amounts are shown with normal+ positive sign, as in conventional financial statements.++ The revenue and expense accounts shown are those accounts declared with+ the Revenue or Expense type, or otherwise all accounts under a top-+ level revenue or income or expense account (case insensitive, plurals+ allowed).++ Example:++ $ hledger incomestatement+ Income Statement++ Revenues:+ $-2 income+ $-1 gifts+ $-1 salary+ --------------------+ $-2++ Expenses:+ $2 expenses+ $1 food+ $1 supplies+ --------------------+ $2++ Total:+ --------------------+ 0++ This command is a higher-level variant of the balance command, and sup-+ ports many of that command's features, such as multi-period reports.+ It is similar to hledger balance '(revenues|income)' expenses, but with+ smarter account detection, and revenues/income displayed with their+ sign flipped.++ This command also supports the output destination and output format+ options The output formats supported are txt, csv, html, and (experi-+ mental) json.++ notes+ notes+ List the unique notes that appear in transactions.++ This command lists the unique notes that appear in transactions, in+ alphabetic order. You can add a query to select a subset of transac-+ tions. The note is the part of the transaction description after a |+ character (or if there is no |, the whole description).++ Example:++ $ hledger notes+ Petrol+ Snacks++ payees+ payees+ List the unique payee/payer names that appear in transactions.++ This command lists unique payee/payer names which have been declared+ with payee directives (--declared), used in transaction descriptions+ (--used), or both (the default).++ The payee/payer is the part of the transaction description before a |+ character (or if there is no |, the whole description).++ You can add query arguments to select a subset of transactions. This+ implies --used.++ Example:++ $ hledger payees+ Store Name+ Gas Station+ Person A++ prices+ prices+ Print market price directives from the journal. With --costs, also+ print synthetic market prices based on transaction prices. With+ --inverted-costs, also print inverse prices based on transaction+ prices. Prices (and postings providing prices) can be filtered by a+ query. Price amounts are always displayed with their full precision.++ print+ print+ Show transaction journal entries, sorted by date.++ The print command displays full journal entries (transactions) from the+ journal file, sorted by date (or with --date2, by secondary date).++ Amounts are shown mostly normalised to commodity display style, eg the+ placement of commodity symbols will be consistent. All of their deci-+ mal places are shown, as in the original journal entry (with one alter-+ ation: in some cases trailing zeroes are added.)++ Amounts are shown right-aligned within each transaction (but not across+ all transactions).++ Directives and inter-transaction comments are not shown, currently.+ This means the print command is somewhat lossy, and if you are using it+ to reformat your journal you should take care to also copy over the+ directives and file-level comments.++ Eg:++ $ hledger print+ 2008/01/01 income+ assets:bank:checking $1+ income:salary $-1++ 2008/06/01 gift+ assets:bank:checking $1+ income:gifts $-1++ 2008/06/02 save+ assets:bank:saving $1+ assets:bank:checking $-1++ 2008/06/03 * eat & shop+ expenses:food $1+ expenses:supplies $1+ assets:cash $-2++ 2008/12/31 * pay off+ liabilities:debts $1+ assets:bank:checking $-1++ print's output is usually a valid hledger journal, and you can process+ it again with a second hledger command. This can be useful for certain+ kinds of search, eg:++ # Show running total of food expenses paid from cash.+ # -f- reads from stdin. -I/--ignore-assertions is sometimes needed.+ $ hledger print assets:cash | hledger -f- -I reg expenses:food++ There are some situations where print's output can become unparseable:++ o Valuation affects posting amounts but not balance assertion or bal-+ ance assignment amounts, potentially causing those to fail.++ o Auto postings can generate postings with too many missing amounts.++ Normally, the journal entry's explicit or implicit amount style is pre-+ served. For example, when an amount is omitted in the journal, it will+ not appear in the output. Similarly, when a transaction price is+ implied but not written, it will not appear in the output. You can use+ the -x/--explicit flag to make all amounts and transaction prices+ explicit, which can be useful for troubleshooting or for making your+ journal more readable and robust against data entry errors. -x is also+ implied by using any of -B,-V,-X,--value.++ Note, -x/--explicit will cause postings with a multi-commodity amount+ (these can arise when a multi-commodity transaction has an implicit+ amount) to be split into multiple single-commodity postings, keeping+ the output parseable.++ With -B/--cost, amounts with transaction prices are converted to cost+ using that price. This can be used for troubleshooting.++ With -m/--match and a STR argument, print will show at most one trans-+ action: the one one whose description is most similar to STR, and is+ most recent. STR should contain at least two characters. If there is+ no similar-enough match, no transaction will be shown.++ With --new, hledger prints only transactions it has not seen on a pre-+ vious run. This uses the same deduplication system as the import com-+ mand. (See import's docs for details.)++ This command also supports the output destination and output format+ options The output formats supported are txt, csv, and (experimental)+ json and sql.++ Here's an example of print's CSV output:++ $ hledger print -Ocsv+ "txnidx","date","date2","status","code","description","comment","account","amount","commodity","credit","debit","posting-status","posting-comment"+ "1","2008/01/01","","","","income","","assets:bank:checking","1","$","","1","",""+ "1","2008/01/01","","","","income","","income:salary","-1","$","1","","",""+ "2","2008/06/01","","","","gift","","assets:bank:checking","1","$","","1","",""+ "2","2008/06/01","","","","gift","","income:gifts","-1","$","1","","",""+ "3","2008/06/02","","","","save","","assets:bank:saving","1","$","","1","",""+ "3","2008/06/02","","","","save","","assets:bank:checking","-1","$","1","","",""+ "4","2008/06/03","","*","","eat & shop","","expenses:food","1","$","","1","",""+ "4","2008/06/03","","*","","eat & shop","","expenses:supplies","1","$","","1","",""+ "4","2008/06/03","","*","","eat & shop","","assets:cash","-2","$","2","","",""+ "5","2008/12/31","","*","","pay off","","liabilities:debts","1","$","","1","",""+ "5","2008/12/31","","*","","pay off","","assets:bank:checking","-1","$","1","","",""++ o There is one CSV record per posting, with the parent transaction's+ fields repeated.++ o The "txnidx" (transaction index) field shows which postings belong to+ the same transaction. (This number might change if transactions are+ reordered within the file, files are parsed/included in a different+ order, etc.)++ o The amount is separated into "commodity" (the symbol) and "amount"+ (numeric quantity) fields.++ o The numeric amount is repeated in either the "credit" or "debit" col-+ umn, for convenience. (Those names are not accurate in the account-+ ing sense; it just puts negative amounts under credit and zero or+ greater amounts under debit.)++ print-unique+ print-unique+ Print transactions which do not reuse an already-seen description.++ Example:++ $ cat unique.journal+ 1/1 test+ (acct:one) 1+ 2/2 test+ (acct:two) 2+ $ LEDGER_FILE=unique.journal hledger print-unique+ (-f option not supported)+ 2015/01/01 test+ (acct:one) 1++ register+ register, reg+ Show postings and their running total.++ The register command displays matched postings, across all accounts, in+ date order, with their running total or running historical balance.+ (See also the aregister command, which shows matched transactions in a+ specific account.)++ register normally shows line per posting, but note that multi-commodity+ amounts will occupy multiple lines (one line per commodity).++ It is typically used with a query selecting a particular account, to+ see that account's activity:++ $ hledger register checking+ 2008/01/01 income assets:bank:checking $1 $1+ 2008/06/01 gift assets:bank:checking $1 $2+ 2008/06/02 save assets:bank:checking $-1 $1+ 2008/12/31 pay off assets:bank:checking $-1 0++ With --date2, it shows and sorts by secondary date instead.++ The --historical/-H flag adds the balance from any undisplayed prior+ postings to the running total. This is useful when you want to see+ only recent activity, with a historically accurate running balance:++ $ hledger register checking -b 2008/6 --historical+ 2008/06/01 gift assets:bank:checking $1 $2+ 2008/06/02 save assets:bank:checking $-1 $1+ 2008/12/31 pay off assets:bank:checking $-1 0++ The --depth option limits the amount of sub-account detail displayed.++ The --average/-A flag shows the running average posting amount instead+ of the running total (so, the final number displayed is the average for+ the whole report period). This flag implies --empty (see below). It+ is affected by --historical. It works best when showing just one+ account and one commodity.++ The --related/-r flag shows the other postings in the transactions of+ the postings which would normally be shown.++ The --invert flag negates all amounts. For example, it can be used on+ an income account where amounts are normally displayed as negative num-+ bers. It's also useful to show postings on the checking account+ together with the related account:++ $ hledger register --related --invert assets:checking++ With a reporting interval, register shows summary postings, one per+ interval, aggregating the postings to each account:++ $ hledger register --monthly income+ 2008/01 income:salary $-1 $-1+ 2008/06 income:gifts $-1 $-2++ Periods with no activity, and summary postings with a zero amount, are+ not shown by default; use the --empty/-E flag to see them:++ $ hledger register --monthly income -E+ 2008/01 income:salary $-1 $-1+ 2008/02 0 $-1+ 2008/03 0 $-1+ 2008/04 0 $-1+ 2008/05 0 $-1+ 2008/06 income:gifts $-1 $-2+ 2008/07 0 $-2+ 2008/08 0 $-2+ 2008/09 0 $-2+ 2008/10 0 $-2+ 2008/11 0 $-2+ 2008/12 0 $-2++ Often, you'll want to see just one line per interval. The --depth+ option helps with this, causing subaccounts to be aggregated:++ $ hledger register --monthly assets --depth 1h+ 2008/01 assets $1 $1+ 2008/06 assets $-1 0+ 2008/12 assets $-1 $-1++ Note when using report intervals, if you specify start/end dates these+ will be adjusted outward if necessary to contain a whole number of+ intervals. This ensures that the first and last intervals are full+ length and comparable to the others in the report.++ Custom register output+ register uses the full terminal width by default, except on windows.+ You can override this by setting the COLUMNS environment variable (not+ a bash shell variable) or by using the --width/-w option.++ The description and account columns normally share the space equally+ (about half of (width - 40) each). You can adjust this by adding a+ description width as part of --width's argument, comma-separated:+ --width W,D . Here's a diagram (won't display correctly in --help):++ <--------------------------------- width (W) ---------------------------------->+ date (10) description (D) account (W-41-D) amount (12) balance (12)+ DDDDDDDDDD dddddddddddddddddddd aaaaaaaaaaaaaaaaaaa AAAAAAAAAAAA AAAAAAAAAAAA++ and some examples:++ $ hledger reg # use terminal width (or 80 on windows)+ $ hledger reg -w 100 # use width 100+ $ COLUMNS=100 hledger reg # set with one-time environment variable+ $ export COLUMNS=100; hledger reg # set till session end (or window resize)+ $ hledger reg -w 100,40 # set overall width 100, description width 40+ $ hledger reg -w $COLUMNS,40 # use terminal width, & description width 40++ This command also supports the output destination and output format+ options The output formats supported are txt, csv, and (experimental)+ json.++ register-match+ register-match+ Print the one posting whose transaction description is closest to DESC,+ in the style of the register command. If there are multiple equally+ good matches, it shows the most recent. Query options (options, not+ arguments) can be used to restrict the search space. Helps ledger-+ autosync detect already-seen transactions when importing.++ rewrite+ rewrite+ Print all transactions, rewriting the postings of matched transactions.+ For now the only rewrite available is adding new postings, like print+ --auto.++ This is a start at a generic rewriter of transaction entries. It reads+ the default journal and prints the transactions, like print, but adds+ one or more specified postings to any transactions matching QUERY. The+ posting amounts can be fixed, or a multiplier of the existing transac-+ tion's first posting amount.++ Examples:++ $ hledger-rewrite.hs ^income --add-posting '(liabilities:tax) *.33 ; income tax' --add-posting '(reserve:gifts) $100'+ $ hledger-rewrite.hs expenses:gifts --add-posting '(reserve:gifts) *-1"'+ $ hledger-rewrite.hs -f rewrites.hledger++ rewrites.hledger may consist of entries like:++ = ^income amt:<0 date:2017+ (liabilities:tax) *0.33 ; tax on income+ (reserve:grocery) *0.25 ; reserve 25% for grocery+ (reserve:) *0.25 ; reserve 25% for grocery++ Note the single quotes to protect the dollar sign from bash, and the+ two spaces between account and amount.++ More:++ $ hledger rewrite -- [QUERY] --add-posting "ACCT AMTEXPR" ...+ $ hledger rewrite -- ^income --add-posting '(liabilities:tax) *.33'+ $ hledger rewrite -- expenses:gifts --add-posting '(budget:gifts) *-1"'+ $ hledger rewrite -- ^income --add-posting '(budget:foreign currency) *0.25 JPY; diversify'++ Argument for --add-posting option is a usual posting of transaction+ with an exception for amount specification. More precisely, you can+ use '*' (star symbol) before the amount to indicate that that this is a+ factor for an amount of original matched posting. If the amount+ includes a commodity name, the new posting amount will be in the new+ commodity; otherwise, it will be in the matched posting amount's com-+ modity.++ Re-write rules in a file+ During the run this tool will execute so called "Automated Transac-+ tions" found in any journal it process. I.e instead of specifying this+ operations in command line you can put them in a journal file.++ $ rewrite-rules.journal++ Make contents look like this:++ = ^income+ (liabilities:tax) *.33++ = expenses:gifts+ budget:gifts *-1+ assets:budget *1++ Note that '=' (equality symbol) that is used instead of date in trans-+ actions you usually write. It indicates the query by which you want to+ match the posting to add new ones.++ $ hledger rewrite -- -f input.journal -f rewrite-rules.journal > rewritten-tidy-output.journal++ This is something similar to the commands pipeline:++ $ hledger rewrite -- -f input.journal '^income' --add-posting '(liabilities:tax) *.33' \+ | hledger rewrite -- -f - expenses:gifts --add-posting 'budget:gifts *-1' \+ --add-posting 'assets:budget *1' \+ > rewritten-tidy-output.journal++ It is important to understand that relative order of such entries in+ journal is important. You can re-use result of previously added post-+ ings.++ Diff output format+ To use this tool for batch modification of your journal files you may+ find useful output in form of unified diff.++ $ hledger rewrite -- --diff -f examples/sample.journal '^income' --add-posting '(liabilities:tax) *.33'++ Output might look like:++ --- /tmp/examples/sample.journal+ +++ /tmp/examples/sample.journal+ @@ -18,3 +18,4 @@+ 2008/01/01 income+ - assets:bank:checking $1+ + assets:bank:checking $1+ income:salary+ + (liabilities:tax) 0+ @@ -22,3 +23,4 @@+ 2008/06/01 gift+ - assets:bank:checking $1+ + assets:bank:checking $1+ income:gifts+ + (liabilities:tax) 0++ If you'll pass this through patch tool you'll get transactions contain-+ ing the posting that matches your query be updated. Note that multiple+ files might be update according to list of input files specified via+ --file options and include directives inside of these files.++ Be careful. Whole transaction being re-formatted in a style of output+ from hledger print.++ See also:++ https://github.com/simonmichael/hledger/issues/99++ rewrite vs. print --auto+ This command predates print --auto, and currently does much the same+ thing, but with these differences:++ o with multiple files, rewrite lets rules in any file affect all other+ files. print --auto uses standard directive scoping; rules affect+ only child files.++ o rewrite's query limits which transactions can be rewritten; all are+ printed. print --auto's query limits which transactions are printed.++ o rewrite applies rules specified on command line or in the journal.+ print --auto applies rules specified in the journal.++ roi+ roi+ Shows the time-weighted (TWR) and money-weighted (IRR) rate of return+ on your investments.++ At a minimum, you need to supply a query (which could be just an+ account name) to select your investment(s) with --inv, and another+ query to identify your profit and loss transactions with --pnl.++ If you do not record changes in the value of your investment manually,+ or do not require computation of time-weighted return (TWR), --pnl+ could be an empty query (--pnl "" or --pnl STR where STR does not match+ any of your accounts).++ This command will compute and display the internalized rate of return+ (IRR) and time-weighted rate of return (TWR) for your investments for+ the time period requested. Both rates of return are annualized before+ display, regardless of the length of reporting interval.++ Price directives will be taken into account if you supply appropriate+ --cost or --value flags (see VALUATION).++ Note, in some cases this report can fail, for these reasons:++ o Error (NotBracketed): No solution for Internal Rate of Return (IRR).+ Possible causes: IRR is huge (>1000000%), balance of investment+ becomes negative at some point in time.++ o Error (SearchFailed): Failed to find solution for Internal Rate of+ Return (IRR). Either search does not converge to a solution, or con-+ verges too slowly.++ Examples:++ o Using roi to compute total return of investment in stocks:+ https://github.com/simonmichael/hledger/blob/master/examples/roi-+ unrealised.ledger++ o Cookbook -> Return on Investment++ Semantics of --inv and --pnl+ Query supplied to --inv has to match all transactions that are related+ to your investment. Transactions not matching --inv will be ignored.++ In these transactions, ROI will conside postings that match --inv to be+ "investment postings" and other postings (not matching --inv) will be+ sorted into two categories: "cash flow" and "profit and loss", as ROI+ needs to know which part of the investment value is your contributions+ and which is due to the return on investment.++ o "Cash flow" is depositing or withdrawing money, buying or selling+ assets, or otherwise converting between your investment commodity and+ any other commodity. Example:++ 2019-01-01 Investing in Snake Oil+ assets:cash -$100+ investment:snake oil++ 2020-01-01 Selling my Snake Oil+ assets:cash $10+ investment:snake oil = 0++ o "Profit and loss" is change in the value of your investment:++ 2019-06-01 Snake Oil falls in value+ investment:snake oil = $57+ equity:unrealized profit or loss++ All non-investment postings are assumed to be "cash flow", unless they+ match --pnl query. Changes in value of your investment due to "profit+ and loss" postings will be considered as part of your investment+ return.++ Example: if you use --inv snake --pnl equity:unrealized, then postings+ in the example below would be classifed as:++ 2019-01-01 Snake Oil #1+ assets:cash -$100 ; cash flow posting+ investment:snake oil ; investment posting++ 2019-03-01 Snake Oil #2+ equity:unrealized pnl -$100 ; profit and loss posting+ snake oil ; investment posting++ 2019-07-01 Snake Oil #3+ equity:unrealized pnl ; profit and loss posting+ cash -$100 ; cash flow posting+ snake oil $50 ; investment posting++ IRR and TWR explained+ "ROI" stands for "return on investment". Traditionally this was com-+ puted as a difference between current value of investment and its ini-+ tial value, expressed in percentage of the initial value.++ However, this approach is only practical in simple cases, where invest-+ ments receives no in-flows or out-flows of money, and where rate of+ growth is fixed over time. For more complex scenarios you need differ-+ ent ways to compute rate of return, and this command implements two of+ them: IRR and TWR.++ Internal rate of return, or "IRR" (also called "money-weighted rate of+ return") takes into account effects of in-flows and out-flows.+ Naively, if you are withdrawing from your investment, your future gains+ would be smaller (in absolute numbers), and will be a smaller percent-+ age of your initial investment, and if you are adding to your invest-+ ment, you will receive bigger absolute gains (but probably at the same+ rate of return). IRR is a way to compute rate of return for each+ period between in-flow or out-flow of money, and then combine them in a+ way that gives you a compound annual rate of return that investment is+ expected to generate.++ As mentioned before, in-flows and out-flows would be any cash that you+ personally put in or withdraw, and for the "roi" command, these are the+ postings that match the query in the--inv argument and NOT match the+ query in the--pnl argument.++ If you manually record changes in the value of your investment as+ transactions that balance them against "profit and loss" (or "unreal-+ ized gains") account or use price directives, then in order for IRR to+ compute the precise effect of your in-flows and out-flows on the rate+ of return, you will need to record the value of your investement on or+ close to the days when in- or out-flows occur.++ In technical terms, IRR uses the same approach as computation of net+ present value, and tries to find a discount rate that makes net present+ value of all the cash flows of your investment to add up to zero. This+ could be hard to wrap your head around, especially if you haven't done+ discounted cash flow analysis before. Implementation of IRR in hledger+ should produce results that match the XIRR formula in Excel.++ Second way to compute rate of return that roi command implements is+ called "time-weighted rate of return" or "TWR". Like IRR, it will also+ break the history of your investment into periods between in-flows,+ out-flows and value changes, to compute rate of return per each period+ and then a compound rate of return. However, internal workings of TWR+ are quite different.++ TWR represents your investment as an imaginary "unit fund" where in-+ flows/ out-flows lead to buying or selling "units" of your investment+ and changes in its value change the value of "investment unit". Change+ in "unit price" over the reporting period gives you rate of return of+ your investment.++ References: * Explanation of rate of return * Explanation of IRR *+ Explanation of TWR * Examples of computing IRR and TWR and discussion+ of the limitations of both metrics++ stats+ stats+ Show some journal statistics.++ The stats command displays summary information for the whole journal,+ or a matched part of it. With a reporting interval, it shows a report+ for each report period.++ Example:++ $ hledger stats+ Main journal file : /src/hledger/examples/sample.journal+ Included journal files :+ Transactions span : 2008-01-01 to 2009-01-01 (366 days)+ Last transaction : 2008-12-31 (2333 days ago)+ Transactions : 5 (0.0 per day)+ Transactions last 30 days: 0 (0.0 per day)+ Transactions last 7 days : 0 (0.0 per day)+ Payees/descriptions : 5+ Accounts : 8 (depth 3)+ Commodities : 1 ($)+ Market prices : 12 ($)++ This command also supports output destination and output format selec-+ tion.++ tags+ tags+ List the unique tag names used in the journal. With a TAGREGEX argu-+ ment, only tag names matching the regular expression (case insensitive)+ are shown. With QUERY arguments, only transactions matching the query+ are considered.++ With the --values flag, the tags' unique values are listed instead.++ With --parsed flag, all tags or values are shown in the order they are+ parsed from the input data, including duplicates.++ With -E/--empty, any blank/empty values will also be shown, otherwise+ they are omitted.++ test+ test+ Run built-in unit tests.++ This command runs the unit tests built in to hledger and hledger-lib,+ printing the results on stdout. If any test fails, the exit code will+ be non-zero.++ This is mainly used by hledger developers, but you can also use it to+ sanity-check the installed hledger executable on your platform. All+ tests are expected to pass - if you ever see a failure, please report+ as a bug!++ This command also accepts tasty test runner options, written after a --+ (double hyphen). Eg to run only the tests in Hledger.Data.Amount, with+ ANSI colour codes disabled:++ $ hledger test -- -pData.Amount --color=never++ For help on these, see https://github.com/feuerbach/tasty#options (--+ --help currently doesn't show them).++ About add-on commands+ Add-on commands are programs or scripts in your PATH++ o whose name starts with hledger-++ o whose name ends with a recognised file extension: .bat,.com,.exe,+ .hs,.lhs,.pl,.py,.rb,.rkt,.sh or none++ o and (on unix, mac) which are executable by the current user.++ Add-ons are a relatively easy way to add local features or experiment+ with new ideas. They can be written in any language, but haskell+ scripts have a big advantage: they can use the same hledger library+ functions that built-in commands use for command-line options, parsing+ and reporting. Some experimental/example add-on scripts can be found+ in the hledger repo's bin/ directory.++ Note in a hledger command line, add-on command flags must have a double+ dash (--) preceding them. Eg you must write:++ $ hledger web -- --serve++ and not:++ $ hledger web --serve++ (because the --serve flag belongs to hledger-web, not hledger).++ The -h/--help and --version flags don't require --.++ If you have any trouble with this, remember you can always run the add-+ on program directly, eg:++ $ hledger-web --serve++JOURNAL FORMAT+ hledger's default file format, representing a General Journal.++ hledger's usual data source is a plain text file containing journal+ entries in hledger journal format. This file represents a standard+ accounting general journal. I use file names ending in .journal, but+ that's not required. 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.++ hledger's journal format is a compatible subset, mostly, of ledger's+ journal format, so hledger can work with compatible ledger journal+ files as well. It's safe, and encouraged, to run both hledger and+ ledger on the same journal file, eg to validate the results you're get-+ ting.++ You can use hledger without learning any more about this file; just use+ the add or web or import commands to create and update it.++ Many users, though, edit the journal file with a text editor, and track+ changes with a version control system such as git. Editor addons such+ as ledger-mode or hledger-mode for Emacs, vim-ledger for Vim, and+ hledger-vscode for Visual Studio Code, make this easier, adding colour,+ formatting, tab completion, and useful commands. See Editor configura-+ tion at hledger.org for the full list.++ Here's a description of each part of the file format (and hledger's+ data model). These are mostly in the order you'll use them, but in+ some cases related concepts have been grouped together for easy refer-+ ence, or linked before they are introduced, so feel free to skip over+ anything that looks unnecessary right now.++ Transactions+ Transactions are the main unit of information in a journal file. They+ represent events, typically a movement of some quantity of commodities+ between two or more named accounts.++ Each transaction is recorded as a journal entry, beginning with a sim-+ ple date in column 0. This can be followed by any of the following+ optional fields, separated by spaces:++ o a status character (empty, !, or *)++ o a code (any short number or text, enclosed in parentheses)++ o a description (any remaining text until end of line or a semicolon)++ o a comment (any remaining text following a semicolon until end of+ line, and any following indented lines beginning with a semicolon)++ o 0 or more indented posting lines, describing what was transferred and+ the accounts involved (indented comment lines are also allowed, but+ not blank lines or non-indented lines).++ Here's a simple journal file containing one transaction:++ 2008/01/01 income+ assets:bank:checking $1+ income:salary $-1++ Dates+ Simple dates+ Dates in the journal file use simple dates format: YYYY-MM-DD or+ YYYY/MM/DD or YYYY.MM.DD, with leading zeros optional. The year may be+ omitted, in which case it will be inferred from the context: the cur-+ rent transaction, the default year set with a default year directive,+ or the current date when the command is run. Some examples:+ 2010-01-31, 2010/01/31, 2010.1.31, 1/31.++ (The UI also accepts simple dates, as well as the more flexible smart+ dates documented in the hledger manual.)++ Secondary dates+ Real-life transactions sometimes involve more than one date - eg the+ date you write a cheque, and the date it clears in your bank. When you+ want to model this, for more accurate daily balances, you can specify+ individual posting dates.++ Or, you can use the older secondary date feature (Ledger calls it aux-+ iliary date or effective date). Note: we support this for compatibil-+ ity, but I usually recommend avoiding this feature; posting dates are+ almost always clearer and simpler.++ A secondary date is written after the primary date, following an equals+ sign. If the year is omitted, the primary date's year is assumed.+ When running reports, the primary (left) date is used by default, but+ with the --date2 flag (or --aux-date or --effective), the secondary+ (right) date will be used instead.++ The meaning of secondary dates is up to you, but it's best to follow a+ consistent rule. Eg "primary = the bank's clearing date, secondary =+ date the transaction was initiated, if different", as shown here:++ 2010/2/23=2/19 movie ticket+ expenses:cinema $10+ assets:checking++ $ hledger register checking+ 2010-02-23 movie ticket assets:checking $-10 $-10++ $ hledger register checking --date2+ 2010-02-19 movie ticket assets:checking $-10 $-10++ Posting dates+ You can give individual postings a different date from their parent+ transaction, by adding a posting comment containing a tag (see below)+ like date:DATE. 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:++ 2015/5/30+ expenses:food $10 ; food purchased on saturday 5/30+ assets:checking ; bank cleared it on monday, date:6/1++ $ hledger -f t.j register food+ 2015-05-30 expenses:food $10 $10++ $ hledger -f t.j register checking+ 2015-06-01 assets:checking $-10 $-10++ DATE should be a simple date; if the year is not specified it will use+ the year of the transaction's date. You can set the secondary date+ similarly, with date2:DATE2. The date: or date2: tags must have a+ valid simple date value if they are present, eg a date: tag with no+ value is not allowed.++ Ledger's earlier, more compact bracketed date syntax is also supported:+ [DATE], [DATE=DATE2] or [=DATE2]. hledger will attempt to parse any+ square-bracketed sequence of the 0123456789/-.= characters in this way.+ With this syntax, DATE infers its year from the transaction and DATE2+ infers its year from DATE.++ Status+ 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:+++ mark status+ ------------------+ unmarked+ ! pending+ * cleared++ When reporting, you can filter by status with the -U/--unmarked,+ -P/--pending, and -C/--cleared flags; or the status:, status:!, and+ status:* queries; or the U, P, C keys in hledger-ui.++ Note, in Ledger and in older versions of hledger, the "unmarked" state+ is called "uncleared". As of hledger 1.3 we have renamed it to+ unmarked for clarity.++ To replicate Ledger and old hledger's behaviour of also matching pend-+ ing, combine -U and -P.++ Status marks are optional, but can be helpful eg for reconciling with+ real-world accounts. Some editor modes provide highlighting and short-+ cuts for working with status. Eg in Emacs ledger-mode, you can toggle+ transaction status with C-c C-e, or posting status with C-c C-c.++ What "uncleared", "pending", and "cleared" actually mean is up to you.+ Here's one suggestion:+++ status meaning+ --------------------------------------------------------------------------+ uncleared recorded but not yet reconciled; needs review+ pending tentatively reconciled (if needed, eg during a big reconcil-+ iation)+ cleared complete, reconciled as far as possible, and considered cor-+ rect++ With this scheme, you would use -PC to see the current balance at your+ bank, -U to see things which will probably hit your bank soon (like+ uncashed checks), and no flags to see the most up-to-date state of your+ finances.++ Description+ A transaction's description is the rest of the line following the date+ and status mark (or until a comment begins). Sometimes called the+ "narration" in traditional bookkeeping, it can be used for whatever you+ wish, or left blank. Transaction descriptions can be queried, unlike+ comments.++ Payee and note+ You can optionally include a | (pipe) character in descriptions to sub-+ divide the description into separate fields for payee/payer name on the+ left (up to the first |) and an additional note field on the right+ (after the first |). This may be worthwhile if you need to do more+ precise querying and pivoting by payee or by note.++ Comments+ Lines in the journal beginning with a semicolon (;) or hash (#) or star+ (*) 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.)++ You can attach comments to a transaction by writing them after the+ description and/or indented on the following lines (before the post-+ ings). Similarly, you can attach comments to an individual posting by+ writing them after the amount and/or indented on the following lines.+ Transaction and posting comments must begin with a semicolon (;).++ Some examples:++ # a file comment+ ; another file comment+ * also a file comment, useful in org/orgstruct mode++ comment+ A multiline file comment, which continues+ until a line containing just "end comment"+ (or end of file).+ end comment++ 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)++ You can also comment larger regions of a file using comment and end+ comment directives.++ Tags+ Tags are a way to add extra labels or labelled data to postings and+ transactions, which you can then search or pivot on.++ A simple tag is a word (which may contain hyphens) followed by a full+ colon, written inside a transaction or posting comment line:++ 2017/1/16 bought groceries ; sometag:++ 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:++ expenses:food $10 ; a-posting-tag: the tag value++ Note this means hledger's tag values can not contain commas or new-+ lines. Ending at commas means you can write multiple short tags on one+ line, comma separated:++ assets:checking ; a comment containing tag1:, tag2: some value ...++ Here,++ o "a comment containing" is just comment text, not a tag++ o "tag1" is a tag with no value++ o "tag2" is another tag, whose value is "some value ..."++ Tags in a transaction comment affect the transaction and all of its+ postings, while tags in a posting comment affect only that posting.+ For example, the following transaction has three tags (A, TAG2, third-+ tag) and the posting has four (those plus posting-tag):++ 1/1 a transaction ; A:, TAG2:+ ; third-tag: a third transaction tag, <- with a value+ (a) $1 ; posting-tag:++ Tags are like Ledger's metadata feature, except hledger's tag values+ are simple strings.++ Postings+ 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:++ o (optional) a status character (empty, !, or *), followed by a space++ o (required) an account name (any text, optionally containing single+ spaces, until end of line or a double space)++ o (optional) two or more spaces or tabs followed by an amount.++ Positive amounts are being added to the account, negative amounts are+ being removed.++ The amounts within a transaction must always sum up to zero. As a con-+ venience, one amount may be left blank; it will be inferred so as to+ balance the transaction.++ Be sure to note the unusual two-space delimiter between account name+ and amount. This makes it easy to write account names containing spa-+ ces. But if you accidentally leave only one space (or tab) before the+ amount, the amount will be considered part of the account name.++ Virtual postings+ A posting with a parenthesised account name is called a virtual posting+ or unbalanced posting, which means it is exempt from the usual rule+ that a transaction's postings must balance add up to zero.++ This is not part of double entry accounting, so you might choose to+ avoid this feature. Or you can use it sparingly for certain special+ cases where it can be convenient. Eg, you could set opening balances+ without using a balancing equity account:++ 1/1 opening balances+ (assets:checking) $1000+ (assets:savings) $2000++ A posting with a bracketed account name is called a balanced virtual+ posting. The balanced virtual postings in a transaction must add up to+ zero (separately from other postings). Eg:++ 1/1 buy food with cash, update budget envelope subaccounts, & something else+ assets:cash $-10 ; <- these balance+ expenses:food $7 ; <-+ expenses:food $3 ; <-+ [assets:checking:budget:food] $-10 ; <- and these balance+ [assets:checking:available] $10 ; <-+ (something:else) $5 ; <- not required to balance++ Ordinary non-parenthesised, non-bracketed postings are called real+ postings. You can exclude virtual postings from reports with the+ -R/--real flag or real:1 query.++ Account names+ 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 five top-+ level accounts: assets, liabilities, revenue, expenses, and equity.++ Account names may contain single spaces, eg: assets:accounts receiv-+ able. Because of this, they must always be followed by two or more+ spaces (or newline).++ Account names can be aliased.++ Amounts+ After the account name, there is usually an amount. (Important:+ between account name and amount, there must be two or more spaces.)++ hledger's amount format is flexible, supporting several international+ formats. Here are some examples. Amounts have a number (the "quan-+ tity"):++ 1++ ..and usually a currency or commodity name (the "commodity"). This is+ a symbol, word, or phrase, to the left or right of the quantity, with+ or without a separating space:++ $1+ 4000 AAPL++ If the commodity name contains spaces, numbers, or punctuation, it must+ be enclosed in double quotes:++ 3 "no. 42 green apples"++ Amounts can be preceded by a minus sign (or a plus sign, though plus is+ the default), The sign can be written before or after a left-side com-+ modity symbol:++ -$1+ $-1++ One or more spaces between the sign and the number are acceptable when+ parsing (but they won't be displayed in output):++ + $1+ $- 1++ Scientific E notation is allowed:++ 1E-6+ EUR 1E3++ Decimal marks, digit group marks+ A decimal mark can be written as a period or a comma:++ 1.23+ 1,23456780000009++ In the integer part of the quantity (left of the decimal mark), groups+ of digits can optionally be separated by a "digit group mark" - a+ space, comma, or period (different from the decimal mark):++ $1,000,000.00+ EUR 2.000.000,00+ INR 9,99,99,999.00+ 1 000 000.9455++ Note, a number containing a single digit group mark and no decimal mark+ is ambiguous. Are these digit group marks or decimal marks ?++ 1,000+ 1.000++ If you don't tell it otherwise, hledger will assume both of the above+ are decimal marks, parsing both numbers as 1. To prevent confusion and+ undetected typos, especially if your data contains digit group marks,+ we recommend you explicitly declare the decimal mark (and optionally a+ digit group mark), for each commodity, using commodity directives+ (described below):++ # number formats for $, EUR, INR and the no-symbol commodity:+ commodity $1,000.00+ commodity EUR 1.000,00+ commodity INR 9,99,99,999.00+ commodity 1 000 000.9455++ Note, commodity directives declare both the number format for parsing+ input, and the display style for showing output. For the former, they+ are position-sensitive, affecting only following amounts, so commodity+ directives should be at the top of your journal file. This is dis-+ cussed more on #793.+++ Commodity display style+ For the amounts in each commodity, hledger chooses a consistent display+ style to use in most reports. (Except for price amounts, which are+ always displayed as written). The display style is inferred as fol-+ lows.++ First, if a default commodity is declared with D, this commodity and+ its style is applied to any no-symbol amounts in the journal.++ Then each commodity's style is inferred from one of the following, in+ order of preference:++ o The commodity directive for that commodity (including the no-symbol+ commodity), if any.++ o The amounts in that commodity seen in the journal's transactions.+ (Posting amounts only; prices and periodic or auto rules are ignored,+ currently.)++ o The built-in fallback style, which looks like this: $1000.00. (Sym-+ bol on the left, period decimal mark, two decimal places.)++ A style is inferred from journal amounts as follows:++ o Use the general style (decimal mark, symbol placement) of the first+ amount++ o Use the first-seen digit group style (digit group mark, digit group+ sizes), if any++ o Use the maximum number of decimal places of all.++ Transaction price amounts don't affect the commodity display style+ directly, but occasionally they can do so indirectly (eg when a post-+ ing's amount is inferred using a transaction price). If you find this+ causing problems, use a commodity directive to fix the display style.++ To summarise: each commodity's amounts will be normalised to (a) the+ style declared by a commodity directive, or (b) the style of the first+ posting amount in the journal, with the first-seen digit group style+ and the maximum-seen number of decimal places. So if your reports are+ showing amounts in a way you don't like, eg with too many decimal+ places, use a commodity directive. Some examples:++ # declare euro, dollar, bitcoin and no-symbol commodities and set their+ # input number formats and output display styles:+ commodity EUR 1.000,+ commodity $1000.00+ commodity 1000.00000000 BTC+ commodity 1 000.++ Rounding+ Amounts are stored internally as decimal numbers with up to 255 decimal+ places, and displayed with the number of decimal places specified by+ the commodity display style. Note, hledger uses banker's rounding: it+ rounds to the nearest even number, eg 0.5 displayed with zero decimal+ places is "0"). (Guaranteed since hledger 1.17.1; in older versions+ this could vary if hledger was built with Decimal < 0.5.1.)++ Transaction prices+ Within a transaction, you can note an amount's price in another commod-+ ity. 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. 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 cer-+ tain date.++ There are several ways to record a transaction price:++ 1. Write the price per unit, as @ UNITPRICE after the amount:++ 2009/1/1+ assets:euros EUR100 @ $1.35 ; one hundred euros purchased at $1.35 each+ assets:dollars ; balancing amount is -$135.00++ 2. Write the total price, as @@ TOTALPRICE after the amount:++ 2009/1/1+ assets:euros EUR100 @@ $135 ; one hundred euros purchased at $135 for the lot+ assets:dollars++ 3. Specify amounts for all postings, using exactly two commodities, and+ let hledger infer the price that balances the transaction:++ 2009/1/1+ assets:euros EUR100 ; one hundred euros purchased+ assets:dollars $-135 ; for $135++ 4. Like 1, but the @ is parenthesised, i.e. (@); this is for compati-+ bility with Ledger journals (Virtual posting costs), and is equiva-+ lent to 1 in hledger.++ 5. Like 2, but as in 4 the @@ is parenthesised, i.e. (@@); in hledger,+ this is equivalent to 2.++ Use the -B/--cost flag to convert amounts to their transaction price's+ commodity, if any. (mnemonic: "B" is from "cost Basis", as in Ledger).+ Eg here is how -B affects the balance report for the example above:++ $ hledger bal -N --flat+ $-135 assets:dollars+ EUR100 assets:euros+ $ hledger bal -N --flat -B+ $-135 assets:dollars+ $135 assets:euros # <- the euros' cost++ Note -B is sensitive to the order of postings when a transaction price+ is inferred: the inferred price will be in the commodity of the last+ amount. So if example 3's postings are reversed, while the transaction+ is equivalent, -B shows something different:++ 2009/1/1+ assets:dollars $-135 ; 135 dollars sold+ assets:euros EUR100 ; for 100 euros++ $ hledger bal -N --flat -B+ EUR-100 assets:dollars # <- the dollars' selling price+ EUR100 assets:euros++ Lot prices, lot dates+ Ledger allows another kind of price, lot price (four variants: {UNIT-+ PRICE}, {{TOTALPRICE}}, {=FIXEDUNITPRICE}, {{=FIXEDTOTALPRICE}}),+ and/or a lot date ([DATE]) to be specified. These are normally used to+ select a lot when selling investments. hledger will parse these, for+ compatibility with Ledger journals, but currently ignores them. A+ transaction price, lot price and/or lot date may appear in any order,+ after the posting amount and before the balance assertion if any.++ Balance assertions+ hledger supports Ledger-style balance assertions in journal files.+ These look like, for example, = EXPECTEDBALANCE following a posting's+ amount. Eg here we assert the expected dollar balance in accounts a+ and b after each posting:++ 2013/1/1+ a $1 =$1+ b =$-1++ 2013/1/2+ a $1 =$2+ b $-1 =$-2++ After reading a journal file, hledger will check all balance assertions+ and report an error if any of them fail. Balance assertions can pro-+ tect you from, eg, inadvertently disrupting reconciled balances while+ cleaning up old entries. You can disable them temporarily with the+ -I/--ignore-assertions flag, which can be useful for troubleshooting or+ for reading Ledger files. (Note: this flag currently does not disable+ balance assignments, below).++ Assertions and ordering+ hledger sorts an account's postings and assertions first by date and+ then (for postings on the same day) by parse order. Note this is dif-+ ferent from Ledger, which sorts assertions only by parse order. (Also,+ Ledger assertions do not see the accumulated effect of repeated post-+ ings to the same account within a transaction.)++ So, hledger balance assertions keep working if you reorder differently-+ dated transactions within the journal. But if you reorder same-dated+ transactions or postings, assertions might break and require updating.+ This order dependence does bring an advantage: precise control over the+ order of postings and assertions within a day, so you can assert intra-+ day balances.++ Assertions and included files+ With included files, things are a little more complicated. Including+ preserves the ordering of postings and assertions. If you have multi-+ ple postings to an account on the same day, split across different+ files, and you also want to assert the account's balance on the same+ day, you'll have to put the assertion in the right file.++ Assertions and multiple -f options+ Balance assertions don't work well across files specified with multiple+ -f options. Use include or concatenate the files instead.++ Assertions and commodities+ The asserted balance must be a simple single-commodity amount, and in+ fact the assertion checks only this commodity's balance within the+ (possibly multi-commodity) account balance. This is how assertions+ work in Ledger also. We could call this a "partial" balance assertion.++ To assert the balance of more than one commodity in an account, you can+ write multiple postings, each asserting one commodity's balance.++ You can make a stronger "total" balance assertion by writing a double+ equals sign (== EXPECTEDBALANCE). This asserts that there are no other+ unasserted commodities in the account (or, that their balance is 0).++ 2013/1/1+ a $1+ a 1EUR+ b $-1+ c -1EUR++ 2013/1/2 ; These assertions succeed+ a 0 = $1+ a 0 = 1EUR+ b 0 == $-1+ c 0 == -1EUR++ 2013/1/3 ; This assertion fails as 'a' also contains 1EUR+ a 0 == $1++ It's not yet possible to make a complete assertion about a balance that+ has multiple commodities. One workaround is to isolate each commodity+ into its own subaccount:++ 2013/1/1+ a:usd $1+ a:euro 1EUR+ b++ 2013/1/2+ a 0 == 0+ a:usd 0 == $1+ a:euro 0 == 1EUR++ Assertions and prices+ Balance assertions ignore transaction prices, and should normally be+ written without one:++ 2019/1/1+ (a) $1 @ EUR1 = $1++ We do allow prices to be written there, however, and print shows them,+ even though they don't affect whether the assertion passes or fails.+ This is for backward compatibility (hledger's close command used to+ generate balance assertions with prices), and because balance assign-+ ments do use them (see below).++ Assertions and subaccounts+ The balance assertions above (= and ==) do not count the balance from+ subaccounts; they check the account's exclusive balance only. You can+ assert the balance including subaccounts by writing =* or ==*, eg:++ 2019/1/1+ equity:opening balances+ checking:a 5+ checking:b 5+ checking 1 ==* 11++ Assertions and virtual postings+ Balance assertions are checked against all postings, both real and vir-+ tual. They are not affected by the --real/-R flag or real: query.++ Assertions and precision+ 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 asser-+ tions. Balance assertion failure messages show exact amounts.++ Balance assignments+ Ledger-style balance assignments are also supported. 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:++ ; 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++ or when adjusting a balance to reality:++ ; no cash left; update balance, record any untracked spending as a generic expense+ 2016/1/15+ assets:cash = $0+ expenses:misc++ The calculated amount depends on the account's balance in the commodity+ at that point (which depends on the previously-dated postings of the+ commodity to that account since the last balance assertion or assign-+ ment). 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.++ Balance assignments and prices+ A transaction price in a balance assignment will cause the calculated+ amount to have that price attached:++ 2019/1/1+ (a) = $1 @ EUR2++ $ hledger print --explicit+ 2019-01-01+ (a) $1 @ EUR2 = $1 @ EUR2++ Directives+ A directive is a line in the journal beginning with a special keyword,+ that influences how the journal is processed. hledger's directives are+ based on a subset of Ledger's, but there are many differences (and also+ some differences between hledger versions).++ Directives' 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. Note part of this table is hidden when+ viewed in a web browser - scroll it sideways to see more.+++ direc- end subdi- purpose can affect (as of+ tive directive rec- 2018/06)+ tives+ ------------------------------------------------------------------------------------+ account any document account names, all entries in all+ text declare account types & dis- files, before or+ play order after+ alias end rewrite account names following entries+ aliases until end of cur-+ rent file or end+ directive+ apply end apply prepend a common parent to following entries+ account account account names until end of cur-+ rent file or end+ directive+ comment end com- ignore part of journal following entries+ ment until end of cur-+ rent file or end+ directive+ commod- format declare a commodity and its number notation:+ ity number notation & display following entries+ style in that commodity+ in all files ; dis-+ play style: amounts+ of that commodity+ in reports+ D declare a commodity to be default commodity:+ used for commodityless following commod-+ amounts, and its number ityless entries+ notation & display style until end of cur-+ rent file; number+ notation: following+ entries in that+ commodity until end+ of current file;+ display style:+ amounts of that+ commodity in+ reports+ include include entries/directives what the included+ from another file directives affect++ [payee] declare a payee name following entries+ until end of cur-+ rent file+ P declare a market price for a amounts of that+ commodity commodity in+ reports, when -V is+ used+ Y declare a year for yearless following entries+ dates until end of cur-+ rent file+ = declare an auto posting all entries in par-+ rule, adding postings to ent/current/child+ other transactions files (but not sib-+ ling files, see+ #1212)++ And some definitions:+++ subdi- optional indented directive line immediately following a parent+ rec- directive+ tive+ number how to interpret numbers when parsing journal entries (the iden-+ nota- tity of the decimal separator character). (Currently each com-+ tion modity can have its own notation, even in the same file.)+ dis- how to display amounts of a commodity in reports (symbol side+ play and spacing, digit groups, decimal separator, decimal places)+ style+ direc- which entries and (when there are multiple files) which files+ tive are affected by a directive+ scope++ 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.++ Directives and multiple files+ If you use multiple -f/--file options, or the include directive,+ hledger will process multiple input files. But note that directives+ which affect input (see above) typically last only until the end of the+ file in which they occur.++ This may seem inconvenient, but it's intentional; it makes reports sta-+ ble and deterministic, independent of the order of input. Otherwise+ you could see different numbers if you happened to write -f options in+ a different order, or if you moved includes around while cleaning up+ your files.++ It can be surprising though; for example, it means that alias direc-+ tives do not affect parent or sibling files (see below).++ Comment blocks+ A line containing just comment starts a commented region of the file,+ and a line containing just end comment (or the end of the current file)+ ends it. See also comments.++ Including other files+ You can pull in the content of additional files by writing an include+ directive, like this:++ include FILEPATH++ Only journal files can include, and only journal, timeclock or timedot+ files can be included (not CSV files, currently).++ If the file path does not begin with a slash, it is relative to the+ current file's folder.++ A tilde means home directory, eg: include ~/main.journal.++ The path may contain glob patterns to match multiple files, eg: include+ *.journal.++ There is limited support for recursive wildcards: **/ (the slash is+ required) matches 0 or more subdirectories. It's not super convenient+ since you have to avoid include cycles and including directories, but+ this can be done, eg: include */**/*.journal.++ The path may also be prefixed to force a specific file format, overrid-+ ing the file extension (as described in hledger.1 -> Input files):+ include timedot:~/notes/2020*.md.++ Default year+ You can set a default year to be used for subsequent dates which don't+ specify a year. This is a line beginning with Y followed by the year.+ Eg:++ Y2009 ; set default year to 2009++ 12/15 ; equivalent to 2009/12/15+ expenses 1+ assets++ Y2010 ; change default year to 2010++ 2009/1/30 ; specifies the year, not affected+ expenses 1+ assets++ 1/31 ; equivalent to 2010/1/31+ expenses 1+ assets++ Declaring payees+ The payee directive can be used to declare a limited set of payees+ which may appear in transaction descriptions. The "payees" check will+ report an error if any transaction refers to a payee that has not been+ declared. Eg:++ payee Whole Foods++ Declaring commodities+ The commodity directive has several functions:++ 1. It declares commodities which may be used in the journal. This is+ currently not enforced, but can serve as documentation.++ 2. It declares what decimal mark character (period or comma) to expect+ when parsing input - useful to disambiguate international number+ formats in your data. (Without this, hledger will parse both 1,000+ and 1.000 as 1).++ 3. It declares a commodity's display style in output - decimal and+ digit group marks, number of decimal places, symbol placement etc.++ You are likely to run into one of the problems solved by commodity+ directives, sooner or later, so it's a good idea to just always use+ them to declare your commodities.++ A commodity directive is just the word commodity followed by an amount.+ It may be written on a single line, like this:++ ; commodity EXAMPLEAMOUNT++ ; 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++ or on multiple lines, using the "format" subdirective. (In this case+ the commodity symbol appears twice and should be the same in both+ places.):++ ; commodity SYMBOL+ ; format EXAMPLEAMOUNT++ ; 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+ format INR 1,00,00,000.00++ The quantity of the amount does not matter; only the format is signifi-+ cant. The number must include a decimal mark: either a period or a+ comma, followed by 0 or more decimal digits.++ Note hledger normally uses banker's rounding, so 0.5 displayed with+ zero decimal digits is "0". (More at Commodity display style.)++ Commodity error checking+ In strict mode, enabled with the -s/--strict flag, hledger will report+ an error if a commodity symbol is used that has not been declared by a+ commodity directive. This works similarly to account error checking,+ see the notes there for more details.++ Default commodity+ The D directive sets a default commodity, to be used for amounts with-+ out a commodity symbol (ie, plain numbers). This commodity will be+ applied to all subsequent commodity-less amounts, or until the next D+ directive. (Note, this is different from Ledger's D.)++ For compatibility/historical reasons, D also acts like a commodity+ directive, setting the commodity's display style (for output) and deci-+ mal mark (for parsing input). As with commodity, the amount must+ always be written with a decimal mark (period or comma). If both+ directives are used, commodity's style takes precedence.++ The syntax is D AMOUNT. Eg:++ ; commodity-less amounts should be treated as dollars+ ; (and displayed with the dollar sign on the left, thousands separators and two decimal places)+ D $1,000.00++ 1/1+ a 5 ; <- commodity-less amount, parsed as $5 and displayed as $5.00+ b++ Declaring market prices+ The P directive declares a market price, which is an exchange rate+ between two commodities on a certain date. (In Ledger, they are called+ "historical prices".) These are often obtained from a stock exchange,+ cryptocurrency exchange, or the foreign exchange market.++ Here is the format:++ P DATE COMMODITYA COMMODITYBAMOUNT++ o DATE is a simple date++ o COMMODITYA is the symbol of the commodity being priced++ o COMMODITYBAMOUNT is an amount (symbol and quantity) in a second com-+ modity, giving the price in commodity B of one unit of commodity A.++ These two market price directives say that one euro was worth 1.35 US+ dollars during 2009, and $1.40 from 2010 onward:++ P 2009/1/1 EUR $1.35+ P 2010/1/1 EUR $1.40++ The -V, -X and --value flags use these market prices to show amount+ values in another commodity. See Valuation.++ Declaring accounts+ account directives can be used to declare accounts (ie, the places that+ amounts are transferred from and to). Though not required, these dec-+ larations can provide several benefits:++ o They can document your intended chart of accounts, providing a refer-+ ence.++ o They can help hledger know your accounts' types (asset, liability,+ equity, revenue, expense), useful for reports like balancesheet and+ incomestatement.++ o They control account display order in reports, allowing non-alpha-+ betic sorting (eg Revenues to appear above Expenses).++ o They can store extra information about accounts (account numbers,+ notes, etc.)++ o They help with account name completion in the add command, hledger-+ iadd, hledger-web, ledger-mode etc.++ o In strict mode, they restrict which accounts may be posted to by+ transactions, which helps detect typos.++ The simplest form is just the word account followed by a hledger-style+ account name, eg this account directive declares the assets:bank:check-+ ing account:++ account assets:bank:checking++ Account error checking+ By default, accounts come into existence when a transaction references+ them by name. This is convenient, but it means hledger can't warn you+ when you mis-spell an account name in the journal. Usually you'll find+ the error later, as an extra account in balance reports, or an incor-+ rect balance when reconciling.++ In strict mode, enabled with the -s/--strict flag, hledger will report+ an error if any transaction uses an account name that has not been+ declared by an account directive. Some notes:++ o The declaration is case-sensitive; transactions must use the correct+ account name capitalisation.++ o The account directive's scope is "whole file and below" (see direc-+ tives). This means it affects all of the current file, and any files+ it includes, but not parent or sibling files. The position of+ account directives within the file does not matter, though it's usual+ to put them at the top.++ o Accounts can only be declared in journal files (but will affect+ included files in other formats).++ o It's currently not possible to declare "all possible subaccounts"+ with a wildcard; every account posted to must be declared.++ Account comments+ Comments, beginning with a semicolon, can be added:++ o on the same line, after two or more spaces (because ; is allowed in+ account names)++ o on the next lines, indented++ An example of both:++ account assets:bank:checking ; same-line comment, note 2+ spaces before ;+ ; next-line comment+ ; another with tag, acctno:12345 (not used yet)++ Same-line comments are not supported by Ledger, or hledger <1.13.++ Account subdirectives+ We also allow (and ignore) Ledger-style indented subdirectives, just+ for compatibility.:++ account assets:bank:checking+ format blah blah ; <- subdirective, ignored++ Here is the full syntax of account directives:++ account ACCTNAME [ACCTTYPE] [;COMMENT]+ [;COMMENTS]+ [LEDGER-STYLE SUBDIRECTIVES, IGNORED]++ Account types+ hledger recognises five main types of account, corresponding to the+ account classes in the accounting equation:++ Asset, Liability, Equity, Revenue, Expense.++ These account types are important for controlling which accounts appear+ in the balancesheet, balancesheetequity, incomestatement reports (and+ probably for other things in future).++ Additionally, we recognise the Cash type, which is also an Asset, and+ which causes accounts to appear in the cashflow report. ("Cash" here+ means liquid assets, eg bank balances but typically not investments or+ receivables.)++ Declaring account types+ Generally, to make these reports work you should declare your top-level+ accounts and their types, using account directives with type: tags.++ The tag's value should be one of: Asset, Liability, Equity, Revenue,+ Expense, Cash, A, L, E, R, X, C (all case insensitive). The type is+ inherited by all subaccounts except where they override it. Here's a+ complete example:++ account assets ; type: Asset+ account assets:bank ; type: Cash+ account assets:cash ; type: Cash+ account liabilities ; type: Liability+ account equity ; type: Equity+ account revenues ; type: Revenue+ account expenses ; type: Expense++ Auto-detected account types+ If you happen to use common english top-level account names, you may+ not need to declare account types, as they will be detected automati-+ cally using the following rules:+++ If name matches regular account type is:+ expression:+ ----------------------------------------------+ ^assets?(:|$) Asset+ ^(debts?|lia- Liability+ bilit(y|ies))(:|$)+ ^equity(:|$) Equity+ ^(income|revenue)s?(:|$) Revenue+ ^expenses?(:|$) Expense+++ If account type is Asset and name does not contain regu- account type+ lar expression: is:+ --------------------------------------------------------------------------+ (investment|receivable|:A/R|:fixed) Cash++ Even so, explicit declarations may be a good idea, for clarity and pre-+ dictability.++ Interference from auto-detected account types+ If you assign any account type, it's a good idea to assign all of them,+ to prevent any confusion from mixing declared and auto-detected types.+ Although it's unlikely to happen in real life, here's an example: with+ the following journal, balancesheetequity shows "liabilities" in both+ Liabilities and Equity sections. Declaring another account as+ type:Liability would fix it:++ account liabilities ; type:Equity++ 2020-01-01+ assets 1+ liabilities 1+ equity -2++ Old account type syntax+ In some hledger journals you might instead see this old syntax (the+ letters ALERX, separated from the account name by two or more spaces);+ this is deprecated and may be removed soon:++ account assets A+ account liabilities L+ account equity E+ account revenues R+ account expenses X++ Account display order+ Account directives also set the order in which accounts are displayed,+ eg in reports, the hledger-ui accounts screen, and the hledger-web+ sidebar. By default accounts are listed in alphabetical order. But if+ you have these account directives in the journal:++ account assets+ account liabilities+ account equity+ account revenues+ account expenses++ you'll see those accounts displayed in declaration order, not alphabet-+ ically:++ $ hledger accounts -1+ assets+ liabilities+ equity+ revenues+ expenses++ Undeclared accounts, if any, are displayed last, in alphabetical order.++ Note that sorting is done at each level of the account tree (within+ each group of sibling accounts under the same parent). And currently,+ this directive:++ account other:zoo++ would influence the position of zoo among other's subaccounts, but not+ the position of other among the top-level accounts. This means:++ o you will sometimes declare parent accounts (eg account other above)+ that you don't intend to post to, just to customize their display+ order++ o sibling accounts stay together (you couldn't display x:y in between+ a:b and a:c).++ Rewriting accounts+ You can define account alias rules which rewrite your account names, or+ parts of them, before generating reports. This can be useful for:++ o expanding shorthand account names to their full form, allowing easier+ data entry and a less verbose journal++ o adapting old journals to your current chart of accounts++ o experimenting with new account organisations, like a new hierarchy or+ combining two accounts into one++ o customising reports++ Account aliases also rewrite account names in account directives. They+ do not affect account names being entered via hledger add or hledger-+ web.++ See also Rewrite account names.++ Basic aliases+ To set an account alias, use the alias directive in your journal file.+ This affects all subsequent journal entries in the current file or its+ included files. The spaces around the = are optional:++ alias OLD = NEW++ Or, you can use the --alias 'OLD=NEW' option on the command line. This+ affects all entries. It's useful for trying out aliases interactively.++ OLD and NEW are case sensitive full account names. hledger will+ replace any occurrence of the old account name with the new one. Sub-+ accounts are also affected. Eg:++ alias checking = assets:bank:wells fargo:checking+ ; rewrites "checking" to "assets:bank:wells fargo:checking", or "checking:a" to "assets:bank:wells fargo:checking:a"++ Regex aliases+ There is also a more powerful variant that uses a regular expression,+ indicated by the forward slashes:++ alias /REGEX/ = REPLACEMENT++ or --alias '/REGEX/=REPLACEMENT'.++ REGEX is a case-insensitive regular expression. Anywhere it matches+ inside an account name, the matched part will be replaced by REPLACE-+ MENT. If REGEX contains parenthesised match groups, these can be ref-+ erenced by the usual numeric backreferences in REPLACEMENT. Eg:++ alias /^(.+):bank:([^:]+):(.*)/ = \1:\2 \3+ ; rewrites "assets:bank:wells fargo:checking" to "assets:wells fargo checking"++ Also note that REPLACEMENT continues to the end of line (or on command+ line, to end of option argument), so it can contain trailing white-+ space.++ Combining aliases+ You can define as many aliases as you like, using journal directives+ and/or command line options.++ 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.++ 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:++ 1. alias directives preceding the journal entry, most recently parsed+ first (ie, reading upward from the journal entry, bottom to top)++ 2. --alias options, in the order they appeared on the command line+ (left to right).++ In other words, for (an account name in) a given journal entry:++ o the nearest alias declaration before/above the entry is applied first++ o the next alias before/above that will be be applied next, and so on++ o aliases defined after/below the entry do not affect it.++ This gives nearby aliases precedence over distant ones, and helps pro-+ vide semantic stability - aliases will keep working the same way inde-+ pendent of which files are being read and in which order.++ In case of trouble, adding --debug=6 to the command line will show+ which aliases are being applied when.++ Aliases and multiple files+ As explained at Directives and multiple files, alias directives do not+ affect parent or sibling files. Eg in this command,++ hledger -f a.aliases -f b.journal++ account aliases defined in a.aliases will not affect b.journal.+ Including the aliases doesn't work either:++ include a.aliases++ 2020-01-01 ; not affected by a.aliases+ foo 1+ bar++ This means that account aliases should usually be declared at the start+ of your top-most file, like this:++ alias foo=Foo+ alias bar=Bar++ 2020-01-01 ; affected by aliases above+ foo 1+ bar++ include c.journal ; also affected++ end aliases+ You can clear (forget) all currently defined aliases with the end+ aliases directive:++ end aliases++ Default parent account+ You can specify a parent account which will be prepended to all+ accounts within a section of the journal. Use the apply account and+ end apply account directives like so:++ apply account home++ 2010/1/1+ food $10+ cash++ end apply account++ which is equivalent to:++ 2010/01/01+ home:food $10+ home:cash $-10++ If end apply account is omitted, the effect lasts to the end of the+ file. Included files are also affected, eg:++ apply account business+ include biz.journal+ end apply account+ apply account personal+ include personal.journal++ Prior to hledger 1.0, legacy account and end spellings were also sup-+ ported.++ A default parent account also affects account directives. It does not+ affect account names being entered via hledger add or hledger-web. If+ account aliases are present, they are applied after the default parent+ account.++ Periodic transactions+ Periodic transaction rules describe transactions that recur. They+ allow hledger to generate temporary future transactions to help with+ forecasting, so you don't have to write out each one in the journal,+ and it's easy to try out different forecasts.++ Periodic transactions can be a little tricky, so before you use them,+ read this whole section - or at least these tips:++ 1. Two spaces accidentally added or omitted will cause you trouble -+ read about this below.++ 2. For troubleshooting, show the generated transactions with hledger+ print --forecast tag:generated or hledger register --forecast+ tag:generated.++ 3. Forecasted transactions will begin only after the last non-fore-+ casted transaction's date.++ 4. Forecasted transactions will end 6 months from today, by default.+ See below for the exact start/end rules.++ 5. period expressions can be tricky. Their documentation needs+ improvement, but is worth studying.++ 6. Some period expressions with a repeating interval must begin on a+ natural boundary of that interval. Eg in weekly from DATE, DATE+ must be a monday. ~ weekly from 2019/10/1 (a tuesday) will give an+ error.++ 7. 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's a bit+ inconsistent with the above.) Eg: ~ every 10th day of month from+ 2020/01, which is equivalent to ~ every 10th day of month from+ 2020/01/01, will be adjusted to start on 2019/12/10.++ Periodic transaction rules also have a second meaning: they are used to+ define budget goals, shown in budget reports.++ Periodic rule syntax+ A periodic transaction rule looks like a normal journal entry, with the+ date replaced by a tilde (~) followed by a period expression (mnemonic:+ ~ looks like a recurring sine wave.):++ ~ monthly+ expenses:rent $2000+ assets:bank:checking++ There is an additional constraint on the period expression: the start+ date must fall on a natural boundary of the interval. Eg monthly from+ 2018/1/1 is valid, but monthly from 2018/1/15 is not.++ Partial or relative dates (M/D, D, tomorrow, last week) in the period+ expression can work (useful or not). They will be relative to today's+ date, unless a Y default year directive is in effect, in which case+ they will be relative to Y/1/1.++ Two spaces between period expression and description!+ If the period expression is followed by a transaction description,+ these must be separated by two or more spaces. This helps hledger know+ where the period expression ends, so that descriptions can not acciden-+ tally alter their meaning, as in this example:++ ; 2 or more spaces needed here, so the period is not understood as "every 2 months in 2020"+ ; ||+ ; vv+ ~ every 2 months in 2020, we will review+ assets:bank:checking $1500+ income:acme inc++ So,++ o Do write two spaces between your period expression and your transac-+ tion description, if any.++ o Don't accidentally write two spaces in the middle of your period+ expression.++ Forecasting with periodic transactions+ The --forecast flag activates any periodic transaction rules in the+ journal. They will generate temporary recurring transactions, which+ are not saved in the journal, but will appear in all reports (eg+ print). This can be useful for estimating balances into the future, or+ experimenting with different scenarios. Or, it can be used as a data+ entry aid: describe recurring transactions, and every so often copy the+ output of print --forecast into the journal.++ These transactions will have an extra tag indicating which periodic+ rule generated them: generated-transaction:~ PERIODICEXPR. And a simi-+ lar, hidden tag (beginning with an underscore) which, because it's+ never displayed by print, can be used to match transactions generated+ "just now": _generated-transaction:~ PERIODICEXPR.++ Periodic transactions are generated within some forecast period. By+ default, this++ o begins on the later of++ o the report start date if specified with -b/-p/date:++ o the day after the latest normal (non-periodic) transaction in the+ journal, or today if there are no normal transactions.++ o ends on the report end date if specified with -e/-p/date:, or 6+ months (180 days) from today.++ This means that periodic transactions will begin only after the latest+ recorded transaction. And a recorded transaction dated in the future+ can prevent generation of periodic transactions. (You can avoid that+ by writing the future transaction as a one-time periodic rule instead -+ put tilde before the date, eg ~ YYYY-MM-DD ...).++ Or, you can set your own arbitrary "forecast period", which can overlap+ recorded transactions, and need not be in the future, by providing an+ option argument, like --forecast=PERIODEXPR. Note the equals sign is+ required, a space won't work. PERIODEXPR is a period expression, which+ can specify the start date, end date, or both, like in a date: query.+ (See also hledger.1 -> Report start & end date). Some examples:+ --forecast=202001-202004, --forecast=jan-, --forecast=2020.++ Budgeting with periodic transactions+ With the --budget flag, currently supported by the balance 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 com-+ pared in budget reports.++ See also: Budgeting and Forecasting.+++ Auto postings+ "Automated postings" or "auto postings" are extra postings which get+ added automatically to transactions which match certain queries,+ defined by "auto posting rules", when you use the --auto flag.++ An auto posting rule looks a bit like a transaction:++ = QUERY+ ACCOUNT AMOUNT+ ...+ ACCOUNT [AMOUNT]++ except the first line is an equals sign (mnemonic: = suggests match-+ ing), followed by a query (which matches existing postings), and each+ "posting" line describes a posting to be generated, and the posting+ amounts can be:++ o a normal amount with a commodity symbol, eg $2. This will be used+ as-is.++ o a number, eg 2. The commodity symbol (if any) from the matched post-+ ing will be added to this.++ o a numeric multiplier, eg *2 (a star followed by a number N). The+ matched posting's amount (and total price, if any) will be multiplied+ by N.++ o a multiplier with a commodity symbol, eg *$2 (a star, number N, and+ symbol S). The matched posting's amount will be multiplied by N, and+ its commodity symbol will be replaced with S.++ Any query term containing spaces must be enclosed in single or double+ quotes, as on the command line. Eg, note the quotes around the second+ query term below:++ = expenses:groceries 'expenses:dining out'+ (budget:funds:dining out) *-1++ Some examples:++ ; every time I buy food, schedule a dollar donation+ = expenses:food+ (liabilities:charity) $-1++ ; when I buy a gift, also deduct that amount from a budget envelope subaccount+ = expenses:gifts+ assets:checking:gifts *-1+ assets:checking *1++ 2017/12/1+ expenses:food $10+ assets:checking++ 2017/12/14+ expenses:gifts $20+ assets:checking++ $ hledger print --auto+ 2017-12-01+ expenses:food $10+ assets:checking+ (liabilities:charity) $-1++ 2017-12-14+ expenses:gifts $20+ assets:checking+ assets:checking:gifts -$20+ assets:checking $20++ Auto postings and multiple files+ An auto posting rule can affect any transaction in the current file, or+ in any parent file or child file. Note, currently it will not affect+ sibling files (when multiple -f/--file are used - see #1212).++ Auto postings and dates+ 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.++ Auto postings and transaction balancing / inferred amounts / balance asser-+ tions+ Currently, auto postings are added:++ o after missing amounts are inferred, and transactions are checked for+ balancedness,++ o but before balance assertions are checked.++ 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.++ Auto posting tags+ Automated postings will have some extra tags:++ o generated-posting:= QUERY - shows this was generated by an auto post-+ ing rule, and the query++ o _generated-posting:= QUERY - a hidden tag, which does not appear in+ hledger's output. This can be used to match postings generated "just+ now", rather than generated in the past and saved to the journal.++ Also, any transaction that has been changed by auto posting rules will+ have these tags added:++ o modified: - this transaction was modified++ o _modified: - a hidden tag not appearing in the comment; this transac-+ tion was modified "just now".++CSV FORMAT+ How hledger reads CSV data, and the CSV rules file format.++ hledger can read CSV files (Character Separated Value - usually comma,+ semicolon, or tab) containing dated records as if they were journal+ files, automatically converting each CSV record into a transaction.++ (To learn about writing CSV, see CSV output.)++ We describe each CSV file's format with a corresponding rules file. By+ default this is named like the CSV file with a .rules extension added.+ Eg when reading FILE.csv, hledger also looks for FILE.csv.rules in the+ same directory as FILE.csv. You can specify a different rules file+ with the --rules-file option. If a rules file is not found, hledger+ will create a sample rules file, which you'll need to adjust.++ This file contains rules describing the CSV data (header line, fields+ layout, date format etc.), and how to construct hledger journal entries+ (transactions) from it. Often there will also be a list of conditional+ rules for categorising transactions based on their descriptions.+ Here's an overview of the CSV rules; these are described more fully+ below, after the examples:+++ skip skip one or more header lines or matched+ CSV records+ fields name CSV fields, assign them to hledger+ fields+ field assignment assign a value to one hledger field,+ with interpolation+ separator a custom field separator+ if block apply some rules to CSV records matched+ by patterns+ if table apply some rules to CSV records matched+ by patterns, alternate syntax+ end skip the remaining CSV records+ date-format how to parse dates in CSV records+ decimal-mark the decimal mark used in CSV amounts, if+ ambiguous+ newest-first disambiguate record order when there's+ only one date+ include inline another CSV rules file+ balance-type choose which type of balance assignments+ to use++ Note, for best error messages when reading CSV files, use a .csv, .tsv+ or .ssv file extension or file prefix - see File Extension below.++ There's an introductory Convert CSV files tutorial on hledger.org.++ Examples+ Here are some sample hledger CSV rules files. See also the full col-+ lection at:+ https://github.com/simonmichael/hledger/tree/master/examples/csv++ Basic+ At minimum, the rules file must identify the date and amount fields,+ and often it also specifies the date format and how many header lines+ there are. Here's a simple CSV file and a rules file for it:++ Date, Description, Id, Amount+ 12/11/2019, Foo, 123, 10.23++ # basic.csv.rules+ skip 1+ fields date, description, _, amount+ date-format %d/%m/%Y++ $ hledger print -f basic.csv+ 2019-11-12 Foo+ expenses:unknown 10.23+ income:unknown -10.23++ Default account names are chosen, since we didn't set them.++ Bank of Ireland+ Here's a CSV with two amount fields (Debit and Credit), and a balance+ field, which we can use to add balance assertions, which is not neces-+ sary but provides extra error checking:++ Date,Details,Debit,Credit,Balance+ 07/12/2012,LODGMENT 529898,,10.0,131.21+ 07/12/2012,PAYMENT,5,,126++ # bankofireland-checking.csv.rules++ # skip the header line+ skip++ # name the csv fields, and assign some of them as journal entry fields+ fields date, description, amount-out, amount-in, balance++ # We generate balance assertions by assigning to "balance"+ # above, but you may sometimes need to remove these because:+ #+ # - the CSV balance differs from the true balance,+ # by up to 0.0000000000005 in my experience+ #+ # - it is sometimes calculated based on non-chronological ordering,+ # eg when multiple transactions clear on the same day++ # date is in UK/Ireland format+ date-format %d/%m/%Y++ # set the currency+ currency EUR++ # set the base account for all txns+ account1 assets:bank:boi:checking++ $ hledger -f bankofireland-checking.csv print+ 2012-12-07 LODGMENT 529898+ assets:bank:boi:checking EUR10.0 = EUR131.2+ income:unknown EUR-10.0++ 2012-12-07 PAYMENT+ assets:bank:boi:checking EUR-5.0 = EUR126.0+ expenses:unknown EUR5.0++ The balance assertions don't raise an error above, because we're read-+ ing directly from CSV, but they will be checked if these entries are+ imported into a journal file.++ Amazon+ Here we convert amazon.com order history, and use an if block to gener-+ ate a third posting if there's a fee. (In practice you'd probably get+ this data from your bank instead, but it's an example.)++ "Date","Type","To/From","Name","Status","Amount","Fees","Transaction ID"+ "Jul 29, 2012","Payment","To","Foo.","Completed","$20.00","$0.00","16000000000000DGLNJPI1P9B8DKPVHL"+ "Jul 30, 2012","Payment","To","Adapteva, Inc.","Completed","$25.00","$1.00","17LA58JSKRD4HDGLNJPI1P9B8DKPVHL"++ # amazon-orders.csv.rules++ # skip one header line+ skip 1++ # name the csv fields, and assign the transaction's date, amount and code.+ # Avoided the "status" and "amount" hledger field names to prevent confusion.+ fields date, _, toorfrom, name, amzstatus, amzamount, fees, code++ # how to parse the date+ date-format %b %-d, %Y++ # combine two fields to make the description+ description %toorfrom %name++ # save the status as a tag+ comment status:%amzstatus++ # set the base account for all transactions+ account1 assets:amazon+ # leave amount1 blank so it can balance the other(s).+ # I'm assuming amzamount excludes the fees, don't remember++ # set a generic account2+ account2 expenses:misc+ amount2 %amzamount+ # and maybe refine it further:+ #include categorisation.rules++ # add a third posting for fees, but only if they are non-zero.+ if %fees [1-9]+ account3 expenses:fees+ amount3 %fees++ $ hledger -f amazon-orders.csv print+ 2012-07-29 (16000000000000DGLNJPI1P9B8DKPVHL) To Foo. ; status:Completed+ assets:amazon+ expenses:misc $20.00++ 2012-07-30 (17LA58JSKRD4HDGLNJPI1P9B8DKPVHL) To Adapteva, Inc. ; status:Completed+ assets:amazon+ expenses:misc $25.00+ expenses:fees $1.00++ Paypal+ Here's a real-world rules file for (customised) Paypal CSV, with some+ Paypal-specific rules, and a second rules file included:++ "Date","Time","TimeZone","Name","Type","Status","Currency","Gross","Fee","Net","From Email Address","To Email Address","Transaction ID","Item Title","Item ID","Reference Txn ID","Receipt ID","Balance","Note"+ "10/01/2019","03:46:20","PDT","Calm Radio","Subscription Payment","Completed","USD","-6.99","0.00","-6.99","simon@joyful.com","memberships@calmradio.com","60P57143A8206782E","MONTHLY - $1 for the first 2 Months: Me - Order 99309. Item total: $1.00 USD first 2 months, then $6.99 / Month","","I-R8YLY094FJYR","","-6.99",""+ "10/01/2019","03:46:20","PDT","","Bank Deposit to PP Account ","Pending","USD","6.99","0.00","6.99","","simon@joyful.com","0TU1544T080463733","","","60P57143A8206782E","","0.00",""+ "10/01/2019","08:57:01","PDT","Patreon","PreApproved Payment Bill User Payment","Completed","USD","-7.00","0.00","-7.00","simon@joyful.com","support@patreon.com","2722394R5F586712G","Patreon* Membership","","B-0PG93074E7M86381M","","-7.00",""+ "10/01/2019","08:57:01","PDT","","Bank Deposit to PP Account ","Pending","USD","7.00","0.00","7.00","","simon@joyful.com","71854087RG994194F","Patreon* Membership","","2722394R5F586712G","","0.00",""+ "10/19/2019","03:02:12","PDT","Wikimedia Foundation, Inc.","Subscription Payment","Completed","USD","-2.00","0.00","-2.00","simon@joyful.com","tle@wikimedia.org","K9U43044RY432050M","Monthly donation to the Wikimedia Foundation","","I-R5C3YUS3285L","","-2.00",""+ "10/19/2019","03:02:12","PDT","","Bank Deposit to PP Account ","Pending","USD","2.00","0.00","2.00","","simon@joyful.com","3XJ107139A851061F","","","K9U43044RY432050M","","0.00",""+ "10/22/2019","05:07:06","PDT","Noble Benefactor","Subscription Payment","Completed","USD","10.00","-0.59","9.41","noble@bene.fac.tor","simon@joyful.com","6L8L1662YP1334033","Joyful Systems","","I-KC9VBGY2GWDB","","9.41",""++ # paypal-custom.csv.rules++ # Tips:+ # Export from Activity -> Statements -> Custom -> Activity download+ # Suggested transaction type: "Balance affecting"+ # Paypal's default fields in 2018 were:+ # "Date","Time","TimeZone","Name","Type","Status","Currency","Gross","Fee","Net","From Email Address","To Email Address","Transaction ID","Shipping Address","Address Status","Item Title","Item ID","Shipping and Handling Amount","Insurance Amount","Sales Tax","Option 1 Name","Option 1 Value","Option 2 Name","Option 2 Value","Reference Txn ID","Invoice Number","Custom Number","Quantity","Receipt ID","Balance","Address Line 1","Address Line 2/District/Neighborhood","Town/City","State/Province/Region/County/Territory/Prefecture/Republic","Zip/Postal Code","Country","Contact Phone Number","Subject","Note","Country Code","Balance Impact"+ # This rules file assumes the following more detailed fields, configured in "Customize report fields":+ # "Date","Time","TimeZone","Name","Type","Status","Currency","Gross","Fee","Net","From Email Address","To Email Address","Transaction ID","Item Title","Item ID","Reference Txn ID","Receipt ID","Balance","Note"++ fields date, time, timezone, description_, type, status_, currency, grossamount, feeamount, netamount, fromemail, toemail, code, itemtitle, itemid, referencetxnid, receiptid, balance, note++ skip 1++ date-format %-m/%-d/%Y++ # ignore some paypal events+ if+ In Progress+ Temporary Hold+ Update to+ skip++ # add more fields to the description+ description %description_ %itemtitle++ # save some other fields as tags+ comment itemid:%itemid, fromemail:%fromemail, toemail:%toemail, time:%time, type:%type, status:%status_++ # convert to short currency symbols+ if %currency USD+ currency $+ if %currency EUR+ currency E+ if %currency GBP+ currency P++ # generate postings++ # the first posting will be the money leaving/entering my paypal account+ # (negative means leaving my account, in all amount fields)+ account1 assets:online:paypal+ amount1 %netamount++ # the second posting will be money sent to/received from other party+ # (account2 is set below)+ amount2 -%grossamount++ # if there's a fee, add a third posting for the money taken by paypal.+ if %feeamount [1-9]+ account3 expenses:banking:paypal+ amount3 -%feeamount+ comment3 business:++ # choose an account for the second posting++ # override the default account names:+ # if the amount is positive, it's income (a debit)+ if %grossamount ^[^-]+ account2 income:unknown+ # if negative, it's an expense (a credit)+ if %grossamount ^-+ account2 expenses:unknown++ # apply common rules for setting account2 & other tweaks+ include common.rules++ # apply some overrides specific to this csv++ # Transfers from/to bank. These are usually marked Pending,+ # which can be disregarded in this case.+ if+ Bank Account+ Bank Deposit to PP Account+ description %type for %referencetxnid %itemtitle+ account2 assets:bank:wf:pchecking+ account1 assets:online:paypal++ # Currency conversions+ if Currency Conversion+ account2 equity:currency conversion++ # common.rules++ if+ darcs+ noble benefactor+ account2 revenues:foss donations:darcshub+ comment2 business:++ if+ Calm Radio+ account2 expenses:online:apps++ if+ electronic frontier foundation+ Patreon+ wikimedia+ Advent of Code+ account2 expenses:dues++ if Google+ account2 expenses:online:apps+ description google | music++ $ hledger -f paypal-custom.csv print+ 2019-10-01 (60P57143A8206782E) Calm Radio MONTHLY - $1 for the first 2 Months: Me - Order 99309. Item total: $1.00 USD first 2 months, then $6.99 / Month ; itemid:, fromemail:simon@joyful.com, toemail:memberships@calmradio.com, time:03:46:20, type:Subscription Payment, status:Completed+ assets:online:paypal $-6.99 = $-6.99+ expenses:online:apps $6.99++ 2019-10-01 (0TU1544T080463733) Bank Deposit to PP Account for 60P57143A8206782E ; itemid:, fromemail:, toemail:simon@joyful.com, time:03:46:20, type:Bank Deposit to PP Account, status:Pending+ assets:online:paypal $6.99 = $0.00+ assets:bank:wf:pchecking $-6.99++ 2019-10-01 (2722394R5F586712G) Patreon Patreon* Membership ; itemid:, fromemail:simon@joyful.com, toemail:support@patreon.com, time:08:57:01, type:PreApproved Payment Bill User Payment, status:Completed+ assets:online:paypal $-7.00 = $-7.00+ expenses:dues $7.00++ 2019-10-01 (71854087RG994194F) Bank Deposit to PP Account for 2722394R5F586712G Patreon* Membership ; itemid:, fromemail:, toemail:simon@joyful.com, time:08:57:01, type:Bank Deposit to PP Account, status:Pending+ assets:online:paypal $7.00 = $0.00+ assets:bank:wf:pchecking $-7.00++ 2019-10-19 (K9U43044RY432050M) Wikimedia Foundation, Inc. Monthly donation to the Wikimedia Foundation ; itemid:, fromemail:simon@joyful.com, toemail:tle@wikimedia.org, time:03:02:12, type:Subscription Payment, status:Completed+ assets:online:paypal $-2.00 = $-2.00+ expenses:dues $2.00+ expenses:banking:paypal ; business:++ 2019-10-19 (3XJ107139A851061F) Bank Deposit to PP Account for K9U43044RY432050M ; itemid:, fromemail:, toemail:simon@joyful.com, time:03:02:12, type:Bank Deposit to PP Account, status:Pending+ assets:online:paypal $2.00 = $0.00+ assets:bank:wf:pchecking $-2.00++ 2019-10-22 (6L8L1662YP1334033) Noble Benefactor Joyful Systems ; itemid:, fromemail:noble@bene.fac.tor, toemail:simon@joyful.com, time:05:07:06, type:Subscription Payment, status:Completed+ assets:online:paypal $9.41 = $9.41+ revenues:foss donations:darcshub $-10.00 ; business:+ expenses:banking:paypal $0.59 ; business:++ CSV rules+ The following kinds of rule can appear in the rules file, in any order.+ Blank lines and lines beginning with # or ; are ignored.++ skip+ skip N++ The word "skip" followed by a number (or no number, meaning 1) tells+ hledger to ignore this many non-empty lines preceding the CSV data.+ (Empty/blank lines are skipped automatically.) You'll need this when-+ ever your CSV data contains header lines.++ It also has a second purpose: it can be used inside if blocks to ignore+ certain CSV records (described below).++ fields+ fields FIELDNAME1, FIELDNAME2, ...++ A fields list (the word "fields" followed by comma-separated field+ names) is the quick way to assign CSV field values to hledger fields.+ It does two things:++ 1. it names the CSV fields. This is optional, but can be convenient+ later for interpolating them.++ 2. when you use a standard hledger field name, it assigns the CSV value+ to that part of the hledger transaction.++ Here's an example that says "use the 1st, 2nd and 4th fields as the+ transaction's date, description and amount; name the last two fields+ for later reference; and ignore the others":++ fields date, description, , amount, , , somefield, anotherfield++ Field names may not contain whitespace. Fields you don't care about+ can be left unnamed. Currently there must be least two items (there+ must be at least one comma).++ Note, always use comma in the fields list, even if your CSV uses+ another separator character.++ Here are the standard hledger field/pseudo-field names. For more about+ the transaction parts they refer to, see the manual for hledger's jour-+ nal format.++ Transaction field names+ date, date2, status, code, description, comment can be used to form the+ transaction's first line.++ Posting field names+ account+ accountN, where N is 1 to 99, causes a posting to be generated, with+ that account name.++ Most often there are two postings, so you'll want to set account1 and+ account2. Typically account1 is associated with the CSV file, and is+ set once with a top-level assignment, while account2 is set based on+ each transaction's description, and in conditional blocks.++ If a posting's account name is left unset but its amount is set (see+ below), a default account name will be chosen (like "expenses:unknown"+ or "income:unknown").++ amount+ amountN sets posting N's amount. If the CSV uses separate fields for+ inflows and outflows, you can use amountN-in and amountN-out instead.+ By assigning to amount1, amount2, ... etc. you can generate anywhere+ from 0 to 99 postings.++ There is also an older, unnumbered form of these names, suitable for+ 2-posting transactions, which sets both posting 1's and (negated) post-+ ing 2's amount: amount, or amount-in and amount-out. This is still+ supported because it keeps pre-hledger-1.17 csv rules files working,+ and because it can be more succinct, and because it converts posting+ 2's amount to cost if there's a transaction price, which can be useful.++ If you have an existing rules file using the unnumbered form, you might+ want to use the numbered form in certain conditional blocks, without+ having to update and retest all the old rules. To facilitate this,+ posting 1 ignores amount/amount-in/amount-out if any of+ amount1/amount1-in/amount1-out are assigned, and posting 2 ignores them+ if any of amount2/amount2-in/amount2-out are assigned, avoiding con-+ flicts.++ currency+ If the CSV has the currency symbol in a separate field (ie, not part of+ the amount field), you can use currencyN to prepend it to posting N's+ amount. Or, currency with no number affects all postings.++ balance+ balanceN sets a balance assertion amount (or if the posting amount is+ left empty, a balance assignment) on posting N.++ Also, for compatibility with hledger <1.17: balance with no number is+ equivalent to balance1.++ You can adjust the type of assertion/assignment with the balance-type+ rule (see below).++ comment+ Finally, commentN sets a comment on the Nth posting. Comments can also+ contain tags, as usual.++ See TIPS below for more about setting amounts and currency.++ field assignment+ HLEDGERFIELDNAME FIELDVALUE++ Instead of or in addition to a fields list, you can use a "field+ assignment" rule to set the value of a single hledger field, by writing+ its name (any of the standard hledger field names above) followed by a+ text value. The value may contain interpolated CSV fields, referenced+ by their 1-based position in the CSV record (%N), or by the name they+ were given in the fields list (%CSVFIELDNAME). Some examples:++ # set the amount to the 4th CSV field, with " USD" appended+ amount %4 USD++ # combine three fields to make a comment, containing note: and date: tags+ comment note: %somefield - %anotherfield, date: %1++ Interpolation strips outer whitespace (so a CSV value like " 1 "+ becomes 1 when interpolated) (#1051). See TIPS below for more about+ referencing other fields.++ separator+ You can use the separator rule to read other kinds of character-sepa-+ rated data. The argument is any single separator character, or the+ words tab or space (case insensitive). Eg, for comma-separated values+ (CSV):++ separator ,++ or for semicolon-separated values (SSV):++ separator ;++ or for tab-separated values (TSV):++ separator TAB++ If the input file has a .csv, .ssv or .tsv file extension (or a csv:,+ ssv:, tsv: prefix), the appropriate separator will be inferred automat-+ ically, and you won't need this rule.++ if block+ if MATCHER+ RULE++ if+ MATCHER+ MATCHER+ MATCHER+ RULE+ RULE++ Conditional blocks ("if blocks") are a block of rules that are applied+ only to CSV records which match certain patterns. They are often used+ for customising account names based on transaction descriptions.++ Matching the whole record+ Each MATCHER can be a record matcher, which looks like this:++ REGEX++ REGEX is a case-insensitive regular expression which tries to match+ anywhere within the CSV record. It is a POSIX ERE (extended regular+ expression) that also supports GNU word boundaries (\b, \B, \<, \>),+ and nothing else. If you have trouble, be sure to check our+ https://hledger.org/hledger.html#regular-expressions doc.++ Important note: the record that is matched is not the original record,+ but a synthetic one, with any enclosing double quotes (but not enclos-+ ing whitespace) removed, and always comma-separated (which means that a+ field containing a comma will appear like two fields). Eg, if the+ original record is 2020-01-01; "Acme, Inc."; 1,000, the REGEX will+ actually see 2020-01-01,Acme, Inc., 1,000).++ Matching individual fields+ Or, MATCHER can be a field matcher, like this:++ %CSVFIELD REGEX++ which matches just the content of a particular CSV field. CSVFIELD is+ a percent sign followed by the field's name or column number, like+ %date or %1.++ Combining matchers+ A single matcher can be written on the same line as the "if"; or multi-+ ple matchers can be written on the following lines, non-indented. Mul-+ tiple matchers are OR'd (any one of them can match), unless one begins+ with an & symbol, in which case it is AND'ed with the previous matcher.++ if+ MATCHER+ & MATCHER+ RULE++ Rules applied on successful match+ After the patterns there should be one or more rules to apply, all+ indented by at least one space. Three kinds of rule are allowed in+ conditional blocks:++ o field assignments (to set a hledger field)++ o skip (to skip the matched CSV record)++ o end (to skip all remaining CSV records).++ Examples:++ # if the CSV record contains "groceries", set account2 to "expenses:groceries"+ if groceries+ account2 expenses:groceries++ # if the CSV record contains any of these patterns, set account2 and comment as shown+ if+ monthly service fee+ atm transaction fee+ banking thru software+ account2 expenses:business:banking+ comment XXX deductible ? check it++ if table+ if,CSVFIELDNAME1,CSVFIELDNAME2,...,CSVFIELDNAMEn+ MATCHER1,VALUE11,VALUE12,...,VALUE1n+ MATCHER2,VALUE21,VALUE22,...,VALUE2n+ MATCHER3,VALUE31,VALUE32,...,VALUE3n+ <empty line>++ Conditional tables ("if tables") are a different syntax to specify+ field assignments that will be applied only to CSV records which match+ certain patterns.++ MATCHER could be either field or record matcher, as described above.+ When MATCHER matches, values from that row would be assigned to the CSV+ fields named on the if line, in the same order.++ Therefore if table is exactly equivalent to a sequence of of if blocks:++ if MATCHER1+ CSVFIELDNAME1 VALUE11+ CSVFIELDNAME2 VALUE12+ ...+ CSVFIELDNAMEn VALUE1n++ if MATCHER2+ CSVFIELDNAME1 VALUE21+ CSVFIELDNAME2 VALUE22+ ...+ CSVFIELDNAMEn VALUE2n++ if MATCHER3+ CSVFIELDNAME1 VALUE31+ CSVFIELDNAME2 VALUE32+ ...+ CSVFIELDNAMEn VALUE3n++ Each line starting with MATCHER should contain enough (possibly empty)+ values for all the listed fields.++ Rules would be checked and applied in the order they are listed in the+ table and, like with if blocks, later rules (in the same or another ta-+ ble) or if blocks could override the effect of any rule.++ Instead of ',' you can use a variety of other non-alphanumeric charac-+ ters as a separator. First character after if is taken to be the sepa-+ rator for the rest of the table. It is the responsibility of the user+ to ensure that separator does not occur inside MATCHERs and values -+ there is no way to escape separator.++ Example:++ if,account2,comment+ atm transaction fee,expenses:business:banking,deductible? check it+ %description groceries,expenses:groceries,+ 2020/01/12.*Plumbing LLC,expenses:house:upkeep,emergency plumbing call-out++ end+ This rule can be used inside if blocks (only), to make hledger stop+ reading this CSV file and move on to the next input file, or to command+ execution. Eg:++ # ignore everything following the first empty record+ if ,,,,+ end++ date-format+ date-format DATEFMT++ This is a helper for the date (and date2) fields. If your CSV dates+ are not formatted like YYYY-MM-DD, YYYY/MM/DD or YYYY.MM.DD, you'll+ need to add a date-format rule describing them with a strptime date+ parsing pattern, which must parse the CSV date value completely. Some+ examples:++ # MM/DD/YY+ date-format %m/%d/%y++ # D/M/YYYY+ # The - makes leading zeros optional.+ date-format %-d/%-m/%Y++ # YYYY-Mmm-DD+ date-format %Y-%h-%d++ # M/D/YYYY HH:MM AM some other junk+ # Note the time and junk must be fully parsed, though only the date is used.+ date-format %-m/%-d/%Y %l:%M %p some other junk++ For the supported strptime syntax, see:+ https://hackage.haskell.org/package/time/docs/Data-Time-For-+ mat.html#v:formatTime++ decimal-mark+ decimal-mark .++ or:++ decimal-mark ,++ hledger automatically accepts either period or comma as a decimal mark+ when parsing numbers (cf Amounts). However if any numbers in the CSV+ contain digit group marks, such as thousand-separating commas, you+ should declare the decimal mark explicitly with this rule, to avoid+ misparsed numbers.++ newest-first+ hledger always sorts the generated transactions by date. Transactions+ on the same date should appear in the same order as their CSV records,+ as hledger can usually auto-detect whether the CSV's normal order is+ oldest first or newest first. But if all of the following are true:++ o the CSV might sometimes contain just one day of data (all records+ having the same date)++ o the CSV records are normally in reverse chronological order (newest+ at the top)++ o and you care about preserving the order of same-day transactions++ then, you should add the newest-first rule as a hint. Eg:++ # tell hledger explicitly that the CSV is normally newest first+ newest-first++ include+ include RULESFILE++ This includes the contents of another CSV rules file at this point.+ RULESFILE is an absolute file path or a path relative to the current+ file's directory. This can be useful for sharing common rules between+ several rules files, eg:++ # someaccount.csv.rules++ ## someaccount-specific rules+ fields date,description,amount+ account1 assets:someaccount+ account2 expenses:misc++ ## common rules+ include categorisation.rules++ balance-type+ Balance assertions generated by assigning to balanceN are of the simple+ = type by default, which is a single-commodity, subaccount-excluding+ assertion. You may find the subaccount-including variants more useful,+ eg if you have created some virtual subaccounts of checking to help+ with budgeting. You can select a different type of assertion with the+ balance-type rule:++ # balance assertions will consider all commodities and all subaccounts+ balance-type ==*++ Here are the balance assertion types for quick reference:++ = single commodity, exclude subaccounts+ =* single commodity, include subaccounts+ == multi commodity, exclude subaccounts+ ==* multi commodity, include subaccounts++ Tips+ Rapid feedback+ It's a good idea to get rapid feedback while creating/troubleshooting+ CSV rules. Here's a good way, using entr from http://eradman.com/entr-+ project :++ $ ls foo.csv* | entr bash -c 'echo ----; hledger -f foo.csv print desc:SOMEDESC'++ A desc: query (eg) is used to select just one, or a few, transactions+ of interest. "bash -c" is used to run multiple commands, so we can+ echo a separator each time the command re-runs, making it easier to+ read the output.++ Valid CSV+ hledger accepts CSV conforming to RFC 4180. When CSV values are+ enclosed in quotes, note:++ o they must be double quotes (not single quotes)++ o spaces outside the quotes are not allowed++ File Extension+ To help hledger identify the format and show the right error messages,+ CSV/SSV/TSV files should normally be named with a .csv, .ssv or .tsv+ filename extension. Or, the file path should be prefixed with csv:,+ ssv: or tsv:. Eg:++ $ hledger -f foo.ssv print++ or:++ $ cat foo | hledger -f ssv:- foo++ You can override the file extension with a separator rule if needed.+ See also: Input files in the hledger manual.++ Reading multiple CSV files+ If you use multiple -f options to read multiple CSV files at once,+ hledger will look for a correspondingly-named rules file for each CSV+ file. But if you use the --rules-file option, that rules file will be+ used for all the CSV files.++ Valid transactions+ After reading a CSV file, hledger post-processes and validates the gen-+ erated journal entries as it would for a journal file - balancing them,+ applying balance assignments, and canonicalising amount styles. Any+ errors at this stage will be reported in the usual way, displaying the+ problem entry.++ There is one exception: balance assertions, if you have generated them,+ will not be checked, since normally these will work only when the CSV+ data is part of the main journal. If you do need to check balance+ assertions generated from CSV right away, pipe into another hledger:++ $ hledger -f file.csv print | hledger -f- print++ Deduplicating, importing+ When you download a CSV file periodically, eg to get your latest bank+ transactions, the new file may overlap with the old one, containing+ some of the same records.++ The import command will (a) detect the new transactions, and (b) append+ just those transactions to your main journal. It is idempotent, so you+ don't have to remember how many times you ran it or with which version+ of the CSV. (It keeps state in a hidden .latest.FILE.csv file.) This+ is the easiest way to import CSV data. Eg:++ # download the latest CSV files, then run this command.+ # Note, no -f flags needed here.+ $ hledger import *.csv [--dry]++ This method works for most CSV files. (Where records have a stable+ chronological order, and new records appear only at the new end.)++ A number of other tools and workflows, hledger-specific and otherwise,+ exist for converting, deduplicating, classifying and managing CSV data.+ See:++ o https://hledger.org -> sidebar -> real world setups++ o https://plaintextaccounting.org -> data import/conversion++ Setting amounts+ Some tips on using the amount-setting rules discussed above.++ Here are the ways to set a posting's amount:++ 1. If the CSV has a single amount field:+ Assign (via a fields list or a field assignment) to amountN. This sets+ the Nth posting's amount. N is usually 1 or 2 but can go up to 99.++ 2. If the CSV has separate Debit and Credit amount fields:+ Assign to amountN-in and amountN-out. This sets posting N's amount to+ whichever of these has a non-zero value, guessing an appropriate sign.++ o If hledger guesses the wrong sign:+ Prepend a minus sign to flip it. Eg:++ fields date, description, amount-in, amount-out+ amount-out -%amount-out++ o If both fields contain a non-zero value:+ The amountN-in/amountN-out rules require that each CSV record has a+ non-zero value in exactly one of the two fields, so that hledger+ knows which to choose. So these would all be rejected:++ "", ""+ "0", "0"+ "1", "none"++ If your CSV has amount values like this, use conditional rules+ instead. For example, to make hledger to choose the value con-+ taining non-zero digits:++ fields date, description, in, out+ if %in [1-9]+ amount1 %in+ if %out [1-9]+ amount1 %out++ 3. Using the old numberless syntax:+ Assign to amount (or to amount-in and amount-out). This sets posting+ 1's and posting 2's amounts (and converts posting 2's amount to cost).+ This is supported for backwards compatibility (and occasional conve-+ nience).++ 4. If the CSV has the balance instead of the transaction amount:+ Assign to balanceN, which sets posting N's amount indirectly via a bal-+ ance assignment. (Old syntax: balance, equivalent to balance1.)++ o If hledger guesses the wrong default account name:+ When setting the amount via balance assertion, hledger may guess+ the wrong default account name. So, set the account name explic-+ itly, eg:++ fields date, description, balance1+ account1 assets:checking++ Amount signs+ There is some special handling for amount signs, to simplify parsing+ and sign-flipping:++ o If an amount value begins with a plus sign:+ that will be removed: +AMT becomes AMT++ o If an amount value is parenthesised:+ it will be de-parenthesised and sign-flipped: (AMT) becomes -AMT++ o If an amount value has two minus signs (or two sets of parentheses,+ or a minus sign and parentheses):+ they cancel out and will be removed: --AMT or -(AMT) becomes AMT++ o If an amount value contains just a sign (or just a set of parenthe-+ ses):+ that is removed, making it an empty value. "+" or "-" or "()" becomes+ "".++ Setting currency/commodity+ If the currency/commodity symbol is included in the CSV's amount+ field(s):++ 2020-01-01,foo,$123.00++ you don't have to do anything special for the commodity symbol, it will+ be assigned as part of the amount. Eg:++ fields date,description,amount++ 2020-01-01 foo+ expenses:unknown $123.00+ income:unknown $-123.00++ If the currency is provided as a separate CSV field:++ 2020-01-01,foo,USD,123.00++ You can assign that to the currency pseudo-field, which has the special+ effect of prepending itself to every amount in the transaction (on the+ left, with no separating space):++ fields date,description,currency,amount++ 2020-01-01 foo+ expenses:unknown USD123.00+ income:unknown USD-123.00++ Or, you can use a field assignment to construct the amount yourself,+ with more control. Eg to put the symbol on the right, and separated by+ a space:++ fields date,description,cur,amt+ amount %amt %cur++ 2020-01-01 foo+ expenses:unknown 123.00 USD+ income:unknown -123.00 USD++ Note we used a temporary field name (cur) that is not currency - that+ would trigger the prepending effect, which we don't want here.++ Amount decimal places+ Like amounts in a journal file, the amounts generated by CSV rules like+ amount1 influence commodity display styles, such as the number of deci-+ mal places displayed in reports.++ The original amounts as written in the CSV file do not affect display+ style (because we don't yet reliably know their commodity).++ Referencing other fields+ In field assignments, you can interpolate only CSV fields, not hledger+ fields. In the example below, there's both a CSV field and a hledger+ field named amount1, but %amount1 always means the CSV field, not the+ hledger field:++ # Name the third CSV field "amount1"+ fields date,description,amount1++ # Set hledger's amount1 to the CSV amount1 field followed by USD+ amount1 %amount1 USD++ # Set comment to the CSV amount1 (not the amount1 assigned above)+ comment %amount1++ Here, since there's no CSV amount1 field, %amount1 will produce a lit-+ eral "amount1":++ fields date,description,csvamount+ amount1 %csvamount USD+ # Can't interpolate amount1 here+ comment %amount1++ When there are multiple field assignments to the same hledger field,+ only the last one takes effect. Here, comment's value will be be B, or+ C if "something" is matched, but never A:++ comment A+ comment B+ if something+ comment C++ How CSV rules are evaluated+ Here's how to think of CSV rules being evaluated (if you really need+ to). First,++ o include - all includes are inlined, from top to bottom, depth first.+ (At each include point the file is inlined and scanned for further+ includes, recursively, before proceeding.)++ Then "global" rules are evaluated, top to bottom. If a rule is+ repeated, the last one wins:++ o skip (at top level)++ o date-format++ o newest-first++ o fields - names the CSV fields, optionally sets up initial assignments+ to hledger fields++ Then for each CSV record in turn:++ o test all if blocks. If any of them contain a end rule, skip all+ remaining CSV records. Otherwise if any of them contain a skip rule,+ skip that many CSV records. If there are multiple matched skip+ rules, the first one wins.++ o collect all field assignments at top level and in matched if blocks.+ When there are multiple assignments for a field, keep only the last+ one.++ o compute a value for each hledger field - either the one that was+ assigned to it (and interpolate the %CSVFIELDNAME references), or a+ default++ o generate a synthetic hledger transaction from these values.++ This is all part of the CSV reader, one of several readers hledger can+ use to parse input files. When all files have been read successfully,+ the transactions are passed as input to whichever hledger command the+ user specified.++TIMECLOCK FORMAT+ The time logging format of timeclock.el, as read by hledger.++ hledger can read time logs in timeclock format. As with Ledger, these+ are (a subset of) timeclock.el's format, containing clock-in and clock-+ out entries as in the example below. The date is a simple date. The+ time format is HH:MM[:SS][+-ZZZZ]. Seconds and timezone are optional.+ The timezone, if present, must be four digits and is ignored (currently+ the time is always interpreted as a local time).++ i 2015/03/30 09:00:00 some:account name optional description after two spaces+ o 2015/03/30 09:20:00+ i 2015/03/31 22:21:45 another account+ o 2015/04/01 02:00:34++ hledger treats each clock-in/clock-out pair as a transaction posting+ some number of hours to an account. Or if the session spans more than+ one day, it is split into several transactions, one for each day. For+ the above time log, hledger print generates these journal entries:++ $ hledger -f t.timeclock print+ 2015-03-30 * optional description after two spaces+ (some:account name) 0.33h++ 2015-03-31 * 22:21-23:59+ (another account) 1.64h++ 2015-04-01 * 00:00-02:00+ (another account) 2.01h++ Here is a sample.timeclock to download and some queries to try:++ $ hledger -f sample.timeclock balance # current time balances+ $ hledger -f sample.timeclock register -p 2009/3 # sessions in march 2009+ $ hledger -f sample.timeclock register -p weekly --depth 1 --empty # time summary by week++ To generate time logs, ie to clock in and clock out, you could:++ o use emacs and the built-in timeclock.el, or the extended timeclock-+ x.el and perhaps the extras in ledgerutils.el++ o at the command line, use these bash aliases: shell alias ti="echo+ i `date '+%Y-%m-%d %H:%M:%S'` \$* >>$TIMELOG" alias to="echo o+ `date '+%Y-%m-%d %H:%M:%S'` >>$TIMELOG"++ o or use the old ti and to scripts in the ledger 2.x repository. These+ rely on a "timeclock" executable which I think is just the ledger 2+ executable renamed.++TIMEDOT FORMAT+ hledger's human-friendly time logging format.++ Timedot is a plain text format for logging dated, categorised quanti-+ ties (of time, usually), supported by hledger. It is convenient for+ approximate and retroactive time logging, eg when the real-time clock-+ in/out required with a timeclock file is too precise or too interrup-+ tive. It can be formatted like a bar chart, making clear at a glance+ where time was spent.++ Though called "timedot", this format is read by hledger as commodity-+ less quantities, so it could be used to represent dated quantities+ other than time. In the docs below we'll assume it's time.++ A timedot file contains a series of day entries. A day entry begins+ with a non-indented hledger-style simple date (Y-M-D, Y/M/D, Y.M.D..)+ Any additional text on the same line is used as a transaction descrip-+ tion for this day.++ This is followed by optionally-indented timelog items for that day, one+ per line. Each timelog item is a note, usually a+ hledger:style:account:name representing a time category, followed by+ two or more spaces, and a quantity. Each timelog item generates a+ hledger transaction.++ Quantities can be written as:++ o dots: a sequence of dots (.) representing quarter hours. Spaces may+ optionally be used for grouping. Eg: .... ..++ o an integral or decimal number, representing hours. Eg: 1.5++ o an integral or decimal number immediately followed by a unit symbol+ s, m, h, d, w, mo, or y, representing seconds, minutes, hours, days+ weeks, months or years respectively. Eg: 90m. The following equiva-+ lencies are assumed, currently: 1m = 60s, 1h = 60m, 1d = 24h, 1w =+ 7d, 1mo = 30d, 1y=365d.++ There is some flexibility allowing notes and todo lists to be kept+ right in the time log, if needed:++ o Blank lines and lines beginning with # or ; are ignored.++ o Lines not ending with a double-space and quantity are parsed as items+ taking no time, which will not appear in balance reports by default.+ (Add -E to see them.)++ o Org mode headlines (lines beginning with one or more * followed by a+ space) can be used as date lines or timelog items (the stars are+ ignored). Also all org headlines before the first date line are+ ignored. This means org users can manage their timelog as an org+ outline (eg using org-mode/orgstruct-mode in Emacs), for organisa-+ tion, faster navigation, controlling visibility etc.++ Examples:++ # on this day, 6h was spent on client work, 1.5h on haskell FOSS work, etc.+ 2016/2/1+ inc:client1 .... .... .... .... .... ....+ fos:haskell .... ..+ biz:research .++ 2016/2/2+ inc:client1 .... ....+ biz:research .++ 2016/2/3+ inc:client1 4+ fos:hledger 3+ biz:research 1++ * Time log+ ** 2020-01-01+ *** adm:time .+ *** adm:finance .++ * 2020 Work Diary+ ** Q1+ *** 2020-02-29+ **** DONE+ 0700 yoga+ **** UNPLANNED+ **** BEGUN+ hom:chores+ cleaning ...+ water plants+ outdoor - one full watering can+ indoor - light watering+ **** TODO+ adm:planning: trip+ *** LATER++ Reporting:++ $ hledger -f t.timedot print date:2016/2/2+ 2016-02-02 *+ (inc:client1) 2.00++ 2016-02-02 *+ (biz:research) 0.25++ $ hledger -f t.timedot bal --daily --tree+ Balance changes in 2016-02-01-2016-02-03:++ || 2016-02-01d 2016-02-02d 2016-02-03d+ ============++========================================+ biz || 0.25 0.25 1.00+ research || 0.25 0.25 1.00+ fos || 1.50 0 3.00+ haskell || 1.50 0 0+ hledger || 0 0 3.00+ inc || 6.00 2.00 4.00+ client1 || 6.00 2.00 4.00+ ------------++----------------------------------------+ || 7.75 2.25 8.00++ I prefer to use period for separating account components. We can make+ this work with an account alias:++ 2016/2/4+ fos.hledger.timedot 4+ fos.ledger ..++ $ hledger -f t.timedot --alias /\\./=: bal date:2016/2/4 --tree+ 4.50 fos+ 4.00 hledger:timedot+ 0.50 ledger+ --------------------+ 4.50++ Here is a sample.timedot.++COMMON TASKS+ Here are some quick examples of how to do some basic tasks with+ hledger. For more details, see the reference section below, the+ hledger_journal(5) manual, or the more extensive docs at+ https://hledger.org.++ Getting help+ $ hledger # show available commands+ $ hledger --help # show common options+ $ hledger CMD --help # show common and command options, and command help+ $ hledger help # show available manuals/topics+ $ hledger help hledger # show hledger manual as info/man/text (auto-chosen)+ $ hledger help journal --man # show the journal manual as a man page+ $ hledger help --help # show more detailed help for the help command++ Find more docs, chat, mail list, reddit, issue tracker:+ https://hledger.org#help-feedback++ Constructing command lines+ hledger has an extensive and powerful command line interface. We+ strive to keep it simple and ergonomic, but you may run into one of the+ confusing real world details described in OPTIONS, below. If that hap-+ pens, here are some tips that may help:++ o command-specific options must go after the command (it's fine to put+ all options there) (hledger CMD OPTS ARGS)++ o running add-on executables directly simplifies command line parsing+ (hledger-ui OPTS ARGS)++ o enclose "problematic" args in single quotes++ o if needed, also add a backslash to hide regular expression metachar-+ acters from the shell++ o to see how a misbehaving command is being parsed, add --debug=2.++ Starting a journal file+ hledger looks for your accounting data in a journal file,+ $HOME/.hledger.journal by default:++ $ hledger stats+ The hledger journal file "/Users/simon/.hledger.journal" was not found.+ Please create it first, eg with "hledger add" or a text editor.+ Or, specify an existing journal file with -f or LEDGER_FILE.++ You can override this by setting the LEDGER_FILE environment variable.+ It's a good practice to keep this important file under version control,+ and to start a new file each year. So you could do something like+ this:++ $ mkdir ~/finance+ $ cd ~/finance+ $ git init+ Initialized empty Git repository in /Users/simon/finance/.git/+ $ touch 2020.journal+ $ echo "export LEDGER_FILE=$HOME/finance/2020.journal" >> ~/.bashrc+ $ source ~/.bashrc+ $ hledger stats+ Main file : /Users/simon/finance/2020.journal+ Included files :+ Transactions span : to (0 days)+ Last transaction : none+ Transactions : 0 (0.0 per day)+ Transactions last 30 days: 0 (0.0 per day)+ Transactions last 7 days : 0 (0.0 per day)+ Payees/descriptions : 0+ Accounts : 0 (depth 0)+ Commodities : 0 ()+ Market prices : 0 ()++ Setting opening balances+ Pick a starting date for which you can look up the balances of some+ real-world assets (bank accounts, wallet..) and liabilities (credit+ cards..).++ To avoid a lot of data entry, you may want to start with just one or+ two accounts, like your checking account or cash wallet; and pick a+ recent starting date, like today or the start of the week. You can+ always come back later and add more accounts and older transactions, eg+ going back to january 1st.++ Add an opening balances transaction to the journal, declaring the bal-+ ances on this date. Here are two ways to do it:++ o The first way: open the journal in any text editor and save an entry+ like this:++ 2020-01-01 * opening balances+ assets:bank:checking $1000 = $1000+ assets:bank:savings $2000 = $2000+ assets:cash $100 = $100+ liabilities:creditcard $-50 = $-50+ equity:opening/closing balances++ These are start-of-day balances, ie whatever was in the account at+ the end of the previous day.++ The * after the date is an optional status flag. Here it means+ "cleared & confirmed".++ The currency symbols are optional, but usually a good idea as you'll+ be dealing with multiple currencies sooner or later.++ The = amounts are optional balance assertions, providing extra error+ checking.++ o The second way: run hledger add and follow the prompts to record a+ similar transaction:++ $ hledger add+ Adding transactions to journal file /Users/simon/finance/2020.journal+ Any command line arguments will be used as defaults.+ Use tab key to complete, readline keys to edit, enter to accept defaults.+ An optional (CODE) may follow transaction dates.+ An optional ; COMMENT may follow descriptions or amounts.+ If you make a mistake, enter < at any prompt to go one step backward.+ To end a transaction, enter . when prompted.+ To quit, enter . at a date prompt or press control-d or control-c.+ Date [2020-02-07]: 2020-01-01+ Description: * opening balances+ Account 1: assets:bank:checking+ Amount 1: $1000+ Account 2: assets:bank:savings+ Amount 2 [$-1000]: $2000+ Account 3: assets:cash+ Amount 3 [$-3000]: $100+ Account 4: liabilities:creditcard+ Amount 4 [$-3100]: $-50+ Account 5: equity:opening/closing balances+ Amount 5 [$-3050]:+ Account 6 (or . or enter to finish this transaction): .+ 2020-01-01 * opening balances+ assets:bank:checking $1000+ assets:bank:savings $2000+ assets:cash $100+ liabilities:creditcard $-50+ equity:opening/closing balances $-3050++ Save this transaction to the journal ? [y]:+ Saved.+ Starting the next transaction (. or ctrl-D/ctrl-C to quit)+ Date [2020-01-01]: .++ If you're using version control, this could be a good time to commit+ the journal. Eg:++ $ git commit -m 'initial balances' 2020.journal++ Recording transactions+ As you spend or receive money, you can record these transactions using+ one of the methods above (text editor, hledger add) or by using the+ hledger-iadd or hledger-web add-ons, or by using the import command to+ convert CSV data downloaded from your bank.++ Here are some simple transactions, see the hledger_journal(5) manual+ and hledger.org for more ideas:++ 2020/1/10 * gift received+ assets:cash $20+ income:gifts++ 2020.1.12 * farmers market+ expenses:food $13+ assets:cash++ 2020-01-15 paycheck+ income:salary+ assets:bank:checking $1000++ Reconciling+ Periodically you should reconcile - compare your hledger-reported bal-+ ances against external sources of truth, like bank statements or your+ bank's website - to be sure that your ledger accurately represents the+ real-world balances (and, that the real-world institutions have not+ made a mistake!). This gets easy and fast with (1) practice and (2)+ frequency. If you do it daily, it can take 2-10 minutes. If you let+ it pile up, expect it to take longer as you hunt down errors and dis-+ crepancies.++ A typical workflow:++ 1. Reconcile cash. Count what's in your wallet. Compare with what+ hledger reports (hledger bal cash). If they are different, try to+ remember the missing transaction, or look for the error in the+ already-recorded transactions. A register report can be helpful+ (hledger reg cash). If you can't find the error, add an adjustment+ transaction. Eg if you have $105 after the above, and can't explain+ the missing $2, it could be:++ 2020-01-16 * adjust cash+ assets:cash $-2 = $105+ expenses:misc++ 2. Reconcile checking. Log in to your bank's website. Compare today's+ (cleared) balance with hledger's cleared balance (hledger bal check-+ ing -C). If they are different, track down the error or record the+ missing transaction(s) or add an adjustment transaction, similar to+ the above. Unlike the cash case, you can usually compare the trans-+ action history and running balance from your bank with the one+ reported by hledger reg checking -C. This will be easier if you+ generally record transaction dates quite similar to your bank's+ clearing dates.++ 3. Repeat for other asset/liability accounts.++ Tip: instead of the register command, use hledger-ui to see a live-+ updating register while you edit the journal: hledger-ui --watch --reg-+ ister checking -C++ After reconciling, it could be a good time to mark the reconciled+ transactions' status as "cleared and confirmed", if you want to track+ that, by adding the * marker. Eg in the paycheck transaction above,+ insert * between 2020-01-15 and paycheck++ If you're using version control, this can be another good time to com-+ mit:++ $ git commit -m 'txns' 2020.journal++ Reporting+ Here are some basic reports.++ Show all transactions:++ $ hledger print+ 2020-01-01 * opening balances+ assets:bank:checking $1000+ assets:bank:savings $2000+ assets:cash $100+ liabilities:creditcard $-50+ equity:opening/closing balances $-3050++ 2020-01-10 * gift received+ assets:cash $20+ income:gifts++ 2020-01-12 * farmers market+ expenses:food $13+ assets:cash++ 2020-01-15 * paycheck+ income:salary+ assets:bank:checking $1000++ 2020-01-16 * adjust cash+ assets:cash $-2 = $105+ expenses:misc++ Show account names, and their hierarchy:++ $ hledger accounts --tree+ assets+ bank+ checking+ savings+ cash+ equity+ opening/closing balances+ expenses+ food+ misc+ income+ gifts+ salary+ liabilities+ creditcard++ Show all account totals:++ $ hledger balance+ $4105 assets+ $4000 bank+ $2000 checking+ $2000 savings+ $105 cash+ $-3050 equity:opening/closing balances+ $15 expenses+ $13 food+ $2 misc+ $-1020 income+ $-20 gifts+ $-1000 salary+ $-50 liabilities:creditcard+ --------------------+ 0++ Show only asset and liability balances, as a flat list, limited to+ depth 2:++ $ hledger bal assets liabilities --flat -2+ $4000 assets:bank+ $105 assets:cash+ $-50 liabilities:creditcard+ --------------------+ $4055++ Show the same thing without negative numbers, formatted as a simple+ balance sheet:++ $ hledger bs --flat -2+ Balance Sheet 2020-01-16++ || 2020-01-16+ ========================++============+ Assets ||+ ------------------------++------------+ assets:bank || $4000+ assets:cash || $105+ ------------------------++------------+ || $4105+ ========================++============+ Liabilities ||+ ------------------------++------------+ liabilities:creditcard || $50+ ------------------------++------------+ || $50+ ========================++============+ Net: || $4055++ The final total is your "net worth" on the end date. (Or use bse for a+ full balance sheet with equity.)++ Show income and expense totals, formatted as an income statement:++ hledger is+ Income Statement 2020-01-01-2020-01-16++ || 2020-01-01-2020-01-16+ ===============++=======================+ Revenues ||+ ---------------++-----------------------+ income:gifts || $20+ income:salary || $1000+ ---------------++-----------------------+ || $1020+ ===============++=======================+ Expenses ||+ ---------------++-----------------------+ expenses:food || $13+ expenses:misc || $2+ ---------------++-----------------------+ || $15+ ===============++=======================+ Net: || $1005++ The final total is your net income during this period.++ Show transactions affecting your wallet, with running total:++ $ hledger register cash+ 2020-01-01 opening balances assets:cash $100 $100+ 2020-01-10 gift received assets:cash $20 $120+ 2020-01-12 farmers market assets:cash $-13 $107+ 2020-01-16 adjust cash assets:cash $-2 $105++ Show weekly posting counts as a bar chart:++ $ hledger activity -W+ 2019-12-30 *****+ 2020-01-06 ****+ 2020-01-13 ****++ Migrating to a new file+ At the end of the year, you may want to continue your journal in a new+ file, so that old transactions don't slow down or clutter your reports,+ and to help ensure the integrity of your accounting history. See the+ close command.++ If using version control, don't forget to git add the new file.++LIMITATIONS+ The need to precede add-on command options with -- when invoked from+ hledger is awkward.++ When input data contains non-ascii characters, a suitable system locale+ must be configured (or there will be an unhelpful error). Eg on POSIX,+ set LANG to something other than C.++ In a Microsoft Windows CMD window, non-ascii characters and colours are+ not supported.++ On Windows, non-ascii characters may not display correctly when running+ a hledger built in CMD in MSYS/CYGWIN, or vice-versa.++ In a Cygwin/MSYS/Mintty window, the tab key is not supported in hledger+ add.++ Not all of Ledger's journal file syntax is supported. See file format+ differences.++ On large data files, hledger is slower and uses more memory than+ Ledger.++TROUBLESHOOTING+ Here are some issues you might encounter when you run hledger (and+ remember you can also seek help from the IRC channel, mail list or bug+ tracker):++ Successfully installed, but "No command 'hledger' found"+ stack and cabal install binaries into a special directory, which should+ be added to your PATH environment variable. Eg on unix-like systems,+ that is ~/.local/bin and ~/.cabal/bin respectively.++ I set a custom LEDGER_FILE, but hledger is still using the default file+ LEDGER_FILE should be a real environment variable, not just a shell+ variable. The command env | grep LEDGER_FILE should show it. You may+ need to use export. Here's an explanation.++ Getting errors like "Illegal byte sequence" or "Invalid or incomplete+ multibyte or wide character" or "commitAndReleaseBuffer: invalid argu-+ ment (invalid character)"+ Programs compiled with GHC (hledger, haskell build tools, etc.) need to+ have a UTF-8-aware locale configured in the environment, otherwise they+ will fail with these kinds of errors when they encounter non-ascii+ characters.++ To fix it, set the LANG environment variable to some locale which sup-+ ports UTF-8. The locale you choose must be installed on your system.++ Here's an example of setting LANG temporarily, on Ubuntu GNU/Linux:++ $ file my.journal+ my.journal: UTF-8 Unicode text # the file is UTF8-encoded+ $ echo $LANG+ C # LANG is set to the default locale, which does not support UTF8+ $ locale -a # which locales are installed ?+ C+ en_US.utf8 # here's a UTF8-aware one we can use+ POSIX+ $ LANG=en_US.utf8 hledger -f my.journal print # ensure it is used for this command++ If available, C.UTF-8 will also work. If your preferred locale isn't+ listed by locale -a, you might need to install it. Eg on+ Ubuntu/Debian:++ $ apt-get install language-pack-fr+ $ locale -a+ C+ en_US.utf8+ fr_BE.utf8+ fr_CA.utf8+ fr_CH.utf8+ fr_FR.utf8+ fr_LU.utf8+ POSIX+ $ LANG=fr_FR.utf8 hledger -f my.journal print++ Here's how you could set it permanently, if you use a bash shell:++ $ echo "export LANG=en_US.utf8" >>~/.bash_profile+ $ bash --login++ Exact spelling and capitalisation may be important. Note the differ-+ ence on MacOS (UTF-8, not utf8). Some platforms (eg ubuntu) allow+ variant spellings, but others (eg macos) require it to be exact:++ $ locale -a | grep -iE en_us.*utf+ en_US.UTF-8+ $ LANG=en_US.UTF-8 hledger -f my.journal print++++REPORTING BUGS+ Report bugs at http://bugs.hledger.org (or on the #hledger IRC channel+ or hledger mail list)+++AUTHORS+ Simon Michael <simon@joyful.com> and contributors+++COPYRIGHT+ Copyright (C) 2007-2020 Simon Michael.+ Released under GNU GPL v3 or later.+++SEE ALSO+ hledger(1), hledger-ui(1), hledger-web(1), ledger(1)++++hledger-1.21 December 2020 HLEDGER(1)
− embeddedfiles/hledger_csv.5
@@ -1,1300 +0,0 @@-.\"t--.TH "HLEDGER_CSV" "5" "December 2020" "hledger-lib-1.20.4 " "hledger User Manuals"----.SH NAME-.PP-How hledger reads CSV data, and the CSV rules file format.-.SH DESCRIPTION-.PP-hledger can read CSV files (Character Separated Value - usually comma,-semicolon, or tab) containing dated records as if they were journal-files, automatically converting each CSV record into a transaction.-.PP-(To learn about \f[I]writing\f[R] CSV, see CSV output.)-.PP-We describe each CSV file\[aq]s format with a corresponding \f[I]rules-file\f[R].-By default this is named like the CSV file with a \f[C].rules\f[R]-extension added.-Eg when reading \f[C]FILE.csv\f[R], hledger also looks for-\f[C]FILE.csv.rules\f[R] in the same directory as \f[C]FILE.csv\f[R].-You can specify a different rules file with the \f[C]--rules-file\f[R]-option.-If a rules file is not found, hledger will create a sample rules file,-which you\[aq]ll need to adjust.-.PP-This file contains rules describing the CSV data (header line, fields-layout, date format etc.), and how to construct hledger journal entries-(transactions) from it.-Often there will also be a list of conditional rules for categorising-transactions based on their descriptions.-Here\[aq]s an overview of the CSV rules; these are described more fully-below, after the examples:-.PP-.TS-tab(@);-lw(30.1n) lw(39.9n).-T{-\f[B]\f[CB]skip\f[B]\f[R]-T}@T{-skip one or more header lines or matched CSV records-T}-T{-\f[B]\f[CB]fields\f[B]\f[R]-T}@T{-name CSV fields, assign them to hledger fields-T}-T{-\f[B]field assignment\f[R]-T}@T{-assign a value to one hledger field, with interpolation-T}-T{-\f[B]\f[CB]separator\f[B]\f[R]-T}@T{-a custom field separator-T}-T{-\f[B]\f[CB]if\f[B] block\f[R]-T}@T{-apply some rules to CSV records matched by patterns-T}-T{-\f[B]\f[CB]if\f[B] table\f[R]-T}@T{-apply some rules to CSV records matched by patterns, alternate syntax-T}-T{-\f[B]\f[CB]end\f[B]\f[R]-T}@T{-skip the remaining CSV records-T}-T{-\f[B]\f[CB]date-format\f[B]\f[R]-T}@T{-how to parse dates in CSV records-T}-T{-\f[B]\f[CB]decimal-mark\f[B]\f[R]-T}@T{-the decimal mark used in CSV amounts, if ambiguous-T}-T{-\f[B]\f[CB]newest-first\f[B]\f[R]-T}@T{-disambiguate record order when there\[aq]s only one date-T}-T{-\f[B]\f[CB]include\f[B]\f[R]-T}@T{-inline another CSV rules file-T}-T{-\f[B]\f[CB]balance-type\f[B]\f[R]-T}@T{-choose which type of balance assignments to use-T}-.TE-.PP-Note, for best error messages when reading CSV files, use a-\f[C].csv\f[R], \f[C].tsv\f[R] or \f[C].ssv\f[R] file extension or file-prefix - see File Extension below.-.PP-There\[aq]s an introductory Convert CSV files tutorial on hledger.org.-.SH EXAMPLES-.PP-Here are some sample hledger CSV rules files.-See also the full collection at:-.PD 0-.P-.PD-https://github.com/simonmichael/hledger/tree/master/examples/csv-.SS Basic-.PP-At minimum, the rules file must identify the date and amount fields, and-often it also specifies the date format and how many header lines there-are.-Here\[aq]s a simple CSV file and a rules file for it:-.IP-.nf-\f[C]-Date, Description, Id, Amount-12/11/2019, Foo, 123, 10.23-\f[R]-.fi-.IP-.nf-\f[C]-# basic.csv.rules-skip 1-fields date, description, _, amount-date-format %d/%m/%Y-\f[R]-.fi-.IP-.nf-\f[C]-$ hledger print -f basic.csv-2019-11-12 Foo- expenses:unknown 10.23- income:unknown -10.23-\f[R]-.fi-.PP-Default account names are chosen, since we didn\[aq]t set them.-.SS Bank of Ireland-.PP-Here\[aq]s a CSV with two amount fields (Debit and Credit), and a-balance field, which we can use to add balance assertions, which is not-necessary but provides extra error checking:-.IP-.nf-\f[C]-Date,Details,Debit,Credit,Balance-07/12/2012,LODGMENT 529898,,10.0,131.21-07/12/2012,PAYMENT,5,,126-\f[R]-.fi-.IP-.nf-\f[C]-# bankofireland-checking.csv.rules--# skip the header line-skip--# name the csv fields, and assign some of them as journal entry fields-fields date, description, amount-out, amount-in, balance--# We generate balance assertions by assigning to \[dq]balance\[dq]-# above, but you may sometimes need to remove these because:-#-# - the CSV balance differs from the true balance,-# by up to 0.0000000000005 in my experience-#-# - it is sometimes calculated based on non-chronological ordering,-# eg when multiple transactions clear on the same day--# date is in UK/Ireland format-date-format %d/%m/%Y--# set the currency-currency EUR--# set the base account for all txns-account1 assets:bank:boi:checking-\f[R]-.fi-.IP-.nf-\f[C]-$ hledger -f bankofireland-checking.csv print-2012-12-07 LODGMENT 529898- assets:bank:boi:checking EUR10.0 = EUR131.2- income:unknown EUR-10.0--2012-12-07 PAYMENT- assets:bank:boi:checking EUR-5.0 = EUR126.0- expenses:unknown EUR5.0-\f[R]-.fi-.PP-The balance assertions don\[aq]t raise an error above, because we\[aq]re-reading directly from CSV, but they will be checked if these entries are-imported into a journal file.-.SS Amazon-.PP-Here we convert amazon.com order history, and use an if block to-generate a third posting if there\[aq]s a fee.-(In practice you\[aq]d probably get this data from your bank instead,-but it\[aq]s an example.)-.IP-.nf-\f[C]-\[dq]Date\[dq],\[dq]Type\[dq],\[dq]To/From\[dq],\[dq]Name\[dq],\[dq]Status\[dq],\[dq]Amount\[dq],\[dq]Fees\[dq],\[dq]Transaction ID\[dq]-\[dq]Jul 29, 2012\[dq],\[dq]Payment\[dq],\[dq]To\[dq],\[dq]Foo.\[dq],\[dq]Completed\[dq],\[dq]$20.00\[dq],\[dq]$0.00\[dq],\[dq]16000000000000DGLNJPI1P9B8DKPVHL\[dq]-\[dq]Jul 30, 2012\[dq],\[dq]Payment\[dq],\[dq]To\[dq],\[dq]Adapteva, Inc.\[dq],\[dq]Completed\[dq],\[dq]$25.00\[dq],\[dq]$1.00\[dq],\[dq]17LA58JSKRD4HDGLNJPI1P9B8DKPVHL\[dq]-\f[R]-.fi-.IP-.nf-\f[C]-# amazon-orders.csv.rules--# skip one header line-skip 1--# name the csv fields, and assign the transaction\[aq]s date, amount and code.-# Avoided the \[dq]status\[dq] and \[dq]amount\[dq] hledger field names to prevent confusion.-fields date, _, toorfrom, name, amzstatus, amzamount, fees, code--# how to parse the date-date-format %b %-d, %Y--# combine two fields to make the description-description %toorfrom %name--# save the status as a tag-comment status:%amzstatus--# set the base account for all transactions-account1 assets:amazon-# leave amount1 blank so it can balance the other(s).-# I\[aq]m assuming amzamount excludes the fees, don\[aq]t remember--# set a generic account2-account2 expenses:misc-amount2 %amzamount-# and maybe refine it further:-#include categorisation.rules--# add a third posting for fees, but only if they are non-zero.-if %fees [1-9]- account3 expenses:fees- amount3 %fees-\f[R]-.fi-.IP-.nf-\f[C]-$ hledger -f amazon-orders.csv print-2012-07-29 (16000000000000DGLNJPI1P9B8DKPVHL) To Foo. ; status:Completed- assets:amazon- expenses:misc $20.00--2012-07-30 (17LA58JSKRD4HDGLNJPI1P9B8DKPVHL) To Adapteva, Inc. ; status:Completed- assets:amazon- expenses:misc $25.00- expenses:fees $1.00-\f[R]-.fi-.SS Paypal-.PP-Here\[aq]s a real-world rules file for (customised) Paypal CSV, with-some Paypal-specific rules, and a second rules file included:-.IP-.nf-\f[C]-\[dq]Date\[dq],\[dq]Time\[dq],\[dq]TimeZone\[dq],\[dq]Name\[dq],\[dq]Type\[dq],\[dq]Status\[dq],\[dq]Currency\[dq],\[dq]Gross\[dq],\[dq]Fee\[dq],\[dq]Net\[dq],\[dq]From Email Address\[dq],\[dq]To Email Address\[dq],\[dq]Transaction ID\[dq],\[dq]Item Title\[dq],\[dq]Item ID\[dq],\[dq]Reference Txn ID\[dq],\[dq]Receipt ID\[dq],\[dq]Balance\[dq],\[dq]Note\[dq]-\[dq]10/01/2019\[dq],\[dq]03:46:20\[dq],\[dq]PDT\[dq],\[dq]Calm Radio\[dq],\[dq]Subscription Payment\[dq],\[dq]Completed\[dq],\[dq]USD\[dq],\[dq]-6.99\[dq],\[dq]0.00\[dq],\[dq]-6.99\[dq],\[dq]simon\[at]joyful.com\[dq],\[dq]memberships\[at]calmradio.com\[dq],\[dq]60P57143A8206782E\[dq],\[dq]MONTHLY - $1 for the first 2 Months: Me - Order 99309. Item total: $1.00 USD first 2 months, then $6.99 / Month\[dq],\[dq]\[dq],\[dq]I-R8YLY094FJYR\[dq],\[dq]\[dq],\[dq]-6.99\[dq],\[dq]\[dq]-\[dq]10/01/2019\[dq],\[dq]03:46:20\[dq],\[dq]PDT\[dq],\[dq]\[dq],\[dq]Bank Deposit to PP Account \[dq],\[dq]Pending\[dq],\[dq]USD\[dq],\[dq]6.99\[dq],\[dq]0.00\[dq],\[dq]6.99\[dq],\[dq]\[dq],\[dq]simon\[at]joyful.com\[dq],\[dq]0TU1544T080463733\[dq],\[dq]\[dq],\[dq]\[dq],\[dq]60P57143A8206782E\[dq],\[dq]\[dq],\[dq]0.00\[dq],\[dq]\[dq]-\[dq]10/01/2019\[dq],\[dq]08:57:01\[dq],\[dq]PDT\[dq],\[dq]Patreon\[dq],\[dq]PreApproved Payment Bill User Payment\[dq],\[dq]Completed\[dq],\[dq]USD\[dq],\[dq]-7.00\[dq],\[dq]0.00\[dq],\[dq]-7.00\[dq],\[dq]simon\[at]joyful.com\[dq],\[dq]support\[at]patreon.com\[dq],\[dq]2722394R5F586712G\[dq],\[dq]Patreon* Membership\[dq],\[dq]\[dq],\[dq]B-0PG93074E7M86381M\[dq],\[dq]\[dq],\[dq]-7.00\[dq],\[dq]\[dq]-\[dq]10/01/2019\[dq],\[dq]08:57:01\[dq],\[dq]PDT\[dq],\[dq]\[dq],\[dq]Bank Deposit to PP Account \[dq],\[dq]Pending\[dq],\[dq]USD\[dq],\[dq]7.00\[dq],\[dq]0.00\[dq],\[dq]7.00\[dq],\[dq]\[dq],\[dq]simon\[at]joyful.com\[dq],\[dq]71854087RG994194F\[dq],\[dq]Patreon* Membership\[dq],\[dq]\[dq],\[dq]2722394R5F586712G\[dq],\[dq]\[dq],\[dq]0.00\[dq],\[dq]\[dq]-\[dq]10/19/2019\[dq],\[dq]03:02:12\[dq],\[dq]PDT\[dq],\[dq]Wikimedia Foundation, Inc.\[dq],\[dq]Subscription Payment\[dq],\[dq]Completed\[dq],\[dq]USD\[dq],\[dq]-2.00\[dq],\[dq]0.00\[dq],\[dq]-2.00\[dq],\[dq]simon\[at]joyful.com\[dq],\[dq]tle\[at]wikimedia.org\[dq],\[dq]K9U43044RY432050M\[dq],\[dq]Monthly donation to the Wikimedia Foundation\[dq],\[dq]\[dq],\[dq]I-R5C3YUS3285L\[dq],\[dq]\[dq],\[dq]-2.00\[dq],\[dq]\[dq]-\[dq]10/19/2019\[dq],\[dq]03:02:12\[dq],\[dq]PDT\[dq],\[dq]\[dq],\[dq]Bank Deposit to PP Account \[dq],\[dq]Pending\[dq],\[dq]USD\[dq],\[dq]2.00\[dq],\[dq]0.00\[dq],\[dq]2.00\[dq],\[dq]\[dq],\[dq]simon\[at]joyful.com\[dq],\[dq]3XJ107139A851061F\[dq],\[dq]\[dq],\[dq]\[dq],\[dq]K9U43044RY432050M\[dq],\[dq]\[dq],\[dq]0.00\[dq],\[dq]\[dq]-\[dq]10/22/2019\[dq],\[dq]05:07:06\[dq],\[dq]PDT\[dq],\[dq]Noble Benefactor\[dq],\[dq]Subscription Payment\[dq],\[dq]Completed\[dq],\[dq]USD\[dq],\[dq]10.00\[dq],\[dq]-0.59\[dq],\[dq]9.41\[dq],\[dq]noble\[at]bene.fac.tor\[dq],\[dq]simon\[at]joyful.com\[dq],\[dq]6L8L1662YP1334033\[dq],\[dq]Joyful Systems\[dq],\[dq]\[dq],\[dq]I-KC9VBGY2GWDB\[dq],\[dq]\[dq],\[dq]9.41\[dq],\[dq]\[dq]-\f[R]-.fi-.IP-.nf-\f[C]-# paypal-custom.csv.rules--# Tips:-# Export from Activity -> Statements -> Custom -> Activity download-# Suggested transaction type: \[dq]Balance affecting\[dq]-# Paypal\[aq]s default fields in 2018 were:-# \[dq]Date\[dq],\[dq]Time\[dq],\[dq]TimeZone\[dq],\[dq]Name\[dq],\[dq]Type\[dq],\[dq]Status\[dq],\[dq]Currency\[dq],\[dq]Gross\[dq],\[dq]Fee\[dq],\[dq]Net\[dq],\[dq]From Email Address\[dq],\[dq]To Email Address\[dq],\[dq]Transaction ID\[dq],\[dq]Shipping Address\[dq],\[dq]Address Status\[dq],\[dq]Item Title\[dq],\[dq]Item ID\[dq],\[dq]Shipping and Handling Amount\[dq],\[dq]Insurance Amount\[dq],\[dq]Sales Tax\[dq],\[dq]Option 1 Name\[dq],\[dq]Option 1 Value\[dq],\[dq]Option 2 Name\[dq],\[dq]Option 2 Value\[dq],\[dq]Reference Txn ID\[dq],\[dq]Invoice Number\[dq],\[dq]Custom Number\[dq],\[dq]Quantity\[dq],\[dq]Receipt ID\[dq],\[dq]Balance\[dq],\[dq]Address Line 1\[dq],\[dq]Address Line 2/District/Neighborhood\[dq],\[dq]Town/City\[dq],\[dq]State/Province/Region/County/Territory/Prefecture/Republic\[dq],\[dq]Zip/Postal Code\[dq],\[dq]Country\[dq],\[dq]Contact Phone Number\[dq],\[dq]Subject\[dq],\[dq]Note\[dq],\[dq]Country Code\[dq],\[dq]Balance Impact\[dq]-# This rules file assumes the following more detailed fields, configured in \[dq]Customize report fields\[dq]:-# \[dq]Date\[dq],\[dq]Time\[dq],\[dq]TimeZone\[dq],\[dq]Name\[dq],\[dq]Type\[dq],\[dq]Status\[dq],\[dq]Currency\[dq],\[dq]Gross\[dq],\[dq]Fee\[dq],\[dq]Net\[dq],\[dq]From Email Address\[dq],\[dq]To Email Address\[dq],\[dq]Transaction ID\[dq],\[dq]Item Title\[dq],\[dq]Item ID\[dq],\[dq]Reference Txn ID\[dq],\[dq]Receipt ID\[dq],\[dq]Balance\[dq],\[dq]Note\[dq]--fields date, time, timezone, description_, type, status_, currency, grossamount, feeamount, netamount, fromemail, toemail, code, itemtitle, itemid, referencetxnid, receiptid, balance, note--skip 1--date-format %-m/%-d/%Y--# ignore some paypal events-if-In Progress-Temporary Hold-Update to- skip--# add more fields to the description-description %description_ %itemtitle--# save some other fields as tags-comment itemid:%itemid, fromemail:%fromemail, toemail:%toemail, time:%time, type:%type, status:%status_--# convert to short currency symbols-if %currency USD- currency $-if %currency EUR- currency E-if %currency GBP- currency P--# generate postings--# the first posting will be the money leaving/entering my paypal account-# (negative means leaving my account, in all amount fields)-account1 assets:online:paypal-amount1 %netamount--# the second posting will be money sent to/received from other party-# (account2 is set below)-amount2 -%grossamount--# if there\[aq]s a fee, add a third posting for the money taken by paypal.-if %feeamount [1-9]- account3 expenses:banking:paypal- amount3 -%feeamount- comment3 business:--# choose an account for the second posting--# override the default account names:-# if the amount is positive, it\[aq]s income (a debit)-if %grossamount \[ha][\[ha]-]- account2 income:unknown-# if negative, it\[aq]s an expense (a credit)-if %grossamount \[ha]-- account2 expenses:unknown--# apply common rules for setting account2 & other tweaks-include common.rules--# apply some overrides specific to this csv--# Transfers from/to bank. These are usually marked Pending,-# which can be disregarded in this case.-if-Bank Account-Bank Deposit to PP Account- description %type for %referencetxnid %itemtitle- account2 assets:bank:wf:pchecking- account1 assets:online:paypal--# Currency conversions-if Currency Conversion- account2 equity:currency conversion-\f[R]-.fi-.IP-.nf-\f[C]-# common.rules--if-darcs-noble benefactor- account2 revenues:foss donations:darcshub- comment2 business:--if-Calm Radio- account2 expenses:online:apps--if-electronic frontier foundation-Patreon-wikimedia-Advent of Code- account2 expenses:dues--if Google- account2 expenses:online:apps- description google | music-\f[R]-.fi-.IP-.nf-\f[C]-$ hledger -f paypal-custom.csv print-2019-10-01 (60P57143A8206782E) Calm Radio MONTHLY - $1 for the first 2 Months: Me - Order 99309. Item total: $1.00 USD first 2 months, then $6.99 / Month ; itemid:, fromemail:simon\[at]joyful.com, toemail:memberships\[at]calmradio.com, time:03:46:20, type:Subscription Payment, status:Completed- assets:online:paypal $-6.99 = $-6.99- expenses:online:apps $6.99--2019-10-01 (0TU1544T080463733) Bank Deposit to PP Account for 60P57143A8206782E ; itemid:, fromemail:, toemail:simon\[at]joyful.com, time:03:46:20, type:Bank Deposit to PP Account, status:Pending- assets:online:paypal $6.99 = $0.00- assets:bank:wf:pchecking $-6.99--2019-10-01 (2722394R5F586712G) Patreon Patreon* Membership ; itemid:, fromemail:simon\[at]joyful.com, toemail:support\[at]patreon.com, time:08:57:01, type:PreApproved Payment Bill User Payment, status:Completed- assets:online:paypal $-7.00 = $-7.00- expenses:dues $7.00--2019-10-01 (71854087RG994194F) Bank Deposit to PP Account for 2722394R5F586712G Patreon* Membership ; itemid:, fromemail:, toemail:simon\[at]joyful.com, time:08:57:01, type:Bank Deposit to PP Account, status:Pending- assets:online:paypal $7.00 = $0.00- assets:bank:wf:pchecking $-7.00--2019-10-19 (K9U43044RY432050M) Wikimedia Foundation, Inc. Monthly donation to the Wikimedia Foundation ; itemid:, fromemail:simon\[at]joyful.com, toemail:tle\[at]wikimedia.org, time:03:02:12, type:Subscription Payment, status:Completed- assets:online:paypal $-2.00 = $-2.00- expenses:dues $2.00- expenses:banking:paypal ; business:--2019-10-19 (3XJ107139A851061F) Bank Deposit to PP Account for K9U43044RY432050M ; itemid:, fromemail:, toemail:simon\[at]joyful.com, time:03:02:12, type:Bank Deposit to PP Account, status:Pending- assets:online:paypal $2.00 = $0.00- assets:bank:wf:pchecking $-2.00--2019-10-22 (6L8L1662YP1334033) Noble Benefactor Joyful Systems ; itemid:, fromemail:noble\[at]bene.fac.tor, toemail:simon\[at]joyful.com, time:05:07:06, type:Subscription Payment, status:Completed- assets:online:paypal $9.41 = $9.41- revenues:foss donations:darcshub $-10.00 ; business:- expenses:banking:paypal $0.59 ; business:-\f[R]-.fi-.SH CSV RULES-.PP-The following kinds of rule can appear in the rules file, in any order.-Blank lines and lines beginning with \f[C]#\f[R] or \f[C];\f[R] are-ignored.-.SS \f[C]skip\f[R]-.IP-.nf-\f[C]-skip N-\f[R]-.fi-.PP-The word \[dq]skip\[dq] followed by a number (or no number, meaning 1)-tells hledger to ignore this many non-empty lines preceding the CSV-data.-(Empty/blank lines are skipped automatically.) You\[aq]ll need this-whenever your CSV data contains header lines.-.PP-It also has a second purpose: it can be used inside if blocks to ignore-certain CSV records (described below).-.SS \f[C]fields\f[R]-.IP-.nf-\f[C]-fields FIELDNAME1, FIELDNAME2, ...-\f[R]-.fi-.PP-A fields list (the word \[dq]fields\[dq] followed by comma-separated-field names) is the quick way to assign CSV field values to hledger-fields.-It does two things:-.IP "1." 3-it names the CSV fields.-This is optional, but can be convenient later for interpolating them.-.IP "2." 3-when you use a standard hledger field name, it assigns the CSV value to-that part of the hledger transaction.-.PP-Here\[aq]s an example that says \[dq]use the 1st, 2nd and 4th fields as-the transaction\[aq]s date, description and amount; name the last two-fields for later reference; and ignore the others\[dq]:-.IP-.nf-\f[C]-fields date, description, , amount, , , somefield, anotherfield-\f[R]-.fi-.PP-Field names may not contain whitespace.-Fields you don\[aq]t care about can be left unnamed.-Currently there must be least two items (there must be at least one-comma).-.PP-Note, always use comma in the fields list, even if your CSV uses another-separator character.-.PP-Here are the standard hledger field/pseudo-field names.-For more about the transaction parts they refer to, see the manual for-hledger\[aq]s journal format.-.SS Transaction field names-.PP-\f[C]date\f[R], \f[C]date2\f[R], \f[C]status\f[R], \f[C]code\f[R],-\f[C]description\f[R], \f[C]comment\f[R] can be used to form the-transaction\[aq]s first line.-.SS Posting field names-.SS account-.PP-\f[C]accountN\f[R], where N is 1 to 99, causes a posting to be-generated, with that account name.-.PP-Most often there are two postings, so you\[aq]ll want to set-\f[C]account1\f[R] and \f[C]account2\f[R].-Typically \f[C]account1\f[R] is associated with the CSV file, and is set-once with a top-level assignment, while \f[C]account2\f[R] is set based-on each transaction\[aq]s description, and in conditional blocks.-.PP-If a posting\[aq]s account name is left unset but its amount is set (see-below), a default account name will be chosen (like-\[dq]expenses:unknown\[dq] or \[dq]income:unknown\[dq]).-.SS amount-.PP-\f[C]amountN\f[R] sets posting N\[aq]s amount.-If the CSV uses separate fields for inflows and outflows, you can use-\f[C]amountN-in\f[R] and \f[C]amountN-out\f[R] instead.-By assigning to \f[C]amount1\f[R], \f[C]amount2\f[R], ...-etc.-you can generate anywhere from 0 to 99 postings.-.PP-There is also an older, unnumbered form of these names, suitable for-2-posting transactions, which sets both posting 1\[aq]s and (negated)-posting 2\[aq]s amount: \f[C]amount\f[R], or \f[C]amount-in\f[R] and-\f[C]amount-out\f[R].-This is still supported because it keeps pre-hledger-1.17 csv rules-files working, and because it can be more succinct, and because it-converts posting 2\[aq]s amount to cost if there\[aq]s a transaction-price, which can be useful.-.PP-If you have an existing rules file using the unnumbered form, you might-want to use the numbered form in certain conditional blocks, without-having to update and retest all the old rules.-To facilitate this, posting 1 ignores-\f[C]amount\f[R]/\f[C]amount-in\f[R]/\f[C]amount-out\f[R] if any of-\f[C]amount1\f[R]/\f[C]amount1-in\f[R]/\f[C]amount1-out\f[R] are-assigned, and posting 2 ignores them if any of-\f[C]amount2\f[R]/\f[C]amount2-in\f[R]/\f[C]amount2-out\f[R] are-assigned, avoiding conflicts.-.SS currency-.PP-If the CSV has the currency symbol in a separate field (ie, not part of-the amount field), you can use \f[C]currencyN\f[R] to prepend it to-posting N\[aq]s amount.-Or, \f[C]currency\f[R] with no number affects all postings.-.SS balance-.PP-\f[C]balanceN\f[R] sets a balance assertion amount (or if the posting-amount is left empty, a balance assignment) on posting N.-.PP-Also, for compatibility with hledger <1.17: \f[C]balance\f[R] with no-number is equivalent to \f[C]balance1\f[R].-.PP-You can adjust the type of assertion/assignment with the-\f[C]balance-type\f[R] rule (see below).-.SS comment-.PP-Finally, \f[C]commentN\f[R] sets a comment on the Nth posting.-Comments can also contain tags, as usual.-.PP-See TIPS below for more about setting amounts and currency.-.SS field assignment-.IP-.nf-\f[C]-HLEDGERFIELDNAME FIELDVALUE-\f[R]-.fi-.PP-Instead of or in addition to a fields list, you can use a \[dq]field-assignment\[dq] rule to set the value of a single hledger field, by-writing its name (any of the standard hledger field names above)-followed by a text value.-The value may contain interpolated CSV fields, referenced by their-1-based position in the CSV record (\f[C]%N\f[R]), or by the name they-were given in the fields list (\f[C]%CSVFIELDNAME\f[R]).-Some examples:-.IP-.nf-\f[C]-# set the amount to the 4th CSV field, with \[dq] USD\[dq] appended-amount %4 USD--# combine three fields to make a comment, containing note: and date: tags-comment note: %somefield - %anotherfield, date: %1-\f[R]-.fi-.PP-Interpolation strips outer whitespace (so a CSV value like-\f[C]\[dq] 1 \[dq]\f[R] becomes \f[C]1\f[R] when interpolated) (#1051).-See TIPS below for more about referencing other fields.-.SS \f[C]separator\f[R]-.PP-You can use the \f[C]separator\f[R] rule to read other kinds of-character-separated data.-The argument is any single separator character, or the words-\f[C]tab\f[R] or \f[C]space\f[R] (case insensitive).-Eg, for comma-separated values (CSV):-.IP-.nf-\f[C]-separator ,-\f[R]-.fi-.PP-or for semicolon-separated values (SSV):-.IP-.nf-\f[C]-separator ;-\f[R]-.fi-.PP-or for tab-separated values (TSV):-.IP-.nf-\f[C]-separator TAB-\f[R]-.fi-.PP-If the input file has a \f[C].csv\f[R], \f[C].ssv\f[R] or \f[C].tsv\f[R]-file extension (or a \f[C]csv:\f[R], \f[C]ssv:\f[R], \f[C]tsv:\f[R]-prefix), the appropriate separator will be inferred automatically, and-you won\[aq]t need this rule.-.SS \f[C]if\f[R] block-.IP-.nf-\f[C]-if MATCHER- RULE--if-MATCHER-MATCHER-MATCHER- RULE- RULE-\f[R]-.fi-.PP-Conditional blocks (\[dq]if blocks\[dq]) are a block of rules that are-applied only to CSV records which match certain patterns.-They are often used for customising account names based on transaction-descriptions.-.SS Matching the whole record-.PP-Each MATCHER can be a record matcher, which looks like this:-.IP-.nf-\f[C]-REGEX-\f[R]-.fi-.PP-REGEX is a case-insensitive regular expression which tries to match-anywhere within the CSV record.-It is a POSIX ERE (extended regular expression) that also supports GNU-word boundaries (\f[C]\[rs]b\f[R], \f[C]\[rs]B\f[R], \f[C]\[rs]<\f[R],-\f[C]\[rs]>\f[R]), and nothing else.-If you have trouble, be sure to check our-https://hledger.org/hledger.html#regular-expressions doc.-.PP-Important note: the record that is matched is not the original record,-but a synthetic one, with any enclosing double quotes (but not enclosing-whitespace) removed, and always comma-separated (which means that a-field containing a comma will appear like two fields).-Eg, if the original record is-\f[C]2020-01-01; \[dq]Acme, Inc.\[dq]; 1,000\f[R], the REGEX will-actually see \f[C]2020-01-01,Acme, Inc., 1,000\f[R]).-.SS Matching individual fields-.PP-Or, MATCHER can be a field matcher, like this:-.IP-.nf-\f[C]-%CSVFIELD REGEX-\f[R]-.fi-.PP-which matches just the content of a particular CSV field.-CSVFIELD is a percent sign followed by the field\[aq]s name or column-number, like \f[C]%date\f[R] or \f[C]%1\f[R].-.SS Combining matchers-.PP-A single matcher can be written on the same line as the \[dq]if\[dq]; or-multiple matchers can be written on the following lines, non-indented.-Multiple matchers are OR\[aq]d (any one of them can match), unless one-begins with an \f[C]&\f[R] symbol, in which case it is AND\[aq]ed with-the previous matcher.-.IP-.nf-\f[C]-if-MATCHER-& MATCHER- RULE-\f[R]-.fi-.SS Rules applied on successful match-.PP-After the patterns there should be one or more rules to apply, all-indented by at least one space.-Three kinds of rule are allowed in conditional blocks:-.IP \[bu] 2-field assignments (to set a hledger field)-.IP \[bu] 2-skip (to skip the matched CSV record)-.IP \[bu] 2-end (to skip all remaining CSV records).-.PP-Examples:-.IP-.nf-\f[C]-# if the CSV record contains \[dq]groceries\[dq], set account2 to \[dq]expenses:groceries\[dq]-if groceries- account2 expenses:groceries-\f[R]-.fi-.IP-.nf-\f[C]-# if the CSV record contains any of these patterns, set account2 and comment as shown-if-monthly service fee-atm transaction fee-banking thru software- account2 expenses:business:banking- comment XXX deductible ? check it-\f[R]-.fi-.SS \f[C]if\f[R] table-.IP-.nf-\f[C]-if,CSVFIELDNAME1,CSVFIELDNAME2,...,CSVFIELDNAMEn-MATCHER1,VALUE11,VALUE12,...,VALUE1n-MATCHER2,VALUE21,VALUE22,...,VALUE2n-MATCHER3,VALUE31,VALUE32,...,VALUE3n-<empty line>-\f[R]-.fi-.PP-Conditional tables (\[dq]if tables\[dq]) are a different syntax to-specify field assignments that will be applied only to CSV records which-match certain patterns.-.PP-MATCHER could be either field or record matcher, as described above.-When MATCHER matches, values from that row would be assigned to the CSV-fields named on the \f[C]if\f[R] line, in the same order.-.PP-Therefore \f[C]if\f[R] table is exactly equivalent to a sequence of of-\f[C]if\f[R] blocks:-.IP-.nf-\f[C]-if MATCHER1- CSVFIELDNAME1 VALUE11- CSVFIELDNAME2 VALUE12- ...- CSVFIELDNAMEn VALUE1n--if MATCHER2- CSVFIELDNAME1 VALUE21- CSVFIELDNAME2 VALUE22- ...- CSVFIELDNAMEn VALUE2n--if MATCHER3- CSVFIELDNAME1 VALUE31- CSVFIELDNAME2 VALUE32- ...- CSVFIELDNAMEn VALUE3n-\f[R]-.fi-.PP-Each line starting with MATCHER should contain enough (possibly empty)-values for all the listed fields.-.PP-Rules would be checked and applied in the order they are listed in the-table and, like with \f[C]if\f[R] blocks, later rules (in the same or-another table) or \f[C]if\f[R] blocks could override the effect of any-rule.-.PP-Instead of \[aq],\[aq] you can use a variety of other non-alphanumeric-characters as a separator.-First character after \f[C]if\f[R] is taken to be the separator for the-rest of the table.-It is the responsibility of the user to ensure that separator does not-occur inside MATCHERs and values - there is no way to escape separator.-.PP-Example:-.IP-.nf-\f[C]-if,account2,comment-atm transaction fee,expenses:business:banking,deductible? check it-%description groceries,expenses:groceries,-2020/01/12.*Plumbing LLC,expenses:house:upkeep,emergency plumbing call-out-\f[R]-.fi-.SS \f[C]end\f[R]-.PP-This rule can be used inside if blocks (only), to make hledger stop-reading this CSV file and move on to the next input file, or to command-execution.-Eg:-.IP-.nf-\f[C]-# ignore everything following the first empty record-if ,,,,- end-\f[R]-.fi-.SS \f[C]date-format\f[R]-.IP-.nf-\f[C]-date-format DATEFMT-\f[R]-.fi-.PP-This is a helper for the \f[C]date\f[R] (and \f[C]date2\f[R]) fields.-If your CSV dates are not formatted like \f[C]YYYY-MM-DD\f[R],-\f[C]YYYY/MM/DD\f[R] or \f[C]YYYY.MM.DD\f[R], you\[aq]ll need to add a-date-format rule describing them with a strptime date parsing pattern,-which must parse the CSV date value completely.-Some examples:-.IP-.nf-\f[C]-# MM/DD/YY-date-format %m/%d/%y-\f[R]-.fi-.IP-.nf-\f[C]-# D/M/YYYY-# The - makes leading zeros optional.-date-format %-d/%-m/%Y-\f[R]-.fi-.IP-.nf-\f[C]-# YYYY-Mmm-DD-date-format %Y-%h-%d-\f[R]-.fi-.IP-.nf-\f[C]-# M/D/YYYY HH:MM AM some other junk-# Note the time and junk must be fully parsed, though only the date is used.-date-format %-m/%-d/%Y %l:%M %p some other junk-\f[R]-.fi-.PP-For the supported strptime syntax, see:-.PD 0-.P-.PD-https://hackage.haskell.org/package/time/docs/Data-Time-Format.html#v:formatTime-.SS \f[C]decimal-mark\f[R]-.IP-.nf-\f[C]-decimal-mark .-\f[R]-.fi-.PP-or:-.IP-.nf-\f[C]-decimal-mark ,-\f[R]-.fi-.PP-hledger automatically accepts either period or comma as a decimal mark-when parsing numbers (cf Amounts).-However if any numbers in the CSV contain digit group marks, such as-thousand-separating commas, you should declare the decimal mark-explicitly with this rule, to avoid misparsed numbers.-.SS \f[C]newest-first\f[R]-.PP-hledger always sorts the generated transactions by date.-Transactions on the same date should appear in the same order as their-CSV records, as hledger can usually auto-detect whether the CSV\[aq]s-normal order is oldest first or newest first.-But if all of the following are true:-.IP \[bu] 2-the CSV might sometimes contain just one day of data (all records having-the same date)-.IP \[bu] 2-the CSV records are normally in reverse chronological order (newest at-the top)-.IP \[bu] 2-and you care about preserving the order of same-day transactions-.PP-then, you should add the \f[C]newest-first\f[R] rule as a hint.-Eg:-.IP-.nf-\f[C]-# tell hledger explicitly that the CSV is normally newest first-newest-first-\f[R]-.fi-.SS \f[C]include\f[R]-.IP-.nf-\f[C]-include RULESFILE-\f[R]-.fi-.PP-This includes the contents of another CSV rules file at this point.-\f[C]RULESFILE\f[R] is an absolute file path or a path relative to the-current file\[aq]s directory.-This can be useful for sharing common rules between several rules files,-eg:-.IP-.nf-\f[C]-# someaccount.csv.rules--## someaccount-specific rules-fields date,description,amount-account1 assets:someaccount-account2 expenses:misc--## common rules-include categorisation.rules-\f[R]-.fi-.SS \f[C]balance-type\f[R]-.PP-Balance assertions generated by assigning to balanceN are of the simple-\f[C]=\f[R] type by default, which is a single-commodity,-subaccount-excluding assertion.-You may find the subaccount-including variants more useful, eg if you-have created some virtual subaccounts of checking to help with-budgeting.-You can select a different type of assertion with the-\f[C]balance-type\f[R] rule:-.IP-.nf-\f[C]-# balance assertions will consider all commodities and all subaccounts-balance-type ==*-\f[R]-.fi-.PP-Here are the balance assertion types for quick reference:-.IP-.nf-\f[C]-= single commodity, exclude subaccounts-=* single commodity, include subaccounts-== multi commodity, exclude subaccounts-==* multi commodity, include subaccounts-\f[R]-.fi-.SH TIPS-.SS Rapid feedback-.PP-It\[aq]s a good idea to get rapid feedback while-creating/troubleshooting CSV rules.-Here\[aq]s a good way, using entr from http://eradman.com/entrproject :-.IP-.nf-\f[C]-$ ls foo.csv* | entr bash -c \[aq]echo ----; hledger -f foo.csv print desc:SOMEDESC\[aq]-\f[R]-.fi-.PP-A desc: query (eg) is used to select just one, or a few, transactions of-interest.-\[dq]bash -c\[dq] is used to run multiple commands, so we can echo a-separator each time the command re-runs, making it easier to read the-output.-.SS Valid CSV-.PP-hledger accepts CSV conforming to RFC 4180.-When CSV values are enclosed in quotes, note:-.IP \[bu] 2-they must be double quotes (not single quotes)-.IP \[bu] 2-spaces outside the quotes are not allowed-.SS File Extension-.PP-To help hledger identify the format and show the right error messages,-CSV/SSV/TSV files should normally be named with a \f[C].csv\f[R],-\f[C].ssv\f[R] or \f[C].tsv\f[R] filename extension.-Or, the file path should be prefixed with \f[C]csv:\f[R], \f[C]ssv:\f[R]-or \f[C]tsv:\f[R].-Eg:-.IP-.nf-\f[C]-$ hledger -f foo.ssv print-\f[R]-.fi-.PP-or:-.IP-.nf-\f[C]-$ cat foo | hledger -f ssv:- foo-\f[R]-.fi-.PP-You can override the file extension with a separator rule if needed.-See also: Input files in the hledger manual.-.SS Reading multiple CSV files-.PP-If you use multiple \f[C]-f\f[R] options to read multiple CSV files at-once, hledger will look for a correspondingly-named rules file for each-CSV file.-But if you use the \f[C]--rules-file\f[R] option, that rules file will-be used for all the CSV files.-.SS Valid transactions-.PP-After reading a CSV file, hledger post-processes and validates the-generated journal entries as it would for a journal file - balancing-them, applying balance assignments, and canonicalising amount styles.-Any errors at this stage will be reported in the usual way, displaying-the problem entry.-.PP-There is one exception: balance assertions, if you have generated them,-will not be checked, since normally these will work only when the CSV-data is part of the main journal.-If you do need to check balance assertions generated from CSV right-away, pipe into another hledger:-.IP-.nf-\f[C]-$ hledger -f file.csv print | hledger -f- print-\f[R]-.fi-.SS Deduplicating, importing-.PP-When you download a CSV file periodically, eg to get your latest bank-transactions, the new file may overlap with the old one, containing some-of the same records.-.PP-The import command will (a) detect the new transactions, and (b) append-just those transactions to your main journal.-It is idempotent, so you don\[aq]t have to remember how many times you-ran it or with which version of the CSV.-(It keeps state in a hidden \f[C].latest.FILE.csv\f[R] file.) This is-the easiest way to import CSV data.-Eg:-.IP-.nf-\f[C]-# download the latest CSV files, then run this command.-# Note, no -f flags needed here.-$ hledger import *.csv [--dry]-\f[R]-.fi-.PP-This method works for most CSV files.-(Where records have a stable chronological order, and new records appear-only at the new end.)-.PP-A number of other tools and workflows, hledger-specific and otherwise,-exist for converting, deduplicating, classifying and managing CSV data.-See:-.IP \[bu] 2-https://hledger.org -> sidebar -> real world setups-.IP \[bu] 2-https://plaintextaccounting.org -> data import/conversion-.SS Setting amounts-.PP-A posting amount can be set in one of these ways:-.IP \[bu] 2-by assigning (with a fields list or field assignment) to-\f[C]amountN\f[R] (posting N\[aq]s amount) or \f[C]amount\f[R] (posting-1\[aq]s amount)-.IP \[bu] 2-by assigning to \f[C]amountN-in\f[R] and \f[C]amountN-out\f[R] (or-\f[C]amount-in\f[R] and \f[C]amount-out\f[R]).-For each CSV record, whichever of these has a non-zero value will be-used, with appropriate sign.-If both contain a non-zero value, this may not work.-.IP \[bu] 2-by assigning to \f[C]balanceN\f[R] (or \f[C]balance\f[R]) instead of the-above, setting the amount indirectly via a balance assignment.-If you do this the default account name may be wrong, so you should set-that explicitly.-.PP-There is some special handling for an amount\[aq]s sign:-.IP \[bu] 2-If an amount value is parenthesised, it will be de-parenthesised and-sign-flipped.-.IP \[bu] 2-If an amount value begins with a double minus sign, those cancel out and-are removed.-.IP \[bu] 2-If an amount value begins with a plus sign, that will be removed-.SS Setting currency/commodity-.PP-If the currency/commodity symbol is included in the CSV\[aq]s amount-field(s):-.IP-.nf-\f[C]-2020-01-01,foo,$123.00-\f[R]-.fi-.PP-you don\[aq]t have to do anything special for the commodity symbol, it-will be assigned as part of the amount.-Eg:-.IP-.nf-\f[C]-fields date,description,amount-\f[R]-.fi-.IP-.nf-\f[C]-2020-01-01 foo- expenses:unknown $123.00- income:unknown $-123.00-\f[R]-.fi-.PP-If the currency is provided as a separate CSV field:-.IP-.nf-\f[C]-2020-01-01,foo,USD,123.00-\f[R]-.fi-.PP-You can assign that to the \f[C]currency\f[R] pseudo-field, which has-the special effect of prepending itself to every amount in the-transaction (on the left, with no separating space):-.IP-.nf-\f[C]-fields date,description,currency,amount-\f[R]-.fi-.IP-.nf-\f[C]-2020-01-01 foo- expenses:unknown USD123.00- income:unknown USD-123.00-\f[R]-.fi-.PP-Or, you can use a field assignment to construct the amount yourself,-with more control.-Eg to put the symbol on the right, and separated by a space:-.IP-.nf-\f[C]-fields date,description,cur,amt-amount %amt %cur-\f[R]-.fi-.IP-.nf-\f[C]-2020-01-01 foo- expenses:unknown 123.00 USD- income:unknown -123.00 USD-\f[R]-.fi-.PP-Note we used a temporary field name (\f[C]cur\f[R]) that is not-\f[C]currency\f[R] - that would trigger the prepending effect, which we-don\[aq]t want here.-.SS Referencing other fields-.PP-In field assignments, you can interpolate only CSV fields, not hledger-fields.-In the example below, there\[aq]s both a CSV field and a hledger field-named amount1, but %amount1 always means the CSV field, not the hledger-field:-.IP-.nf-\f[C]-# Name the third CSV field \[dq]amount1\[dq]-fields date,description,amount1--# Set hledger\[aq]s amount1 to the CSV amount1 field followed by USD-amount1 %amount1 USD--# Set comment to the CSV amount1 (not the amount1 assigned above)-comment %amount1-\f[R]-.fi-.PP-Here, since there\[aq]s no CSV amount1 field, %amount1 will produce a-literal \[dq]amount1\[dq]:-.IP-.nf-\f[C]-fields date,description,csvamount-amount1 %csvamount USD-# Can\[aq]t interpolate amount1 here-comment %amount1-\f[R]-.fi-.PP-When there are multiple field assignments to the same hledger field,-only the last one takes effect.-Here, comment\[aq]s value will be be B, or C if \[dq]something\[dq] is-matched, but never A:-.IP-.nf-\f[C]-comment A-comment B-if something- comment C-\f[R]-.fi-.SS How CSV rules are evaluated-.PP-Here\[aq]s how to think of CSV rules being evaluated (if you really need-to).-First,-.IP \[bu] 2-\f[C]include\f[R] - all includes are inlined, from top to bottom, depth-first.-(At each include point the file is inlined and scanned for further-includes, recursively, before proceeding.)-.PP-Then \[dq]global\[dq] rules are evaluated, top to bottom.-If a rule is repeated, the last one wins:-.IP \[bu] 2-\f[C]skip\f[R] (at top level)-.IP \[bu] 2-\f[C]date-format\f[R]-.IP \[bu] 2-\f[C]newest-first\f[R]-.IP \[bu] 2-\f[C]fields\f[R] - names the CSV fields, optionally sets up initial-assignments to hledger fields-.PP-Then for each CSV record in turn:-.IP \[bu] 2-test all \f[C]if\f[R] blocks.-If any of them contain a \f[C]end\f[R] rule, skip all remaining CSV-records.-Otherwise if any of them contain a \f[C]skip\f[R] rule, skip that many-CSV records.-If there are multiple matched \f[C]skip\f[R] rules, the first one wins.-.IP \[bu] 2-collect all field assignments at top level and in matched \f[C]if\f[R]-blocks.-When there are multiple assignments for a field, keep only the last one.-.IP \[bu] 2-compute a value for each hledger field - either the one that was-assigned to it (and interpolate the %CSVFIELDNAME references), or a-default-.IP \[bu] 2-generate a synthetic hledger transaction from these values.-.PP-This is all part of the CSV reader, one of several readers hledger can-use to parse input files.-When all files have been read successfully, the transactions are passed-as input to whichever hledger command the user specified.---.SH "REPORTING BUGS"-Report bugs at http://bugs.hledger.org-(or on the #hledger IRC channel or hledger mail list)--.SH AUTHORS-Simon Michael <simon@joyful.com> and contributors--.SH COPYRIGHT--Copyright (C) 2007-2020 Simon Michael.-.br-Released under GNU GPL v3 or later.--.SH SEE ALSO-hledger(1), hledger\-ui(1), hledger\-web(1), ledger(1)--hledger_journal(5), hledger_csv(5), hledger_timeclock(5), hledger_timedot(5)
− embeddedfiles/hledger_csv.info
@@ -1,1352 +0,0 @@-This is hledger-lib/hledger_csv.info, produced by makeinfo version 4.8-from stdin.---File: hledger_csv.info, Node: Top, Up: (dir)--hledger_csv(5)-**************--How hledger reads CSV data, and the CSV rules file format.-- hledger can read CSV files (Character Separated Value - usually-comma, semicolon, or tab) containing dated records as if they were-journal files, automatically converting each CSV record into a-transaction.-- (To learn about _writing_ CSV, see CSV output.)-- We describe each CSV file's format with a corresponding _rules-file_. By default this is named like the CSV file with a `.rules'-extension added. Eg when reading `FILE.csv', hledger also looks for-`FILE.csv.rules' in the same directory as `FILE.csv'. You can specify a-different rules file with the `--rules-file' option. If a rules file is-not found, hledger will create a sample rules file, which you'll need-to adjust.-- This file contains rules describing the CSV data (header line, fields-layout, date format etc.), and how to construct hledger journal entries-(transactions) from it. Often there will also be a list of conditional-rules for categorising transactions based on their descriptions. Here's-an overview of the CSV rules; these are described more fully below,-after the examples:--*`skip'* skip one or more header lines or matched- CSV records-*`fields'* name CSV fields, assign them to hledger- fields-*field assignment* assign a value to one hledger field,- with interpolation-*`separator'* a custom field separator-*`if' block* apply some rules to CSV records matched- by patterns-*`if' table* apply some rules to CSV records matched- by patterns, alternate syntax-*`end'* skip the remaining CSV records-*`date-format'* how to parse dates in CSV records-*`decimal-mark'* the decimal mark used in CSV amounts, if- ambiguous-*`newest-first'* disambiguate record order when there's- only one date-*`include'* inline another CSV rules file-*`balance-type'* choose which type of balance assignments- to use-- Note, for best error messages when reading CSV files, use a `.csv',-`.tsv' or `.ssv' file extension or file prefix - see File Extension-below.-- There's an introductory Convert CSV files tutorial on hledger.org.--* Menu:--* EXAMPLES::-* CSV RULES::-* TIPS::---File: hledger_csv.info, Node: EXAMPLES, Next: CSV RULES, Prev: Top, Up: Top--1 EXAMPLES-**********--Here are some sample hledger CSV rules files. See also the full-collection at:-https://github.com/simonmichael/hledger/tree/master/examples/csv--* Menu:--* Basic::-* Bank of Ireland::-* Amazon::-* Paypal::---File: hledger_csv.info, Node: Basic, Next: Bank of Ireland, Up: EXAMPLES--1.1 Basic-=========--At minimum, the rules file must identify the date and amount fields, and-often it also specifies the date format and how many header lines there-are. Here's a simple CSV file and a rules file for it:---Date, Description, Id, Amount-12/11/2019, Foo, 123, 10.23---# basic.csv.rules-skip 1-fields date, description, _, amount-date-format %d/%m/%Y---$ hledger print -f basic.csv-2019-11-12 Foo- expenses:unknown 10.23- income:unknown -10.23-- Default account names are chosen, since we didn't set them.---File: hledger_csv.info, Node: Bank of Ireland, Next: Amazon, Prev: Basic, Up: EXAMPLES--1.2 Bank of Ireland-===================--Here's a CSV with two amount fields (Debit and Credit), and a balance-field, which we can use to add balance assertions, which is not-necessary but provides extra error checking:---Date,Details,Debit,Credit,Balance-07/12/2012,LODGMENT 529898,,10.0,131.21-07/12/2012,PAYMENT,5,,126---# bankofireland-checking.csv.rules--# skip the header line-skip--# name the csv fields, and assign some of them as journal entry fields-fields date, description, amount-out, amount-in, balance--# We generate balance assertions by assigning to "balance"-# above, but you may sometimes need to remove these because:-#-# - the CSV balance differs from the true balance,-# by up to 0.0000000000005 in my experience-#-# - it is sometimes calculated based on non-chronological ordering,-# eg when multiple transactions clear on the same day--# date is in UK/Ireland format-date-format %d/%m/%Y--# set the currency-currency EUR--# set the base account for all txns-account1 assets:bank:boi:checking---$ hledger -f bankofireland-checking.csv print-2012-12-07 LODGMENT 529898- assets:bank:boi:checking EUR10.0 = EUR131.2- income:unknown EUR-10.0--2012-12-07 PAYMENT- assets:bank:boi:checking EUR-5.0 = EUR126.0- expenses:unknown EUR5.0-- The balance assertions don't raise an error above, because we're-reading directly from CSV, but they will be checked if these entries are-imported into a journal file.---File: hledger_csv.info, Node: Amazon, Next: Paypal, Prev: Bank of Ireland, Up: EXAMPLES--1.3 Amazon-==========--Here we convert amazon.com order history, and use an if block to-generate a third posting if there's a fee. (In practice you'd probably-get this data from your bank instead, but it's an example.)---"Date","Type","To/From","Name","Status","Amount","Fees","Transaction ID"-"Jul 29, 2012","Payment","To","Foo.","Completed","$20.00","$0.00","16000000000000DGLNJPI1P9B8DKPVHL"-"Jul 30, 2012","Payment","To","Adapteva, Inc.","Completed","$25.00","$1.00","17LA58JSKRD4HDGLNJPI1P9B8DKPVHL"---# amazon-orders.csv.rules--# skip one header line-skip 1--# name the csv fields, and assign the transaction's date, amount and code.-# Avoided the "status" and "amount" hledger field names to prevent confusion.-fields date, _, toorfrom, name, amzstatus, amzamount, fees, code--# how to parse the date-date-format %b %-d, %Y--# combine two fields to make the description-description %toorfrom %name--# save the status as a tag-comment status:%amzstatus--# set the base account for all transactions-account1 assets:amazon-# leave amount1 blank so it can balance the other(s).-# I'm assuming amzamount excludes the fees, don't remember--# set a generic account2-account2 expenses:misc-amount2 %amzamount-# and maybe refine it further:-#include categorisation.rules--# add a third posting for fees, but only if they are non-zero.-if %fees [1-9]- account3 expenses:fees- amount3 %fees---$ hledger -f amazon-orders.csv print-2012-07-29 (16000000000000DGLNJPI1P9B8DKPVHL) To Foo. ; status:Completed- assets:amazon- expenses:misc $20.00--2012-07-30 (17LA58JSKRD4HDGLNJPI1P9B8DKPVHL) To Adapteva, Inc. ; status:Completed- assets:amazon- expenses:misc $25.00- expenses:fees $1.00---File: hledger_csv.info, Node: Paypal, Prev: Amazon, Up: EXAMPLES--1.4 Paypal-==========--Here's a real-world rules file for (customised) Paypal CSV, with some-Paypal-specific rules, and a second rules file included:---"Date","Time","TimeZone","Name","Type","Status","Currency","Gross","Fee","Net","From Email Address","To Email Address","Transaction ID","Item Title","Item ID","Reference Txn ID","Receipt ID","Balance","Note"-"10/01/2019","03:46:20","PDT","Calm Radio","Subscription Payment","Completed","USD","-6.99","0.00","-6.99","simon@joyful.com","memberships@calmradio.com","60P57143A8206782E","MONTHLY - $1 for the first 2 Months: Me - Order 99309. Item total: $1.00 USD first 2 months, then $6.99 / Month","","I-R8YLY094FJYR","","-6.99",""-"10/01/2019","03:46:20","PDT","","Bank Deposit to PP Account ","Pending","USD","6.99","0.00","6.99","","simon@joyful.com","0TU1544T080463733","","","60P57143A8206782E","","0.00",""-"10/01/2019","08:57:01","PDT","Patreon","PreApproved Payment Bill User Payment","Completed","USD","-7.00","0.00","-7.00","simon@joyful.com","support@patreon.com","2722394R5F586712G","Patreon* Membership","","B-0PG93074E7M86381M","","-7.00",""-"10/01/2019","08:57:01","PDT","","Bank Deposit to PP Account ","Pending","USD","7.00","0.00","7.00","","simon@joyful.com","71854087RG994194F","Patreon* Membership","","2722394R5F586712G","","0.00",""-"10/19/2019","03:02:12","PDT","Wikimedia Foundation, Inc.","Subscription Payment","Completed","USD","-2.00","0.00","-2.00","simon@joyful.com","tle@wikimedia.org","K9U43044RY432050M","Monthly donation to the Wikimedia Foundation","","I-R5C3YUS3285L","","-2.00",""-"10/19/2019","03:02:12","PDT","","Bank Deposit to PP Account ","Pending","USD","2.00","0.00","2.00","","simon@joyful.com","3XJ107139A851061F","","","K9U43044RY432050M","","0.00",""-"10/22/2019","05:07:06","PDT","Noble Benefactor","Subscription Payment","Completed","USD","10.00","-0.59","9.41","noble@bene.fac.tor","simon@joyful.com","6L8L1662YP1334033","Joyful Systems","","I-KC9VBGY2GWDB","","9.41",""---# paypal-custom.csv.rules--# Tips:-# Export from Activity -> Statements -> Custom -> Activity download-# Suggested transaction type: "Balance affecting"-# Paypal's default fields in 2018 were:-# "Date","Time","TimeZone","Name","Type","Status","Currency","Gross","Fee","Net","From Email Address","To Email Address","Transaction ID","Shipping Address","Address Status","Item Title","Item ID","Shipping and Handling Amount","Insurance Amount","Sales Tax","Option 1 Name","Option 1 Value","Option 2 Name","Option 2 Value","Reference Txn ID","Invoice Number","Custom Number","Quantity","Receipt ID","Balance","Address Line 1","Address Line 2/District/Neighborhood","Town/City","State/Province/Region/County/Territory/Prefecture/Republic","Zip/Postal Code","Country","Contact Phone Number","Subject","Note","Country Code","Balance Impact"-# This rules file assumes the following more detailed fields, configured in "Customize report fields":-# "Date","Time","TimeZone","Name","Type","Status","Currency","Gross","Fee","Net","From Email Address","To Email Address","Transaction ID","Item Title","Item ID","Reference Txn ID","Receipt ID","Balance","Note"--fields date, time, timezone, description_, type, status_, currency, grossamount, feeamount, netamount, fromemail, toemail, code, itemtitle, itemid, referencetxnid, receiptid, balance, note--skip 1--date-format %-m/%-d/%Y--# ignore some paypal events-if-In Progress-Temporary Hold-Update to- skip--# add more fields to the description-description %description_ %itemtitle--# save some other fields as tags-comment itemid:%itemid, fromemail:%fromemail, toemail:%toemail, time:%time, type:%type, status:%status_--# convert to short currency symbols-if %currency USD- currency $-if %currency EUR- currency E-if %currency GBP- currency P--# generate postings--# the first posting will be the money leaving/entering my paypal account-# (negative means leaving my account, in all amount fields)-account1 assets:online:paypal-amount1 %netamount--# the second posting will be money sent to/received from other party-# (account2 is set below)-amount2 -%grossamount--# if there's a fee, add a third posting for the money taken by paypal.-if %feeamount [1-9]- account3 expenses:banking:paypal- amount3 -%feeamount- comment3 business:--# choose an account for the second posting--# override the default account names:-# if the amount is positive, it's income (a debit)-if %grossamount ^[^-]- account2 income:unknown-# if negative, it's an expense (a credit)-if %grossamount ^-- account2 expenses:unknown--# apply common rules for setting account2 & other tweaks-include common.rules--# apply some overrides specific to this csv--# Transfers from/to bank. These are usually marked Pending,-# which can be disregarded in this case.-if-Bank Account-Bank Deposit to PP Account- description %type for %referencetxnid %itemtitle- account2 assets:bank:wf:pchecking- account1 assets:online:paypal--# Currency conversions-if Currency Conversion- account2 equity:currency conversion---# common.rules--if-darcs-noble benefactor- account2 revenues:foss donations:darcshub- comment2 business:--if-Calm Radio- account2 expenses:online:apps--if-electronic frontier foundation-Patreon-wikimedia-Advent of Code- account2 expenses:dues--if Google- account2 expenses:online:apps- description google | music---$ hledger -f paypal-custom.csv print-2019-10-01 (60P57143A8206782E) Calm Radio MONTHLY - $1 for the first 2 Months: Me - Order 99309. Item total: $1.00 USD first 2 months, then $6.99 / Month ; itemid:, fromemail:simon@joyful.com, toemail:memberships@calmradio.com, time:03:46:20, type:Subscription Payment, status:Completed- assets:online:paypal $-6.99 = $-6.99- expenses:online:apps $6.99--2019-10-01 (0TU1544T080463733) Bank Deposit to PP Account for 60P57143A8206782E ; itemid:, fromemail:, toemail:simon@joyful.com, time:03:46:20, type:Bank Deposit to PP Account, status:Pending- assets:online:paypal $6.99 = $0.00- assets:bank:wf:pchecking $-6.99--2019-10-01 (2722394R5F586712G) Patreon Patreon* Membership ; itemid:, fromemail:simon@joyful.com, toemail:support@patreon.com, time:08:57:01, type:PreApproved Payment Bill User Payment, status:Completed- assets:online:paypal $-7.00 = $-7.00- expenses:dues $7.00--2019-10-01 (71854087RG994194F) Bank Deposit to PP Account for 2722394R5F586712G Patreon* Membership ; itemid:, fromemail:, toemail:simon@joyful.com, time:08:57:01, type:Bank Deposit to PP Account, status:Pending- assets:online:paypal $7.00 = $0.00- assets:bank:wf:pchecking $-7.00--2019-10-19 (K9U43044RY432050M) Wikimedia Foundation, Inc. Monthly donation to the Wikimedia Foundation ; itemid:, fromemail:simon@joyful.com, toemail:tle@wikimedia.org, time:03:02:12, type:Subscription Payment, status:Completed- assets:online:paypal $-2.00 = $-2.00- expenses:dues $2.00- expenses:banking:paypal ; business:--2019-10-19 (3XJ107139A851061F) Bank Deposit to PP Account for K9U43044RY432050M ; itemid:, fromemail:, toemail:simon@joyful.com, time:03:02:12, type:Bank Deposit to PP Account, status:Pending- assets:online:paypal $2.00 = $0.00- assets:bank:wf:pchecking $-2.00--2019-10-22 (6L8L1662YP1334033) Noble Benefactor Joyful Systems ; itemid:, fromemail:noble@bene.fac.tor, toemail:simon@joyful.com, time:05:07:06, type:Subscription Payment, status:Completed- assets:online:paypal $9.41 = $9.41- revenues:foss donations:darcshub $-10.00 ; business:- expenses:banking:paypal $0.59 ; business:---File: hledger_csv.info, Node: CSV RULES, Next: TIPS, Prev: EXAMPLES, Up: Top--2 CSV RULES-***********--The following kinds of rule can appear in the rules file, in any order.-Blank lines and lines beginning with `#' or `;' are ignored.--* Menu:--* skip::-* fields::-* field assignment::-* separator::-* if block::-* if table::-* end::-* date-format::-* decimal-mark::-* newest-first::-* include::-* balance-type::---File: hledger_csv.info, Node: skip, Next: fields, Up: CSV RULES--2.1 `skip'-==========---skip N--The word "skip" followed by a number (or no number, meaning 1) tells-hledger to ignore this many non-empty lines preceding the CSV data.-(Empty/blank lines are skipped automatically.) You'll need this whenever-your CSV data contains header lines.-- It also has a second purpose: it can be used inside if blocks to-ignore certain CSV records (described below).---File: hledger_csv.info, Node: fields, Next: field assignment, Prev: skip, Up: CSV RULES--2.2 `fields'-============---fields FIELDNAME1, FIELDNAME2, ...--A fields list (the word "fields" followed by comma-separated field-names) is the quick way to assign CSV field values to hledger fields. It-does two things:-- 1. it names the CSV fields. This is optional, but can be convenient- later for interpolating them.-- 2. when you use a standard hledger field name, it assigns the CSV- value to that part of the hledger transaction.--- Here's an example that says "use the 1st, 2nd and 4th fields as the-transaction's date, description and amount; name the last two fields for-later reference; and ignore the others":---fields date, description, , amount, , , somefield, anotherfield-- Field names may not contain whitespace. Fields you don't care about-can be left unnamed. Currently there must be least two items (there-must be at least one comma).-- Note, always use comma in the fields list, even if your CSV uses-another separator character.-- Here are the standard hledger field/pseudo-field names. For more-about the transaction parts they refer to, see the manual for hledger's-journal format.--* Menu:--* Transaction field names::-* Posting field names::---File: hledger_csv.info, Node: Transaction field names, Next: Posting field names, Up: fields--2.2.1 Transaction field names--------------------------------`date', `date2', `status', `code', `description', `comment' can be used-to form the transaction's first line.---File: hledger_csv.info, Node: Posting field names, Prev: Transaction field names, Up: fields--2.2.2 Posting field names----------------------------* Menu:--* account::-* amount::-* currency::-* balance::-* comment::---File: hledger_csv.info, Node: account, Next: amount, Up: Posting field names--2.2.2.1 account-...............--`accountN', where N is 1 to 99, causes a posting to be generated, with-that account name.-- Most often there are two postings, so you'll want to set `account1'-and `account2'. Typically `account1' is associated with the CSV file,-and is set once with a top-level assignment, while `account2' is set-based on each transaction's description, and in conditional blocks.-- If a posting's account name is left unset but its amount is set (see-below), a default account name will be chosen (like "expenses:unknown"-or "income:unknown").---File: hledger_csv.info, Node: amount, Next: currency, Prev: account, Up: Posting field names--2.2.2.2 amount-..............--`amountN' sets posting N's amount. If the CSV uses separate fields for-inflows and outflows, you can use `amountN-in' and `amountN-out'-instead. By assigning to `amount1', `amount2', ... etc. you can-generate anywhere from 0 to 99 postings.-- There is also an older, unnumbered form of these names, suitable for-2-posting transactions, which sets both posting 1's and (negated)-posting 2's amount: `amount', or `amount-in' and `amount-out'. This is-still supported because it keeps pre-hledger-1.17 csv rules files-working, and because it can be more succinct, and because it converts-posting 2's amount to cost if there's a transaction price, which can be-useful.-- If you have an existing rules file using the unnumbered form, you-might want to use the numbered form in certain conditional blocks,-without having to update and retest all the old rules. To facilitate-this, posting 1 ignores `amount'/`amount-in'/`amount-out' if any of-`amount1'/`amount1-in'/`amount1-out' are assigned, and posting 2-ignores them if any of `amount2'/`amount2-in'/`amount2-out' are-assigned, avoiding conflicts.---File: hledger_csv.info, Node: currency, Next: balance, Prev: amount, Up: Posting field names--2.2.2.3 currency-................--If the CSV has the currency symbol in a separate field (ie, not part of-the amount field), you can use `currencyN' to prepend it to posting N's-amount. Or, `currency' with no number affects all postings.---File: hledger_csv.info, Node: balance, Next: comment, Prev: currency, Up: Posting field names--2.2.2.4 balance-...............--`balanceN' sets a balance assertion amount (or if the posting amount is-left empty, a balance assignment) on posting N.-- Also, for compatibility with hledger <1.17: `balance' with no number-is equivalent to `balance1'.-- You can adjust the type of assertion/assignment with the-`balance-type' rule (see below).---File: hledger_csv.info, Node: comment, Prev: balance, Up: Posting field names--2.2.2.5 comment-...............--Finally, `commentN' sets a comment on the Nth posting. Comments can-also contain tags, as usual.-- See TIPS below for more about setting amounts and currency.---File: hledger_csv.info, Node: field assignment, Next: separator, Prev: fields, Up: CSV RULES--2.3 field assignment-====================---HLEDGERFIELDNAME FIELDVALUE--Instead of or in addition to a fields list, you can use a "field-assignment" rule to set the value of a single hledger field, by writing-its name (any of the standard hledger field names above) followed by a-text value. The value may contain interpolated CSV fields, referenced by-their 1-based position in the CSV record (`%N'), or by the name they-were given in the fields list (`%CSVFIELDNAME'). Some examples:---# set the amount to the 4th CSV field, with " USD" appended-amount %4 USD--# combine three fields to make a comment, containing note: and date: tags-comment note: %somefield - %anotherfield, date: %1-- Interpolation strips outer whitespace (so a CSV value like `" 1 "'-becomes `1' when interpolated) (#1051). See TIPS below for more about-referencing other fields.---File: hledger_csv.info, Node: separator, Next: if block, Prev: field assignment, Up: CSV RULES--2.4 `separator'-===============--You can use the `separator' rule to read other kinds of-character-separated data. The argument is any single separator-character, or the words `tab' or `space' (case insensitive). Eg, for-comma-separated values (CSV):---separator ,-- or for semicolon-separated values (SSV):---separator ;-- or for tab-separated values (TSV):---separator TAB-- If the input file has a `.csv', `.ssv' or `.tsv' file extension (or-a `csv:', `ssv:', `tsv:' prefix), the appropriate separator will be-inferred automatically, and you won't need this rule.---File: hledger_csv.info, Node: if block, Next: if table, Prev: separator, Up: CSV RULES--2.5 `if' block-==============---if MATCHER- RULE--if-MATCHER-MATCHER-MATCHER- RULE- RULE--Conditional blocks ("if blocks") are a block of rules that are applied-only to CSV records which match certain patterns. They are often used-for customising account names based on transaction descriptions.--* Menu:--* Matching the whole record::-* Matching individual fields::-* Combining matchers::-* Rules applied on successful match::---File: hledger_csv.info, Node: Matching the whole record, Next: Matching individual fields, Up: if block--2.5.1 Matching the whole record----------------------------------Each MATCHER can be a record matcher, which looks like this:---REGEX-- REGEX is a case-insensitive regular expression which tries to match-anywhere within the CSV record. It is a POSIX ERE (extended regular-expression) that also supports GNU word boundaries (`\b', `\B', `\<',-`\>'), and nothing else. If you have trouble, be sure to check our-https://hledger.org/hledger.html#regular-expressions doc.-- Important note: the record that is matched is not the original-record, but a synthetic one, with any enclosing double quotes (but not-enclosing whitespace) removed, and always comma-separated (which means-that a field containing a comma will appear like two fields). Eg, if the-original record is `2020-01-01; "Acme, Inc."; 1,000', the REGEX will-actually see `2020-01-01,Acme, Inc., 1,000').---File: hledger_csv.info, Node: Matching individual fields, Next: Combining matchers, Prev: Matching the whole record, Up: if block--2.5.2 Matching individual fields-----------------------------------Or, MATCHER can be a field matcher, like this:---%CSVFIELD REGEX-- which matches just the content of a particular CSV field. CSVFIELD-is a percent sign followed by the field's name or column number, like-`%date' or `%1'.---File: hledger_csv.info, Node: Combining matchers, Next: Rules applied on successful match, Prev: Matching individual fields, Up: if block--2.5.3 Combining matchers---------------------------A single matcher can be written on the same line as the "if"; or-multiple matchers can be written on the following lines, non-indented.-Multiple matchers are OR'd (any one of them can match), unless one-begins with an `&' symbol, in which case it is AND'ed with the previous-matcher.---if-MATCHER-& MATCHER- RULE---File: hledger_csv.info, Node: Rules applied on successful match, Prev: Combining matchers, Up: if block--2.5.4 Rules applied on successful match------------------------------------------After the patterns there should be one or more rules to apply, all-indented by at least one space. Three kinds of rule are allowed in-conditional blocks:-- * field assignments (to set a hledger field)-- * skip (to skip the matched CSV record)-- * end (to skip all remaining CSV records).-- Examples:---# if the CSV record contains "groceries", set account2 to "expenses:groceries"-if groceries- account2 expenses:groceries---# if the CSV record contains any of these patterns, set account2 and comment as shown-if-monthly service fee-atm transaction fee-banking thru software- account2 expenses:business:banking- comment XXX deductible ? check it---File: hledger_csv.info, Node: if table, Next: end, Prev: if block, Up: CSV RULES--2.6 `if' table-==============---if,CSVFIELDNAME1,CSVFIELDNAME2,...,CSVFIELDNAMEn-MATCHER1,VALUE11,VALUE12,...,VALUE1n-MATCHER2,VALUE21,VALUE22,...,VALUE2n-MATCHER3,VALUE31,VALUE32,...,VALUE3n-<empty line>--Conditional tables ("if tables") are a different syntax to specify field-assignments that will be applied only to CSV records which match certain-patterns.-- MATCHER could be either field or record matcher, as described above.-When MATCHER matches, values from that row would be assigned to the CSV-fields named on the `if' line, in the same order.-- Therefore `if' table is exactly equivalent to a sequence of of `if'-blocks:---if MATCHER1- CSVFIELDNAME1 VALUE11- CSVFIELDNAME2 VALUE12- ...- CSVFIELDNAMEn VALUE1n--if MATCHER2- CSVFIELDNAME1 VALUE21- CSVFIELDNAME2 VALUE22- ...- CSVFIELDNAMEn VALUE2n--if MATCHER3- CSVFIELDNAME1 VALUE31- CSVFIELDNAME2 VALUE32- ...- CSVFIELDNAMEn VALUE3n-- Each line starting with MATCHER should contain enough (possibly-empty) values for all the listed fields.-- Rules would be checked and applied in the order they are listed in-the table and, like with `if' blocks, later rules (in the same or-another table) or `if' blocks could override the effect of any rule.-- Instead of ',' you can use a variety of other non-alphanumeric-characters as a separator. First character after `if' is taken to be-the separator for the rest of the table. It is the responsibility of-the user to ensure that separator does not occur inside MATCHERs and-values - there is no way to escape separator.-- Example:---if,account2,comment-atm transaction fee,expenses:business:banking,deductible? check it-%description groceries,expenses:groceries,-2020/01/12.*Plumbing LLC,expenses:house:upkeep,emergency plumbing call-out---File: hledger_csv.info, Node: end, Next: date-format, Prev: if table, Up: CSV RULES--2.7 `end'-=========--This rule can be used inside if blocks (only), to make hledger stop-reading this CSV file and move on to the next input file, or to command-execution. Eg:---# ignore everything following the first empty record-if ,,,,- end---File: hledger_csv.info, Node: date-format, Next: decimal-mark, Prev: end, Up: CSV RULES--2.8 `date-format'-=================---date-format DATEFMT--This is a helper for the `date' (and `date2') fields. If your CSV dates-are not formatted like `YYYY-MM-DD', `YYYY/MM/DD' or `YYYY.MM.DD',-you'll need to add a date-format rule describing them with a strptime-date parsing pattern, which must parse the CSV date value completely.-Some examples:---# MM/DD/YY-date-format %m/%d/%y---# D/M/YYYY-# The - makes leading zeros optional.-date-format %-d/%-m/%Y---# YYYY-Mmm-DD-date-format %Y-%h-%d---# M/D/YYYY HH:MM AM some other junk-# Note the time and junk must be fully parsed, though only the date is used.-date-format %-m/%-d/%Y %l:%M %p some other junk-- For the supported strptime syntax, see:-https://hackage.haskell.org/package/time/docs/Data-Time-Format.html#v:formatTime---File: hledger_csv.info, Node: decimal-mark, Next: newest-first, Prev: date-format, Up: CSV RULES--2.9 `decimal-mark'-==================---decimal-mark .--or:---decimal-mark ,-- hledger automatically accepts either period or comma as a decimal-mark when parsing numbers (cf Amounts). However if any numbers in the-CSV contain digit group marks, such as thousand-separating commas, you-should declare the decimal mark explicitly with this rule, to avoid-misparsed numbers.---File: hledger_csv.info, Node: newest-first, Next: include, Prev: decimal-mark, Up: CSV RULES--2.10 `newest-first'-===================--hledger always sorts the generated transactions by date. Transactions on-the same date should appear in the same order as their CSV records, as-hledger can usually auto-detect whether the CSV's normal order is oldest-first or newest first. But if all of the following are true:-- * the CSV might sometimes contain just one day of data (all records- having the same date)-- * the CSV records are normally in reverse chronological order- (newest at the top)-- * and you care about preserving the order of same-day transactions-- then, you should add the `newest-first' rule as a hint. Eg:---# tell hledger explicitly that the CSV is normally newest first-newest-first---File: hledger_csv.info, Node: include, Next: balance-type, Prev: newest-first, Up: CSV RULES--2.11 `include'-==============---include RULESFILE--This includes the contents of another CSV rules file at this point.-`RULESFILE' is an absolute file path or a path relative to the current-file's directory. This can be useful for sharing common rules between-several rules files, eg:---# someaccount.csv.rules--## someaccount-specific rules-fields date,description,amount-account1 assets:someaccount-account2 expenses:misc--## common rules-include categorisation.rules---File: hledger_csv.info, Node: balance-type, Prev: include, Up: CSV RULES--2.12 `balance-type'-===================--Balance assertions generated by assigning to balanceN are of the simple-`=' type by default, which is a single-commodity, subaccount-excluding-assertion. You may find the subaccount-including variants more useful,-eg if you have created some virtual subaccounts of checking to help-with budgeting. You can select a different type of assertion with the-`balance-type' rule:---# balance assertions will consider all commodities and all subaccounts-balance-type ==*-- Here are the balance assertion types for quick reference:---= single commodity, exclude subaccounts-=* single commodity, include subaccounts-== multi commodity, exclude subaccounts-==* multi commodity, include subaccounts---File: hledger_csv.info, Node: TIPS, Prev: CSV RULES, Up: Top--3 TIPS-******--* Menu:--* Rapid feedback::-* Valid CSV::-* File Extension::-* Reading multiple CSV files::-* Valid transactions::-* Deduplicating importing::-* Setting amounts::-* Setting currency/commodity::-* Referencing other fields::-* How CSV rules are evaluated::---File: hledger_csv.info, Node: Rapid feedback, Next: Valid CSV, Up: TIPS--3.1 Rapid feedback-==================--It's a good idea to get rapid feedback while creating/troubleshooting-CSV rules. Here's a good way, using entr from-http://eradman.com/entrproject :---$ ls foo.csv* | entr bash -c 'echo ----; hledger -f foo.csv print desc:SOMEDESC'-- A desc: query (eg) is used to select just one, or a few,-transactions of interest. "bash -c" is used to run multiple commands,-so we can echo a separator each time the command re-runs, making it-easier to read the output.---File: hledger_csv.info, Node: Valid CSV, Next: File Extension, Prev: Rapid feedback, Up: TIPS--3.2 Valid CSV-=============--hledger accepts CSV conforming to RFC 4180. When CSV values are enclosed-in quotes, note:-- * they must be double quotes (not single quotes)-- * spaces outside the quotes are not allowed---File: hledger_csv.info, Node: File Extension, Next: Reading multiple CSV files, Prev: Valid CSV, Up: TIPS--3.3 File Extension-==================--To help hledger identify the format and show the right error messages,-CSV/SSV/TSV files should normally be named with a `.csv', `.ssv' or-`.tsv' filename extension. Or, the file path should be prefixed with-`csv:', `ssv:' or `tsv:'. Eg:---$ hledger -f foo.ssv print-- or:---$ cat foo | hledger -f ssv:- foo-- You can override the file extension with a separator rule if needed.-See also: Input files in the hledger manual.---File: hledger_csv.info, Node: Reading multiple CSV files, Next: Valid transactions, Prev: File Extension, Up: TIPS--3.4 Reading multiple CSV files-==============================--If you use multiple `-f' options to read multiple CSV files at once,-hledger will look for a correspondingly-named rules file for each CSV-file. But if you use the `--rules-file' option, that rules file will be-used for all the CSV files.---File: hledger_csv.info, Node: Valid transactions, Next: Deduplicating importing, Prev: Reading multiple CSV files, Up: TIPS--3.5 Valid transactions-======================--After reading a CSV file, hledger post-processes and validates the-generated journal entries as it would for a journal file - balancing-them, applying balance assignments, and canonicalising amount styles.-Any errors at this stage will be reported in the usual way, displaying-the problem entry.-- There is one exception: balance assertions, if you have generated-them, will not be checked, since normally these will work only when the-CSV data is part of the main journal. If you do need to check balance-assertions generated from CSV right away, pipe into another hledger:---$ hledger -f file.csv print | hledger -f- print---File: hledger_csv.info, Node: Deduplicating importing, Next: Setting amounts, Prev: Valid transactions, Up: TIPS--3.6 Deduplicating, importing-============================--When you download a CSV file periodically, eg to get your latest bank-transactions, the new file may overlap with the old one, containing some-of the same records.-- The import command will (a) detect the new transactions, and (b)-append just those transactions to your main journal. It is idempotent,-so you don't have to remember how many times you ran it or with which-version of the CSV. (It keeps state in a hidden `.latest.FILE.csv'-file.) This is the easiest way to import CSV data. Eg:---# download the latest CSV files, then run this command.-# Note, no -f flags needed here.-$ hledger import *.csv [--dry]-- This method works for most CSV files. (Where records have a stable-chronological order, and new records appear only at the new end.)-- A number of other tools and workflows, hledger-specific and-otherwise, exist for converting, deduplicating, classifying and-managing CSV data. See:-- * https://hledger.org -> sidebar -> real world setups-- * https://plaintextaccounting.org -> data import/conversion---File: hledger_csv.info, Node: Setting amounts, Next: Setting currency/commodity, Prev: Deduplicating importing, Up: TIPS--3.7 Setting amounts-===================--A posting amount can be set in one of these ways:-- * by assigning (with a fields list or field assignment) to `amountN'- (posting N's amount) or `amount' (posting 1's amount)-- * by assigning to `amountN-in' and `amountN-out' (or `amount-in' and- `amount-out'). For each CSV record, whichever of these has a- non-zero value will be used, with appropriate sign. If both- contain a non-zero value, this may not work.-- * by assigning to `balanceN' (or `balance') instead of the above,- setting the amount indirectly via a balance assignment. If you do- this the default account name may be wrong, so you should set that- explicitly.--- There is some special handling for an amount's sign:-- * If an amount value is parenthesised, it will be de-parenthesised- and sign-flipped.-- * If an amount value begins with a double minus sign, those cancel- out and are removed.-- * If an amount value begins with a plus sign, that will be removed---File: hledger_csv.info, Node: Setting currency/commodity, Next: Referencing other fields, Prev: Setting amounts, Up: TIPS--3.8 Setting currency/commodity-==============================--If the currency/commodity symbol is included in the CSV's amount-field(s):---2020-01-01,foo,$123.00-- you don't have to do anything special for the commodity symbol, it-will be assigned as part of the amount. Eg:---fields date,description,amount---2020-01-01 foo- expenses:unknown $123.00- income:unknown $-123.00-- If the currency is provided as a separate CSV field:---2020-01-01,foo,USD,123.00-- You can assign that to the `currency' pseudo-field, which has the-special effect of prepending itself to every amount in the transaction-(on the left, with no separating space):---fields date,description,currency,amount---2020-01-01 foo- expenses:unknown USD123.00- income:unknown USD-123.00-- Or, you can use a field assignment to construct the amount yourself,-with more control. Eg to put the symbol on the right, and separated by a-space:---fields date,description,cur,amt-amount %amt %cur---2020-01-01 foo- expenses:unknown 123.00 USD- income:unknown -123.00 USD-- Note we used a temporary field name (`cur') that is not `currency' --that would trigger the prepending effect, which we don't want here.---File: hledger_csv.info, Node: Referencing other fields, Next: How CSV rules are evaluated, Prev: Setting currency/commodity, Up: TIPS--3.9 Referencing other fields-============================--In field assignments, you can interpolate only CSV fields, not hledger-fields. In the example below, there's both a CSV field and a hledger-field named amount1, but %amount1 always means the CSV field, not the-hledger field:---# Name the third CSV field "amount1"-fields date,description,amount1--# Set hledger's amount1 to the CSV amount1 field followed by USD-amount1 %amount1 USD--# Set comment to the CSV amount1 (not the amount1 assigned above)-comment %amount1-- Here, since there's no CSV amount1 field, %amount1 will produce a-literal "amount1":---fields date,description,csvamount-amount1 %csvamount USD-# Can't interpolate amount1 here-comment %amount1-- When there are multiple field assignments to the same hledger field,-only the last one takes effect. Here, comment's value will be be B, or C-if "something" is matched, but never A:---comment A-comment B-if something- comment C---File: hledger_csv.info, Node: How CSV rules are evaluated, Prev: Referencing other fields, Up: TIPS--3.10 How CSV rules are evaluated-================================--Here's how to think of CSV rules being evaluated (if you really need-to). First,-- * `include' - all includes are inlined, from top to bottom, depth- first. (At each include point the file is inlined and scanned for- further includes, recursively, before proceeding.)-- Then "global" rules are evaluated, top to bottom. If a rule is-repeated, the last one wins:-- * `skip' (at top level)-- * `date-format'-- * `newest-first'-- * `fields' - names the CSV fields, optionally sets up initial- assignments to hledger fields-- Then for each CSV record in turn:-- * test all `if' blocks. If any of them contain a `end' rule, skip- all remaining CSV records. Otherwise if any of them contain a- `skip' rule, skip that many CSV records. If there are multiple- matched `skip' rules, the first one wins.-- * collect all field assignments at top level and in matched `if'- blocks. When there are multiple assignments for a field, keep only- the last one.-- * compute a value for each hledger field - either the one that was- assigned to it (and interpolate the %CSVFIELDNAME references), or a- default-- * generate a synthetic hledger transaction from these values.-- This is all part of the CSV reader, one of several readers hledger-can use to parse input files. When all files have been read-successfully, the transactions are passed as input to whichever hledger-command the user specified.----Tag Table:-Node: Top84-Node: EXAMPLES2746-Ref: #examples2852-Node: Basic3059-Ref: #basic3159-Node: Bank of Ireland3703-Ref: #bank-of-ireland3838-Node: Amazon5303-Ref: #amazon5421-Node: Paypal7142-Ref: #paypal7236-Node: CSV RULES14884-Ref: #csv-rules14993-Node: skip15305-Ref: #skip15398-Node: fields15770-Ref: #fields15892-Node: Transaction field names17053-Ref: #transaction-field-names17213-Node: Posting field names17324-Ref: #posting-field-names17476-Node: account17546-Ref: #account17662-Node: amount18198-Ref: #amount18329-Node: currency19430-Ref: #currency19565-Node: balance19770-Ref: #balance19904-Node: comment20221-Ref: #comment20338-Node: field assignment20500-Ref: #field-assignment20643-Node: separator21457-Ref: #separator21592-Node: if block22134-Ref: #if-block22259-Node: Matching the whole record22657-Ref: #matching-the-whole-record22832-Node: Matching individual fields23636-Ref: #matching-individual-fields23840-Node: Combining matchers24064-Ref: #combining-matchers24260-Node: Rules applied on successful match24574-Ref: #rules-applied-on-successful-match24765-Node: if table25422-Ref: #if-table25541-Node: end27277-Ref: #end27389-Node: date-format27613-Ref: #date-format27745-Node: decimal-mark28495-Ref: #decimal-mark28638-Node: newest-first28975-Ref: #newest-first29116-Node: include29799-Ref: #include29930-Node: balance-type30372-Ref: #balance-type30492-Node: TIPS31192-Ref: #tips31274-Node: Rapid feedback31530-Ref: #rapid-feedback31647-Node: Valid CSV32106-Ref: #valid-csv32236-Node: File Extension32428-Ref: #file-extension32580-Node: Reading multiple CSV files33009-Ref: #reading-multiple-csv-files33194-Node: Valid transactions33434-Ref: #valid-transactions33612-Node: Deduplicating importing34240-Ref: #deduplicating-importing34419-Node: Setting amounts35451-Ref: #setting-amounts35620-Node: Setting currency/commodity36607-Ref: #setting-currencycommodity36799-Node: Referencing other fields37979-Ref: #referencing-other-fields38179-Node: How CSV rules are evaluated39077-Ref: #how-csv-rules-are-evaluated39250--End Tag Table
− embeddedfiles/hledger_csv.txt
@@ -1,962 +0,0 @@--HLEDGER_CSV(5) hledger User Manuals HLEDGER_CSV(5)----NAME- How hledger reads CSV data, and the CSV rules file format.--DESCRIPTION- hledger can read CSV files (Character Separated Value - usually comma,- semicolon, or tab) containing dated records as if they were journal- files, automatically converting each CSV record into a transaction.-- (To learn about writing CSV, see CSV output.)-- We describe each CSV file's format with a corresponding rules file. By- default this is named like the CSV file with a .rules extension added.- Eg when reading FILE.csv, hledger also looks for FILE.csv.rules in the- same directory as FILE.csv. You can specify a different rules file- with the --rules-file option. If a rules file is not found, hledger- will create a sample rules file, which you'll need to adjust.-- This file contains rules describing the CSV data (header line, fields- layout, date format etc.), and how to construct hledger journal entries- (transactions) from it. Often there will also be a list of conditional- rules for categorising transactions based on their descriptions.- Here's an overview of the CSV rules; these are described more fully- below, after the examples:--- skip skip one or more header lines or matched- CSV records- fields name CSV fields, assign them to hledger- fields- field assignment assign a value to one hledger field,- with interpolation- separator a custom field separator- if block apply some rules to CSV records matched- by patterns- if table apply some rules to CSV records matched- by patterns, alternate syntax- end skip the remaining CSV records- date-format how to parse dates in CSV records- decimal-mark the decimal mark used in CSV amounts, if- ambiguous- newest-first disambiguate record order when there's- only one date- include inline another CSV rules file- balance-type choose which type of balance assignments- to use-- Note, for best error messages when reading CSV files, use a .csv, .tsv- or .ssv file extension or file prefix - see File Extension below.-- There's an introductory Convert CSV files tutorial on hledger.org.--EXAMPLES- Here are some sample hledger CSV rules files. See also the full col-- lection at:- https://github.com/simonmichael/hledger/tree/master/examples/csv-- Basic- At minimum, the rules file must identify the date and amount fields,- and often it also specifies the date format and how many header lines- there are. Here's a simple CSV file and a rules file for it:-- Date, Description, Id, Amount- 12/11/2019, Foo, 123, 10.23-- # basic.csv.rules- skip 1- fields date, description, _, amount- date-format %d/%m/%Y-- $ hledger print -f basic.csv- 2019-11-12 Foo- expenses:unknown 10.23- income:unknown -10.23-- Default account names are chosen, since we didn't set them.-- Bank of Ireland- Here's a CSV with two amount fields (Debit and Credit), and a balance- field, which we can use to add balance assertions, which is not neces-- sary but provides extra error checking:-- Date,Details,Debit,Credit,Balance- 07/12/2012,LODGMENT 529898,,10.0,131.21- 07/12/2012,PAYMENT,5,,126-- # bankofireland-checking.csv.rules-- # skip the header line- skip-- # name the csv fields, and assign some of them as journal entry fields- fields date, description, amount-out, amount-in, balance-- # We generate balance assertions by assigning to "balance"- # above, but you may sometimes need to remove these because:- #- # - the CSV balance differs from the true balance,- # by up to 0.0000000000005 in my experience- #- # - it is sometimes calculated based on non-chronological ordering,- # eg when multiple transactions clear on the same day-- # date is in UK/Ireland format- date-format %d/%m/%Y-- # set the currency- currency EUR-- # set the base account for all txns- account1 assets:bank:boi:checking-- $ hledger -f bankofireland-checking.csv print- 2012-12-07 LODGMENT 529898- assets:bank:boi:checking EUR10.0 = EUR131.2- income:unknown EUR-10.0-- 2012-12-07 PAYMENT- assets:bank:boi:checking EUR-5.0 = EUR126.0- expenses:unknown EUR5.0-- The balance assertions don't raise an error above, because we're read-- ing directly from CSV, but they will be checked if these entries are- imported into a journal file.-- Amazon- Here we convert amazon.com order history, and use an if block to gener-- ate a third posting if there's a fee. (In practice you'd probably get- this data from your bank instead, but it's an example.)-- "Date","Type","To/From","Name","Status","Amount","Fees","Transaction ID"- "Jul 29, 2012","Payment","To","Foo.","Completed","$20.00","$0.00","16000000000000DGLNJPI1P9B8DKPVHL"- "Jul 30, 2012","Payment","To","Adapteva, Inc.","Completed","$25.00","$1.00","17LA58JSKRD4HDGLNJPI1P9B8DKPVHL"-- # amazon-orders.csv.rules-- # skip one header line- skip 1-- # name the csv fields, and assign the transaction's date, amount and code.- # Avoided the "status" and "amount" hledger field names to prevent confusion.- fields date, _, toorfrom, name, amzstatus, amzamount, fees, code-- # how to parse the date- date-format %b %-d, %Y-- # combine two fields to make the description- description %toorfrom %name-- # save the status as a tag- comment status:%amzstatus-- # set the base account for all transactions- account1 assets:amazon- # leave amount1 blank so it can balance the other(s).- # I'm assuming amzamount excludes the fees, don't remember-- # set a generic account2- account2 expenses:misc- amount2 %amzamount- # and maybe refine it further:- #include categorisation.rules-- # add a third posting for fees, but only if they are non-zero.- if %fees [1-9]- account3 expenses:fees- amount3 %fees-- $ hledger -f amazon-orders.csv print- 2012-07-29 (16000000000000DGLNJPI1P9B8DKPVHL) To Foo. ; status:Completed- assets:amazon- expenses:misc $20.00-- 2012-07-30 (17LA58JSKRD4HDGLNJPI1P9B8DKPVHL) To Adapteva, Inc. ; status:Completed- assets:amazon- expenses:misc $25.00- expenses:fees $1.00-- Paypal- Here's a real-world rules file for (customised) Paypal CSV, with some- Paypal-specific rules, and a second rules file included:-- "Date","Time","TimeZone","Name","Type","Status","Currency","Gross","Fee","Net","From Email Address","To Email Address","Transaction ID","Item Title","Item ID","Reference Txn ID","Receipt ID","Balance","Note"- "10/01/2019","03:46:20","PDT","Calm Radio","Subscription Payment","Completed","USD","-6.99","0.00","-6.99","simon@joyful.com","memberships@calmradio.com","60P57143A8206782E","MONTHLY - $1 for the first 2 Months: Me - Order 99309. Item total: $1.00 USD first 2 months, then $6.99 / Month","","I-R8YLY094FJYR","","-6.99",""- "10/01/2019","03:46:20","PDT","","Bank Deposit to PP Account ","Pending","USD","6.99","0.00","6.99","","simon@joyful.com","0TU1544T080463733","","","60P57143A8206782E","","0.00",""- "10/01/2019","08:57:01","PDT","Patreon","PreApproved Payment Bill User Payment","Completed","USD","-7.00","0.00","-7.00","simon@joyful.com","support@patreon.com","2722394R5F586712G","Patreon* Membership","","B-0PG93074E7M86381M","","-7.00",""- "10/01/2019","08:57:01","PDT","","Bank Deposit to PP Account ","Pending","USD","7.00","0.00","7.00","","simon@joyful.com","71854087RG994194F","Patreon* Membership","","2722394R5F586712G","","0.00",""- "10/19/2019","03:02:12","PDT","Wikimedia Foundation, Inc.","Subscription Payment","Completed","USD","-2.00","0.00","-2.00","simon@joyful.com","tle@wikimedia.org","K9U43044RY432050M","Monthly donation to the Wikimedia Foundation","","I-R5C3YUS3285L","","-2.00",""- "10/19/2019","03:02:12","PDT","","Bank Deposit to PP Account ","Pending","USD","2.00","0.00","2.00","","simon@joyful.com","3XJ107139A851061F","","","K9U43044RY432050M","","0.00",""- "10/22/2019","05:07:06","PDT","Noble Benefactor","Subscription Payment","Completed","USD","10.00","-0.59","9.41","noble@bene.fac.tor","simon@joyful.com","6L8L1662YP1334033","Joyful Systems","","I-KC9VBGY2GWDB","","9.41",""-- # paypal-custom.csv.rules-- # Tips:- # Export from Activity -> Statements -> Custom -> Activity download- # Suggested transaction type: "Balance affecting"- # Paypal's default fields in 2018 were:- # "Date","Time","TimeZone","Name","Type","Status","Currency","Gross","Fee","Net","From Email Address","To Email Address","Transaction ID","Shipping Address","Address Status","Item Title","Item ID","Shipping and Handling Amount","Insurance Amount","Sales Tax","Option 1 Name","Option 1 Value","Option 2 Name","Option 2 Value","Reference Txn ID","Invoice Number","Custom Number","Quantity","Receipt ID","Balance","Address Line 1","Address Line 2/District/Neighborhood","Town/City","State/Province/Region/County/Territory/Prefecture/Republic","Zip/Postal Code","Country","Contact Phone Number","Subject","Note","Country Code","Balance Impact"- # This rules file assumes the following more detailed fields, configured in "Customize report fields":- # "Date","Time","TimeZone","Name","Type","Status","Currency","Gross","Fee","Net","From Email Address","To Email Address","Transaction ID","Item Title","Item ID","Reference Txn ID","Receipt ID","Balance","Note"-- fields date, time, timezone, description_, type, status_, currency, grossamount, feeamount, netamount, fromemail, toemail, code, itemtitle, itemid, referencetxnid, receiptid, balance, note-- skip 1-- date-format %-m/%-d/%Y-- # ignore some paypal events- if- In Progress- Temporary Hold- Update to- skip-- # add more fields to the description- description %description_ %itemtitle-- # save some other fields as tags- comment itemid:%itemid, fromemail:%fromemail, toemail:%toemail, time:%time, type:%type, status:%status_-- # convert to short currency symbols- if %currency USD- currency $- if %currency EUR- currency E- if %currency GBP- currency P-- # generate postings-- # the first posting will be the money leaving/entering my paypal account- # (negative means leaving my account, in all amount fields)- account1 assets:online:paypal- amount1 %netamount-- # the second posting will be money sent to/received from other party- # (account2 is set below)- amount2 -%grossamount-- # if there's a fee, add a third posting for the money taken by paypal.- if %feeamount [1-9]- account3 expenses:banking:paypal- amount3 -%feeamount- comment3 business:-- # choose an account for the second posting-- # override the default account names:- # if the amount is positive, it's income (a debit)- if %grossamount ^[^-]- account2 income:unknown- # if negative, it's an expense (a credit)- if %grossamount ^-- account2 expenses:unknown-- # apply common rules for setting account2 & other tweaks- include common.rules-- # apply some overrides specific to this csv-- # Transfers from/to bank. These are usually marked Pending,- # which can be disregarded in this case.- if- Bank Account- Bank Deposit to PP Account- description %type for %referencetxnid %itemtitle- account2 assets:bank:wf:pchecking- account1 assets:online:paypal-- # Currency conversions- if Currency Conversion- account2 equity:currency conversion-- # common.rules-- if- darcs- noble benefactor- account2 revenues:foss donations:darcshub- comment2 business:-- if- Calm Radio- account2 expenses:online:apps-- if- electronic frontier foundation- Patreon- wikimedia- Advent of Code- account2 expenses:dues-- if Google- account2 expenses:online:apps- description google | music-- $ hledger -f paypal-custom.csv print- 2019-10-01 (60P57143A8206782E) Calm Radio MONTHLY - $1 for the first 2 Months: Me - Order 99309. Item total: $1.00 USD first 2 months, then $6.99 / Month ; itemid:, fromemail:simon@joyful.com, toemail:memberships@calmradio.com, time:03:46:20, type:Subscription Payment, status:Completed- assets:online:paypal $-6.99 = $-6.99- expenses:online:apps $6.99-- 2019-10-01 (0TU1544T080463733) Bank Deposit to PP Account for 60P57143A8206782E ; itemid:, fromemail:, toemail:simon@joyful.com, time:03:46:20, type:Bank Deposit to PP Account, status:Pending- assets:online:paypal $6.99 = $0.00- assets:bank:wf:pchecking $-6.99-- 2019-10-01 (2722394R5F586712G) Patreon Patreon* Membership ; itemid:, fromemail:simon@joyful.com, toemail:support@patreon.com, time:08:57:01, type:PreApproved Payment Bill User Payment, status:Completed- assets:online:paypal $-7.00 = $-7.00- expenses:dues $7.00-- 2019-10-01 (71854087RG994194F) Bank Deposit to PP Account for 2722394R5F586712G Patreon* Membership ; itemid:, fromemail:, toemail:simon@joyful.com, time:08:57:01, type:Bank Deposit to PP Account, status:Pending- assets:online:paypal $7.00 = $0.00- assets:bank:wf:pchecking $-7.00-- 2019-10-19 (K9U43044RY432050M) Wikimedia Foundation, Inc. Monthly donation to the Wikimedia Foundation ; itemid:, fromemail:simon@joyful.com, toemail:tle@wikimedia.org, time:03:02:12, type:Subscription Payment, status:Completed- assets:online:paypal $-2.00 = $-2.00- expenses:dues $2.00- expenses:banking:paypal ; business:-- 2019-10-19 (3XJ107139A851061F) Bank Deposit to PP Account for K9U43044RY432050M ; itemid:, fromemail:, toemail:simon@joyful.com, time:03:02:12, type:Bank Deposit to PP Account, status:Pending- assets:online:paypal $2.00 = $0.00- assets:bank:wf:pchecking $-2.00-- 2019-10-22 (6L8L1662YP1334033) Noble Benefactor Joyful Systems ; itemid:, fromemail:noble@bene.fac.tor, toemail:simon@joyful.com, time:05:07:06, type:Subscription Payment, status:Completed- assets:online:paypal $9.41 = $9.41- revenues:foss donations:darcshub $-10.00 ; business:- expenses:banking:paypal $0.59 ; business:--CSV RULES- The following kinds of rule can appear in the rules file, in any order.- Blank lines and lines beginning with # or ; are ignored.-- skip- skip N-- The word "skip" followed by a number (or no number, meaning 1) tells- hledger to ignore this many non-empty lines preceding the CSV data.- (Empty/blank lines are skipped automatically.) You'll need this when-- ever your CSV data contains header lines.-- It also has a second purpose: it can be used inside if blocks to ignore- certain CSV records (described below).-- fields- fields FIELDNAME1, FIELDNAME2, ...-- A fields list (the word "fields" followed by comma-separated field- names) is the quick way to assign CSV field values to hledger fields.- It does two things:-- 1. it names the CSV fields. This is optional, but can be convenient- later for interpolating them.-- 2. when you use a standard hledger field name, it assigns the CSV value- to that part of the hledger transaction.-- Here's an example that says "use the 1st, 2nd and 4th fields as the- transaction's date, description and amount; name the last two fields- for later reference; and ignore the others":-- fields date, description, , amount, , , somefield, anotherfield-- Field names may not contain whitespace. Fields you don't care about- can be left unnamed. Currently there must be least two items (there- must be at least one comma).-- Note, always use comma in the fields list, even if your CSV uses- another separator character.-- Here are the standard hledger field/pseudo-field names. For more about- the transaction parts they refer to, see the manual for hledger's jour-- nal format.-- Transaction field names- date, date2, status, code, description, comment can be used to form the- transaction's first line.-- Posting field names- account- accountN, where N is 1 to 99, causes a posting to be generated, with- that account name.-- Most often there are two postings, so you'll want to set account1 and- account2. Typically account1 is associated with the CSV file, and is- set once with a top-level assignment, while account2 is set based on- each transaction's description, and in conditional blocks.-- If a posting's account name is left unset but its amount is set (see- below), a default account name will be chosen (like "expenses:unknown"- or "income:unknown").-- amount- amountN sets posting N's amount. If the CSV uses separate fields for- inflows and outflows, you can use amountN-in and amountN-out instead.- By assigning to amount1, amount2, ... etc. you can generate anywhere- from 0 to 99 postings.-- There is also an older, unnumbered form of these names, suitable for- 2-posting transactions, which sets both posting 1's and (negated) post-- ing 2's amount: amount, or amount-in and amount-out. This is still- supported because it keeps pre-hledger-1.17 csv rules files working,- and because it can be more succinct, and because it converts posting- 2's amount to cost if there's a transaction price, which can be useful.-- If you have an existing rules file using the unnumbered form, you might- want to use the numbered form in certain conditional blocks, without- having to update and retest all the old rules. To facilitate this,- posting 1 ignores amount/amount-in/amount-out if any of- amount1/amount1-in/amount1-out are assigned, and posting 2 ignores them- if any of amount2/amount2-in/amount2-out are assigned, avoiding con-- flicts.-- currency- If the CSV has the currency symbol in a separate field (ie, not part of- the amount field), you can use currencyN to prepend it to posting N's- amount. Or, currency with no number affects all postings.-- balance- balanceN sets a balance assertion amount (or if the posting amount is- left empty, a balance assignment) on posting N.-- Also, for compatibility with hledger <1.17: balance with no number is- equivalent to balance1.-- You can adjust the type of assertion/assignment with the balance-type- rule (see below).-- comment- Finally, commentN sets a comment on the Nth posting. Comments can also- contain tags, as usual.-- See TIPS below for more about setting amounts and currency.-- field assignment- HLEDGERFIELDNAME FIELDVALUE-- Instead of or in addition to a fields list, you can use a "field- assignment" rule to set the value of a single hledger field, by writing- its name (any of the standard hledger field names above) followed by a- text value. The value may contain interpolated CSV fields, referenced- by their 1-based position in the CSV record (%N), or by the name they- were given in the fields list (%CSVFIELDNAME). Some examples:-- # set the amount to the 4th CSV field, with " USD" appended- amount %4 USD-- # combine three fields to make a comment, containing note: and date: tags- comment note: %somefield - %anotherfield, date: %1-- Interpolation strips outer whitespace (so a CSV value like " 1 "- becomes 1 when interpolated) (#1051). See TIPS below for more about- referencing other fields.-- separator- You can use the separator rule to read other kinds of character-sepa-- rated data. The argument is any single separator character, or the- words tab or space (case insensitive). Eg, for comma-separated values- (CSV):-- separator ,-- or for semicolon-separated values (SSV):-- separator ;-- or for tab-separated values (TSV):-- separator TAB-- If the input file has a .csv, .ssv or .tsv file extension (or a csv:,- ssv:, tsv: prefix), the appropriate separator will be inferred automat-- ically, and you won't need this rule.-- if block- if MATCHER- RULE-- if- MATCHER- MATCHER- MATCHER- RULE- RULE-- Conditional blocks ("if blocks") are a block of rules that are applied- only to CSV records which match certain patterns. They are often used- for customising account names based on transaction descriptions.-- Matching the whole record- Each MATCHER can be a record matcher, which looks like this:-- REGEX-- REGEX is a case-insensitive regular expression which tries to match- anywhere within the CSV record. It is a POSIX ERE (extended regular- expression) that also supports GNU word boundaries (\b, \B, \<, \>),- and nothing else. If you have trouble, be sure to check our- https://hledger.org/hledger.html#regular-expressions doc.-- Important note: the record that is matched is not the original record,- but a synthetic one, with any enclosing double quotes (but not enclos-- ing whitespace) removed, and always comma-separated (which means that a- field containing a comma will appear like two fields). Eg, if the- original record is 2020-01-01; "Acme, Inc."; 1,000, the REGEX will- actually see 2020-01-01,Acme, Inc., 1,000).-- Matching individual fields- Or, MATCHER can be a field matcher, like this:-- %CSVFIELD REGEX-- which matches just the content of a particular CSV field. CSVFIELD is- a percent sign followed by the field's name or column number, like- %date or %1.-- Combining matchers- A single matcher can be written on the same line as the "if"; or multi-- ple matchers can be written on the following lines, non-indented. Mul-- tiple matchers are OR'd (any one of them can match), unless one begins- with an & symbol, in which case it is AND'ed with the previous matcher.-- if- MATCHER- & MATCHER- RULE-- Rules applied on successful match- After the patterns there should be one or more rules to apply, all- indented by at least one space. Three kinds of rule are allowed in- conditional blocks:-- o field assignments (to set a hledger field)-- o skip (to skip the matched CSV record)-- o end (to skip all remaining CSV records).-- Examples:-- # if the CSV record contains "groceries", set account2 to "expenses:groceries"- if groceries- account2 expenses:groceries-- # if the CSV record contains any of these patterns, set account2 and comment as shown- if- monthly service fee- atm transaction fee- banking thru software- account2 expenses:business:banking- comment XXX deductible ? check it-- if table- if,CSVFIELDNAME1,CSVFIELDNAME2,...,CSVFIELDNAMEn- MATCHER1,VALUE11,VALUE12,...,VALUE1n- MATCHER2,VALUE21,VALUE22,...,VALUE2n- MATCHER3,VALUE31,VALUE32,...,VALUE3n- <empty line>-- Conditional tables ("if tables") are a different syntax to specify- field assignments that will be applied only to CSV records which match- certain patterns.-- MATCHER could be either field or record matcher, as described above.- When MATCHER matches, values from that row would be assigned to the CSV- fields named on the if line, in the same order.-- Therefore if table is exactly equivalent to a sequence of of if blocks:-- if MATCHER1- CSVFIELDNAME1 VALUE11- CSVFIELDNAME2 VALUE12- ...- CSVFIELDNAMEn VALUE1n-- if MATCHER2- CSVFIELDNAME1 VALUE21- CSVFIELDNAME2 VALUE22- ...- CSVFIELDNAMEn VALUE2n-- if MATCHER3- CSVFIELDNAME1 VALUE31- CSVFIELDNAME2 VALUE32- ...- CSVFIELDNAMEn VALUE3n-- Each line starting with MATCHER should contain enough (possibly empty)- values for all the listed fields.-- Rules would be checked and applied in the order they are listed in the- table and, like with if blocks, later rules (in the same or another ta-- ble) or if blocks could override the effect of any rule.-- Instead of ',' you can use a variety of other non-alphanumeric charac-- ters as a separator. First character after if is taken to be the sepa-- rator for the rest of the table. It is the responsibility of the user- to ensure that separator does not occur inside MATCHERs and values -- there is no way to escape separator.-- Example:-- if,account2,comment- atm transaction fee,expenses:business:banking,deductible? check it- %description groceries,expenses:groceries,- 2020/01/12.*Plumbing LLC,expenses:house:upkeep,emergency plumbing call-out-- end- This rule can be used inside if blocks (only), to make hledger stop- reading this CSV file and move on to the next input file, or to command- execution. Eg:-- # ignore everything following the first empty record- if ,,,,- end-- date-format- date-format DATEFMT-- This is a helper for the date (and date2) fields. If your CSV dates- are not formatted like YYYY-MM-DD, YYYY/MM/DD or YYYY.MM.DD, you'll- need to add a date-format rule describing them with a strptime date- parsing pattern, which must parse the CSV date value completely. Some- examples:-- # MM/DD/YY- date-format %m/%d/%y-- # D/M/YYYY- # The - makes leading zeros optional.- date-format %-d/%-m/%Y-- # YYYY-Mmm-DD- date-format %Y-%h-%d-- # M/D/YYYY HH:MM AM some other junk- # Note the time and junk must be fully parsed, though only the date is used.- date-format %-m/%-d/%Y %l:%M %p some other junk-- For the supported strptime syntax, see:- https://hackage.haskell.org/package/time/docs/Data-Time-For-- mat.html#v:formatTime-- decimal-mark- decimal-mark .-- or:-- decimal-mark ,-- hledger automatically accepts either period or comma as a decimal mark- when parsing numbers (cf Amounts). However if any numbers in the CSV- contain digit group marks, such as thousand-separating commas, you- should declare the decimal mark explicitly with this rule, to avoid- misparsed numbers.-- newest-first- hledger always sorts the generated transactions by date. Transactions- on the same date should appear in the same order as their CSV records,- as hledger can usually auto-detect whether the CSV's normal order is- oldest first or newest first. But if all of the following are true:-- o the CSV might sometimes contain just one day of data (all records- having the same date)-- o the CSV records are normally in reverse chronological order (newest- at the top)-- o and you care about preserving the order of same-day transactions-- then, you should add the newest-first rule as a hint. Eg:-- # tell hledger explicitly that the CSV is normally newest first- newest-first-- include- include RULESFILE-- This includes the contents of another CSV rules file at this point.- RULESFILE is an absolute file path or a path relative to the current- file's directory. This can be useful for sharing common rules between- several rules files, eg:-- # someaccount.csv.rules-- ## someaccount-specific rules- fields date,description,amount- account1 assets:someaccount- account2 expenses:misc-- ## common rules- include categorisation.rules-- balance-type- Balance assertions generated by assigning to balanceN are of the simple- = type by default, which is a single-commodity, subaccount-excluding- assertion. You may find the subaccount-including variants more useful,- eg if you have created some virtual subaccounts of checking to help- with budgeting. You can select a different type of assertion with the- balance-type rule:-- # balance assertions will consider all commodities and all subaccounts- balance-type ==*-- Here are the balance assertion types for quick reference:-- = single commodity, exclude subaccounts- =* single commodity, include subaccounts- == multi commodity, exclude subaccounts- ==* multi commodity, include subaccounts--TIPS- Rapid feedback- It's a good idea to get rapid feedback while creating/troubleshooting- CSV rules. Here's a good way, using entr from http://eradman.com/entr-- project :-- $ ls foo.csv* | entr bash -c 'echo ----; hledger -f foo.csv print desc:SOMEDESC'-- A desc: query (eg) is used to select just one, or a few, transactions- of interest. "bash -c" is used to run multiple commands, so we can- echo a separator each time the command re-runs, making it easier to- read the output.-- Valid CSV- hledger accepts CSV conforming to RFC 4180. When CSV values are- enclosed in quotes, note:-- o they must be double quotes (not single quotes)-- o spaces outside the quotes are not allowed-- File Extension- To help hledger identify the format and show the right error messages,- CSV/SSV/TSV files should normally be named with a .csv, .ssv or .tsv- filename extension. Or, the file path should be prefixed with csv:,- ssv: or tsv:. Eg:-- $ hledger -f foo.ssv print-- or:-- $ cat foo | hledger -f ssv:- foo-- You can override the file extension with a separator rule if needed.- See also: Input files in the hledger manual.-- Reading multiple CSV files- If you use multiple -f options to read multiple CSV files at once,- hledger will look for a correspondingly-named rules file for each CSV- file. But if you use the --rules-file option, that rules file will be- used for all the CSV files.-- Valid transactions- After reading a CSV file, hledger post-processes and validates the gen-- erated journal entries as it would for a journal file - balancing them,- applying balance assignments, and canonicalising amount styles. Any- errors at this stage will be reported in the usual way, displaying the- problem entry.-- There is one exception: balance assertions, if you have generated them,- will not be checked, since normally these will work only when the CSV- data is part of the main journal. If you do need to check balance- assertions generated from CSV right away, pipe into another hledger:-- $ hledger -f file.csv print | hledger -f- print-- Deduplicating, importing- When you download a CSV file periodically, eg to get your latest bank- transactions, the new file may overlap with the old one, containing- some of the same records.-- The import command will (a) detect the new transactions, and (b) append- just those transactions to your main journal. It is idempotent, so you- don't have to remember how many times you ran it or with which version- of the CSV. (It keeps state in a hidden .latest.FILE.csv file.) This- is the easiest way to import CSV data. Eg:-- # download the latest CSV files, then run this command.- # Note, no -f flags needed here.- $ hledger import *.csv [--dry]-- This method works for most CSV files. (Where records have a stable- chronological order, and new records appear only at the new end.)-- A number of other tools and workflows, hledger-specific and otherwise,- exist for converting, deduplicating, classifying and managing CSV data.- See:-- o https://hledger.org -> sidebar -> real world setups-- o https://plaintextaccounting.org -> data import/conversion-- Setting amounts- A posting amount can be set in one of these ways:-- o by assigning (with a fields list or field assignment) to amountN- (posting N's amount) or amount (posting 1's amount)-- o by assigning to amountN-in and amountN-out (or amount-in and amount-- out). For each CSV record, whichever of these has a non-zero value- will be used, with appropriate sign. If both contain a non-zero- value, this may not work.-- o by assigning to balanceN (or balance) instead of the above, setting- the amount indirectly via a balance assignment. If you do this the- default account name may be wrong, so you should set that explicitly.-- There is some special handling for an amount's sign:-- o If an amount value is parenthesised, it will be de-parenthesised and- sign-flipped.-- o If an amount value begins with a double minus sign, those cancel out- and are removed.-- o If an amount value begins with a plus sign, that will be removed-- Setting currency/commodity- If the currency/commodity symbol is included in the CSV's amount- field(s):-- 2020-01-01,foo,$123.00-- you don't have to do anything special for the commodity symbol, it will- be assigned as part of the amount. Eg:-- fields date,description,amount-- 2020-01-01 foo- expenses:unknown $123.00- income:unknown $-123.00-- If the currency is provided as a separate CSV field:-- 2020-01-01,foo,USD,123.00-- You can assign that to the currency pseudo-field, which has the special- effect of prepending itself to every amount in the transaction (on the- left, with no separating space):-- fields date,description,currency,amount-- 2020-01-01 foo- expenses:unknown USD123.00- income:unknown USD-123.00-- Or, you can use a field assignment to construct the amount yourself,- with more control. Eg to put the symbol on the right, and separated by- a space:-- fields date,description,cur,amt- amount %amt %cur-- 2020-01-01 foo- expenses:unknown 123.00 USD- income:unknown -123.00 USD-- Note we used a temporary field name (cur) that is not currency - that- would trigger the prepending effect, which we don't want here.-- Referencing other fields- In field assignments, you can interpolate only CSV fields, not hledger- fields. In the example below, there's both a CSV field and a hledger- field named amount1, but %amount1 always means the CSV field, not the- hledger field:-- # Name the third CSV field "amount1"- fields date,description,amount1-- # Set hledger's amount1 to the CSV amount1 field followed by USD- amount1 %amount1 USD-- # Set comment to the CSV amount1 (not the amount1 assigned above)- comment %amount1-- Here, since there's no CSV amount1 field, %amount1 will produce a lit-- eral "amount1":-- fields date,description,csvamount- amount1 %csvamount USD- # Can't interpolate amount1 here- comment %amount1-- When there are multiple field assignments to the same hledger field,- only the last one takes effect. Here, comment's value will be be B, or- C if "something" is matched, but never A:-- comment A- comment B- if something- comment C-- How CSV rules are evaluated- Here's how to think of CSV rules being evaluated (if you really need- to). First,-- o include - all includes are inlined, from top to bottom, depth first.- (At each include point the file is inlined and scanned for further- includes, recursively, before proceeding.)-- Then "global" rules are evaluated, top to bottom. If a rule is- repeated, the last one wins:-- o skip (at top level)-- o date-format-- o newest-first-- o fields - names the CSV fields, optionally sets up initial assignments- to hledger fields-- Then for each CSV record in turn:-- o test all if blocks. If any of them contain a end rule, skip all- remaining CSV records. Otherwise if any of them contain a skip rule,- skip that many CSV records. If there are multiple matched skip- rules, the first one wins.-- o collect all field assignments at top level and in matched if blocks.- When there are multiple assignments for a field, keep only the last- one.-- o compute a value for each hledger field - either the one that was- assigned to it (and interpolate the %CSVFIELDNAME references), or a- default-- o generate a synthetic hledger transaction from these values.-- This is all part of the CSV reader, one of several readers hledger can- use to parse input files. When all files have been read successfully,- the transactions are passed as input to whichever hledger command the- user specified.----REPORTING BUGS- Report bugs at http://bugs.hledger.org (or on the #hledger IRC channel- or hledger mail list)---AUTHORS- Simon Michael <simon@joyful.com> and contributors---COPYRIGHT- Copyright (C) 2007-2020 Simon Michael.- Released under GNU GPL v3 or later.---SEE ALSO- hledger(1), hledger-ui(1), hledger-web(1), ledger(1)-- hledger_journal(5), hledger_csv(5), hledger_timeclock(5), hledger_time-- dot(5)----hledger-lib-1.20.4 December 2020 HLEDGER_CSV(5)
− embeddedfiles/hledger_journal.5
@@ -1,2153 +0,0 @@-.\"t--.TH "HLEDGER_JOURNAL" "5" "December 2020" "hledger-lib-1.20.4 " "hledger User Manuals"----.SH NAME-.PP-hledger\[aq]s default file format, representing a General Journal.-.SH DESCRIPTION-.PP-hledger\[aq]s usual data source is a plain text file containing journal-entries in hledger journal format.-This file represents a standard accounting general journal.-I use file names ending in \f[C].journal\f[R], but that\[aq]s not-required.-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-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.-.PP-You can use hledger without learning any more about this file; just use-the add or web or import commands to create and update it.-.PP-Many users, though, edit the journal file with a text editor, and track-changes with a version control system such as git.-Editor addons such as ledger-mode or hledger-mode for Emacs, vim-ledger-for Vim, and hledger-vscode for Visual Studio Code, make this easier,-adding colour, formatting, tab completion, and useful commands.-See Editor configuration at hledger.org for the full list.-.PP-Here\[aq]s a description of each part of the file format (and-hledger\[aq]s data model).-These are mostly in the order you\[aq]ll use them, but in some cases-related concepts have been grouped together for easy reference, or-linked before they are introduced, so feel free to skip over anything-that looks unnecessary right now.-.SH TRANSACTIONS-.PP-Transactions are the main unit of information in a journal file.-They represent events, typically a movement of some quantity of-commodities between two or more named accounts.-.PP-Each transaction is recorded as a journal entry, beginning with a simple-date in column 0.-This can be followed by any of the following optional fields, separated-by spaces:-.IP \[bu] 2-a status character (empty, \f[C]!\f[R], or \f[C]*\f[R])-.IP \[bu] 2-a code (any short number or text, enclosed in parentheses)-.IP \[bu] 2-a description (any remaining text until end of line or a semicolon)-.IP \[bu] 2-a comment (any remaining text following a semicolon until end of line,-and any following indented lines beginning with a semicolon)-.IP \[bu] 2-0 or more indented \f[I]posting\f[R] lines, describing what was-transferred and the accounts involved (indented comment lines are also-allowed, but not blank lines or non-indented lines).-.PP-Here\[aq]s a simple journal file containing one transaction:-.IP-.nf-\f[C]-2008/01/01 income- assets:bank:checking $1- income:salary $-1-\f[R]-.fi-.SH DATES-.SS Simple dates-.PP-Dates in the journal file use \f[I]simple dates\f[R] format:-\f[C]YYYY-MM-DD\f[R] or \f[C]YYYY/MM/DD\f[R] or \f[C]YYYY.MM.DD\f[R],-with leading zeros optional.-The year may be omitted, in which case it will be inferred from the-context: the current transaction, the default year set with a default-year directive, or the current date when the command is run.-Some examples: \f[C]2010-01-31\f[R], \f[C]2010/01/31\f[R],-\f[C]2010.1.31\f[R], \f[C]1/31\f[R].-.PP-(The UI also accepts simple dates, as well as the more flexible smart-dates documented in the hledger manual.)-.SS Secondary dates-.PP-Real-life transactions sometimes involve more than one date - eg the-date you write a cheque, and the date it clears in your bank.-When you want to model this, for more accurate daily balances, you can-specify individual posting dates.-.PP-Or, you can use the older \f[I]secondary date\f[R] feature (Ledger calls-it auxiliary date or effective date).-Note: we support this for compatibility, but I usually recommend-avoiding this feature; posting dates are almost always clearer and-simpler.-.PP-A secondary date is written after the primary date, following an equals-sign.-If the year is omitted, the primary date\[aq]s year is assumed.-When running reports, the primary (left) date is used by default, but-with the \f[C]--date2\f[R] flag (or \f[C]--aux-date\f[R] or-\f[C]--effective\f[R]), the secondary (right) date will be used instead.-.PP-The meaning of secondary dates is up to you, but it\[aq]s best to follow-a consistent rule.-Eg \[dq]primary = the bank\[aq]s clearing date, secondary = date the-transaction was initiated, if different\[dq], as shown here:-.IP-.nf-\f[C]-2010/2/23=2/19 movie ticket- expenses:cinema $10- assets:checking-\f[R]-.fi-.IP-.nf-\f[C]-$ hledger register checking-2010-02-23 movie ticket assets:checking $-10 $-10-\f[R]-.fi-.IP-.nf-\f[C]-$ hledger register checking --date2-2010-02-19 movie ticket assets:checking $-10 $-10-\f[R]-.fi-.SS Posting dates-.PP-You can give individual postings a different date from their parent-transaction, by adding a posting comment containing a tag (see below)-like \f[C]date:DATE\f[R].-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- expenses:food $10 ; food purchased on saturday 5/30- assets:checking ; bank cleared it on monday, date:6/1-\f[R]-.fi-.IP-.nf-\f[C]-$ hledger -f t.j register food-2015-05-30 expenses:food $10 $10-\f[R]-.fi-.IP-.nf-\f[C]-$ hledger -f t.j register checking-2015-06-01 assets:checking $-10 $-10-\f[R]-.fi-.PP-DATE should be a simple date; if the year is not specified it will use-the year of the transaction\[aq]s date.-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.-.PP-Ledger\[aq]s earlier, more compact bracketed date syntax is also-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.-With this syntax, DATE infers its year from the transaction and DATE2-infers its year from DATE.-.SH STATUS-.PP-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:-.PP-.TS-tab(@);-l l.-T{-mark \ -T}@T{-status-T}-_-T{-\ -T}@T{-unmarked-T}-T{-\f[C]!\f[R]-T}@T{-pending-T}-T{-\f[C]*\f[R]-T}@T{-cleared-T}-.TE-.PP-When reporting, you can filter by status with the-\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.-.PP-Note, in Ledger and in older versions of hledger, the \[dq]unmarked\[dq]-state is called \[dq]uncleared\[dq].-As of hledger 1.3 we have renamed it to unmarked for clarity.-.PP-To replicate Ledger and old hledger\[aq]s behaviour of also matching-pending, combine -U and -P.-.PP-Status marks are optional, but can be helpful eg for reconciling with-real-world accounts.-Some editor modes provide highlighting and shortcuts for working with-status.-Eg in Emacs ledger-mode, you can toggle transaction status with C-c C-e,-or posting status with C-c C-c.-.PP-What \[dq]uncleared\[dq], \[dq]pending\[dq], and \[dq]cleared\[dq]-actually mean is up to you.-Here\[aq]s one suggestion:-.PP-.TS-tab(@);-lw(9.7n) lw(60.3n).-T{-status-T}@T{-meaning-T}-_-T{-uncleared-T}@T{-recorded but not yet reconciled; needs review-T}-T{-pending-T}@T{-tentatively reconciled (if needed, eg during a big reconciliation)-T}-T{-cleared-T}@T{-complete, reconciled as far as possible, and considered correct-T}-.TE-.PP-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-bank soon (like uncashed checks), and no flags to see the most-up-to-date state of your finances.-.SH DESCRIPTION-.PP-A transaction\[aq]s description is the rest of the line following the-date and status mark (or until a comment begins).-Sometimes called the \[dq]narration\[dq] in traditional bookkeeping, it-can be used for whatever you wish, or left blank.-Transaction descriptions can be queried, unlike comments.-.SS Payee and note-.PP-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]).-This may be worthwhile if you need to do more precise querying and-pivoting by payee or by note.-.SH COMMENTS-.PP-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.)-.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.-Transaction and posting comments must begin with a semicolon-(\f[C];\f[R]).-.PP-Some examples:-.IP-.nf-\f[C]-# a file comment-; another file comment-* also a file comment, useful in org/orgstruct mode--comment-A multiline file comment, which continues-until a line containing just \[dq]end comment\[dq]-(or end of file).-end comment--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]-.fi-.PP-You can also comment larger regions of a file using \f[C]comment\f[R]-and \f[C]end comment\f[R] directives.-.SH TAGS-.PP-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]-2017/1/16 bought groceries ; sometag:-\f[R]-.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]- expenses:food $10 ; a-posting-tag: the tag value-\f[R]-.fi-.PP-Note this means hledger\[aq]s tag values can not contain commas or-newlines.-Ending at commas means you can write multiple short tags on one line,-comma separated:-.IP-.nf-\f[C]- assets:checking ; a comment containing tag1:, tag2: some value ...-\f[R]-.fi-.PP-Here,-.IP \[bu] 2-\[dq]\f[C]a comment containing\f[R]\[dq] is just comment text, not a tag-.IP \[bu] 2-\[dq]\f[C]tag1\f[R]\[dq] is a tag with no value-.IP \[bu] 2-\[dq]\f[C]tag2\f[R]\[dq] is another tag, whose value is-\[dq]\f[C]some value ...\f[R]\[dq]-.PP-Tags in a transaction comment affect the transaction and all of its-postings, while tags in a posting comment affect only that posting.-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]):-.IP-.nf-\f[C]-1/1 a transaction ; A:, TAG2:- ; third-tag: a third transaction tag, <- with a value- (a) $1 ; posting-tag:-\f[R]-.fi-.PP-Tags are like Ledger\[aq]s metadata feature, except hledger\[aq]s tag-values are simple strings.-.SH 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:-.IP \[bu] 2-(optional) a status character (empty, \f[C]!\f[R], or \f[C]*\f[R]),-followed by a space-.IP \[bu] 2-(required) an account name (any text, optionally containing \f[B]single-spaces\f[R], until end of line or a double space)-.IP \[bu] 2-(optional) \f[B]two or more spaces\f[R] or tabs followed by an amount.-.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-Be sure to note the unusual two-space delimiter between account name and-amount.-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.-.SS Virtual postings-.PP-A posting with a parenthesised account name is called a \f[I]virtual-posting\f[R] or \f[I]unbalanced posting\f[R], which means it is exempt-from the usual rule that a transaction\[aq]s postings must balance add-up to zero.-.PP-This is not part of double entry accounting, so you might choose to-avoid this feature.-Or you can use it sparingly for certain special cases where it can be-convenient.-Eg, you could set opening balances without using a balancing equity-account:-.IP-.nf-\f[C]-1/1 opening balances- (assets:checking) $1000- (assets:savings) $2000-\f[R]-.fi-.PP-A posting with a bracketed account name is called a \f[I]balanced-virtual posting\f[R].-The balanced virtual postings in a transaction must add up to zero-(separately from other postings).-Eg:-.IP-.nf-\f[C]-1/1 buy food with cash, update budget envelope subaccounts, & something else- assets:cash $-10 ; <- these balance- expenses:food $7 ; <-- expenses:food $3 ; <-- [assets:checking:budget:food] $-10 ; <- and these balance- [assets:checking:available] $10 ; <-- (something:else) $5 ; <- not required to balance-\f[R]-.fi-.PP-Ordinary non-parenthesised, non-bracketed postings are called \f[I]real-postings\f[R].-You can exclude virtual postings from reports with the-\f[C]-R/--real\f[R] flag or \f[C]real:1\f[R] query.-.SH ACCOUNT NAMES-.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-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].-.PP-Account names may contain single spaces, eg:-\f[C]assets:accounts receivable\f[R].-Because of this, they must always be followed by \f[B]two or more-spaces\f[R] (or newline).-.PP-Account names can be aliased.-.SH AMOUNTS-.PP-After the account name, there is usually an amount.-(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 preceded by a minus sign (or a plus sign, though plus is-the default), The sign can be written before or after a left-side-commodity symbol:-.IP-.nf-\f[C]--$1-$-1-\f[R]-.fi-.PP-One or more spaces between the sign and the number are acceptable when-parsing (but they won\[aq]t be displayed in output):-.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 can be written as 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:-.IP-.nf-\f[C]-commodity $1,000.00-commodity EUR 1.000,00-commodity INR 9,99,99,999.00-commodity 1 000 000.9455-\f[R]-.fi-.PP-.SS Commodity display style-.PP-For each commodity, hledger chooses a consistent style to use when-displaying amounts.-(Except price amounts, which are always displayed as written).-The display style is chosen as follows:-.IP \[bu] 2-If there is a commodity directive (or default commodity directive) for-the commodity, its style is used (see examples above).-.IP \[bu] 2-Otherwise the style is inferred from the amounts in that commodity seen-in the journal.-.IP \[bu] 2-Or if there are no such amounts in the journal, a default style is used-(like \f[C]$1000.00\f[R]).-.PP-A style is inferred from the journal amounts in a commodity as follows:-.IP \[bu] 2-Use the general style (decimal mark, symbol placement) of the first-amount-.IP \[bu] 2-Use the first-seen digit group style (digit group mark, digit group-sizes), if any-.IP \[bu] 2-Use the maximum number of decimal places of all.-.PP-Transaction price amounts don\[aq]t affect the commodity display style-directly, but occasionally they can do so indirectly (eg when a-posting\[aq]s amount is inferred using a transaction price).-If you find this causing problems, use a commodity directive to fix the-display style.-.PP-In summary, each commodity\[aq]s amounts will be normalised to-.IP \[bu] 2-the style declared by a \f[C]commodity\f[R] directive-.IP \[bu] 2-or, the style of the first posting amount in the journal, with the-first-seen digit group style and the maximum-seen number of decimal-places.-.PP-If reports are showing amounts in a way you don\[aq]t like (eg, with too-many decimal places), use a commodity directive to set your preferred-style.-.SS Rounding-.PP-Amounts are stored internally as decimal numbers with up to 255 decimal-places, and displayed with the number of decimal places specified by the-commodity display style.-Note, hledger uses banker\[aq]s rounding: it rounds to the nearest even-number, eg 0.5 displayed with zero decimal places is \[dq]0\[dq]).-(Guaranteed since hledger 1.17.1; in older versions this could vary if-hledger was built with Decimal < 0.5.1.)-.SH TRANSACTION PRICES-.PP-Within a transaction, you can note an amount\[aq]s price in another-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.-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.-.PP-There are several ways to record a transaction price:-.IP "1." 3-Write the price per unit, as \f[C]\[at] UNITPRICE\f[R] after the amount:-.RS 4-.IP-.nf-\f[C]-2009/1/1- assets:euros \[Eu]100 \[at] $1.35 ; one hundred euros purchased at $1.35 each- assets:dollars ; balancing amount is -$135.00-\f[R]-.fi-.RE-.IP "2." 3-Write the total price, as \f[C]\[at]\[at] TOTALPRICE\f[R] after the-amount:-.RS 4-.IP-.nf-\f[C]-2009/1/1- assets:euros \[Eu]100 \[at]\[at] $135 ; one hundred euros purchased at $135 for the lot- assets:dollars-\f[R]-.fi-.RE-.IP "3." 3-Specify amounts for all postings, using exactly two commodities, and let-hledger infer the price that balances the transaction:-.RS 4-.IP-.nf-\f[C]-2009/1/1- assets:euros \[Eu]100 ; one hundred euros purchased- assets:dollars $-135 ; for $135-\f[R]-.fi-.RE-.IP "4." 3-Like 1, but the \f[C]\[at]\f[R] is parenthesised, i.e.-\f[C](\[at])\f[R]; this is for compatibility with Ledger journals-(Virtual posting costs), and is equivalent to 1 in hledger.-.IP "5." 3-Like 2, but as in 4 the \f[C]\[at]\[at]\f[R] is parenthesised, i.e.-\f[C](\[at]\[at])\f[R]; in hledger, this is equivalent to 2.-.PP-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:-.IP-.nf-\f[C]-$ 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]-.fi-.PP-Note -B is sensitive to the order of postings when a transaction price-is inferred: the inferred price will be in the commodity of the last-amount.-So if example 3\[aq]s postings are reversed, while the transaction is-equivalent, -B shows something different:-.IP-.nf-\f[C]-2009/1/1- assets:dollars $-135 ; 135 dollars sold- assets:euros \[Eu]100 ; for 100 euros-\f[R]-.fi-.IP-.nf-\f[C]-$ hledger bal -N --flat -B- \[Eu]-100 assets:dollars # <- the dollars\[aq] selling price- \[Eu]100 assets:euros-\f[R]-.fi-.SH LOT PRICES, LOT DATES-.PP-Ledger allows another kind of price, lot price (four variants:-\f[C]{UNITPRICE}\f[R], \f[C]{{TOTALPRICE}}\f[R],-\f[C]{=FIXEDUNITPRICE}\f[R], \f[C]{{=FIXEDTOTALPRICE}}\f[R]), and/or a-lot date (\f[C][DATE]\f[R]) to be specified.-These are normally used to select a lot when selling investments.-hledger will parse these, for compatibility with Ledger journals, but-currently ignores them.-A transaction price, lot price and/or lot date may appear in any order,-after the posting amount and before the balance assertion if any.-.SH BALANCE ASSERTIONS-.PP-hledger supports Ledger-style balance assertions in journal files.-These look like, for example, \f[C]= EXPECTEDBALANCE\f[R] following a-posting\[aq]s amount.-Eg here we assert the expected dollar balance in accounts a and b after-each posting:-.IP-.nf-\f[C]-2013/1/1- a $1 =$1- b =$-1--2013/1/2- a $1 =$2- b $-1 =$-2-\f[R]-.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-\f[C]-I/--ignore-assertions\f[R] flag, which can be useful for-troubleshooting or for reading Ledger files.-(Note: this flag currently does not disable balance assignments, below).-.SS Assertions and ordering-.PP-hledger sorts an account\[aq]s postings and assertions first by date and-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-differently-dated transactions within the journal.-But if you reorder same-dated transactions or postings, assertions might-break and require updating.-This order dependence does bring an advantage: precise control over the-order of postings and assertions within a day, so you can assert-intra-day balances.-.SS Assertions and included files-.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-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.-.SS Assertions and multiple -f options-.PP-Balance assertions don\[aq]t work well across files specified with-multiple -f options.-Use include or concatenate the files instead.-.SS Assertions and commodities-.PP-The asserted balance must be a simple single-commodity amount, and in-fact the assertion checks only this commodity\[aq]s balance within the-(possibly multi-commodity) account balance.-This is how assertions work in Ledger also.-We could call this a \[dq]partial\[dq] balance assertion.-.PP-To assert the balance of more than one commodity in an account, you can-write multiple postings, each asserting one commodity\[aq]s balance.-.PP-You can make a stronger \[dq]total\[dq] balance assertion by writing a-double equals sign (\f[C]== EXPECTEDBALANCE\f[R]).-This asserts that there are no other unasserted commodities in the-account (or, that their balance is 0).-.IP-.nf-\f[C]-2013/1/1- a $1- a 1\[Eu]- b $-1- c -1\[Eu]--2013/1/2 ; These assertions succeed- a 0 = $1- a 0 = 1\[Eu]- b 0 == $-1- c 0 == -1\[Eu]--2013/1/3 ; This assertion fails as \[aq]a\[aq] also contains 1\[Eu]- a 0 == $1-\f[R]-.fi-.PP-It\[aq]s not yet possible to make a complete assertion about a balance-that has multiple commodities.-One workaround is to isolate each commodity into its own subaccount:-.IP-.nf-\f[C]-2013/1/1- a:usd $1- a:euro 1\[Eu]- b--2013/1/2- a 0 == 0- a:usd 0 == $1- a:euro 0 == 1\[Eu]-\f[R]-.fi-.SS Assertions and prices-.PP-Balance assertions ignore transaction prices, and should normally be-written without one:-.IP-.nf-\f[C]-2019/1/1- (a) $1 \[at] \[Eu]1 = $1-\f[R]-.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-\f[I]assignments\f[R] do use them (see below).-.SS Assertions and subaccounts-.PP-The balance assertions above (\f[C]=\f[R] and \f[C]==\f[R]) do not count-the balance from subaccounts; they check the account\[aq]s exclusive-balance only.-You can assert the balance including subaccounts by writing \f[C]=*\f[R]-or \f[C]==*\f[R], eg:-.IP-.nf-\f[C]-2019/1/1- equity:opening balances- checking:a 5- checking:b 5- checking 1 ==* 11-\f[R]-.fi-.SS Assertions and virtual postings-.PP-Balance assertions are checked against all postings, both real and-virtual.-They are not affected by the \f[C]--real/-R\f[R] flag or \f[C]real:\f[R]-query.-.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.-.SH BALANCE ASSIGNMENTS-.PP-Ledger-style balance assignments are also supported.-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]-; 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]-.fi-.PP-or when adjusting a balance to reality:-.IP-.nf-\f[C]-; no cash left; update balance, record any untracked spending as a generic expense-2016/1/15- assets:cash = $0- expenses:misc-\f[R]-.fi-.PP-The calculated amount depends on the account\[aq]s balance in the-commodity at that point (which depends on the previously-dated postings-of the commodity to that account since the last balance assertion or-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.-.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- (a) = $1 \[at] \[Eu]2-\f[R]-.fi-.IP-.nf-\f[C]-$ hledger print --explicit-2019-01-01- (a) $1 \[at] \[Eu]2 = $1 \[at] \[Eu]2-\f[R]-.fi-.SH DIRECTIVES-.PP-A directive is a line in the journal beginning with a special keyword,-that influences how the journal is processed.-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).-.PP-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.-Note part of this table is hidden when viewed in a web browser - scroll-it sideways to see more.-.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{-\f[C]account\f[R]-T}@T{-T}@T{-any text-T}@T{-document account names, declare account types & display order-T}@T{-all entries in all files, before or after-T}-T{-\f[C]alias\f[R]-T}@T{-\f[C]end aliases\f[R]-T}@T{-T}@T{-rewrite account names-T}@T{-following entries until end of current file or end directive-T}-T{-\f[C]apply account\f[R]-T}@T{-\f[C]end apply account\f[R]-T}@T{-T}@T{-prepend a common parent to account names-T}@T{-following entries until end of current file or end directive-T}-T{-\f[C]comment\f[R]-T}@T{-\f[C]end comment\f[R]-T}@T{-T}@T{-ignore part of journal-T}@T{-following entries until end of current file or end directive-T}-T{-\f[C]commodity\f[R]-T}@T{-T}@T{-\f[C]format\f[R]-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{-\f[C]D\f[R]-T}@T{-T}@T{-T}@T{-declare a commodity to be used for commodityless amounts, and its number-notation & display style-T}@T{-default commodity: following commodityless entries until end of current-file; number notation: following entries in that commodity until end of-current file; display style: amounts of that commodity in reports-T}-T{-\f[C]include\f[R]-T}@T{-T}@T{-T}@T{-include entries/directives from another file-T}@T{-what the included directives affect-T}-T{-\f[C]P\f[R]-T}@T{-T}@T{-T}@T{-declare a market price for a commodity-T}@T{-amounts of that commodity in reports, when -V is used-T}-T{-\f[C]Y\f[R]-T}@T{-T}@T{-T}@T{-declare a year for yearless dates-T}@T{-following entries until end of current file-T}-T{-\f[C]=\f[R]-T}@T{-T}@T{-T}@T{-declare an auto posting rule, adding postings to other transactions-T}@T{-all entries in parent/current/child files (but not sibling files, see-#1212)-T}-.TE-.PP-And some definitions:-.PP-.TS-tab(@);-lw(6.0n) lw(64.0n).-T{-subdirective-T}@T{-optional indented directive line immediately following a parent-directive-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-.PP-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.-.SS Directives and multiple files-.PP-If you use multiple \f[C]-f\f[R]/\f[C]--file\f[R] options, or the-\f[C]include\f[R] directive, hledger will process multiple input files.-But note that directives which affect input (see above) typically last-only until the end of the file in which they occur.-.PP-This may seem inconvenient, but it\[aq]s intentional; it makes reports-stable and deterministic, independent of the order of input.-Otherwise you could see different numbers if you happened to write -f-options in a different order, or if you moved includes around while-cleaning up your files.-.PP-It can be surprising though; for example, it means that \f[C]alias\f[R]-directives do not affect parent or sibling files (see below).-.SS Comment blocks-.PP-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.-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]-include FILEPATH-\f[R]-.fi-.PP-Only journal files can include, and only journal, timeclock or timedot-files can be included (not CSV files, currently).-.PP-If the file path does not begin with a slash, it is relative to the-current file\[aq]s folder.-.PP-A tilde means home directory, eg: \f[C]include \[ti]/main.journal\f[R].-.PP-The path may contain glob patterns to match multiple files, eg:-\f[C]include *.journal\f[R].-.PP-There is limited support for recursive wildcards: \f[C]**/\f[R] (the-slash is required) matches 0 or more subdirectories.-It\[aq]s not super convenient since you have to avoid include cycles and-including directories, but this can be done, eg:-\f[C]include */**/*.journal\f[R].-.PP-The path may also be prefixed to force a specific file format,-overriding the file extension (as described in hledger.1 -> Input-files): \f[C]include timedot:\[ti]/notes/2020*.md\f[R].-.SS Default year-.PP-You can set a default year to be used for subsequent dates which-don\[aq]t specify a year.-This is a line beginning with \f[C]Y\f[R] followed by the year.-Eg:-.IP-.nf-\f[C]-Y2009 ; set default year to 2009--12/15 ; equivalent to 2009/12/15- expenses 1- assets--Y2010 ; change default year to 2010--2009/1/30 ; specifies the year, not affected- expenses 1- assets--1/31 ; equivalent to 2010/1/31- expenses 1- assets-\f[R]-.fi-.SS Declaring commodities-.PP-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 (period or comma) 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 a commodity\[aq]s display style in output - decimal and-digit group marks, number of decimal places, symbol placement etc.-.PP-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.-It may be written on a single line, like this:-.IP-.nf-\f[C]-; commodity EXAMPLEAMOUNT--; 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]-.fi-.PP-or on multiple lines, using the \[dq]format\[dq] subdirective.-(In this case the commodity symbol appears twice and should be the same-in both places.):-.IP-.nf-\f[C]-; commodity SYMBOL-; format EXAMPLEAMOUNT--; 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- format INR 1,00,00,000.00-\f[R]-.fi-.PP-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.-.PP-Note hledger normally uses banker\[aq]s rounding, so 0.5 displayed with-zero decimal digits is \[dq]0\[dq].-(More at Commodity display style.)-.SS Commodity error checking-.PP-In strict mode, enabled with the \f[C]-s\f[R]/\f[C]--strict\f[R] flag,-hledger will report an error if a commodity symbol is used that has not-been declared by a \f[C]commodity\f[R] directive.-This works similarly to account error checking, see the notes there for-more details.-.SS Default commodity-.PP-The \f[C]D\f[R] directive sets a default commodity, to be used for-amounts without a commodity symbol (ie, plain numbers).-This commodity will be applied to all subsequent commodity-less amounts,-or until the next \f[C]D\f[R] directive.-(Note, this is different from Ledger\[aq]s \f[C]D\f[R].)-.PP-For compatibility/historical reasons, \f[C]D\f[R] also acts like a-\f[C]commodity\f[R] directive, setting the commodity\[aq]s display style-(for output) and decimal mark (for parsing input).-As with \f[C]commodity\f[R], the amount must always be written with a-decimal mark (period or comma).-If both directives are used, \f[C]commodity\f[R]\[aq]s style takes-precedence.-.PP-The syntax is \f[C]D AMOUNT\f[R].-Eg:-.IP-.nf-\f[C]-; commodity-less amounts should be treated as dollars-; (and displayed with the dollar sign on the left, thousands separators and two decimal places)-D $1,000.00--1/1- a 5 ; <- commodity-less amount, parsed as $5 and displayed as $5.00- b-\f[R]-.fi-.SS Declaring market prices-.PP-The \f[C]P\f[R] directive declares a market price, which is an exchange-rate between two commodities on a certain date.-(In Ledger, they are called \[dq]historical prices\[dq].) These are-often obtained from a stock exchange, cryptocurrency exchange, or the-foreign exchange market.-.PP-Here is the format:-.IP-.nf-\f[C]-P DATE COMMODITYA COMMODITYBAMOUNT-\f[R]-.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]-P 2009/1/1 \[Eu] $1.35-P 2010/1/1 \[Eu] $1.40-\f[R]-.fi-.PP-The \f[C]-V\f[R], \f[C]-X\f[R] and \f[C]--value\f[R] flags use these-market prices to show amount values in another commodity.-See Valuation.-.SS Declaring accounts-.PP-\f[C]account\f[R] directives can be used to declare accounts (ie, the-places that amounts are transferred from and to).-Though not required, these declarations can provide several benefits:-.IP \[bu] 2-They can document your intended chart of accounts, providing a-reference.-.IP \[bu] 2-They can help hledger know your accounts\[aq] types (asset, liability,-equity, revenue, expense), useful for reports like balancesheet and-incomestatement.-.IP \[bu] 2-They control account display order in reports, allowing non-alphabetic-sorting (eg Revenues to appear above Expenses).-.IP \[bu] 2-They can store extra information about accounts (account numbers, notes,-etc.)-.IP \[bu] 2-They help with account name completion in the add command, hledger-iadd,-hledger-web, ledger-mode etc.-.IP \[bu] 2-In strict mode, they restrict which accounts may be posted to by-transactions, which helps detect typos.-.PP-The simplest form is just the word \f[C]account\f[R] followed by a-hledger-style account name, eg this account directive declares the-\f[C]assets:bank:checking\f[R] account:-.IP-.nf-\f[C]-account assets:bank:checking-\f[R]-.fi-.SS Account error checking-.PP-By default, accounts come into existence when a transaction references-them by name.-This is convenient, but it means hledger can\[aq]t warn you when you-mis-spell an account name in the journal.-Usually you\[aq]ll find the error later, as an extra account in balance-reports, or an incorrect balance when reconciling.-.PP-In strict mode, enabled with the \f[C]-s\f[R]/\f[C]--strict\f[R] flag,-hledger will report an error if any transaction uses an account name-that has not been declared by an account directive.-Some notes:-.IP \[bu] 2-The declaration is case-sensitive; transactions must use the correct-account name capitalisation.-.IP \[bu] 2-The account directive\[aq]s scope is \[dq]whole file and below\[dq] (see-directives).-This means it affects all of the current file, and any files it-includes, but not parent or sibling files.-The position of account directives within the file does not matter,-though it\[aq]s usual to put them at the top.-.IP \[bu] 2-Accounts can only be declared in \f[C]journal\f[R] files (but will-affect included files in other formats).-.IP \[bu] 2-It\[aq]s currently not possible to declare \[dq]all possible-subaccounts\[dq] with a wildcard; every account posted to must be-declared.-.SS Account comments-.PP-Comments, beginning with a semicolon, can be added:-.IP \[bu] 2-on the same line, \f[B]after two or more spaces\f[R] (because ; is-allowed in account names)-.IP \[bu] 2-on the next lines, indented-.PP-An example of both:-.IP-.nf-\f[C]-account assets:bank:checking ; same-line comment, note 2+ spaces before ;- ; next-line comment- ; another with tag, acctno:12345 (not used yet)-\f[R]-.fi-.PP-Same-line comments are not supported by Ledger, or hledger <1.13.-.SS Account subdirectives-.PP-We also allow (and ignore) Ledger-style indented subdirectives, just for-compatibility.:-.IP-.nf-\f[C]-account assets:bank:checking- format blah blah ; <- subdirective, ignored-\f[R]-.fi-.PP-Here is the full syntax of account directives:-.IP-.nf-\f[C]-account ACCTNAME [ACCTTYPE] [;COMMENT]- [;COMMENTS]- [LEDGER-STYLE SUBDIRECTIVES, IGNORED]-\f[R]-.fi-.SS Account types-.PP-hledger recognises five main types of account, corresponding to the-account classes in the accounting equation:-.PP-\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].-.PP-These account types are important for controlling which accounts appear-in the balancesheet, balancesheetequity, incomestatement reports (and-probably for other things in future).-.PP-Additionally, we recognise the \f[C]Cash\f[R] type, which is also an-\f[C]Asset\f[R], and which causes accounts to appear in the cashflow-report.-(\[dq]Cash\[dq] here means liquid assets, eg bank balances but typically-not investments or receivables.)-.SS Declaring account types-.PP-Generally, to make these reports work you should declare your top-level-accounts and their types, using account directives with \f[C]type:\f[R]-tags.-.PP-The tag\[aq]s value should be one of: \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], \f[C]Cash\f[R], \f[C]A\f[R], \f[C]L\f[R],-\f[C]E\f[R], \f[C]R\f[R], \f[C]X\f[R], \f[C]C\f[R] (all case-insensitive).-The type is inherited by all subaccounts except where they override it.-Here\[aq]s a complete example:-.IP-.nf-\f[C]-account assets ; type: Asset-account assets:bank ; type: Cash-account assets:cash ; type: Cash-account liabilities ; type: Liability-account equity ; type: Equity-account revenues ; type: Revenue-account expenses ; type: Expense-\f[R]-.fi-.SS Auto-detected account types-.PP-If you happen to use common english top-level account names, you may not-need to declare account types, as they will be detected automatically-using the following rules:-.PP-.TS-tab(@);-l l.-T{-If name matches regular expression:-T}@T{-account type is:-T}-_-T{-\f[C]\[ha]assets?(:|$)\f[R]-T}@T{-\f[C]Asset\f[R]-T}-T{-\f[C]\[ha](debts?|liabilit(y|ies))(:|$)\f[R]-T}@T{-\f[C]Liability\f[R]-T}-T{-\f[C]\[ha]equity(:|$)\f[R]-T}@T{-\f[C]Equity\f[R]-T}-T{-\f[C]\[ha](income|revenue)s?(:|$)\f[R]-T}@T{-\f[C]Revenue\f[R]-T}-T{-\f[C]\[ha]expenses?(:|$)\f[R]-T}@T{-\f[C]Expense\f[R]-T}-.TE-.PP-.TS-tab(@);-lw(56.9n) lw(13.1n).-T{-If account type is \f[C]Asset\f[R] and name does not contain regular-expression:-T}@T{-account type is:-T}-_-T{-\f[C](investment|receivable|:A/R|:fixed)\f[R]-T}@T{-\f[C]Cash\f[R]-T}-.TE-.PP-Even so, explicit declarations may be a good idea, for clarity and-predictability.-.SS Interference from auto-detected account types-.PP-If you assign any account type, it\[aq]s a good idea to assign all of-them, to prevent any confusion from mixing declared and auto-detected-types.-Although it\[aq]s unlikely to happen in real life, here\[aq]s an-example: with the following journal, \f[C]balancesheetequity\f[R] shows-\[dq]liabilities\[dq] in both Liabilities and Equity sections.-Declaring another account as \f[C]type:Liability\f[R] would fix it:-.IP-.nf-\f[C]-account liabilities ; type:Equity--2020-01-01- assets 1- liabilities 1- equity -2-\f[R]-.fi-.SS Old account type syntax-.PP-In some hledger journals you might instead see this old syntax (the-letters ALERX, separated from the account name by two or more spaces);-this is deprecated and may be removed soon:-.IP-.nf-\f[C]-account assets A-account liabilities L-account equity E-account revenues R-account expenses X-\f[R]-.fi-.SS Account display order-.PP-Account directives also set the order in which accounts are displayed,-eg in reports, the hledger-ui accounts screen, and the hledger-web-sidebar.-By default accounts are listed in alphabetical order.-But if you have these account directives in the journal:-.IP-.nf-\f[C]-account assets-account liabilities-account equity-account revenues-account expenses-\f[R]-.fi-.PP-you\[aq]ll see those accounts displayed in declaration order, not-alphabetically:-.IP-.nf-\f[C]-$ hledger accounts -1-assets-liabilities-equity-revenues-expenses-\f[R]-.fi-.PP-Undeclared accounts, if any, are displayed last, in alphabetical order.-.PP-Note that sorting is done at each level of the account tree (within each-group of sibling accounts under the same parent).-And currently, this directive:-.IP-.nf-\f[C]-account other:zoo-\f[R]-.fi-.PP-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:-.IP \[bu] 2-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-.IP \[bu] 2-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]).-.SS Rewriting accounts-.PP-You can define account alias rules which rewrite your account names, or-parts of them, before generating reports.-This can be useful for:-.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-Account aliases also rewrite account names in account directives.-They do not affect account names being entered via hledger add or-hledger-web.-.PP-See also Rewrite account names.-.SS Basic aliases-.PP-To set an account alias, use the \f[C]alias\f[R] directive in your-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]-alias OLD = NEW-\f[R]-.fi-.PP-Or, you can use the \f[C]--alias \[aq]OLD=NEW\[aq]\f[R] option on the-command line.-This affects all entries.-It\[aq]s useful for trying out aliases interactively.-.PP-OLD and NEW are case sensitive full account names.-hledger will replace any occurrence of the old account name with the new-one.-Subaccounts are also affected.-Eg:-.IP-.nf-\f[C]-alias checking = assets:bank:wells fargo:checking-; 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]-\f[R]-.fi-.SS Regex aliases-.PP-There is also a more powerful variant that uses a regular expression,-indicated by the forward slashes:-.IP-.nf-\f[C]-alias /REGEX/ = REPLACEMENT-\f[R]-.fi-.PP-or \f[C]--alias \[aq]/REGEX/=REPLACEMENT\[aq]\f[R].-.PP-REGEX is a case-insensitive regular expression.-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.-Eg:-.IP-.nf-\f[C]-alias /\[ha](.+):bank:([\[ha]:]+):(.*)/ = \[rs]1:\[rs]2 \[rs]3-; rewrites \[dq]assets:bank:wells fargo:checking\[dq] to \[dq]assets:wells fargo checking\[dq]-\f[R]-.fi-.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.-.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:-.IP "1." 3-\f[C]alias\f[R] directives preceding the journal entry, most recently-parsed first (ie, reading upward from the journal entry, bottom to top)-.IP "2." 3-\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.-.SS Aliases and multiple files-.PP-As explained at Directives and multiple files, \f[C]alias\f[R]-directives do not affect parent or sibling files.-Eg in this command,-.IP-.nf-\f[C]-hledger -f a.aliases -f b.journal-\f[R]-.fi-.PP-account aliases defined in a.aliases will not affect b.journal.-Including the aliases doesn\[aq]t work either:-.IP-.nf-\f[C]-include a.aliases--2020-01-01 ; not affected by a.aliases- foo 1- bar-\f[R]-.fi-.PP-This means that account aliases should usually be declared at the start-of your top-most file, like this:-.IP-.nf-\f[C]-alias foo=Foo-alias bar=Bar--2020-01-01 ; affected by aliases above- foo 1- bar--include c.journal ; also affected-\f[R]-.fi-.SS \f[C]end aliases\f[R]-.PP-You can clear (forget) all currently defined aliases with the-\f[C]end aliases\f[R] directive:-.IP-.nf-\f[C]-end aliases-\f[R]-.fi-.SS Default parent account-.PP-You can specify a parent account which will be prepended to all accounts-within a section of the journal.-Use the \f[C]apply account\f[R] and \f[C]end apply account\f[R]-directives like so:-.IP-.nf-\f[C]-apply account home--2010/1/1- food $10- cash--end apply account-\f[R]-.fi-.PP-which is equivalent to:-.IP-.nf-\f[C]-2010/01/01- home:food $10- home:cash $-10-\f[R]-.fi-.PP-If \f[C]end apply account\f[R] is omitted, the effect lasts to the end-of the file.-Included files are also affected, eg:-.IP-.nf-\f[C]-apply account business-include biz.journal-end apply account-apply account personal-include personal.journal-\f[R]-.fi-.PP-Prior to hledger 1.0, legacy \f[C]account\f[R] and \f[C]end\f[R]-spellings were also supported.-.PP-A default parent account also affects account directives.-It does not affect account names being entered via hledger add or-hledger-web.-If account aliases are present, they are applied after the default-parent account.-.SH PERIODIC TRANSACTIONS-.PP-Periodic transaction rules describe transactions that recur.-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.-.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.-.PP-Periodic transaction rules also have a second meaning: they are used to-define budget goals, shown in budget reports.-.SS Periodic rule syntax-.PP-A periodic transaction rule looks like a normal journal entry, with the-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.):-.IP-.nf-\f[C]-\[ti] monthly- expenses:rent $2000- assets:bank:checking-\f[R]-.fi-.PP-There is an additional constraint on the period expression: the start-date must fall on a natural boundary of the interval.-Eg \f[C]monthly from 2018/1/1\f[R] is valid, but-\f[C]monthly from 2018/1/15\f[R] is not.-.PP-Partial or relative dates (M/D, D, tomorrow, last week) in the period-expression can work (useful or not).-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.-.SS Two spaces between period expression and description!-.PP-If the period expression is followed by a transaction description, these-must be separated by \f[B]two or more spaces\f[R].-This helps hledger know where the period expression ends, so that-descriptions can not accidentally alter their meaning, as in this-example:-.IP-.nf-\f[C]-; 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]-.fi-.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.-.SS Forecasting with periodic transactions-.PP-The \f[C]--forecast\f[R] flag activates any periodic transaction rules-in the journal.-They will generate temporary recurring transactions, which are not saved-in the journal, but will appear in all reports (eg print).-This can be useful for estimating balances into the future, or-experimenting with different scenarios.-Or, it can be used as a data entry aid: describe recurring transactions,-and every so often copy the output of \f[C]print --forecast\f[R] into-the journal.-.PP-These transactions will have an extra tag indicating which periodic rule-generated them: \f[C]generated-transaction:\[ti] PERIODICEXPR\f[R].-And a similar, hidden tag (beginning with an underscore) which, because-it\[aq]s never displayed by print, can be used to match transactions-generated \[dq]just now\[dq]:-\f[C]_generated-transaction:\[ti] PERIODICEXPR\f[R].-.PP-Periodic transactions are generated within some forecast period.-By default, this-.IP \[bu] 2-begins on the later of-.RS 2-.IP \[bu] 2-the report start date if specified with -b/-p/date:-.IP \[bu] 2-the day after the latest normal (non-periodic) transaction in the-journal, or today if there are no normal transactions.-.RE-.IP \[bu] 2-ends on the report end date if specified with -e/-p/date:, or 6 months-(180 days) from today.-.PP-This means that periodic transactions will begin only after the latest-recorded transaction.-And a recorded transaction dated in the future can prevent generation of-periodic transactions.-(You can avoid that by writing the future transaction as a one-time-periodic rule instead - put tilde before the date, eg-\f[C]\[ti] YYYY-MM-DD ...\f[R]).-.PP-Or, you can set your own arbitrary \[dq]forecast period\[dq], which can-overlap recorded transactions, and need not be in the future, by-providing an option argument, like \f[C]--forecast=PERIODEXPR\f[R].-Note the equals sign is required, a space won\[aq]t work.-PERIODEXPR is a period expression, which can specify the start date, end-date, or both, like in a \f[C]date:\f[R] query.-(See also hledger.1 -> Report start & end date).-Some examples: \f[C]--forecast=202001-202004\f[R],-\f[C]--forecast=jan-\f[R], \f[C]--forecast=2020\f[R].-.SS Budgeting with periodic transactions-.PP-With the \f[C]--budget\f[R] flag, currently supported by the balance-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.-.PP-See also: Budgeting and Forecasting.-.PP-.SH AUTO POSTINGS-.PP-\[dq]Automated postings\[dq] or \[dq]auto postings\[dq] are extra-postings which get added automatically to transactions which match-certain queries, defined by \[dq]auto posting rules\[dq], when you use-the \f[C]--auto\f[R] flag.-.PP-An auto posting rule looks a bit like a transaction:-.IP-.nf-\f[C]-= QUERY- ACCOUNT AMOUNT- ...- ACCOUNT [AMOUNT]-\f[R]-.fi-.PP-except the first line is an equals sign (mnemonic: \f[C]=\f[R] suggests-matching), followed by a query (which matches existing postings), and-each \[dq]posting\[dq] line describes a posting to be generated, and the-posting amounts can be:-.IP \[bu] 2-a normal amount with a commodity symbol, eg \f[C]$2\f[R].-This will be used as-is.-.IP \[bu] 2-a number, eg \f[C]2\f[R].-The commodity symbol (if any) from the matched posting will be added to-this.-.IP \[bu] 2-a numeric multiplier, eg \f[C]*2\f[R] (a star followed by a number N).-The matched posting\[aq]s amount (and total price, if any) will be-multiplied by N.-.IP \[bu] 2-a multiplier with a commodity symbol, eg \f[C]*$2\f[R] (a star, number-N, and symbol S).-The matched posting\[aq]s amount will be multiplied by N, and its-commodity symbol will be replaced with S.-.PP-Any query term containing spaces must be enclosed in single or double-quotes, as on the command line.-Eg, note the quotes around the second query term below:-.IP-.nf-\f[C]-= expenses:groceries \[aq]expenses:dining out\[aq]- (budget:funds:dining out) *-1-\f[R]-.fi-.PP-Some examples:-.IP-.nf-\f[C]-; every time I buy food, schedule a dollar donation-= expenses:food- (liabilities:charity) $-1--; when I buy a gift, also deduct that amount from a budget envelope subaccount-= expenses:gifts- assets:checking:gifts *-1- assets:checking *1--2017/12/1- expenses:food $10- assets:checking--2017/12/14- expenses:gifts $20- assets:checking-\f[R]-.fi-.IP-.nf-\f[C]-$ hledger print --auto-2017-12-01- expenses:food $10- assets:checking- (liabilities:charity) $-1--2017-12-14- expenses:gifts $20- assets:checking- assets:checking:gifts -$20- assets:checking $20-\f[R]-.fi-.SS Auto postings and multiple files-.PP-An auto posting rule can affect any transaction in the current file, or-in any parent file or child file.-Note, currently it will not affect sibling files (when multiple-\f[C]-f\f[R]/\f[C]--file\f[R] are used - see #1212).-.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.-.SS Auto postings and transaction balancing / inferred amounts / balance assertions-.PP-Currently, 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-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.-.SS Auto posting tags-.PP-Automated postings 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 auto posting 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].---.SH "REPORTING BUGS"-Report bugs at http://bugs.hledger.org-(or on the #hledger IRC channel or hledger mail list)--.SH AUTHORS-Simon Michael <simon@joyful.com> and contributors--.SH COPYRIGHT--Copyright (C) 2007-2020 Simon Michael.-.br-Released under GNU GPL v3 or later.--.SH SEE ALSO-hledger(1), hledger\-ui(1), hledger\-web(1), ledger(1)--hledger_journal(5), hledger_csv(5), hledger_timeclock(5), hledger_timedot(5)
− embeddedfiles/hledger_journal.info
@@ -1,2217 +0,0 @@-This is hledger-lib/hledger_journal.info, produced by makeinfo version-4.8 from stdin.---File: hledger_journal.info, Node: Top, Up: (dir)--hledger_journal(5)-******************--hledger's default file format, representing a General Journal.-- hledger's usual data source is a plain text file containing journal-entries in hledger journal format. This file represents a standard-accounting general journal. I use file names ending in `.journal', but-that's not required. 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.-- hledger's journal format is a compatible subset, mostly, of ledger's-journal format, so hledger can work with compatible ledger journal files-as well. It's safe, and encouraged, to run both hledger and ledger on-the same journal file, eg to validate the results you're getting.-- You can use hledger without learning any more about this file; just-use the add or web or import commands to create and update it.-- Many users, though, edit the journal file with a text editor, and-track changes with a version control system such as git. Editor addons-such as ledger-mode or hledger-mode for Emacs, vim-ledger for Vim, and-hledger-vscode for Visual Studio Code, make this easier, adding colour,-formatting, tab completion, and useful commands. See Editor-configuration at hledger.org for the full list.-- Here's a description of each part of the file format (and hledger's-data model). These are mostly in the order you'll use them, but in some-cases related concepts have been grouped together for easy reference, or-linked before they are introduced, so feel free to skip over anything-that looks unnecessary right now.--* Menu:--* TRANSACTIONS::-* DATES::-* STATUS::-* DESCRIPTION::-* COMMENTS::-* TAGS::-* POSTINGS::-* ACCOUNT NAMES::-* AMOUNTS::-* TRANSACTION PRICES::-* LOT PRICES LOT DATES::-* BALANCE ASSERTIONS::-* BALANCE ASSIGNMENTS::-* DIRECTIVES::-* PERIODIC TRANSACTIONS::-* AUTO POSTINGS::---File: hledger_journal.info, Node: TRANSACTIONS, Next: DATES, Prev: Top, Up: Top--1 TRANSACTIONS-**************--Transactions are the main unit of information in a journal file. They-represent events, typically a movement of some quantity of commodities-between two or more named accounts.-- Each transaction is recorded as a journal entry, beginning with a-simple date in column 0. This can be followed by any of the following-optional fields, separated by spaces:-- * a status character (empty, `!', or `*')-- * a code (any short number or text, enclosed in parentheses)-- * a description (any remaining text until end of line or a semicolon)-- * a comment (any remaining text following a semicolon until end of- line, and any following indented lines beginning with a semicolon)-- * 0 or more indented _posting_ lines, describing what was transferred- and the accounts involved (indented comment lines are also- allowed, but not blank lines or non-indented lines).-- Here's a simple journal file containing one transaction:---2008/01/01 income- assets:bank:checking $1- income:salary $-1---File: hledger_journal.info, Node: DATES, Next: STATUS, Prev: TRANSACTIONS, Up: Top--2 DATES-*******--* Menu:--* Simple dates::-* Secondary dates::-* Posting dates::---File: hledger_journal.info, Node: Simple dates, Next: Secondary dates, Up: DATES--2.1 Simple dates-================--Dates in the journal file use _simple dates_ format: `YYYY-MM-DD' or-`YYYY/MM/DD' or `YYYY.MM.DD', with leading zeros optional. The year may-be omitted, in which case it will be inferred from the context: the-current transaction, the default year set with a default year-directive, or the current date when the command is run. Some examples:-`2010-01-31', `2010/01/31', `2010.1.31', `1/31'.-- (The UI also accepts simple dates, as well as the more flexible smart-dates documented in the hledger manual.)---File: hledger_journal.info, Node: Secondary dates, Next: Posting dates, Prev: Simple dates, Up: DATES--2.2 Secondary dates-===================--Real-life transactions sometimes involve more than one date - eg the-date you write a cheque, and the date it clears in your bank. When you-want to model this, for more accurate daily balances, you can specify-individual posting dates.-- Or, you can use the older _secondary date_ feature (Ledger calls it-auxiliary date or effective date). Note: we support this for-compatibility, but I usually recommend avoiding this feature; posting-dates are almost always clearer and simpler.-- A secondary date is written after the primary date, following an-equals sign. If the year is omitted, the primary date's year is-assumed. When running reports, the primary (left) date is used by-default, but with the `--date2' flag (or `--aux-date' or `--effective'),-the secondary (right) date will be used instead.-- The meaning of secondary dates is up to you, but it's best to follow-a consistent rule. Eg "primary = the bank's clearing date, secondary =-date the transaction was initiated, if different", as shown here:---2010/2/23=2/19 movie ticket- expenses:cinema $10- assets:checking---$ hledger register checking-2010-02-23 movie ticket assets:checking $-10 $-10---$ hledger register checking --date2-2010-02-19 movie ticket assets:checking $-10 $-10---File: hledger_journal.info, Node: Posting dates, Prev: Secondary dates, Up: DATES--2.3 Posting dates-=================--You can give individual postings a different date from their parent-transaction, by adding a posting comment containing a tag (see below)-like `date:DATE'. 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:---2015/5/30- expenses:food $10 ; food purchased on saturday 5/30- assets:checking ; bank cleared it on monday, date:6/1---$ hledger -f t.j register food-2015-05-30 expenses:food $10 $10---$ hledger -f t.j register checking-2015-06-01 assets:checking $-10 $-10-- DATE should be a simple date; if the year is not specified it will-use the year of the transaction's date. You can set the secondary date-similarly, with `date2:DATE2'. The `date:' or `date2:' tags must have a-valid simple date value if they are present, eg a `date:' tag with no-value is not allowed.-- Ledger's earlier, more compact bracketed date syntax is also-supported: `[DATE]', `[DATE=DATE2]' or `[=DATE2]'. hledger will attempt-to parse any square-bracketed sequence of the `0123456789/-.='-characters in this way. With this syntax, DATE infers its year from the-transaction and DATE2 infers its year from DATE.---File: hledger_journal.info, Node: STATUS, Next: DESCRIPTION, Prev: DATES, Up: Top--3 STATUS-********--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:--mark status------------------ - unmarked-`!' pending-`*' cleared-- When reporting, you can filter by status with the `-U/--unmarked',-`-P/--pending', and `-C/--cleared' flags; or the `status:', `status:!',-and `status:*' queries; or the U, P, C keys in hledger-ui.-- Note, in Ledger and in older versions of hledger, the "unmarked"-state is called "uncleared". As of hledger 1.3 we have renamed it to-unmarked for clarity.-- To replicate Ledger and old hledger's behaviour of also matching-pending, combine -U and -P.-- Status marks are optional, but can be helpful eg for reconciling with-real-world accounts. Some editor modes provide highlighting and-shortcuts for working with status. Eg in Emacs ledger-mode, you can-toggle transaction status with C-c C-e, or posting status with C-c C-c.-- What "uncleared", "pending", and "cleared" actually mean is up to-you. Here's one suggestion:--status meaning--------------------------------------------------------------------------- -uncleared recorded but not yet reconciled; needs review-pending tentatively reconciled (if needed, eg during a big- reconciliation)-cleared complete, reconciled as far as possible, and considered- correct-- With this scheme, you would use `-PC' to see the current balance at-your bank, `-U' to see things which will probably hit your bank soon-(like uncashed checks), and no flags to see the most up-to-date state-of your finances.---File: hledger_journal.info, Node: DESCRIPTION, Next: COMMENTS, Prev: STATUS, Up: Top--4 DESCRIPTION-*************--A transaction's description is the rest of the line following the date-and status mark (or until a comment begins). Sometimes called the-"narration" in traditional bookkeeping, it can be used for whatever you-wish, or left blank. Transaction descriptions can be queried, unlike-comments.--* Menu:--* Payee and note::---File: hledger_journal.info, Node: Payee and note, Up: DESCRIPTION--4.1 Payee and note-==================--You can optionally include a `|' (pipe) character in descriptions to-subdivide the description into separate fields for payee/payer name on-the left (up to the first `|') and an additional note field on the-right (after the first `|'). This may be worthwhile if you need to do-more precise querying and pivoting by payee or by note.---File: hledger_journal.info, Node: COMMENTS, Next: TAGS, Prev: DESCRIPTION, Up: Top--5 COMMENTS-**********--Lines in the journal beginning with a semicolon (`;') or hash (`#') or-star (`*') 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.)-- 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.-Transaction and posting comments must begin with a semicolon (`;').-- Some examples:---# a file comment-; another file comment-* also a file comment, useful in org/orgstruct mode--comment-A multiline file comment, which continues-until a line containing just "end comment"-(or end of file).-end comment--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)-- You can also comment larger regions of a file using `comment' and-`end comment' directives.---File: hledger_journal.info, Node: TAGS, Next: POSTINGS, Prev: COMMENTS, Up: Top--6 TAGS-******--Tags are a way to add extra labels or labelled data to postings and-transactions, which you can then search or pivot on.-- A simple tag is a word (which may contain hyphens) followed by a full-colon, written inside a transaction or posting comment line:---2017/1/16 bought groceries ; sometag:-- 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:--- expenses:food $10 ; a-posting-tag: the tag value-- Note this means hledger's tag values can not contain commas or-newlines. Ending at commas means you can write multiple short tags on-one line, comma separated:--- assets:checking ; a comment containing tag1:, tag2: some value ...-- Here,-- * "`a comment containing'" is just comment text, not a tag-- * "`tag1'" is a tag with no value-- * "`tag2'" is another tag, whose value is "`some value ...'"-- Tags in a transaction comment affect the transaction and all of its-postings, while tags in a posting comment affect only that posting. For-example, the following transaction has three tags (`A', `TAG2',-`third-tag') and the posting has four (those plus `posting-tag'):---1/1 a transaction ; A:, TAG2:- ; third-tag: a third transaction tag, <- with a value- (a) $1 ; posting-tag:-- Tags are like Ledger's metadata feature, except hledger's tag values-are simple strings.---File: hledger_journal.info, Node: POSTINGS, Next: ACCOUNT NAMES, Prev: TAGS, Up: Top--7 POSTINGS-**********--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:-- * (optional) a status character (empty, `!', or `*'), followed by a- space-- * (required) an account name (any text, optionally containing- *single spaces*, until end of line or a double space)-- * (optional) *two or more spaces* or tabs followed by an amount.-- Positive amounts are being added to the account, negative amounts are-being removed.-- 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.-- Be sure to note the unusual two-space delimiter between account name-and amount. 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.--* Menu:--* Virtual postings::---File: hledger_journal.info, Node: Virtual postings, Up: POSTINGS--7.1 Virtual postings-====================--A posting with a parenthesised account name is called a _virtual-posting_ or _unbalanced posting_, which means it is exempt from the-usual rule that a transaction's postings must balance add up to zero.-- This is not part of double entry accounting, so you might choose to-avoid this feature. Or you can use it sparingly for certain special-cases where it can be convenient. Eg, you could set opening balances-without using a balancing equity account:---1/1 opening balances- (assets:checking) $1000- (assets:savings) $2000-- A posting with a bracketed account name is called a _balanced-virtual posting_. The balanced virtual postings in a transaction must-add up to zero (separately from other postings). Eg:---1/1 buy food with cash, update budget envelope subaccounts, & something else- assets:cash $-10 ; <- these balance- expenses:food $7 ; <-- expenses:food $3 ; <-- [assets:checking:budget:food] $-10 ; <- and these balance- [assets:checking:available] $10 ; <-- (something:else) $5 ; <- not required to balance-- Ordinary non-parenthesised, non-bracketed postings are called _real-postings_. You can exclude virtual postings from reports with the-`-R/--real' flag or `real:1' query.---File: hledger_journal.info, Node: ACCOUNT NAMES, Next: AMOUNTS, Prev: POSTINGS, Up: Top--8 ACCOUNT NAMES-***************--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 five top-level-accounts: `assets', `liabilities', `income', `expenses', and `equity'.-- Account names may contain single spaces, eg: `assets:accounts-receivable'. Because of this, they must always be followed by *two or-more spaces* (or newline).-- Account names can be aliased.---File: hledger_journal.info, Node: AMOUNTS, Next: TRANSACTION PRICES, Prev: ACCOUNT NAMES, Up: Top--9 AMOUNTS-*********--After the account name, there is usually an amount. (Important: between-account name and amount, there must be *two or more spaces*.)-- hledger's amount format is flexible, supporting several international-formats. Here are some examples. Amounts have a number (the "quantity"):---1-- ..and usually a currency or commodity name (the "commodity"). This-is a symbol, word, or phrase, to the left or right of the quantity,-with or without a separating space:---$1-4000 AAPL-- If the commodity name contains spaces, numbers, or punctuation, it-must be enclosed in double quotes:---3 "no. 42 green apples"-- Amounts can be preceded by a minus sign (or a plus sign, though plus-is the default), The sign can be written before or after a left-side-commodity symbol:----$1-$-1-- One or more spaces between the sign and the number are acceptable-when parsing (but they won't be displayed in output):---+ $1-$- 1-- Scientific E notation is allowed:---1E-6-EUR 1E3-- A decimal mark can be written as a period or a comma:---1.23-1,23456780000009--* Menu:--* Digit group marks::-* Commodity display style::-* Rounding::---File: hledger_journal.info, Node: Digit group marks, Next: Commodity display style, Up: AMOUNTS--9.1 Digit group marks-=====================--In the integer part of the quantity (left of the decimal mark), groups-of digits can optionally be separated by a "digit group mark" - a space,-comma, or period (different from the decimal mark):--- $1,000,000.00- EUR 2.000.000,00-INR 9,99,99,999.00- 1 000 000.9455-- Note, a number containing a single group mark and no decimal mark is-ambiguous. Are these group marks or decimal marks ?---1,000-1.000-- 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 ("amount styles") are specific to each commodity, so-if your data uses multiple formats, hledger can handle it:---commodity $1,000.00-commodity EUR 1.000,00-commodity INR 9,99,99,999.00-commodity 1 000 000.9455---File: hledger_journal.info, Node: Commodity display style, Next: Rounding, Prev: Digit group marks, Up: AMOUNTS--9.2 Commodity display style-===========================--For each commodity, hledger chooses a consistent style to use when-displaying amounts. (Except price amounts, which are always displayed as-written). The display style is chosen as follows:-- * If there is a commodity directive (or default commodity directive)- for the commodity, its style is used (see examples above).-- * Otherwise the style is inferred from the amounts in that commodity- seen in the journal.-- * Or if there are no such amounts in the journal, a default style is- used (like `$1000.00').--- A style is inferred from the journal amounts in a commodity as-follows:-- * Use the general style (decimal mark, symbol placement) of the first- amount-- * Use the first-seen digit group style (digit group mark, digit group- sizes), if any-- * Use the maximum number of decimal places of all.-- Transaction price amounts don't affect the commodity display style-directly, but occasionally they can do so indirectly (eg when a-posting's amount is inferred using a transaction price). If you find-this causing problems, use a commodity directive to fix the display-style.-- In summary, each commodity's amounts will be normalised to-- * the style declared by a `commodity' directive-- * or, the style of the first posting amount in the journal, with the- first-seen digit group style and the maximum-seen number of decimal- places.-- If reports are showing amounts in a way you don't like (eg, with too-many decimal places), use a commodity directive to set your preferred-style.---File: hledger_journal.info, Node: Rounding, Prev: Commodity display style, Up: AMOUNTS--9.3 Rounding-============--Amounts are stored internally as decimal numbers with up to 255 decimal-places, and displayed with the number of decimal places specified by the-commodity display style. Note, hledger uses banker's rounding: it rounds-to the nearest even number, eg 0.5 displayed with zero decimal places is-"0"). (Guaranteed since hledger 1.17.1; in older versions this could-vary if hledger was built with Decimal < 0.5.1.)---File: hledger_journal.info, Node: TRANSACTION PRICES, Next: LOT PRICES LOT DATES, Prev: AMOUNTS, Up: Top--10 TRANSACTION PRICES-*********************--Within a transaction, you can note an amount's price in another-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. 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.-- There are several ways to record a transaction price:-- 1. Write the price per unit, as `@ UNITPRICE' after the amount:--- 2009/1/1- assets:euros €100 @ $1.35 ; one hundred euros purchased at $1.35 each- assets:dollars ; balancing amount is -$135.00-- 2. Write the total price, as `@@ TOTALPRICE' after the amount:--- 2009/1/1- assets:euros €100 @@ $135 ; one hundred euros purchased at $135 for the lot- assets:dollars-- 3. Specify amounts for all postings, using exactly two commodities,- and let hledger infer the price that balances the transaction:--- 2009/1/1- assets:euros €100 ; one hundred euros purchased- assets:dollars $-135 ; for $135-- 4. Like 1, but the `@' is parenthesised, i.e. `(@)'; this is for- compatibility with Ledger journals (Virtual posting costs), and is- equivalent to 1 in hledger.-- 5. Like 2, but as in 4 the `@@' is parenthesised, i.e. `(@@)'; in- hledger, this is equivalent to 2.--- Use the `-B/--cost' flag to convert amounts to their transaction-price's commodity, if any. (mnemonic: "B" is from "cost Basis", as in-Ledger). Eg here is how -B affects the balance report for the example-above:---$ hledger bal -N --flat- $-135 assets:dollars- €100 assets:euros-$ hledger bal -N --flat -B- $-135 assets:dollars- $135 assets:euros # <- the euros' cost-- Note -B is sensitive to the order of postings when a transaction-price is inferred: the inferred price will be in the commodity of the-last amount. So if example 3's postings are reversed, while the-transaction is equivalent, -B shows something different:---2009/1/1- assets:dollars $-135 ; 135 dollars sold- assets:euros €100 ; for 100 euros---$ hledger bal -N --flat -B- €-100 assets:dollars # <- the dollars' selling price- €100 assets:euros---File: hledger_journal.info, Node: LOT PRICES LOT DATES, Next: BALANCE ASSERTIONS, Prev: TRANSACTION PRICES, Up: Top--11 LOT PRICES, LOT DATES-************************--Ledger allows another kind of price, lot price (four variants:-`{UNITPRICE}', `{{TOTALPRICE}}', `{=FIXEDUNITPRICE}',-`{{=FIXEDTOTALPRICE}}'), and/or a lot date (`[DATE]') to be specified.-These are normally used to select a lot when selling investments.-hledger will parse these, for compatibility with Ledger journals, but-currently ignores them. A transaction price, lot price and/or lot date-may appear in any order, after the posting amount and before the-balance assertion if any.---File: hledger_journal.info, Node: BALANCE ASSERTIONS, Next: BALANCE ASSIGNMENTS, Prev: LOT PRICES LOT DATES, Up: Top--12 BALANCE ASSERTIONS-*********************--hledger supports Ledger-style balance assertions in journal files. These-look like, for example, `= EXPECTEDBALANCE' following a posting's-amount. Eg here we assert the expected dollar balance in accounts a and-b after each posting:---2013/1/1- a $1 =$1- b =$-1--2013/1/2- a $1 =$2- b $-1 =$-2-- 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-`-I/--ignore-assertions' flag, which can be useful for troubleshooting-or for reading Ledger files. (Note: this flag currently does not-disable balance assignments, below).--* Menu:--* Assertions and ordering::-* Assertions and included files::-* Assertions and multiple -f options::-* Assertions and commodities::-* Assertions and prices::-* Assertions and subaccounts::-* Assertions and virtual postings::-* Assertions and precision::---File: hledger_journal.info, Node: Assertions and ordering, Next: Assertions and included files, Up: BALANCE ASSERTIONS--12.1 Assertions and ordering-============================--hledger sorts an account's postings and assertions first by date and-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.)-- So, hledger balance assertions keep working if you reorder-differently-dated transactions within the journal. But if you reorder-same-dated transactions or postings, assertions might break and require-updating. This order dependence does bring an advantage: precise control-over the order of postings and assertions within a day, so you can-assert intra-day balances.---File: hledger_journal.info, Node: Assertions and included files, Next: Assertions and multiple -f options, Prev: Assertions and ordering, Up: BALANCE ASSERTIONS--12.2 Assertions and included files-==================================--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 across different files,-and you also want to assert the account's balance on the same day,-you'll have to put the assertion in the right file.---File: hledger_journal.info, Node: Assertions and multiple -f options, Next: Assertions and commodities, Prev: Assertions and included files, Up: BALANCE ASSERTIONS--12.3 Assertions and multiple -f options-=======================================--Balance assertions don't work well across files specified with multiple--f options. Use include or concatenate the files instead.---File: hledger_journal.info, Node: Assertions and commodities, Next: Assertions and prices, Prev: Assertions and multiple -f options, Up: BALANCE ASSERTIONS--12.4 Assertions and commodities-===============================--The asserted balance must be a simple single-commodity amount, and in-fact the assertion checks only this commodity's balance within the-(possibly multi-commodity) account balance. This is how assertions work-in Ledger also. We could call this a "partial" balance assertion.-- To assert the balance of more than one commodity in an account, you-can write multiple postings, each asserting one commodity's balance.-- You can make a stronger "total" balance assertion by writing a double-equals sign (`== EXPECTEDBALANCE'). This asserts that there are no-other unasserted commodities in the account (or, that their balance is-0).---2013/1/1- a $1- a 1€- b $-1- c -1€--2013/1/2 ; These assertions succeed- a 0 = $1- a 0 = 1€- b 0 == $-1- c 0 == -1€--2013/1/3 ; This assertion fails as 'a' also contains 1€- a 0 == $1-- It's not yet possible to make a complete assertion about a balance-that has multiple commodities. One workaround is to isolate each-commodity into its own subaccount:---2013/1/1- a:usd $1- a:euro 1€- b--2013/1/2- a 0 == 0- a:usd 0 == $1- a:euro 0 == 1€---File: hledger_journal.info, Node: Assertions and prices, Next: Assertions and subaccounts, Prev: Assertions and commodities, Up: BALANCE ASSERTIONS--12.5 Assertions and prices-==========================--Balance assertions ignore transaction prices, and should normally be-written without one:---2019/1/1- (a) $1 @ €1 = $1-- We do allow prices to be written there, however, and print shows-them, even though they don't affect whether the assertion passes or-fails. This is for backward compatibility (hledger's close command-used to generate balance assertions with prices), and because balance-_assignments_ do use them (see below).---File: hledger_journal.info, Node: Assertions and subaccounts, Next: Assertions and virtual postings, Prev: Assertions and prices, Up: BALANCE ASSERTIONS--12.6 Assertions and subaccounts-===============================--The balance assertions above (`=' and `==') do not count the balance-from subaccounts; they check the account's exclusive balance only. You-can assert the balance including subaccounts by writing `=*' or `==*',-eg:---2019/1/1- equity:opening balances- checking:a 5- checking:b 5- checking 1 ==* 11---File: hledger_journal.info, Node: Assertions and virtual postings, Next: Assertions and precision, Prev: Assertions and subaccounts, Up: BALANCE ASSERTIONS--12.7 Assertions and virtual postings-====================================--Balance assertions are checked against all postings, both real and-virtual. They are not affected by the `--real/-R' flag or `real:' query.---File: hledger_journal.info, Node: Assertions and precision, Prev: Assertions and virtual postings, Up: BALANCE ASSERTIONS--12.8 Assertions and precision-=============================--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.---File: hledger_journal.info, Node: BALANCE ASSIGNMENTS, Next: DIRECTIVES, Prev: BALANCE ASSERTIONS, Up: Top--13 BALANCE ASSIGNMENTS-**********************--Ledger-style balance assignments are also supported. 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:---; 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-- or when adjusting a balance to reality:---; no cash left; update balance, record any untracked spending as a generic expense-2016/1/15- assets:cash = $0- expenses:misc-- The calculated amount depends on the account's balance in the-commodity at that point (which depends on the previously-dated postings-of the commodity to that account since the last balance assertion or-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.--* Menu:--* Balance assignments and prices::---File: hledger_journal.info, Node: Balance assignments and prices, Up: BALANCE ASSIGNMENTS--13.1 Balance assignments and prices-===================================--A transaction price in a balance assignment will cause the calculated-amount to have that price attached:---2019/1/1- (a) = $1 @ €2---$ hledger print --explicit-2019-01-01- (a) $1 @ €2 = $1 @ €2---File: hledger_journal.info, Node: DIRECTIVES, Next: PERIODIC TRANSACTIONS, Prev: BALANCE ASSIGNMENTS, Up: Top--14 DIRECTIVES-*************--A directive is a line in the journal beginning with a special keyword,-that influences how the journal is processed. hledger's directives are-based on a subset of Ledger's, but there are many differences (and also-some differences between hledger versions).-- Directives' 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. Note part of this table is hidden when-viewed in a web browser - scroll it sideways to see more.--directiveend subdirectivespurpose can affect (as of- directive 2018/06)------------------------------------------------------------------------------ -`account' any document account names, all entries in all- text declare account types & files, before or- display order after-`alias' `end rewrite account names following entries- aliases' until end of- current file or- end directive-`apply `end prepend a common parent to following entries-account' apply account names until end of- account' current file or- end directive-`comment'`end ignore part of journal following entries- comment' until end of- current file or- end directive-`commodity' `format'declare a commodity and its number notation:- number notation & display following entries- style in that commodity- in all files ;- display style:- amounts of that- commodity in- reports-`D' declare a commodity to be default commodity:- used for commodityless following- amounts, and its number commodityless- notation & display style entries until end- of current file;- number notation:- following entries- in that commodity- until end of- current file;- display style:- amounts of that- commodity in- reports-`include' include entries/directives what the included- from another file directives affect-`P' declare a market price for a amounts of that- commodity commodity in- reports, when -V- is used-`Y' declare a year for yearless following entries- dates until end of- current file-`=' declare an auto posting all entries in- rule, adding postings to parent/current/child- other transactions files (but not- sibling files, see- #1212)-- And some definitions:--subdirectiveoptional indented directive line immediately following a parent- directive-number how to interpret numbers when parsing journal entries (the-notationidentity of the decimal separator character). (Currently each- commodity can have its own notation, even in the same file.)-displayhow to display amounts of a commodity in reports (symbol side and-style spacing, digit groups, decimal separator, decimal places)-directivewhich entries and (when there are multiple files) which files are-scope affected by a directive-- 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.--* Menu:--* Directives and multiple files::-* Comment blocks::-* Including other files::-* Default year::-* Declaring commodities::-* Default commodity::-* Declaring market prices::-* Declaring accounts::-* Rewriting accounts::-* Default parent account::---File: hledger_journal.info, Node: Directives and multiple files, Next: Comment blocks, Up: DIRECTIVES--14.1 Directives and multiple files-==================================--If you use multiple `-f'/`--file' options, or the `include' directive,-hledger will process multiple input files. But note that directives-which affect input (see above) typically last only until the end of the-file in which they occur.-- This may seem inconvenient, but it's intentional; it makes reports-stable and deterministic, independent of the order of input. Otherwise-you could see different numbers if you happened to write -f options in a-different order, or if you moved includes around while cleaning up your-files.-- It can be surprising though; for example, it means that `alias'-directives do not affect parent or sibling files (see below).---File: hledger_journal.info, Node: Comment blocks, Next: Including other files, Prev: Directives and multiple files, Up: DIRECTIVES--14.2 Comment blocks-===================--A line containing just `comment' starts a commented region of the file,-and a line containing just `end comment' (or the end of the current-file) ends it. See also comments.---File: hledger_journal.info, Node: Including other files, Next: Default year, Prev: Comment blocks, Up: DIRECTIVES--14.3 Including other files-==========================--You can pull in the content of additional files by writing an include-directive, like this:---include FILEPATH-- Only journal files can include, and only journal, timeclock or-timedot files can be included (not CSV files, currently).-- If the file path does not begin with a slash, it is relative to the-current file's folder.-- A tilde means home directory, eg: `include ~/main.journal'.-- The path may contain glob patterns to match multiple files, eg:-`include *.journal'.-- There is limited support for recursive wildcards: `**/' (the slash-is required) matches 0 or more subdirectories. It's not super convenient-since you have to avoid include cycles and including directories, but-this can be done, eg: `include */**/*.journal'.-- The path may also be prefixed to force a specific file format,-overriding the file extension (as described in hledger.1 -> Input-files): `include timedot:~/notes/2020*.md'.---File: hledger_journal.info, Node: Default year, Next: Declaring commodities, Prev: Including other files, Up: DIRECTIVES--14.4 Default year-=================--You can set a default year to be used for subsequent dates which don't-specify a year. This is a line beginning with `Y' followed by the year.-Eg:---Y2009 ; set default year to 2009--12/15 ; equivalent to 2009/12/15- expenses 1- assets--Y2010 ; change default year to 2010--2009/1/30 ; specifies the year, not affected- expenses 1- assets--1/31 ; equivalent to 2010/1/31- expenses 1- assets---File: hledger_journal.info, Node: Declaring commodities, Next: Default commodity, Prev: Default year, Up: DIRECTIVES--14.5 Declaring commodities-==========================--The `commodity' directive has several functions:-- 1. It declares commodities which may be used in the journal. This is- currently not enforced, but can serve as documentation.-- 2. It declares what decimal mark character (period or comma) to- expect when parsing input - useful to disambiguate international- number formats in your data. (Without this, hledger will parse- both `1,000' and `1.000' as 1).-- 3. It declares a commodity's display style in output - decimal and- digit group marks, number of decimal places, symbol placement etc.--- You are likely to run into one of the problems solved by commodity-directives, sooner or later, so it's a good idea to just always use them-to declare your commodities.-- A commodity directive is just the word `commodity' followed by an-amount. It may be written on a single line, like this:---; commodity EXAMPLEAMOUNT--; 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-- or on multiple lines, using the "format" subdirective. (In this case-the commodity symbol appears twice and should be the same in both-places.):---; commodity SYMBOL-; format EXAMPLEAMOUNT--; 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- format INR 1,00,00,000.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.-- Note hledger normally uses banker's rounding, so 0.5 displayed with-zero decimal digits is "0". (More at Commodity display style.)--* Menu:--* Commodity error checking::---File: hledger_journal.info, Node: Commodity error checking, Up: Declaring commodities--14.5.1 Commodity error checking----------------------------------In strict mode, enabled with the `-s'/`--strict' flag, hledger will-report an error if a commodity symbol is used that has not been-declared by a `commodity' directive. This works similarly to account-error checking, see the notes there for more details.---File: hledger_journal.info, Node: Default commodity, Next: Declaring market prices, Prev: Declaring commodities, Up: DIRECTIVES--14.6 Default commodity-======================--The `D' directive sets a default commodity, to be used for amounts-without a commodity symbol (ie, plain numbers). This commodity will be-applied to all subsequent commodity-less amounts, or until the next `D'-directive. (Note, this is different from Ledger's `D'.)-- For compatibility/historical reasons, `D' also acts like a-`commodity' directive, setting the commodity's display style (for-output) and decimal mark (for parsing input). As with `commodity', the-amount must always be written with a decimal mark (period or comma).-If both directives are used, `commodity''s style takes precedence.-- The syntax is `D AMOUNT'. Eg:---; commodity-less amounts should be treated as dollars-; (and displayed with the dollar sign on the left, thousands separators and two decimal places)-D $1,000.00--1/1- a 5 ; <- commodity-less amount, parsed as $5 and displayed as $5.00- b---File: hledger_journal.info, Node: Declaring market prices, Next: Declaring accounts, Prev: Default commodity, Up: DIRECTIVES--14.7 Declaring market prices-============================--The `P' directive declares a market price, which is an exchange rate-between two commodities on a certain date. (In Ledger, they are called-"historical prices".) These are often obtained from a stock exchange,-cryptocurrency exchange, or the foreign exchange market.-- Here is the format:---P DATE COMMODITYA COMMODITYBAMOUNT-- * DATE is a simple date-- * COMMODITYA is the symbol of the commodity being priced-- * COMMODITYBAMOUNT is an amount (symbol and quantity) in a second- commodity, giving the price in commodity B of one unit of- commodity A.-- These two market price directives say that one euro was worth 1.35 US-dollars during 2009, and $1.40 from 2010 onward:---P 2009/1/1 € $1.35-P 2010/1/1 € $1.40-- The `-V', `-X' and `--value' flags use these market prices to show-amount values in another commodity. See Valuation.---File: hledger_journal.info, Node: Declaring accounts, Next: Rewriting accounts, Prev: Declaring market prices, Up: DIRECTIVES--14.8 Declaring accounts-=======================--`account' directives can be used to declare accounts (ie, the places-that amounts are transferred from and to). Though not required, these-declarations can provide several benefits:-- * They can document your intended chart of accounts, providing a- reference.-- * They can help hledger know your accounts' types (asset, liability,- equity, revenue, expense), useful for reports like balancesheet and- incomestatement.-- * They control account display order in reports, allowing- non-alphabetic sorting (eg Revenues to appear above Expenses).-- * They can store extra information about accounts (account numbers,- notes, etc.)-- * They help with account name completion in the add command,- hledger-iadd, hledger-web, ledger-mode etc.-- * In strict mode, they restrict which accounts may be posted to by- transactions, which helps detect typos.-- The simplest form is just the word `account' followed by a-hledger-style account name, eg this account directive declares the-`assets:bank:checking' account:---account assets:bank:checking--* Menu:--* Account error checking::-* Account comments::-* Account subdirectives::-* Account types::-* Account display order::---File: hledger_journal.info, Node: Account error checking, Next: Account comments, Up: Declaring accounts--14.8.1 Account error checking--------------------------------By default, accounts come into existence when a transaction references-them by name. This is convenient, but it means hledger can't warn you-when you mis-spell an account name in the journal. Usually you'll find-the error later, as an extra account in balance reports, or an incorrect-balance when reconciling.-- In strict mode, enabled with the `-s'/`--strict' flag, hledger will-report an error if any transaction uses an account name that has not-been declared by an account directive. Some notes:-- * The declaration is case-sensitive; transactions must use the- correct account name capitalisation.-- * The account directive's scope is "whole file and below" (see- directives). This means it affects all of the current file, and any- files it includes, but not parent or sibling files. The position of- account directives within the file does not matter, though it's- usual to put them at the top.-- * Accounts can only be declared in `journal' files (but will affect- included files in other formats).-- * It's currently not possible to declare "all possible subaccounts"- with a wildcard; every account posted to must be declared.---File: hledger_journal.info, Node: Account comments, Next: Account subdirectives, Prev: Account error checking, Up: Declaring accounts--14.8.2 Account comments--------------------------Comments, beginning with a semicolon, can be added:-- * on the same line, *after two or more spaces* (because ; is allowed- in account names)-- * on the next lines, indented-- An example of both:---account assets:bank:checking ; same-line comment, note 2+ spaces before ;- ; next-line comment- ; another with tag, acctno:12345 (not used yet)-- Same-line comments are not supported by Ledger, or hledger <1.13.---File: hledger_journal.info, Node: Account subdirectives, Next: Account types, Prev: Account comments, Up: Declaring accounts--14.8.3 Account subdirectives-------------------------------We also allow (and ignore) Ledger-style indented subdirectives, just for-compatibility.:---account assets:bank:checking- format blah blah ; <- subdirective, ignored-- Here is the full syntax of account directives:---account ACCTNAME [ACCTTYPE] [;COMMENT]- [;COMMENTS]- [LEDGER-STYLE SUBDIRECTIVES, IGNORED]---File: hledger_journal.info, Node: Account types, Next: Account display order, Prev: Account subdirectives, Up: Declaring accounts--14.8.4 Account types-----------------------hledger recognises five main types of account, corresponding to the-account classes in the accounting equation:-- `Asset', `Liability', `Equity', `Revenue', `Expense'.-- These account types are important for controlling which accounts-appear in the balancesheet, balancesheetequity, incomestatement reports-(and probably for other things in future).-- Additionally, we recognise the `Cash' type, which is also an-`Asset', and which causes accounts to appear in the cashflow report.-("Cash" here means liquid assets, eg bank balances but typically not-investments or receivables.)--* Menu:--* Declaring account types::-* Auto-detected account types::-* Interference from auto-detected account types::-* Old account type syntax::---File: hledger_journal.info, Node: Declaring account types, Next: Auto-detected account types, Up: Account types--14.8.4.1 Declaring account types-................................--Generally, to make these reports work you should declare your top-level-accounts and their types, using account directives with `type:' tags.-- The tag's value should be one of: `Asset', `Liability', `Equity',-`Revenue', `Expense', `Cash', `A', `L', `E', `R', `X', `C' (all case-insensitive). The type is inherited by all subaccounts except where-they override it. Here's a complete example:---account assets ; type: Asset-account assets:bank ; type: Cash-account assets:cash ; type: Cash-account liabilities ; type: Liability-account equity ; type: Equity-account revenues ; type: Revenue-account expenses ; type: Expense---File: hledger_journal.info, Node: Auto-detected account types, Next: Interference from auto-detected account types, Prev: Declaring account types, Up: Account types--14.8.4.2 Auto-detected account types-....................................--If you happen to use common english top-level account names, you may not-need to declare account types, as they will be detected automatically-using the following rules:--If name matches regular account type-expression: is:-------------------------------------------------- -`^assets?(:|$)' `Asset'-`^(debts?|liabilit(y|ies))(:|$)' `Liability'-`^equity(:|$)' `Equity'-`^(income|revenue)s?(:|$)' `Revenue'-`^expenses?(:|$)' `Expense'--If account type is `Asset' and name does not contain account type-regular expression: is:--------------------------------------------------------------------------- -`(investment|receivable|:A/R|:fixed)' `Cash'-- Even so, explicit declarations may be a good idea, for clarity and-predictability.---File: hledger_journal.info, Node: Interference from auto-detected account types, Next: Old account type syntax, Prev: Auto-detected account types, Up: Account types--14.8.4.3 Interference from auto-detected account types-......................................................--If you assign any account type, it's a good idea to assign all of them,-to prevent any confusion from mixing declared and auto-detected types.-Although it's unlikely to happen in real life, here's an example: with-the following journal, `balancesheetequity' shows "liabilities" in both-Liabilities and Equity sections. Declaring another account as-`type:Liability' would fix it:---account liabilities ; type:Equity--2020-01-01- assets 1- liabilities 1- equity -2---File: hledger_journal.info, Node: Old account type syntax, Prev: Interference from auto-detected account types, Up: Account types--14.8.4.4 Old account type syntax-................................--In some hledger journals you might instead see this old syntax (the-letters ALERX, separated from the account name by two or more spaces);-this is deprecated and may be removed soon:---account assets A-account liabilities L-account equity E-account revenues R-account expenses X---File: hledger_journal.info, Node: Account display order, Prev: Account types, Up: Declaring accounts--14.8.5 Account display order-------------------------------Account directives also set the order in which accounts are displayed,-eg in reports, the hledger-ui accounts screen, and the hledger-web-sidebar. By default accounts are listed in alphabetical order. But if-you have these account directives in the journal:---account assets-account liabilities-account equity-account revenues-account expenses-- you'll see those accounts displayed in declaration order, not-alphabetically:---$ hledger accounts -1-assets-liabilities-equity-revenues-expenses-- Undeclared accounts, if any, are displayed last, in alphabetical-order.-- Note that sorting is done at each level of the account tree (within-each group of sibling accounts under the same parent). And currently,-this directive:---account other:zoo-- would influence the position of `zoo' among `other''s subaccounts,-but not the position of `other' among the top-level accounts. This-means:-- * you will sometimes declare parent accounts (eg `account other'- above) that you don't intend to post to, just to customize their- display order-- * sibling accounts stay together (you couldn't display `x:y' in- between `a:b' and `a:c').---File: hledger_journal.info, Node: Rewriting accounts, Next: Default parent account, Prev: Declaring accounts, Up: DIRECTIVES--14.9 Rewriting accounts-=======================--You can define account alias rules which rewrite your account names, or-parts of them, before generating reports. This can be useful for:-- * expanding shorthand account names to their full form, allowing- easier data entry and a less verbose journal-- * adapting old journals to your current chart of accounts-- * experimenting with new account organisations, like a new hierarchy- or combining two accounts into one-- * customising reports-- Account aliases also rewrite account names in account directives.-They do not affect account names being entered via hledger add or-hledger-web.-- See also Rewrite account names.--* Menu:--* Basic aliases::-* Regex aliases::-* Combining aliases::-* Aliases and multiple files::-* end aliases::---File: hledger_journal.info, Node: Basic aliases, Next: Regex aliases, Up: Rewriting accounts--14.9.1 Basic aliases-----------------------To set an account alias, use the `alias' directive in your journal-file. This affects all subsequent journal entries in the current file or-its included files. The spaces around the = are optional:---alias OLD = NEW-- Or, you can use the `--alias 'OLD=NEW'' option on the command line.-This affects all entries. It's useful for trying out aliases-interactively.-- OLD and NEW are case sensitive full account names. hledger will-replace any occurrence of the old account name with the new one.-Subaccounts are also affected. Eg:---alias checking = assets:bank:wells fargo:checking-; rewrites "checking" to "assets:bank:wells fargo:checking", or "checking:a" to "assets:bank:wells fargo:checking:a"---File: hledger_journal.info, Node: Regex aliases, Next: Combining aliases, Prev: Basic aliases, Up: Rewriting accounts--14.9.2 Regex aliases-----------------------There is also a more powerful variant that uses a regular expression,-indicated by the forward slashes:---alias /REGEX/ = REPLACEMENT-- or `--alias '/REGEX/=REPLACEMENT''.-- REGEX is a case-insensitive regular expression. 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. Eg:---alias /^(.+):bank:([^:]+):(.*)/ = \1:\2 \3-; rewrites "assets:bank:wells fargo:checking" to "assets:wells fargo checking"-- 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.---File: hledger_journal.info, Node: Combining aliases, Next: Aliases and multiple files, Prev: Regex aliases, Up: Rewriting accounts--14.9.3 Combining aliases---------------------------You can define as many aliases as you like, using journal directives-and/or command line options.-- 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.-- 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:-- 1. `alias' directives preceding the journal entry, most recently- parsed first (ie, reading upward from the journal entry, bottom to- top)-- 2. `--alias' options, in the order they appeared on the command line- (left to right).-- In other words, for (an account name in) a given journal entry:-- * the nearest alias declaration before/above the entry is applied- first-- * the next alias before/above that will be be applied next, and so on-- * aliases defined after/below the entry do not affect it.-- 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.-- In case of trouble, adding `--debug=6' to the command line will show-which aliases are being applied when.---File: hledger_journal.info, Node: Aliases and multiple files, Next: end aliases, Prev: Combining aliases, Up: Rewriting accounts--14.9.4 Aliases and multiple files------------------------------------As explained at Directives and multiple files, `alias' directives do-not affect parent or sibling files. Eg in this command,---hledger -f a.aliases -f b.journal-- account aliases defined in a.aliases will not affect b.journal.-Including the aliases doesn't work either:---include a.aliases--2020-01-01 ; not affected by a.aliases- foo 1- bar-- This means that account aliases should usually be declared at the-start of your top-most file, like this:---alias foo=Foo-alias bar=Bar--2020-01-01 ; affected by aliases above- foo 1- bar--include c.journal ; also affected---File: hledger_journal.info, Node: end aliases, Prev: Aliases and multiple files, Up: Rewriting accounts--14.9.5 `end aliases'-----------------------You can clear (forget) all currently defined aliases with the `end-aliases' directive:---end aliases---File: hledger_journal.info, Node: Default parent account, Prev: Rewriting accounts, Up: DIRECTIVES--14.10 Default parent account-============================--You can specify a parent account which will be prepended to all accounts-within a section of the journal. Use the `apply account' and `end apply-account' directives like so:---apply account home--2010/1/1- food $10- cash--end apply account-- which is equivalent to:---2010/01/01- home:food $10- home:cash $-10-- If `end apply account' is omitted, the effect lasts to the end of-the file. Included files are also affected, eg:---apply account business-include biz.journal-end apply account-apply account personal-include personal.journal-- Prior to hledger 1.0, legacy `account' and `end' spellings were also-supported.-- A default parent account also affects account directives. It does not-affect account names being entered via hledger add or hledger-web. If-account aliases are present, they are applied after the default parent-account.---File: hledger_journal.info, Node: PERIODIC TRANSACTIONS, Next: AUTO POSTINGS, Prev: DIRECTIVES, Up: Top--15 PERIODIC TRANSACTIONS-************************--Periodic transaction rules describe transactions that recur. They allow-hledger to generate temporary future transactions to help with-forecasting, so you don't have to write out each one in the journal, and-it's easy to try out different forecasts.-- Periodic transactions can be a little tricky, so before you use them,-read this whole section - or at least these tips:-- 1. Two spaces accidentally added or omitted will cause you trouble -- read about this below.-- 2. For troubleshooting, show the generated transactions with `hledger- print --forecast tag:generated' or `hledger register --forecast- tag:generated'.-- 3. Forecasted transactions will begin only after the last- non-forecasted transaction's date.-- 4. Forecasted transactions will end 6 months from today, by default.- See below for the exact start/end rules.-- 5. period expressions can be tricky. Their documentation needs- improvement, but is worth studying.-- 6. Some period expressions with a repeating interval must begin on a- natural boundary of that interval. Eg in `weekly from DATE', DATE- must be a monday. `~ weekly from 2019/10/1' (a tuesday) will give- an error.-- 7. 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's a bit inconsistent with the above.) Eg: `~ every 10th- day of month from 2020/01', which is equivalent to `~ every 10th- day of month from 2020/01/01', will be adjusted to start on- 2019/12/10.-- Periodic transaction rules also have a second meaning: they are used-to define budget goals, shown in budget reports.--* Menu:--* Periodic rule syntax::-* Two spaces between period expression and description!::-* Forecasting with periodic transactions::-* Budgeting with periodic transactions::---File: hledger_journal.info, Node: Periodic rule syntax, Next: Two spaces between period expression and description!, Up: PERIODIC TRANSACTIONS--15.1 Periodic rule syntax-=========================--A periodic transaction rule looks like a normal journal entry, with the-date replaced by a tilde (`~') followed by a period expression-(mnemonic: `~' looks like a recurring sine wave.):---~ monthly- expenses:rent $2000- assets:bank:checking-- There is an additional constraint on the period expression: the start-date must fall on a natural boundary of the interval. Eg `monthly from-2018/1/1' is valid, but `monthly from 2018/1/15' is not.-- Partial or relative dates (M/D, D, tomorrow, last week) in the period-expression can work (useful or not). They will be relative to today's-date, unless a Y default year directive is in effect, in which case they-will be relative to Y/1/1.---File: hledger_journal.info, Node: Two spaces between period expression and description!, Next: Forecasting with periodic transactions, Prev: Periodic rule syntax, Up: PERIODIC TRANSACTIONS--15.2 Two spaces between period expression and description!-==========================================================--If the period expression is followed by a transaction description, these-must be separated by *two or more spaces*. This helps hledger know-where the period expression ends, so that descriptions can not-accidentally alter their meaning, as in this example:---; 2 or more spaces needed here, so the period is not understood as "every 2 months in 2020"-; ||-; vv-~ every 2 months in 2020, we will review- assets:bank:checking $1500- income:acme inc-- So,-- * Do write two spaces between your period expression and your- transaction description, if any.-- * Don't accidentally write two spaces in the middle of your period- expression.---File: hledger_journal.info, Node: Forecasting with periodic transactions, Next: Budgeting with periodic transactions, Prev: Two spaces between period expression and description!, Up: PERIODIC TRANSACTIONS--15.3 Forecasting with periodic transactions-===========================================--The `--forecast' flag activates any periodic transaction rules in the-journal. They will generate temporary recurring transactions, which are-not saved in the journal, but will appear in all reports (eg print).-This can be useful for estimating balances into the future, or-experimenting with different scenarios. Or, it can be used as a data-entry aid: describe recurring transactions, and every so often copy the-output of `print --forecast' into the journal.-- These transactions will have an extra tag indicating which periodic-rule generated them: `generated-transaction:~ PERIODICEXPR'. And a-similar, hidden tag (beginning with an underscore) which, because it's-never displayed by print, can be used to match transactions generated-"just now": `_generated-transaction:~ PERIODICEXPR'.-- Periodic transactions are generated within some forecast period. By-default, this-- * begins on the later of- * the report start date if specified with -b/-p/date:-- * the day after the latest normal (non-periodic) transaction in- the journal, or today if there are no normal transactions.-- * ends on the report end date if specified with -e/-p/date:, or 6- months (180 days) from today.-- This means that periodic transactions will begin only after the-latest recorded transaction. And a recorded transaction dated in the-future can prevent generation of periodic transactions. (You can avoid-that by writing the future transaction as a one-time periodic rule-instead - put tilde before the date, eg `~ YYYY-MM-DD ...').-- Or, you can set your own arbitrary "forecast period", which can-overlap recorded transactions, and need not be in the future, by-providing an option argument, like `--forecast=PERIODEXPR'. Note the-equals sign is required, a space won't work. PERIODEXPR is a period-expression, which can specify the start date, end date, or both, like-in a `date:' query. (See also hledger.1 -> Report start & end date).-Some examples: `--forecast=202001-202004', `--forecast=jan-',-`--forecast=2020'.---File: hledger_journal.info, Node: Budgeting with periodic transactions, Prev: Forecasting with periodic transactions, Up: PERIODIC TRANSACTIONS--15.4 Budgeting with periodic transactions-=========================================--With the `--budget' flag, currently supported by the balance 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.-- See also: Budgeting and Forecasting.---File: hledger_journal.info, Node: AUTO POSTINGS, Prev: PERIODIC TRANSACTIONS, Up: Top--16 AUTO POSTINGS-****************--"Automated postings" or "auto postings" are extra postings which get-added automatically to transactions which match certain queries, defined-by "auto posting rules", when you use the `--auto' flag.-- An auto posting rule looks a bit like a transaction:---= QUERY- ACCOUNT AMOUNT- ...- ACCOUNT [AMOUNT]-- except the first line is an equals sign (mnemonic: `=' suggests-matching), followed by a query (which matches existing postings), and-each "posting" line describes a posting to be generated, and the posting-amounts can be:-- * a normal amount with a commodity symbol, eg `$2'. This will be used- as-is.-- * a number, eg `2'. The commodity symbol (if any) from the matched- posting will be added to this.-- * a numeric multiplier, eg `*2' (a star followed by a number N). The- matched posting's amount (and total price, if any) will be- multiplied by N.-- * a multiplier with a commodity symbol, eg `*$2' (a star, number N,- and symbol S). The matched posting's amount will be multiplied by- N, and its commodity symbol will be replaced with S.-- Any query term containing spaces must be enclosed in single or double-quotes, as on the command line. Eg, note the quotes around the second-query term below:---= expenses:groceries 'expenses:dining out'- (budget:funds:dining out) *-1-- Some examples:---; every time I buy food, schedule a dollar donation-= expenses:food- (liabilities:charity) $-1--; when I buy a gift, also deduct that amount from a budget envelope subaccount-= expenses:gifts- assets:checking:gifts *-1- assets:checking *1--2017/12/1- expenses:food $10- assets:checking--2017/12/14- expenses:gifts $20- assets:checking---$ hledger print --auto-2017-12-01- expenses:food $10- assets:checking- (liabilities:charity) $-1--2017-12-14- expenses:gifts $20- assets:checking- assets:checking:gifts -$20- assets:checking $20--* Menu:--* Auto postings and multiple files::-* Auto postings and dates::-* Auto postings and transaction balancing / inferred amounts / balance assertions::-* Auto posting tags::---File: hledger_journal.info, Node: Auto postings and multiple files, Next: Auto postings and dates, Up: AUTO POSTINGS--16.1 Auto postings and multiple files-=====================================--An auto posting rule can affect any transaction in the current file, or-in any parent file or child file. Note, currently it will not affect-sibling files (when multiple `-f'/`--file' are used - see #1212).---File: hledger_journal.info, Node: Auto postings and dates, Next: Auto postings and transaction balancing / inferred amounts / balance assertions, Prev: Auto postings and multiple files, Up: AUTO POSTINGS--16.2 Auto postings and dates-============================--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.---File: hledger_journal.info, Node: Auto postings and transaction balancing / inferred amounts / balance assertions, Next: Auto posting tags, Prev: Auto postings and dates, Up: AUTO POSTINGS--16.3 Auto postings and transaction balancing / inferred amounts /-=================================================================--balance assertions-- Currently, auto postings are added:-- * after missing amounts are inferred, and transactions are checked- for balancedness,-- * but before balance assertions are checked.-- 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.---File: hledger_journal.info, Node: Auto posting tags, Prev: Auto postings and transaction balancing / inferred amounts / balance assertions, Up: AUTO POSTINGS--16.4 Auto posting tags-======================--Automated postings will have some extra tags:-- * `generated-posting:= QUERY' - shows this was generated by an auto- posting rule, and the query-- * `_generated-posting:= QUERY' - a hidden tag, which does not appear- in hledger's output. This can be used to match postings generated- "just now", rather than generated in the past and saved to the- journal.-- Also, any transaction that has been changed by auto posting rules-will have these tags added:-- * `modified:' - this transaction was modified-- * `_modified:' - a hidden tag not appearing in the comment; this- transaction was modified "just now".----Tag Table:-Node: Top88-Node: TRANSACTIONS2095-Ref: #transactions2213-Node: DATES3230-Ref: #dates3337-Node: Simple dates3402-Ref: #simple-dates3524-Node: Secondary dates4031-Ref: #secondary-dates4181-Node: Posting dates5515-Ref: #posting-dates5640-Node: STATUS7009-Ref: #status7117-Node: DESCRIPTION8822-Ref: #description8943-Node: Payee and note9261-Ref: #payee-and-note9371-Node: COMMENTS9705-Ref: #comments9818-Node: TAGS11011-Ref: #tags11113-Node: POSTINGS12511-Ref: #postings12626-Node: Virtual postings13650-Ref: #virtual-postings13763-Node: ACCOUNT NAMES15065-Ref: #account-names15193-Node: AMOUNTS15678-Ref: #amounts15804-Node: Digit group marks16931-Ref: #digit-group-marks17078-Node: Commodity display style18018-Ref: #commodity-display-style18194-Node: Rounding19738-Ref: #rounding19858-Node: TRANSACTION PRICES20268-Ref: #transaction-prices20425-Node: LOT PRICES LOT DATES22855-Ref: #lot-prices-lot-dates23029-Node: BALANCE ASSERTIONS23516-Ref: #balance-assertions23685-Node: Assertions and ordering24715-Ref: #assertions-and-ordering24899-Node: Assertions and included files25596-Ref: #assertions-and-included-files25835-Node: Assertions and multiple -f options26166-Ref: #assertions-and-multiple--f-options26418-Node: Assertions and commodities26549-Ref: #assertions-and-commodities26777-Node: Assertions and prices27932-Ref: #assertions-and-prices28142-Node: Assertions and subaccounts28583-Ref: #assertions-and-subaccounts28808-Node: Assertions and virtual postings29132-Ref: #assertions-and-virtual-postings29370-Node: Assertions and precision29511-Ref: #assertions-and-precision29700-Node: BALANCE ASSIGNMENTS29965-Ref: #balance-assignments30126-Node: Balance assignments and prices31289-Ref: #balance-assignments-and-prices31457-Node: DIRECTIVES31683-Ref: #directives31829-Node: Directives and multiple files37274-Ref: #directives-and-multiple-files37453-Node: Comment blocks38115-Ref: #comment-blocks38294-Node: Including other files38469-Ref: #including-other-files38645-Node: Default year39569-Ref: #default-year39734-Node: Declaring commodities40141-Ref: #declaring-commodities40320-Node: Commodity error checking42161-Ref: #commodity-error-checking42317-Node: Default commodity42573-Ref: #default-commodity42755-Node: Declaring market prices43640-Ref: #declaring-market-prices43831-Node: Declaring accounts44689-Ref: #declaring-accounts44871-Node: Account error checking46078-Ref: #account-error-checking46250-Node: Account comments47427-Ref: #account-comments47617-Node: Account subdirectives48043-Ref: #account-subdirectives48234-Node: Account types48549-Ref: #account-types48729-Node: Declaring account types49464-Ref: #declaring-account-types49649-Node: Auto-detected account types50300-Ref: #auto-detected-account-types50547-Node: Interference from auto-detected account types51446-Ref: #interference-from-auto-detected-account-types51729-Node: Old account type syntax52212-Ref: #old-account-type-syntax52415-Node: Account display order52716-Ref: #account-display-order52882-Node: Rewriting accounts54033-Ref: #rewriting-accounts54214-Node: Basic aliases54973-Ref: #basic-aliases55115-Node: Regex aliases55817-Ref: #regex-aliases55985-Node: Combining aliases56705-Ref: #combining-aliases56894-Node: Aliases and multiple files58171-Ref: #aliases-and-multiple-files58376-Node: end aliases58957-Ref: #end-aliases59110-Node: Default parent account59212-Ref: #default-parent-account59376-Node: PERIODIC TRANSACTIONS60260-Ref: #periodic-transactions60422-Node: Periodic rule syntax62339-Ref: #periodic-rule-syntax62541-Node: Two spaces between period expression and description!63244-Ref: #two-spaces-between-period-expression-and-description63559-Node: Forecasting with periodic transactions64244-Ref: #forecasting-with-periodic-transactions64545-Node: Budgeting with periodic transactions66591-Ref: #budgeting-with-periodic-transactions66826-Node: AUTO POSTINGS67233-Ref: #auto-postings67360-Node: Auto postings and multiple files69543-Ref: #auto-postings-and-multiple-files69743-Node: Auto postings and dates69951-Ref: #auto-postings-and-dates70221-Node: Auto postings and transaction balancing / inferred amounts / balance assertions70396-Ref: #auto-postings-and-transaction-balancing-inferred-amounts-balance-assertions70744-Node: Auto posting tags71089-Ref: #auto-posting-tags71300--End Tag Table
− embeddedfiles/hledger_journal.txt
@@ -1,1597 +0,0 @@--HLEDGER_JOURNAL(5) hledger User Manuals HLEDGER_JOURNAL(5)----NAME- hledger's default file format, representing a General Journal.--DESCRIPTION- hledger's usual data source is a plain text file containing journal- entries in hledger journal format. This file represents a standard- accounting general journal. I use file names ending in .journal, but- that's not required. 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.-- hledger's journal format is a compatible subset, mostly, of ledger's- journal format, so hledger can work with compatible ledger journal- files as well. It's safe, and encouraged, to run both hledger and- ledger on the same journal file, eg to validate the results you're get-- ting.-- You can use hledger without learning any more about this file; just use- the add or web or import commands to create and update it.-- Many users, though, edit the journal file with a text editor, and track- changes with a version control system such as git. Editor addons such- as ledger-mode or hledger-mode for Emacs, vim-ledger for Vim, and- hledger-vscode for Visual Studio Code, make this easier, adding colour,- formatting, tab completion, and useful commands. See Editor configura-- tion at hledger.org for the full list.-- Here's a description of each part of the file format (and hledger's- data model). These are mostly in the order you'll use them, but in- some cases related concepts have been grouped together for easy refer-- ence, or linked before they are introduced, so feel free to skip over- anything that looks unnecessary right now.--TRANSACTIONS- Transactions are the main unit of information in a journal file. They- represent events, typically a movement of some quantity of commodities- between two or more named accounts.-- Each transaction is recorded as a journal entry, beginning with a sim-- ple date in column 0. This can be followed by any of the following- optional fields, separated by spaces:-- o a status character (empty, !, or *)-- o a code (any short number or text, enclosed in parentheses)-- o a description (any remaining text until end of line or a semicolon)-- o a comment (any remaining text following a semicolon until end of- line, and any following indented lines beginning with a semicolon)-- o 0 or more indented posting lines, describing what was transferred and- the accounts involved (indented comment lines are also allowed, but- not blank lines or non-indented lines).-- Here's a simple journal file containing one transaction:-- 2008/01/01 income- assets:bank:checking $1- income:salary $-1--DATES- Simple dates- Dates in the journal file use simple dates format: YYYY-MM-DD or- YYYY/MM/DD or YYYY.MM.DD, with leading zeros optional. The year may be- omitted, in which case it will be inferred from the context: the cur-- rent transaction, the default year set with a default year directive,- or the current date when the command is run. Some examples:- 2010-01-31, 2010/01/31, 2010.1.31, 1/31.-- (The UI also accepts simple dates, as well as the more flexible smart- dates documented in the hledger manual.)-- Secondary dates- Real-life transactions sometimes involve more than one date - eg the- date you write a cheque, and the date it clears in your bank. When you- want to model this, for more accurate daily balances, you can specify- individual posting dates.-- Or, you can use the older secondary date feature (Ledger calls it aux-- iliary date or effective date). Note: we support this for compatibil-- ity, but I usually recommend avoiding this feature; posting dates are- almost always clearer and simpler.-- A secondary date is written after the primary date, following an equals- sign. If the year is omitted, the primary date's year is assumed.- When running reports, the primary (left) date is used by default, but- with the --date2 flag (or --aux-date or --effective), the secondary- (right) date will be used instead.-- The meaning of secondary dates is up to you, but it's best to follow a- consistent rule. Eg "primary = the bank's clearing date, secondary =- date the transaction was initiated, if different", as shown here:-- 2010/2/23=2/19 movie ticket- expenses:cinema $10- assets:checking-- $ hledger register checking- 2010-02-23 movie ticket assets:checking $-10 $-10-- $ hledger register checking --date2- 2010-02-19 movie ticket assets:checking $-10 $-10-- Posting dates- You can give individual postings a different date from their parent- transaction, by adding a posting comment containing a tag (see below)- like date:DATE. 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:-- 2015/5/30- expenses:food $10 ; food purchased on saturday 5/30- assets:checking ; bank cleared it on monday, date:6/1-- $ hledger -f t.j register food- 2015-05-30 expenses:food $10 $10-- $ hledger -f t.j register checking- 2015-06-01 assets:checking $-10 $-10-- DATE should be a simple date; if the year is not specified it will use- the year of the transaction's date. You can set the secondary date- similarly, with date2:DATE2. The date: or date2: tags must have a- valid simple date value if they are present, eg a date: tag with no- value is not allowed.-- Ledger's earlier, more compact bracketed date syntax is also supported:- [DATE], [DATE=DATE2] or [=DATE2]. hledger will attempt to parse any- square-bracketed sequence of the 0123456789/-.= characters in this way.- With this syntax, DATE infers its year from the transaction and DATE2- infers its year from DATE.--STATUS- 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:--- mark status- ------------------- unmarked- ! pending- * cleared-- When reporting, you can filter by status with the -U/--unmarked,- -P/--pending, and -C/--cleared flags; or the status:, status:!, and- status:* queries; or the U, P, C keys in hledger-ui.-- Note, in Ledger and in older versions of hledger, the "unmarked" state- is called "uncleared". As of hledger 1.3 we have renamed it to- unmarked for clarity.-- To replicate Ledger and old hledger's behaviour of also matching pend-- ing, combine -U and -P.-- Status marks are optional, but can be helpful eg for reconciling with- real-world accounts. Some editor modes provide highlighting and short-- cuts for working with status. Eg in Emacs ledger-mode, you can toggle- transaction status with C-c C-e, or posting status with C-c C-c.-- What "uncleared", "pending", and "cleared" actually mean is up to you.- Here's one suggestion:--- status meaning- --------------------------------------------------------------------------- uncleared recorded but not yet reconciled; needs review- pending tentatively reconciled (if needed, eg during a big reconcil-- iation)- cleared complete, reconciled as far as possible, and considered cor-- rect-- With this scheme, you would use -PC to see the current balance at your- bank, -U to see things which will probably hit your bank soon (like- uncashed checks), and no flags to see the most up-to-date state of your- finances.--DESCRIPTION- A transaction's description is the rest of the line following the date- and status mark (or until a comment begins). Sometimes called the- "narration" in traditional bookkeeping, it can be used for whatever you- wish, or left blank. Transaction descriptions can be queried, unlike- comments.-- Payee and note- You can optionally include a | (pipe) character in descriptions to sub-- divide the description into separate fields for payee/payer name on the- left (up to the first |) and an additional note field on the right- (after the first |). This may be worthwhile if you need to do more- precise querying and pivoting by payee or by note.--COMMENTS- Lines in the journal beginning with a semicolon (;) or hash (#) or star- (*) 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.)-- You can attach comments to a transaction by writing them after the- description and/or indented on the following lines (before the post-- ings). Similarly, you can attach comments to an individual posting by- writing them after the amount and/or indented on the following lines.- Transaction and posting comments must begin with a semicolon (;).-- Some examples:-- # a file comment- ; another file comment- * also a file comment, useful in org/orgstruct mode-- comment- A multiline file comment, which continues- until a line containing just "end comment"- (or end of file).- end comment-- 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)-- You can also comment larger regions of a file using comment and end- comment directives.--TAGS- Tags are a way to add extra labels or labelled data to postings and- transactions, which you can then search or pivot on.-- A simple tag is a word (which may contain hyphens) followed by a full- colon, written inside a transaction or posting comment line:-- 2017/1/16 bought groceries ; sometag:-- 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:-- expenses:food $10 ; a-posting-tag: the tag value-- Note this means hledger's tag values can not contain commas or new-- lines. Ending at commas means you can write multiple short tags on one- line, comma separated:-- assets:checking ; a comment containing tag1:, tag2: some value ...-- Here,-- o "a comment containing" is just comment text, not a tag-- o "tag1" is a tag with no value-- o "tag2" is another tag, whose value is "some value ..."-- Tags in a transaction comment affect the transaction and all of its- postings, while tags in a posting comment affect only that posting.- For example, the following transaction has three tags (A, TAG2, third-- tag) and the posting has four (those plus posting-tag):-- 1/1 a transaction ; A:, TAG2:- ; third-tag: a third transaction tag, <- with a value- (a) $1 ; posting-tag:-- Tags are like Ledger's metadata feature, except hledger's tag values- are simple strings.--POSTINGS- 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:-- o (optional) a status character (empty, !, or *), followed by a space-- o (required) an account name (any text, optionally containing single- spaces, until end of line or a double space)-- o (optional) two or more spaces or tabs followed by an amount.-- Positive amounts are being added to the account, negative amounts are- being removed.-- The amounts within a transaction must always sum up to zero. As a con-- venience, one amount may be left blank; it will be inferred so as to- balance the transaction.-- Be sure to note the unusual two-space delimiter between account name- and amount. This makes it easy to write account names containing spa-- ces. But if you accidentally leave only one space (or tab) before the- amount, the amount will be considered part of the account name.-- Virtual postings- A posting with a parenthesised account name is called a virtual posting- or unbalanced posting, which means it is exempt from the usual rule- that a transaction's postings must balance add up to zero.-- This is not part of double entry accounting, so you might choose to- avoid this feature. Or you can use it sparingly for certain special- cases where it can be convenient. Eg, you could set opening balances- without using a balancing equity account:-- 1/1 opening balances- (assets:checking) $1000- (assets:savings) $2000-- A posting with a bracketed account name is called a balanced virtual- posting. The balanced virtual postings in a transaction must add up to- zero (separately from other postings). Eg:-- 1/1 buy food with cash, update budget envelope subaccounts, & something else- assets:cash $-10 ; <- these balance- expenses:food $7 ; <-- expenses:food $3 ; <-- [assets:checking:budget:food] $-10 ; <- and these balance- [assets:checking:available] $10 ; <-- (something:else) $5 ; <- not required to balance-- Ordinary non-parenthesised, non-bracketed postings are called real- postings. You can exclude virtual postings from reports with the- -R/--real flag or real:1 query.--ACCOUNT NAMES- 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 five top-- level accounts: assets, liabilities, income, expenses, and equity.-- Account names may contain single spaces, eg: assets:accounts receiv-- able. Because of this, they must always be followed by two or more- spaces (or newline).-- Account names can be aliased.--AMOUNTS- After the account name, there is usually an amount. (Important:- between account name and amount, there must be two or more spaces.)-- hledger's amount format is flexible, supporting several international- formats. Here are some examples. Amounts have a number (the "quan-- tity"):-- 1-- ..and usually a currency or commodity name (the "commodity"). This is- a symbol, word, or phrase, to the left or right of the quantity, with- or without a separating space:-- $1- 4000 AAPL-- If the commodity name contains spaces, numbers, or punctuation, it must- be enclosed in double quotes:-- 3 "no. 42 green apples"-- Amounts can be preceded by a minus sign (or a plus sign, though plus is- the default), The sign can be written before or after a left-side com-- modity symbol:-- -$1- $-1-- One or more spaces between the sign and the number are acceptable when- parsing (but they won't be displayed in output):-- + $1- $- 1-- Scientific E notation is allowed:-- 1E-6- EUR 1E3-- A decimal mark can be written as a period or a comma:-- 1.23- 1,23456780000009-- Digit group marks- In the integer part of the quantity (left of the decimal mark), groups- of digits can optionally be separated by a "digit group mark" - a- space, comma, or period (different from the decimal mark):-- $1,000,000.00- EUR 2.000.000,00- INR 9,99,99,999.00- 1 000 000.9455-- Note, a number containing a single group mark and no decimal mark is- ambiguous. Are these group marks or decimal marks ?-- 1,000- 1.000-- 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 ("amount styles") are specific to each com-- modity, so if your data uses multiple formats, hledger can handle it:-- commodity $1,000.00- commodity EUR 1.000,00- commodity INR 9,99,99,999.00- commodity 1 000 000.9455--- Commodity display style- For each commodity, hledger chooses a consistent style to use when dis-- playing amounts. (Except price amounts, which are always displayed as- written). The display style is chosen as follows:-- o If there is a commodity directive (or default commodity directive)- for the commodity, its style is used (see examples above).-- o Otherwise the style is inferred from the amounts in that commodity- seen in the journal.-- o Or if there are no such amounts in the journal, a default style is- used (like $1000.00).-- A style is inferred from the journal amounts in a commodity as follows:-- o Use the general style (decimal mark, symbol placement) of the first- amount-- o Use the first-seen digit group style (digit group mark, digit group- sizes), if any-- o Use the maximum number of decimal places of all.-- Transaction price amounts don't affect the commodity display style- directly, but occasionally they can do so indirectly (eg when a post-- ing's amount is inferred using a transaction price). If you find this- causing problems, use a commodity directive to fix the display style.-- In summary, each commodity's amounts will be normalised to-- o the style declared by a commodity directive-- o or, the style of the first posting amount in the journal, with the- first-seen digit group style and the maximum-seen number of decimal- places.-- If reports are showing amounts in a way you don't like (eg, with too- many decimal places), use a commodity directive to set your preferred- style.-- Rounding- Amounts are stored internally as decimal numbers with up to 255 decimal- places, and displayed with the number of decimal places specified by- the commodity display style. Note, hledger uses banker's rounding: it- rounds to the nearest even number, eg 0.5 displayed with zero decimal- places is "0"). (Guaranteed since hledger 1.17.1; in older versions- this could vary if hledger was built with Decimal < 0.5.1.)--TRANSACTION PRICES- Within a transaction, you can note an amount's price in another commod-- ity. 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. 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 cer-- tain date.-- There are several ways to record a transaction price:-- 1. Write the price per unit, as @ UNITPRICE after the amount:-- 2009/1/1- assets:euros EUR100 @ $1.35 ; one hundred euros purchased at $1.35 each- assets:dollars ; balancing amount is -$135.00-- 2. Write the total price, as @@ TOTALPRICE after the amount:-- 2009/1/1- assets:euros EUR100 @@ $135 ; one hundred euros purchased at $135 for the lot- assets:dollars-- 3. Specify amounts for all postings, using exactly two commodities, and- let hledger infer the price that balances the transaction:-- 2009/1/1- assets:euros EUR100 ; one hundred euros purchased- assets:dollars $-135 ; for $135-- 4. Like 1, but the @ is parenthesised, i.e. (@); this is for compati-- bility with Ledger journals (Virtual posting costs), and is equiva-- lent to 1 in hledger.-- 5. Like 2, but as in 4 the @@ is parenthesised, i.e. (@@); in hledger,- this is equivalent to 2.-- Use the -B/--cost flag to convert amounts to their transaction price's- commodity, if any. (mnemonic: "B" is from "cost Basis", as in Ledger).- Eg here is how -B affects the balance report for the example above:-- $ hledger bal -N --flat- $-135 assets:dollars- EUR100 assets:euros- $ hledger bal -N --flat -B- $-135 assets:dollars- $135 assets:euros # <- the euros' cost-- Note -B is sensitive to the order of postings when a transaction price- is inferred: the inferred price will be in the commodity of the last- amount. So if example 3's postings are reversed, while the transaction- is equivalent, -B shows something different:-- 2009/1/1- assets:dollars $-135 ; 135 dollars sold- assets:euros EUR100 ; for 100 euros-- $ hledger bal -N --flat -B- EUR-100 assets:dollars # <- the dollars' selling price- EUR100 assets:euros--LOT PRICES, LOT DATES- Ledger allows another kind of price, lot price (four variants: {UNIT-- PRICE}, {{TOTALPRICE}}, {=FIXEDUNITPRICE}, {{=FIXEDTOTALPRICE}}),- and/or a lot date ([DATE]) to be specified. These are normally used to- select a lot when selling investments. hledger will parse these, for- compatibility with Ledger journals, but currently ignores them. A- transaction price, lot price and/or lot date may appear in any order,- after the posting amount and before the balance assertion if any.--BALANCE ASSERTIONS- hledger supports Ledger-style balance assertions in journal files.- These look like, for example, = EXPECTEDBALANCE following a posting's- amount. Eg here we assert the expected dollar balance in accounts a- and b after each posting:-- 2013/1/1- a $1 =$1- b =$-1-- 2013/1/2- a $1 =$2- b $-1 =$-2-- After reading a journal file, hledger will check all balance assertions- and report an error if any of them fail. Balance assertions can pro-- tect you from, eg, inadvertently disrupting reconciled balances while- cleaning up old entries. You can disable them temporarily with the- -I/--ignore-assertions flag, which can be useful for troubleshooting or- for reading Ledger files. (Note: this flag currently does not disable- balance assignments, below).-- Assertions and ordering- hledger sorts an account's postings and assertions first by date and- then (for postings on the same day) by parse order. Note this is dif-- ferent from Ledger, which sorts assertions only by parse order. (Also,- Ledger assertions do not see the accumulated effect of repeated post-- ings to the same account within a transaction.)-- So, hledger balance assertions keep working if you reorder differently-- dated transactions within the journal. But if you reorder same-dated- transactions or postings, assertions might break and require updating.- This order dependence does bring an advantage: precise control over the- order of postings and assertions within a day, so you can assert intra-- day balances.-- Assertions and included files- With included files, things are a little more complicated. Including- preserves the ordering of postings and assertions. If you have multi-- ple postings to an account on the same day, split across different- files, and you also want to assert the account's balance on the same- day, you'll have to put the assertion in the right file.-- Assertions and multiple -f options- Balance assertions don't work well across files specified with multiple- -f options. Use include or concatenate the files instead.-- Assertions and commodities- The asserted balance must be a simple single-commodity amount, and in- fact the assertion checks only this commodity's balance within the- (possibly multi-commodity) account balance. This is how assertions- work in Ledger also. We could call this a "partial" balance assertion.-- To assert the balance of more than one commodity in an account, you can- write multiple postings, each asserting one commodity's balance.-- You can make a stronger "total" balance assertion by writing a double- equals sign (== EXPECTEDBALANCE). This asserts that there are no other- unasserted commodities in the account (or, that their balance is 0).-- 2013/1/1- a $1- a 1EUR- b $-1- c -1EUR-- 2013/1/2 ; These assertions succeed- a 0 = $1- a 0 = 1EUR- b 0 == $-1- c 0 == -1EUR-- 2013/1/3 ; This assertion fails as 'a' also contains 1EUR- a 0 == $1-- It's not yet possible to make a complete assertion about a balance that- has multiple commodities. One workaround is to isolate each commodity- into its own subaccount:-- 2013/1/1- a:usd $1- a:euro 1EUR- b-- 2013/1/2- a 0 == 0- a:usd 0 == $1- a:euro 0 == 1EUR-- Assertions and prices- Balance assertions ignore transaction prices, and should normally be- written without one:-- 2019/1/1- (a) $1 @ EUR1 = $1-- We do allow prices to be written there, however, and print shows them,- even though they don't affect whether the assertion passes or fails.- This is for backward compatibility (hledger's close command used to- generate balance assertions with prices), and because balance assign-- ments do use them (see below).-- Assertions and subaccounts- The balance assertions above (= and ==) do not count the balance from- subaccounts; they check the account's exclusive balance only. You can- assert the balance including subaccounts by writing =* or ==*, eg:-- 2019/1/1- equity:opening balances- checking:a 5- checking:b 5- checking 1 ==* 11-- Assertions and virtual postings- Balance assertions are checked against all postings, both real and vir-- tual. They are not affected by the --real/-R flag or real: query.-- Assertions and precision- 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 asser-- tions. Balance assertion failure messages show exact amounts.--BALANCE ASSIGNMENTS- Ledger-style balance assignments are also supported. 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:-- ; 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-- or when adjusting a balance to reality:-- ; no cash left; update balance, record any untracked spending as a generic expense- 2016/1/15- assets:cash = $0- expenses:misc-- The calculated amount depends on the account's balance in the commodity- at that point (which depends on the previously-dated postings of the- commodity to that account since the last balance assertion or assign-- ment). 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.-- Balance assignments and prices- A transaction price in a balance assignment will cause the calculated- amount to have that price attached:-- 2019/1/1- (a) = $1 @ EUR2-- $ hledger print --explicit- 2019-01-01- (a) $1 @ EUR2 = $1 @ EUR2--DIRECTIVES- A directive is a line in the journal beginning with a special keyword,- that influences how the journal is processed. hledger's directives are- based on a subset of Ledger's, but there are many differences (and also- some differences between hledger versions).-- Directives' 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. Note part of this table is hidden when- viewed in a web browser - scroll it sideways to see more.--- direc- end subdi- purpose can affect (as of- tive directive rec- 2018/06)- tives- ------------------------------------------------------------------------------------- account any document account names, all entries in all- text declare account types & dis- files, before or- play order after- alias end rewrite account names following entries- aliases until end of cur-- rent file or end- directive- apply end apply prepend a common parent to following entries- account account account names until end of cur-- rent file or end- directive- comment end com- ignore part of journal following entries- ment until end of cur-- rent file or end- directive- commod- format declare a commodity and its number notation:- ity number notation & display following entries- style in that commodity- in all files ; dis-- play style: amounts- of that commodity- in reports------------- D declare a commodity to be default commodity:- used for commodityless following commod-- amounts, and its number ityless entries- notation & display style until end of cur-- rent file; number- notation: following- entries in that- commodity until end- of current file;- display style:- amounts of that- commodity in- reports- include include entries/directives what the included- from another file directives affect- P declare a market price for a amounts of that- commodity commodity in- reports, when -V is- used- Y declare a year for yearless following entries- dates until end of cur-- rent file- = declare an auto posting all entries in par-- rule, adding postings to ent/current/child- other transactions files (but not sib-- ling files, see- #1212)-- And some definitions:--- subdi- optional indented directive line immediately following a parent- rec- directive- tive- number how to interpret numbers when parsing journal entries (the iden-- nota- tity of the decimal separator character). (Currently each com-- tion modity can have its own notation, even in the same file.)- dis- how to display amounts of a commodity in reports (symbol side- play and spacing, digit groups, decimal separator, decimal places)- style- direc- which entries and (when there are multiple files) which files- tive are affected by a directive- scope-- 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.-- Directives and multiple files- If you use multiple -f/--file options, or the include directive,- hledger will process multiple input files. But note that directives- which affect input (see above) typically last only until the end of the- file in which they occur.-- This may seem inconvenient, but it's intentional; it makes reports sta-- ble and deterministic, independent of the order of input. Otherwise- you could see different numbers if you happened to write -f options in- a different order, or if you moved includes around while cleaning up- your files.-- It can be surprising though; for example, it means that alias direc-- tives do not affect parent or sibling files (see below).-- Comment blocks- A line containing just comment starts a commented region of the file,- and a line containing just end comment (or the end of the current file)- ends it. See also comments.-- Including other files- You can pull in the content of additional files by writing an include- directive, like this:-- include FILEPATH-- Only journal files can include, and only journal, timeclock or timedot- files can be included (not CSV files, currently).-- If the file path does not begin with a slash, it is relative to the- current file's folder.-- A tilde means home directory, eg: include ~/main.journal.-- The path may contain glob patterns to match multiple files, eg: include- *.journal.-- There is limited support for recursive wildcards: **/ (the slash is- required) matches 0 or more subdirectories. It's not super convenient- since you have to avoid include cycles and including directories, but- this can be done, eg: include */**/*.journal.-- The path may also be prefixed to force a specific file format, overrid-- ing the file extension (as described in hledger.1 -> Input files):- include timedot:~/notes/2020*.md.-- Default year- You can set a default year to be used for subsequent dates which don't- specify a year. This is a line beginning with Y followed by the year.- Eg:-- Y2009 ; set default year to 2009-- 12/15 ; equivalent to 2009/12/15- expenses 1- assets-- Y2010 ; change default year to 2010-- 2009/1/30 ; specifies the year, not affected- expenses 1- assets-- 1/31 ; equivalent to 2010/1/31- expenses 1- assets-- Declaring commodities- The commodity directive has several functions:-- 1. It declares commodities which may be used in the journal. This is- currently not enforced, but can serve as documentation.-- 2. It declares what decimal mark character (period or comma) to expect- when parsing input - useful to disambiguate international number- formats in your data. (Without this, hledger will parse both 1,000- and 1.000 as 1).-- 3. It declares a commodity's display style in output - decimal and- digit group marks, number of decimal places, symbol placement etc.-- You are likely to run into one of the problems solved by commodity- directives, sooner or later, so it's a good idea to just always use- them to declare your commodities.-- A commodity directive is just the word commodity followed by an amount.- It may be written on a single line, like this:-- ; commodity EXAMPLEAMOUNT-- ; 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-- or on multiple lines, using the "format" subdirective. (In this case- the commodity symbol appears twice and should be the same in both- places.):-- ; commodity SYMBOL- ; format EXAMPLEAMOUNT-- ; 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- format INR 1,00,00,000.00-- The quantity of the amount does not matter; only the format is signifi-- cant. The number must include a decimal mark: either a period or a- comma, followed by 0 or more decimal digits.-- Note hledger normally uses banker's rounding, so 0.5 displayed with- zero decimal digits is "0". (More at Commodity display style.)-- Commodity error checking- In strict mode, enabled with the -s/--strict flag, hledger will report- an error if a commodity symbol is used that has not been declared by a- commodity directive. This works similarly to account error checking,- see the notes there for more details.-- Default commodity- The D directive sets a default commodity, to be used for amounts with-- out a commodity symbol (ie, plain numbers). This commodity will be- applied to all subsequent commodity-less amounts, or until the next D- directive. (Note, this is different from Ledger's D.)-- For compatibility/historical reasons, D also acts like a commodity- directive, setting the commodity's display style (for output) and deci-- mal mark (for parsing input). As with commodity, the amount must- always be written with a decimal mark (period or comma). If both- directives are used, commodity's style takes precedence.-- The syntax is D AMOUNT. Eg:-- ; commodity-less amounts should be treated as dollars- ; (and displayed with the dollar sign on the left, thousands separators and two decimal places)- D $1,000.00-- 1/1- a 5 ; <- commodity-less amount, parsed as $5 and displayed as $5.00- b-- Declaring market prices- The P directive declares a market price, which is an exchange rate- between two commodities on a certain date. (In Ledger, they are called- "historical prices".) These are often obtained from a stock exchange,- cryptocurrency exchange, or the foreign exchange market.-- Here is the format:-- P DATE COMMODITYA COMMODITYBAMOUNT-- o DATE is a simple date-- o COMMODITYA is the symbol of the commodity being priced-- o COMMODITYBAMOUNT is an amount (symbol and quantity) in a second com-- modity, giving the price in commodity B of one unit of commodity A.-- These two market price directives say that one euro was worth 1.35 US- dollars during 2009, and $1.40 from 2010 onward:-- P 2009/1/1 EUR $1.35- P 2010/1/1 EUR $1.40-- The -V, -X and --value flags use these market prices to show amount- values in another commodity. See Valuation.-- Declaring accounts- account directives can be used to declare accounts (ie, the places that- amounts are transferred from and to). Though not required, these dec-- larations can provide several benefits:-- o They can document your intended chart of accounts, providing a refer-- ence.-- o They can help hledger know your accounts' types (asset, liability,- equity, revenue, expense), useful for reports like balancesheet and- incomestatement.-- o They control account display order in reports, allowing non-alpha-- betic sorting (eg Revenues to appear above Expenses).-- o They can store extra information about accounts (account numbers,- notes, etc.)-- o They help with account name completion in the add command, hledger-- iadd, hledger-web, ledger-mode etc.-- o In strict mode, they restrict which accounts may be posted to by- transactions, which helps detect typos.-- The simplest form is just the word account followed by a hledger-style- account name, eg this account directive declares the assets:bank:check-- ing account:-- account assets:bank:checking-- Account error checking- By default, accounts come into existence when a transaction references- them by name. This is convenient, but it means hledger can't warn you- when you mis-spell an account name in the journal. Usually you'll find- the error later, as an extra account in balance reports, or an incor-- rect balance when reconciling.-- In strict mode, enabled with the -s/--strict flag, hledger will report- an error if any transaction uses an account name that has not been- declared by an account directive. Some notes:-- o The declaration is case-sensitive; transactions must use the correct- account name capitalisation.-- o The account directive's scope is "whole file and below" (see direc-- tives). This means it affects all of the current file, and any files- it includes, but not parent or sibling files. The position of- account directives within the file does not matter, though it's usual- to put them at the top.-- o Accounts can only be declared in journal files (but will affect- included files in other formats).-- o It's currently not possible to declare "all possible subaccounts"- with a wildcard; every account posted to must be declared.-- Account comments- Comments, beginning with a semicolon, can be added:-- o on the same line, after two or more spaces (because ; is allowed in- account names)-- o on the next lines, indented-- An example of both:-- account assets:bank:checking ; same-line comment, note 2+ spaces before ;- ; next-line comment- ; another with tag, acctno:12345 (not used yet)-- Same-line comments are not supported by Ledger, or hledger <1.13.-- Account subdirectives- We also allow (and ignore) Ledger-style indented subdirectives, just- for compatibility.:-- account assets:bank:checking- format blah blah ; <- subdirective, ignored-- Here is the full syntax of account directives:-- account ACCTNAME [ACCTTYPE] [;COMMENT]- [;COMMENTS]- [LEDGER-STYLE SUBDIRECTIVES, IGNORED]-- Account types- hledger recognises five main types of account, corresponding to the- account classes in the accounting equation:-- Asset, Liability, Equity, Revenue, Expense.-- These account types are important for controlling which accounts appear- in the balancesheet, balancesheetequity, incomestatement reports (and- probably for other things in future).-- Additionally, we recognise the Cash type, which is also an Asset, and- which causes accounts to appear in the cashflow report. ("Cash" here- means liquid assets, eg bank balances but typically not investments or- receivables.)-- Declaring account types- Generally, to make these reports work you should declare your top-level- accounts and their types, using account directives with type: tags.-- The tag's value should be one of: Asset, Liability, Equity, Revenue,- Expense, Cash, A, L, E, R, X, C (all case insensitive). The type is- inherited by all subaccounts except where they override it. Here's a- complete example:-- account assets ; type: Asset- account assets:bank ; type: Cash- account assets:cash ; type: Cash- account liabilities ; type: Liability- account equity ; type: Equity- account revenues ; type: Revenue- account expenses ; type: Expense-- Auto-detected account types- If you happen to use common english top-level account names, you may- not need to declare account types, as they will be detected automati-- cally using the following rules:--- If name matches regular account type is:- expression:- ----------------------------------------------- ^assets?(:|$) Asset- ^(debts?|lia- Liability- bilit(y|ies))(:|$)- ^equity(:|$) Equity- ^(income|revenue)s?(:|$) Revenue- ^expenses?(:|$) Expense--- If account type is Asset and name does not contain regu- account type- lar expression: is:- --------------------------------------------------------------------------- (investment|receivable|:A/R|:fixed) Cash-- Even so, explicit declarations may be a good idea, for clarity and pre-- dictability.-- Interference from auto-detected account types- If you assign any account type, it's a good idea to assign all of them,- to prevent any confusion from mixing declared and auto-detected types.- Although it's unlikely to happen in real life, here's an example: with- the following journal, balancesheetequity shows "liabilities" in both- Liabilities and Equity sections. Declaring another account as- type:Liability would fix it:-- account liabilities ; type:Equity-- 2020-01-01- assets 1- liabilities 1- equity -2-- Old account type syntax- In some hledger journals you might instead see this old syntax (the- letters ALERX, separated from the account name by two or more spaces);- this is deprecated and may be removed soon:-- account assets A- account liabilities L- account equity E- account revenues R- account expenses X-- Account display order- Account directives also set the order in which accounts are displayed,- eg in reports, the hledger-ui accounts screen, and the hledger-web- sidebar. By default accounts are listed in alphabetical order. But if- you have these account directives in the journal:-- account assets- account liabilities- account equity- account revenues- account expenses-- you'll see those accounts displayed in declaration order, not alphabet-- ically:-- $ hledger accounts -1- assets- liabilities- equity- revenues- expenses-- Undeclared accounts, if any, are displayed last, in alphabetical order.-- Note that sorting is done at each level of the account tree (within- each group of sibling accounts under the same parent). And currently,- this directive:-- account other:zoo-- would influence the position of zoo among other's subaccounts, but not- the position of other among the top-level accounts. This means:-- o you will sometimes declare parent accounts (eg account other above)- that you don't intend to post to, just to customize their display- order-- o sibling accounts stay together (you couldn't display x:y in between- a:b and a:c).-- Rewriting accounts- You can define account alias rules which rewrite your account names, or- parts of them, before generating reports. This can be useful for:-- o expanding shorthand account names to their full form, allowing easier- data entry and a less verbose journal-- o adapting old journals to your current chart of accounts-- o experimenting with new account organisations, like a new hierarchy or- combining two accounts into one-- o customising reports-- Account aliases also rewrite account names in account directives. They- do not affect account names being entered via hledger add or hledger-- web.-- See also Rewrite account names.-- Basic aliases- To set an account alias, use the alias directive in your journal file.- This affects all subsequent journal entries in the current file or its- included files. The spaces around the = are optional:-- alias OLD = NEW-- Or, you can use the --alias 'OLD=NEW' option on the command line. This- affects all entries. It's useful for trying out aliases interactively.-- OLD and NEW are case sensitive full account names. hledger will- replace any occurrence of the old account name with the new one. Sub-- accounts are also affected. Eg:-- alias checking = assets:bank:wells fargo:checking- ; rewrites "checking" to "assets:bank:wells fargo:checking", or "checking:a" to "assets:bank:wells fargo:checking:a"-- Regex aliases- There is also a more powerful variant that uses a regular expression,- indicated by the forward slashes:-- alias /REGEX/ = REPLACEMENT-- or --alias '/REGEX/=REPLACEMENT'.-- REGEX is a case-insensitive regular expression. Anywhere it matches- inside an account name, the matched part will be replaced by REPLACE-- MENT. If REGEX contains parenthesised match groups, these can be ref-- erenced by the usual numeric backreferences in REPLACEMENT. Eg:-- alias /^(.+):bank:([^:]+):(.*)/ = \1:\2 \3- ; rewrites "assets:bank:wells fargo:checking" to "assets:wells fargo checking"-- Also note that REPLACEMENT continues to the end of line (or on command- line, to end of option argument), so it can contain trailing white-- space.-- Combining aliases- You can define as many aliases as you like, using journal directives- and/or command line options.-- 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.-- 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:-- 1. alias directives preceding the journal entry, most recently parsed- first (ie, reading upward from the journal entry, bottom to top)-- 2. --alias options, in the order they appeared on the command line- (left to right).-- In other words, for (an account name in) a given journal entry:-- o the nearest alias declaration before/above the entry is applied first-- o the next alias before/above that will be be applied next, and so on-- o aliases defined after/below the entry do not affect it.-- This gives nearby aliases precedence over distant ones, and helps pro-- vide semantic stability - aliases will keep working the same way inde-- pendent of which files are being read and in which order.-- In case of trouble, adding --debug=6 to the command line will show- which aliases are being applied when.-- Aliases and multiple files- As explained at Directives and multiple files, alias directives do not- affect parent or sibling files. Eg in this command,-- hledger -f a.aliases -f b.journal-- account aliases defined in a.aliases will not affect b.journal.- Including the aliases doesn't work either:-- include a.aliases-- 2020-01-01 ; not affected by a.aliases- foo 1- bar-- This means that account aliases should usually be declared at the start- of your top-most file, like this:-- alias foo=Foo- alias bar=Bar-- 2020-01-01 ; affected by aliases above- foo 1- bar-- include c.journal ; also affected-- end aliases- You can clear (forget) all currently defined aliases with the end- aliases directive:-- end aliases-- Default parent account- You can specify a parent account which will be prepended to all- accounts within a section of the journal. Use the apply account and- end apply account directives like so:-- apply account home-- 2010/1/1- food $10- cash-- end apply account-- which is equivalent to:-- 2010/01/01- home:food $10- home:cash $-10-- If end apply account is omitted, the effect lasts to the end of the- file. Included files are also affected, eg:-- apply account business- include biz.journal- end apply account- apply account personal- include personal.journal-- Prior to hledger 1.0, legacy account and end spellings were also sup-- ported.-- A default parent account also affects account directives. It does not- affect account names being entered via hledger add or hledger-web. If- account aliases are present, they are applied after the default parent- account.--PERIODIC TRANSACTIONS- Periodic transaction rules describe transactions that recur. They- allow hledger to generate temporary future transactions to help with- forecasting, so you don't have to write out each one in the journal,- and it's easy to try out different forecasts.-- Periodic transactions can be a little tricky, so before you use them,- read this whole section - or at least these tips:-- 1. Two spaces accidentally added or omitted will cause you trouble -- read about this below.-- 2. For troubleshooting, show the generated transactions with hledger- print --forecast tag:generated or hledger register --forecast- tag:generated.-- 3. Forecasted transactions will begin only after the last non-fore-- casted transaction's date.-- 4. Forecasted transactions will end 6 months from today, by default.- See below for the exact start/end rules.-- 5. period expressions can be tricky. Their documentation needs- improvement, but is worth studying.-- 6. Some period expressions with a repeating interval must begin on a- natural boundary of that interval. Eg in weekly from DATE, DATE- must be a monday. ~ weekly from 2019/10/1 (a tuesday) will give an- error.-- 7. 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's a bit- inconsistent with the above.) Eg: ~ every 10th day of month from- 2020/01, which is equivalent to ~ every 10th day of month from- 2020/01/01, will be adjusted to start on 2019/12/10.-- Periodic transaction rules also have a second meaning: they are used to- define budget goals, shown in budget reports.-- Periodic rule syntax- A periodic transaction rule looks like a normal journal entry, with the- date replaced by a tilde (~) followed by a period expression (mnemonic:- ~ looks like a recurring sine wave.):-- ~ monthly- expenses:rent $2000- assets:bank:checking-- There is an additional constraint on the period expression: the start- date must fall on a natural boundary of the interval. Eg monthly from- 2018/1/1 is valid, but monthly from 2018/1/15 is not.-- Partial or relative dates (M/D, D, tomorrow, last week) in the period- expression can work (useful or not). They will be relative to today's- date, unless a Y default year directive is in effect, in which case- they will be relative to Y/1/1.-- Two spaces between period expression and description!- If the period expression is followed by a transaction description,- these must be separated by two or more spaces. This helps hledger know- where the period expression ends, so that descriptions can not acciden-- tally alter their meaning, as in this example:-- ; 2 or more spaces needed here, so the period is not understood as "every 2 months in 2020"- ; ||- ; vv- ~ every 2 months in 2020, we will review- assets:bank:checking $1500- income:acme inc-- So,-- o Do write two spaces between your period expression and your transac-- tion description, if any.-- o Don't accidentally write two spaces in the middle of your period- expression.-- Forecasting with periodic transactions- The --forecast flag activates any periodic transaction rules in the- journal. They will generate temporary recurring transactions, which- are not saved in the journal, but will appear in all reports (eg- print). This can be useful for estimating balances into the future, or- experimenting with different scenarios. Or, it can be used as a data- entry aid: describe recurring transactions, and every so often copy the- output of print --forecast into the journal.-- These transactions will have an extra tag indicating which periodic- rule generated them: generated-transaction:~ PERIODICEXPR. And a simi-- lar, hidden tag (beginning with an underscore) which, because it's- never displayed by print, can be used to match transactions generated- "just now": _generated-transaction:~ PERIODICEXPR.-- Periodic transactions are generated within some forecast period. By- default, this-- o begins on the later of-- o the report start date if specified with -b/-p/date:-- o the day after the latest normal (non-periodic) transaction in the- journal, or today if there are no normal transactions.-- o ends on the report end date if specified with -e/-p/date:, or 6- months (180 days) from today.-- This means that periodic transactions will begin only after the latest- recorded transaction. And a recorded transaction dated in the future- can prevent generation of periodic transactions. (You can avoid that- by writing the future transaction as a one-time periodic rule instead -- put tilde before the date, eg ~ YYYY-MM-DD ...).-- Or, you can set your own arbitrary "forecast period", which can overlap- recorded transactions, and need not be in the future, by providing an- option argument, like --forecast=PERIODEXPR. Note the equals sign is- required, a space won't work. PERIODEXPR is a period expression, which- can specify the start date, end date, or both, like in a date: query.- (See also hledger.1 -> Report start & end date). Some examples:- --forecast=202001-202004, --forecast=jan-, --forecast=2020.-- Budgeting with periodic transactions- With the --budget flag, currently supported by the balance 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 com-- pared in budget reports.-- See also: Budgeting and Forecasting.---AUTO POSTINGS- "Automated postings" or "auto postings" are extra postings which get- added automatically to transactions which match certain queries,- defined by "auto posting rules", when you use the --auto flag.-- An auto posting rule looks a bit like a transaction:-- = QUERY- ACCOUNT AMOUNT- ...- ACCOUNT [AMOUNT]-- except the first line is an equals sign (mnemonic: = suggests match-- ing), followed by a query (which matches existing postings), and each- "posting" line describes a posting to be generated, and the posting- amounts can be:-- o a normal amount with a commodity symbol, eg $2. This will be used- as-is.-- o a number, eg 2. The commodity symbol (if any) from the matched post-- ing will be added to this.-- o a numeric multiplier, eg *2 (a star followed by a number N). The- matched posting's amount (and total price, if any) will be multiplied- by N.-- o a multiplier with a commodity symbol, eg *$2 (a star, number N, and- symbol S). The matched posting's amount will be multiplied by N, and- its commodity symbol will be replaced with S.-- Any query term containing spaces must be enclosed in single or double- quotes, as on the command line. Eg, note the quotes around the second- query term below:-- = expenses:groceries 'expenses:dining out'- (budget:funds:dining out) *-1-- Some examples:-- ; every time I buy food, schedule a dollar donation- = expenses:food- (liabilities:charity) $-1-- ; when I buy a gift, also deduct that amount from a budget envelope subaccount- = expenses:gifts- assets:checking:gifts *-1- assets:checking *1-- 2017/12/1- expenses:food $10- assets:checking-- 2017/12/14- expenses:gifts $20- assets:checking-- $ hledger print --auto- 2017-12-01- expenses:food $10- assets:checking- (liabilities:charity) $-1-- 2017-12-14- expenses:gifts $20- assets:checking- assets:checking:gifts -$20- assets:checking $20-- Auto postings and multiple files- An auto posting rule can affect any transaction in the current file, or- in any parent file or child file. Note, currently it will not affect- sibling files (when multiple -f/--file are used - see #1212).-- Auto postings and dates- 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.-- Auto postings and transaction balancing / inferred amounts / balance asser-- tions- Currently, auto postings are added:-- o after missing amounts are inferred, and transactions are checked for- balancedness,-- o but before balance assertions are checked.-- 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.-- Auto posting tags- Automated postings will have some extra tags:-- o generated-posting:= QUERY - shows this was generated by an auto post-- ing rule, and the query-- o _generated-posting:= QUERY - a hidden tag, which does not appear in- hledger's output. This can be used to match postings generated "just- now", rather than generated in the past and saved to the journal.-- Also, any transaction that has been changed by auto posting rules will- have these tags added:-- o modified: - this transaction was modified-- o _modified: - a hidden tag not appearing in the comment; this transac-- tion was modified "just now".----REPORTING BUGS- Report bugs at http://bugs.hledger.org (or on the #hledger IRC channel- or hledger mail list)---AUTHORS- Simon Michael <simon@joyful.com> and contributors---COPYRIGHT- Copyright (C) 2007-2020 Simon Michael.- Released under GNU GPL v3 or later.---SEE ALSO- hledger(1), hledger-ui(1), hledger-web(1), ledger(1)-- hledger_journal(5), hledger_csv(5), hledger_timeclock(5), hledger_time-- dot(5)----hledger-lib-1.20.4 December 2020 HLEDGER_JOURNAL(5)
− embeddedfiles/hledger_timeclock.5
@@ -1,90 +0,0 @@--.TH "HLEDGER_TIMECLOCK" "5" "December 2020" "hledger-lib-1.20.4 " "hledger User Manuals"----.SH NAME-.PP-The time logging format of timeclock.el, as read by hledger.-.SH DESCRIPTION-.PP-hledger can read timeclock files.-As with Ledger, these are (a subset of) timeclock.el\[aq]s format,-containing clock-in and clock-out entries as in the example below.-The date is a simple date.-The time format is HH:MM[:SS][+-ZZZZ].-Seconds and timezone are optional.-The timezone, if present, must be four digits and is ignored (currently-the time is always interpreted as a local time).-.IP-.nf-\f[C]-i 2015/03/30 09:00:00 some:account name optional description after two spaces-o 2015/03/30 09:20:00-i 2015/03/31 22:21:45 another account-o 2015/04/01 02:00:34-\f[R]-.fi-.PP-hledger treats each clock-in/clock-out pair as a transaction posting-some number of hours to an account.-Or if the session spans more than one day, it is split into several-transactions, one for each day.-For the above time log, \f[C]hledger print\f[R] generates these journal-entries:-.IP-.nf-\f[C]-$ hledger -f t.timeclock print-2015-03-30 * optional description after two spaces- (some:account name) 0.33h--2015-03-31 * 22:21-23:59- (another account) 1.64h--2015-04-01 * 00:00-02:00- (another account) 2.01h-\f[R]-.fi-.PP-Here is a sample.timeclock to download and some queries to try:-.IP-.nf-\f[C]-$ hledger -f sample.timeclock balance # current time balances-$ hledger -f sample.timeclock register -p 2009/3 # sessions in march 2009-$ hledger -f sample.timeclock register -p weekly --depth 1 --empty # time summary by week-\f[R]-.fi-.PP-To generate time logs, ie to clock in and clock out, you could:-.IP \[bu] 2-use emacs and the built-in timeclock.el, or the extended timeclock-x.el-and perhaps the extras in ledgerutils.el-.IP \[bu] 2-at the command line, use these bash aliases:-\f[C]shell alias ti=\[dq]echo i \[ga]date \[aq]+%Y-%m-%d %H:%M:%S\[aq]\[ga] \[rs]$* >>$TIMELOG\[dq] alias to=\[dq]echo o \[ga]date \[aq]+%Y-%m-%d %H:%M:%S\[aq]\[ga] >>$TIMELOG\[dq]\f[R]-.IP \[bu] 2-or use the old \f[C]ti\f[R] and \f[C]to\f[R] scripts in the ledger 2.x-repository.-These rely on a \[dq]timeclock\[dq] executable which I think is just the-ledger 2 executable renamed.---.SH "REPORTING BUGS"-Report bugs at http://bugs.hledger.org-(or on the #hledger IRC channel or hledger mail list)--.SH AUTHORS-Simon Michael <simon@joyful.com> and contributors--.SH COPYRIGHT--Copyright (C) 2007-2020 Simon Michael.-.br-Released under GNU GPL v3 or later.--.SH SEE ALSO-hledger(1), hledger\-ui(1), hledger\-web(1), ledger(1)--hledger_journal(5), hledger_csv(5), hledger_timeclock(5), hledger_timedot(5)
− embeddedfiles/hledger_timeclock.info
@@ -1,67 +0,0 @@-This is hledger-lib/hledger_timeclock.info, produced by makeinfo-version 4.8 from stdin.---File: hledger_timeclock.info, Node: Top, Up: (dir)--hledger_timeclock(5)-********************--The time logging format of timeclock.el, as read by hledger.-- hledger can read timeclock files. As with Ledger, these are (a subset-of) timeclock.el's format, containing clock-in and clock-out entries as-in the example below. The date is a simple date. The time format is-HH:MM[:SS][+-ZZZZ]. Seconds and timezone are optional. The timezone, if-present, must be four digits and is ignored (currently the time is-always interpreted as a local time).---i 2015/03/30 09:00:00 some:account name optional description after two spaces-o 2015/03/30 09:20:00-i 2015/03/31 22:21:45 another account-o 2015/04/01 02:00:34-- hledger treats each clock-in/clock-out pair as a transaction posting-some number of hours to an account. Or if the session spans more than-one day, it is split into several transactions, one for each day. For-the above time log, `hledger print' generates these journal entries:---$ hledger -f t.timeclock print-2015-03-30 * optional description after two spaces- (some:account name) 0.33h--2015-03-31 * 22:21-23:59- (another account) 1.64h--2015-04-01 * 00:00-02:00- (another account) 2.01h-- Here is a sample.timeclock to download and some queries to try:---$ hledger -f sample.timeclock balance # current time balances-$ hledger -f sample.timeclock register -p 2009/3 # sessions in march 2009-$ hledger -f sample.timeclock register -p weekly --depth 1 --empty # time summary by week-- To generate time logs, ie to clock in and clock out, you could:-- * use emacs and the built-in timeclock.el, or the extended- timeclock-x.el and perhaps the extras in ledgerutils.el-- * at the command line, use these bash aliases: `shell alias- ti="echo i `date '+%Y-%m-%d %H:%M:%S'` \$* >>$TIMELOG" alias- to="echo o `date '+%Y-%m-%d %H:%M:%S'` >>$TIMELOG"'-- * or use the old `ti' and `to' scripts in the ledger 2.x repository.- These rely on a "timeclock" executable which I think is just the- ledger 2 executable renamed.-----Tag Table:-Node: Top90--End Tag Table
− embeddedfiles/hledger_timeclock.txt
@@ -1,80 +0,0 @@--HLEDGER_TIMECLOCK(5) hledger User Manuals HLEDGER_TIMECLOCK(5)----NAME- The time logging format of timeclock.el, as read by hledger.--DESCRIPTION- hledger can read timeclock files. As with Ledger, these are (a subset- of) timeclock.el's format, containing clock-in and clock-out entries as- in the example below. The date is a simple date. The time format is- HH:MM[:SS][+-ZZZZ]. Seconds and timezone are optional. The timezone,- if present, must be four digits and is ignored (currently the time is- always interpreted as a local time).-- i 2015/03/30 09:00:00 some:account name optional description after two spaces- o 2015/03/30 09:20:00- i 2015/03/31 22:21:45 another account- o 2015/04/01 02:00:34-- hledger treats each clock-in/clock-out pair as a transaction posting- some number of hours to an account. Or if the session spans more than- one day, it is split into several transactions, one for each day. For- the above time log, hledger print generates these journal entries:-- $ hledger -f t.timeclock print- 2015-03-30 * optional description after two spaces- (some:account name) 0.33h-- 2015-03-31 * 22:21-23:59- (another account) 1.64h-- 2015-04-01 * 00:00-02:00- (another account) 2.01h-- Here is a sample.timeclock to download and some queries to try:-- $ hledger -f sample.timeclock balance # current time balances- $ hledger -f sample.timeclock register -p 2009/3 # sessions in march 2009- $ hledger -f sample.timeclock register -p weekly --depth 1 --empty # time summary by week-- To generate time logs, ie to clock in and clock out, you could:-- o use emacs and the built-in timeclock.el, or the extended timeclock-- x.el and perhaps the extras in ledgerutils.el-- o at the command line, use these bash aliases: shell alias ti="echo- i `date '+%Y-%m-%d %H:%M:%S'` \$* >>$TIMELOG" alias to="echo o- `date '+%Y-%m-%d %H:%M:%S'` >>$TIMELOG"-- o or use the old ti and to scripts in the ledger 2.x repository. These- rely on a "timeclock" executable which I think is just the ledger 2- executable renamed.----REPORTING BUGS- Report bugs at http://bugs.hledger.org (or on the #hledger IRC channel- or hledger mail list)---AUTHORS- Simon Michael <simon@joyful.com> and contributors---COPYRIGHT- Copyright (C) 2007-2020 Simon Michael.- Released under GNU GPL v3 or later.---SEE ALSO- hledger(1), hledger-ui(1), hledger-web(1), ledger(1)-- hledger_journal(5), hledger_csv(5), hledger_timeclock(5), hledger_time-- dot(5)----hledger-lib-1.20.4 December 2020 HLEDGER_TIMECLOCK(5)
− embeddedfiles/hledger_timedot.5
@@ -1,199 +0,0 @@--.TH "HLEDGER_TIMEDOT" "5" "December 2020" "hledger-lib-1.20.4 " "hledger User Manuals"----.SH NAME-.PP-hledger\[aq]s human-friendly time logging format.-.SH DESCRIPTION-.PP-Timedot is a plain text format for logging dated, categorised quantities-(of time, usually), supported by hledger.-It is convenient for approximate and retroactive time logging, eg when-the real-time clock-in/out required with a timeclock file is too precise-or too interruptive.-It can be formatted like a bar chart, making clear at a glance where-time was spent.-.PP-Though called \[dq]timedot\[dq], this format is read by hledger as-commodityless quantities, so it could be used to represent dated-quantities other than time.-In the docs below we\[aq]ll assume it\[aq]s time.-.PP-A timedot file contains a series of day entries.-A day entry begins with a non-indented hledger-style simple date (Y-M-D,-Y/M/D, Y.M.D..) Any additional text on the same line is used as a-transaction description for this day.-.PP-This is followed by optionally-indented timelog items for that day, one-per line.-Each timelog item is a note, usually a hledger:style:account:name-representing a time category, followed by two or more spaces, and a-quantity.-Each timelog item generates a hledger transaction.-.PP-Quantities can be written as:-.IP \[bu] 2-dots: a sequence of dots (.) representing quarter hours.-Spaces may optionally be used for grouping.-Eg: ....-\&..-.IP \[bu] 2-an integral or decimal number, representing hours.-Eg: 1.5-.IP \[bu] 2-an integral or decimal number immediately followed by a unit symbol-\f[C]s\f[R], \f[C]m\f[R], \f[C]h\f[R], \f[C]d\f[R], \f[C]w\f[R],-\f[C]mo\f[R], or \f[C]y\f[R], representing seconds, minutes, hours, days-weeks, months or years respectively.-Eg: 90m.-The following equivalencies are assumed, currently: 1m = 60s, 1h = 60m,-1d = 24h, 1w = 7d, 1mo = 30d, 1y=365d.-.PP-There is some flexibility allowing notes and todo lists to be kept right-in the time log, if needed:-.IP \[bu] 2-Blank lines and lines beginning with \f[C]#\f[R] or \f[C];\f[R] are-ignored.-.IP \[bu] 2-Lines not ending with a double-space and quantity are parsed as items-taking no time, which will not appear in balance reports by default.-(Add -E to see them.)-.IP \[bu] 2-Org mode headlines (lines beginning with one or more \f[C]*\f[R]-followed by a space) can be used as date lines or timelog items (the-stars are ignored).-Also all org headlines before the first date line are ignored.-This means org users can manage their timelog as an org outline (eg-using org-mode/orgstruct-mode in Emacs), for organisation, faster-navigation, controlling visibility etc.-.PP-Examples:-.IP-.nf-\f[C]-# on this day, 6h was spent on client work, 1.5h on haskell FOSS work, etc.-2016/2/1-inc:client1 .... .... .... .... .... ....-fos:haskell .... ..-biz:research .--2016/2/2-inc:client1 .... ....-biz:research .-\f[R]-.fi-.IP-.nf-\f[C]-2016/2/3-inc:client1 4-fos:hledger 3-biz:research 1-\f[R]-.fi-.IP-.nf-\f[C]-* Time log-** 2020-01-01-*** adm:time .-*** adm:finance .-\f[R]-.fi-.IP-.nf-\f[C]-* 2020 Work Diary-** Q1-*** 2020-02-29-**** DONE-0700 yoga-**** UNPLANNED-**** BEGUN-hom:chores- cleaning ...- water plants- outdoor - one full watering can- indoor - light watering-**** TODO-adm:planning: trip-*** LATER-\f[R]-.fi-.PP-Reporting:-.IP-.nf-\f[C]-$ hledger -f t.timedot print date:2016/2/2-2016-02-02 *- (inc:client1) 2.00--2016-02-02 *- (biz:research) 0.25-\f[R]-.fi-.IP-.nf-\f[C]-$ hledger -f t.timedot bal --daily --tree-Balance changes in 2016-02-01-2016-02-03:-- || 2016-02-01d 2016-02-02d 2016-02-03d -============++========================================- biz || 0.25 0.25 1.00 - research || 0.25 0.25 1.00 - fos || 1.50 0 3.00 - haskell || 1.50 0 0 - hledger || 0 0 3.00 - inc || 6.00 2.00 4.00 - client1 || 6.00 2.00 4.00 -------------++----------------------------------------- || 7.75 2.25 8.00 -\f[R]-.fi-.PP-I prefer to use period for separating account components.-We can make this work with an account alias:-.IP-.nf-\f[C]-2016/2/4-fos.hledger.timedot 4-fos.ledger ..-\f[R]-.fi-.IP-.nf-\f[C]-$ hledger -f t.timedot --alias /\[rs]\[rs]./=: bal date:2016/2/4 --tree- 4.50 fos- 4.00 hledger:timedot- 0.50 ledger---------------------- 4.50-\f[R]-.fi-.PP-Here is a sample.timedot.---.SH "REPORTING BUGS"-Report bugs at http://bugs.hledger.org-(or on the #hledger IRC channel or hledger mail list)--.SH AUTHORS-Simon Michael <simon@joyful.com> and contributors--.SH COPYRIGHT--Copyright (C) 2007-2020 Simon Michael.-.br-Released under GNU GPL v3 or later.--.SH SEE ALSO-hledger(1), hledger\-ui(1), hledger\-web(1), ledger(1)--hledger_journal(5), hledger_csv(5), hledger_timeclock(5), hledger_timedot(5)
− embeddedfiles/hledger_timedot.info
@@ -1,156 +0,0 @@-This is hledger-lib/hledger_timedot.info, produced by makeinfo version-4.8 from stdin.---File: hledger_timedot.info, Node: Top, Up: (dir)--hledger_timedot(5)-******************--hledger's human-friendly time logging format.-- Timedot is a plain text format for logging dated, categorised-quantities (of time, usually), supported by hledger. It is convenient-for approximate and retroactive time logging, eg when the real-time-clock-in/out required with a timeclock file is too precise or too-interruptive. It can be formatted like a bar chart, making clear at a-glance where time was spent.-- Though called "timedot", this format is read by hledger as-commodityless quantities, so it could be used to represent dated-quantities other than time. In the docs below we'll assume it's time.-- A timedot file contains a series of day entries. A day entry begins-with a non-indented hledger-style simple date (Y-M-D, Y/M/D, Y.M.D..)-Any additional text on the same line is used as a transaction-description for this day.-- This is followed by optionally-indented timelog items for that day,-one per line. Each timelog item is a note, usually a-hledger:style:account:name representing a time category, followed by two-or more spaces, and a quantity. Each timelog item generates a hledger-transaction.-- Quantities can be written as:-- * dots: a sequence of dots (.) representing quarter hours. Spaces may- optionally be used for grouping. Eg: .... ..-- * an integral or decimal number, representing hours. Eg: 1.5-- * an integral or decimal number immediately followed by a unit symbol- `s', `m', `h', `d', `w', `mo', or `y', representing seconds,- minutes, hours, days weeks, months or years respectively. Eg: 90m.- The following equivalencies are assumed, currently: 1m = 60s, 1h =- 60m, 1d = 24h, 1w = 7d, 1mo = 30d, 1y=365d.--- There is some flexibility allowing notes and todo lists to be kept-right in the time log, if needed:-- * Blank lines and lines beginning with `#' or `;' are ignored.-- * Lines not ending with a double-space and quantity are parsed as- items taking no time, which will not appear in balance reports by- default. (Add -E to see them.)-- * Org mode headlines (lines beginning with one or more `*' followed- by a space) can be used as date lines or timelog items (the stars- are ignored). Also all org headlines before the first date line- are ignored. This means org users can manage their timelog as an- org outline (eg using org-mode/orgstruct-mode in Emacs), for- organisation, faster navigation, controlling visibility etc.--- Examples:---# on this day, 6h was spent on client work, 1.5h on haskell FOSS work, etc.-2016/2/1-inc:client1 .... .... .... .... .... ....-fos:haskell .... ..-biz:research .--2016/2/2-inc:client1 .... ....-biz:research .---2016/2/3-inc:client1 4-fos:hledger 3-biz:research 1---* Time log-** 2020-01-01-*** adm:time .-*** adm:finance .---* 2020 Work Diary-** Q1-*** 2020-02-29-**** DONE-0700 yoga-**** UNPLANNED-**** BEGUN-hom:chores- cleaning ...- water plants- outdoor - one full watering can- indoor - light watering-**** TODO-adm:planning: trip-*** LATER-- Reporting:---$ hledger -f t.timedot print date:2016/2/2-2016-02-02 *- (inc:client1) 2.00--2016-02-02 *- (biz:research) 0.25---$ hledger -f t.timedot bal --daily --tree-Balance changes in 2016-02-01-2016-02-03:-- || 2016-02-01d 2016-02-02d 2016-02-03d-============++========================================- biz || 0.25 0.25 1.00- research || 0.25 0.25 1.00- fos || 1.50 0 3.00- haskell || 1.50 0 0- hledger || 0 0 3.00- inc || 6.00 2.00 4.00- client1 || 6.00 2.00 4.00-------------++----------------------------------------- || 7.75 2.25 8.00-- I prefer to use period for separating account components. We can make-this work with an account alias:---2016/2/4-fos.hledger.timedot 4-fos.ledger ..---$ hledger -f t.timedot --alias /\\./=: bal date:2016/2/4 --tree- 4.50 fos- 4.00 hledger:timedot- 0.50 ledger---------------------- 4.50-- Here is a sample.timedot.----Tag Table:-Node: Top88--End Tag Table
− embeddedfiles/hledger_timedot.txt
@@ -1,163 +0,0 @@--HLEDGER_TIMEDOT(5) hledger User Manuals HLEDGER_TIMEDOT(5)----NAME- hledger's human-friendly time logging format.--DESCRIPTION- Timedot is a plain text format for logging dated, categorised quanti-- ties (of time, usually), supported by hledger. It is convenient for- approximate and retroactive time logging, eg when the real-time clock-- in/out required with a timeclock file is too precise or too interrup-- tive. It can be formatted like a bar chart, making clear at a glance- where time was spent.-- Though called "timedot", this format is read by hledger as commodity-- less quantities, so it could be used to represent dated quantities- other than time. In the docs below we'll assume it's time.-- A timedot file contains a series of day entries. A day entry begins- with a non-indented hledger-style simple date (Y-M-D, Y/M/D, Y.M.D..)- Any additional text on the same line is used as a transaction descrip-- tion for this day.-- This is followed by optionally-indented timelog items for that day, one- per line. Each timelog item is a note, usually a- hledger:style:account:name representing a time category, followed by- two or more spaces, and a quantity. Each timelog item generates a- hledger transaction.-- Quantities can be written as:-- o dots: a sequence of dots (.) representing quarter hours. Spaces may- optionally be used for grouping. Eg: .... ..-- o an integral or decimal number, representing hours. Eg: 1.5-- o an integral or decimal number immediately followed by a unit symbol- s, m, h, d, w, mo, or y, representing seconds, minutes, hours, days- weeks, months or years respectively. Eg: 90m. The following equiva-- lencies are assumed, currently: 1m = 60s, 1h = 60m, 1d = 24h, 1w =- 7d, 1mo = 30d, 1y=365d.-- There is some flexibility allowing notes and todo lists to be kept- right in the time log, if needed:-- o Blank lines and lines beginning with # or ; are ignored.-- o Lines not ending with a double-space and quantity are parsed as items- taking no time, which will not appear in balance reports by default.- (Add -E to see them.)-- o Org mode headlines (lines beginning with one or more * followed by a- space) can be used as date lines or timelog items (the stars are- ignored). Also all org headlines before the first date line are- ignored. This means org users can manage their timelog as an org- outline (eg using org-mode/orgstruct-mode in Emacs), for organisa-- tion, faster navigation, controlling visibility etc.-- Examples:-- # on this day, 6h was spent on client work, 1.5h on haskell FOSS work, etc.- 2016/2/1- inc:client1 .... .... .... .... .... ....- fos:haskell .... ..- biz:research .-- 2016/2/2- inc:client1 .... ....- biz:research .-- 2016/2/3- inc:client1 4- fos:hledger 3- biz:research 1-- * Time log- ** 2020-01-01- *** adm:time .- *** adm:finance .-- * 2020 Work Diary- ** Q1- *** 2020-02-29- **** DONE- 0700 yoga- **** UNPLANNED- **** BEGUN- hom:chores- cleaning ...- water plants- outdoor - one full watering can- indoor - light watering- **** TODO- adm:planning: trip- *** LATER-- Reporting:-- $ hledger -f t.timedot print date:2016/2/2- 2016-02-02 *- (inc:client1) 2.00-- 2016-02-02 *- (biz:research) 0.25-- $ hledger -f t.timedot bal --daily --tree- Balance changes in 2016-02-01-2016-02-03:-- || 2016-02-01d 2016-02-02d 2016-02-03d- ============++========================================- biz || 0.25 0.25 1.00- research || 0.25 0.25 1.00- fos || 1.50 0 3.00- haskell || 1.50 0 0- hledger || 0 0 3.00- inc || 6.00 2.00 4.00- client1 || 6.00 2.00 4.00- ------------++----------------------------------------- || 7.75 2.25 8.00-- I prefer to use period for separating account components. We can make- this work with an account alias:-- 2016/2/4- fos.hledger.timedot 4- fos.ledger ..-- $ hledger -f t.timedot --alias /\\./=: bal date:2016/2/4 --tree- 4.50 fos- 4.00 hledger:timedot- 0.50 ledger- --------------------- 4.50-- Here is a sample.timedot.----REPORTING BUGS- Report bugs at http://bugs.hledger.org (or on the #hledger IRC channel- or hledger mail list)---AUTHORS- Simon Michael <simon@joyful.com> and contributors---COPYRIGHT- Copyright (C) 2007-2020 Simon Michael.- Released under GNU GPL v3 or later.---SEE ALSO- hledger(1), hledger-ui(1), hledger-web(1), ledger(1)-- hledger_journal(5), hledger_csv(5), hledger_timeclock(5), hledger_time-- dot(5)----hledger-lib-1.20.4 December 2020 HLEDGER_TIMEDOT(5)
hledger.1 view
@@ -1,4963 +1,9371 @@ .\"t -.TH "HLEDGER" "1" "December 2020" "hledger-1.20.4 " "hledger User Manuals"----.SH NAME-.PP-A command-line accounting tool for both power users and folks new to-accounting.-.SH SYNOPSIS-.PP-\f[C]hledger\f[R]-.PP-\f[C]hledger [-f FILE] COMMAND [OPTIONS] [ARGS]\f[R]-.PP-\f[C]hledger [-f FILE] ADDONCMD -- [OPTIONS] [ARGS]\f[R]-.SH DESCRIPTION-.PP-hledger is a reliable, cross-platform set of programs for tracking-money, time, or any other commodity, using double-entry accounting and a-simple, editable file format.-hledger is inspired by and largely compatible with ledger(1).-.PP-This is hledger\[cq]s command-line interface (there are also terminal-and web interfaces).-Its basic function is to read a plain text file describing financial-transactions (in accounting terms, a general journal) and print useful-reports on standard output, or export them as CSV.-hledger can also read some other file formats such as CSV files,-translating them to journal format.-Additionally, hledger lists other hledger-* executables found in the-user\[cq]s $PATH and can invoke them as subcommands.-.PP-hledger reads data from one or more files in hledger journal, timeclock,-timedot, or CSV format specified with \f[C]-f\f[R], or-\f[C]$LEDGER_FILE\f[R], or \f[C]$HOME/.hledger.journal\f[R] (on windows,-perhaps \f[C]C:/Users/USER/.hledger.journal\f[R]).-If using \f[C]$LEDGER_FILE\f[R], note this must be a real environment-variable, not a shell variable.-You can specify standard input with \f[C]-f-\f[R].-.PP-Transactions are dated movements of money between two (or more) named-accounts, and are recorded with journal entries like this:-.IP-.nf-\f[C]-2015/10/16 bought food- expenses:food $10- assets:cash-\f[R]-.fi-.PP-For more about this format, see hledger_journal(5).-.PP-Most users use a text editor to edit the journal, usually with an editor-mode such as ledger-mode for added convenience.-hledger\[cq]s interactive add command is another way to record new-transactions.-hledger never changes existing transactions.-.PP-To get started, you can either save some entries like the above in-\f[C]\[ti]/.hledger.journal\f[R], or run \f[C]hledger add\f[R] and-follow the prompts.-Then try some commands like \f[C]hledger print\f[R] or-\f[C]hledger balance\f[R].-Run \f[C]hledger\f[R] with no arguments for a list of commands.-.SH COMMON TASKS-.PP-Here are some quick examples of how to do some basic tasks with hledger.-For more details, see the reference section below, the-hledger_journal(5) manual, or the more extensive docs at-https://hledger.org.-.SS Getting help-.IP-.nf-\f[C]-$ hledger # show available commands-$ hledger --help # show common options-$ hledger CMD --help # show common and command options, and command help-$ hledger help # show available manuals/topics-$ hledger help hledger # show hledger manual as info/man/text (auto-chosen)-$ hledger help journal --man # show the journal manual as a man page-$ hledger help --help # show more detailed help for the help command-\f[R]-.fi-.PP-Find more docs, chat, mail list, reddit, issue tracker:-https://hledger.org#help-feedback-.SS Constructing command lines-.PP-hledger has an extensive and powerful command line interface.-We strive to keep it simple and ergonomic, but you may run into one of-the confusing real world details described in OPTIONS, below.-If that happens, here are some tips that may help:-.IP \[bu] 2-command-specific options must go after the command (it\[aq]s fine to put-all options there) (\f[C]hledger CMD OPTS ARGS\f[R])-.IP \[bu] 2-running add-on executables directly simplifies command line parsing-(\f[C]hledger-ui OPTS ARGS\f[R])-.IP \[bu] 2-enclose \[dq]problematic\[dq] args in single quotes-.IP \[bu] 2-if needed, also add a backslash to hide regular expression-metacharacters from the shell-.IP \[bu] 2-to see how a misbehaving command is being parsed, add-\f[C]--debug=2\f[R].-.SS Starting a journal file-.PP-hledger looks for your accounting data in a journal file,-\f[C]$HOME/.hledger.journal\f[R] by default:-.IP-.nf-\f[C]-$ hledger stats-The hledger journal file \[dq]/Users/simon/.hledger.journal\[dq] was not found.-Please create it first, eg with \[dq]hledger add\[dq] or a text editor.-Or, specify an existing journal file with -f or LEDGER_FILE.-\f[R]-.fi-.PP-You can override this by setting the \f[C]LEDGER_FILE\f[R] environment-variable.-It\[aq]s a good practice to keep this important file under version-control, and to start a new file each year.-So you could do something like this:-.IP-.nf-\f[C]-$ mkdir \[ti]/finance-$ cd \[ti]/finance-$ git init-Initialized empty Git repository in /Users/simon/finance/.git/-$ touch 2020.journal-$ echo \[dq]export LEDGER_FILE=$HOME/finance/2020.journal\[dq] >> \[ti]/.bashrc-$ source \[ti]/.bashrc-$ hledger stats-Main file : /Users/simon/finance/2020.journal-Included files : -Transactions span : to (0 days)-Last transaction : none-Transactions : 0 (0.0 per day)-Transactions last 30 days: 0 (0.0 per day)-Transactions last 7 days : 0 (0.0 per day)-Payees/descriptions : 0-Accounts : 0 (depth 0)-Commodities : 0 ()-Market prices : 0 ()-\f[R]-.fi-.SS Setting opening balances-.PP-Pick a starting date for which you can look up the balances of some-real-world assets (bank accounts, wallet..) and liabilities (credit-cards..).-.PP-To avoid a lot of data entry, you may want to start with just one or two-accounts, like your checking account or cash wallet; and pick a recent-starting date, like today or the start of the week.-You can always come back later and add more accounts and older-transactions, eg going back to january 1st.-.PP-Add an opening balances transaction to the journal, declaring the-balances on this date.-Here are two ways to do it:-.IP \[bu] 2-The first way: open the journal in any text editor and save an entry-like this:-.RS 2-.IP-.nf-\f[C]-2020-01-01 * opening balances- assets:bank:checking $1000 = $1000- assets:bank:savings $2000 = $2000- assets:cash $100 = $100- liabilities:creditcard $-50 = $-50- equity:opening/closing balances-\f[R]-.fi-.PP-These are start-of-day balances, ie whatever was in the account at the-end of the previous day.-.PP-The * after the date is an optional status flag.-Here it means \[dq]cleared & confirmed\[dq].-.PP-The currency symbols are optional, but usually a good idea as you\[aq]ll-be dealing with multiple currencies sooner or later.-.PP-The = amounts are optional balance assertions, providing extra error-checking.-.RE-.IP \[bu] 2-The second way: run \f[C]hledger add\f[R] and follow the prompts to-record a similar transaction:-.RS 2-.IP-.nf-\f[C]-$ hledger add-Adding transactions to journal file /Users/simon/finance/2020.journal-Any command line arguments will be used as defaults.-Use tab key to complete, readline keys to edit, enter to accept defaults.-An optional (CODE) may follow transaction dates.-An optional ; COMMENT may follow descriptions or amounts.-If you make a mistake, enter < at any prompt to go one step backward.-To end a transaction, enter . when prompted.-To quit, enter . at a date prompt or press control-d or control-c.-Date [2020-02-07]: 2020-01-01-Description: * opening balances-Account 1: assets:bank:checking-Amount 1: $1000-Account 2: assets:bank:savings-Amount 2 [$-1000]: $2000-Account 3: assets:cash-Amount 3 [$-3000]: $100-Account 4: liabilities:creditcard-Amount 4 [$-3100]: $-50-Account 5: equity:opening/closing balances-Amount 5 [$-3050]: -Account 6 (or . or enter to finish this transaction): .-2020-01-01 * opening balances- assets:bank:checking $1000- assets:bank:savings $2000- assets:cash $100- liabilities:creditcard $-50- equity:opening/closing balances $-3050--Save this transaction to the journal ? [y]: -Saved.-Starting the next transaction (. or ctrl-D/ctrl-C to quit)-Date [2020-01-01]: .-\f[R]-.fi-.RE-.PP-If you\[aq]re using version control, this could be a good time to commit-the journal.-Eg:-.IP-.nf-\f[C]-$ git commit -m \[aq]initial balances\[aq] 2020.journal-\f[R]-.fi-.SS Recording transactions-.PP-As you spend or receive money, you can record these transactions using-one of the methods above (text editor, hledger add) or by using the-hledger-iadd or hledger-web add-ons, or by using the import command to-convert CSV data downloaded from your bank.-.PP-Here are some simple transactions, see the hledger_journal(5) manual and-hledger.org for more ideas:-.IP-.nf-\f[C]-2020/1/10 * gift received- assets:cash $20- income:gifts--2020.1.12 * farmers market- expenses:food $13- assets:cash--2020-01-15 paycheck- income:salary- assets:bank:checking $1000-\f[R]-.fi-.SS Reconciling-.PP-Periodically you should reconcile - compare your hledger-reported-balances against external sources of truth, like bank statements or your-bank\[aq]s website - to be sure that your ledger accurately represents-the real-world balances (and, that the real-world institutions have not-made a mistake!).-This gets easy and fast with (1) practice and (2) frequency.-If you do it daily, it can take 2-10 minutes.-If you let it pile up, expect it to take longer as you hunt down errors-and discrepancies.-.PP-A typical workflow:-.IP "1." 3-Reconcile cash.-Count what\[aq]s in your wallet.-Compare with what hledger reports (\f[C]hledger bal cash\f[R]).-If they are different, try to remember the missing transaction, or look-for the error in the already-recorded transactions.-A register report can be helpful (\f[C]hledger reg cash\f[R]).-If you can\[aq]t find the error, add an adjustment transaction.-Eg if you have $105 after the above, and can\[aq]t explain the missing-$2, it could be:-.RS 4-.IP-.nf-\f[C]-2020-01-16 * adjust cash- assets:cash $-2 = $105- expenses:misc-\f[R]-.fi-.RE-.IP "2." 3-Reconcile checking.-Log in to your bank\[aq]s website.-Compare today\[aq]s (cleared) balance with hledger\[aq]s cleared balance-(\f[C]hledger bal checking -C\f[R]).-If they are different, track down the error or record the missing-transaction(s) or add an adjustment transaction, similar to the above.-Unlike the cash case, you can usually compare the transaction history-and running balance from your bank with the one reported by-\f[C]hledger reg checking -C\f[R].-This will be easier if you generally record transaction dates quite-similar to your bank\[aq]s clearing dates.-.IP "3." 3-Repeat for other asset/liability accounts.-.PP-Tip: instead of the register command, use hledger-ui to see a-live-updating register while you edit the journal:-\f[C]hledger-ui --watch --register checking -C\f[R]-.PP-After reconciling, it could be a good time to mark the reconciled-transactions\[aq] status as \[dq]cleared and confirmed\[dq], if you want-to track that, by adding the \f[C]*\f[R] marker.-Eg in the paycheck transaction above, insert \f[C]*\f[R] between-\f[C]2020-01-15\f[R] and \f[C]paycheck\f[R]-.PP-If you\[aq]re using version control, this can be another good time to-commit:-.IP-.nf-\f[C]-$ git commit -m \[aq]txns\[aq] 2020.journal-\f[R]-.fi-.SS Reporting-.PP-Here are some basic reports.-.PP-Show all transactions:-.IP-.nf-\f[C]-$ hledger print-2020-01-01 * opening balances- assets:bank:checking $1000- assets:bank:savings $2000- assets:cash $100- liabilities:creditcard $-50- equity:opening/closing balances $-3050--2020-01-10 * gift received- assets:cash $20- income:gifts--2020-01-12 * farmers market- expenses:food $13- assets:cash--2020-01-15 * paycheck- income:salary- assets:bank:checking $1000--2020-01-16 * adjust cash- assets:cash $-2 = $105- expenses:misc-\f[R]-.fi-.PP-Show account names, and their hierarchy:-.IP-.nf-\f[C]-$ hledger accounts --tree-assets- bank- checking- savings- cash-equity- opening/closing balances-expenses- food- misc-income- gifts- salary-liabilities- creditcard-\f[R]-.fi-.PP-Show all account totals:-.IP-.nf-\f[C]-$ hledger balance- $4105 assets- $4000 bank- $2000 checking- $2000 savings- $105 cash- $-3050 equity:opening/closing balances- $15 expenses- $13 food- $2 misc- $-1020 income- $-20 gifts- $-1000 salary- $-50 liabilities:creditcard---------------------- 0-\f[R]-.fi-.PP-Show only asset and liability balances, as a flat list, limited to depth-2:-.IP-.nf-\f[C]-$ hledger bal assets liabilities --flat -2- $4000 assets:bank- $105 assets:cash- $-50 liabilities:creditcard---------------------- $4055-\f[R]-.fi-.PP-Show the same thing without negative numbers, formatted as a simple-balance sheet:-.IP-.nf-\f[C]-$ hledger bs --flat -2-Balance Sheet 2020-01-16-- || 2020-01-16 -========================++============- Assets || -------------------------++------------- assets:bank || $4000 - assets:cash || $105 -------------------------++------------- || $4105 -========================++============- Liabilities || -------------------------++------------- liabilities:creditcard || $50 -------------------------++------------- || $50 -========================++============- Net: || $4055 -\f[R]-.fi-.PP-The final total is your \[dq]net worth\[dq] on the end date.-(Or use \f[C]bse\f[R] for a full balance sheet with equity.)-.PP-Show income and expense totals, formatted as an income statement:-.IP-.nf-\f[C]-hledger is -Income Statement 2020-01-01-2020-01-16-- || 2020-01-01-2020-01-16 -===============++=======================- Revenues || ----------------++------------------------ income:gifts || $20 - income:salary || $1000 ----------------++------------------------ || $1020 -===============++=======================- Expenses || ----------------++------------------------ expenses:food || $13 - expenses:misc || $2 ----------------++------------------------ || $15 -===============++=======================- Net: || $1005 -\f[R]-.fi-.PP-The final total is your net income during this period.-.PP-Show transactions affecting your wallet, with running total:-.IP-.nf-\f[C]-$ hledger register cash-2020-01-01 opening balances assets:cash $100 $100-2020-01-10 gift received assets:cash $20 $120-2020-01-12 farmers market assets:cash $-13 $107-2020-01-16 adjust cash assets:cash $-2 $105-\f[R]-.fi-.PP-Show weekly posting counts as a bar chart:-.IP-.nf-\f[C]-$ hledger activity -W-2019-12-30 *****-2020-01-06 ****-2020-01-13 ****-\f[R]-.fi-.SS Migrating to a new file-.PP-At the end of the year, you may want to continue your journal in a new-file, so that old transactions don\[aq]t slow down or clutter your-reports, and to help ensure the integrity of your accounting history.-See the close command.-.PP-If using version control, don\[aq]t forget to \f[C]git add\f[R] the new-file.-.SH OPTIONS-.SS General options-.PP-To see general usage help, including general options which are supported-by most hledger commands, run \f[C]hledger -h\f[R].-.PP-General help options:-.TP-\f[B]\f[CB]-h --help\f[B]\f[R]-show general usage (or after COMMAND, command usage)-.TP-\f[B]\f[CB]--version\f[B]\f[R]-show version-.TP-\f[B]\f[CB]--debug[=N]\f[B]\f[R]-show debug output (levels 1-9, default: 1)-.PP-General input options:-.TP-\f[B]\f[CB]-f FILE --file=FILE\f[B]\f[R]-use a different input file.-For stdin, use - (default: \f[C]$LEDGER_FILE\f[R] or-\f[C]$HOME/.hledger.journal\f[R])-.TP-\f[B]\f[CB]--rules-file=RULESFILE\f[B]\f[R]-Conversion rules file to use when reading CSV (default: FILE.rules)-.TP-\f[B]\f[CB]--separator=CHAR\f[B]\f[R]-Field separator to expect when reading CSV (default: \[aq],\[aq])-.TP-\f[B]\f[CB]--alias=OLD=NEW\f[B]\f[R]-rename accounts named OLD to NEW-.TP-\f[B]\f[CB]--anon\f[B]\f[R]-anonymize accounts and payees-.TP-\f[B]\f[CB]--pivot FIELDNAME\f[B]\f[R]-use some other field or tag for the account name-.TP-\f[B]\f[CB]-I --ignore-assertions\f[B]\f[R]-disable balance assertion checks (note: does not disable balance-assignments)-.TP-\f[B]\f[CB]-s --strict\f[B]\f[R]-do extra error checking (check that all posted accounts are declared)-.PP-General reporting options:-.TP-\f[B]\f[CB]-b --begin=DATE\f[B]\f[R]-include postings/txns on or after this date-.TP-\f[B]\f[CB]-e --end=DATE\f[B]\f[R]-include postings/txns before this date-.TP-\f[B]\f[CB]-D --daily\f[B]\f[R]-multiperiod/multicolumn report by day-.TP-\f[B]\f[CB]-W --weekly\f[B]\f[R]-multiperiod/multicolumn report by week-.TP-\f[B]\f[CB]-M --monthly\f[B]\f[R]-multiperiod/multicolumn report by month-.TP-\f[B]\f[CB]-Q --quarterly\f[B]\f[R]-multiperiod/multicolumn report by quarter-.TP-\f[B]\f[CB]-Y --yearly\f[B]\f[R]-multiperiod/multicolumn report by year-.TP-\f[B]\f[CB]-p --period=PERIODEXP\f[B]\f[R]-set start date, end date, and/or reporting interval all at once using-period expressions syntax-.TP-\f[B]\f[CB]--date2\f[B]\f[R]-match the secondary date instead (see command help for other effects)-.TP-\f[B]\f[CB]-U --unmarked\f[B]\f[R]-include only unmarked postings/txns (can combine with -P or -C)-.TP-\f[B]\f[CB]-P --pending\f[B]\f[R]-include only pending postings/txns-.TP-\f[B]\f[CB]-C --cleared\f[B]\f[R]-include only cleared postings/txns-.TP-\f[B]\f[CB]-R --real\f[B]\f[R]-include only non-virtual postings-.TP-\f[B]\f[CB]-NUM --depth=NUM\f[B]\f[R]-hide/aggregate accounts or postings more than NUM levels deep-.TP-\f[B]\f[CB]-E --empty\f[B]\f[R]-show items with zero amount, normally hidden (and vice-versa in-hledger-ui/hledger-web)-.TP-\f[B]\f[CB]-B --cost\f[B]\f[R]-convert amounts to their cost/selling amount at transaction time-.TP-\f[B]\f[CB]-V --market\f[B]\f[R]-convert amounts to their market value in default valuation commodities-.TP-\f[B]\f[CB]-X --exchange=COMM\f[B]\f[R]-convert amounts to their market value in commodity COMM-.TP-\f[B]\f[CB]--value\f[B]\f[R]-convert amounts to cost or market value, more flexibly than -B/-V/-X-.TP-\f[B]\f[CB]--infer-value\f[B]\f[R]-with -V/-X/--value, also infer market prices from transactions-.TP-\f[B]\f[CB]--auto\f[B]\f[R]-apply automated posting rules to modify transactions.-.TP-\f[B]\f[CB]--forecast\f[B]\f[R]-generate future transactions from periodic transaction rules, for the-next 6 months or till report end date.-In hledger-ui, also make ordinary future transactions visible.-.TP-\f[B]\f[CB]--color=WHEN (or --colour=WHEN)\f[B]\f[R]-Should color-supporting commands use ANSI color codes in text output.-\[aq]auto\[aq] (default): whenever stdout seems to be a color-supporting-terminal.-\[aq]always\[aq] or \[aq]yes\[aq]: always, useful eg when piping output-into \[aq]less -R\[aq].-\[aq]never\[aq] or \[aq]no\[aq]: never.-A NO_COLOR environment variable overrides this.-.PP-When a reporting option appears more than once in the command line, the-last one takes precedence.-.PP-Some reporting options can also be written as query arguments.-.SS Command options-.PP-To see options for a particular command, including command-specific-options, run: \f[C]hledger COMMAND -h\f[R].-.PP-Command-specific options must be written after the command name, eg:-\f[C]hledger print -x\f[R].-.PP-Additionally, if the command is an add-on, you may need to put its-options after a double-hyphen, eg: \f[C]hledger ui -- --watch\f[R].-Or, you can run the add-on executable directly:-\f[C]hledger-ui --watch\f[R].-.SS Command arguments-.PP-Most hledger commands accept arguments after the command name, which are-often a query, filtering the data in some way.-.PP-You can save a set of command line options/arguments in a file, and then-reuse them by writing \f[C]\[at]FILENAME\f[R] as a command line-argument.-Eg: \f[C]hledger bal \[at]foo.args\f[R].-(To prevent this, eg if you have an argument that begins with a literal-\f[C]\[at]\f[R], precede it with \f[C]--\f[R], eg:-\f[C]hledger bal -- \[at]ARG\f[R]).-.PP-Inside the argument file, each line should contain just one option or-argument.-Avoid the use of spaces, except inside quotes (or you\[aq]ll see a-confusing error).-Between a flag and its argument, use = (or nothing).-Bad:-.IP-.nf-\f[C]-assets depth:2--X USD-\f[R]-.fi-.PP-Good:-.IP-.nf-\f[C]-assets-depth:2--X=USD-\f[R]-.fi-.PP-For special characters (see below), use one less level of quoting than-you would at the command prompt.-Bad:-.IP-.nf-\f[C]--X\[dq]$\[dq]-\f[R]-.fi-.PP-Good:-.IP-.nf-\f[C]--X$-\f[R]-.fi-.PP-See also: Save frequently used options.-.SS Queries-.PP-One of hledger\[aq]s strengths is being able to quickly report on-precise subsets of your data.-Most commands accept an optional query expression, written as arguments-after the command name, to filter the data by date, account name or-other criteria.-The syntax is similar to a web search: one or more space-separated-search terms, quotes to enclose whitespace, prefixes to match specific-fields, a not: prefix to negate the match.-.PP-We do not yet support arbitrary boolean combinations of search terms;-instead most commands show transactions/postings/accounts which match-(or negatively match):-.IP \[bu] 2-any of the description terms AND-.IP \[bu] 2-any of the account terms AND-.IP \[bu] 2-any of the status terms AND-.IP \[bu] 2-all the other terms.-.PP-The print command instead shows transactions which:-.IP \[bu] 2-match any of the description terms AND-.IP \[bu] 2-have any postings matching any of the positive account terms AND-.IP \[bu] 2-have no postings matching any of the negative account terms AND-.IP \[bu] 2-match all the other terms.-.PP-The following kinds of search terms can be used.-Remember these can also be prefixed with \f[B]\f[CB]not:\f[B]\f[R], eg-to exclude a particular subaccount.-.TP-\f[B]\f[R]\f[C]REGEX\f[R]\f[B], \f[R]\f[C]acct:REGEX\f[R]\f[B]\f[R]-match account names by this regular expression.-(With no prefix, \f[C]acct:\f[R] is assumed.)-same as above-.TP-\f[B]\f[R]\f[C]amt:N, amt:<N, amt:<=N, amt:>N, amt:>=N\f[R]\f[B]\f[R]-match postings with a single-commodity amount that is equal to, less-than, or greater than N.-(Multi-commodity amounts are not tested, and will always match.) The-comparison has two modes: if N is preceded by a + or - sign (or is 0),-the two signed numbers are compared.-Otherwise, the absolute magnitudes are compared, ignoring sign.-.TP-\f[B]\f[R]\f[C]code:REGEX\f[R]\f[B]\f[R]-match by transaction code (eg check number)-.TP-\f[B]\f[R]\f[C]cur:REGEX\f[R]\f[B]\f[R]-match postings or transactions including any amounts whose-currency/commodity symbol is fully matched by REGEX.-(For a partial match, use \f[C].*REGEX.*\f[R]).-Note, to match characters which are regex-significant, like the dollar-sign (\f[C]$\f[R]), you need to prepend \f[C]\[rs]\f[R].-And when using the command line you need to add one more level of-quoting to hide it from the shell, so eg do:-\f[C]hledger print cur:\[aq]\[rs]$\[aq]\f[R] or-\f[C]hledger print cur:\[rs]\[rs]$\f[R].-.TP-\f[B]\f[R]\f[C]desc:REGEX\f[R]\f[B]\f[R]-match transaction descriptions.-.TP-\f[B]\f[R]\f[C]date:PERIODEXPR\f[R]\f[B]\f[R]-match dates within the specified period.-PERIODEXPR is a period expression (with no report interval).-Examples: \f[C]date:2016\f[R], \f[C]date:thismonth\f[R],-\f[C]date:2000/2/1-2/15\f[R], \f[C]date:lastweek-\f[R].-If the \f[C]--date2\f[R] command line flag is present, this matches-secondary dates instead.-.TP-\f[B]\f[R]\f[C]date2:PERIODEXPR\f[R]\f[B]\f[R]-match secondary dates within the specified period.-.TP-\f[B]\f[R]\f[C]depth:N\f[R]\f[B]\f[R]-match (or display, depending on command) accounts at or above this depth-.TP-\f[B]\f[R]\f[C]note:REGEX\f[R]\f[B]\f[R]-match transaction notes (part of description right of \f[C]|\f[R], or-whole description when there\[aq]s no \f[C]|\f[R])-.TP-\f[B]\f[R]\f[C]payee:REGEX\f[R]\f[B]\f[R]-match transaction payee/payer names (part of description left of-\f[C]|\f[R], or whole description when there\[aq]s no \f[C]|\f[R])-.TP-\f[B]\f[R]\f[C]real:, real:0\f[R]\f[B]\f[R]-match real or virtual postings respectively-.TP-\f[B]\f[R]\f[C]status:, status:!, status:*\f[R]\f[B]\f[R]-match unmarked, pending, or cleared transactions respectively-.TP-\f[B]\f[R]\f[C]tag:REGEX[=REGEX]\f[R]\f[B]\f[R]-match by tag name, and optionally also by tag value.-Note a tag: query is considered to match a transaction if it matches any-of the postings.-Also remember that postings inherit the tags of their parent-transaction.-.PP-The following special search term is used automatically in hledger-web,-only:-.TP-\f[B]\f[R]\f[C]inacct:ACCTNAME\f[R]\f[B]\f[R]-tells hledger-web to show the transaction register for this account.-Can be filtered further with \f[C]acct\f[R] etc.-.PP-Some of these can also be expressed as command-line options (eg-\f[C]depth:2\f[R] is equivalent to \f[C]--depth 2\f[R]).-Generally you can mix options and query arguments, and the resulting-query will be their intersection (perhaps excluding the-\f[C]-p/--period\f[R] option).-.SS Special characters in arguments and queries-.PP-In shell command lines, option and argument values which contain-\[dq]problematic\[dq] characters, ie spaces, and also characters-significant to your shell such as \f[C]<\f[R], \f[C]>\f[R], \f[C](\f[R],-\f[C])\f[R], \f[C]|\f[R] and \f[C]$\f[R], should be escaped by enclosing-them in quotes or by writing backslashes before the characters.-Eg:-.PP-\f[C]hledger register -p \[aq]last year\[aq] \[dq]accounts receivable (receivable|payable)\[dq] amt:\[rs]>100\f[R].-.SS More escaping-.PP-Characters significant both to the shell and in regular expressions may-need one extra level of escaping.-These include parentheses, the pipe symbol and the dollar sign.-Eg, to match the dollar symbol, bash users should do:-.PP-\f[C]hledger balance cur:\[aq]\[rs]$\[aq]\f[R]-.PP-or:-.PP-\f[C]hledger balance cur:\[rs]\[rs]$\f[R]-.SS Even more escaping-.PP-When hledger runs an add-on executable (eg you type-\f[C]hledger ui\f[R], hledger runs \f[C]hledger-ui\f[R]), it de-escapes-command-line options and arguments once, so you might need to-\f[I]triple\f[R]-escape.-Eg in bash, running the ui command and matching the dollar sign,-it\[aq]s:-.PP-\f[C]hledger ui cur:\[aq]\[rs]\[rs]$\[aq]\f[R]-.PP-or:-.PP-\f[C]hledger ui cur:\[rs]\[rs]\[rs]\[rs]$\f[R]-.PP-If you asked why \f[I]four\f[R] slashes above, this may help:-.PP-.TS-tab(@);-l l.-T{-unescaped:-T}@T{-\f[C]$\f[R]-T}-T{-escaped:-T}@T{-\f[C]\[rs]$\f[R]-T}-T{-double-escaped:-T}@T{-\f[C]\[rs]\[rs]$\f[R]-T}-T{-triple-escaped:-T}@T{-\f[C]\[rs]\[rs]\[rs]\[rs]$\f[R]-T}-.TE-.PP-(The number of backslashes in fish shell is left as an exercise for the-reader.)-.PP-You can always avoid the extra escaping for add-ons by running the-add-on directly:-.PP-\f[C]hledger-ui cur:\[rs]\[rs]$\f[R]-.SS Less escaping-.PP-Inside an argument file, or in the search field of hledger-ui or-hledger-web, or at a GHCI prompt, you need one less level of escaping-than at the command line.-And backslashes may work better than quotes.-Eg:-.PP-\f[C]ghci> :main balance cur:\[rs]$\f[R]-.SS Unicode characters-.PP-hledger is expected to handle non-ascii characters correctly:-.IP \[bu] 2-they should be parsed correctly in input files and on the command line,-by all hledger tools (add, iadd, hledger-web\[aq]s search/add/edit-forms, etc.)-.IP \[bu] 2-they should be displayed correctly by all hledger tools, and on-screen-alignment should be preserved.-.PP-This requires a well-configured environment.-Here are some tips:-.IP \[bu] 2-A system locale must be configured, and it must be one that can decode-the characters being used.-In bash, you can set a locale like this:-\f[C]export LANG=en_US.UTF-8\f[R].-There are some more details in Troubleshooting.-This step is essential - without it, hledger will quit on encountering a-non-ascii character (as with all GHC-compiled programs).-.IP \[bu] 2-your terminal software (eg Terminal.app, iTerm, CMD.exe, xterm..) must-support unicode-.IP \[bu] 2-the terminal must be using a font which includes the required unicode-glyphs-.IP \[bu] 2-the terminal should be configured to display wide characters as double-width (for report alignment)-.IP \[bu] 2-on Windows, for best results you should run hledger in the same kind of-environment in which it was built.-Eg hledger built in the standard CMD.EXE environment (like the binaries-on our download page) might show display problems when run in a cygwin-or msys terminal, and vice versa.-(See eg #961).-.SS Input files-.PP-hledger reads transactions from a data file (and the add command writes-to it).-By default this file is \f[C]$HOME/.hledger.journal\f[R] (or on Windows,-something like \f[C]C:/Users/USER/.hledger.journal\f[R]).-You can override this with the \f[C]$LEDGER_FILE\f[R] environment-variable:-.IP-.nf-\f[C]-$ setenv LEDGER_FILE \[ti]/finance/2016.journal-$ hledger stats-\f[R]-.fi-.PP-or with the \f[C]-f/--file\f[R] option:-.IP-.nf-\f[C]-$ hledger -f /some/file stats-\f[R]-.fi-.PP-The file name \f[C]-\f[R] (hyphen) means standard input:-.IP-.nf-\f[C]-$ cat some.journal | hledger -f--\f[R]-.fi-.PP-Usually the data file is in hledger\[aq]s journal format, but it can be-in any of the supported file formats, which currently are:-.PP-.TS-tab(@);-lw(7.8n) lw(39.5n) lw(22.7n).-T{-Reader:-T}@T{-Reads:-T}@T{-Used for file extensions:-T}-_-T{-\f[C]journal\f[R]-T}@T{-hledger journal files and some Ledger journals, for transactions-T}@T{-\f[C].journal\f[R] \f[C].j\f[R] \f[C].hledger\f[R] \f[C].ledger\f[R]-T}-T{-\f[C]timeclock\f[R]-T}@T{-timeclock files, for precise time logging-T}@T{-\f[C].timeclock\f[R]-T}-T{-\f[C]timedot\f[R]-T}@T{-timedot files, for approximate time logging-T}@T{-\f[C].timedot\f[R]-T}-T{-\f[C]csv\f[R]-T}@T{-comma/semicolon/tab/other-separated values, for data import-T}@T{-\f[C].csv\f[R] \f[C].ssv\f[R] \f[C].tsv\f[R]-T}-.TE-.PP-hledger detects the format automatically based on the file extensions-shown above.-If it can\[aq]t recognise the file extension, it assumes-\f[C]journal\f[R] format.-So for non-journal files, it\[aq]s important to use a recognised file-extension, so as to either read successfully or to show relevant error-messages.-.PP-When you can\[aq]t ensure the right file extension, not to worry: you-can force a specific reader/format by prefixing the file path with the-format and a colon.-Eg to read a .dat file as csv:-.IP-.nf-\f[C]-$ hledger -f csv:/some/csv-file.dat stats-$ echo \[aq]i 2009/13/1 08:00:00\[aq] | hledger print -ftimeclock:--\f[R]-.fi-.PP-You can specify multiple \f[C]-f\f[R] options, to read multiple files as-one big journal.-There are some limitations with this:-.IP \[bu] 2-directives in one file will not affect the other files-.IP \[bu] 2-balance assertions will not see any account balances from previous files-.PP-If you need either of those things, you can-.IP \[bu] 2-use a single parent file which includes the others-.IP \[bu] 2-or concatenate the files into one before reading, eg:-\f[C]cat a.journal b.journal | hledger -f- CMD\f[R].-.SS Strict mode-.PP-hledger checks input files for valid data.-By default, the most important errors are detected, while still-accepting easy journal files without a lot of declarations:-.IP \[bu] 2-Are the input files parseable, with valid syntax ?-.IP \[bu] 2-Are all transactions balanced ?-.IP \[bu] 2-Do all balance assertions pass ?-.PP-With the \f[C]-s\f[R]/\f[C]--strict\f[R] flag, additional checks are-performed:-.IP \[bu] 2-Are all accounts posted to, declared with an \f[C]account\f[R] directive-?-(Account error checking)-.IP \[bu] 2-Are all commodities declared with a \f[C]commodity\f[R] directive ?-(Commodity error checking)-.PP-See also: https://hledger.org/checking-for-errors.html-.PP-\f[I]experimental.\f[R]-.SS Output destination-.PP-hledger commands send their output to the terminal by default.-You can of course redirect this, eg into a file, using standard shell-syntax:-.IP-.nf-\f[C]-$ hledger print > foo.txt-\f[R]-.fi-.PP-Some commands (print, register, stats, the balance commands) also-provide the \f[C]-o/--output-file\f[R] option, which does the same thing-without needing the shell.-Eg:-.IP-.nf-\f[C]-$ hledger print -o foo.txt-$ hledger print -o - # write to stdout (the default)-\f[R]-.fi-.SS Output format-.PP-Some commands (print, register, the balance commands) offer a choice of-output format.-In addition to the usual plain text format (\f[C]txt\f[R]), there are-CSV (\f[C]csv\f[R]), HTML (\f[C]html\f[R]), JSON (\f[C]json\f[R]) and-SQL (\f[C]sql\f[R]).-This is controlled by the \f[C]-O/--output-format\f[R] option:-.IP-.nf-\f[C]-$ hledger print -O csv-\f[R]-.fi-.PP-or, by a file extension specified with \f[C]-o/--output-file\f[R]:-.IP-.nf-\f[C]-$ hledger balancesheet -o foo.html # write HTML to foo.html-\f[R]-.fi-.PP-The \f[C]-O\f[R] option can be used to override the file extension if-needed:-.IP-.nf-\f[C]-$ hledger balancesheet -o foo.txt -O html # write HTML to foo.txt-\f[R]-.fi-.PP-Some notes about JSON output:-.IP \[bu] 2-This feature is marked experimental, and not yet much used; you should-expect our JSON to evolve.-Real-world feedback is welcome.-.IP \[bu] 2-Our JSON is rather large and verbose, as it is quite a faithful-representation of hledger\[aq]s internal data types.-To understand the JSON, read the Haskell type definitions, which are-mostly in-https://github.com/simonmichael/hledger/blob/master/hledger-lib/Hledger/Data/Types.hs.-.IP \[bu] 2-hledger represents quantities as Decimal values storing up to 255-significant digits, eg for repeating decimals.-Such numbers can arise in practice (from automatically-calculated-transaction prices), and would break most JSON consumers.-So in JSON, we show quantities as simple Numbers with at most 10 decimal-places.-We don\[aq]t limit the number of integer digits, but that part is under-your control.-We hope this approach will not cause problems in practice; if you find-otherwise, please let us know.-(Cf #1195)-.PP-Notes about SQL output:-.IP \[bu] 2-SQL output is also marked experimental, and much like JSON could use-real-world feedback.-.IP \[bu] 2-SQL output is expected to work with sqlite, MySQL and PostgreSQL-.IP \[bu] 2-SQL output is structured with the expectations that statements will be-executed in the empty database.-If you already have tables created via SQL output of hledger, you would-probably want to either clear tables of existing data (via-\f[C]delete\f[R] or \f[C]truncate\f[R] SQL statements) or drop tables-completely as otherwise your postings will be duped.-.SS Regular expressions-.PP-hledger uses regular expressions in a number of places:-.IP \[bu] 2-query terms, on the command line and in the hledger-web search form:-\f[C]REGEX\f[R], \f[C]desc:REGEX\f[R], \f[C]cur:REGEX\f[R],-\f[C]tag:...=REGEX\f[R]-.IP \[bu] 2-CSV rules conditional blocks: \f[C]if REGEX ...\f[R]-.IP \[bu] 2-account alias directives and options:-\f[C]alias /REGEX/ = REPLACEMENT\f[R],-\f[C]--alias /REGEX/=REPLACEMENT\f[R]-.PP-hledger\[aq]s regular expressions come from the regex-tdfa library.-If they\[aq]re not doing what you expect, it\[aq]s important to know-exactly what they support:-.IP "1." 3-they are case insensitive-.IP "2." 3-they are infix matching (they do not need to match the entire thing-being matched)-.IP "3." 3-they are POSIX ERE (extended regular expressions)-.IP "4." 3-they also support GNU word boundaries (\f[C]\[rs]b\f[R],-\f[C]\[rs]B\f[R], \f[C]\[rs]<\f[R], \f[C]\[rs]>\f[R])-.IP "5." 3-they do not support backreferences; if you write \f[C]\[rs]1\f[R], it-will match the digit \f[C]1\f[R].-Except when doing text replacement, eg in account aliases, where-backreferences can be used in the replacement string to reference-capturing groups in the search regexp.-.IP "6." 3-they do not support mode modifiers (\f[C](?s)\f[R]), character classes-(\f[C]\[rs]w\f[R], \f[C]\[rs]d\f[R]), or anything else not mentioned-above.-.PP-Some things to note:-.IP \[bu] 2-In the \f[C]alias\f[R] directive and \f[C]--alias\f[R] option, regular-expressions must be enclosed in forward slashes (\f[C]/REGEX/\f[R]).-Elsewhere in hledger, these are not required.-.IP \[bu] 2-In queries, to match a regular expression metacharacter like \f[C]$\f[R]-as a literal character, prepend a backslash.-Eg to search for amounts with the dollar sign in hledger-web, write-\f[C]cur:\[rs]$\f[R].-.IP \[bu] 2-On the command line, some metacharacters like \f[C]$\f[R] have a special-meaning to the shell and so must be escaped at least once more.-See Special characters.-.SS Smart dates-.PP-hledger\[aq]s user interfaces accept a flexible \[dq]smart date\[dq]-syntax (unlike dates in the journal file).-Smart dates allow some english words, can be relative to today\[aq]s-date, and can have less-significant date parts omitted (defaulting to-1).-.PP-Examples:-.PP-.TS-tab(@);-lw(24.2n) lw(45.8n).-T{-\f[C]2004/10/1\f[R], \f[C]2004-01-01\f[R], \f[C]2004.9.1\f[R]-T}@T{-exact date, several separators allowed.-Year is 4+ digits, month is 1-12, day is 1-31-T}-T{-\f[C]2004\f[R]-T}@T{-start of year-T}-T{-\f[C]2004/10\f[R]-T}@T{-start of month-T}-T{-\f[C]10/1\f[R]-T}@T{-month and day in current year-T}-T{-\f[C]21\f[R]-T}@T{-day in current month-T}-T{-\f[C]october, oct\f[R]-T}@T{-start of month in current year-T}-T{-\f[C]yesterday, today, tomorrow\f[R]-T}@T{--1, 0, 1 days from today-T}-T{-\f[C]last/this/next day/week/month/quarter/year\f[R]-T}@T{--1, 0, 1 periods from the current period-T}-T{-\f[C]20181201\f[R]-T}@T{-8 digit YYYYMMDD with valid year month and day-T}-T{-\f[C]201812\f[R]-T}@T{-6 digit YYYYMM with valid year and month-T}-.TE-.PP-Counterexamples - malformed digit sequences might give surprising-results:-.PP-.TS-tab(@);-lw(11.4n) lw(58.6n).-T{-\f[C]201813\f[R]-T}@T{-6 digits with an invalid month is parsed as start of 6-digit year-T}-T{-\f[C]20181301\f[R]-T}@T{-8 digits with an invalid month is parsed as start of 8-digit year-T}-T{-\f[C]20181232\f[R]-T}@T{-8 digits with an invalid day gives an error-T}-T{-\f[C]201801012\f[R]-T}@T{-9+ digits beginning with a valid YYYYMMDD gives an error-T}-.TE-.SS Report start & end date-.PP-Most hledger reports show the full span of time represented by the-journal data, by default.-So, the effective report start and end dates will be the earliest and-latest transaction or posting dates found in the journal.-.PP-Often you will want to see a shorter time span, such as the current-month.-You can specify a start and/or end date using \f[C]-b/--begin\f[R],-\f[C]-e/--end\f[R], \f[C]-p/--period\f[R] or a \f[C]date:\f[R] query-(described below).-All of these accept the smart date syntax.-.PP-Some notes:-.IP \[bu] 2-As in Ledger, end dates are exclusive, so you need to write the date-\f[I]after\f[R] the last day you want to include.-.IP \[bu] 2-As noted in reporting options: among start/end dates specified with-\f[I]options\f[R], the last (i.e.-right-most) option takes precedence.-.IP \[bu] 2-The effective report start and end dates are the intersection of the-start/end dates from options and that from \f[C]date:\f[R] queries.-That is, \f[C]date:2019-01 date:2019 -p\[aq]2000 to 2030\[aq]\f[R]-yields January 2019, the smallest common time span.-.PP-Examples:-.PP-.TS-tab(@);-lw(12.4n) lw(57.6n).-T{-\f[C]-b 2016/3/17\f[R]-T}@T{-begin on St.\ Patrick\[cq]s day 2016-T}-T{-\f[C]-e 12/1\f[R]-T}@T{-end at the start of december 1st of the current year (11/30 will be the-last date included)-T}-T{-\f[C]-b thismonth\f[R]-T}@T{-all transactions on or after the 1st of the current month-T}-T{-\f[C]-p thismonth\f[R]-T}@T{-all transactions in the current month-T}-T{-\f[C]date:2016/3/17..\f[R]-T}@T{-the above written as queries instead (\f[C]..\f[R] can also be replaced-with \f[C]-\f[R])-T}-T{-\f[C]date:..12/1\f[R]-T}@T{-T}-T{-\f[C]date:thismonth..\f[R]-T}@T{-T}-T{-\f[C]date:thismonth\f[R]-T}@T{-T}-.TE-.SS Report intervals-.PP-A report interval can be specified so that commands like register,-balance and activity will divide their reports into multiple subperiods.-The basic intervals can be selected with one of \f[C]-D/--daily\f[R],-\f[C]-W/--weekly\f[R], \f[C]-M/--monthly\f[R], \f[C]-Q/--quarterly\f[R],-or \f[C]-Y/--yearly\f[R].-More complex intervals may be specified with a period expression.-Report intervals can not be specified with a query.-.SS Period expressions-.PP-The \f[C]-p/--period\f[R] option accepts period expressions, a shorthand-way of expressing a start date, end date, and/or report interval all at-once.-.PP-Here\[aq]s a basic period expression specifying the first quarter of-2009.-Note, hledger always treats start dates as inclusive and end dates as-exclusive:-.PP-\f[C]-p \[dq]from 2009/1/1 to 2009/4/1\[dq]\f[R]-.PP-Keywords like \[dq]from\[dq] and \[dq]to\[dq] are optional, and so are-the spaces, as long as you don\[aq]t run two dates together.-\[dq]to\[dq] can also be written as \[dq]..\[dq] or \[dq]-\[dq].-These are equivalent to the above:-.PP-.TS-tab(@);-l.-T{-\f[C]-p \[dq]2009/1/1 2009/4/1\[dq]\f[R]-T}-T{-\f[C]-p2009/1/1to2009/4/1\f[R]-T}-T{-\f[C]-p2009/1/1..2009/4/1\f[R]-T}-.TE-.PP-Dates are smart dates, so if the current year is 2009, the above can-also be written as:-.PP-.TS-tab(@);-l.-T{-\f[C]-p \[dq]1/1 4/1\[dq]\f[R]-T}-T{-\f[C]-p \[dq]january-apr\[dq]\f[R]-T}-T{-\f[C]-p \[dq]this year to 4/1\[dq]\f[R]-T}-.TE-.PP-If you specify only one date, the missing start or end date will be the-earliest or latest transaction in your journal:-.PP-.TS-tab(@);-l l.-T{-\f[C]-p \[dq]from 2009/1/1\[dq]\f[R]-T}@T{-everything after january 1, 2009-T}-T{-\f[C]-p \[dq]from 2009/1\[dq]\f[R]-T}@T{-the same-T}-T{-\f[C]-p \[dq]from 2009\[dq]\f[R]-T}@T{-the same-T}-T{-\f[C]-p \[dq]to 2009\[dq]\f[R]-T}@T{-everything before january 1, 2009-T}-.TE-.PP-A single date with no \[dq]from\[dq] or \[dq]to\[dq] defines both the-start and end date like so:-.PP-.TS-tab(@);-l l.-T{-\f[C]-p \[dq]2009\[dq]\f[R]-T}@T{-the year 2009; equivalent to \[lq]2009/1/1 to 2010/1/1\[rq]-T}-T{-\f[C]-p \[dq]2009/1\[dq]\f[R]-T}@T{-the month of jan; equivalent to \[lq]2009/1/1 to 2009/2/1\[rq]-T}-T{-\f[C]-p \[dq]2009/1/1\[dq]\f[R]-T}@T{-just that day; equivalent to \[lq]2009/1/1 to 2009/1/2\[rq]-T}-.TE-.PP-Or you can specify a single quarter like so:-.PP-.TS-tab(@);-l l.-T{-\f[C]-p \[dq]2009Q1\[dq]\f[R]-T}@T{-first quarter of 2009, equivalent to \[lq]2009/1/1 to 2009/4/1\[rq]-T}-T{-\f[C]-p \[dq]q4\[dq]\f[R]-T}@T{-fourth quarter of the current year-T}-.TE-.PP-The argument of \f[C]-p\f[R] can also begin with, or be, a report-interval expression.-The basic report intervals are \f[C]daily\f[R], \f[C]weekly\f[R],-\f[C]monthly\f[R], \f[C]quarterly\f[R], or \f[C]yearly\f[R], which have-the same effect as the-\f[C]-D\f[R],\f[C]-W\f[R],\f[C]-M\f[R],\f[C]-Q\f[R], or \f[C]-Y\f[R]-flags.-Between report interval and start/end dates (if any), the word-\f[C]in\f[R] is optional.-Examples:-.PP-.TS-tab(@);-l.-T{-\f[C]-p \[dq]weekly from 2009/1/1 to 2009/4/1\[dq]\f[R]-T}-T{-\f[C]-p \[dq]monthly in 2008\[dq]\f[R]-T}-T{-\f[C]-p \[dq]quarterly\[dq]\f[R]-T}-.TE-.PP-Note that \f[C]weekly\f[R], \f[C]monthly\f[R], \f[C]quarterly\f[R] and-\f[C]yearly\f[R] intervals will always start on the first day on week,-month, quarter or year accordingly, and will end on the last day of same-period, even if associated period expression specifies different-explicit start and end date.-.PP-For example:-.PP-.TS-tab(@);-lw(25.5n) lw(44.5n).-T{-\f[C]-p \[dq]weekly from 2009/1/1 to 2009/4/1\[dq]\f[R]-T}@T{-starts on 2008/12/29, closest preceding Monday-T}-T{-\f[C]-p \[dq]monthly in 2008/11/25\[dq]\f[R]-T}@T{-starts on 2018/11/01-T}-T{-\f[C]-p \[dq]quarterly from 2009-05-05 to 2009-06-01\[dq]\f[R]-T}@T{-starts on 2009/04/01, ends on 2009/06/30, which are first and last days-of Q2 2009-T}-T{-\f[C]-p \[dq]yearly from 2009-12-29\[dq]\f[R]-T}@T{-starts on 2009/01/01, first day of 2009-T}-.TE-.PP-The following more complex report intervals are also supported:-\f[C]biweekly\f[R], \f[C]fortnightly\f[R], \f[C]bimonthly\f[R],-\f[C]every day|week|month|quarter|year\f[R],-\f[C]every N days|weeks|months|quarters|years\f[R].-.PP-All of these will start on the first day of the requested period and end-on the last one, as described above.-.PP-Examples:-.PP-.TS-tab(@);-lw(25.5n) lw(44.5n).-T{-\f[C]-p \[dq]bimonthly from 2008\[dq]\f[R]-T}@T{-periods will have boundaries on 2008/01/01, 2008/03/01, ...-T}-T{-\f[C]-p \[dq]every 2 weeks\[dq]\f[R]-T}@T{-starts on closest preceding Monday-T}-T{-\f[C]-p \[dq]every 5 month from 2009/03\[dq]\f[R]-T}@T{-periods will have boundaries on 2009/03/01, 2009/08/01, ...-T}-.TE-.PP-If you want intervals that start on arbitrary day of your choosing and-span a week, month or year, you need to use any of the following:-.PP-\f[C]every Nth day of week\f[R], \f[C]every WEEKDAYNAME\f[R] (eg-\f[C]mon|tue|wed|thu|fri|sat|sun\f[R]),-\f[C]every Nth day [of month]\f[R],-\f[C]every Nth WEEKDAYNAME [of month]\f[R],-\f[C]every MM/DD [of year]\f[R], \f[C]every Nth MMM [of year]\f[R],-\f[C]every MMM Nth [of year]\f[R].-.PP-Examples:-.PP-.TS-tab(@);-lw(23.9n) lw(46.1n).-T{-\f[C]-p \[dq]every 2nd day of week\[dq]\f[R]-T}@T{-periods will go from Tue to Tue-T}-T{-\f[C]-p \[dq]every Tue\[dq]\f[R]-T}@T{-same-T}-T{-\f[C]-p \[dq]every 15th day\[dq]\f[R]-T}@T{-period boundaries will be on 15th of each month-T}-T{-\f[C]-p \[dq]every 2nd Monday\[dq]\f[R]-T}@T{-period boundaries will be on second Monday of each month-T}-T{-\f[C]-p \[dq]every 11/05\[dq]\f[R]-T}@T{-yearly periods with boundaries on 5th of Nov-T}-T{-\f[C]-p \[dq]every 5th Nov\[dq]\f[R]-T}@T{-same-T}-T{-\f[C]-p \[dq]every Nov 5th\[dq]\f[R]-T}@T{-same-T}-.TE-.PP-Show historical balances at end of 15th each month (N is exclusive end-date):-.PP-\f[C]hledger balance -H -p \[dq]every 16th day\[dq]\f[R]-.PP-Group postings from start of wednesday to end of next tuesday (N is-start date and exclusive end date):-.PP-\f[C]hledger register checking -p \[dq]every 3rd day of week\[dq]\f[R]-.SS Depth limiting-.PP-With the \f[C]--depth N\f[R] option (short form: \f[C]-N\f[R]), commands-like account, balance and register will show only the uppermost accounts-in the account tree, down to level N.-Use this when you want a summary with less detail.-This flag has the same effect as a \f[C]depth:\f[R] query argument (so-\f[C]-2\f[R], \f[C]--depth=2\f[R] or \f[C]depth:2\f[R] are equivalent).-.SS Pivoting-.PP-Normally hledger sums amounts, and organizes them in a hierarchy, based-on account name.-The \f[C]--pivot FIELD\f[R] option causes it to sum and organize-hierarchy based on the value of some other field instead.-FIELD can be: \f[C]code\f[R], \f[C]description\f[R], \f[C]payee\f[R],-\f[C]note\f[R], or the full name (case insensitive) of any tag.-As with account names, values containing \f[C]colon:separated:parts\f[R]-will be displayed hierarchically in reports.-.PP-\f[C]--pivot\f[R] is a general option affecting all reports; you can-think of hledger transforming the journal before any other processing,-replacing every posting\[aq]s account name with the value of the-specified field on that posting, inheriting it from the transaction or-using a blank value if it\[aq]s not present.-.PP-An example:-.IP-.nf-\f[C]-2016/02/16 Member Fee Payment- assets:bank account 2 EUR- income:member fees -2 EUR ; member: John Doe-\f[R]-.fi-.PP-Normal balance report showing account names:-.IP-.nf-\f[C]-$ hledger balance- 2 EUR assets:bank account- -2 EUR income:member fees---------------------- 0-\f[R]-.fi-.PP-Pivoted balance report, using member: tag values instead:-.IP-.nf-\f[C]-$ hledger balance --pivot member- 2 EUR- -2 EUR John Doe---------------------- 0-\f[R]-.fi-.PP-One way to show only amounts with a member: value (using a query,-described below):-.IP-.nf-\f[C]-$ hledger balance --pivot member tag:member=.- -2 EUR John Doe---------------------- -2 EUR-\f[R]-.fi-.PP-Another way (the acct: query matches against the pivoted \[dq]account-name\[dq]):-.IP-.nf-\f[C]-$ hledger balance --pivot member acct:.- -2 EUR John Doe---------------------- -2 EUR-\f[R]-.fi-.SS Valuation-.PP-Instead of reporting amounts in their original commodity, hledger can-convert them to cost/sale amount (using the conversion rate recorded in-the transaction), or to market value (using some market price on a-certain date).-This is controlled by the \f[C]--value=TYPE[,COMMODITY]\f[R] option, but-we also provide the simpler \f[C]-B\f[R]/\f[C]-V\f[R]/\f[C]-X\f[R]-flags, and usually one of those is all you need.-.SS -B: Cost-.PP-The \f[C]-B/--cost\f[R] flag converts amounts to their cost or sale-amount at transaction time, if they have a transaction price specified.-.SS -V: Value-.PP-The \f[C]-V/--market\f[R] flag converts amounts to market value in their-default \f[I]valuation commodity\f[R], using the market prices in effect-on the \f[I]valuation date(s)\f[R], if any.-More on these in a minute.-.SS -X: Value in specified commodity-.PP-The \f[C]-X/--exchange=COMM\f[R] option is like \f[C]-V\f[R], except you-tell it which currency you want to convert to, and it tries to convert-everything to that.-.SS Valuation date-.PP-Since market prices can change from day to day, market value reports-have a valuation date (or more than one), which determines which market-prices will be used.-.PP-For single period reports, if an explicit report end date is specified,-that will be used as the valuation date; otherwise the valuation date is-\[dq]today\[dq].-.PP-For multiperiod reports, each column/period is valued on the last day of-the period, by default.-.SS Market prices-.PP-\f[I](experimental)\f[R]-.PP-To convert a commodity A to its market value in another commodity B,-hledger looks for a suitable market price (exchange rate) as follows, in-this order of preference :-.IP "1." 3-A \f[I]declared market price\f[R] or \f[I]inferred market price\f[R]:-A\[aq]s latest market price in B on or before the valuation date as-declared by a P directive, or (with the \f[C]--infer-value\f[R] flag)-inferred from transaction prices.-.IP "2." 3-A \f[I]reverse market price\f[R]: the inverse of a declared or inferred-market price from B to A.-.IP "3." 3-A \f[I]a forward chain of market prices\f[R]: a synthetic price formed-by combining the shortest chain of \[dq]forward\[dq] (only 1 above)-market prices, leading from A to B.-.IP "4." 3-A \f[I]any chain of market prices\f[R]: a chain of any market prices,-including both forward and reverse prices (1 and 2 above), leading from-A to B.-.PP-Amounts for which no applicable market price can be found, are not-converted.-.SS --infer-value: market prices from transactions-.PP-\f[I](experimental)\f[R]-.PP-Normally, market value in hledger is fully controlled by, and requires,-P directives in your journal.-Since adding and updating those can be a chore, and since transactions-usually take place at close to market value, why not use the recorded-transaction prices as additional market prices (as Ledger does) ?-We could produce value reports without needing P directives at all.-.PP-Adding the \f[C]--infer-value\f[R] flag to \f[C]-V\f[R], \f[C]-X\f[R] or-\f[C]--value\f[R] enables this.-So for example, \f[C]hledger bs -V --infer-value\f[R] will get market-prices both from P directives and from transactions.-.PP-There is a downside: value reports can sometimes be affected in-confusing/undesired ways by your journal entries.-If this happens to you, read all of this Valuation section carefully,-and try adding \f[C]--debug\f[R] or \f[C]--debug=2\f[R] to troubleshoot.-.PP-\f[C]--infer-value\f[R] can infer market prices from:-.IP \[bu] 2-multicommodity transactions with explicit prices-(\f[C]\[at]\f[R]/\f[C]\[at]\[at]\f[R])-.IP \[bu] 2-multicommodity transactions with implicit prices (no \f[C]\[at]\f[R],-two commodities, unbalanced).-(With these, the order of postings matters.-\f[C]hledger print -x\f[R] can be useful for troubleshooting.)-.IP \[bu] 2-but not, currently, from \[dq]more correct\[dq] multicommodity-transactions (no \f[C]\[at]\f[R], multiple commodities, balanced).-.SS Valuation commodity-.PP-\f[I](experimental)\f[R]-.PP-\f[B]When you specify a valuation commodity (\f[CB]-X COMM\f[B] or-\f[CB]--value TYPE,COMM\f[B]):\f[R]-.PD 0-.P-.PD-hledger will convert all amounts to COMM, wherever it can find a-suitable market price (including by reversing or chaining prices).-.PP-\f[B]When you leave the valuation commodity unspecified (\f[CB]-V\f[B]-or \f[CB]--value TYPE\f[B]):\f[R]-.PD 0-.P-.PD-For each commodity A, hledger picks a default valuation commodity as-follows, in this order of preference:-.IP "1." 3-The price commodity from the latest P-declared market price for A on or-before valuation date.-.IP "2." 3-The price commodity from the latest P-declared market price for A on any-date.-(Allows conversion to proceed when there are inferred prices before the-valuation date.)-.IP "3." 3-If there are no P directives at all (any commodity or date) and the-\f[C]--infer-value\f[R] flag is used: the price commodity from the-latest transaction-inferred price for A on or before valuation date.-.PP-This means:-.IP \[bu] 2-If you have P directives, they determine which commodities \f[C]-V\f[R]-will convert, and to what.-.IP \[bu] 2-If you have no P directives, and use the \f[C]--infer-value\f[R] flag,-transaction prices determine it.-.PP-Amounts for which no valuation commodity can be found are not converted.-.SS Simple valuation examples-.PP-Here are some quick examples of \f[C]-V\f[R]:-.IP-.nf-\f[C]-; one euro is worth this many dollars from nov 1-P 2016/11/01 \[Eu] $1.10--; purchase some euros on nov 3-2016/11/3- assets:euros \[Eu]100- assets:checking--; the euro is worth fewer dollars by dec 21-P 2016/12/21 \[Eu] $1.03-\f[R]-.fi-.PP-How many euros do I have ?-.IP-.nf-\f[C]-$ hledger -f t.j bal -N euros- \[Eu]100 assets:euros-\f[R]-.fi-.PP-What are they worth at end of nov 3 ?-.IP-.nf-\f[C]-$ hledger -f t.j bal -N euros -V -e 2016/11/4- $110.00 assets:euros-\f[R]-.fi-.PP-What are they worth after 2016/12/21 ?-(no report end date specified, defaults to today)-.IP-.nf-\f[C]-$ hledger -f t.j bal -N euros -V- $103.00 assets:euros-\f[R]-.fi-.SS --value: Flexible valuation-.PP-\f[C]-B\f[R], \f[C]-V\f[R] and \f[C]-X\f[R] are special cases of the-more general \f[C]--value\f[R] option:-.IP-.nf-\f[C]- --value=TYPE[,COMM] TYPE is cost, then, end, now or YYYY-MM-DD.- COMM is an optional commodity symbol.- Shows amounts converted to:- - cost commodity using transaction prices (then optionally to COMM using market prices at period end(s))- - default valuation commodity (or COMM) using market prices at posting dates- - default valuation commodity (or COMM) using market prices at period end(s)- - default valuation commodity (or COMM) using current market prices- - default valuation commodity (or COMM) using market prices at some date-\f[R]-.fi-.PP-The TYPE part selects cost or value and valuation date:-.TP-\f[B]\f[CB]--value=cost\f[B]\f[R]-Convert amounts to cost, using the prices recorded in transactions.-.TP-\f[B]\f[CB]--value=then\f[B]\f[R]-Convert amounts to their value in the default valuation commodity, using-market prices on each posting\[aq]s date.-This is currently supported only by the print and register commands.-.TP-\f[B]\f[CB]--value=end\f[B]\f[R]-Convert amounts to their value in the default valuation commodity, using-market prices on the last day of the report period (or if unspecified,-the journal\[aq]s end date); or in multiperiod reports, market prices on-the last day of each subperiod.-.TP-\f[B]\f[CB]--value=now\f[B]\f[R]-Convert amounts to their value in the default valuation commodity using-current market prices (as of when report is generated).-.TP-\f[B]\f[CB]--value=YYYY-MM-DD\f[B]\f[R]-Convert amounts to their value in the default valuation commodity using-market prices on this date.-.PP-To select a different valuation commodity, add the optional-\f[C],COMM\f[R] part: a comma, then the target commodity\[aq]s symbol.-Eg: \f[B]\f[CB]--value=now,EUR\f[B]\f[R].-hledger will do its best to convert amounts to this commodity, deducing-market prices as described above.-.SS More valuation examples-.PP-Here are some examples showing the effect of \f[C]--value\f[R], as seen-with \f[C]print\f[R]:-.IP-.nf-\f[C]-P 2000-01-01 A 1 B-P 2000-02-01 A 2 B-P 2000-03-01 A 3 B-P 2000-04-01 A 4 B--2000-01-01- (a) 1 A \[at] 5 B--2000-02-01- (a) 1 A \[at] 6 B--2000-03-01- (a) 1 A \[at] 7 B-\f[R]-.fi-.PP-Show the cost of each posting:-.IP-.nf-\f[C]-$ hledger -f- print --value=cost-2000-01-01- (a) 5 B--2000-02-01- (a) 6 B--2000-03-01- (a) 7 B-\f[R]-.fi-.PP-Show the value as of the last day of the report period (2000-02-29):-.IP-.nf-\f[C]-$ hledger -f- print --value=end date:2000/01-2000/03-2000-01-01- (a) 2 B--2000-02-01- (a) 2 B-\f[R]-.fi-.PP-With no report period specified, that shows the value as of the last day-of the journal (2000-03-01):-.IP-.nf-\f[C]-$ hledger -f- print --value=end-2000-01-01- (a) 3 B--2000-02-01- (a) 3 B--2000-03-01- (a) 3 B-\f[R]-.fi-.PP-Show the current value (the 2000-04-01 price is still in effect today):-.IP-.nf-\f[C]-$ hledger -f- print --value=now-2000-01-01- (a) 4 B--2000-02-01- (a) 4 B--2000-03-01- (a) 4 B-\f[R]-.fi-.PP-Show the value on 2000/01/15:-.IP-.nf-\f[C]-$ hledger -f- print --value=2000-01-15-2000-01-01- (a) 1 B--2000-02-01- (a) 1 B--2000-03-01- (a) 1 B-\f[R]-.fi-.PP-You may need to explicitly set a commodity\[aq]s display style, when-reverse prices are used.-Eg this output might be surprising:-.IP-.nf-\f[C]-P 2000-01-01 A 2B--2000-01-01- a 1B- b-\f[R]-.fi-.IP-.nf-\f[C]-$ hledger print -x -X A-2000-01-01- a 0- b 0-\f[R]-.fi-.PP-Explanation: because there\[aq]s no amount or commodity directive-specifying a display style for A, 0.5A gets the default style, which-shows no decimal digits.-Because the displayed amount looks like zero, the commodity symbol and-minus sign are not displayed either.-Adding a commodity directive sets a more useful display style for A:-.IP-.nf-\f[C]-P 2000-01-01 A 2B-commodity 0.00A--2000-01-01- a 1B- b-\f[R]-.fi-.IP-.nf-\f[C]-$ hledger print -X A-2000-01-01- a 0.50A- b -0.50A-\f[R]-.fi-.SS Effect of valuation on reports-.PP-Here is a reference for how valuation is supposed to affect each part of-hledger\[aq]s reports (and a glossary).-(It\[aq]s wide, you\[aq]ll have to scroll sideways.) It may be useful-when troubleshooting.-If you find problems, please report them, ideally with a reproducible-example.-Related: #329, #1083.-.PP-.TS-tab(@);-lw(10.6n) lw(13.2n) lw(13.4n) lw(11.0n) lw(13.4n) lw(8.2n).-T{-Report type-T}@T{-\f[C]-B\f[R], \f[C]--value=cost\f[R]-T}@T{-\f[C]-V\f[R], \f[C]-X\f[R]-T}@T{-\f[C]--value=then\f[R]-T}@T{-\f[C]--value=end\f[R]-T}@T{-\f[C]--value=DATE\f[R], \f[C]--value=now\f[R]-T}-_-T{-\f[B]print\f[R]-T}@T{-T}@T{-T}@T{-T}@T{-T}@T{-T}-T{-posting amounts-T}@T{-cost-T}@T{-value at report end or today-T}@T{-value at posting date-T}@T{-value at report or journal end-T}@T{-value at DATE/today-T}-T{-balance assertions/assignments-T}@T{-unchanged-T}@T{-unchanged-T}@T{-unchanged-T}@T{-unchanged-T}@T{-unchanged-T}-T{-T}@T{-T}@T{-T}@T{-T}@T{-T}@T{-T}-T{-\f[B]register\f[R]-T}@T{-T}@T{-T}@T{-T}@T{-T}@T{-T}-T{-starting balance (-H)-T}@T{-cost-T}@T{-value at day before report or journal start-T}@T{-not supported-T}@T{-value at day before report or journal start-T}@T{-value at DATE/today-T}-T{-posting amounts-T}@T{-cost-T}@T{-value at report end or today-T}@T{-value at posting date-T}@T{-value at report or journal end-T}@T{-value at DATE/today-T}-T{-summary posting amounts with report interval-T}@T{-summarised cost-T}@T{-value at period ends-T}@T{-sum of postings in interval, valued at interval start-T}@T{-value at period ends-T}@T{-value at DATE/today-T}-T{-running total/average-T}@T{-sum/average of displayed values-T}@T{-sum/average of displayed values-T}@T{-sum/average of displayed values-T}@T{-sum/average of displayed values-T}@T{-sum/average of displayed values-T}-T{-T}@T{-T}@T{-T}@T{-T}@T{-T}@T{-T}-T{-\f[B]balance (bs, bse, cf, is)\f[R]-T}@T{-T}@T{-T}@T{-T}@T{-T}@T{-T}-T{-balance changes-T}@T{-sums of costs-T}@T{-value at report end or today of sums of postings-T}@T{-not supported-T}@T{-value at report or journal end of sums of postings-T}@T{-value at DATE/today of sums of postings-T}-T{-budget amounts (--budget)-T}@T{-like balance changes-T}@T{-like balance changes-T}@T{-not supported-T}@T{-like balances-T}@T{-like balance changes-T}-T{-grand total-T}@T{-sum of displayed values-T}@T{-sum of displayed values-T}@T{-not supported-T}@T{-sum of displayed values-T}@T{-sum of displayed values-T}-T{-T}@T{-T}@T{-T}@T{-T}@T{-T}@T{-T}-T{-\f[B]balance (bs, bse, cf, is) with report interval\f[R]-T}@T{-T}@T{-T}@T{-T}@T{-T}@T{-T}-T{-starting balances (-H)-T}@T{-sums of costs of postings before report start-T}@T{-value at report start of sums of all postings before report start-T}@T{-not supported-T}@T{-value at report start of sums of all postings before report start-T}@T{-sums of postings before report start-T}-T{-balance changes (bal, is, bs --change, cf --change)-T}@T{-sums of costs of postings in period-T}@T{-same as --value=end-T}@T{-not supported-T}@T{-balance change in each period, valued at period ends-T}@T{-value at DATE/today of sums of postings-T}-T{-end balances (bal -H, is --H, bs, cf)-T}@T{-sums of costs of postings from before report start to period end-T}@T{-same as --value=end-T}@T{-not supported-T}@T{-period end balances, valued at period ends-T}@T{-value at DATE/today of sums of postings-T}-T{-budget amounts (--budget)-T}@T{-like balance changes/end balances-T}@T{-like balance changes/end balances-T}@T{-not supported-T}@T{-like balances-T}@T{-like balance changes/end balances-T}-T{-row totals, row averages (-T, -A)-T}@T{-sums, averages of displayed values-T}@T{-sums, averages of displayed values-T}@T{-not supported-T}@T{-sums, averages of displayed values-T}@T{-sums, averages of displayed values-T}-T{-column totals-T}@T{-sums of displayed values-T}@T{-sums of displayed values-T}@T{-not supported-T}@T{-sums of displayed values-T}@T{-sums of displayed values-T}-T{-grand total, grand average-T}@T{-sum, average of column totals-T}@T{-sum, average of column totals-T}@T{-not supported-T}@T{-sum, average of column totals-T}@T{-sum, average of column totals-T}-T{-T}@T{-T}@T{-T}@T{-T}@T{-T}@T{-T}-.TE-.PP-\f[C]--cumulative\f[R] is omitted to save space, it works like-\f[C]-H\f[R] but with a zero starting balance.-.PP-\f[B]Glossary:\f[R]-.TP-\f[I]cost\f[R]-calculated using price(s) recorded in the transaction(s).-.TP-\f[I]value\f[R]-market value using available market price declarations, or the unchanged-amount if no conversion rate can be found.-.TP-\f[I]report start\f[R]-the first day of the report period specified with -b or -p or date:,-otherwise today.-.TP-\f[I]report or journal start\f[R]-the first day of the report period specified with -b or -p or date:,-otherwise the earliest transaction date in the journal, otherwise today.-.TP-\f[I]report end\f[R]-the last day of the report period specified with -e or -p or date:,-otherwise today.-.TP-\f[I]report or journal end\f[R]-the last day of the report period specified with -e or -p or date:,-otherwise the latest transaction date in the journal, otherwise today.-.TP-\f[I]report interval\f[R]-a flag (-D/-W/-M/-Q/-Y) or period expression that activates the-report\[aq]s multi-period mode (whether showing one or many subperiods).-.SH COMMANDS-.PP-hledger provides a number of commands for producing reports and managing-your data.-Run \f[C]hledger\f[R] with no arguments to list the commands available.-.PP-To run a command, write its name (or its abbreviation shown in the-commands list, or any unambiguous prefix of the name) as hledger\[aq]s-first argument.-Eg: \f[C]hledger balance\f[R] or \f[C]hledger bal\f[R].-.PP-Here are the built-in commands:-.PP-\f[B]Data entry (these modify the journal file):\f[R]-.IP \[bu] 2-add - add transactions using guided prompts-.IP \[bu] 2-import - add any new transactions from other files (eg csv)-.PP-\f[B]Data management\f[R]:-.IP \[bu] 2-check - check for various kinds of issue in the data-.IP \[bu] 2-close (equity) - generate balance-resetting transactions-.IP \[bu] 2-diff - compare account transactions in two journal files-.IP \[bu] 2-rewrite - generate extra postings, similar to print --auto-.PP-\f[B]Financial statements:\f[R]-.IP \[bu] 2-aregister (areg) - show transactions in a particular account-.IP \[bu] 2-balancesheet (bs) - show assets, liabilities and net worth-.IP \[bu] 2-balancesheetequity (bse) - show assets, liabilities and equity-.IP \[bu] 2-cashflow (cf) - show changes in liquid assets-.IP \[bu] 2-incomestatement (is) - show revenues and expenses-.IP \[bu] 2-roi - show return on investments-.PP-\f[B]Miscellaneous reports:\f[R]-.IP \[bu] 2-accounts (a) - show account names-.IP \[bu] 2-activity - show postings-per-interval bar charts-.IP \[bu] 2-balance (b, bal) - show balance changes/end balances/budgets in accounts-.IP \[bu] 2-codes - show transaction codes-.IP \[bu] 2-commodities - show commodity/currency symbols-.IP \[bu] 2-descriptions - show unique transaction descriptions-.IP \[bu] 2-files - show input file paths-.IP \[bu] 2-notes - show unique note segments of transaction descriptions-.IP \[bu] 2-payees - show unique payee segments of transaction descriptions-.IP \[bu] 2-prices - show market price records-.IP \[bu] 2-print (p, txns) - show transactions (journal entries)-.IP \[bu] 2-print-unique - show only transactions with unique descriptions-.IP \[bu] 2-register (r, reg) - show postings in one or more accounts & running-total-.IP \[bu] 2-register-match - show a recent posting that best matches a description-.IP \[bu] 2-stats - show journal statistics-.IP \[bu] 2-tags - show tag names-.IP \[bu] 2-test - run self tests-.PP-Next, the detailed command docs, in alphabetical order.-.SS accounts-.PP-accounts, a-.PD 0-.P-.PD-Show account names.-.PP-This command lists account names, either declared with account-directives (--declared), posted to (--used), or both (the default).-With query arguments, only matched account names and account names-referenced by matched postings are shown.-It shows a flat list by default.-With \f[C]--tree\f[R], it uses indentation to show the account-hierarchy.-In flat mode you can add \f[C]--drop N\f[R] to omit the first few-account name components.-Account names can be depth-clipped with \f[C]depth:N\f[R] or-\f[C]--depth N\f[R] or \f[C]-N\f[R].-.PP-Examples:-.IP-.nf-\f[C]-$ hledger accounts-assets:bank:checking-assets:bank:saving-assets:cash-expenses:food-expenses:supplies-income:gifts-income:salary-liabilities:debts-\f[R]-.fi-.SS activity-.PP-activity-.PD 0-.P-.PD-Show an ascii barchart of posting counts per interval.-.PP-The activity command displays an ascii histogram showing transaction-counts by day, week, month or other reporting interval (by day is the-default).-With query arguments, it counts only matched transactions.-.PP-Examples:-.IP-.nf-\f[C]-$ hledger activity --quarterly-2008-01-01 **-2008-04-01 *******-2008-07-01 -2008-10-01 **-\f[R]-.fi-.SS add-.PP-add-.PD 0-.P-.PD-Prompt for transactions and add them to the journal.-Any arguments will be used as default inputs for the first N prompts.-.PP-Many hledger users edit their journals directly with a text editor, or-generate them from CSV.-For more interactive data entry, there is the \f[C]add\f[R] command,-which prompts interactively on the console for new transactions, and-appends them to the journal file (if there are multiple-\f[C]-f FILE\f[R] options, the first file is used.) Existing-transactions are not changed.-This is the only hledger command that writes to the journal file.-.PP-To use it, just run \f[C]hledger add\f[R] and follow the prompts.-You can add as many transactions as you like; when you are finished,-enter \f[C].\f[R] or press control-d or control-c to exit.-.PP-Features:-.IP \[bu] 2-add tries to provide useful defaults, using the most similar (by-description) recent transaction (filtered by the query, if any) as a-template.-.IP \[bu] 2-You can also set the initial defaults with command line arguments.-.IP \[bu] 2-Readline-style edit keys can be used during data entry.-.IP \[bu] 2-The tab key will auto-complete whenever possible - accounts,-descriptions, dates (\f[C]yesterday\f[R], \f[C]today\f[R],-\f[C]tomorrow\f[R]).-If the input area is empty, it will insert the default value.-.IP \[bu] 2-If the journal defines a default commodity, it will be added to any bare-numbers entered.-.IP \[bu] 2-A parenthesised transaction code may be entered following a date.-.IP \[bu] 2-Comments and tags may be entered following a description or amount.-.IP \[bu] 2-If you make a mistake, enter \f[C]<\f[R] at any prompt to go one step-backward.-.IP \[bu] 2-Input prompts are displayed in a different colour when the terminal-supports it.-.PP-Example (see the tutorial for a detailed explanation):-.IP-.nf-\f[C]-$ hledger add-Adding transactions to journal file /src/hledger/examples/sample.journal-Any command line arguments will be used as defaults.-Use tab key to complete, readline keys to edit, enter to accept defaults.-An optional (CODE) may follow transaction dates.-An optional ; COMMENT may follow descriptions or amounts.-If you make a mistake, enter < at any prompt to go one step backward.-To end a transaction, enter . when prompted.-To quit, enter . at a date prompt or press control-d or control-c.-Date [2015/05/22]: -Description: supermarket-Account 1: expenses:food-Amount 1: $10-Account 2: assets:checking-Amount 2 [$-10.0]: -Account 3 (or . or enter to finish this transaction): .-2015/05/22 supermarket- expenses:food $10- assets:checking $-10.0--Save this transaction to the journal ? [y]: -Saved.-Starting the next transaction (. or ctrl-D/ctrl-C to quit)-Date [2015/05/22]: <CTRL-D> $-\f[R]-.fi-.PP-On Microsoft Windows, the add command makes sure that no part of the-file path ends with a period, as that would cause problems (#1056).-.SS aregister-.PP-aregister, areg-.PD 0-.P-.PD-.PP-Show the transactions and running historical balance in an account, with-each line item representing one transaction.-.PP-\f[C]aregister\f[R] shows the transactions affecting a particular-account and its subaccounts, with each line item representing a whole-transaction - as in bank statements, hledger-ui, hledger-web and other-accounting apps.-.PP-Note this is unlike the \f[C]register\f[R] command, which shows-individual postings and does not always show a single account or a-historical balance.-.PP-A reminder, \[dq]historical\[dq] balances include any balance from-transactions before the report start date, so (if opening balances are-recorded correctly) \f[C]aregister\f[R] will show the real-world-balances of an account, as you would see in a bank statement.-.PP-As a quick rule of thumb, use \f[C]aregister\f[R] for reconciling-real-world asset/liability accounts and \f[C]register\f[R] for reviewing-detailed revenues/expenses.-.PP-\f[C]aregister\f[R] shows the register for just one account (and its-subaccounts).-This account must be specified as the first argument.-You can write either the full account name, or a case-insensitive-regular expression which will select the alphabetically first matched-account.-(Eg if you have \f[C]assets:aaa:checking\f[R] and-\f[C]assets:bbb:checking\f[R] accounts, \f[C]hledger areg checking\f[R]-would select \f[C]assets:aaa:checking\f[R].)-.PP-Any additional arguments form a query which will filter the transactions-shown.-.PP-Each \f[C]aregister\f[R] line item shows:-.IP \[bu] 2-the transaction\[aq]s date (or the relevant posting\[aq]s date if-different, see below)-.IP \[bu] 2-the names of all the other account(s) involved in this transaction-(probably abbreviated)-.IP \[bu] 2-the total change to this account\[aq]s balance from this transaction-.IP \[bu] 2-the account\[aq]s historical running balance after this transaction.-.PP-Transactions making a net change of zero are not shown by default; add-the \f[C]-E/--empty\f[R] flag to show them.-.PP-\f[C]aregister\f[R] ignores a depth limit, so its final total will-always match a balance report with similar arguments.-.PP-This command also supports the output destination and output format-options The output formats supported are \f[C]txt\f[R], \f[C]csv\f[R],-and \f[C]json\f[R].-.SS aregister and custom posting dates-.PP-Transactions whose date is outside the report period can still be shown,-if they have a posting to this account dated inside the report period.-(And in this case it\[aq]s the posting date that is shown.) This ensures-that \f[C]aregister\f[R] can show an accurate historical running-balance, matching the one shown by \f[C]register -H\f[R] with the same-arguments.-.PP-To filter strictly by transaction date instead, add the-\f[C]--txn-dates\f[R] flag.-If you use this flag and some of your postings have custom dates,-it\[aq]s probably best to assume the running balance is wrong.-.PP-Examples:-.PP-Show all transactions and historical running balance in the first-account whose name contains \[dq]checking\[dq]:-.IP-.nf-\f[C]-$ hledger areg checking-\f[R]-.fi-.PP-Show transactions and historical running balance in all asset accounts-during july:-.IP-.nf-\f[C]-$ hledger areg assets date:jul-\f[R]-.fi-.SS balance-.PP-balance, bal, b-.PD 0-.P-.PD-Show accounts and their balances.-.PP-The balance command is hledger\[aq]s most versatile command.-Note, despite the name, it is not always used for showing real-world-account balances; the more accounting-aware balancesheet and-incomestatement may be more convenient for that.-.PP-By default, it displays all accounts, and each account\[aq]s change in-balance during the entire period of the journal.-Balance changes are calculated by adding up the postings in each-account.-You can limit the postings matched, by a query, to see fewer accounts,-changes over a different time period, changes from only cleared-transactions, etc.-.PP-If you include an account\[aq]s complete history of postings in the-report, the balance change is equivalent to the account\[aq]s current-ending balance.-For a real-world account, typically you won\[aq]t have all transactions-in the journal; instead you\[aq]ll have all transactions after a certain-date, and an \[dq]opening balances\[dq] transaction setting the correct-starting balance on that date.-Then the balance command will show real-world account balances.-In some cases the -H/--historical flag is used to ensure this (more-below).-.PP-This command also supports the output destination and output format-options The output formats supported are (in most modes): \f[C]txt\f[R],-\f[C]csv\f[R], \f[C]html\f[R], and \f[C]json\f[R].-.PP-The balance command can produce several styles of report:-.PP-.SS Single-period flat balance report-.PP-This is the default for hledger\[aq]s balance command: a flat list of-all (or with a query, matched) accounts, showing full account names.-Accounts are sorted by declaration order if any, and then by account-name.-Accounts which have zero balance are not shown unless-\f[C]-E/--empty\f[R] is used.-The reported balances\[aq] total is shown as the last line, unless-disabled by \f[C]-N\f[R]/\f[C]--no-total\f[R].-.IP-.nf-\f[C]-$ hledger bal- $1 assets:bank:saving- $-2 assets:cash- $1 expenses:food- $1 expenses:supplies- $-1 income:gifts- $-1 income:salary- $1 liabilities:debts---------------------- 0 -\f[R]-.fi-.PP-.SS Single-period tree-mode balance report-.PP-With the \f[C]-t/--tree\f[R] flag, accounts are displayed-hierarchically, showing subaccounts as short names indented below their-parent.-(This is the default style in Ledger and in older hledger versions.)-.IP-.nf-\f[C]-$ hledger balance- $-1 assets- $1 bank:saving- $-2 cash- $2 expenses- $1 food- $1 supplies- $-2 income- $-1 gifts- $-1 salary- $1 liabilities:debts---------------------- 0-\f[R]-.fi-.PP-For more compact output, \[dq]boring\[dq] accounts containing a single-interesting subaccount and no balance of their own-(\f[C]assets:bank\f[R] and \f[C]liabilities\f[R] here) are elided into-the following line, unless \f[C]--no-elide\f[R] is used.-And accounts which have zero balance and no non-zero subaccounts are-omitted, unless \f[C]-E/--empty\f[R] is used.-.PP-Account balances in tree mode are \[dq]inclusive\[dq] - they include the-balances of any subaccounts.-Eg, the \f[C]assets\f[R] \f[C]$-1\f[R] balance here includes the-\f[C]$1\f[R] from \f[C]assets:bank:saving\f[R] and the \f[C]$-2\f[R]-from \f[C]assets:cash\f[R].-(And it would include balance posted to the \f[C]assets\f[R] account-itself, if there was any).-Note this causes some repetition, and the final total (\f[C]0\f[R]) is-the sum of the top-level balances, not of all the balances shown.-.PP-Each group of sibling accounts is sorted separately, by declaration-order and then by account name.-.SS Multi-period balance report-.PP-Multi-period balance reports are a very useful hledger feature,-activated if you provide one of the reporting interval flags, such as-\f[C]-M\f[R]/\f[C]--monthly\f[R].-They are similar to single-period balance reports, but they show the-report as a table, with columns representing one or more successive time-periods.-This is the usually the preferred style of balance report in hledger-(even for a single period).-.PP-Multi-period balance reports come in several types, showing different-information:-.IP "1." 3-A balance change report: by default, each column shows the sum of-postings in that period, ie the account\[aq]s change of balance in that-period.-This is useful eg for a monthly income statement:-.IP-.nf-\f[C]-$ hledger balance --quarterly income expenses -E-Balance changes in 2008:-- || 2008q1 2008q2 2008q3 2008q4 -===================++=================================- expenses:food || 0 $1 0 0 - expenses:supplies || 0 $1 0 0 - income:gifts || 0 $-1 0 0 - income:salary || $-1 0 0 0 --------------------++---------------------------------- || $-1 $1 0 0 -\f[R]-.fi-.IP "2." 3-A cumulative end balance report: with \f[C]--cumulative\f[R], each-column shows the end balance for that period, accumulating the changes-across periods, starting from 0 at the report start date:-.RS 4-.IP-.nf-\f[C]-$ hledger balance --quarterly income expenses -E --cumulative-Ending balances (cumulative) in 2008:-- || 2008/03/31 2008/06/30 2008/09/30 2008/12/31 -===================++=================================================- expenses:food || 0 $1 $1 $1 - expenses:supplies || 0 $1 $1 $1 - income:gifts || 0 $-1 $-1 $-1 - income:salary || $-1 $-1 $-1 $-1 --------------------++-------------------------------------------------- || $-1 0 0 0 -\f[R]-.fi-.RE-.IP "3." 3-A historical end balance report: with \f[C]--historical/-H\f[R], each-column shows the actual historical end balance for that period,-accumulating the changes across periods, and including the balance from-any postings before the report start date.-This is useful eg for a multi-period balance sheet, and when you want to-see balances only after a certain date:-.RS 4-.IP-.nf-\f[C]-$ hledger balance \[ha]assets \[ha]liabilities --quarterly --historical --begin 2008/4/1-Ending balances (historical) in 2008/04/01-2008/12/31:-- || 2008/06/30 2008/09/30 2008/12/31 -======================++=====================================- assets:bank:checking || $1 $1 0 - assets:bank:saving || $1 $1 $1 - assets:cash || $-2 $-2 $-2 - liabilities:debts || 0 0 $1 -----------------------++-------------------------------------- || 0 0 0 -\f[R]-.fi-.RE-.PP-Note that \f[C]--cumulative\f[R] or \f[C]--historical/-H\f[R] disable-\f[C]--row-total/-T\f[R], since summing end balances generally does not-make sense.-.PP-With a reporting interval (like \f[C]--quarterly\f[R] above), the report-start/end dates will be adjusted if necessary so that they encompass the-displayed report periods.-This is so that the first and last periods will be \[dq]full\[dq] and-comparable to the others.-.PP-The \f[C]-E/--empty\f[R] flag does two things in multicolumn balance-reports: first, the report will show all columns within the specified-report period (without -E, leading and trailing columns with all zeroes-are not shown).-Second, all accounts which existed at the report start date will be-considered, not just the ones with activity during the report period-(use -E to include low-activity accounts which would otherwise would be-omitted).-.PP-The \f[C]-T/--row-total\f[R] flag adds an additional column showing the-total for each row.-.PP-The \f[C]-A/--average\f[R] flag adds a column showing the average value-in each row.-.PP-Here\[aq]s an example of all three:-.IP-.nf-\f[C]-$ hledger balance -Q income expenses --tree -ETA-Balance changes in 2008:-- || 2008q1 2008q2 2008q3 2008q4 Total Average -============++===================================================- expenses || 0 $2 0 0 $2 $1 - food || 0 $1 0 0 $1 0 - supplies || 0 $1 0 0 $1 0 - income || $-1 $-1 0 0 $-2 $-1 - gifts || 0 $-1 0 0 $-1 0 - salary || $-1 0 0 0 $-1 0 -------------++---------------------------------------------------- || $-1 $1 0 0 0 0 --(Average is rounded to the dollar here since all journal amounts are)-\f[R]-.fi-.PP-The \f[C]--transpose\f[R] flag can be used to exchange the rows and-columns of a multicolumn report.-.PP-When showing multicommodity amounts, multicolumn balance reports will-elide any amounts which have more than two commodities, since otherwise-columns could get very wide.-The \f[C]--no-elide\f[R] flag disables this.-Hiding totals with the \f[C]-N/--no-total\f[R] flag can also help reduce-the width of multicommodity reports.-.PP-When the report is still too wide, a good workaround is to pipe it into-\f[C]less -RS\f[R] (-R for colour, -S to chop long lines).-Eg: \f[C]hledger bal -D --color=yes | less -RS\f[R].-.SS Depth limiting-.PP-With a \f[C]depth:N\f[R] query, or \f[C]--depth N\f[R] option, or just-\f[C]-N\f[R], balance reports will show accounts only to the specified-depth.-This is very useful to hide low-level accounts and get an overview.-Eg, limiting to depth 1 shows the top-level accounts:-.IP-.nf-\f[C]-$ hledger balance -N -1- $-1 assets- $2 expenses- $-2 income- $1 liabilities-\f[R]-.fi-.PP-Accounts at the depth limit will include the balances of any hidden-subaccounts (even in flat mode, which normally shows exclusive-balances).-.PP-You can also drop account name components from the start of account-names, using \f[C]--drop N\f[R].-This can be useful to hide unwanted top-level detail.-.SS Colour support-.PP-In terminal output, when colour is enabled, the balance command shows-negative amounts in red.-.SS Sorting by amount-.PP-With \f[C]-S\f[R]/\f[C]--sort-amount\f[R], accounts with the largest-(most positive) balances are shown first.-For example, \f[C]hledger bal expenses -MAS\f[R] shows your biggest-averaged monthly expenses first.-.PP-Revenues and liability balances are typically negative, however, so-\f[C]-S\f[R] shows these in reverse order.-To work around this, you can add \f[C]--invert\f[R] to flip the signs.-Or, use one of the sign-flipping reports like \f[C]balancesheet\f[R] or-\f[C]incomestatement\f[R], which also support \f[C]-S\f[R].-Eg: \f[C]hledger is -MAS\f[R].-.SS Percentages-.PP-With \f[C]-%\f[R] or \f[C]--percent\f[R], balance reports show each-account\[aq]s value expressed as a percentage of the column\[aq]s total.-This is useful to get an overview of the relative sizes of account-balances.-For example to obtain an overview of expenses:-.IP-.nf-\f[C]-$ hledger balance expenses -%- 100.0 % expenses- 50.0 % food- 50.0 % supplies---------------------- 100.0 %-\f[R]-.fi-.PP-Note that \f[C]--tree\f[R] does not have an effect on \f[C]-%\f[R].-The percentages are always relative to the total sum of each column,-they are never relative to the parent account.-.PP-Since the percentages are relative to the columns sum, it is usually not-useful to calculate percentages if the signs of the amounts are mixed.-Although the results are technically correct, they are most likely-useless.-Especially in a balance report that sums up to zero (eg-\f[C]hledger balance -B\f[R]) all percentage values will be zero.-.PP-This flag does not work if the report contains any mixed commodity-accounts.-If there are mixed commodity accounts in the report be sure to use-\f[C]-V\f[R] or \f[C]-B\f[R] to coerce the report into using a single-commodity.-.PP-.SS Customising single-period balance reports-.PP-You can customise the layout of single-period balance reports with-\f[C]--format FMT\f[R], which sets the format of each line.-Eg:-.IP-.nf-\f[C]-$ hledger balance --format \[dq]%20(account) %12(total)\[dq]- assets $-1- bank:saving $1- cash $-2- expenses $2- food $1- supplies $1- income $-2- gifts $-1- salary $-1- liabilities:debts $1----------------------------------- 0-\f[R]-.fi-.PP-The FMT format string (plus a newline) specifies the formatting applied-to each account/balance pair.-It may contain any suitable text, with data fields interpolated like so:-.PP-\f[C]%[MIN][.MAX](FIELDNAME)\f[R]-.IP \[bu] 2-MIN pads with spaces to at least this width (optional)-.IP \[bu] 2-MAX truncates at this width (optional)-.IP \[bu] 2-FIELDNAME must be enclosed in parentheses, and can be one of:-.RS 2-.IP \[bu] 2-\f[C]depth_spacer\f[R] - a number of spaces equal to the account\[aq]s-depth, or if MIN is specified, MIN * depth spaces.-.IP \[bu] 2-\f[C]account\f[R] - the account\[aq]s name-.IP \[bu] 2-\f[C]total\f[R] - the account\[aq]s balance/posted total, right-justified-.RE-.PP-Also, FMT can begin with an optional prefix to control how-multi-commodity amounts are rendered:-.IP \[bu] 2-\f[C]%_\f[R] - render on multiple lines, bottom-aligned (the default)-.IP \[bu] 2-\f[C]%\[ha]\f[R] - render on multiple lines, top-aligned-.IP \[bu] 2-\f[C]%,\f[R] - render on one line, comma-separated-.PP-There are some quirks.-Eg in one-line mode, \f[C]%(depth_spacer)\f[R] has no effect, instead-\f[C]%(account)\f[R] has indentation built in.-Experimentation may be needed to get pleasing results.-.PP-Some example formats:-.IP \[bu] 2-\f[C]%(total)\f[R] - the account\[aq]s total-.IP \[bu] 2-\f[C]%-20.20(account)\f[R] - the account\[aq]s name, left justified,-padded to 20 characters and clipped at 20 characters-.IP \[bu] 2-\f[C]%,%-50(account) %25(total)\f[R] - account name padded to 50-characters, total padded to 20 characters, with multiple commodities-rendered on one line-.IP \[bu] 2-\f[C]%20(total) %2(depth_spacer)%-(account)\f[R] - the default format-for the single-column balance report-.SS Budget report-.PP-There is also a special balance report mode for showing budget-performance.-The \f[C]--budget\f[R] flag activates extra columns showing the budget-goals for each account and period, if any.-For this report, budget goals are defined by periodic transactions.-This is very useful for comparing planned and actual income, expenses,-time usage, etc.-.PP-For example, you can take average monthly expenses in the common expense-categories to construct a minimal monthly budget:-.IP-.nf-\f[C]-;; Budget-\[ti] monthly- income $2000- expenses:food $400- expenses:bus $50- expenses:movies $30- assets:bank:checking--;; Two months worth of expenses-2017-11-01- income $1950- expenses:food $396- expenses:bus $49- expenses:movies $30- expenses:supplies $20- assets:bank:checking--2017-12-01- income $2100- expenses:food $412- expenses:bus $53- expenses:gifts $100- assets:bank:checking-\f[R]-.fi-.PP-You can now see a monthly budget report:-.IP-.nf-\f[C]-$ hledger balance -M --budget-Budget performance in 2017/11/01-2017/12/31:-- || Nov Dec -======================++====================================================- assets || $-2445 [ 99% of $-2480] $-2665 [ 107% of $-2480] - assets:bank || $-2445 [ 99% of $-2480] $-2665 [ 107% of $-2480] - assets:bank:checking || $-2445 [ 99% of $-2480] $-2665 [ 107% of $-2480] - expenses || $495 [ 103% of $480] $565 [ 118% of $480] - expenses:bus || $49 [ 98% of $50] $53 [ 106% of $50] - expenses:food || $396 [ 99% of $400] $412 [ 103% of $400] - expenses:movies || $30 [ 100% of $30] 0 [ 0% of $30] - income || $1950 [ 98% of $2000] $2100 [ 105% of $2000] -----------------------++----------------------------------------------------- || 0 [ 0] 0 [ 0] -\f[R]-.fi-.PP-This is different from a normal balance report in several ways:-.IP \[bu] 2-Only accounts with budget goals during the report period are shown, by-default.-.IP \[bu] 2-In each column, in square brackets after the actual amount, budget goal-amounts are shown, and the actual/goal percentage.-(Note: budget goals should be in the same commodity as the actual-amount.)-.IP \[bu] 2-All parent accounts are always shown, even in flat mode.-Eg assets, assets:bank, and expenses above.-.IP \[bu] 2-Amounts always include all subaccounts, budgeted or unbudgeted, even in-flat mode.-.PP-This means that the numbers displayed will not always add up! Eg above,-the \f[C]expenses\f[R] actual amount includes the gifts and supplies-transactions, but the \f[C]expenses:gifts\f[R] and-\f[C]expenses:supplies\f[R] accounts are not shown, as they have no-budget amounts declared.-.PP-This can be confusing.-When you need to make things clearer, use the \f[C]-E/--empty\f[R] flag,-which will reveal all accounts including unbudgeted ones, giving the-full picture.-Eg:-.IP-.nf-\f[C]-$ hledger balance -M --budget --empty-Budget performance in 2017/11/01-2017/12/31:-- || Nov Dec -======================++====================================================- assets || $-2445 [ 99% of $-2480] $-2665 [ 107% of $-2480] - assets:bank || $-2445 [ 99% of $-2480] $-2665 [ 107% of $-2480] - assets:bank:checking || $-2445 [ 99% of $-2480] $-2665 [ 107% of $-2480] - expenses || $495 [ 103% of $480] $565 [ 118% of $480] - expenses:bus || $49 [ 98% of $50] $53 [ 106% of $50] - expenses:food || $396 [ 99% of $400] $412 [ 103% of $400] - expenses:gifts || 0 $100 - expenses:movies || $30 [ 100% of $30] 0 [ 0% of $30] - expenses:supplies || $20 0 - income || $1950 [ 98% of $2000] $2100 [ 105% of $2000] -----------------------++----------------------------------------------------- || 0 [ 0] 0 [ 0] -\f[R]-.fi-.PP-You can roll over unspent budgets to next period with-\f[C]--cumulative\f[R]:-.IP-.nf-\f[C]-$ hledger balance -M --budget --cumulative-Budget performance in 2017/11/01-2017/12/31:-- || Nov Dec -======================++====================================================- assets || $-2445 [ 99% of $-2480] $-5110 [ 103% of $-4960] - assets:bank || $-2445 [ 99% of $-2480] $-5110 [ 103% of $-4960] - assets:bank:checking || $-2445 [ 99% of $-2480] $-5110 [ 103% of $-4960] - expenses || $495 [ 103% of $480] $1060 [ 110% of $960] - expenses:bus || $49 [ 98% of $50] $102 [ 102% of $100] - expenses:food || $396 [ 99% of $400] $808 [ 101% of $800] - expenses:movies || $30 [ 100% of $30] $30 [ 50% of $60] - income || $1950 [ 98% of $2000] $4050 [ 101% of $4000] -----------------------++----------------------------------------------------- || 0 [ 0] 0 [ 0] -\f[R]-.fi-.PP-For more examples and notes, see Budgeting.-.SS Budget report start date-.PP-This might be a bug, but for now: when making budget reports, it\[aq]s a-good idea to explicitly set the report\[aq]s start date to the first day-of a reporting period, because a periodic rule like-\f[C]\[ti] monthly\f[R] generates its transactions on the 1st of each-month, and if your journal has no regular transactions on the 1st, the-default report start date could exclude that budget goal, which can be a-little surprising.-Eg here the default report period is just the day of 2020-01-15:-.IP-.nf-\f[C]-\[ti] monthly in 2020- (expenses:food) $500--2020-01-15- expenses:food $400- assets:checking-\f[R]-.fi-.IP-.nf-\f[C]-$ hledger bal expenses --budget-Budget performance in 2020-01-15:-- || 2020-01-15 -==============++============- <unbudgeted> || $400 ---------------++------------- || $400 -\f[R]-.fi-.PP-To avoid this, specify the budget report\[aq]s period, or at least the-start date, with \f[C]-b\f[R]/\f[C]-e\f[R]/\f[C]-p\f[R]/\f[C]date:\f[R],-to ensure it includes the budget goal transactions (periodic-transactions) that you want.-Eg, adding \f[C]-b 2020/1/1\f[R] to the above:-.IP-.nf-\f[C]-$ hledger bal expenses --budget -b 2020/1/1-Budget performance in 2020-01-01..2020-01-15:-- || 2020-01-01..2020-01-15 -===============++========================- expenses:food || $400 [80% of $500] ----------------++------------------------- || $400 [80% of $500] -\f[R]-.fi-.SS Nested budgets-.PP-You can add budgets to any account in your account hierarchy.-If you have budgets on both parent account and some of its children,-then budget(s) of the child account(s) would be added to the budget of-their parent, much like account balances behave.-.PP-In the most simple case this means that once you add a budget to any-account, all its parents would have budget as well.-.PP-To illustrate this, consider the following budget:-.IP-.nf-\f[C]-\[ti] monthly from 2019/01- expenses:personal $1,000.00- expenses:personal:electronics $100.00- liabilities-\f[R]-.fi-.PP-With this, monthly budget for electronics is defined to be $100 and-budget for personal expenses is an additional $1000, which implicitly-means that budget for both \f[C]expenses:personal\f[R] and-\f[C]expenses\f[R] is $1100.-.PP-Transactions in \f[C]expenses:personal:electronics\f[R] will be counted-both towards its $100 budget and $1100 of \f[C]expenses:personal\f[R] ,-and transactions in any other subaccount of \f[C]expenses:personal\f[R]-would be counted towards only towards the budget of-\f[C]expenses:personal\f[R].-.PP-For example, let\[aq]s consider these transactions:-.IP-.nf-\f[C]-\[ti] monthly from 2019/01- expenses:personal $1,000.00- expenses:personal:electronics $100.00- liabilities--2019/01/01 Google home hub- expenses:personal:electronics $90.00- liabilities $-90.00--2019/01/02 Phone screen protector- expenses:personal:electronics:upgrades $10.00- liabilities--2019/01/02 Weekly train ticket- expenses:personal:train tickets $153.00- liabilities--2019/01/03 Flowers- expenses:personal $30.00- liabilities-\f[R]-.fi-.PP-As you can see, we have transactions in-\f[C]expenses:personal:electronics:upgrades\f[R] and-\f[C]expenses:personal:train tickets\f[R], and since both of these-accounts are without explicitly defined budget, these transactions would-be counted towards budgets of \f[C]expenses:personal:electronics\f[R]-and \f[C]expenses:personal\f[R] accordingly:-.IP-.nf-\f[C]-$ hledger balance --budget -M-Budget performance in 2019/01:-- || Jan -===============================++===============================- expenses || $283.00 [ 26% of $1100.00] - expenses:personal || $283.00 [ 26% of $1100.00] - expenses:personal:electronics || $100.00 [ 100% of $100.00] - liabilities || $-283.00 [ 26% of $-1100.00] --------------------------------++-------------------------------- || 0 [ 0] -\f[R]-.fi-.PP-And with \f[C]--empty\f[R], we can get a better picture of budget-allocation and consumption:-.IP-.nf-\f[C]-$ hledger balance --budget -M --empty-Budget performance in 2019/01:-- || Jan -========================================++===============================- expenses || $283.00 [ 26% of $1100.00] - expenses:personal || $283.00 [ 26% of $1100.00] - expenses:personal:electronics || $100.00 [ 100% of $100.00] - expenses:personal:electronics:upgrades || $10.00 - expenses:personal:train tickets || $153.00 - liabilities || $-283.00 [ 26% of $-1100.00] -----------------------------------------++-------------------------------- || 0 [ 0] -\f[R]-.fi-.SS balancesheet-.PP-balancesheet, bs-.PD 0-.P-.PD-This command displays a balance sheet, showing historical ending-balances of asset and liability accounts.-(To see equity as well, use the balancesheetequity command.) Amounts are-shown with normal positive sign, as in conventional financial-statements.-.PP-The asset and liability accounts shown are those accounts declared with-the \f[C]Asset\f[R] or \f[C]Cash\f[R] or \f[C]Liability\f[R] type, or-otherwise all accounts under a top-level \f[C]asset\f[R] or-\f[C]liability\f[R] account (case insensitive, plurals allowed).-.PP-Example:-.IP-.nf-\f[C]-$ hledger balancesheet-Balance Sheet--Assets:- $-1 assets- $1 bank:saving- $-2 cash---------------------- $-1--Liabilities:- $1 liabilities:debts---------------------- $1--Total:---------------------- 0-\f[R]-.fi-.PP-With a reporting interval, multiple columns will be shown, one for each-report period.-As with multicolumn balance reports, you can alter the report mode with-\f[C]--change\f[R]/\f[C]--cumulative\f[R]/\f[C]--historical\f[R].-Normally balancesheet shows historical ending balances, which is what-you need for a balance sheet; note this means it ignores report begin-dates (and \f[C]-T/--row-total\f[R], since summing end balances-generally does not make sense).-Instead of absolute values percentages can be displayed with-\f[C]-%\f[R].-.PP-This command also supports the output destination and output format-options The output formats supported are \f[C]txt\f[R], \f[C]csv\f[R],-\f[C]html\f[R], and (experimental) \f[C]json\f[R].-.SS balancesheetequity-.PP-balancesheetequity, bse-.PD 0-.P-.PD-This command displays a balance sheet, showing historical ending-balances of asset, liability and equity accounts.-Amounts are shown with normal positive sign, as in conventional-financial statements.-.PP-The asset, liability and equity accounts shown are those accounts-declared with the \f[C]Asset\f[R], \f[C]Cash\f[R], \f[C]Liability\f[R]-or \f[C]Equity\f[R] type, or otherwise all accounts under a top-level-\f[C]asset\f[R], \f[C]liability\f[R] or \f[C]equity\f[R] account (case-insensitive, plurals allowed).-.PP-Example:-.IP-.nf-\f[C]-$ hledger balancesheetequity-Balance Sheet With Equity--Assets:- $-2 assets- $1 bank:saving- $-3 cash---------------------- $-2--Liabilities:- $1 liabilities:debts---------------------- $1--Equity:- $1 equity:owner---------------------- $1--Total:---------------------- 0-\f[R]-.fi-.PP-This command also supports the output destination and output format-options The output formats supported are \f[C]txt\f[R], \f[C]csv\f[R],-\f[C]html\f[R], and (experimental) \f[C]json\f[R].-.SS cashflow-.PP-cashflow, cf-.PD 0-.P-.PD-This command displays a cashflow statement, showing the inflows and-outflows affecting \[dq]cash\[dq] (ie, liquid) assets.-Amounts are shown with normal positive sign, as in conventional-financial statements.-.PP-The \[dq]cash\[dq] accounts shown are those accounts declared with the-\f[C]Cash\f[R] type, or otherwise all accounts under a top-level-\f[C]asset\f[R] account (case insensitive, plural allowed) which do not-have \f[C]fixed\f[R], \f[C]investment\f[R], \f[C]receivable\f[R] or-\f[C]A/R\f[R] in their name.-.PP-Example:-.IP-.nf-\f[C]-$ hledger cashflow-Cashflow Statement--Cash flows:- $-1 assets- $1 bank:saving- $-2 cash---------------------- $-1--Total:---------------------- $-1-\f[R]-.fi-.PP-With a reporting interval, multiple columns will be shown, one for each-report period.-Normally cashflow shows changes in assets per period, though as with-multicolumn balance reports you can alter the report mode with-\f[C]--change\f[R]/\f[C]--cumulative\f[R]/\f[C]--historical\f[R].-Instead of absolute values percentages can be displayed with-\f[C]-%\f[R].-.PP-This command also supports the output destination and output format-options The output formats supported are \f[C]txt\f[R], \f[C]csv\f[R],-\f[C]html\f[R], and (experimental) \f[C]json\f[R].-.SS check-.PP-check-.PD 0-.P-.PD-Check for various kinds of errors in your data.-\f[I]experimental\f[R]-.PP-hledger provides a number of built-in error checks to help prevent-problems in your data.-Some of these are run automatically; or, you can use this-\f[C]check\f[R] command to run them on demand, with no output and a zero-exit code if all is well.-Some examples:-.IP-.nf-\f[C]-hledger check # basic checks-hledger check -s # basic + strict checks-hledger check ordereddates uniqueleafnames # basic + specified checks-\f[R]-.fi-.PP-Here are the checks currently available:-.SS Basic checks-.PP-These are always run by this command and other commands:-.IP \[bu] 2-\f[B]parseable\f[R] - data files are well-formed and can be successfully-parsed-.IP \[bu] 2-\f[B]autobalanced\f[R] - all transactions are balanced, inferring-missing amounts where necessary, and possibly converting commodities-using transaction prices or automatically-inferred transaction prices-.IP \[bu] 2-\f[B]assertions\f[R] - all balance assertions in the journal are-passing.-(This check can be disabled with-\f[C]-I\f[R]/\f[C]--ignore-assertions\f[R].)-.SS Strict checks-.PP-These are always run by this and other commands when-\f[C]-s\f[R]/\f[C]--strict\f[R] is used (strict mode):-.IP \[bu] 2-\f[B]accounts\f[R] - all account names used by transactions have been-declared-.IP \[bu] 2-\f[B]commodities\f[R] - all commodity symbols used have been declared-.SS Other checks-.PP-These checks can be run by specifying their names as arguments to the-check command:-.IP \[bu] 2-\f[B]ordereddates\f[R] - transactions are ordered by date (similar to-the old \f[C]check-dates\f[R] command)-.IP \[bu] 2-\f[B]uniqueleafnames\f[R] - all account leaf names are unique (similar-to the old \f[C]check-dupes\f[R] command)-.SS Add-on checks-.PP-Some checks are not yet integrated with this command, but are available-as add-on commands in-https://github.com/simonmichael/hledger/tree/master/bin:-.IP \[bu] 2-\f[B]hledger-check-tagfiles\f[R] - all tag values containing / (a-forward slash) exist as file paths-.IP \[bu] 2-\f[B]hledger-check-fancyassertions\f[R] - more complex balance-assertions are passing-.PP-You could make your own similar scripts to perform custom checks;-Cookbook -> Scripting may be helpful.-.SS close-.PP-close, equity-.PD 0-.P-.PD-Prints a \[dq]closing balances\[dq] transaction and an \[dq]opening-balances\[dq] transaction that bring account balances to and from zero,-respectively.-These can be added to your journal file(s), eg to bring asset/liability-balances forward into a new journal file, or to close out-revenues/expenses to retained earnings at the end of a period.-.PP-You can print just one of these transactions by using the-\f[C]--close\f[R] or \f[C]--open\f[R] flag.-You can customise their descriptions with the \f[C]--close-desc\f[R] and-\f[C]--open-desc\f[R] options.-.PP-One amountless posting to \[dq]equity:opening/closing balances\[dq] is-added to balance the transactions, by default.-You can customise this account name with \f[C]--close-acct\f[R] and-\f[C]--open-acct\f[R]; if you specify only one of these, it will be used-for both.-.PP-With \f[C]--x/--explicit\f[R], the equity posting\[aq]s amount will be-shown.-And if it involves multiple commodities, a posting for each commodity-will be shown, as with the print command.-.PP-With \f[C]--interleaved\f[R], the equity postings are shown next to the-postings they balance, which makes troubleshooting easier.-.PP-By default, transaction prices in the journal are ignored when-generating the closing/opening transactions.-With \f[C]--show-costs\f[R], this cost information is preserved-(\f[C]balance -B\f[R] reports will be unchanged after the transition).-Separate postings are generated for each cost in each commodity.-Note this can generate very large journal entries, if you have many-foreign currency or investment transactions.-.SS close usage-.PP-If you split your journal files by time (eg yearly), you will typically-run this command at the end of the year, and save the closing-transaction as last entry of the old file, and the opening transaction-as the first entry of the new file.-This makes the files self contained, so that correct balances are-reported no matter which of them are loaded.-Ie, if you load just one file, the balances are initialised correctly;-or if you load several files, the redundant closing/opening transactions-cancel each other out.-(They will show up in print or register reports; you can exclude them-with a query like-\f[C]not:desc:\[aq](opening|closing) balances\[aq]\f[R].)-.PP-If you\[aq]re running a business, you might also use this command to-\[dq]close the books\[dq] at the end of an accounting period,-transferring income statement account balances to retained earnings.-(You may want to change the equity account name to something like-\[dq]equity:retained earnings\[dq].)-.PP-By default, the closing transaction is dated yesterday, the balances are-calculated as of end of yesterday, and the opening transaction is dated-today.-To close on some other date, use:-\f[C]hledger close -e OPENINGDATE\f[R].-Eg, to close/open on the 2018/2019 boundary, use \f[C]-e 2019\f[R].-You can also use -p or \f[C]date:PERIOD\f[R] (any starting date is-ignored).-.PP-Both transactions will include balance assertions for the-closed/reopened accounts.-You probably shouldn\[aq]t use status or realness filters (like -C or -R-or \f[C]status:\f[R]) with this command, or the generated balance-assertions will depend on these flags.-Likewise, if you run this command with --auto, the balance assertions-will probably always require --auto.-.PP-Examples:-.PP-Carrying asset/liability balances into a new file for 2019:-.IP-.nf-\f[C]-$ hledger close -f 2018.journal -e 2019 assets liabilities --open- # (copy/paste the output to the start of your 2019 journal file)-$ hledger close -f 2018.journal -e 2019 assets liabilities --close- # (copy/paste the output to the end of your 2018 journal file)-\f[R]-.fi-.PP-Now:-.IP-.nf-\f[C]-$ hledger bs -f 2019.journal # one file - balances are correct-$ hledger bs -f 2018.journal -f 2019.journal # two files - balances still correct-$ hledger bs -f 2018.journal not:desc:closing # to see year-end balances, must exclude closing txn-\f[R]-.fi-.PP-Transactions spanning the closing date can complicate matters, breaking-balance assertions:-.IP-.nf-\f[C]-2018/12/30 a purchase made in 2018, clearing the following year- expenses:food 5- assets:bank:checking -5 ; [2019/1/2]-\f[R]-.fi-.PP-Here\[aq]s one way to resolve that:-.IP-.nf-\f[C]-; in 2018.journal:-2018/12/30 a purchase made in 2018, clearing the following year- expenses:food 5- liabilities:pending--; in 2019.journal:-2019/1/2 clearance of last year\[aq]s pending transactions- liabilities:pending 5 = 0- assets:checking-\f[R]-.fi-.SS codes-.PP-codes-.PD 0-.P-.PD-List the codes seen in transactions, in the order parsed.-.PP-This command prints the value of each transaction\[aq]s code field, in-the order transactions were parsed.-The transaction code is an optional value written in parentheses between-the date and description, often used to store a cheque number, order-number or similar.-.PP-Transactions aren\[aq]t required to have a code, and missing or empty-codes will not be shown by default.-With the \f[C]-E\f[R]/\f[C]--empty\f[R] flag, they will be printed as-blank lines.-.PP-You can add a query to select a subset of transactions.-.PP-Examples:-.IP-.nf-\f[C]-1/1 (123)- (a) 1--1/1 ()- (a) 1--1/1- (a) 1--1/1 (126)- (a) 1-\f[R]-.fi-.IP-.nf-\f[C]-$ hledger codes-123-124-126-\f[R]-.fi-.IP-.nf-\f[C]-$ hledger codes -E-123-124---126-\f[R]-.fi-.SS commodities-.PP-commodities-.PD 0-.P-.PD-List all commodity/currency symbols used or declared in the journal.-.SS descriptions-.PP-descriptions-.PD 0-.P-.PD-List the unique descriptions that appear in transactions.-.PP-This command lists the unique descriptions that appear in transactions,-in alphabetic order.-You can add a query to select a subset of transactions.-.PP-Example:-.IP-.nf-\f[C]-$ hledger descriptions-Store Name-Gas Station | Petrol-Person A-\f[R]-.fi-.SS diff-.PP-diff-.PD 0-.P-.PD-Compares a particular account\[aq]s transactions in two input files.-It shows any transactions to this account which are in one file but not-in the other.-.PP-More precisely, for each posting affecting this account in either file,-it looks for a corresponding posting in the other file which posts the-same amount to the same account (ignoring date, description, etc.) Since-postings not transactions are compared, this also works when multiple-bank transactions have been combined into a single journal entry.-.PP-This is useful eg if you have downloaded an account\[aq]s transactions-from your bank (eg as CSV data).-When hledger and your bank disagree about the account balance, you can-compare the bank data with your journal to find out the cause.-.PP-Examples:-.IP-.nf-\f[C]-$ hledger diff -f $LEDGER_FILE -f bank.csv assets:bank:giro -These transactions are in the first file only:--2014/01/01 Opening Balances- assets:bank:giro EUR ...- ...- equity:opening balances EUR -...--These transactions are in the second file only:-\f[R]-.fi-.SS files-.PP-files-.PD 0-.P-.PD-List all files included in the journal.-With a REGEX argument, only file names matching the regular expression-(case sensitive) are shown.-.SS help-.PP-help-.PD 0-.P-.PD-Show any of the hledger manuals.-.PP-The \f[C]help\f[R] command displays any of the main hledger manuals, in-one of several ways.-Run it with no argument to list the manuals, or provide a full or-partial manual name to select one.-.PP-hledger manuals are available in several formats.-hledger help will use the first of these display methods that it finds:-info, man, $PAGER, less, stdout (or when non-interactive, just stdout).-You can force a particular viewer with the \f[C]--info\f[R],-\f[C]--man\f[R], \f[C]--pager\f[R], \f[C]--cat\f[R] flags.-.PP-Examples:-.IP-.nf-\f[C]-$ hledger help-Please choose a manual by typing \[dq]hledger help MANUAL\[dq] (a substring is ok).-Manuals: hledger hledger-ui hledger-web journal csv timeclock timedot-\f[R]-.fi-.IP-.nf-\f[C]-$ hledger help h --man--hledger(1) hledger User Manuals hledger(1)--NAME- hledger - a command-line accounting tool--SYNOPSIS- hledger [-f FILE] COMMAND [OPTIONS] [ARGS]- hledger [-f FILE] ADDONCMD -- [OPTIONS] [ARGS]- hledger--DESCRIPTION- hledger is a cross-platform program for tracking money, time, or any-\&...-\f[R]-.fi-.SS import-.PP-import-.PD 0-.P-.PD-Read new transactions added to each FILE since last run, and add them to-the main journal file.-Or with --dry-run, just print the transactions that would be added.-Or with --catchup, just mark all of the FILEs\[aq] transactions as-imported, without actually importing any.-.PP-The input files are specified as arguments - no need to write -f before-each one.-So eg to add new transactions from all CSV files to the main journal,-it\[aq]s just: \f[C]hledger import *.csv\f[R]-.PP-New transactions are detected in the same way as print --new: by-assuming transactions are always added to the input files in increasing-date order, and by saving \f[C].latest.FILE\f[R] state files.-.PP-The --dry-run output is in journal format, so you can filter it, eg to-see only uncategorised transactions:-.IP-.nf-\f[C]-$ hledger import --dry ... | hledger -f- print unknown --ignore-assertions-\f[R]-.fi-.SS Importing balance assignments-.PP-Entries added by import will have their posting amounts made explicit-(like \f[C]hledger print -x\f[R]).-This means that any balance assignments in imported files must be-evaluated; but, imported files don\[aq]t get to see the main file\[aq]s-account balances.-As a result, importing entries with balance assignments (eg from an-institution that provides only balances and not posting amounts) will-probably generate incorrect posting amounts.-To avoid this problem, use print instead of import:-.IP-.nf-\f[C]-$ hledger print IMPORTFILE [--new] >> $LEDGER_FILE-\f[R]-.fi-.PP-(If you think import should leave amounts implicit like print does,-please test it and send a pull request.)-.SS Commodity display styles-.PP-Imported amounts will be formatted according to the canonical commodity-styles (declared or inferred) in the main journal file.-.SS incomestatement-.PP-incomestatement, is-.PD 0-.P-.PD-.PP-This command displays an income statement, showing revenues and expenses-during one or more periods.-Amounts are shown with normal positive sign, as in conventional-financial statements.-.PP-The revenue and expense accounts shown are those accounts declared with-the \f[C]Revenue\f[R] or \f[C]Expense\f[R] type, or otherwise all-accounts under a top-level \f[C]revenue\f[R] or \f[C]income\f[R] or-\f[C]expense\f[R] account (case insensitive, plurals allowed).-.PP-Example:-.IP-.nf-\f[C]-$ hledger incomestatement-Income Statement--Revenues:- $-2 income- $-1 gifts- $-1 salary---------------------- $-2--Expenses:- $2 expenses- $1 food- $1 supplies---------------------- $2--Total:---------------------- 0-\f[R]-.fi-.PP-With a reporting interval, multiple columns will be shown, one for each-report period.-Normally incomestatement shows revenues/expenses per period, though as-with multicolumn balance reports you can alter the report mode with-\f[C]--change\f[R]/\f[C]--cumulative\f[R]/\f[C]--historical\f[R].-Instead of absolute values percentages can be displayed with-\f[C]-%\f[R].-.PP-This command also supports the output destination and output format-options The output formats supported are \f[C]txt\f[R], \f[C]csv\f[R],-\f[C]html\f[R], and (experimental) \f[C]json\f[R].-.SS notes-.PP-notes-.PD 0-.P-.PD-List the unique notes that appear in transactions.-.PP-This command lists the unique notes that appear in transactions, in-alphabetic order.-You can add a query to select a subset of transactions.-The note is the part of the transaction description after a | character-(or if there is no |, the whole description).-.PP-Example:-.IP-.nf-\f[C]-$ hledger notes-Petrol-Snacks-\f[R]-.fi-.SS rewrite-.PP-rewrite-.PD 0-.P-.PD-Print all transactions, rewriting the postings of matched transactions.-For now the only rewrite available is adding new postings, like print---auto.-.PP-This is a start at a generic rewriter of transaction entries.-It reads the default journal and prints the transactions, like print,-but adds one or more specified postings to any transactions matching-QUERY.-The posting amounts can be fixed, or a multiplier of the existing-transaction\[aq]s first posting amount.-.PP-Examples:-.IP-.nf-\f[C]-$ hledger-rewrite.hs \[ha]income --add-posting \[aq](liabilities:tax) *.33 ; income tax\[aq] --add-posting \[aq](reserve:gifts) $100\[aq]-$ hledger-rewrite.hs expenses:gifts --add-posting \[aq](reserve:gifts) *-1\[dq]\[aq]-$ hledger-rewrite.hs -f rewrites.hledger-\f[R]-.fi-.PP-rewrites.hledger may consist of entries like:-.IP-.nf-\f[C]-= \[ha]income amt:<0 date:2017- (liabilities:tax) *0.33 ; tax on income- (reserve:grocery) *0.25 ; reserve 25% for grocery- (reserve:) *0.25 ; reserve 25% for grocery-\f[R]-.fi-.PP-Note the single quotes to protect the dollar sign from bash, and the two-spaces between account and amount.-.PP-More:-.IP-.nf-\f[C]-$ hledger rewrite -- [QUERY] --add-posting \[dq]ACCT AMTEXPR\[dq] ...-$ hledger rewrite -- \[ha]income --add-posting \[aq](liabilities:tax) *.33\[aq]-$ hledger rewrite -- expenses:gifts --add-posting \[aq](budget:gifts) *-1\[dq]\[aq]-$ hledger rewrite -- \[ha]income --add-posting \[aq](budget:foreign currency) *0.25 JPY; diversify\[aq]-\f[R]-.fi-.PP-Argument for \f[C]--add-posting\f[R] option is a usual posting of-transaction with an exception for amount specification.-More precisely, you can use \f[C]\[aq]*\[aq]\f[R] (star symbol) before-the amount to indicate that that this is a factor for an amount of-original matched posting.-If the amount includes a commodity name, the new posting amount will be-in the new commodity; otherwise, it will be in the matched posting-amount\[aq]s commodity.-.SS Re-write rules in a file-.PP-During the run this tool will execute so called \[dq]Automated-Transactions\[dq] found in any journal it process.-I.e instead of specifying this operations in command line you can put-them in a journal file.-.IP-.nf-\f[C]-$ rewrite-rules.journal-\f[R]-.fi-.PP-Make contents look like this:-.IP-.nf-\f[C]-= \[ha]income- (liabilities:tax) *.33--= expenses:gifts- budget:gifts *-1- assets:budget *1-\f[R]-.fi-.PP-Note that \f[C]\[aq]=\[aq]\f[R] (equality symbol) that is used instead-of date in transactions you usually write.-It indicates the query by which you want to match the posting to add new-ones.-.IP-.nf-\f[C]-$ hledger rewrite -- -f input.journal -f rewrite-rules.journal > rewritten-tidy-output.journal-\f[R]-.fi-.PP-This is something similar to the commands pipeline:-.IP-.nf-\f[C]-$ hledger rewrite -- -f input.journal \[aq]\[ha]income\[aq] --add-posting \[aq](liabilities:tax) *.33\[aq] \[rs]- | hledger rewrite -- -f - expenses:gifts --add-posting \[aq]budget:gifts *-1\[aq] \[rs]- --add-posting \[aq]assets:budget *1\[aq] \[rs]- > rewritten-tidy-output.journal-\f[R]-.fi-.PP-It is important to understand that relative order of such entries in-journal is important.-You can re-use result of previously added postings.-.SS Diff output format-.PP-To use this tool for batch modification of your journal files you may-find useful output in form of unified diff.-.IP-.nf-\f[C]-$ hledger rewrite -- --diff -f examples/sample.journal \[aq]\[ha]income\[aq] --add-posting \[aq](liabilities:tax) *.33\[aq]-\f[R]-.fi-.PP-Output might look like:-.IP-.nf-\f[C]---- /tmp/examples/sample.journal-+++ /tmp/examples/sample.journal-\[at]\[at] -18,3 +18,4 \[at]\[at]- 2008/01/01 income-- assets:bank:checking $1-+ assets:bank:checking $1- income:salary-+ (liabilities:tax) 0-\[at]\[at] -22,3 +23,4 \[at]\[at]- 2008/06/01 gift-- assets:bank:checking $1-+ assets:bank:checking $1- income:gifts-+ (liabilities:tax) 0-\f[R]-.fi-.PP-If you\[aq]ll pass this through \f[C]patch\f[R] tool you\[aq]ll get-transactions containing the posting that matches your query be updated.-Note that multiple files might be update according to list of input-files specified via \f[C]--file\f[R] options and \f[C]include\f[R]-directives inside of these files.-.PP-Be careful.-Whole transaction being re-formatted in a style of output from-\f[C]hledger print\f[R].-.PP-See also:-.PP-https://github.com/simonmichael/hledger/issues/99-.SS rewrite vs. print --auto-.PP-This command predates print --auto, and currently does much the same-thing, but with these differences:-.IP \[bu] 2-with multiple files, rewrite lets rules in any file affect all other-files.-print --auto uses standard directive scoping; rules affect only child-files.-.IP \[bu] 2-rewrite\[aq]s query limits which transactions can be rewritten; all are-printed.-print --auto\[aq]s query limits which transactions are printed.-.IP \[bu] 2-rewrite applies rules specified on command line or in the journal.-print --auto applies rules specified in the journal.-.SS roi-.PP-roi-.PD 0-.P-.PD-Shows the time-weighted (TWR) and money-weighted (IRR) rate of return on-your investments.-.PP-This command assumes that you have account(s) that hold nothing but your-investments and whenever you record current appraisal/valuation of these-investments you offset unrealized profit and loss into account(s) that,-again, hold nothing but unrealized profit and loss.-.PP-Any transactions affecting balance of investment account(s) and not-originating from unrealized profit and loss account(s) are assumed to be-your investments or withdrawals.-.PP-At a minimum, you need to supply a query (which could be just an account-name) to select your investments with \f[C]--inv\f[R], and another query-to identify your profit and loss transactions with \f[C]--pnl\f[R].-.PP-This command will compute and display the internalized rate of return-(IRR) and time-weighted rate of return (TWR) for your investments for-the time period requested.-Both rates of return are annualized before display, regardless of the-length of reporting interval.-.PP-Note, in some cases this report can fail, for these reasons:-.IP \[bu] 2-Error (NotBracketed): No solution for Internal Rate of Return (IRR).-Possible causes: IRR is huge (>1000000%), balance of investment becomes-negative at some point in time.-.IP \[bu] 2-Error (SearchFailed): Failed to find solution for Internal Rate of-Return (IRR).-Either search does not converge to a solution, or converges too slowly.-.PP-Examples:-.IP \[bu] 2-Using roi to report unrealised gains:-https://github.com/simonmichael/hledger/blob/master/examples/roi-unrealised.ledger-.PP-More background:-.PP-\[dq]ROI\[dq] stands for \[dq]return on investment\[dq].-Traditionally this was computed as a difference between current value of-investment and its initial value, expressed in percentage of the initial-value.-.PP-However, this approach is only practical in simple cases, where-investments receives no in-flows or out-flows of money, and where rate-of growth is fixed over time.-For more complex scenarios you need different ways to compute rate of-return, and this command implements two of them: IRR and TWR.-.PP-Internal rate of return, or \[dq]IRR\[dq] (also called-\[dq]money-weighted rate of return\[dq]) takes into account effects of-in-flows and out-flows.-Naively, if you are withdrawing from your investment, your future gains-would be smaller (in absolute numbers), and will be a smaller percentage-of your initial investment, and if you are adding to your investment,-you will receive bigger absolute gains (but probably at the same rate of-return).-IRR is a way to compute rate of return for each period between in-flow-or out-flow of money, and then combine them in a way that gives you an-annual rate of return that investment is expected to generate.-.PP-As mentioned before, in-flows and out-flows would be any cash that you-personally put in or withdraw, and for the \[dq]roi\[dq] command, these-are transactions that involve account(s) matching \f[C]--inv\f[R]-argument and NOT involve account(s) matching \f[C]--pnl\f[R] argument.-.PP-Presumably, you will also record changes in the value of your-investment, and balance them against \[dq]profit and loss\[dq] (or-\[dq]unrealized gains\[dq]) account.-Note that in order for IRR to compute the precise effect of your-in-flows and out-flows on the rate of return, you will need to record-the value of your investement on or close to the days when in- or-out-flows occur.-.PP-Implementation of IRR in hledger should match the \f[C]XIRR\f[R] formula-in Excel.-.PP-Second way to compute rate of return that \f[C]roi\f[R] command-implements is called \[dq]time-weighted rate of return\[dq] or-\[dq]TWR\[dq].-Like IRR, it will also break the history of your investment into periods-between in-flows and out-flows to compute rate of return per each period-and then a compound rate of return.-However, internal workings of TWR are quite different.-.PP-In technical terms, IRR uses the same approach as computation of net-present value, and tries to find a discount rate that makes net present-value of all the cash flows of your investment to add up to zero.-This could be hard to wrap your head around, especially if you-haven\[aq]t done discounted cash flow analysis before.-.PP-TWR represents your investment as an imaginary \[dq]unit fund\[dq] where-in-flows/ out-flows lead to buying or selling \[dq]units\[dq] of your-investment and changes in its value change the value of \[dq]investment-unit\[dq].-Change in \[dq]unit price\[dq] over the reporting period gives you rate-of return of your investment.-.PP-References: * Explanation of rate of return * Explanation of IRR *-Explanation of TWR * Examples of computing IRR and TWR and discussion of-the limitations of both metrics-.PP-More examples:-.PP-Lets say that we found an investment in Snake Oil that is proising to-give us 10% annually:-.IP-.nf-\f[C]-2019-01-01 Investing in Snake Oil- assets:cash -$100- investment:snake oil--2019-12-24 Recording the growth of Snake Oil- investment:snake oil = $110- equity:unrealized gains-\f[R]-.fi-.PP-For now, basic computation of the rate of return, as well as IRR and-TWR, gives us the expected 10%:-.IP-.nf-\f[C]-$ hledger roi -Y --inv investment --pnl \[dq]unrealized\[dq]-+---++------------+------------++---------------+----------+-------------+-----++--------+--------+-| || Begin | End || Value (begin) | Cashflow | Value (end) | PnL || IRR | TWR |-+===++============+============++===============+==========+=============+=====++========+========+-| 1 || 2019-01-01 | 2019-12-31 || 0 | 100 | 110 | 10 || 10.00% | 10.00% |-+---++------------+------------++---------------+----------+-------------+-----++--------+--------+-\f[R]-.fi-.PP-However, lets say that shorty after investing in the Snake Oil we-started to have second thoughs, so we prompty withdrew $90, leaving only-$10 in.-Before Christmas, though, we started to get the \[dq]fear of mission-out\[dq], so we put the $90 back in.-So for most of the year, our investment was just $10 dollars, and it-gave us just $1 in growth:-.IP-.nf-\f[C]-2019-01-01 Investing in Snake Oil- assets:cash -$100- investment:snake oil--2019-01-02 Buyers remorse- assets:cash $90- investment:snake oil- -2019-12-30 Fear of missing out- assets:cash -$90- investment:snake oil--2019-12-31 Recording the growth of Snake Oil- investment:snake oil = $101- equity:unrealized gains-\f[R]-.fi-.PP-Now IRR and TWR are drastically different:-.IP-.nf-\f[C]-$ hledger roi -Y --inv investment --pnl \[dq]unrealized\[dq]-+---++------------+------------++---------------+----------+-------------+-----++-------+-------+-| || Begin | End || Value (begin) | Cashflow | Value (end) | PnL || IRR | TWR |-+===++============+============++===============+==========+=============+=====++=======+=======+-| 1 || 2019-01-01 | 2019-12-31 || 0 | 100 | 101 | 1 || 9.32% | 1.00% |-+---++------------+------------++---------------+----------+-------------+-----++-------+-------+-\f[R]-.fi-.PP-Here, IRR tells us that we made close to 10% on the $10 dollars that we-had in the account most of the time.-And TWR is ...-just 1%?-Why?-.PP-Based on the transactions in our journal, TWR \[dq]think\[dq] that we-are buying back $90 worst of Snake Oil at the same price that it had at-the beginning of they year, and then after that our $100 investment gets-$1 increase in value, or 1% of $100.-Let\[aq]s take a closer look at what is happening here by asking for-quarterly reports instead of annual:-.IP-.nf-\f[C]-$ hledger roi -Q --inv investment --pnl \[dq]unrealized\[dq]-+---++------------+------------++---------------+----------+-------------+-----++--------+-------+-| || Begin | End || Value (begin) | Cashflow | Value (end) | PnL || IRR | TWR |-+===++============+============++===============+==========+=============+=====++========+=======+-| 1 || 2019-01-01 | 2019-03-31 || 0 | 10 | 10 | 0 || 0.00% | 0.00% |-| 2 || 2019-04-01 | 2019-06-30 || 10 | 0 | 10 | 0 || 0.00% | 0.00% |-| 3 || 2019-07-01 | 2019-09-30 || 10 | 0 | 10 | 0 || 0.00% | 0.00% |-| 4 || 2019-10-01 | 2019-12-31 || 10 | 90 | 101 | 1 || 37.80% | 4.03% |-+---++------------+------------++---------------+----------+-------------+-----++--------+-------+-\f[R]-.fi-.PP-Now both IRR and TWR are thrown off by the fact that all of the growth-for our investment happens in Q4 2019.-This happes because IRR computation is still yielding 9.32% and TWR is-still 1%, but this time these are rates for three month period instead-of twelve, so in order to get an annual rate they should be multiplied-by four!-.PP-Let\[aq]s try to keep a better record of how Snake Oil grew in value:-.IP-.nf-\f[C]-2019-01-01 Investing in Snake Oil- assets:cash -$100- investment:snake oil--2019-01-02 Buyers remorse- assets:cash $90- investment:snake oil--2019-02-28 Recording the growth of Snake Oil- investment:snake oil - equity:unrealized gains -$0.25--2019-06-30 Recording the growth of Snake Oil- investment:snake oil - equity:unrealized gains -$0.25--2019-09-30 Recording the growth of Snake Oil- investment:snake oil - equity:unrealized gains -$0.25--2019-12-30 Fear of missing out- assets:cash -$90- investment:snake oil--2019-12-31 Recording the growth of Snake Oil- investment:snake oil- equity:unrealized gains -$0.25-\f[R]-.fi-.PP-Would our quartery report look better now?-Almost:-.IP-.nf-\f[C]-$ hledger roi -Q --inv investment --pnl \[dq]unrealized\[dq]-+---++------------+------------++---------------+----------+-------------+------++--------+--------+-| || Begin | End || Value (begin) | Cashflow | Value (end) | PnL || IRR | TWR |-+===++============+============++===============+==========+=============+======++========+========+-| 1 || 2019-01-01 | 2019-03-31 || 0 | 10 | 10.25 | 0.25 || 9.53% | 10.53% |-| 2 || 2019-04-01 | 2019-06-30 || 10.25 | 0 | 10.50 | 0.25 || 10.15% | 10.15% |-| 3 || 2019-07-01 | 2019-09-30 || 10.50 | 0 | 10.75 | 0.25 || 9.79% | 9.78% |-| 4 || 2019-10-01 | 2019-12-31 || 10.75 | 90 | 101.00 | 0.25 || 8.05% | 1.00% |-+---++------------+------------++---------------+----------+-------------+------++--------+--------+-\f[R]-.fi-.PP-Something is still wrong with TWR computation for Q4, and if you have-been paying attention you know what it is already: big $90 buy-back is-recorded prior to the only transaction that captures the change of value-of Snake Oil that happened in this time period.-Lets combine transactions from 30th and 31st of Dec into one:-.IP-.nf-\f[C]-2019-12-30 Fear of missing out and growth of Snake Oil- assets:cash -$90- investment:snake oil- equity:unrealized gains -$0.25-\f[R]-.fi-.PP-Now growth of investment properly affects its price at the time of-buy-back:-.IP-.nf-\f[C]-$ hledger roi -Q --inv investment --pnl \[dq]unrealized\[dq]-+---++------------+------------++---------------+----------+-------------+------++--------+--------+-| || Begin | End || Value (begin) | Cashflow | Value (end) | PnL || IRR | TWR |-+===++============+============++===============+==========+=============+======++========+========+-| 1 || 2019-01-01 | 2019-03-31 || 0 | 10 | 10.25 | 0.25 || 9.53% | 10.53% |-| 2 || 2019-04-01 | 2019-06-30 || 10.25 | 0 | 10.50 | 0.25 || 10.15% | 10.15% |-| 3 || 2019-07-01 | 2019-09-30 || 10.50 | 0 | 10.75 | 0.25 || 9.79% | 9.78% |-| 4 || 2019-10-01 | 2019-12-31 || 10.75 | 90 | 101.00 | 0.25 || 8.05% | 9.57% |-+---++------------+------------++---------------+----------+-------------+------++--------+--------+-\f[R]-.fi-.PP-And for annual report, TWR now reports the exact profitability of our-investment:-.IP-.nf-\f[C]-$ hledger roi -Y --inv investment --pnl \[dq]unrealized\[dq]-+---++------------+------------++---------------+----------+-------------+------++-------+--------+-| || Begin | End || Value (begin) | Cashflow | Value (end) | PnL || IRR | TWR |-+===++============+============++===============+==========+=============+======++=======+========+-| 1 || 2019-01-01 | 2019-12-31 || 0 | 100 | 101.00 | 1.00 || 9.32% | 10.00% |-+---++------------+------------++---------------+----------+-------------+------++-------+--------+-\f[R]-.fi-.SS stats-.PP-stats-.PD 0-.P-.PD-Show some journal statistics.-.PP-The stats command displays summary information for the whole journal, or-a matched part of it.-With a reporting interval, it shows a report for each report period.-.PP-Example:-.IP-.nf-\f[C]-$ hledger stats-Main journal file : /src/hledger/examples/sample.journal-Included journal files : -Transactions span : 2008-01-01 to 2009-01-01 (366 days)-Last transaction : 2008-12-31 (2333 days ago)-Transactions : 5 (0.0 per day)-Transactions last 30 days: 0 (0.0 per day)-Transactions last 7 days : 0 (0.0 per day)-Payees/descriptions : 5-Accounts : 8 (depth 3)-Commodities : 1 ($)-Market prices : 12 ($)-\f[R]-.fi-.PP-This command also supports output destination and output format-selection.-.SS tags-.PP-tags-.PD 0-.P-.PD-List the unique tag names used in the journal.-With a TAGREGEX argument, only tag names matching the regular expression-(case insensitive) are shown.-With QUERY arguments, only transactions matching the query are-considered.-.PP-With the --values flag, the tags\[aq] unique values are listed instead.-.PP-With --parsed flag, all tags or values are shown in the order they are-parsed from the input data, including duplicates.-.PP-With -E/--empty, any blank/empty values will also be shown, otherwise-they are omitted.-.SS test-.PP-test-.PD 0-.P-.PD-Run built-in unit tests.-.PP-This command runs the unit tests built in to hledger and hledger-lib,-printing the results on stdout.-If any test fails, the exit code will be non-zero.-.PP-This is mainly used by hledger developers, but you can also use it to-sanity-check the installed hledger executable on your platform.-All tests are expected to pass - if you ever see a failure, please-report as a bug!-.PP-This command also accepts tasty test runner options, written after a ---(double hyphen).-Eg to run only the tests in Hledger.Data.Amount, with ANSI colour codes-disabled:-.IP-.nf-\f[C]-$ hledger test -- -pData.Amount --color=never-\f[R]-.fi-.PP-For help on these, see https://github.com/feuerbach/tasty#options-(\f[C]-- --help\f[R] currently doesn\[aq]t show them).-.SS Add-on commands-.PP-Any programs or scripts in your PATH named named-\f[C]hledger-SOMETHING\f[R] will also appear in the commands list (with-a \f[C]+\f[R] mark).-These are called add-on commands.-.PP-These offical add-ons are maintained and released along with hledger:-.IP \[bu] 2-ui an efficient terminal interface for hledger (TUI)-.IP \[bu] 2-web a simple web interface for hledger (WUI)-.PP-These add-ons are maintained separately:-.IP \[bu] 2-iadd a more interactive alternative for the add command-.IP \[bu] 2-interest generates interest transactions according to various schemes-.IP \[bu] 2-stockquotes downloads market prices for your commodities from-AlphaVantage \f[I](experimental)\f[R]-.PP-Additional experimental add-ons, which may not be in a working state,-can be found in the bin/ directory in the hledger repo.-.SS Add-on command flags-.PP-In a hledger command line, add-on command flags must have a double dash-(\f[C]--\f[R]) preceding them.-Eg you must write:-.IP-.nf-\f[C]-$ hledger web -- --serve-\f[R]-.fi-.PP-and not:-.IP-.nf-\f[C]-$ hledger web --serve-\f[R]-.fi-.PP-(because the \f[C]--serve\f[R] flag belongs to \f[C]hledger-web\f[R],-not \f[C]hledger\f[R]).-.PP-The \f[C]-h/--help\f[R] and \f[C]--version\f[R] flags work without-\f[C]--\f[R], with their position deciding which program they refer to.-Eg \f[C]hledger -h web\f[R] shows hledger\[aq]s help,-\f[C]hledger web -h\f[R] shows hledger-web\[aq]s help.-.PP-If you have any trouble with this, remember you can always run the-add-on program directly, eg:-.IP-.nf-\f[C]-$ hledger-web --serve-\f[R]-.fi-.SS Making add-on commands-.PP-Add-on commands are programs or scripts in your PATH-.IP \[bu] 2-whose name starts with \f[C]hledger-\f[R]-.IP \[bu] 2-whose name ends with a recognised file extension:-\f[C].bat\f[R],\f[C].com\f[R],\f[C].exe\f[R],-\f[C].hs\f[R],\f[C].lhs\f[R],\f[C].pl\f[R],\f[C].py\f[R],\f[C].rb\f[R],\f[C].rkt\f[R],\f[C].sh\f[R]-or none-.IP \[bu] 2-and (on unix, mac) which are executable by the current user.-.PP-Add-ons are a relatively easy way to add local features or experiment-with new ideas.-They can be written in any language, but haskell scripts have a big-advantage: they can use the same hledger library functions that built-in-commands use for command-line options, parsing and reporting.-.SH ENVIRONMENT-.PP-\f[B]LEDGER_FILE\f[R] The journal file path when not specified with-\f[C]-f\f[R].-Default: \f[C]\[ti]/.hledger.journal\f[R] (on windows, perhaps-\f[C]C:/Users/USER/.hledger.journal\f[R]).-.PP-A typical value is \f[C]\[ti]/DIR/YYYY.journal\f[R], where DIR is a-version-controlled finance directory and YYYY is the current year.-Or \f[C]\[ti]/DIR/current.journal\f[R], where current.journal is a-symbolic link to YYYY.journal.-.PP-On Mac computers, you can set this and other environment variables in a-more thorough way that also affects applications started from the GUI-(say, an Emacs dock icon).-Eg on MacOS Catalina I have a \f[C]\[ti]/.MacOSX/environment.plist\f[R]-file containing-.IP-.nf-\f[C]-{- \[dq]LEDGER_FILE\[dq] : \[dq]\[ti]/finance/current.journal\[dq]-}-\f[R]-.fi-.PP-To see the effect you may need to \f[C]killall Dock\f[R], or reboot.-.PP-\f[B]COLUMNS\f[R] The screen width used by the register command.-Default: the full terminal width.-.PP-\f[B]NO_COLOR\f[R] If this variable exists with any value, hledger will-not use ANSI color codes in terminal output.-This overrides the --color/--colour option.-.SH FILES-.PP-Reads data from one or more files in hledger journal, timeclock,-timedot, or CSV format specified with \f[C]-f\f[R], or-\f[C]$LEDGER_FILE\f[R], or \f[C]$HOME/.hledger.journal\f[R] (on windows,-perhaps \f[C]C:/Users/USER/.hledger.journal\f[R]).-.SH LIMITATIONS-.PP-The need to precede add-on command options with \f[C]--\f[R] when-invoked from hledger is awkward.-.PP-When input data contains non-ascii characters, a suitable system locale-must be configured (or there will be an unhelpful error).-Eg on POSIX, set LANG to something other than C.-.PP-In a Microsoft Windows CMD window, non-ascii characters and colours are-not supported.-.PP-On Windows, non-ascii characters may not display correctly when running-a hledger built in CMD in MSYS/CYGWIN, or vice-versa.-.PP-In a Cygwin/MSYS/Mintty window, the tab key is not supported in hledger-add.-.PP-Not all of Ledger\[aq]s journal file syntax is supported.-See file format differences.-.PP-On large data files, hledger is slower and uses more memory than Ledger.-.SH TROUBLESHOOTING-.PP-Here are some issues you might encounter when you run hledger (and-remember you can also seek help from the IRC channel, mail list or bug-tracker):-.PP-\f[B]Successfully installed, but \[dq]No command \[aq]hledger\[aq]-found\[dq]\f[R]-.PD 0-.P-.PD-stack and cabal install binaries into a special directory, which should-be added to your PATH environment variable.-Eg on unix-like systems, that is \[ti]/.local/bin and \[ti]/.cabal/bin-respectively.-.PP-\f[B]I set a custom LEDGER_FILE, but hledger is still using the default-file\f[R]-.PD 0-.P-.PD-\f[C]LEDGER_FILE\f[R] should be a real environment variable, not just a-shell variable.-The command \f[C]env | grep LEDGER_FILE\f[R] should show it.-You may need to use \f[C]export\f[R].-Here\[aq]s an explanation.-.PP-\f[B]Getting errors like \[dq]Illegal byte sequence\[dq] or \[dq]Invalid-or incomplete multibyte or wide character\[dq] or-\[dq]commitAndReleaseBuffer: invalid argument (invalid-character)\[dq]\f[R]-.PD 0-.P-.PD-Programs compiled with GHC (hledger, haskell build tools, etc.) need to-have a UTF-8-aware locale configured in the environment, otherwise they-will fail with these kinds of errors when they encounter non-ascii-characters.-.PP-To fix it, set the LANG environment variable to some locale which-supports UTF-8.-The locale you choose must be installed on your system.-.PP-Here\[aq]s an example of setting LANG temporarily, on Ubuntu GNU/Linux:-.IP-.nf-\f[C]-$ file my.journal-my.journal: UTF-8 Unicode text # the file is UTF8-encoded-$ echo $LANG-C # LANG is set to the default locale, which does not support UTF8-$ locale -a # which locales are installed ?-C-en_US.utf8 # here\[aq]s a UTF8-aware one we can use-POSIX-$ LANG=en_US.utf8 hledger -f my.journal print # ensure it is used for this command-\f[R]-.fi-.PP-If available, \f[C]C.UTF-8\f[R] will also work.-If your preferred locale isn\[aq]t listed by \f[C]locale -a\f[R], you-might need to install it.-Eg on Ubuntu/Debian:-.IP-.nf-\f[C]-$ apt-get install language-pack-fr-$ locale -a-C-en_US.utf8-fr_BE.utf8-fr_CA.utf8-fr_CH.utf8-fr_FR.utf8-fr_LU.utf8-POSIX-$ LANG=fr_FR.utf8 hledger -f my.journal print-\f[R]-.fi-.PP-Here\[aq]s how you could set it permanently, if you use a bash shell:-.IP-.nf-\f[C]-$ echo \[dq]export LANG=en_US.utf8\[dq] >>\[ti]/.bash_profile-$ bash --login-\f[R]-.fi-.PP-Exact spelling and capitalisation may be important.-Note the difference on MacOS (\f[C]UTF-8\f[R], not \f[C]utf8\f[R]).-Some platforms (eg ubuntu) allow variant spellings, but others (eg-macos) require it to be exact:-.IP-.nf-\f[C]-$ locale -a | grep -iE en_us.*utf-en_US.UTF-8-$ LANG=en_US.UTF-8 hledger -f my.journal print-\f[R]-.fi---.SH "REPORTING BUGS"-Report bugs at http://bugs.hledger.org-(or on the #hledger IRC channel or hledger mail list)--.SH AUTHORS-Simon Michael <simon@joyful.com> and contributors--.SH COPYRIGHT--Copyright (C) 2007-2020 Simon Michael.-.br-Released under GNU GPL v3 or later.--.SH SEE ALSO-hledger(1), hledger\-ui(1), hledger\-web(1), ledger(1)--hledger_journal(5), hledger_csv(5), hledger_timeclock(5), hledger_timedot(5)+.TH "HLEDGER" "1" "December 2020" "hledger-1.21 " "hledger User Manuals"++++.SH NAME+.PP+This is the command-line interface (CLI) for the hledger accounting+tool.+Here we also describe hledger\[aq]s concepts and file formats.+This manual is for hledger 1.21.+.SH SYNOPSIS+.PP+\f[C]hledger\f[R]+.PP+\f[C]hledger [-f FILE] COMMAND [OPTIONS] [ARGS]\f[R]+.PP+\f[C]hledger [-f FILE] ADDONCMD -- [OPTIONS] [ARGS]\f[R]+.SH DESCRIPTION+.PP+hledger is a reliable, cross-platform set of programs for tracking+money, time, or any other commodity, using double-entry accounting and a+simple, editable file format.+hledger is inspired by and largely compatible with ledger(1).+.PP+The basic function of the hledger CLI is to read a plain text file+describing financial transactions (in accounting terms, a general+journal) and print useful reports on standard output, or export them as+CSV.+hledger can also read some other file formats such as CSV files,+translating them to journal format.+Additionally, hledger lists other hledger-* executables found in the+user\[cq]s $PATH and can invoke them as subcommands.+.PP+hledger reads data from one or more files in hledger journal, timeclock,+timedot, or CSV format specified with \f[C]-f\f[R], or+\f[C]$LEDGER_FILE\f[R], or \f[C]$HOME/.hledger.journal\f[R] (on windows,+perhaps \f[C]C:/Users/USER/.hledger.journal\f[R]).+If using \f[C]$LEDGER_FILE\f[R], note this must be a real environment+variable, not a shell variable.+You can specify standard input with \f[C]-f-\f[R].+.PP+Transactions are dated movements of money between two (or more) named+accounts, and are recorded with journal entries like this:+.IP+.nf+\f[C]+2015/10/16 bought food+ expenses:food $10+ assets:cash+\f[R]+.fi+.PP+For more about this format, see hledger_journal(5).+.PP+Most users use a text editor to edit the journal, usually with an editor+mode such as ledger-mode for added convenience.+hledger\[cq]s interactive add command is another way to record new+transactions.+hledger never changes existing transactions.+.PP+To get started, you can either save some entries like the above in+\f[C]\[ti]/.hledger.journal\f[R], or run \f[C]hledger add\f[R] and+follow the prompts.+Then try some commands like \f[C]hledger print\f[R] or+\f[C]hledger balance\f[R].+Run \f[C]hledger\f[R] with no arguments for a list of commands.+.SH OPTIONS+.SS General options+.PP+To see general usage help, including general options which are supported+by most hledger commands, run \f[C]hledger -h\f[R].+.PP+General help options:+.TP+\f[B]\f[CB]-h --help\f[B]\f[R]+show general or COMMAND help+.TP+\f[B]\f[CB]--man\f[B]\f[R]+show general or COMMAND user manual with man+.TP+\f[B]\f[CB]--info\f[B]\f[R]+show general or COMMAND user manual with info+.TP+\f[B]\f[CB]--version\f[B]\f[R]+show general or ADDONCMD version+.TP+\f[B]\f[CB]--debug[=N]\f[B]\f[R]+show debug output (levels 1-9, default: 1)+.PP+General input options:+.TP+\f[B]\f[CB]-f FILE --file=FILE\f[B]\f[R]+use a different input file.+For stdin, use - (default: \f[C]$LEDGER_FILE\f[R] or+\f[C]$HOME/.hledger.journal\f[R])+.TP+\f[B]\f[CB]--rules-file=RULESFILE\f[B]\f[R]+Conversion rules file to use when reading CSV (default: FILE.rules)+.TP+\f[B]\f[CB]--separator=CHAR\f[B]\f[R]+Field separator to expect when reading CSV (default: \[aq],\[aq])+.TP+\f[B]\f[CB]--alias=OLD=NEW\f[B]\f[R]+rename accounts named OLD to NEW+.TP+\f[B]\f[CB]--anon\f[B]\f[R]+anonymize accounts and payees+.TP+\f[B]\f[CB]--pivot FIELDNAME\f[B]\f[R]+use some other field or tag for the account name+.TP+\f[B]\f[CB]-I --ignore-assertions\f[B]\f[R]+disable balance assertion checks (note: does not disable balance+assignments)+.TP+\f[B]\f[CB]-s --strict\f[B]\f[R]+do extra error checking (check that all posted accounts are declared)+.PP+General reporting options:+.TP+\f[B]\f[CB]-b --begin=DATE\f[B]\f[R]+include postings/txns on or after this date+.TP+\f[B]\f[CB]-e --end=DATE\f[B]\f[R]+include postings/txns before this date+.TP+\f[B]\f[CB]-D --daily\f[B]\f[R]+multiperiod/multicolumn report by day+.TP+\f[B]\f[CB]-W --weekly\f[B]\f[R]+multiperiod/multicolumn report by week+.TP+\f[B]\f[CB]-M --monthly\f[B]\f[R]+multiperiod/multicolumn report by month+.TP+\f[B]\f[CB]-Q --quarterly\f[B]\f[R]+multiperiod/multicolumn report by quarter+.TP+\f[B]\f[CB]-Y --yearly\f[B]\f[R]+multiperiod/multicolumn report by year+.TP+\f[B]\f[CB]-p --period=PERIODEXP\f[B]\f[R]+set start date, end date, and/or reporting interval all at once using+period expressions syntax+.TP+\f[B]\f[CB]--date2\f[B]\f[R]+match the secondary date instead (see command help for other effects)+.TP+\f[B]\f[CB]-U --unmarked\f[B]\f[R]+include only unmarked postings/txns (can combine with -P or -C)+.TP+\f[B]\f[CB]-P --pending\f[B]\f[R]+include only pending postings/txns+.TP+\f[B]\f[CB]-C --cleared\f[B]\f[R]+include only cleared postings/txns+.TP+\f[B]\f[CB]-R --real\f[B]\f[R]+include only non-virtual postings+.TP+\f[B]\f[CB]-NUM --depth=NUM\f[B]\f[R]+hide/aggregate accounts or postings more than NUM levels deep+.TP+\f[B]\f[CB]-E --empty\f[B]\f[R]+show items with zero amount, normally hidden (and vice-versa in+hledger-ui/hledger-web)+.TP+\f[B]\f[CB]-B --cost\f[B]\f[R]+convert amounts to their cost/selling amount at transaction time+.TP+\f[B]\f[CB]-V --market\f[B]\f[R]+convert amounts to their market value in default valuation commodities+.TP+\f[B]\f[CB]-X --exchange=COMM\f[B]\f[R]+convert amounts to their market value in commodity COMM+.TP+\f[B]\f[CB]--value\f[B]\f[R]+convert amounts to cost or market value, more flexibly than -B/-V/-X+.TP+\f[B]\f[CB]--infer-market-prices\f[B]\f[R]+use transaction prices (recorded with \[at] or \[at]\[at]) as additional+market prices, as if they were P directives+.TP+\f[B]\f[CB]--auto\f[B]\f[R]+apply automated posting rules to modify transactions.+.TP+\f[B]\f[CB]--forecast\f[B]\f[R]+generate future transactions from periodic transaction rules, for the+next 6 months or till report end date.+In hledger-ui, also make ordinary future transactions visible.+.TP+\f[B]\f[CB]--color=WHEN (or --colour=WHEN)\f[B]\f[R]+Should color-supporting commands use ANSI color codes in text output.+\[aq]auto\[aq] (default): whenever stdout seems to be a color-supporting+terminal.+\[aq]always\[aq] or \[aq]yes\[aq]: always, useful eg when piping output+into \[aq]less -R\[aq].+\[aq]never\[aq] or \[aq]no\[aq]: never.+A NO_COLOR environment variable overrides this.+.PP+When a reporting option appears more than once in the command line, the+last one takes precedence.+.PP+Some reporting options can also be written as query arguments.+.SS Command options+.PP+To see options for a particular command, including command-specific+options, run: \f[C]hledger COMMAND -h\f[R].+.PP+Command-specific options must be written after the command name, eg:+\f[C]hledger print -x\f[R].+.PP+Additionally, if the command is an add-on, you may need to put its+options after a double-hyphen, eg: \f[C]hledger ui -- --watch\f[R].+Or, you can run the add-on executable directly:+\f[C]hledger-ui --watch\f[R].+.SS Command arguments+.PP+Most hledger commands accept arguments after the command name, which are+often a query, filtering the data in some way.+.PP+You can save a set of command line options/arguments in a file, and then+reuse them by writing \f[C]\[at]FILENAME\f[R] as a command line+argument.+Eg: \f[C]hledger bal \[at]foo.args\f[R].+(To prevent this, eg if you have an argument that begins with a literal+\f[C]\[at]\f[R], precede it with \f[C]--\f[R], eg:+\f[C]hledger bal -- \[at]ARG\f[R]).+.PP+Inside the argument file, each line should contain just one option or+argument.+Avoid the use of spaces, except inside quotes (or you\[aq]ll see a+confusing error).+Between a flag and its argument, use = (or nothing).+Bad:+.IP+.nf+\f[C]+assets depth:2+-X USD+\f[R]+.fi+.PP+Good:+.IP+.nf+\f[C]+assets+depth:2+-X=USD+\f[R]+.fi+.PP+For special characters (see below), use one less level of quoting than+you would at the command prompt.+Bad:+.IP+.nf+\f[C]+-X\[dq]$\[dq]+\f[R]+.fi+.PP+Good:+.IP+.nf+\f[C]+-X$+\f[R]+.fi+.PP+See also: Save frequently used options.+.SS Special characters+.SS Single escaping (shell metacharacters)+.PP+In shell command lines, characters significant to your shell - such as+spaces, \f[C]<\f[R], \f[C]>\f[R], \f[C](\f[R], \f[C])\f[R], \f[C]|\f[R],+\f[C]$\f[R] and \f[C]\[rs]\f[R] - should be \[dq]shell-escaped\[dq] if+you want hledger to see them.+This is done by enclosing them in single or double quotes, or by writing+a backslash before them.+Eg to match an account name containing a space:+.IP+.nf+\f[C]+$ hledger register \[aq]credit card\[aq]+\f[R]+.fi+.PP+or:+.IP+.nf+\f[C]+$ hledger register credit\[rs] card+\f[R]+.fi+.SS Double escaping (regular expression metacharacters)+.PP+Characters significant in regular expressions (described below) - such+as \f[C].\f[R], \f[C]\[ha]\f[R], \f[C]$\f[R], \f[C][\f[R], \f[C]]\f[R],+\f[C](\f[R], \f[C])\f[R], \f[C]|\f[R], and \f[C]\[rs]\f[R] - may need to+be \[dq]regex-escaped\[dq] if you don\[aq]t want them to be interpreted+by hledger\[aq]s regular expression engine.+This is done by writing backslashes before them, but since backslash is+typically also a shell metacharacter, both shell-escaping and+regex-escaping will be needed.+Eg to match a literal \f[C]$\f[R] sign while using the bash shell:+.IP+.nf+\f[C]+$ hledger balance cur:\[aq]\[rs]$\[aq]+\f[R]+.fi+.PP+or:+.IP+.nf+\f[C]+$ hledger balance cur:\[rs]\[rs]$+\f[R]+.fi+.SS Triple escaping (for add-on commands)+.PP+When you use hledger to run an external add-on command (described+below), one level of shell-escaping is lost from any options or+arguments intended for by the add-on command, so those need an extra+level of shell-escaping.+Eg to match a literal \f[C]$\f[R] sign while using the bash shell and+running an add-on command (\f[C]ui\f[R]):+.IP+.nf+\f[C]+$ hledger ui cur:\[aq]\[rs]\[rs]$\[aq]+\f[R]+.fi+.PP+or:+.IP+.nf+\f[C]+$ hledger ui cur:\[rs]\[rs]\[rs]\[rs]$+\f[R]+.fi+.PP+If you wondered why \f[I]four\f[R] backslashes, perhaps this helps:+.PP+.TS+tab(@);+l l.+T{+unescaped:+T}@T{+\f[C]$\f[R]+T}+T{+escaped:+T}@T{+\f[C]\[rs]$\f[R]+T}+T{+double-escaped:+T}@T{+\f[C]\[rs]\[rs]$\f[R]+T}+T{+triple-escaped:+T}@T{+\f[C]\[rs]\[rs]\[rs]\[rs]$\f[R]+T}+.TE+.PP+Or, you can avoid the extra escaping by running the add-on executable+directly:+.IP+.nf+\f[C]+$ hledger-ui cur:\[rs]\[rs]$+\f[R]+.fi+.SS Less escaping+.PP+Options and arguments are sometimes used in places other than the shell+command line, where shell-escaping is not needed, so there you should+use one less level of escaping.+Those places include:+.IP \[bu] 2+an \[at]argumentfile+.IP \[bu] 2+hledger-ui\[aq]s filter field+.IP \[bu] 2+hledger-web\[aq]s search form+.IP \[bu] 2+GHCI\[aq]s prompt (used by developers).+.SS Unicode characters+.PP+hledger is expected to handle non-ascii characters correctly:+.IP \[bu] 2+they should be parsed correctly in input files and on the command line,+by all hledger tools (add, iadd, hledger-web\[aq]s search/add/edit+forms, etc.)+.IP \[bu] 2+they should be displayed correctly by all hledger tools, and on-screen+alignment should be preserved.+.PP+This requires a well-configured environment.+Here are some tips:+.IP \[bu] 2+A system locale must be configured, and it must be one that can decode+the characters being used.+In bash, you can set a locale like this:+\f[C]export LANG=en_US.UTF-8\f[R].+There are some more details in Troubleshooting.+This step is essential - without it, hledger will quit on encountering a+non-ascii character (as with all GHC-compiled programs).+.IP \[bu] 2+your terminal software (eg Terminal.app, iTerm, CMD.exe, xterm..) must+support unicode+.IP \[bu] 2+the terminal must be using a font which includes the required unicode+glyphs+.IP \[bu] 2+the terminal should be configured to display wide characters as double+width (for report alignment)+.IP \[bu] 2+on Windows, for best results you should run hledger in the same kind of+environment in which it was built.+Eg hledger built in the standard CMD.EXE environment (like the binaries+on our download page) might show display problems when run in a cygwin+or msys terminal, and vice versa.+(See eg #961).+.SS Regular expressions+.PP+hledger uses regular expressions in a number of places:+.IP \[bu] 2+query terms, on the command line and in the hledger-web search form:+\f[C]REGEX\f[R], \f[C]desc:REGEX\f[R], \f[C]cur:REGEX\f[R],+\f[C]tag:...=REGEX\f[R]+.IP \[bu] 2+CSV rules conditional blocks: \f[C]if REGEX ...\f[R]+.IP \[bu] 2+account alias directives and options:+\f[C]alias /REGEX/ = REPLACEMENT\f[R],+\f[C]--alias /REGEX/=REPLACEMENT\f[R]+.PP+hledger\[aq]s regular expressions come from the regex-tdfa library.+If they\[aq]re not doing what you expect, it\[aq]s important to know+exactly what they support:+.IP "1." 3+they are case insensitive+.IP "2." 3+they are infix matching (they do not need to match the entire thing+being matched)+.IP "3." 3+they are POSIX ERE (extended regular expressions)+.IP "4." 3+they also support GNU word boundaries (\f[C]\[rs]b\f[R],+\f[C]\[rs]B\f[R], \f[C]\[rs]<\f[R], \f[C]\[rs]>\f[R])+.IP "5." 3+they do not support backreferences; if you write \f[C]\[rs]1\f[R], it+will match the digit \f[C]1\f[R].+Except when doing text replacement, eg in account aliases, where+backreferences can be used in the replacement string to reference+capturing groups in the search regexp.+.IP "6." 3+they do not support mode modifiers (\f[C](?s)\f[R]), character classes+(\f[C]\[rs]w\f[R], \f[C]\[rs]d\f[R]), or anything else not mentioned+above.+.PP+Some things to note:+.IP \[bu] 2+In the \f[C]alias\f[R] directive and \f[C]--alias\f[R] option, regular+expressions must be enclosed in forward slashes (\f[C]/REGEX/\f[R]).+Elsewhere in hledger, these are not required.+.IP \[bu] 2+In queries, to match a regular expression metacharacter like \f[C]$\f[R]+as a literal character, prepend a backslash.+Eg to search for amounts with the dollar sign in hledger-web, write+\f[C]cur:\[rs]$\f[R].+.IP \[bu] 2+On the command line, some metacharacters like \f[C]$\f[R] have a special+meaning to the shell and so must be escaped at least once more.+See Special characters.+.SH ENVIRONMENT+.PP+\f[B]LEDGER_FILE\f[R] The journal file path when not specified with+\f[C]-f\f[R].+Default: \f[C]\[ti]/.hledger.journal\f[R] (on windows, perhaps+\f[C]C:/Users/USER/.hledger.journal\f[R]).+.PP+A typical value is \f[C]\[ti]/DIR/YYYY.journal\f[R], where DIR is a+version-controlled finance directory and YYYY is the current year.+Or \f[C]\[ti]/DIR/current.journal\f[R], where current.journal is a+symbolic link to YYYY.journal.+.PP+On Mac computers, you can set this and other environment variables in a+more thorough way that also affects applications started from the GUI+(say, an Emacs dock icon).+Eg on MacOS Catalina I have a \f[C]\[ti]/.MacOSX/environment.plist\f[R]+file containing+.IP+.nf+\f[C]+{+ \[dq]LEDGER_FILE\[dq] : \[dq]\[ti]/finance/current.journal\[dq]+}+\f[R]+.fi+.PP+To see the effect you may need to \f[C]killall Dock\f[R], or reboot.+.PP+\f[B]COLUMNS\f[R] The screen width used by the register command.+Default: the full terminal width.+.PP+\f[B]NO_COLOR\f[R] If this variable exists with any value, hledger will+not use ANSI color codes in terminal output.+This overrides the --color/--colour option.+.SH DATA FILES+.PP+hledger reads transactions from one or more data files.+The default data file is \f[C]$HOME/.hledger.journal\f[R] (or on+Windows, something like \f[C]C:/Users/USER/.hledger.journal\f[R]).+.PP+You can override this with the \f[C]$LEDGER_FILE\f[R] environment+variable:+.IP+.nf+\f[C]+$ setenv LEDGER_FILE \[ti]/finance/2016.journal+$ hledger stats+\f[R]+.fi+.PP+or with one or more \f[C]-f/--file\f[R] options:+.IP+.nf+\f[C]+$ hledger -f /some/file -f another_file stats+\f[R]+.fi+.PP+The file name \f[C]-\f[R] means standard input:+.IP+.nf+\f[C]+$ cat some.journal | hledger -f-+\f[R]+.fi+.SS Data formats+.PP+Usually the data file is in hledger\[aq]s journal format, but it can be+in any of the supported file formats, which currently are:+.PP+.TS+tab(@);+lw(7.8n) lw(39.5n) lw(22.7n).+T{+Reader:+T}@T{+Reads:+T}@T{+Used for file extensions:+T}+_+T{+\f[C]journal\f[R]+T}@T{+hledger journal files and some Ledger journals, for transactions+T}@T{+\f[C].journal\f[R] \f[C].j\f[R] \f[C].hledger\f[R] \f[C].ledger\f[R]+T}+T{+\f[C]timeclock\f[R]+T}@T{+timeclock files, for precise time logging+T}@T{+\f[C].timeclock\f[R]+T}+T{+\f[C]timedot\f[R]+T}@T{+timedot files, for approximate time logging+T}@T{+\f[C].timedot\f[R]+T}+T{+\f[C]csv\f[R]+T}@T{+comma/semicolon/tab/other-separated values, for data import+T}@T{+\f[C].csv\f[R] \f[C].ssv\f[R] \f[C].tsv\f[R]+T}+.TE+.PP+These formats are described in their own sections, below.+.PP+hledger detects the format automatically based on the file extensions+shown above.+If it can\[aq]t recognise the file extension, it assumes+\f[C]journal\f[R] format.+So for non-journal files, it\[aq]s important to use a recognised file+extension, so as to either read successfully or to show relevant error+messages.+.PP+You can also force a specific reader/format by prefixing the file path+with the format and a colon.+Eg, to read a .dat file as csv format:+.IP+.nf+\f[C]+$ hledger -f csv:/some/csv-file.dat stats+\f[R]+.fi+.PP+Or to read stdin (\f[C]-\f[R]) as timeclock format:+.IP+.nf+\f[C]+$ echo \[aq]i 2009/13/1 08:00:00\[aq] | hledger print -ftimeclock:-+\f[R]+.fi+.SS Multiple files+.PP+You can specify multiple \f[C]-f\f[R] options, to read multiple files as+one big journal.+There are some limitations with this:+.IP \[bu] 2+most directives do not affect sibling files+.IP \[bu] 2+balance assertions will not see any account balances from previous files+.PP+If you need either of those things, you can+.IP \[bu] 2+use a single parent file which includes the others+.IP \[bu] 2+or concatenate the files into one before reading, eg:+\f[C]cat a.journal b.journal | hledger -f- CMD\f[R].+.SS Strict mode+.PP+hledger checks input files for valid data.+By default, the most important errors are detected, while still+accepting easy journal files without a lot of declarations:+.IP \[bu] 2+Are the input files parseable, with valid syntax ?+.IP \[bu] 2+Are all transactions balanced ?+.IP \[bu] 2+Do all balance assertions pass ?+.PP+With the \f[C]-s\f[R]/\f[C]--strict\f[R] flag, additional checks are+performed:+.IP \[bu] 2+Are all accounts posted to, declared with an \f[C]account\f[R] directive+?+(Account error checking)+.IP \[bu] 2+Are all commodities declared with a \f[C]commodity\f[R] directive ?+(Commodity error checking)+.PP+See also: https://hledger.org/checking-for-errors.html+.PP+\f[I]experimental.\f[R]+.SH TIME PERIODS+.SS Smart dates+.PP+hledger\[aq]s user interfaces accept a flexible \[dq]smart date\[dq]+syntax.+Smart dates allow some english words, can be relative to today\[aq]s+date, and can have less-significant date parts omitted (defaulting to+1).+.PP+Examples:+.PP+.TS+tab(@);+lw(24.2n) lw(45.8n).+T{+\f[C]2004/10/1\f[R], \f[C]2004-01-01\f[R], \f[C]2004.9.1\f[R]+T}@T{+exact date, several separators allowed.+Year is 4+ digits, month is 1-12, day is 1-31+T}+T{+\f[C]2004\f[R]+T}@T{+start of year+T}+T{+\f[C]2004/10\f[R]+T}@T{+start of month+T}+T{+\f[C]10/1\f[R]+T}@T{+month and day in current year+T}+T{+\f[C]21\f[R]+T}@T{+day in current month+T}+T{+\f[C]october, oct\f[R]+T}@T{+start of month in current year+T}+T{+\f[C]yesterday, today, tomorrow\f[R]+T}@T{+-1, 0, 1 days from today+T}+T{+\f[C]last/this/next day/week/month/quarter/year\f[R]+T}@T{+-1, 0, 1 periods from the current period+T}+T{+\f[C]20181201\f[R]+T}@T{+8 digit YYYYMMDD with valid year month and day+T}+T{+\f[C]201812\f[R]+T}@T{+6 digit YYYYMM with valid year and month+T}+.TE+.PP+Counterexamples - malformed digit sequences might give surprising+results:+.PP+.TS+tab(@);+lw(11.4n) lw(58.6n).+T{+\f[C]201813\f[R]+T}@T{+6 digits with an invalid month is parsed as start of 6-digit year+T}+T{+\f[C]20181301\f[R]+T}@T{+8 digits with an invalid month is parsed as start of 8-digit year+T}+T{+\f[C]20181232\f[R]+T}@T{+8 digits with an invalid day gives an error+T}+T{+\f[C]201801012\f[R]+T}@T{+9+ digits beginning with a valid YYYYMMDD gives an error+T}+.TE+.SS Report start & end date+.PP+By default, most hledger reports will show the full span of time+represented by the journal data.+The report start date will be the earliest transaction or posting date,+and the report end date will be the latest transaction, posting, or+market price date.+.PP+Often you will want to see a shorter time span, such as the current+month.+You can specify a start and/or end date using \f[C]-b/--begin\f[R],+\f[C]-e/--end\f[R], \f[C]-p/--period\f[R] or a \f[C]date:\f[R] query+(described below).+All of these accept the smart date syntax.+.PP+Some notes:+.IP \[bu] 2+As in Ledger, end dates are exclusive, so you need to write the date+\f[I]after\f[R] the last day you want to include.+.IP \[bu] 2+As noted in reporting options: among start/end dates specified with+\f[I]options\f[R], the last (i.e.+right-most) option takes precedence.+.IP \[bu] 2+The effective report start and end dates are the intersection of the+start/end dates from options and that from \f[C]date:\f[R] queries.+That is, \f[C]date:2019-01 date:2019 -p\[aq]2000 to 2030\[aq]\f[R]+yields January 2019, the smallest common time span.+.PP+Examples:+.PP+.TS+tab(@);+lw(12.4n) lw(57.6n).+T{+\f[C]-b 2016/3/17\f[R]+T}@T{+begin on St.\ Patrick\[cq]s day 2016+T}+T{+\f[C]-e 12/1\f[R]+T}@T{+end at the start of december 1st of the current year (11/30 will be the+last date included)+T}+T{+\f[C]-b thismonth\f[R]+T}@T{+all transactions on or after the 1st of the current month+T}+T{+\f[C]-p thismonth\f[R]+T}@T{+all transactions in the current month+T}+T{+\f[C]date:2016/3/17..\f[R]+T}@T{+the above written as queries instead (\f[C]..\f[R] can also be replaced+with \f[C]-\f[R])+T}+T{+\f[C]date:..12/1\f[R]+T}@T{+T}+T{+\f[C]date:thismonth..\f[R]+T}@T{+T}+T{+\f[C]date:thismonth\f[R]+T}@T{+T}+.TE+.SS Report intervals+.PP+A report interval can be specified so that commands like register,+balance and activity will divide their reports into multiple subperiods.+The basic intervals can be selected with one of \f[C]-D/--daily\f[R],+\f[C]-W/--weekly\f[R], \f[C]-M/--monthly\f[R], \f[C]-Q/--quarterly\f[R],+or \f[C]-Y/--yearly\f[R].+More complex intervals may be specified with a period expression.+Report intervals can not be specified with a query.+.SS Period expressions+.PP+The \f[C]-p/--period\f[R] option accepts period expressions, a shorthand+way of expressing a start date, end date, and/or report interval all at+once.+.PP+Here\[aq]s a basic period expression specifying the first quarter of+2009.+Note, hledger always treats start dates as inclusive and end dates as+exclusive:+.PP+\f[C]-p \[dq]from 2009/1/1 to 2009/4/1\[dq]\f[R]+.PP+Keywords like \[dq]from\[dq] and \[dq]to\[dq] are optional, and so are+the spaces, as long as you don\[aq]t run two dates together.+\[dq]to\[dq] can also be written as \[dq]..\[dq] or \[dq]-\[dq].+These are equivalent to the above:+.PP+.TS+tab(@);+l.+T{+\f[C]-p \[dq]2009/1/1 2009/4/1\[dq]\f[R]+T}+T{+\f[C]-p2009/1/1to2009/4/1\f[R]+T}+T{+\f[C]-p2009/1/1..2009/4/1\f[R]+T}+.TE+.PP+Dates are smart dates, so if the current year is 2009, the above can+also be written as:+.PP+.TS+tab(@);+l.+T{+\f[C]-p \[dq]1/1 4/1\[dq]\f[R]+T}+T{+\f[C]-p \[dq]january-apr\[dq]\f[R]+T}+T{+\f[C]-p \[dq]this year to 4/1\[dq]\f[R]+T}+.TE+.PP+If you specify only one date, the missing start or end date will be the+earliest or latest transaction in your journal:+.PP+.TS+tab(@);+l l.+T{+\f[C]-p \[dq]from 2009/1/1\[dq]\f[R]+T}@T{+everything after january 1, 2009+T}+T{+\f[C]-p \[dq]from 2009/1\[dq]\f[R]+T}@T{+the same+T}+T{+\f[C]-p \[dq]from 2009\[dq]\f[R]+T}@T{+the same+T}+T{+\f[C]-p \[dq]to 2009\[dq]\f[R]+T}@T{+everything before january 1, 2009+T}+.TE+.PP+A single date with no \[dq]from\[dq] or \[dq]to\[dq] defines both the+start and end date like so:+.PP+.TS+tab(@);+l l.+T{+\f[C]-p \[dq]2009\[dq]\f[R]+T}@T{+the year 2009; equivalent to \[lq]2009/1/1 to 2010/1/1\[rq]+T}+T{+\f[C]-p \[dq]2009/1\[dq]\f[R]+T}@T{+the month of jan; equivalent to \[lq]2009/1/1 to 2009/2/1\[rq]+T}+T{+\f[C]-p \[dq]2009/1/1\[dq]\f[R]+T}@T{+just that day; equivalent to \[lq]2009/1/1 to 2009/1/2\[rq]+T}+.TE+.PP+Or you can specify a single quarter like so:+.PP+.TS+tab(@);+l l.+T{+\f[C]-p \[dq]2009Q1\[dq]\f[R]+T}@T{+first quarter of 2009, equivalent to \[lq]2009/1/1 to 2009/4/1\[rq]+T}+T{+\f[C]-p \[dq]q4\[dq]\f[R]+T}@T{+fourth quarter of the current year+T}+.TE+.PP+The argument of \f[C]-p\f[R] can also begin with, or be, a report+interval expression.+The basic report intervals are \f[C]daily\f[R], \f[C]weekly\f[R],+\f[C]monthly\f[R], \f[C]quarterly\f[R], or \f[C]yearly\f[R], which have+the same effect as the+\f[C]-D\f[R],\f[C]-W\f[R],\f[C]-M\f[R],\f[C]-Q\f[R], or \f[C]-Y\f[R]+flags.+Between report interval and start/end dates (if any), the word+\f[C]in\f[R] is optional.+Examples:+.PP+.TS+tab(@);+l.+T{+\f[C]-p \[dq]weekly from 2009/1/1 to 2009/4/1\[dq]\f[R]+T}+T{+\f[C]-p \[dq]monthly in 2008\[dq]\f[R]+T}+T{+\f[C]-p \[dq]quarterly\[dq]\f[R]+T}+.TE+.PP+Note that \f[C]weekly\f[R], \f[C]monthly\f[R], \f[C]quarterly\f[R] and+\f[C]yearly\f[R] intervals will always start on the first day on week,+month, quarter or year accordingly, and will end on the last day of same+period, even if associated period expression specifies different+explicit start and end date.+.PP+For example:+.PP+.TS+tab(@);+lw(25.5n) lw(44.5n).+T{+\f[C]-p \[dq]weekly from 2009/1/1 to 2009/4/1\[dq]\f[R]+T}@T{+starts on 2008/12/29, closest preceding Monday+T}+T{+\f[C]-p \[dq]monthly in 2008/11/25\[dq]\f[R]+T}@T{+starts on 2018/11/01+T}+T{+\f[C]-p \[dq]quarterly from 2009-05-05 to 2009-06-01\[dq]\f[R]+T}@T{+starts on 2009/04/01, ends on 2009/06/30, which are first and last days+of Q2 2009+T}+T{+\f[C]-p \[dq]yearly from 2009-12-29\[dq]\f[R]+T}@T{+starts on 2009/01/01, first day of 2009+T}+.TE+.PP+The following more complex report intervals are also supported:+\f[C]biweekly\f[R], \f[C]fortnightly\f[R], \f[C]bimonthly\f[R],+\f[C]every day|week|month|quarter|year\f[R],+\f[C]every N days|weeks|months|quarters|years\f[R].+.PP+All of these will start on the first day of the requested period and end+on the last one, as described above.+.PP+Examples:+.PP+.TS+tab(@);+lw(25.5n) lw(44.5n).+T{+\f[C]-p \[dq]bimonthly from 2008\[dq]\f[R]+T}@T{+periods will have boundaries on 2008/01/01, 2008/03/01, ...+T}+T{+\f[C]-p \[dq]every 2 weeks\[dq]\f[R]+T}@T{+starts on closest preceding Monday+T}+T{+\f[C]-p \[dq]every 5 month from 2009/03\[dq]\f[R]+T}@T{+periods will have boundaries on 2009/03/01, 2009/08/01, ...+T}+.TE+.PP+If you want intervals that start on arbitrary day of your choosing and+span a week, month or year, you need to use any of the following:+.PP+\f[C]every Nth day of week\f[R], \f[C]every WEEKDAYNAME\f[R] (eg+\f[C]mon|tue|wed|thu|fri|sat|sun\f[R]),+\f[C]every Nth day [of month]\f[R],+\f[C]every Nth WEEKDAYNAME [of month]\f[R],+\f[C]every MM/DD [of year]\f[R], \f[C]every Nth MMM [of year]\f[R],+\f[C]every MMM Nth [of year]\f[R].+.PP+Examples:+.PP+.TS+tab(@);+lw(23.9n) lw(46.1n).+T{+\f[C]-p \[dq]every 2nd day of week\[dq]\f[R]+T}@T{+periods will go from Tue to Tue+T}+T{+\f[C]-p \[dq]every Tue\[dq]\f[R]+T}@T{+same+T}+T{+\f[C]-p \[dq]every 15th day\[dq]\f[R]+T}@T{+period boundaries will be on 15th of each month+T}+T{+\f[C]-p \[dq]every 2nd Monday\[dq]\f[R]+T}@T{+period boundaries will be on second Monday of each month+T}+T{+\f[C]-p \[dq]every 11/05\[dq]\f[R]+T}@T{+yearly periods with boundaries on 5th of Nov+T}+T{+\f[C]-p \[dq]every 5th Nov\[dq]\f[R]+T}@T{+same+T}+T{+\f[C]-p \[dq]every Nov 5th\[dq]\f[R]+T}@T{+same+T}+.TE+.PP+Show historical balances at end of 15th each month (N is exclusive end+date):+.PP+\f[C]hledger balance -H -p \[dq]every 16th day\[dq]\f[R]+.PP+Group postings from start of wednesday to end of next tuesday (N is+start date and exclusive end date):+.PP+\f[C]hledger register checking -p \[dq]every 3rd day of week\[dq]\f[R]+.SH DEPTH+.PP+With the \f[C]--depth N\f[R] option (short form: \f[C]-N\f[R]), commands+like account, balance and register will show only the uppermost accounts+in the account tree, down to level N.+Use this when you want a summary with less detail.+This flag has the same effect as a \f[C]depth:\f[R] query argument (so+\f[C]-2\f[R], \f[C]--depth=2\f[R] or \f[C]depth:2\f[R] are equivalent).+.SH QUERIES+.PP+One of hledger\[aq]s strengths is being able to quickly report on+precise subsets of your data.+Most commands accept an optional query expression, written as arguments+after the command name, to filter the data by date, account name or+other criteria.+The syntax is similar to a web search: one or more space-separated+search terms, quotes to enclose whitespace, prefixes to match specific+fields, a not: prefix to negate the match.+.PP+We do not yet support arbitrary boolean combinations of search terms;+instead most commands show transactions/postings/accounts which match+(or negatively match):+.IP \[bu] 2+any of the description terms AND+.IP \[bu] 2+any of the account terms AND+.IP \[bu] 2+any of the status terms AND+.IP \[bu] 2+all the other terms.+.PP+The print command instead shows transactions which:+.IP \[bu] 2+match any of the description terms AND+.IP \[bu] 2+have any postings matching any of the positive account terms AND+.IP \[bu] 2+have no postings matching any of the negative account terms AND+.IP \[bu] 2+match all the other terms.+.PP+The following kinds of search terms can be used.+Remember these can also be prefixed with \f[B]\f[CB]not:\f[B]\f[R], eg+to exclude a particular subaccount.+.TP+\f[B]\f[R]\f[C]REGEX\f[R]\f[B], \f[R]\f[C]acct:REGEX\f[R]\f[B]\f[R]+match account names by this regular expression.+(With no prefix, \f[C]acct:\f[R] is assumed.)+same as above+.TP+\f[B]\f[R]\f[C]amt:N, amt:<N, amt:<=N, amt:>N, amt:>=N\f[R]\f[B]\f[R]+match postings with a single-commodity amount that is equal to, less+than, or greater than N.+(Multi-commodity amounts are not tested, and will always match.) The+comparison has two modes: if N is preceded by a + or - sign (or is 0),+the two signed numbers are compared.+Otherwise, the absolute magnitudes are compared, ignoring sign.+.TP+\f[B]\f[R]\f[C]code:REGEX\f[R]\f[B]\f[R]+match by transaction code (eg check number)+.TP+\f[B]\f[R]\f[C]cur:REGEX\f[R]\f[B]\f[R]+match postings or transactions including any amounts whose+currency/commodity symbol is fully matched by REGEX.+(For a partial match, use \f[C].*REGEX.*\f[R]).+Note, to match characters which are regex-significant, like the dollar+sign (\f[C]$\f[R]), you need to prepend \f[C]\[rs]\f[R].+And when using the command line you need to add one more level of+quoting to hide it from the shell, so eg do:+\f[C]hledger print cur:\[aq]\[rs]$\[aq]\f[R] or+\f[C]hledger print cur:\[rs]\[rs]$\f[R].+.TP+\f[B]\f[R]\f[C]desc:REGEX\f[R]\f[B]\f[R]+match transaction descriptions.+.TP+\f[B]\f[R]\f[C]date:PERIODEXPR\f[R]\f[B]\f[R]+match dates within the specified period.+PERIODEXPR is a period expression (with no report interval).+Examples: \f[C]date:2016\f[R], \f[C]date:thismonth\f[R],+\f[C]date:2000/2/1-2/15\f[R], \f[C]date:lastweek-\f[R].+If the \f[C]--date2\f[R] command line flag is present, this matches+secondary dates instead.+.TP+\f[B]\f[R]\f[C]date2:PERIODEXPR\f[R]\f[B]\f[R]+match secondary dates within the specified period.+.TP+\f[B]\f[R]\f[C]depth:N\f[R]\f[B]\f[R]+match (or display, depending on command) accounts at or above this depth+.TP+\f[B]\f[R]\f[C]note:REGEX\f[R]\f[B]\f[R]+match transaction notes (part of description right of \f[C]|\f[R], or+whole description when there\[aq]s no \f[C]|\f[R])+.TP+\f[B]\f[R]\f[C]payee:REGEX\f[R]\f[B]\f[R]+match transaction payee/payer names (part of description left of+\f[C]|\f[R], or whole description when there\[aq]s no \f[C]|\f[R])+.TP+\f[B]\f[R]\f[C]real:, real:0\f[R]\f[B]\f[R]+match real or virtual postings respectively+.TP+\f[B]\f[R]\f[C]status:, status:!, status:*\f[R]\f[B]\f[R]+match unmarked, pending, or cleared transactions respectively+.TP+\f[B]\f[R]\f[C]tag:REGEX[=REGEX]\f[R]\f[B]\f[R]+match by tag name, and optionally also by tag value.+Note a tag: query is considered to match a transaction if it matches any+of the postings.+Also remember that postings inherit the tags of their parent+transaction.+.PP+The following special search term is used automatically in hledger-web,+only:+.TP+\f[B]\f[R]\f[C]inacct:ACCTNAME\f[R]\f[B]\f[R]+tells hledger-web to show the transaction register for this account.+Can be filtered further with \f[C]acct\f[R] etc.+.PP+Some of these can also be expressed as command-line options (eg+\f[C]depth:2\f[R] is equivalent to \f[C]--depth 2\f[R]).+Generally you can mix options and query arguments, and the resulting+query will be their intersection (perhaps excluding the+\f[C]-p/--period\f[R] option).+.SH COSTING+.PP+The \f[C]-B/--cost\f[R] flag converts amounts to their cost or sale+amount at transaction time, if they have a transaction price specified.+If this flag is supplied, hledger will perform cost conversion first,+and will apply any market price valuations (if requested) afterwards.+.SH VALUATION+.PP+Instead of reporting amounts in their original commodity, hledger can+convert them to cost/sale amount (using the conversion rate recorded in+the transaction), and/or to market value (using some market price on a+certain date).+This is controlled by the \f[C]--value=TYPE[,COMMODITY]\f[R] option,+which will be described below.+We also provide the simpler \f[C]-V\f[R] and \f[C]-X COMMODITY\f[R]+options, and often one of these is all you need:+.SS -V: Value+.PP+The \f[C]-V/--market\f[R] flag converts amounts to market value in their+default \f[I]valuation commodity\f[R], using the market prices in effect+on the \f[I]valuation date(s)\f[R], if any.+More on these in a minute.+.SS -X: Value in specified commodity+.PP+The \f[C]-X/--exchange=COMM\f[R] option is like \f[C]-V\f[R], except you+tell it which currency you want to convert to, and it tries to convert+everything to that.+.SS Valuation date+.PP+Since market prices can change from day to day, market value reports+have a valuation date (or more than one), which determines which market+prices will be used.+.PP+For single period reports, if an explicit report end date is specified,+that will be used as the valuation date; otherwise the valuation date is+the journal\[aq]s end date.+.PP+For multiperiod reports, each column/period is valued on the last day of+the period, by default.+.SS Market prices+.PP+To convert a commodity A to its market value in another commodity B,+hledger looks for a suitable market price (exchange rate) as follows, in+this order of preference :+.IP "1." 3+A \f[I]declared market price\f[R] or \f[I]inferred market price\f[R]:+A\[aq]s latest market price in B on or before the valuation date as+declared by a P directive, or (with the \f[C]--infer-market-price\f[R]+flag) inferred from transaction prices.+.IP "2." 3+A \f[I]reverse market price\f[R]: the inverse of a declared or inferred+market price from B to A.+.IP "3." 3+A \f[I]forward chain of market prices\f[R]: a synthetic price formed by+combining the shortest chain of \[dq]forward\[dq] (only 1 above) market+prices, leading from A to B.+.IP "4." 3+\f[I]Any chain of market prices\f[R]: a chain of any market prices,+including both forward and reverse prices (1 and 2 above), leading from+A to B.+.PP+There is a limit to the length of these price chains; if hledger reaches+that length without finding a complete chain or exhausting all+possibilities, it will give up (with a \[dq]gave up\[dq] message visible+in \f[C]--debug=2\f[R] output).+That limit is currently 1000.+.PP+Amounts for which no suitable market price can be found, are not+converted.+.SS --infer-market-price: market prices from transactions+.PP+Normally, market value in hledger is fully controlled by, and requires,+P directives in your journal.+Since adding and updating those can be a chore, and since transactions+usually take place at close to market value, why not use the recorded+transaction prices as additional market prices (as Ledger does) ?+We could produce value reports without needing P directives at all.+.PP+Adding the \f[C]--infer-market-price\f[R] flag to \f[C]-V\f[R],+\f[C]-X\f[R] or \f[C]--value\f[R] enables this.+So for example, \f[C]hledger bs -V --infer-market-price\f[R] will get+market prices both from P directives and from transactions.+(And if both occur on the same day, the P directive takes precedence).+.PP+There is a downside: value reports can sometimes be affected in+confusing/undesired ways by your journal entries.+If this happens to you, read all of this Valuation section carefully,+and try adding \f[C]--debug\f[R] or \f[C]--debug=2\f[R] to troubleshoot.+.PP+\f[C]--infer-market-price\f[R] can infer market prices from:+.IP \[bu] 2+multicommodity transactions with explicit prices+(\f[C]\[at]\f[R]/\f[C]\[at]\[at]\f[R])+.IP \[bu] 2+multicommodity transactions with implicit prices (no \f[C]\[at]\f[R],+two commodities, unbalanced).+(With these, the order of postings matters.+\f[C]hledger print -x\f[R] can be useful for troubleshooting.)+.IP \[bu] 2+but not, currently, from \[dq]more correct\[dq] multicommodity+transactions (no \f[C]\[at]\f[R], multiple commodities, balanced).+.SS Valuation commodity+.PP+\f[B]When you specify a valuation commodity (\f[CB]-X COMM\f[B] or+\f[CB]--value TYPE,COMM\f[B]):\f[R]+.PD 0+.P+.PD+hledger will convert all amounts to COMM, wherever it can find a+suitable market price (including by reversing or chaining prices).+.PP+\f[B]When you leave the valuation commodity unspecified (\f[CB]-V\f[B]+or \f[CB]--value TYPE\f[B]):\f[R]+.PD 0+.P+.PD+For each commodity A, hledger picks a default valuation commodity as+follows, in this order of preference:+.IP "1." 3+The price commodity from the latest P-declared market price for A on or+before valuation date.+.IP "2." 3+The price commodity from the latest P-declared market price for A on any+date.+(Allows conversion to proceed when there are inferred prices before the+valuation date.)+.IP "3." 3+If there are no P directives at all (any commodity or date) and the+\f[C]--infer-market-price\f[R] flag is used: the price commodity from+the latest transaction-inferred price for A on or before valuation date.+.PP+This means:+.IP \[bu] 2+If you have P directives, they determine which commodities \f[C]-V\f[R]+will convert, and to what.+.IP \[bu] 2+If you have no P directives, and use the \f[C]--infer-market-price\f[R]+flag, transaction prices determine it.+.PP+Amounts for which no valuation commodity can be found are not converted.+.SS Simple valuation examples+.PP+Here are some quick examples of \f[C]-V\f[R]:+.IP+.nf+\f[C]+; one euro is worth this many dollars from nov 1+P 2016/11/01 \[Eu] $1.10++; purchase some euros on nov 3+2016/11/3+ assets:euros \[Eu]100+ assets:checking++; the euro is worth fewer dollars by dec 21+P 2016/12/21 \[Eu] $1.03+\f[R]+.fi+.PP+How many euros do I have ?+.IP+.nf+\f[C]+$ hledger -f t.j bal -N euros+ \[Eu]100 assets:euros+\f[R]+.fi+.PP+What are they worth at end of nov 3 ?+.IP+.nf+\f[C]+$ hledger -f t.j bal -N euros -V -e 2016/11/4+ $110.00 assets:euros+\f[R]+.fi+.PP+What are they worth after 2016/12/21 ?+(no report end date specified, defaults to today)+.IP+.nf+\f[C]+$ hledger -f t.j bal -N euros -V+ $103.00 assets:euros+\f[R]+.fi+.SS --value: Flexible valuation+.PP+\f[C]-V\f[R] and \f[C]-X\f[R] are special cases of the more general+\f[C]--value\f[R] option:+.IP+.nf+\f[C]+ --value=TYPE[,COMM] TYPE is then, end, now or YYYY-MM-DD.+ COMM is an optional commodity symbol.+ Shows amounts converted to:+ - default valuation commodity (or COMM) using market prices at posting dates+ - default valuation commodity (or COMM) using market prices at period end(s)+ - default valuation commodity (or COMM) using current market prices+ - default valuation commodity (or COMM) using market prices at some date+\f[R]+.fi+.PP+The TYPE part selects cost or value and valuation date:+.TP+\f[B]\f[CB]--value=then\f[B]\f[R]+Convert amounts to their value in the default valuation commodity, using+market prices on each posting\[aq]s date.+.TP+\f[B]\f[CB]--value=end\f[B]\f[R]+Convert amounts to their value in the default valuation commodity, using+market prices on the last day of the report period (or if unspecified,+the journal\[aq]s end date); or in multiperiod reports, market prices on+the last day of each subperiod.+.TP+\f[B]\f[CB]--value=now\f[B]\f[R]+Convert amounts to their value in the default valuation commodity using+current market prices (as of when report is generated).+.TP+\f[B]\f[CB]--value=YYYY-MM-DD\f[B]\f[R]+Convert amounts to their value in the default valuation commodity using+market prices on this date.+.PP+To select a different valuation commodity, add the optional+\f[C],COMM\f[R] part: a comma, then the target commodity\[aq]s symbol.+Eg: \f[B]\f[CB]--value=now,EUR\f[B]\f[R].+hledger will do its best to convert amounts to this commodity, deducing+market prices as described above.+.SS More valuation examples+.PP+Here are some examples showing the effect of \f[C]--value\f[R], as seen+with \f[C]print\f[R]:+.IP+.nf+\f[C]+P 2000-01-01 A 1 B+P 2000-02-01 A 2 B+P 2000-03-01 A 3 B+P 2000-04-01 A 4 B++2000-01-01+ (a) 1 A \[at] 5 B++2000-02-01+ (a) 1 A \[at] 6 B++2000-03-01+ (a) 1 A \[at] 7 B+\f[R]+.fi+.PP+Show the cost of each posting:+.IP+.nf+\f[C]+$ hledger -f- print --cost+2000-01-01+ (a) 5 B++2000-02-01+ (a) 6 B++2000-03-01+ (a) 7 B+\f[R]+.fi+.PP+Show the value as of the last day of the report period (2000-02-29):+.IP+.nf+\f[C]+$ hledger -f- print --value=end date:2000/01-2000/03+2000-01-01+ (a) 2 B++2000-02-01+ (a) 2 B+\f[R]+.fi+.PP+With no report period specified, that shows the value as of the last day+of the journal (2000-03-01):+.IP+.nf+\f[C]+$ hledger -f- print --value=end+2000-01-01+ (a) 3 B++2000-02-01+ (a) 3 B++2000-03-01+ (a) 3 B+\f[R]+.fi+.PP+Show the current value (the 2000-04-01 price is still in effect today):+.IP+.nf+\f[C]+$ hledger -f- print --value=now+2000-01-01+ (a) 4 B++2000-02-01+ (a) 4 B++2000-03-01+ (a) 4 B+\f[R]+.fi+.PP+Show the value on 2000/01/15:+.IP+.nf+\f[C]+$ hledger -f- print --value=2000-01-15+2000-01-01+ (a) 1 B++2000-02-01+ (a) 1 B++2000-03-01+ (a) 1 B+\f[R]+.fi+.PP+You may need to explicitly set a commodity\[aq]s display style, when+reverse prices are used.+Eg this output might be surprising:+.IP+.nf+\f[C]+P 2000-01-01 A 2B++2000-01-01+ a 1B+ b+\f[R]+.fi+.IP+.nf+\f[C]+$ hledger print -x -X A+2000-01-01+ a 0+ b 0+\f[R]+.fi+.PP+Explanation: because there\[aq]s no amount or commodity directive+specifying a display style for A, 0.5A gets the default style, which+shows no decimal digits.+Because the displayed amount looks like zero, the commodity symbol and+minus sign are not displayed either.+Adding a commodity directive sets a more useful display style for A:+.IP+.nf+\f[C]+P 2000-01-01 A 2B+commodity 0.00A++2000-01-01+ a 1B+ b+\f[R]+.fi+.IP+.nf+\f[C]+$ hledger print -X A+2000-01-01+ a 0.50A+ b -0.50A+\f[R]+.fi+.SS Effect of valuation on reports+.PP+Here is a reference for how valuation is supposed to affect each part of+hledger\[aq]s reports (and a glossary).+(It\[aq]s wide, you\[aq]ll have to scroll sideways.) It may be useful+when troubleshooting.+If you find problems, please report them, ideally with a reproducible+example.+Related: #329, #1083.+.PP+.TS+tab(@);+lw(9.5n) lw(11.8n) lw(12.0n) lw(17.2n) lw(12.0n) lw(7.4n).+T{+Report type+T}@T{+\f[C]-B\f[R], \f[C]--cost\f[R]+T}@T{+\f[C]-V\f[R], \f[C]-X\f[R]+T}@T{+\f[C]--value=then\f[R]+T}@T{+\f[C]--value=end\f[R]+T}@T{+\f[C]--value=DATE\f[R], \f[C]--value=now\f[R]+T}+_+T{+\f[B]print\f[R]+T}@T{+T}@T{+T}@T{+T}@T{+T}@T{+T}+T{+posting amounts+T}@T{+cost+T}@T{+value at report end or today+T}@T{+value at posting date+T}@T{+value at report or journal end+T}@T{+value at DATE/today+T}+T{+balance assertions/assignments+T}@T{+unchanged+T}@T{+unchanged+T}@T{+unchanged+T}@T{+unchanged+T}@T{+unchanged+T}+T{+T}@T{+T}@T{+T}@T{+T}@T{+T}@T{+T}+T{+\f[B]register\f[R]+T}@T{+T}@T{+T}@T{+T}@T{+T}@T{+T}+T{+starting balance (-H)+T}@T{+cost+T}@T{+value at day before report or journal start+T}@T{+valued at day each historical posting was made+T}@T{+value at day before report or journal start+T}@T{+value at DATE/today+T}+T{+posting amounts+T}@T{+cost+T}@T{+value at report end or today+T}@T{+value at posting date+T}@T{+value at report or journal end+T}@T{+value at DATE/today+T}+T{+summary posting amounts with report interval+T}@T{+summarised cost+T}@T{+value at period ends+T}@T{+sum of postings in interval, valued at interval start+T}@T{+value at period ends+T}@T{+value at DATE/today+T}+T{+running total/average+T}@T{+sum/average of displayed values+T}@T{+sum/average of displayed values+T}@T{+sum/average of displayed values+T}@T{+sum/average of displayed values+T}@T{+sum/average of displayed values+T}+T{+T}@T{+T}@T{+T}@T{+T}@T{+T}@T{+T}+T{+\f[B]balance (bs, bse, cf, is)\f[R]+T}@T{+T}@T{+T}@T{+T}@T{+T}@T{+T}+T{+balance changes+T}@T{+sums of costs+T}@T{+value at report end or today of sums of postings+T}@T{+value at posting date+T}@T{+value at report or journal end of sums of postings+T}@T{+value at DATE/today of sums of postings+T}+T{+budget amounts (--budget)+T}@T{+like balance changes+T}@T{+like balance changes+T}@T{+like balance changes+T}@T{+like balances+T}@T{+like balance changes+T}+T{+grand total+T}@T{+sum of displayed values+T}@T{+sum of displayed values+T}@T{+sum of displayed valued+T}@T{+sum of displayed values+T}@T{+sum of displayed values+T}+T{+T}@T{+T}@T{+T}@T{+T}@T{+T}@T{+T}+T{+\f[B]balance (bs, bse, cf, is) with report interval\f[R]+T}@T{+T}@T{+T}@T{+T}@T{+T}@T{+T}+T{+starting balances (-H)+T}@T{+sums of costs of postings before report start+T}@T{+value at report start of sums of all postings before report start+T}@T{+sums of values of postings before report start at respective posting+dates+T}@T{+value at report start of sums of all postings before report start+T}@T{+sums of postings before report start+T}+T{+balance changes (bal, is, bs --change, cf --change)+T}@T{+sums of costs of postings in period+T}@T{+same as --value=end+T}@T{+sums of values of postings in period at respective posting dates+T}@T{+balance change in each period, valued at period ends+T}@T{+value at DATE/today of sums of postings+T}+T{+end balances (bal -H, is --H, bs, cf)+T}@T{+sums of costs of postings from before report start to period end+T}@T{+same as --value=end+T}@T{+sums of values of postings from before period start to period end at+respective posting dates+T}@T{+period end balances, valued at period ends+T}@T{+value at DATE/today of sums of postings+T}+T{+budget amounts (--budget)+T}@T{+like balance changes/end balances+T}@T{+like balance changes/end balances+T}@T{+like balance changes/end balances+T}@T{+like balances+T}@T{+like balance changes/end balances+T}+T{+row totals, row averages (-T, -A)+T}@T{+sums, averages of displayed values+T}@T{+sums, averages of displayed values+T}@T{+sums, averages of displayed values+T}@T{+sums, averages of displayed values+T}@T{+sums, averages of displayed values+T}+T{+column totals+T}@T{+sums of displayed values+T}@T{+sums of displayed values+T}@T{+sums of displayed values+T}@T{+sums of displayed values+T}@T{+sums of displayed values+T}+T{+grand total, grand average+T}@T{+sum, average of column totals+T}@T{+sum, average of column totals+T}@T{+sum, average of column totals+T}@T{+sum, average of column totals+T}@T{+sum, average of column totals+T}+T{+T}@T{+T}@T{+T}@T{+T}@T{+T}@T{+T}+.TE+.PP+\f[C]--cumulative\f[R] is omitted to save space, it works like+\f[C]-H\f[R] but with a zero starting balance.+.PP+\f[B]Glossary:\f[R]+.TP+\f[I]cost\f[R]+calculated using price(s) recorded in the transaction(s).+.TP+\f[I]value\f[R]+market value using available market price declarations, or the unchanged+amount if no conversion rate can be found.+.TP+\f[I]report start\f[R]+the first day of the report period specified with -b or -p or date:,+otherwise today.+.TP+\f[I]report or journal start\f[R]+the first day of the report period specified with -b or -p or date:,+otherwise the earliest transaction date in the journal, otherwise today.+.TP+\f[I]report end\f[R]+the last day of the report period specified with -e or -p or date:,+otherwise today.+.TP+\f[I]report or journal end\f[R]+the last day of the report period specified with -e or -p or date:,+otherwise the latest transaction date in the journal, otherwise today.+.TP+\f[I]report interval\f[R]+a flag (-D/-W/-M/-Q/-Y) or period expression that activates the+report\[aq]s multi-period mode (whether showing one or many subperiods).+.SH PIVOTING+.PP+Normally hledger sums amounts, and organizes them in a hierarchy, based+on account name.+The \f[C]--pivot FIELD\f[R] option causes it to sum and organize+hierarchy based on the value of some other field instead.+FIELD can be: \f[C]code\f[R], \f[C]description\f[R], \f[C]payee\f[R],+\f[C]note\f[R], or the full name (case insensitive) of any tag.+As with account names, values containing \f[C]colon:separated:parts\f[R]+will be displayed hierarchically in reports.+.PP+\f[C]--pivot\f[R] is a general option affecting all reports; you can+think of hledger transforming the journal before any other processing,+replacing every posting\[aq]s account name with the value of the+specified field on that posting, inheriting it from the transaction or+using a blank value if it\[aq]s not present.+.PP+An example:+.IP+.nf+\f[C]+2016/02/16 Member Fee Payment+ assets:bank account 2 EUR+ income:member fees -2 EUR ; member: John Doe+\f[R]+.fi+.PP+Normal balance report showing account names:+.IP+.nf+\f[C]+$ hledger balance+ 2 EUR assets:bank account+ -2 EUR income:member fees+--------------------+ 0+\f[R]+.fi+.PP+Pivoted balance report, using member: tag values instead:+.IP+.nf+\f[C]+$ hledger balance --pivot member+ 2 EUR+ -2 EUR John Doe+--------------------+ 0+\f[R]+.fi+.PP+One way to show only amounts with a member: value (using a query,+described below):+.IP+.nf+\f[C]+$ hledger balance --pivot member tag:member=.+ -2 EUR John Doe+--------------------+ -2 EUR+\f[R]+.fi+.PP+Another way (the acct: query matches against the pivoted \[dq]account+name\[dq]):+.IP+.nf+\f[C]+$ hledger balance --pivot member acct:.+ -2 EUR John Doe+--------------------+ -2 EUR+\f[R]+.fi+.SH OUTPUT+.SS Output destination+.PP+hledger commands send their output to the terminal by default.+You can of course redirect this, eg into a file, using standard shell+syntax:+.IP+.nf+\f[C]+$ hledger print > foo.txt+\f[R]+.fi+.PP+Some commands (print, register, stats, the balance commands) also+provide the \f[C]-o/--output-file\f[R] option, which does the same thing+without needing the shell.+Eg:+.IP+.nf+\f[C]+$ hledger print -o foo.txt+$ hledger print -o - # write to stdout (the default)+\f[R]+.fi+.SS Output format+.PP+Some commands (print, register, the balance commands) offer a choice of+output format.+In addition to the usual plain text format (\f[C]txt\f[R]), there are+CSV (\f[C]csv\f[R]), HTML (\f[C]html\f[R]), JSON (\f[C]json\f[R]) and+SQL (\f[C]sql\f[R]).+This is controlled by the \f[C]-O/--output-format\f[R] option:+.IP+.nf+\f[C]+$ hledger print -O csv+\f[R]+.fi+.PP+or, by a file extension specified with \f[C]-o/--output-file\f[R]:+.IP+.nf+\f[C]+$ hledger balancesheet -o foo.html # write HTML to foo.html+\f[R]+.fi+.PP+The \f[C]-O\f[R] option can be used to override the file extension if+needed:+.IP+.nf+\f[C]+$ hledger balancesheet -o foo.txt -O html # write HTML to foo.txt+\f[R]+.fi+.PP+Some notes about JSON output:+.IP \[bu] 2+This feature is marked experimental, and not yet much used; you should+expect our JSON to evolve.+Real-world feedback is welcome.+.IP \[bu] 2+Our JSON is rather large and verbose, as it is quite a faithful+representation of hledger\[aq]s internal data types.+To understand the JSON, read the Haskell type definitions, which are+mostly in+https://github.com/simonmichael/hledger/blob/master/hledger-lib/Hledger/Data/Types.hs.+.IP \[bu] 2+hledger represents quantities as Decimal values storing up to 255+significant digits, eg for repeating decimals.+Such numbers can arise in practice (from automatically-calculated+transaction prices), and would break most JSON consumers.+So in JSON, we show quantities as simple Numbers with at most 10 decimal+places.+We don\[aq]t limit the number of integer digits, but that part is under+your control.+We hope this approach will not cause problems in practice; if you find+otherwise, please let us know.+(Cf #1195)+.PP+Notes about SQL output:+.IP \[bu] 2+SQL output is also marked experimental, and much like JSON could use+real-world feedback.+.IP \[bu] 2+SQL output is expected to work with sqlite, MySQL and PostgreSQL+.IP \[bu] 2+SQL output is structured with the expectations that statements will be+executed in the empty database.+If you already have tables created via SQL output of hledger, you would+probably want to either clear tables of existing data (via+\f[C]delete\f[R] or \f[C]truncate\f[R] SQL statements) or drop tables+completely as otherwise your postings will be duped.+.SH COMMANDS+.PP+hledger provides a number of commands for producing reports and managing+your data.+Run \f[C]hledger\f[R] with no arguments to list the commands available,+and \f[C]hledger CMD\f[R] to run a command.+CMD can be the full command name, or its standard abbreviation shown in+the commands list, or any unambiguous prefix of the name.+Eg: \f[C]hledger bal\f[R].+.PP+Here are the built-in commands, with the most often-used in bold:+.PP+\f[B]Data entry:\f[R]+.PP+These data entry commands are the only ones which can modify your+journal file.+.IP \[bu] 2+\f[B]add\f[R] - add transactions using guided prompts+.IP \[bu] 2+\f[B]import\f[R] - add any new transactions from other files (eg csv)+.PP+\f[B]Data management:\f[R]+.IP \[bu] 2+check - check for various kinds of issue in the data+.IP \[bu] 2+close (equity) - generate balance-resetting transactions+.IP \[bu] 2+diff - compare account transactions in two journal files+.IP \[bu] 2+rewrite - generate extra postings, similar to print --auto+.PP+\f[B]Financial statements:\f[R]+.IP \[bu] 2+\f[B]aregister (areg)\f[R] - show transactions in a particular account+.IP \[bu] 2+\f[B]balancesheet (bs)\f[R] - show assets, liabilities and net worth+.IP \[bu] 2+balancesheetequity (bse) - show assets, liabilities and equity+.IP \[bu] 2+cashflow (cf) - show changes in liquid assets+.IP \[bu] 2+\f[B]incomestatement (is)\f[R] - show revenues and expenses+.IP \[bu] 2+roi - show return on investments+.PP+\f[B]Miscellaneous reports:\f[R]+.IP \[bu] 2+accounts - show account names+.IP \[bu] 2+activity - show postings-per-interval bar charts+.IP \[bu] 2+\f[B]balance (bal)\f[R] - show balance changes/end balances/budgets in+any accounts+.IP \[bu] 2+codes - show transaction codes+.IP \[bu] 2+commodities - show commodity/currency symbols+.IP \[bu] 2+descriptions - show unique transaction descriptions+.IP \[bu] 2+files - show input file paths+.IP \[bu] 2+help - show hledger user manuals in several formats+.IP \[bu] 2+notes - show unique note segments of transaction descriptions+.IP \[bu] 2+payees - show unique payee segments of transaction descriptions+.IP \[bu] 2+prices - show market price records+.IP \[bu] 2+\f[B]print\f[R] - show transactions (journal entries)+.IP \[bu] 2+print-unique - show only transactions with unique descriptions+.IP \[bu] 2+\f[B]register (reg)\f[R] - show postings in one or more accounts &+running total+.IP \[bu] 2+register-match - show a recent posting that best matches a description+.IP \[bu] 2+stats - show journal statistics+.IP \[bu] 2+tags - show tag names+.IP \[bu] 2+test - run self tests+.PP+\f[B]Add-on commands:\f[R]+.PP+Programs or scripts named \f[C]hledger-SOMETHING\f[R] in your PATH are+add-on commands; these appear in the commands list with a \f[C]+\f[R]+mark.+Two of these are maintained and released with hledger:+.IP \[bu] 2+\f[B]ui\f[R] - an efficient terminal interface (TUI) for hledger+.IP \[bu] 2+\f[B]web\f[R] - a simple web interface (WUI) for hledger+.PP+And these add-ons are maintained separately:+.IP \[bu] 2+iadd - a more interactive alternative for the add command+.IP \[bu] 2+interest - generates interest transactions according to various schemes+.IP \[bu] 2+stockquotes - downloads market prices for your commodities from+AlphaVantage \f[I](experimental)\f[R]+.PP+Next, the detailed command docs, in alphabetical order.+.SS accounts+.PP+accounts+.PD 0+.P+.PD+Show account names.+.PP+This command lists account names, either declared with account+directives (--declared), posted to (--used), or both (the default).+With query arguments, only matched account names and account names+referenced by matched postings are shown.+It shows a flat list by default.+With \f[C]--tree\f[R], it uses indentation to show the account+hierarchy.+In flat mode you can add \f[C]--drop N\f[R] to omit the first few+account name components.+Account names can be depth-clipped with \f[C]depth:N\f[R] or+\f[C]--depth N\f[R] or \f[C]-N\f[R].+.PP+Examples:+.IP+.nf+\f[C]+$ hledger accounts+assets:bank:checking+assets:bank:saving+assets:cash+expenses:food+expenses:supplies+income:gifts+income:salary+liabilities:debts+\f[R]+.fi+.SS activity+.PP+activity+.PD 0+.P+.PD+Show an ascii barchart of posting counts per interval.+.PP+The activity command displays an ascii histogram showing transaction+counts by day, week, month or other reporting interval (by day is the+default).+With query arguments, it counts only matched transactions.+.PP+Examples:+.IP+.nf+\f[C]+$ hledger activity --quarterly+2008-01-01 **+2008-04-01 *******+2008-07-01 +2008-10-01 **+\f[R]+.fi+.SS add+.PP+add+.PD 0+.P+.PD+Prompt for transactions and add them to the journal.+Any arguments will be used as default inputs for the first N prompts.+.PP+Many hledger users edit their journals directly with a text editor, or+generate them from CSV.+For more interactive data entry, there is the \f[C]add\f[R] command,+which prompts interactively on the console for new transactions, and+appends them to the journal file (if there are multiple+\f[C]-f FILE\f[R] options, the first file is used.) Existing+transactions are not changed.+This is the only hledger command that writes to the journal file.+.PP+To use it, just run \f[C]hledger add\f[R] and follow the prompts.+You can add as many transactions as you like; when you are finished,+enter \f[C].\f[R] or press control-d or control-c to exit.+.PP+Features:+.IP \[bu] 2+add tries to provide useful defaults, using the most similar (by+description) recent transaction (filtered by the query, if any) as a+template.+.IP \[bu] 2+You can also set the initial defaults with command line arguments.+.IP \[bu] 2+Readline-style edit keys can be used during data entry.+.IP \[bu] 2+The tab key will auto-complete whenever possible - accounts,+descriptions, dates (\f[C]yesterday\f[R], \f[C]today\f[R],+\f[C]tomorrow\f[R]).+If the input area is empty, it will insert the default value.+.IP \[bu] 2+If the journal defines a default commodity, it will be added to any bare+numbers entered.+.IP \[bu] 2+A parenthesised transaction code may be entered following a date.+.IP \[bu] 2+Comments and tags may be entered following a description or amount.+.IP \[bu] 2+If you make a mistake, enter \f[C]<\f[R] at any prompt to go one step+backward.+.IP \[bu] 2+Input prompts are displayed in a different colour when the terminal+supports it.+.PP+Example (see the tutorial for a detailed explanation):+.IP+.nf+\f[C]+$ hledger add+Adding transactions to journal file /src/hledger/examples/sample.journal+Any command line arguments will be used as defaults.+Use tab key to complete, readline keys to edit, enter to accept defaults.+An optional (CODE) may follow transaction dates.+An optional ; COMMENT may follow descriptions or amounts.+If you make a mistake, enter < at any prompt to go one step backward.+To end a transaction, enter . when prompted.+To quit, enter . at a date prompt or press control-d or control-c.+Date [2015/05/22]: +Description: supermarket+Account 1: expenses:food+Amount 1: $10+Account 2: assets:checking+Amount 2 [$-10.0]: +Account 3 (or . or enter to finish this transaction): .+2015/05/22 supermarket+ expenses:food $10+ assets:checking $-10.0++Save this transaction to the journal ? [y]: +Saved.+Starting the next transaction (. or ctrl-D/ctrl-C to quit)+Date [2015/05/22]: <CTRL-D> $+\f[R]+.fi+.PP+On Microsoft Windows, the add command makes sure that no part of the+file path ends with a period, as that would cause problems (#1056).+.SS aregister+.PP+aregister, areg+.PD 0+.P+.PD+.PP+Show the transactions and running historical balance in an account, with+each line item representing one transaction.+.PP+\f[C]aregister\f[R] shows the transactions affecting a particular+account and its subaccounts, with each line item representing a whole+transaction - as in bank statements, hledger-ui, hledger-web and other+accounting apps.+.PP+Note this is unlike the \f[C]register\f[R] command, which shows+individual postings and does not always show a single account or a+historical balance.+.PP+A reminder, \[dq]historical\[dq] balances include any balance from+transactions before the report start date, so (if opening balances are+recorded correctly) \f[C]aregister\f[R] will show the real-world+balances of an account, as you would see in a bank statement.+.PP+As a quick rule of thumb, use \f[C]aregister\f[R] for reconciling+real-world asset/liability accounts and \f[C]register\f[R] for reviewing+detailed revenues/expenses.+.PP+\f[C]aregister\f[R] shows the register for just one account (and its+subaccounts).+This account must be specified as the first argument.+You can write either the full account name, or a case-insensitive+regular expression which will select the alphabetically first matched+account.+(Eg if you have \f[C]assets:aaa:checking\f[R] and+\f[C]assets:bbb:checking\f[R] accounts, \f[C]hledger areg checking\f[R]+would select \f[C]assets:aaa:checking\f[R].)+.PP+Any additional arguments form a query which will filter the transactions+shown.+.PP+Each \f[C]aregister\f[R] line item shows:+.IP \[bu] 2+the transaction\[aq]s date (or the relevant posting\[aq]s date if+different, see below)+.IP \[bu] 2+the names of all the other account(s) involved in this transaction+(probably abbreviated)+.IP \[bu] 2+the total change to this account\[aq]s balance from this transaction+.IP \[bu] 2+the account\[aq]s historical running balance after this transaction.+.PP+Transactions making a net change of zero are not shown by default; add+the \f[C]-E/--empty\f[R] flag to show them.+.PP+\f[C]aregister\f[R] ignores a depth limit, so its final total will+always match a balance report with similar arguments.+.PP+This command also supports the output destination and output format+options The output formats supported are \f[C]txt\f[R], \f[C]csv\f[R],+and \f[C]json\f[R].+.SS aregister and custom posting dates+.PP+Transactions whose date is outside the report period can still be shown,+if they have a posting to this account dated inside the report period.+(And in this case it\[aq]s the posting date that is shown.) This ensures+that \f[C]aregister\f[R] can show an accurate historical running+balance, matching the one shown by \f[C]register -H\f[R] with the same+arguments.+.PP+To filter strictly by transaction date instead, add the+\f[C]--txn-dates\f[R] flag.+If you use this flag and some of your postings have custom dates,+it\[aq]s probably best to assume the running balance is wrong.+.PP+Examples:+.PP+Show all transactions and historical running balance in the first+account whose name contains \[dq]checking\[dq]:+.IP+.nf+\f[C]+$ hledger areg checking+\f[R]+.fi+.PP+Show transactions and historical running balance in all asset accounts+during july:+.IP+.nf+\f[C]+$ hledger areg assets date:jul+\f[R]+.fi+.SS balance+.PP+balance, bal+.PD 0+.P+.PD+Show accounts and their balances.+.PP+\f[C]balance\f[R] is one of hledger\[aq]s oldest and most versatile+commands, for listing account balances, balance changes, values, value+changes and more, during one time period or many.+Generally it shows a table, with rows representing accounts, and columns+representing periods.+.PP+Note there are some higher-level variants of the \f[C]balance\f[R]+command with convenient defaults, which can be simpler to use:+\f[C]balancesheet\f[R], \f[C]balancesheetequity\f[R], \f[C]cashflow\f[R]+and \f[C]incomestatement\f[R].+When you need more control, then use \f[C]balance\f[R].+.SS balance features+.PP+Here\[aq]s a quick overview of the \f[C]balance\f[R] command\[aq]s+features, followed by more detailed descriptions and examples.+Many of these work with the higher-level commands as well.+.PP+\f[C]balance\f[R] can show..+.IP \[bu] 2+accounts as a list (\f[C]-l\f[R]) or a tree (\f[C]-t\f[R])+.IP \[bu] 2+optionally depth-limited (\f[C]-[1-9]\f[R])+.IP \[bu] 2+sorted by declaration order and name, or by amount+.PP+\&..and their..+.IP \[bu] 2+balance changes (the default)+.IP \[bu] 2+or actual and planned balance changes (\f[C]--budget\f[R])+.IP \[bu] 2+or value of balance changes (\f[C]-V\f[R])+.IP \[bu] 2+or change of balance values (\f[C]--valuechange\f[R])+.PP+\&..in..+.IP \[bu] 2+one time period (the whole journal period by default)+.IP \[bu] 2+or multiple periods (\f[C]-D\f[R], \f[C]-W\f[R], \f[C]-M\f[R],+\f[C]-Q\f[R], \f[C]-Y\f[R], \f[C]-p INTERVAL\f[R])+.PP+\&..either..+.IP \[bu] 2+per period (the default)+.IP \[bu] 2+or accumulated since report start date (\f[C]--cumulative\f[R])+.IP \[bu] 2+or accumulated since account creation (\f[C]--historical/-H\f[R])+.PP+\&..possibly converted to..+.IP \[bu] 2+cost (\f[C]--value=cost[,COMM]\f[R]/\f[C]--cost\f[R]/\f[C]-B\f[R])+.IP \[bu] 2+or market value, as of transaction dates (\f[C]--value=then[,COMM]\f[R])+.IP \[bu] 2+or at period ends (\f[C]--value=end[,COMM]\f[R])+.IP \[bu] 2+or now (\f[C]--value=now\f[R])+.IP \[bu] 2+or at some other date (\f[C]--value=YYYY-MM-DD\f[R])+.PP+\&..with..+.IP \[bu] 2+totals (\f[C]-T\f[R]), averages (\f[C]-A\f[R]), percentages+(\f[C]-%\f[R]), inverted sign (\f[C]--invert\f[R])+.IP \[bu] 2+rows and columns swapped (\f[C]--transpose\f[R])+.IP \[bu] 2+another field used as account name (\f[C]--pivot\f[R])+.IP \[bu] 2+custom-formatted line items (single-period reports only)+(\f[C]--format\f[R])+.PP+This command supports the output destination and output format options,+with output formats \f[C]txt\f[R], \f[C]csv\f[R], \f[C]json\f[R], and+(multi-period reports only:) \f[C]html\f[R].+In \f[C]txt\f[R] output in a colour-supporting terminal, negative+amounts are shown in red.+.SS Simple balance report+.PP+With no arguments, \f[C]balance\f[R] shows a list of all accounts and+their change of balance - ie, the sum of posting amounts, both inflows+and outflows - during the entire period of the journal.+For real-world accounts, this should also match their end balance at the+end of the journal period (more on this below).+.PP+Accounts are sorted by declaration order if any, and then alphabetically+by account name.+For instance, using examples/sample.journal:+.IP+.nf+\f[C]+$ hledger bal+ $1 assets:bank:saving+ $-2 assets:cash+ $1 expenses:food+ $1 expenses:supplies+ $-1 income:gifts+ $-1 income:salary+ $1 liabilities:debts+--------------------+ 0 +\f[R]+.fi+.PP+Accounts with a zero balance (and no non-zero subaccounts, in tree mode+- see below) are hidden by default.+Use \f[C]-E/--empty\f[R] to show them (revealing+\f[C]assets:bank:checking\f[R] here):+.IP+.nf+\f[C]+$ hledger -f examples/sample.journal bal -E+ 0 assets:bank:checking+ $1 assets:bank:saving+ $-2 assets:cash+ $1 expenses:food+ $1 expenses:supplies+ $-1 income:gifts+ $-1 income:salary+ $1 liabilities:debts+--------------------+ 0 +\f[R]+.fi+.PP+The total of the amounts displayed is shown as the last line, unless+\f[C]-N\f[R]/\f[C]--no-total\f[R] is used.+.SS Filtered balance report+.PP+You can show fewer accounts, a different time period, totals from+cleared transactions only, etc.+by using query arguments or options to limit the postings being matched.+Eg:+.IP+.nf+\f[C]+$ hledger bal --cleared assets date:200806+ $-2 assets:cash+--------------------+ $-2 +\f[R]+.fi+.SS List or tree mode+.PP+By default, or with \f[C]-l/--flat\f[R], accounts are shown as a flat+list with their full names visible, as in the examples above.+.PP+With \f[C]-t/--tree\f[R], the account hierarchy is shown, with+subaccounts\[aq] \[dq]leaf\[dq] names indented below their parent:+.IP+.nf+\f[C]+$ hledger balance+ $-1 assets+ $1 bank:saving+ $-2 cash+ $2 expenses+ $1 food+ $1 supplies+ $-2 income+ $-1 gifts+ $-1 salary+ $1 liabilities:debts+--------------------+ 0+\f[R]+.fi+.PP+Notes:+.IP \[bu] 2+\[dq]Boring\[dq] accounts are combined with their subaccount for more+compact output, unless \f[C]--no-elide\f[R] is used.+Boring accounts have no balance of their own and just one subaccount (eg+\f[C]assets:bank\f[R] and \f[C]liabilities\f[R] above).+.IP \[bu] 2+All balances shown are \[dq]inclusive\[dq], ie including the balances+from all subaccounts.+Note this means some repetition in the output, which requires+explanation when sharing reports with non-plaintextaccounting-users.+A tree mode report\[aq]s final total is the sum of the top-level+balances shown, not of all the balances shown.+.IP \[bu] 2+Each group of sibling accounts (ie, under a common parent) is sorted+separately.+.SS Depth limiting+.PP+With a \f[C]depth:N\f[R] query, or \f[C]--depth N\f[R] option, or just+\f[C]-N\f[R], balance reports will show accounts only to the specified+depth, hiding the deeper subaccounts.+Account balances at the depth limit always include the balances from any+hidden subaccounts (even in list mode).+This can be useful for getting an overview.+Eg, limiting to depth 1:+.IP+.nf+\f[C]+$ hledger balance -N -1+ $-1 assets+ $2 expenses+ $-2 income+ $1 liabilities+\f[R]+.fi+.PP+You can also hide top-level account name parts, using+\f[C]--drop N\f[R].+This can be useful for hiding repetitive top-level account names:+.IP+.nf+\f[C]+$ hledger bal expenses --drop 1+ $1 food+ $1 supplies+--------------------+ $2 +\f[R]+.fi+.PP+.SS Multi-period balance report+.PP+With a report interval (set by the \f[C]-D/--daily\f[R],+\f[C]-W/--weekly\f[R], \f[C]-M/--monthly\f[R], \f[C]-Q/--quarterly\f[R],+\f[C]-Y/--yearly\f[R], or \f[C]-p/--period\f[R] flag), \f[C]balance\f[R]+shows a tabular report, with columns representing successive time+periods (and a title):+.IP+.nf+\f[C]+$ hledger balance --quarterly income expenses -E+Balance changes in 2008:++ || 2008q1 2008q2 2008q3 2008q4 +===================++=================================+ expenses:food || 0 $1 0 0 + expenses:supplies || 0 $1 0 0 + income:gifts || 0 $-1 0 0 + income:salary || $-1 0 0 0 +-------------------++---------------------------------+ || $-1 $1 0 0 +\f[R]+.fi+.PP+Notes:+.IP \[bu] 2+The report\[aq]s start/end dates will be expanded, if necessary, to+fully encompass the displayed subperiods (so that the first and last+subperiods have the same duration as the others).+.IP \[bu] 2+Leading and trailing periods (columns) containing all zeroes are not+shown, unless \f[C]-E/--empty\f[R] is used.+.IP \[bu] 2+Accounts (rows) containing all zeroes are not shown, unless+\f[C]-E/--empty\f[R] is used.+.IP \[bu] 2+Amounts with many commodities are shown in abbreviated form, unless+\f[C]--no-elide\f[R] is used.+\f[I](experimental)\f[R]+.IP \[bu] 2+Average and/or total columns can be added with the+\f[C]-A/--average\f[R] and \f[C]-T/--row-total\f[R] flags.+.IP \[bu] 2+The \f[C]--transpose\f[R] flag can be used to exchange rows and columns.+.IP \[bu] 2+The \f[C]--pivot FIELD\f[R] option causes a different transaction field+to be used as \[dq]account name\[dq].+See PIVOTING.+.PP+Multi-period reports with many periods can be too wide for easy viewing+in the terminal.+Here are some ways to handle that:+.IP \[bu] 2+Hide the totals row with \f[C]-N/--no-total\f[R]+.IP \[bu] 2+Convert to a single currency with \f[C]-V\f[R]+.IP \[bu] 2+Maximize the terminal window+.IP \[bu] 2+Reduce the terminal\[aq]s font size+.IP \[bu] 2+View with a pager like less, eg:+\f[C]hledger bal -D --color=yes | less -RS\f[R]+.IP \[bu] 2+Output as CSV and use a CSV viewer like visidata+(\f[C]hledger bal -D -O csv | vd -f csv\f[R]), Emacs\[aq] csv-mode+(\f[C]M-x csv-mode, C-c C-a\f[R]), or a spreadsheet+(\f[C]hledger bal -D -o a.csv && open a.csv\f[R])+.IP \[bu] 2+Output as HTML and view with a browser:+\f[C]hledger bal -D -o a.html && open a.html\f[R]+.SS Sorting by amount+.PP+With \f[C]-S/--sort-amount\f[R], accounts with the largest (most+positive) balances are shown first.+Eg: \f[C]hledger bal expenses -MAS\f[R] shows your biggest averaged+monthly expenses first.+.PP+Revenues and liability balances are typically negative, however, so+\f[C]-S\f[R] shows these in reverse order.+To work around this, you can add \f[C]--invert\f[R] to flip the signs.+(Or, use one of the higher-level reports, which flip the sign+automatically.+Eg: \f[C]hledger incomestatement -MAS\f[R]).+.PP+.SS Percentages+.PP+With \f[C]-%/--percent\f[R], balance reports show each account\[aq]s+value expressed as a percentage of the (column) total:+.IP+.nf+\f[C]+$ hledger bal expenses -Q -%+Balance changes in 2008:++ || 2008Q1 2008Q2 2008Q3 2008Q4 +===================++=================================+ expenses:food || 0 50.0 % 0 0 + expenses:supplies || 0 50.0 % 0 0 +-------------------++---------------------------------+ || 0 100.0 % 0 0 +\f[R]+.fi+.PP+Note it is not useful to calculate percentages if the amounts in a+column have mixed signs.+In this case, make a separate report for each sign, eg:+.IP+.nf+\f[C]+$ hledger bal -% amt:\[ga]>0\[ga]+$ hledger bal -% amt:\[ga]<0\[ga]+\f[R]+.fi+.PP+Similarly, if the amounts in a column have mixed commodities, convert+them to one commodity with \f[C]-B\f[R], \f[C]-V\f[R], \f[C]-X\f[R] or+\f[C]--value\f[R], or make a separate report for each commodity:+.IP+.nf+\f[C]+$ hledger bal -% cur:\[rs]\[rs]$+$ hledger bal -% cur:\[Eu]+\f[R]+.fi+.SS Balance change, end balance+.PP+It\[aq]s important to be clear on the meaning of the numbers shown in+balance reports.+Here is some terminology we use:+.PP+A \f[B]\f[BI]balance change\f[B]\f[R] is the net amount added to, or+removed from, an account during some period.+.PP+An \f[B]\f[BI]end balance\f[B]\f[R] is the amount accumulated in an+account as of some date (and some time, but hledger doesn\[aq]t store+that; assume end of day in your timezone).+It is the sum of previous balance changes.+.PP+We call it a \f[B]\f[BI]historical end balance\f[B]\f[R] if it includes+all balance changes since the account was created.+For a real world account, this means it will match the \[dq]historical+record\[dq], eg the balances reported in your bank statements or bank+web UI.+(If they are correct!)+.PP+In general, balance changes are what you want to see when reviewing+revenues and expenses, and historical end balances are what you want to+see when reviewing or reconciling asset, liability and equity accounts.+.PP+\f[C]balance\f[R] shows balance changes by default.+To see accurate historical end balances:+.IP "1." 3+Initialise account starting balances with an \[dq]opening balances\[dq]+transaction (a transfer from equity to the account), unless the journal+covers the account\[aq]s full lifetime.+.IP "2." 3+Include all of of the account\[aq]s prior postings in the report, by not+specifying a report start date, or by using the+\f[C]-H/--historical\f[R] flag.+(\f[C]-H\f[R] causes report start date to be ignored when summing+postings.)+.SS Balance report types+.PP+For more flexible reporting, there are three important option groups:+.PP+\f[C]hledger balance [CALCULATIONTYPE] [ACCUMULATIONTYPE] [VALUATIONTYPE] ...\f[R]+.PP+The first two are the most important: calculation type selects the basic+calculation to perform for each table cell, while accumulation type says+which postings should be included in each cell\[aq]s calculation.+Typically one or both of these are selected by default, so you don\[aq]t+need to write them explicitly.+A valuation type can be added if you want to convert the basic report to+value or cost.+.PP+\f[B]Calculation type:\f[R]+.PD 0+.P+.PD+The basic calculation to perform for each table cell.+It is one of:+.IP \[bu] 2+\f[C]--sum\f[R] : sum the posting amounts (\f[B]default\f[R])+.IP \[bu] 2+\f[C]--budget\f[R] : like --sum but also show a goal amount+.IP \[bu] 2+\f[C]--valuechange\f[R] : show the change in period-end historical+balance values+.PP+\f[B]Accumulation type:\f[R]+.PD 0+.P+.PD+Which postings should be included in each cell\[aq]s calculation.+It is one of:+.IP \[bu] 2+\f[C]--change\f[R] : postings from column start to column end, ie within+the cell\[aq]s period.+Typically used to see revenues/expenses.+(\f[B]default for balance, incomestatement\f[R])+.IP \[bu] 2+\f[C]--cumulative\f[R] : postings from report start to column end, eg to+show changes accumulated since the report\[aq]s start date.+Rarely used.+.IP \[bu] 2+\f[C]--historical/-H\f[R] : postings from journal start to column end,+ie all postings from account creation to the end of the cell\[aq]s+period.+Typically used to see historical end balances of+assets/liabilities/equity.+(\f[B]default for balancesheet, balancesheetequity, cashflow\f[R])+.PP+\f[B]Valuation type:\f[R]+.PD 0+.P+.PD+Which kind of valuation, valuation date(s) and optionally a target+valuation commodity to use.+It is one of:+.IP \[bu] 2+no valuation, show amounts in their original commodities+(\f[B]default\f[R])+.IP \[bu] 2+\f[C]--value=cost[,COMM]\f[R] : no valuation, show amounts converted to+cost+.IP \[bu] 2+\f[C]--value=then[,COMM]\f[R] : show value at transaction dates+.IP \[bu] 2+\f[C]--value=end[,COMM]\f[R] : show value at period end date(s)+(\f[B]default with \f[CB]--valuechange\f[B]\f[R])+.IP \[bu] 2+\f[C]--value=now[,COMM]\f[R] : show value at today\[aq]s date+.IP \[bu] 2+\f[C]--value=YYYY-MM-DD[,COMM]\f[R] : show value at another date+.PP+or one of their aliases: \f[C]--cost/-B\f[R], \f[C]--market/-V\f[R] or+\f[C]--exchange/-X\f[R].+.PP+Most combinations of these options should produce reasonable reports,+but if you find any that seem wrong or misleading, let us know.+The following restrictions are applied:+.IP \[bu] 2+\f[C]--valuechange\f[R] implies \f[C]--value=end\f[R]+.IP \[bu] 2+\f[C]--valuechange\f[R] makes \f[C]--change\f[R] the default when used+with the \f[C]balancesheet\f[R]/\f[C]balancesheetequity\f[R] commands+.IP \[bu] 2+\f[C]--cumulative\f[R] or \f[C]--historical\f[R] disables+\f[C]--row-total/-T\f[R]+.PP+For reference, here is what the combinations of accumulation and+valuation show:+.PP+.TS+tab(@);+lw(8.2n) lw(16.3n) lw(16.8n) lw(15.1n) lw(13.6n).+T{+Valuation: >Accumulation: v+T}@T{+no valuation+T}@T{+\f[C]--value= then\f[R]+T}@T{+\f[C]--value= end\f[R]+T}@T{+\f[C]--value= YYYY-MM-DD /now\f[R]+T}+_+T{+\f[C]--change\f[R]+T}@T{+change in period+T}@T{+sum of posting-date market values in period+T}@T{+period-end value of change in period+T}@T{+DATE-value of change in period+T}+T{+\f[C]--cumulative\f[R]+T}@T{+change from report start to period end+T}@T{+sum of posting-date market values from report start to period end+T}@T{+period-end value of change from report start to period end+T}@T{+DATE-value of change from report start to period end+T}+T{+\f[C]--historical /-H\f[R]+T}@T{+change from journal start to period end (historical end balance)+T}@T{+sum of posting-date market values from journal start to period end+T}@T{+period-end value of change from journal start to period end+T}@T{+DATE-value of change from journal start to period end+T}+.TE+.SS Useful balance reports+.PP+Some frequently used \f[C]balance\f[R] options/reports are:+.IP \[bu] 2+\f[C]bal -M revenues expenses\f[R]+.PD 0+.P+.PD+Show revenues/expenses in each month.+Also available as the \f[C]incomestatement\f[R] command.+.IP \[bu] 2+\f[C]bal -M -H assets liabilities\f[R]+.PD 0+.P+.PD+Show historical asset/liability balances at each month end.+Also available as the \f[C]balancesheet\f[R] command.+.IP \[bu] 2+\f[C]bal -M -H assets liabilities equity\f[R]+.PD 0+.P+.PD+Show historical asset/liability/equity balances at each month end.+Also available as the \f[C]balancesheetequity\f[R] command.+.IP \[bu] 2+\f[C]bal -M assets not:receivable\f[R]+.PD 0+.P+.PD+Show changes to liquid assets in each month.+Also available as the \f[C]cashflow\f[R] command.+.PP+Also:+.IP \[bu] 2+\f[C]bal -M expenses -2 -SA\f[R]+.PD 0+.P+.PD+Show monthly expenses summarised to depth 2 and sorted by average+amount.+.IP \[bu] 2+\f[C]bal -M --budget expenses\f[R]+.PD 0+.P+.PD+Show monthly expenses and budget goals.+.IP \[bu] 2+\f[C]bal -M --valuechange investments\f[R]+.PD 0+.P+.PD+Show monthly change in market value of investment assets.+.IP \[bu] 2+\f[C]bal investments --valuechange -D date:lastweek amt:\[aq]>1000\[aq] -STA [--invert]\f[R]+.PD 0+.P+.PD+Show top gainers [or losers] last week+.SS Budget report+.PP+The \f[C]--budget\f[R] report type activates extra columns showing any+budget goals for each account and period.+The budget goals are defined by periodic transactions.+This is very useful for comparing planned and actual income, expenses,+time usage, etc.+.PP+For example, you can take average monthly expenses in the common expense+categories to construct a minimal monthly budget:+.IP+.nf+\f[C]+;; Budget+\[ti] monthly+ income $2000+ expenses:food $400+ expenses:bus $50+ expenses:movies $30+ assets:bank:checking++;; Two months worth of expenses+2017-11-01+ income $1950+ expenses:food $396+ expenses:bus $49+ expenses:movies $30+ expenses:supplies $20+ assets:bank:checking++2017-12-01+ income $2100+ expenses:food $412+ expenses:bus $53+ expenses:gifts $100+ assets:bank:checking+\f[R]+.fi+.PP+You can now see a monthly budget report:+.IP+.nf+\f[C]+$ hledger balance -M --budget+Budget performance in 2017/11/01-2017/12/31:++ || Nov Dec +======================++====================================================+ assets || $-2445 [ 99% of $-2480] $-2665 [ 107% of $-2480] + assets:bank || $-2445 [ 99% of $-2480] $-2665 [ 107% of $-2480] + assets:bank:checking || $-2445 [ 99% of $-2480] $-2665 [ 107% of $-2480] + expenses || $495 [ 103% of $480] $565 [ 118% of $480] + expenses:bus || $49 [ 98% of $50] $53 [ 106% of $50] + expenses:food || $396 [ 99% of $400] $412 [ 103% of $400] + expenses:movies || $30 [ 100% of $30] 0 [ 0% of $30] + income || $1950 [ 98% of $2000] $2100 [ 105% of $2000] +----------------------++----------------------------------------------------+ || 0 [ 0] 0 [ 0] +\f[R]+.fi+.PP+This is different from a normal balance report in several ways:+.IP \[bu] 2+Only accounts with budget goals during the report period are shown, by+default.+.IP \[bu] 2+In each column, in square brackets after the actual amount, budget goal+amounts are shown, and the actual/goal percentage.+(Note: budget goals should be in the same commodity as the actual+amount.)+.IP \[bu] 2+All parent accounts are always shown, even in list mode.+Eg assets, assets:bank, and expenses above.+.IP \[bu] 2+Amounts always include all subaccounts, budgeted or unbudgeted, even in+list mode.+.PP+This means that the numbers displayed will not always add up! Eg above,+the \f[C]expenses\f[R] actual amount includes the gifts and supplies+transactions, but the \f[C]expenses:gifts\f[R] and+\f[C]expenses:supplies\f[R] accounts are not shown, as they have no+budget amounts declared.+.PP+This can be confusing.+When you need to make things clearer, use the \f[C]-E/--empty\f[R] flag,+which will reveal all accounts including unbudgeted ones, giving the+full picture.+Eg:+.IP+.nf+\f[C]+$ hledger balance -M --budget --empty+Budget performance in 2017/11/01-2017/12/31:++ || Nov Dec +======================++====================================================+ assets || $-2445 [ 99% of $-2480] $-2665 [ 107% of $-2480] + assets:bank || $-2445 [ 99% of $-2480] $-2665 [ 107% of $-2480] + assets:bank:checking || $-2445 [ 99% of $-2480] $-2665 [ 107% of $-2480] + expenses || $495 [ 103% of $480] $565 [ 118% of $480] + expenses:bus || $49 [ 98% of $50] $53 [ 106% of $50] + expenses:food || $396 [ 99% of $400] $412 [ 103% of $400] + expenses:gifts || 0 $100 + expenses:movies || $30 [ 100% of $30] 0 [ 0% of $30] + expenses:supplies || $20 0 + income || $1950 [ 98% of $2000] $2100 [ 105% of $2000] +----------------------++----------------------------------------------------+ || 0 [ 0] 0 [ 0] +\f[R]+.fi+.PP+You can roll over unspent budgets to next period with+\f[C]--cumulative\f[R]:+.IP+.nf+\f[C]+$ hledger balance -M --budget --cumulative+Budget performance in 2017/11/01-2017/12/31:++ || Nov Dec +======================++====================================================+ assets || $-2445 [ 99% of $-2480] $-5110 [ 103% of $-4960] + assets:bank || $-2445 [ 99% of $-2480] $-5110 [ 103% of $-4960] + assets:bank:checking || $-2445 [ 99% of $-2480] $-5110 [ 103% of $-4960] + expenses || $495 [ 103% of $480] $1060 [ 110% of $960] + expenses:bus || $49 [ 98% of $50] $102 [ 102% of $100] + expenses:food || $396 [ 99% of $400] $808 [ 101% of $800] + expenses:movies || $30 [ 100% of $30] $30 [ 50% of $60] + income || $1950 [ 98% of $2000] $4050 [ 101% of $4000] +----------------------++----------------------------------------------------+ || 0 [ 0] 0 [ 0] +\f[R]+.fi+.PP+For more examples and notes, see Budgeting.+.SS Budget report start date+.PP+This might be a bug, but for now: when making budget reports, it\[aq]s a+good idea to explicitly set the report\[aq]s start date to the first day+of a reporting period, because a periodic rule like+\f[C]\[ti] monthly\f[R] generates its transactions on the 1st of each+month, and if your journal has no regular transactions on the 1st, the+default report start date could exclude that budget goal, which can be a+little surprising.+Eg here the default report period is just the day of 2020-01-15:+.IP+.nf+\f[C]+\[ti] monthly in 2020+ (expenses:food) $500++2020-01-15+ expenses:food $400+ assets:checking+\f[R]+.fi+.IP+.nf+\f[C]+$ hledger bal expenses --budget+Budget performance in 2020-01-15:++ || 2020-01-15 +==============++============+ <unbudgeted> || $400 +--------------++------------+ || $400 +\f[R]+.fi+.PP+To avoid this, specify the budget report\[aq]s period, or at least the+start date, with \f[C]-b\f[R]/\f[C]-e\f[R]/\f[C]-p\f[R]/\f[C]date:\f[R],+to ensure it includes the budget goal transactions (periodic+transactions) that you want.+Eg, adding \f[C]-b 2020/1/1\f[R] to the above:+.IP+.nf+\f[C]+$ hledger bal expenses --budget -b 2020/1/1+Budget performance in 2020-01-01..2020-01-15:++ || 2020-01-01..2020-01-15 +===============++========================+ expenses:food || $400 [80% of $500] +---------------++------------------------+ || $400 [80% of $500] +\f[R]+.fi+.SS Nested budgets+.PP+You can add budgets to any account in your account hierarchy.+If you have budgets on both parent account and some of its children,+then budget(s) of the child account(s) would be added to the budget of+their parent, much like account balances behave.+.PP+In the most simple case this means that once you add a budget to any+account, all its parents would have budget as well.+.PP+To illustrate this, consider the following budget:+.IP+.nf+\f[C]+\[ti] monthly from 2019/01+ expenses:personal $1,000.00+ expenses:personal:electronics $100.00+ liabilities+\f[R]+.fi+.PP+With this, monthly budget for electronics is defined to be $100 and+budget for personal expenses is an additional $1000, which implicitly+means that budget for both \f[C]expenses:personal\f[R] and+\f[C]expenses\f[R] is $1100.+.PP+Transactions in \f[C]expenses:personal:electronics\f[R] will be counted+both towards its $100 budget and $1100 of \f[C]expenses:personal\f[R] ,+and transactions in any other subaccount of \f[C]expenses:personal\f[R]+would be counted towards only towards the budget of+\f[C]expenses:personal\f[R].+.PP+For example, let\[aq]s consider these transactions:+.IP+.nf+\f[C]+\[ti] monthly from 2019/01+ expenses:personal $1,000.00+ expenses:personal:electronics $100.00+ liabilities++2019/01/01 Google home hub+ expenses:personal:electronics $90.00+ liabilities $-90.00++2019/01/02 Phone screen protector+ expenses:personal:electronics:upgrades $10.00+ liabilities++2019/01/02 Weekly train ticket+ expenses:personal:train tickets $153.00+ liabilities++2019/01/03 Flowers+ expenses:personal $30.00+ liabilities+\f[R]+.fi+.PP+As you can see, we have transactions in+\f[C]expenses:personal:electronics:upgrades\f[R] and+\f[C]expenses:personal:train tickets\f[R], and since both of these+accounts are without explicitly defined budget, these transactions would+be counted towards budgets of \f[C]expenses:personal:electronics\f[R]+and \f[C]expenses:personal\f[R] accordingly:+.IP+.nf+\f[C]+$ hledger balance --budget -M+Budget performance in 2019/01:++ || Jan +===============================++===============================+ expenses || $283.00 [ 26% of $1100.00] + expenses:personal || $283.00 [ 26% of $1100.00] + expenses:personal:electronics || $100.00 [ 100% of $100.00] + liabilities || $-283.00 [ 26% of $-1100.00] +-------------------------------++-------------------------------+ || 0 [ 0] +\f[R]+.fi+.PP+And with \f[C]--empty\f[R], we can get a better picture of budget+allocation and consumption:+.IP+.nf+\f[C]+$ hledger balance --budget -M --empty+Budget performance in 2019/01:++ || Jan +========================================++===============================+ expenses || $283.00 [ 26% of $1100.00] + expenses:personal || $283.00 [ 26% of $1100.00] + expenses:personal:electronics || $100.00 [ 100% of $100.00] + expenses:personal:electronics:upgrades || $10.00 + expenses:personal:train tickets || $153.00 + liabilities || $-283.00 [ 26% of $-1100.00] +----------------------------------------++-------------------------------+ || 0 [ 0] +\f[R]+.fi+.SS Customising single-period balance reports+.PP+For single-period balance reports displayed in the terminal (only), you+can use \f[C]--format FMT\f[R] to customise the format and content of+each line.+Eg:+.IP+.nf+\f[C]+$ hledger balance --format \[dq]%20(account) %12(total)\[dq]+ assets $-1+ bank:saving $1+ cash $-2+ expenses $2+ food $1+ supplies $1+ income $-2+ gifts $-1+ salary $-1+ liabilities:debts $1+---------------------------------+ 0+\f[R]+.fi+.PP+The FMT format string (plus a newline) specifies the formatting applied+to each account/balance pair.+It may contain any suitable text, with data fields interpolated like so:+.PP+\f[C]%[MIN][.MAX](FIELDNAME)\f[R]+.IP \[bu] 2+MIN pads with spaces to at least this width (optional)+.IP \[bu] 2+MAX truncates at this width (optional)+.IP \[bu] 2+FIELDNAME must be enclosed in parentheses, and can be one of:+.RS 2+.IP \[bu] 2+\f[C]depth_spacer\f[R] - a number of spaces equal to the account\[aq]s+depth, or if MIN is specified, MIN * depth spaces.+.IP \[bu] 2+\f[C]account\f[R] - the account\[aq]s name+.IP \[bu] 2+\f[C]total\f[R] - the account\[aq]s balance/posted total, right+justified+.RE+.PP+Also, FMT can begin with an optional prefix to control how+multi-commodity amounts are rendered:+.IP \[bu] 2+\f[C]%_\f[R] - render on multiple lines, bottom-aligned (the default)+.IP \[bu] 2+\f[C]%\[ha]\f[R] - render on multiple lines, top-aligned+.IP \[bu] 2+\f[C]%,\f[R] - render on one line, comma-separated+.PP+There are some quirks.+Eg in one-line mode, \f[C]%(depth_spacer)\f[R] has no effect, instead+\f[C]%(account)\f[R] has indentation built in.+Experimentation may be needed to get pleasing results.+.PP+Some example formats:+.IP \[bu] 2+\f[C]%(total)\f[R] - the account\[aq]s total+.IP \[bu] 2+\f[C]%-20.20(account)\f[R] - the account\[aq]s name, left justified,+padded to 20 characters and clipped at 20 characters+.IP \[bu] 2+\f[C]%,%-50(account) %25(total)\f[R] - account name padded to 50+characters, total padded to 20 characters, with multiple commodities+rendered on one line+.IP \[bu] 2+\f[C]%20(total) %2(depth_spacer)%-(account)\f[R] - the default format+for the single-column balance report+.SS balancesheet+.PP+balancesheet, bs+.PD 0+.P+.PD+This command displays a balance sheet, showing historical ending+balances of asset and liability accounts.+(To see equity as well, use the balancesheetequity command.) Amounts are+shown with normal positive sign, as in conventional financial+statements.+.PP+The asset and liability accounts shown are those accounts declared with+the \f[C]Asset\f[R] or \f[C]Cash\f[R] or \f[C]Liability\f[R] type, or+otherwise all accounts under a top-level \f[C]asset\f[R] or+\f[C]liability\f[R] account (case insensitive, plurals allowed).+.PP+Example:+.IP+.nf+\f[C]+$ hledger balancesheet+Balance Sheet++Assets:+ $-1 assets+ $1 bank:saving+ $-2 cash+--------------------+ $-1++Liabilities:+ $1 liabilities:debts+--------------------+ $1++Total:+--------------------+ 0+\f[R]+.fi+.PP+This command is a higher-level variant of the \f[C]balance\f[R] command,+and supports many of that command\[aq]s features, such as multi-period+reports.+It is similar to \f[C]hledger balance -H assets liabilities\f[R], but+with smarter account detection, and liabilities displayed with their+sign flipped.+.PP+This command also supports the output destination and output format+options The output formats supported are \f[C]txt\f[R], \f[C]csv\f[R],+\f[C]html\f[R], and (experimental) \f[C]json\f[R].+.SS balancesheetequity+.PP+balancesheetequity, bse+.PD 0+.P+.PD+This command displays a balance sheet, showing historical ending+balances of asset, liability and equity accounts.+Amounts are shown with normal positive sign, as in conventional+financial statements.+.PP+The asset, liability and equity accounts shown are those accounts+declared with the \f[C]Asset\f[R], \f[C]Cash\f[R], \f[C]Liability\f[R]+or \f[C]Equity\f[R] type, or otherwise all accounts under a top-level+\f[C]asset\f[R], \f[C]liability\f[R] or \f[C]equity\f[R] account (case+insensitive, plurals allowed).+.PP+Example:+.IP+.nf+\f[C]+$ hledger balancesheetequity+Balance Sheet With Equity++Assets:+ $-2 assets+ $1 bank:saving+ $-3 cash+--------------------+ $-2++Liabilities:+ $1 liabilities:debts+--------------------+ $1++Equity:+ $1 equity:owner+--------------------+ $1++Total:+--------------------+ 0+\f[R]+.fi+.PP+This command is a higher-level variant of the \f[C]balance\f[R] command,+and supports many of that command\[aq]s features, such as multi-period+reports.+It is similar to \f[C]hledger balance -H assets liabilities equity\f[R],+but with smarter account detection, and liabilities/equity displayed+with their sign flipped.+.PP+This command also supports the output destination and output format+options The output formats supported are \f[C]txt\f[R], \f[C]csv\f[R],+\f[C]html\f[R], and (experimental) \f[C]json\f[R].+.SS cashflow+.PP+cashflow, cf+.PD 0+.P+.PD+This command displays a cashflow statement, showing the inflows and+outflows affecting \[dq]cash\[dq] (ie, liquid) assets.+Amounts are shown with normal positive sign, as in conventional+financial statements.+.PP+The \[dq]cash\[dq] accounts shown are those accounts declared with the+\f[C]Cash\f[R] type, or otherwise all accounts under a top-level+\f[C]asset\f[R] account (case insensitive, plural allowed) which do not+have \f[C]fixed\f[R], \f[C]investment\f[R], \f[C]receivable\f[R] or+\f[C]A/R\f[R] in their name.+.PP+Example:+.IP+.nf+\f[C]+$ hledger cashflow+Cashflow Statement++Cash flows:+ $-1 assets+ $1 bank:saving+ $-2 cash+--------------------+ $-1++Total:+--------------------+ $-1+\f[R]+.fi+.PP+This command is a higher-level variant of the \f[C]balance\f[R] command,+and supports many of that command\[aq]s features, such as multi-period+reports.+It is similar to+\f[C]hledger balance assets not:fixed not:investment not:receivable\f[R],+but with smarter account detection.+.PP+This command also supports the output destination and output format+options The output formats supported are \f[C]txt\f[R], \f[C]csv\f[R],+\f[C]html\f[R], and (experimental) \f[C]json\f[R].+.SS check+.PP+check+.PD 0+.P+.PD+Check for various kinds of errors in your data.+.PP+hledger provides a number of built-in error checks to help prevent+problems in your data.+Some of these are run automatically; or, you can use this+\f[C]check\f[R] command to run them on demand, with no output and a zero+exit code if all is well.+Specify their names (or a prefix) as argument(s).+.PP+Some examples:+.IP+.nf+\f[C]+hledger check # basic checks+hledger check -s # basic + strict checks+hledger check ordereddates payees # basic + two other checks+\f[R]+.fi+.PP+Here are the checks currently available:+.SS Basic checks+.PP+These checks are always run automatically, by (almost) all hledger+commands, including \f[C]check\f[R]:+.IP \[bu] 2+\f[B]parseable\f[R] - data files are well-formed and can be successfully+parsed+.IP \[bu] 2+\f[B]autobalanced\f[R] - all transactions are balanced, inferring+missing amounts where necessary, and possibly converting commodities+using transaction prices or automatically-inferred transaction prices+.IP \[bu] 2+\f[B]assertions\f[R] - all balance assertions in the journal are+passing.+(This check can be disabled with+\f[C]-I\f[R]/\f[C]--ignore-assertions\f[R].)+.SS Strict checks+.PP+These additional checks are run when the \f[C]-s\f[R]/\f[C]--strict\f[R]+(strict mode) flag is used.+Or, they can be run by giving their names as arguments to+\f[C]check\f[R]:+.IP \[bu] 2+\f[B]accounts\f[R] - all account names used by transactions have been+declared+.IP \[bu] 2+\f[B]commodities\f[R] - all commodity symbols used have been declared+.SS Other checks+.PP+These checks can be run only by giving their names as arguments to+\f[C]check\f[R].+They are more specialised and not desirable for everyone, therefore+optional:+.IP \[bu] 2+\f[B]ordereddates\f[R] - transactions are ordered by date in each file+.IP \[bu] 2+\f[B]payees\f[R] - all payees used by transactions have been declared+.IP \[bu] 2+\f[B]uniqueleafnames\f[R] - all account leaf names are unique+.SS Custom checks+.PP+A few more checks are are available as separate add-on commands, in+https://github.com/simonmichael/hledger/tree/master/bin:+.IP \[bu] 2+\f[B]hledger-check-tagfiles\f[R] - all tag values containing / (a+forward slash) exist as file paths+.IP \[bu] 2+\f[B]hledger-check-fancyassertions\f[R] - more complex balance+assertions are passing+.PP+You could make similar scripts to perform your own custom checks.+See: Cookbook -> Scripting.+.SS close+.PP+close, equity+.PD 0+.P+.PD+Prints a \[dq]closing balances\[dq] transaction and an \[dq]opening+balances\[dq] transaction that bring account balances to and from zero,+respectively.+These can be added to your journal file(s), eg to bring asset/liability+balances forward into a new journal file, or to close out+revenues/expenses to retained earnings at the end of a period.+.PP+You can print just one of these transactions by using the+\f[C]--close\f[R] or \f[C]--open\f[R] flag.+You can customise their descriptions with the \f[C]--close-desc\f[R] and+\f[C]--open-desc\f[R] options.+.PP+One amountless posting to \[dq]equity:opening/closing balances\[dq] is+added to balance the transactions, by default.+You can customise this account name with \f[C]--close-acct\f[R] and+\f[C]--open-acct\f[R]; if you specify only one of these, it will be used+for both.+.PP+With \f[C]--x/--explicit\f[R], the equity posting\[aq]s amount will be+shown.+And if it involves multiple commodities, a posting for each commodity+will be shown, as with the print command.+.PP+With \f[C]--interleaved\f[R], the equity postings are shown next to the+postings they balance, which makes troubleshooting easier.+.PP+By default, transaction prices in the journal are ignored when+generating the closing/opening transactions.+With \f[C]--show-costs\f[R], this cost information is preserved+(\f[C]balance -B\f[R] reports will be unchanged after the transition).+Separate postings are generated for each cost in each commodity.+Note this can generate very large journal entries, if you have many+foreign currency or investment transactions.+.SS close usage+.PP+If you split your journal files by time (eg yearly), you will typically+run this command at the end of the year, and save the closing+transaction as last entry of the old file, and the opening transaction+as the first entry of the new file.+This makes the files self contained, so that correct balances are+reported no matter which of them are loaded.+Ie, if you load just one file, the balances are initialised correctly;+or if you load several files, the redundant closing/opening transactions+cancel each other out.+(They will show up in print or register reports; you can exclude them+with a query like+\f[C]not:desc:\[aq](opening|closing) balances\[aq]\f[R].)+.PP+If you\[aq]re running a business, you might also use this command to+\[dq]close the books\[dq] at the end of an accounting period,+transferring income statement account balances to retained earnings.+(You may want to change the equity account name to something like+\[dq]equity:retained earnings\[dq].)+.PP+By default, the closing transaction is dated yesterday, the balances are+calculated as of end of yesterday, and the opening transaction is dated+today.+To close on some other date, use:+\f[C]hledger close -e OPENINGDATE\f[R].+Eg, to close/open on the 2018/2019 boundary, use \f[C]-e 2019\f[R].+You can also use -p or \f[C]date:PERIOD\f[R] (any starting date is+ignored).+.PP+Both transactions will include balance assertions for the+closed/reopened accounts.+You probably shouldn\[aq]t use status or realness filters (like -C or -R+or \f[C]status:\f[R]) with this command, or the generated balance+assertions will depend on these flags.+Likewise, if you run this command with --auto, the balance assertions+will probably always require --auto.+.PP+Examples:+.PP+Carrying asset/liability balances into a new file for 2019:+.IP+.nf+\f[C]+$ hledger close -f 2018.journal -e 2019 assets liabilities --open+ # (copy/paste the output to the start of your 2019 journal file)+$ hledger close -f 2018.journal -e 2019 assets liabilities --close+ # (copy/paste the output to the end of your 2018 journal file)+\f[R]+.fi+.PP+Now:+.IP+.nf+\f[C]+$ hledger bs -f 2019.journal # one file - balances are correct+$ hledger bs -f 2018.journal -f 2019.journal # two files - balances still correct+$ hledger bs -f 2018.journal not:desc:closing # to see year-end balances, must exclude closing txn+\f[R]+.fi+.PP+Transactions spanning the closing date can complicate matters, breaking+balance assertions:+.IP+.nf+\f[C]+2018/12/30 a purchase made in 2018, clearing the following year+ expenses:food 5+ assets:bank:checking -5 ; [2019/1/2]+\f[R]+.fi+.PP+Here\[aq]s one way to resolve that:+.IP+.nf+\f[C]+; in 2018.journal:+2018/12/30 a purchase made in 2018, clearing the following year+ expenses:food 5+ liabilities:pending++; in 2019.journal:+2019/1/2 clearance of last year\[aq]s pending transactions+ liabilities:pending 5 = 0+ assets:checking+\f[R]+.fi+.SS codes+.PP+codes+.PD 0+.P+.PD+List the codes seen in transactions, in the order parsed.+.PP+This command prints the value of each transaction\[aq]s code field, in+the order transactions were parsed.+The transaction code is an optional value written in parentheses between+the date and description, often used to store a cheque number, order+number or similar.+.PP+Transactions aren\[aq]t required to have a code, and missing or empty+codes will not be shown by default.+With the \f[C]-E\f[R]/\f[C]--empty\f[R] flag, they will be printed as+blank lines.+.PP+You can add a query to select a subset of transactions.+.PP+Examples:+.IP+.nf+\f[C]+1/1 (123)+ (a) 1++1/1 ()+ (a) 1++1/1+ (a) 1++1/1 (126)+ (a) 1+\f[R]+.fi+.IP+.nf+\f[C]+$ hledger codes+123+124+126+\f[R]+.fi+.IP+.nf+\f[C]+$ hledger codes -E+123+124+++126+\f[R]+.fi+.SS commodities+.PP+commodities+.PD 0+.P+.PD+List all commodity/currency symbols used or declared in the journal.+.SS descriptions+.PP+descriptions+.PD 0+.P+.PD+List the unique descriptions that appear in transactions.+.PP+This command lists the unique descriptions that appear in transactions,+in alphabetic order.+You can add a query to select a subset of transactions.+.PP+Example:+.IP+.nf+\f[C]+$ hledger descriptions+Store Name+Gas Station | Petrol+Person A+\f[R]+.fi+.SS diff+.PP+diff+.PD 0+.P+.PD+Compares a particular account\[aq]s transactions in two input files.+It shows any transactions to this account which are in one file but not+in the other.+.PP+More precisely, for each posting affecting this account in either file,+it looks for a corresponding posting in the other file which posts the+same amount to the same account (ignoring date, description, etc.) Since+postings not transactions are compared, this also works when multiple+bank transactions have been combined into a single journal entry.+.PP+This is useful eg if you have downloaded an account\[aq]s transactions+from your bank (eg as CSV data).+When hledger and your bank disagree about the account balance, you can+compare the bank data with your journal to find out the cause.+.PP+Examples:+.IP+.nf+\f[C]+$ hledger diff -f $LEDGER_FILE -f bank.csv assets:bank:giro +These transactions are in the first file only:++2014/01/01 Opening Balances+ assets:bank:giro EUR ...+ ...+ equity:opening balances EUR -...++These transactions are in the second file only:+\f[R]+.fi+.SS files+.PP+files+.PD 0+.P+.PD+List all files included in the journal.+With a REGEX argument, only file names matching the regular expression+(case sensitive) are shown.+.SS help+.PP+help+.PD 0+.P+.PD+Show the hledger user manual in one of several formats, optionally+positioned at a given TOPIC (if possible).+TOPIC is any heading, or heading prefix, in the manual.+Some examples: commands, print, \[aq]auto postings\[aq], periodic.+.PP+This command shows the user manual built in to this hledger version.+It can be useful if the correct version of the hledger manual, or the+usual viewing tools, are not installed on your system.+.PP+By default it uses the best viewer it can find in $PATH, in this order:+\f[C]info\f[R], \f[C]man\f[R], $PAGER (unless a topic is specified),+\f[C]less\f[R], or stdout.+When run non-interactively, it always uses stdout.+Or you can select a particular viewer with the \f[C]-i\f[R] (info),+\f[C]-m\f[R] (man), or \f[C]-p\f[R] (pager) flags.+.SS import+.PP+import+.PD 0+.P+.PD+Read new transactions added to each FILE since last run, and add them to+the main journal file.+Or with --dry-run, just print the transactions that would be added.+Or with --catchup, just mark all of the FILEs\[aq] transactions as+imported, without actually importing any.+.PP+Unlike other hledger commands, with \f[C]import\f[R] the journal file is+an output file, and will be modified, though only by appending (existing+data will not be changed).+The input files are specified as arguments, so to import one or more CSV+files to your main journal, you will run+\f[C]hledger import bank.csv\f[R] or perhaps+\f[C]hledger import *.csv\f[R].+.PP+Note you can import from any file format, though CSV files are the most+common import source, and these docs focus on that case.+.SS Deduplication+.PP+As a convenience \f[C]import\f[R] does \f[I]deduplication\f[R] while+reading transactions.+This does not mean \[dq]ignore transactions that look the same\[dq], but+rather \[dq]ignore transactions that have been seen before\[dq].+This is intended for when you are periodically importing foreign data+which may contain already-imported transactions.+So eg, if every day you download bank CSV files containing redundant+data, you can safely run \f[C]hledger import bank.csv\f[R] and only new+transactions will be imported.+(\f[C]import\f[R] is idempotent.)+.PP+Since the items being read (CSV records, eg) often do not come with+unique identifiers, hledger detects new transactions by date, assuming+that:+.IP "1." 3+new items always have the newest dates+.IP "2." 3+item dates do not change across reads+.IP "3." 3+and items with the same date remain in the same relative order across+reads.+.PP+These are often true of CSV files representing transactions, or true+enough so that it works pretty well in practice.+1 is important, but violations of 2 and 3 amongst the old transactions+won\[aq]t matter (and if you import often, the new transactions will be+few, so less likely to be the ones affected).+.PP+hledger remembers the latest date processed in each input file by saving+a hidden \[dq].latest\[dq] state file in the same directory.+Eg when reading \f[C]finance/bank.csv\f[R], it will look for and update+the \f[C]finance/.latest.bank.csv\f[R] state file.+The format is simple: one or more lines containing the same ISO-format+date (YYYY-MM-DD), meaning \[dq]I have processed transactions up to this+date, and this many of them on that date.\[dq] Normally you won\[aq]t+see or manipulate these state files yourself.+But if needed, you can delete them to reset the state (making all+transactions \[dq]new\[dq]), or you can construct them to \[dq]catch+up\[dq] to a certain date.+.PP+Note deduplication (and updating of state files) can also be done by+\f[C]print --new\f[R], but this is less often used.+.SS Import testing+.PP+With \f[C]--dry-run\f[R], the transactions that will be imported are+printed to the terminal, without updating your journal or state files.+The output is valid journal format, like the print command, so you can+re-parse it.+Eg, to see any importable transactions which CSV rules have not+categorised:+.IP+.nf+\f[C]+$ hledger import --dry bank.csv | hledger -f- -I print unknown+\f[R]+.fi+.PP+or (live updating):+.IP+.nf+\f[C]+$ ls bank.csv* | entr bash -c \[aq]echo ====; hledger import --dry bank.csv | hledger -f- -I print unknown\[aq]+\f[R]+.fi+.SS Importing balance assignments+.PP+Entries added by import will have their posting amounts made explicit+(like \f[C]hledger print -x\f[R]).+This means that any balance assignments in imported files must be+evaluated; but, imported files don\[aq]t get to see the main file\[aq]s+account balances.+As a result, importing entries with balance assignments (eg from an+institution that provides only balances and not posting amounts) will+probably generate incorrect posting amounts.+To avoid this problem, use print instead of import:+.IP+.nf+\f[C]+$ hledger print IMPORTFILE [--new] >> $LEDGER_FILE+\f[R]+.fi+.PP+(If you think import should leave amounts implicit like print does,+please test it and send a pull request.)+.SS Commodity display styles+.PP+Imported amounts will be formatted according to the canonical commodity+styles (declared or inferred) in the main journal file.+.SS incomestatement+.PP+incomestatement, is+.PD 0+.P+.PD+.PP+This command displays an income statement, showing revenues and expenses+during one or more periods.+Amounts are shown with normal positive sign, as in conventional+financial statements.+.PP+The revenue and expense accounts shown are those accounts declared with+the \f[C]Revenue\f[R] or \f[C]Expense\f[R] type, or otherwise all+accounts under a top-level \f[C]revenue\f[R] or \f[C]income\f[R] or+\f[C]expense\f[R] account (case insensitive, plurals allowed).+.PP+Example:+.IP+.nf+\f[C]+$ hledger incomestatement+Income Statement++Revenues:+ $-2 income+ $-1 gifts+ $-1 salary+--------------------+ $-2++Expenses:+ $2 expenses+ $1 food+ $1 supplies+--------------------+ $2++Total:+--------------------+ 0+\f[R]+.fi+.PP+This command is a higher-level variant of the \f[C]balance\f[R] command,+and supports many of that command\[aq]s features, such as multi-period+reports.+It is similar to+\f[C]hledger balance \[aq](revenues|income)\[aq] expenses\f[R], but with+smarter account detection, and revenues/income displayed with their sign+flipped.+.PP+This command also supports the output destination and output format+options The output formats supported are \f[C]txt\f[R], \f[C]csv\f[R],+\f[C]html\f[R], and (experimental) \f[C]json\f[R].+.SS notes+.PP+notes+.PD 0+.P+.PD+List the unique notes that appear in transactions.+.PP+This command lists the unique notes that appear in transactions, in+alphabetic order.+You can add a query to select a subset of transactions.+The note is the part of the transaction description after a | character+(or if there is no |, the whole description).+.PP+Example:+.IP+.nf+\f[C]+$ hledger notes+Petrol+Snacks+\f[R]+.fi+.SS payees+.PP+payees+.PD 0+.P+.PD+List the unique payee/payer names that appear in transactions.+.PP+This command lists unique payee/payer names which have been declared+with payee directives (--declared), used in transaction descriptions+(--used), or both (the default).+.PP+The payee/payer is the part of the transaction description before a |+character (or if there is no |, the whole description).+.PP+You can add query arguments to select a subset of transactions.+This implies --used.+.PP+Example:+.IP+.nf+\f[C]+$ hledger payees+Store Name+Gas Station+Person A+\f[R]+.fi+.SS prices+.PP+prices+.PD 0+.P+.PD+Print market price directives from the journal.+With --costs, also print synthetic market prices based on transaction+prices.+With --inverted-costs, also print inverse prices based on transaction+prices.+Prices (and postings providing prices) can be filtered by a query.+Price amounts are always displayed with their full precision.+.SS print+.PP+print+.PD 0+.P+.PD+Show transaction journal entries, sorted by date.+.PP+The print command displays full journal entries (transactions) from the+journal file, sorted by date (or with \f[C]--date2\f[R], by secondary+date).+.PP+Amounts are shown mostly normalised to commodity display style, eg the+placement of commodity symbols will be consistent.+All of their decimal places are shown, as in the original journal entry+(with one alteration: in some cases trailing zeroes are added.)+.PP+Amounts are shown right-aligned within each transaction (but not across+all transactions).+.PP+Directives and inter-transaction comments are not shown, currently.+This means the print command is somewhat lossy, and if you are using it+to reformat your journal you should take care to also copy over the+directives and file-level comments.+.PP+Eg:+.IP+.nf+\f[C]+$ hledger print+2008/01/01 income+ assets:bank:checking $1+ income:salary $-1++2008/06/01 gift+ assets:bank:checking $1+ income:gifts $-1++2008/06/02 save+ assets:bank:saving $1+ assets:bank:checking $-1++2008/06/03 * eat & shop+ expenses:food $1+ expenses:supplies $1+ assets:cash $-2++2008/12/31 * pay off+ liabilities:debts $1+ assets:bank:checking $-1+\f[R]+.fi+.PP+print\[aq]s output is usually a valid hledger journal, and you can+process it again with a second hledger command.+This can be useful for certain kinds of search, eg:+.IP+.nf+\f[C]+# Show running total of food expenses paid from cash.+# -f- reads from stdin. -I/--ignore-assertions is sometimes needed.+$ hledger print assets:cash | hledger -f- -I reg expenses:food+\f[R]+.fi+.PP+There are some situations where print\[aq]s output can become+unparseable:+.IP \[bu] 2+Valuation affects posting amounts but not balance assertion or balance+assignment amounts, potentially causing those to fail.+.IP \[bu] 2+Auto postings can generate postings with too many missing amounts.+.PP+Normally, the journal entry\[aq]s explicit or implicit amount style is+preserved.+For example, when an amount is omitted in the journal, it will not+appear in the output.+Similarly, when a transaction price is implied but not written, it will+not appear in the output.+You can use the \f[C]-x\f[R]/\f[C]--explicit\f[R] flag to make all+amounts and transaction prices explicit, which can be useful for+troubleshooting or for making your journal more readable and robust+against data entry errors.+\f[C]-x\f[R] is also implied by using any of+\f[C]-B\f[R],\f[C]-V\f[R],\f[C]-X\f[R],\f[C]--value\f[R].+.PP+Note, \f[C]-x\f[R]/\f[C]--explicit\f[R] will cause postings with a+multi-commodity amount (these can arise when a multi-commodity+transaction has an implicit amount) to be split into multiple+single-commodity postings, keeping the output parseable.+.PP+With \f[C]-B\f[R]/\f[C]--cost\f[R], amounts with transaction prices are+converted to cost using that price.+This can be used for troubleshooting.+.PP+With \f[C]-m\f[R]/\f[C]--match\f[R] and a STR argument, print will show+at most one transaction: the one one whose description is most similar+to STR, and is most recent.+STR should contain at least two characters.+If there is no similar-enough match, no transaction will be shown.+.PP+With \f[C]--new\f[R], hledger prints only transactions it has not seen+on a previous run.+This uses the same deduplication system as the \f[C]import\f[R] command.+(See import\[aq]s docs for details.)+.PP+This command also supports the output destination and output format+options The output formats supported are \f[C]txt\f[R], \f[C]csv\f[R],+and (experimental) \f[C]json\f[R] and \f[C]sql\f[R].+.PP+Here\[aq]s an example of print\[aq]s CSV output:+.IP+.nf+\f[C]+$ hledger print -Ocsv+\[dq]txnidx\[dq],\[dq]date\[dq],\[dq]date2\[dq],\[dq]status\[dq],\[dq]code\[dq],\[dq]description\[dq],\[dq]comment\[dq],\[dq]account\[dq],\[dq]amount\[dq],\[dq]commodity\[dq],\[dq]credit\[dq],\[dq]debit\[dq],\[dq]posting-status\[dq],\[dq]posting-comment\[dq]+\[dq]1\[dq],\[dq]2008/01/01\[dq],\[dq]\[dq],\[dq]\[dq],\[dq]\[dq],\[dq]income\[dq],\[dq]\[dq],\[dq]assets:bank:checking\[dq],\[dq]1\[dq],\[dq]$\[dq],\[dq]\[dq],\[dq]1\[dq],\[dq]\[dq],\[dq]\[dq]+\[dq]1\[dq],\[dq]2008/01/01\[dq],\[dq]\[dq],\[dq]\[dq],\[dq]\[dq],\[dq]income\[dq],\[dq]\[dq],\[dq]income:salary\[dq],\[dq]-1\[dq],\[dq]$\[dq],\[dq]1\[dq],\[dq]\[dq],\[dq]\[dq],\[dq]\[dq]+\[dq]2\[dq],\[dq]2008/06/01\[dq],\[dq]\[dq],\[dq]\[dq],\[dq]\[dq],\[dq]gift\[dq],\[dq]\[dq],\[dq]assets:bank:checking\[dq],\[dq]1\[dq],\[dq]$\[dq],\[dq]\[dq],\[dq]1\[dq],\[dq]\[dq],\[dq]\[dq]+\[dq]2\[dq],\[dq]2008/06/01\[dq],\[dq]\[dq],\[dq]\[dq],\[dq]\[dq],\[dq]gift\[dq],\[dq]\[dq],\[dq]income:gifts\[dq],\[dq]-1\[dq],\[dq]$\[dq],\[dq]1\[dq],\[dq]\[dq],\[dq]\[dq],\[dq]\[dq]+\[dq]3\[dq],\[dq]2008/06/02\[dq],\[dq]\[dq],\[dq]\[dq],\[dq]\[dq],\[dq]save\[dq],\[dq]\[dq],\[dq]assets:bank:saving\[dq],\[dq]1\[dq],\[dq]$\[dq],\[dq]\[dq],\[dq]1\[dq],\[dq]\[dq],\[dq]\[dq]+\[dq]3\[dq],\[dq]2008/06/02\[dq],\[dq]\[dq],\[dq]\[dq],\[dq]\[dq],\[dq]save\[dq],\[dq]\[dq],\[dq]assets:bank:checking\[dq],\[dq]-1\[dq],\[dq]$\[dq],\[dq]1\[dq],\[dq]\[dq],\[dq]\[dq],\[dq]\[dq]+\[dq]4\[dq],\[dq]2008/06/03\[dq],\[dq]\[dq],\[dq]*\[dq],\[dq]\[dq],\[dq]eat & shop\[dq],\[dq]\[dq],\[dq]expenses:food\[dq],\[dq]1\[dq],\[dq]$\[dq],\[dq]\[dq],\[dq]1\[dq],\[dq]\[dq],\[dq]\[dq]+\[dq]4\[dq],\[dq]2008/06/03\[dq],\[dq]\[dq],\[dq]*\[dq],\[dq]\[dq],\[dq]eat & shop\[dq],\[dq]\[dq],\[dq]expenses:supplies\[dq],\[dq]1\[dq],\[dq]$\[dq],\[dq]\[dq],\[dq]1\[dq],\[dq]\[dq],\[dq]\[dq]+\[dq]4\[dq],\[dq]2008/06/03\[dq],\[dq]\[dq],\[dq]*\[dq],\[dq]\[dq],\[dq]eat & shop\[dq],\[dq]\[dq],\[dq]assets:cash\[dq],\[dq]-2\[dq],\[dq]$\[dq],\[dq]2\[dq],\[dq]\[dq],\[dq]\[dq],\[dq]\[dq]+\[dq]5\[dq],\[dq]2008/12/31\[dq],\[dq]\[dq],\[dq]*\[dq],\[dq]\[dq],\[dq]pay off\[dq],\[dq]\[dq],\[dq]liabilities:debts\[dq],\[dq]1\[dq],\[dq]$\[dq],\[dq]\[dq],\[dq]1\[dq],\[dq]\[dq],\[dq]\[dq]+\[dq]5\[dq],\[dq]2008/12/31\[dq],\[dq]\[dq],\[dq]*\[dq],\[dq]\[dq],\[dq]pay off\[dq],\[dq]\[dq],\[dq]assets:bank:checking\[dq],\[dq]-1\[dq],\[dq]$\[dq],\[dq]1\[dq],\[dq]\[dq],\[dq]\[dq],\[dq]\[dq]+\f[R]+.fi+.IP \[bu] 2+There is one CSV record per posting, with the parent transaction\[aq]s+fields repeated.+.IP \[bu] 2+The \[dq]txnidx\[dq] (transaction index) field shows which postings+belong to the same transaction.+(This number might change if transactions are reordered within the file,+files are parsed/included in a different order, etc.)+.IP \[bu] 2+The amount is separated into \[dq]commodity\[dq] (the symbol) and+\[dq]amount\[dq] (numeric quantity) fields.+.IP \[bu] 2+The numeric amount is repeated in either the \[dq]credit\[dq] or+\[dq]debit\[dq] column, for convenience.+(Those names are not accurate in the accounting sense; it just puts+negative amounts under credit and zero or greater amounts under debit.)+.SS print-unique+.PP+print-unique+.PD 0+.P+.PD+Print transactions which do not reuse an already-seen description.+.PP+Example:+.IP+.nf+\f[C]+$ cat unique.journal+1/1 test+ (acct:one) 1+2/2 test+ (acct:two) 2+$ LEDGER_FILE=unique.journal hledger print-unique+(-f option not supported)+2015/01/01 test+ (acct:one) 1+\f[R]+.fi+.SS register+.PP+register, reg+.PD 0+.P+.PD+Show postings and their running total.+.PP+The register command displays matched postings, across all accounts, in+date order, with their running total or running historical balance.+(See also the \f[C]aregister\f[R] command, which shows matched+transactions in a specific account.)+.PP+register normally shows line per posting, but note that multi-commodity+amounts will occupy multiple lines (one line per commodity).+.PP+It is typically used with a query selecting a particular account, to see+that account\[aq]s activity:+.IP+.nf+\f[C]+$ hledger register checking+2008/01/01 income assets:bank:checking $1 $1+2008/06/01 gift assets:bank:checking $1 $2+2008/06/02 save assets:bank:checking $-1 $1+2008/12/31 pay off assets:bank:checking $-1 0+\f[R]+.fi+.PP+With --date2, it shows and sorts by secondary date instead.+.PP+The \f[C]--historical\f[R]/\f[C]-H\f[R] flag adds the balance from any+undisplayed prior postings to the running total.+This is useful when you want to see only recent activity, with a+historically accurate running balance:+.IP+.nf+\f[C]+$ hledger register checking -b 2008/6 --historical+2008/06/01 gift assets:bank:checking $1 $2+2008/06/02 save assets:bank:checking $-1 $1+2008/12/31 pay off assets:bank:checking $-1 0+\f[R]+.fi+.PP+The \f[C]--depth\f[R] option limits the amount of sub-account detail+displayed.+.PP+The \f[C]--average\f[R]/\f[C]-A\f[R] flag shows the running average+posting amount instead of the running total (so, the final number+displayed is the average for the whole report period).+This flag implies \f[C]--empty\f[R] (see below).+It is affected by \f[C]--historical\f[R].+It works best when showing just one account and one commodity.+.PP+The \f[C]--related\f[R]/\f[C]-r\f[R] flag shows the \f[I]other\f[R]+postings in the transactions of the postings which would normally be+shown.+.PP+The \f[C]--invert\f[R] flag negates all amounts.+For example, it can be used on an income account where amounts are+normally displayed as negative numbers.+It\[aq]s also useful to show postings on the checking account together+with the related account:+.IP+.nf+\f[C]+$ hledger register --related --invert assets:checking+\f[R]+.fi+.PP+With a reporting interval, register shows summary postings, one per+interval, aggregating the postings to each account:+.IP+.nf+\f[C]+$ hledger register --monthly income+2008/01 income:salary $-1 $-1+2008/06 income:gifts $-1 $-2+\f[R]+.fi+.PP+Periods with no activity, and summary postings with a zero amount, are+not shown by default; use the \f[C]--empty\f[R]/\f[C]-E\f[R] flag to see+them:+.IP+.nf+\f[C]+$ hledger register --monthly income -E+2008/01 income:salary $-1 $-1+2008/02 0 $-1+2008/03 0 $-1+2008/04 0 $-1+2008/05 0 $-1+2008/06 income:gifts $-1 $-2+2008/07 0 $-2+2008/08 0 $-2+2008/09 0 $-2+2008/10 0 $-2+2008/11 0 $-2+2008/12 0 $-2+\f[R]+.fi+.PP+Often, you\[aq]ll want to see just one line per interval.+The \f[C]--depth\f[R] option helps with this, causing subaccounts to be+aggregated:+.IP+.nf+\f[C]+$ hledger register --monthly assets --depth 1h+2008/01 assets $1 $1+2008/06 assets $-1 0+2008/12 assets $-1 $-1+\f[R]+.fi+.PP+Note when using report intervals, if you specify start/end dates these+will be adjusted outward if necessary to contain a whole number of+intervals.+This ensures that the first and last intervals are full length and+comparable to the others in the report.+.SS Custom register output+.PP+register uses the full terminal width by default, except on windows.+You can override this by setting the \f[C]COLUMNS\f[R] environment+variable (not a bash shell variable) or by using the+\f[C]--width\f[R]/\f[C]-w\f[R] option.+.PP+The description and account columns normally share the space equally+(about half of (width - 40) each).+You can adjust this by adding a description width as part of+--width\[aq]s argument, comma-separated: \f[C]--width W,D\f[R] .+Here\[aq]s a diagram (won\[aq]t display correctly in --help):+.IP+.nf+\f[C]+<--------------------------------- width (W) ---------------------------------->+date (10) description (D) account (W-41-D) amount (12) balance (12)+DDDDDDDDDD dddddddddddddddddddd aaaaaaaaaaaaaaaaaaa AAAAAAAAAAAA AAAAAAAAAAAA+\f[R]+.fi+.PP+and some examples:+.IP+.nf+\f[C]+$ hledger reg # use terminal width (or 80 on windows)+$ hledger reg -w 100 # use width 100+$ COLUMNS=100 hledger reg # set with one-time environment variable+$ export COLUMNS=100; hledger reg # set till session end (or window resize)+$ hledger reg -w 100,40 # set overall width 100, description width 40+$ hledger reg -w $COLUMNS,40 # use terminal width, & description width 40+\f[R]+.fi+.PP+This command also supports the output destination and output format+options The output formats supported are \f[C]txt\f[R], \f[C]csv\f[R],+and (experimental) \f[C]json\f[R].+.SS register-match+.PP+register-match+.PD 0+.P+.PD+Print the one posting whose transaction description is closest to DESC,+in the style of the register command.+If there are multiple equally good matches, it shows the most recent.+Query options (options, not arguments) can be used to restrict the+search space.+Helps ledger-autosync detect already-seen transactions when importing.+.SS rewrite+.PP+rewrite+.PD 0+.P+.PD+Print all transactions, rewriting the postings of matched transactions.+For now the only rewrite available is adding new postings, like print+--auto.+.PP+This is a start at a generic rewriter of transaction entries.+It reads the default journal and prints the transactions, like print,+but adds one or more specified postings to any transactions matching+QUERY.+The posting amounts can be fixed, or a multiplier of the existing+transaction\[aq]s first posting amount.+.PP+Examples:+.IP+.nf+\f[C]+$ hledger-rewrite.hs \[ha]income --add-posting \[aq](liabilities:tax) *.33 ; income tax\[aq] --add-posting \[aq](reserve:gifts) $100\[aq]+$ hledger-rewrite.hs expenses:gifts --add-posting \[aq](reserve:gifts) *-1\[dq]\[aq]+$ hledger-rewrite.hs -f rewrites.hledger+\f[R]+.fi+.PP+rewrites.hledger may consist of entries like:+.IP+.nf+\f[C]+= \[ha]income amt:<0 date:2017+ (liabilities:tax) *0.33 ; tax on income+ (reserve:grocery) *0.25 ; reserve 25% for grocery+ (reserve:) *0.25 ; reserve 25% for grocery+\f[R]+.fi+.PP+Note the single quotes to protect the dollar sign from bash, and the two+spaces between account and amount.+.PP+More:+.IP+.nf+\f[C]+$ hledger rewrite -- [QUERY] --add-posting \[dq]ACCT AMTEXPR\[dq] ...+$ hledger rewrite -- \[ha]income --add-posting \[aq](liabilities:tax) *.33\[aq]+$ hledger rewrite -- expenses:gifts --add-posting \[aq](budget:gifts) *-1\[dq]\[aq]+$ hledger rewrite -- \[ha]income --add-posting \[aq](budget:foreign currency) *0.25 JPY; diversify\[aq]+\f[R]+.fi+.PP+Argument for \f[C]--add-posting\f[R] option is a usual posting of+transaction with an exception for amount specification.+More precisely, you can use \f[C]\[aq]*\[aq]\f[R] (star symbol) before+the amount to indicate that that this is a factor for an amount of+original matched posting.+If the amount includes a commodity name, the new posting amount will be+in the new commodity; otherwise, it will be in the matched posting+amount\[aq]s commodity.+.SS Re-write rules in a file+.PP+During the run this tool will execute so called \[dq]Automated+Transactions\[dq] found in any journal it process.+I.e instead of specifying this operations in command line you can put+them in a journal file.+.IP+.nf+\f[C]+$ rewrite-rules.journal+\f[R]+.fi+.PP+Make contents look like this:+.IP+.nf+\f[C]+= \[ha]income+ (liabilities:tax) *.33++= expenses:gifts+ budget:gifts *-1+ assets:budget *1+\f[R]+.fi+.PP+Note that \f[C]\[aq]=\[aq]\f[R] (equality symbol) that is used instead+of date in transactions you usually write.+It indicates the query by which you want to match the posting to add new+ones.+.IP+.nf+\f[C]+$ hledger rewrite -- -f input.journal -f rewrite-rules.journal > rewritten-tidy-output.journal+\f[R]+.fi+.PP+This is something similar to the commands pipeline:+.IP+.nf+\f[C]+$ hledger rewrite -- -f input.journal \[aq]\[ha]income\[aq] --add-posting \[aq](liabilities:tax) *.33\[aq] \[rs]+ | hledger rewrite -- -f - expenses:gifts --add-posting \[aq]budget:gifts *-1\[aq] \[rs]+ --add-posting \[aq]assets:budget *1\[aq] \[rs]+ > rewritten-tidy-output.journal+\f[R]+.fi+.PP+It is important to understand that relative order of such entries in+journal is important.+You can re-use result of previously added postings.+.SS Diff output format+.PP+To use this tool for batch modification of your journal files you may+find useful output in form of unified diff.+.IP+.nf+\f[C]+$ hledger rewrite -- --diff -f examples/sample.journal \[aq]\[ha]income\[aq] --add-posting \[aq](liabilities:tax) *.33\[aq]+\f[R]+.fi+.PP+Output might look like:+.IP+.nf+\f[C]+--- /tmp/examples/sample.journal++++ /tmp/examples/sample.journal+\[at]\[at] -18,3 +18,4 \[at]\[at]+ 2008/01/01 income+- assets:bank:checking $1++ assets:bank:checking $1+ income:salary++ (liabilities:tax) 0+\[at]\[at] -22,3 +23,4 \[at]\[at]+ 2008/06/01 gift+- assets:bank:checking $1++ assets:bank:checking $1+ income:gifts++ (liabilities:tax) 0+\f[R]+.fi+.PP+If you\[aq]ll pass this through \f[C]patch\f[R] tool you\[aq]ll get+transactions containing the posting that matches your query be updated.+Note that multiple files might be update according to list of input+files specified via \f[C]--file\f[R] options and \f[C]include\f[R]+directives inside of these files.+.PP+Be careful.+Whole transaction being re-formatted in a style of output from+\f[C]hledger print\f[R].+.PP+See also:+.PP+https://github.com/simonmichael/hledger/issues/99+.SS rewrite vs. print --auto+.PP+This command predates print --auto, and currently does much the same+thing, but with these differences:+.IP \[bu] 2+with multiple files, rewrite lets rules in any file affect all other+files.+print --auto uses standard directive scoping; rules affect only child+files.+.IP \[bu] 2+rewrite\[aq]s query limits which transactions can be rewritten; all are+printed.+print --auto\[aq]s query limits which transactions are printed.+.IP \[bu] 2+rewrite applies rules specified on command line or in the journal.+print --auto applies rules specified in the journal.+.SS roi+.PP+roi+.PD 0+.P+.PD+Shows the time-weighted (TWR) and money-weighted (IRR) rate of return on+your investments.+.PP+At a minimum, you need to supply a query (which could be just an account+name) to select your investment(s) with \f[C]--inv\f[R], and another+query to identify your profit and loss transactions with+\f[C]--pnl\f[R].+.PP+If you do not record changes in the value of your investment manually,+or do not require computation of time-weighted return (TWR),+\f[C]--pnl\f[R] could be an empty query (\f[C]--pnl \[dq]\[dq]\f[R] or+\f[C]--pnl STR\f[R] where \f[C]STR\f[R] does not match any of your+accounts).+.PP+This command will compute and display the internalized rate of return+(IRR) and time-weighted rate of return (TWR) for your investments for+the time period requested.+Both rates of return are annualized before display, regardless of the+length of reporting interval.+.PP+Price directives will be taken into account if you supply appropriate+\f[C]--cost\f[R] or \f[C]--value\f[R] flags (see VALUATION).+.PP+Note, in some cases this report can fail, for these reasons:+.IP \[bu] 2+Error (NotBracketed): No solution for Internal Rate of Return (IRR).+Possible causes: IRR is huge (>1000000%), balance of investment becomes+negative at some point in time.+.IP \[bu] 2+Error (SearchFailed): Failed to find solution for Internal Rate of+Return (IRR).+Either search does not converge to a solution, or converges too slowly.+.PP+Examples:+.IP \[bu] 2+Using roi to compute total return of investment in stocks:+https://github.com/simonmichael/hledger/blob/master/examples/roi-unrealised.ledger+.IP \[bu] 2+Cookbook -> Return on Investment+.SS Semantics of \f[C]--inv\f[R] and \f[C]--pnl\f[R]+.PP+Query supplied to \f[C]--inv\f[R] has to match all transactions that are+related to your investment.+Transactions not matching \f[C]--inv\f[R] will be ignored.+.PP+In these transactions, ROI will conside postings that match+\f[C]--inv\f[R] to be \[dq]investment postings\[dq] and other postings+(not matching \f[C]--inv\f[R]) will be sorted into two categories:+\[dq]cash flow\[dq] and \[dq]profit and loss\[dq], as ROI needs to know+which part of the investment value is your contributions and which is+due to the return on investment.+.IP \[bu] 2+\[dq]Cash flow\[dq] is depositing or withdrawing money, buying or+selling assets, or otherwise converting between your investment+commodity and any other commodity.+Example:+.RS 2+.IP+.nf+\f[C]+2019-01-01 Investing in Snake Oil+ assets:cash -$100+ investment:snake oil++2020-01-01 Selling my Snake Oil+ assets:cash $10+ investment:snake oil = 0+\f[R]+.fi+.RE+.IP \[bu] 2+\[dq]Profit and loss\[dq] is change in the value of your investment:+.RS 2+.IP+.nf+\f[C]+2019-06-01 Snake Oil falls in value+ investment:snake oil = $57+ equity:unrealized profit or loss+\f[R]+.fi+.RE+.PP+All non-investment postings are assumed to be \[dq]cash flow\[dq],+unless they match \f[C]--pnl\f[R] query.+Changes in value of your investment due to \[dq]profit and loss\[dq]+postings will be considered as part of your investment return.+.PP+Example: if you use \f[C]--inv snake --pnl equity:unrealized\f[R], then+postings in the example below would be classifed as:+.IP+.nf+\f[C]+2019-01-01 Snake Oil #1+ assets:cash -$100 ; cash flow posting+ investment:snake oil ; investment posting++2019-03-01 Snake Oil #2+ equity:unrealized pnl -$100 ; profit and loss posting+ snake oil ; investment posting++2019-07-01 Snake Oil #3+ equity:unrealized pnl ; profit and loss posting+ cash -$100 ; cash flow posting+ snake oil $50 ; investment posting+\f[R]+.fi+.SS IRR and TWR explained+.PP+\[dq]ROI\[dq] stands for \[dq]return on investment\[dq].+Traditionally this was computed as a difference between current value of+investment and its initial value, expressed in percentage of the initial+value.+.PP+However, this approach is only practical in simple cases, where+investments receives no in-flows or out-flows of money, and where rate+of growth is fixed over time.+For more complex scenarios you need different ways to compute rate of+return, and this command implements two of them: IRR and TWR.+.PP+Internal rate of return, or \[dq]IRR\[dq] (also called+\[dq]money-weighted rate of return\[dq]) takes into account effects of+in-flows and out-flows.+Naively, if you are withdrawing from your investment, your future gains+would be smaller (in absolute numbers), and will be a smaller percentage+of your initial investment, and if you are adding to your investment,+you will receive bigger absolute gains (but probably at the same rate of+return).+IRR is a way to compute rate of return for each period between in-flow+or out-flow of money, and then combine them in a way that gives you a+compound annual rate of return that investment is expected to generate.+.PP+As mentioned before, in-flows and out-flows would be any cash that you+personally put in or withdraw, and for the \[dq]roi\[dq] command, these+are the postings that match the query in the\f[C]--inv\f[R] argument and+NOT match the query in the\f[C]--pnl\f[R] argument.+.PP+If you manually record changes in the value of your investment as+transactions that balance them against \[dq]profit and loss\[dq] (or+\[dq]unrealized gains\[dq]) account or use price directives, then in+order for IRR to compute the precise effect of your in-flows and+out-flows on the rate of return, you will need to record the value of+your investement on or close to the days when in- or out-flows occur.+.PP+In technical terms, IRR uses the same approach as computation of net+present value, and tries to find a discount rate that makes net present+value of all the cash flows of your investment to add up to zero.+This could be hard to wrap your head around, especially if you+haven\[aq]t done discounted cash flow analysis before.+Implementation of IRR in hledger should produce results that match the+\f[C]XIRR\f[R] formula in Excel.+.PP+Second way to compute rate of return that \f[C]roi\f[R] command+implements is called \[dq]time-weighted rate of return\[dq] or+\[dq]TWR\[dq].+Like IRR, it will also break the history of your investment into periods+between in-flows, out-flows and value changes, to compute rate of return+per each period and then a compound rate of return.+However, internal workings of TWR are quite different.+.PP+TWR represents your investment as an imaginary \[dq]unit fund\[dq] where+in-flows/ out-flows lead to buying or selling \[dq]units\[dq] of your+investment and changes in its value change the value of \[dq]investment+unit\[dq].+Change in \[dq]unit price\[dq] over the reporting period gives you rate+of return of your investment.+.PP+References: * Explanation of rate of return * Explanation of IRR *+Explanation of TWR * Examples of computing IRR and TWR and discussion of+the limitations of both metrics+.SS stats+.PP+stats+.PD 0+.P+.PD+Show some journal statistics.+.PP+The stats command displays summary information for the whole journal, or+a matched part of it.+With a reporting interval, it shows a report for each report period.+.PP+Example:+.IP+.nf+\f[C]+$ hledger stats+Main journal file : /src/hledger/examples/sample.journal+Included journal files : +Transactions span : 2008-01-01 to 2009-01-01 (366 days)+Last transaction : 2008-12-31 (2333 days ago)+Transactions : 5 (0.0 per day)+Transactions last 30 days: 0 (0.0 per day)+Transactions last 7 days : 0 (0.0 per day)+Payees/descriptions : 5+Accounts : 8 (depth 3)+Commodities : 1 ($)+Market prices : 12 ($)+\f[R]+.fi+.PP+This command also supports output destination and output format+selection.+.SS tags+.PP+tags+.PD 0+.P+.PD+List the unique tag names used in the journal.+With a TAGREGEX argument, only tag names matching the regular expression+(case insensitive) are shown.+With QUERY arguments, only transactions matching the query are+considered.+.PP+With the --values flag, the tags\[aq] unique values are listed instead.+.PP+With --parsed flag, all tags or values are shown in the order they are+parsed from the input data, including duplicates.+.PP+With -E/--empty, any blank/empty values will also be shown, otherwise+they are omitted.+.SS test+.PP+test+.PD 0+.P+.PD+Run built-in unit tests.+.PP+This command runs the unit tests built in to hledger and hledger-lib,+printing the results on stdout.+If any test fails, the exit code will be non-zero.+.PP+This is mainly used by hledger developers, but you can also use it to+sanity-check the installed hledger executable on your platform.+All tests are expected to pass - if you ever see a failure, please+report as a bug!+.PP+This command also accepts tasty test runner options, written after a --+(double hyphen).+Eg to run only the tests in Hledger.Data.Amount, with ANSI colour codes+disabled:+.IP+.nf+\f[C]+$ hledger test -- -pData.Amount --color=never+\f[R]+.fi+.PP+For help on these, see https://github.com/feuerbach/tasty#options+(\f[C]-- --help\f[R] currently doesn\[aq]t show them).+.SS About add-on commands+.PP+Add-on commands are programs or scripts in your PATH+.IP \[bu] 2+whose name starts with \f[C]hledger-\f[R]+.IP \[bu] 2+whose name ends with a recognised file extension:+\f[C].bat\f[R],\f[C].com\f[R],\f[C].exe\f[R],+\f[C].hs\f[R],\f[C].lhs\f[R],\f[C].pl\f[R],\f[C].py\f[R],\f[C].rb\f[R],\f[C].rkt\f[R],\f[C].sh\f[R]+or none+.IP \[bu] 2+and (on unix, mac) which are executable by the current user.+.PP+Add-ons are a relatively easy way to add local features or experiment+with new ideas.+They can be written in any language, but haskell scripts have a big+advantage: they can use the same hledger library functions that built-in+commands use for command-line options, parsing and reporting.+Some experimental/example add-on scripts can be found in the hledger+repo\[aq]s bin/ directory.+.PP+Note in a hledger command line, add-on command flags must have a double+dash (\f[C]--\f[R]) preceding them.+Eg you must write:+.IP+.nf+\f[C]+$ hledger web -- --serve+\f[R]+.fi+.PP+and not:+.IP+.nf+\f[C]+$ hledger web --serve+\f[R]+.fi+.PP+(because the \f[C]--serve\f[R] flag belongs to \f[C]hledger-web\f[R],+not \f[C]hledger\f[R]).+.PP+The \f[C]-h/--help\f[R] and \f[C]--version\f[R] flags don\[aq]t require+\f[C]--\f[R].+.PP+If you have any trouble with this, remember you can always run the+add-on program directly, eg:+.IP+.nf+\f[C]+$ hledger-web --serve+\f[R]+.fi+.SH JOURNAL FORMAT+.PP+hledger\[aq]s default file format, representing a General Journal.+.PP+hledger\[aq]s usual data source is a plain text file containing journal+entries in hledger journal format.+This file represents a standard accounting general journal.+I use file names ending in \f[C].journal\f[R], but that\[aq]s not+required.+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+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.+.PP+You can use hledger without learning any more about this file; just use+the add or web or import commands to create and update it.+.PP+Many users, though, edit the journal file with a text editor, and track+changes with a version control system such as git.+Editor addons such as ledger-mode or hledger-mode for Emacs, vim-ledger+for Vim, and hledger-vscode for Visual Studio Code, make this easier,+adding colour, formatting, tab completion, and useful commands.+See Editor configuration at hledger.org for the full list.+.PP+Here\[aq]s a description of each part of the file format (and+hledger\[aq]s data model).+These are mostly in the order you\[aq]ll use them, but in some cases+related concepts have been grouped together for easy reference, or+linked before they are introduced, so feel free to skip over anything+that looks unnecessary right now.+.SS Transactions+.PP+Transactions are the main unit of information in a journal file.+They represent events, typically a movement of some quantity of+commodities between two or more named accounts.+.PP+Each transaction is recorded as a journal entry, beginning with a simple+date in column 0.+This can be followed by any of the following optional fields, separated+by spaces:+.IP \[bu] 2+a status character (empty, \f[C]!\f[R], or \f[C]*\f[R])+.IP \[bu] 2+a code (any short number or text, enclosed in parentheses)+.IP \[bu] 2+a description (any remaining text until end of line or a semicolon)+.IP \[bu] 2+a comment (any remaining text following a semicolon until end of line,+and any following indented lines beginning with a semicolon)+.IP \[bu] 2+0 or more indented \f[I]posting\f[R] lines, describing what was+transferred and the accounts involved (indented comment lines are also+allowed, but not blank lines or non-indented lines).+.PP+Here\[aq]s a simple journal file containing one transaction:+.IP+.nf+\f[C]+2008/01/01 income+ assets:bank:checking $1+ income:salary $-1+\f[R]+.fi+.SS Dates+.SS Simple dates+.PP+Dates in the journal file use \f[I]simple dates\f[R] format:+\f[C]YYYY-MM-DD\f[R] or \f[C]YYYY/MM/DD\f[R] or \f[C]YYYY.MM.DD\f[R],+with leading zeros optional.+The year may be omitted, in which case it will be inferred from the+context: the current transaction, the default year set with a default+year directive, or the current date when the command is run.+Some examples: \f[C]2010-01-31\f[R], \f[C]2010/01/31\f[R],+\f[C]2010.1.31\f[R], \f[C]1/31\f[R].+.PP+(The UI also accepts simple dates, as well as the more flexible smart+dates documented in the hledger manual.)+.SS Secondary dates+.PP+Real-life transactions sometimes involve more than one date - eg the+date you write a cheque, and the date it clears in your bank.+When you want to model this, for more accurate daily balances, you can+specify individual posting dates.+.PP+Or, you can use the older \f[I]secondary date\f[R] feature (Ledger calls+it auxiliary date or effective date).+Note: we support this for compatibility, but I usually recommend+avoiding this feature; posting dates are almost always clearer and+simpler.+.PP+A secondary date is written after the primary date, following an equals+sign.+If the year is omitted, the primary date\[aq]s year is assumed.+When running reports, the primary (left) date is used by default, but+with the \f[C]--date2\f[R] flag (or \f[C]--aux-date\f[R] or+\f[C]--effective\f[R]), the secondary (right) date will be used instead.+.PP+The meaning of secondary dates is up to you, but it\[aq]s best to follow+a consistent rule.+Eg \[dq]primary = the bank\[aq]s clearing date, secondary = date the+transaction was initiated, if different\[dq], as shown here:+.IP+.nf+\f[C]+2010/2/23=2/19 movie ticket+ expenses:cinema $10+ assets:checking+\f[R]+.fi+.IP+.nf+\f[C]+$ hledger register checking+2010-02-23 movie ticket assets:checking $-10 $-10+\f[R]+.fi+.IP+.nf+\f[C]+$ hledger register checking --date2+2010-02-19 movie ticket assets:checking $-10 $-10+\f[R]+.fi+.SS Posting dates+.PP+You can give individual postings a different date from their parent+transaction, by adding a posting comment containing a tag (see below)+like \f[C]date:DATE\f[R].+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+ expenses:food $10 ; food purchased on saturday 5/30+ assets:checking ; bank cleared it on monday, date:6/1+\f[R]+.fi+.IP+.nf+\f[C]+$ hledger -f t.j register food+2015-05-30 expenses:food $10 $10+\f[R]+.fi+.IP+.nf+\f[C]+$ hledger -f t.j register checking+2015-06-01 assets:checking $-10 $-10+\f[R]+.fi+.PP+DATE should be a simple date; if the year is not specified it will use+the year of the transaction\[aq]s date.+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.+.PP+Ledger\[aq]s earlier, more compact bracketed date syntax is also+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.+With this syntax, DATE infers its year from the transaction and DATE2+infers its year from DATE.+.SS Status+.PP+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:+.PP+.TS+tab(@);+l l.+T{+mark \ +T}@T{+status+T}+_+T{+\ +T}@T{+unmarked+T}+T{+\f[C]!\f[R]+T}@T{+pending+T}+T{+\f[C]*\f[R]+T}@T{+cleared+T}+.TE+.PP+When reporting, you can filter by status with the+\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.+.PP+Note, in Ledger and in older versions of hledger, the \[dq]unmarked\[dq]+state is called \[dq]uncleared\[dq].+As of hledger 1.3 we have renamed it to unmarked for clarity.+.PP+To replicate Ledger and old hledger\[aq]s behaviour of also matching+pending, combine -U and -P.+.PP+Status marks are optional, but can be helpful eg for reconciling with+real-world accounts.+Some editor modes provide highlighting and shortcuts for working with+status.+Eg in Emacs ledger-mode, you can toggle transaction status with C-c C-e,+or posting status with C-c C-c.+.PP+What \[dq]uncleared\[dq], \[dq]pending\[dq], and \[dq]cleared\[dq]+actually mean is up to you.+Here\[aq]s one suggestion:+.PP+.TS+tab(@);+lw(9.7n) lw(60.3n).+T{+status+T}@T{+meaning+T}+_+T{+uncleared+T}@T{+recorded but not yet reconciled; needs review+T}+T{+pending+T}@T{+tentatively reconciled (if needed, eg during a big reconciliation)+T}+T{+cleared+T}@T{+complete, reconciled as far as possible, and considered correct+T}+.TE+.PP+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+bank soon (like uncashed checks), and no flags to see the most+up-to-date state of your finances.+.SS Description+.PP+A transaction\[aq]s description is the rest of the line following the+date and status mark (or until a comment begins).+Sometimes called the \[dq]narration\[dq] in traditional bookkeeping, it+can be used for whatever you wish, or left blank.+Transaction descriptions can be queried, unlike comments.+.SS Payee and note+.PP+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]).+This may be worthwhile if you need to do more precise querying and+pivoting by payee or by note.+.SS Comments+.PP+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.)+.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.+Transaction and posting comments must begin with a semicolon+(\f[C];\f[R]).+.PP+Some examples:+.IP+.nf+\f[C]+# a file comment+; another file comment+* also a file comment, useful in org/orgstruct mode++comment+A multiline file comment, which continues+until a line containing just \[dq]end comment\[dq]+(or end of file).+end comment++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]+.fi+.PP+You can also comment larger regions of a file using \f[C]comment\f[R]+and \f[C]end comment\f[R] directives.+.SS Tags+.PP+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]+2017/1/16 bought groceries ; sometag:+\f[R]+.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]+ expenses:food $10 ; a-posting-tag: the tag value+\f[R]+.fi+.PP+Note this means hledger\[aq]s tag values can not contain commas or+newlines.+Ending at commas means you can write multiple short tags on one line,+comma separated:+.IP+.nf+\f[C]+ assets:checking ; a comment containing tag1:, tag2: some value ...+\f[R]+.fi+.PP+Here,+.IP \[bu] 2+\[dq]\f[C]a comment containing\f[R]\[dq] is just comment text, not a tag+.IP \[bu] 2+\[dq]\f[C]tag1\f[R]\[dq] is a tag with no value+.IP \[bu] 2+\[dq]\f[C]tag2\f[R]\[dq] is another tag, whose value is+\[dq]\f[C]some value ...\f[R]\[dq]+.PP+Tags in a transaction comment affect the transaction and all of its+postings, while tags in a posting comment affect only that posting.+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]):+.IP+.nf+\f[C]+1/1 a transaction ; A:, TAG2:+ ; third-tag: a third transaction tag, <- with a value+ (a) $1 ; posting-tag:+\f[R]+.fi+.PP+Tags are like Ledger\[aq]s metadata feature, except hledger\[aq]s tag+values are simple strings.+.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:+.IP \[bu] 2+(optional) a status character (empty, \f[C]!\f[R], or \f[C]*\f[R]),+followed by a space+.IP \[bu] 2+(required) an account name (any text, optionally containing \f[B]single+spaces\f[R], until end of line or a double space)+.IP \[bu] 2+(optional) \f[B]two or more spaces\f[R] or tabs followed by an amount.+.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+Be sure to note the unusual two-space delimiter between account name and+amount.+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.+.SS Virtual postings+.PP+A posting with a parenthesised account name is called a \f[I]virtual+posting\f[R] or \f[I]unbalanced posting\f[R], which means it is exempt+from the usual rule that a transaction\[aq]s postings must balance add+up to zero.+.PP+This is not part of double entry accounting, so you might choose to+avoid this feature.+Or you can use it sparingly for certain special cases where it can be+convenient.+Eg, you could set opening balances without using a balancing equity+account:+.IP+.nf+\f[C]+1/1 opening balances+ (assets:checking) $1000+ (assets:savings) $2000+\f[R]+.fi+.PP+A posting with a bracketed account name is called a \f[I]balanced+virtual posting\f[R].+The balanced virtual postings in a transaction must add up to zero+(separately from other postings).+Eg:+.IP+.nf+\f[C]+1/1 buy food with cash, update budget envelope subaccounts, & something else+ assets:cash $-10 ; <- these balance+ expenses:food $7 ; <-+ expenses:food $3 ; <-+ [assets:checking:budget:food] $-10 ; <- and these balance+ [assets:checking:available] $10 ; <-+ (something:else) $5 ; <- not required to balance+\f[R]+.fi+.PP+Ordinary non-parenthesised, non-bracketed postings are called \f[I]real+postings\f[R].+You can exclude virtual postings from reports with the+\f[C]-R/--real\f[R] flag or \f[C]real:1\f[R] query.+.SS Account names+.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+five top-level accounts: \f[C]assets\f[R], \f[C]liabilities\f[R],+\f[C]revenue\f[R], \f[C]expenses\f[R], and \f[C]equity\f[R].+.PP+Account names may contain single spaces, eg:+\f[C]assets:accounts receivable\f[R].+Because of this, they must always be followed by \f[B]two or more+spaces\f[R] (or newline).+.PP+Account names can be aliased.+.SS Amounts+.PP+After the account name, there is usually an amount.+(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 preceded by a minus sign (or a plus sign, though plus is+the default), The sign can be written before or after a left-side+commodity symbol:+.IP+.nf+\f[C]+-$1+$-1+\f[R]+.fi+.PP+One or more spaces between the sign and the number are acceptable when+parsing (but they won\[aq]t be displayed in output):+.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+.SS Decimal marks, digit group marks+.PP+A decimal mark can be written as a period or a comma:+.IP+.nf+\f[C]+1.23+1,23456780000009+\f[R]+.fi+.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 digit group mark and no decimal mark+is ambiguous.+Are these digit group marks or decimal marks ?+.IP+.nf+\f[C]+1,000+1.000+\f[R]+.fi+.PP+If you don\[aq]t tell it otherwise, hledger will assume both of the+above are decimal marks, parsing both numbers as 1.+To prevent confusion and undetected typos, especially if your data+contains digit group marks, we recommend you explicitly declare the+decimal mark (and optionally a digit group mark), for each commodity,+using \f[C]commodity\f[R] directives (described below):+.IP+.nf+\f[C]+# number formats for $, EUR, INR and the no-symbol commodity:+commodity $1,000.00+commodity EUR 1.000,00+commodity INR 9,99,99,999.00+commodity 1 000 000.9455+\f[R]+.fi+.PP+Note, \f[C]commodity\f[R] directives declare both the number format for+parsing input, and the display style for showing output.+For the former, they are position-sensitive, affecting only following+amounts, so commodity directives should be at the top of your journal+file.+This is discussed more on #793.+.PP+.SS Commodity display style+.PP+For the amounts in each commodity, hledger chooses a consistent display+style to use in most reports.+(Except for price amounts, which are always displayed as written).+The display style is inferred as follows.+.PP+First, if a default commodity is declared with \f[C]D\f[R], this+commodity and its style is applied to any no-symbol amounts in the+journal.+.PP+Then each commodity\[aq]s style is inferred from one of the following,+in order of preference:+.IP \[bu] 2+The commodity directive for that commodity (including the no-symbol+commodity), if any.+.IP \[bu] 2+The amounts in that commodity seen in the journal\[aq]s transactions.+(Posting amounts only; prices and periodic or auto rules are ignored,+currently.)+.IP \[bu] 2+The built-in fallback style, which looks like this: \f[C]$1000.00\f[R].+(Symbol on the left, period decimal mark, two decimal places.)+.PP+A style is inferred from journal amounts as follows:+.IP \[bu] 2+Use the general style (decimal mark, symbol placement) of the first+amount+.IP \[bu] 2+Use the first-seen digit group style (digit group mark, digit group+sizes), if any+.IP \[bu] 2+Use the maximum number of decimal places of all.+.PP+Transaction price amounts don\[aq]t affect the commodity display style+directly, but occasionally they can do so indirectly (eg when a+posting\[aq]s amount is inferred using a transaction price).+If you find this causing problems, use a commodity directive to fix the+display style.+.PP+To summarise: each commodity\[aq]s amounts will be normalised to (a) the+style declared by a \f[C]commodity\f[R] directive, or (b) the style of+the first posting amount in the journal, with the first-seen digit group+style and the maximum-seen number of decimal places.+So if your reports are showing amounts in a way you don\[aq]t like, eg+with too many decimal places, use a commodity directive.+Some examples:+.IP+.nf+\f[C]+# declare euro, dollar, bitcoin and no-symbol commodities and set their +# input number formats and output display styles:+commodity EUR 1.000,+commodity $1000.00+commodity 1000.00000000 BTC+commodity 1 000.+\f[R]+.fi+.SS Rounding+.PP+Amounts are stored internally as decimal numbers with up to 255 decimal+places, and displayed with the number of decimal places specified by the+commodity display style.+Note, hledger uses banker\[aq]s rounding: it rounds to the nearest even+number, eg 0.5 displayed with zero decimal places is \[dq]0\[dq]).+(Guaranteed since hledger 1.17.1; in older versions this could vary if+hledger was built with Decimal < 0.5.1.)+.SS Transaction prices+.PP+Within a transaction, you can note an amount\[aq]s price in another+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.+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.+.PP+There are several ways to record a transaction price:+.IP "1." 3+Write the price per unit, as \f[C]\[at] UNITPRICE\f[R] after the amount:+.RS 4+.IP+.nf+\f[C]+2009/1/1+ assets:euros \[Eu]100 \[at] $1.35 ; one hundred euros purchased at $1.35 each+ assets:dollars ; balancing amount is -$135.00+\f[R]+.fi+.RE+.IP "2." 3+Write the total price, as \f[C]\[at]\[at] TOTALPRICE\f[R] after the+amount:+.RS 4+.IP+.nf+\f[C]+2009/1/1+ assets:euros \[Eu]100 \[at]\[at] $135 ; one hundred euros purchased at $135 for the lot+ assets:dollars+\f[R]+.fi+.RE+.IP "3." 3+Specify amounts for all postings, using exactly two commodities, and let+hledger infer the price that balances the transaction:+.RS 4+.IP+.nf+\f[C]+2009/1/1+ assets:euros \[Eu]100 ; one hundred euros purchased+ assets:dollars $-135 ; for $135+\f[R]+.fi+.RE+.IP "4." 3+Like 1, but the \f[C]\[at]\f[R] is parenthesised, i.e.+\f[C](\[at])\f[R]; this is for compatibility with Ledger journals+(Virtual posting costs), and is equivalent to 1 in hledger.+.IP "5." 3+Like 2, but as in 4 the \f[C]\[at]\[at]\f[R] is parenthesised, i.e.+\f[C](\[at]\[at])\f[R]; in hledger, this is equivalent to 2.+.PP+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:+.IP+.nf+\f[C]+$ 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]+.fi+.PP+Note -B is sensitive to the order of postings when a transaction price+is inferred: the inferred price will be in the commodity of the last+amount.+So if example 3\[aq]s postings are reversed, while the transaction is+equivalent, -B shows something different:+.IP+.nf+\f[C]+2009/1/1+ assets:dollars $-135 ; 135 dollars sold+ assets:euros \[Eu]100 ; for 100 euros+\f[R]+.fi+.IP+.nf+\f[C]+$ hledger bal -N --flat -B+ \[Eu]-100 assets:dollars # <- the dollars\[aq] selling price+ \[Eu]100 assets:euros+\f[R]+.fi+.SS Lot prices, lot dates+.PP+Ledger allows another kind of price, lot price (four variants:+\f[C]{UNITPRICE}\f[R], \f[C]{{TOTALPRICE}}\f[R],+\f[C]{=FIXEDUNITPRICE}\f[R], \f[C]{{=FIXEDTOTALPRICE}}\f[R]), and/or a+lot date (\f[C][DATE]\f[R]) to be specified.+These are normally used to select a lot when selling investments.+hledger will parse these, for compatibility with Ledger journals, but+currently ignores them.+A transaction price, lot price and/or lot date may appear in any order,+after the posting amount and before the balance assertion if any.+.SS Balance assertions+.PP+hledger supports Ledger-style balance assertions in journal files.+These look like, for example, \f[C]= EXPECTEDBALANCE\f[R] following a+posting\[aq]s amount.+Eg here we assert the expected dollar balance in accounts a and b after+each posting:+.IP+.nf+\f[C]+2013/1/1+ a $1 =$1+ b =$-1++2013/1/2+ a $1 =$2+ b $-1 =$-2+\f[R]+.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+\f[C]-I/--ignore-assertions\f[R] flag, which can be useful for+troubleshooting or for reading Ledger files.+(Note: this flag currently does not disable balance assignments, below).+.SS Assertions and ordering+.PP+hledger sorts an account\[aq]s postings and assertions first by date and+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+differently-dated transactions within the journal.+But if you reorder same-dated transactions or postings, assertions might+break and require updating.+This order dependence does bring an advantage: precise control over the+order of postings and assertions within a day, so you can assert+intra-day balances.+.SS Assertions and included files+.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+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.+.SS Assertions and multiple -f options+.PP+Balance assertions don\[aq]t work well across files specified with+multiple -f options.+Use include or concatenate the files instead.+.SS Assertions and commodities+.PP+The asserted balance must be a simple single-commodity amount, and in+fact the assertion checks only this commodity\[aq]s balance within the+(possibly multi-commodity) account balance.+This is how assertions work in Ledger also.+We could call this a \[dq]partial\[dq] balance assertion.+.PP+To assert the balance of more than one commodity in an account, you can+write multiple postings, each asserting one commodity\[aq]s balance.+.PP+You can make a stronger \[dq]total\[dq] balance assertion by writing a+double equals sign (\f[C]== EXPECTEDBALANCE\f[R]).+This asserts that there are no other unasserted commodities in the+account (or, that their balance is 0).+.IP+.nf+\f[C]+2013/1/1+ a $1+ a 1\[Eu]+ b $-1+ c -1\[Eu]++2013/1/2 ; These assertions succeed+ a 0 = $1+ a 0 = 1\[Eu]+ b 0 == $-1+ c 0 == -1\[Eu]++2013/1/3 ; This assertion fails as \[aq]a\[aq] also contains 1\[Eu]+ a 0 == $1+\f[R]+.fi+.PP+It\[aq]s not yet possible to make a complete assertion about a balance+that has multiple commodities.+One workaround is to isolate each commodity into its own subaccount:+.IP+.nf+\f[C]+2013/1/1+ a:usd $1+ a:euro 1\[Eu]+ b++2013/1/2+ a 0 == 0+ a:usd 0 == $1+ a:euro 0 == 1\[Eu]+\f[R]+.fi+.SS Assertions and prices+.PP+Balance assertions ignore transaction prices, and should normally be+written without one:+.IP+.nf+\f[C]+2019/1/1+ (a) $1 \[at] \[Eu]1 = $1+\f[R]+.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+\f[I]assignments\f[R] do use them (see below).+.SS Assertions and subaccounts+.PP+The balance assertions above (\f[C]=\f[R] and \f[C]==\f[R]) do not count+the balance from subaccounts; they check the account\[aq]s exclusive+balance only.+You can assert the balance including subaccounts by writing \f[C]=*\f[R]+or \f[C]==*\f[R], eg:+.IP+.nf+\f[C]+2019/1/1+ equity:opening balances+ checking:a 5+ checking:b 5+ checking 1 ==* 11+\f[R]+.fi+.SS Assertions and virtual postings+.PP+Balance assertions are checked against all postings, both real and+virtual.+They are not affected by the \f[C]--real/-R\f[R] flag or \f[C]real:\f[R]+query.+.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.+.SS Balance assignments+.PP+Ledger-style balance assignments are also supported.+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]+; 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]+.fi+.PP+or when adjusting a balance to reality:+.IP+.nf+\f[C]+; no cash left; update balance, record any untracked spending as a generic expense+2016/1/15+ assets:cash = $0+ expenses:misc+\f[R]+.fi+.PP+The calculated amount depends on the account\[aq]s balance in the+commodity at that point (which depends on the previously-dated postings+of the commodity to that account since the last balance assertion or+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.+.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+ (a) = $1 \[at] \[Eu]2+\f[R]+.fi+.IP+.nf+\f[C]+$ hledger print --explicit+2019-01-01+ (a) $1 \[at] \[Eu]2 = $1 \[at] \[Eu]2+\f[R]+.fi+.SS Directives+.PP+A directive is a line in the journal beginning with a special keyword,+that influences how the journal is processed.+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).+.PP+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.+Note part of this table is hidden when viewed in a web browser - scroll+it sideways to see more.+.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{+\f[C]account\f[R]+T}@T{+T}@T{+any text+T}@T{+document account names, declare account types & display order+T}@T{+all entries in all files, before or after+T}+T{+\f[C]alias\f[R]+T}@T{+\f[C]end aliases\f[R]+T}@T{+T}@T{+rewrite account names+T}@T{+following entries until end of current file or end directive+T}+T{+\f[C]apply account\f[R]+T}@T{+\f[C]end apply account\f[R]+T}@T{+T}@T{+prepend a common parent to account names+T}@T{+following entries until end of current file or end directive+T}+T{+\f[C]comment\f[R]+T}@T{+\f[C]end comment\f[R]+T}@T{+T}@T{+ignore part of journal+T}@T{+following entries until end of current file or end directive+T}+T{+\f[C]commodity\f[R]+T}@T{+T}@T{+\f[C]format\f[R]+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{+\f[C]D\f[R]+T}@T{+T}@T{+T}@T{+declare a commodity to be used for commodityless amounts, and its number+notation & display style+T}@T{+default commodity: following commodityless entries until end of current+file; number notation: following entries in that commodity until end of+current file; display style: amounts of that commodity in reports+T}+T{+\f[C]include\f[R]+T}@T{+T}@T{+T}@T{+include entries/directives from another file+T}@T{+what the included directives affect+T}+T{+[\f[C]payee\f[R]]+T}@T{+T}@T{+T}@T{+declare a payee name+T}@T{+following entries until end of current file+T}+T{+\f[C]P\f[R]+T}@T{+T}@T{+T}@T{+declare a market price for a commodity+T}@T{+amounts of that commodity in reports, when -V is used+T}+T{+\f[C]Y\f[R]+T}@T{+T}@T{+T}@T{+declare a year for yearless dates+T}@T{+following entries until end of current file+T}+T{+\f[C]=\f[R]+T}@T{+T}@T{+T}@T{+declare an auto posting rule, adding postings to other transactions+T}@T{+all entries in parent/current/child files (but not sibling files, see+#1212)+T}+.TE+.PP+And some definitions:+.PP+.TS+tab(@);+lw(6.0n) lw(64.0n).+T{+subdirective+T}@T{+optional indented directive line immediately following a parent+directive+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+.PP+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.+.SS Directives and multiple files+.PP+If you use multiple \f[C]-f\f[R]/\f[C]--file\f[R] options, or the+\f[C]include\f[R] directive, hledger will process multiple input files.+But note that directives which affect input (see above) typically last+only until the end of the file in which they occur.+.PP+This may seem inconvenient, but it\[aq]s intentional; it makes reports+stable and deterministic, independent of the order of input.+Otherwise you could see different numbers if you happened to write -f+options in a different order, or if you moved includes around while+cleaning up your files.+.PP+It can be surprising though; for example, it means that \f[C]alias\f[R]+directives do not affect parent or sibling files (see below).+.SS Comment blocks+.PP+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.+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]+include FILEPATH+\f[R]+.fi+.PP+Only journal files can include, and only journal, timeclock or timedot+files can be included (not CSV files, currently).+.PP+If the file path does not begin with a slash, it is relative to the+current file\[aq]s folder.+.PP+A tilde means home directory, eg: \f[C]include \[ti]/main.journal\f[R].+.PP+The path may contain glob patterns to match multiple files, eg:+\f[C]include *.journal\f[R].+.PP+There is limited support for recursive wildcards: \f[C]**/\f[R] (the+slash is required) matches 0 or more subdirectories.+It\[aq]s not super convenient since you have to avoid include cycles and+including directories, but this can be done, eg:+\f[C]include */**/*.journal\f[R].+.PP+The path may also be prefixed to force a specific file format,+overriding the file extension (as described in hledger.1 -> Input+files): \f[C]include timedot:\[ti]/notes/2020*.md\f[R].+.SS Default year+.PP+You can set a default year to be used for subsequent dates which+don\[aq]t specify a year.+This is a line beginning with \f[C]Y\f[R] followed by the year.+Eg:+.IP+.nf+\f[C]+Y2009 ; set default year to 2009++12/15 ; equivalent to 2009/12/15+ expenses 1+ assets++Y2010 ; change default year to 2010++2009/1/30 ; specifies the year, not affected+ expenses 1+ assets++1/31 ; equivalent to 2010/1/31+ expenses 1+ assets+\f[R]+.fi+.SS Declaring payees+.PP+The \f[C]payee\f[R] directive can be used to declare a limited set of+payees which may appear in transaction descriptions.+The \[dq]payees\[dq] check will report an error if any transaction+refers to a payee that has not been declared.+Eg:+.IP+.nf+\f[C]+payee Whole Foods+\f[R]+.fi+.SS Declaring commodities+.PP+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 (period or comma) 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 a commodity\[aq]s display style in output - decimal and+digit group marks, number of decimal places, symbol placement etc.+.PP+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.+It may be written on a single line, like this:+.IP+.nf+\f[C]+; commodity EXAMPLEAMOUNT++; 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]+.fi+.PP+or on multiple lines, using the \[dq]format\[dq] subdirective.+(In this case the commodity symbol appears twice and should be the same+in both places.):+.IP+.nf+\f[C]+; commodity SYMBOL+; format EXAMPLEAMOUNT++; 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+ format INR 1,00,00,000.00+\f[R]+.fi+.PP+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.+.PP+Note hledger normally uses banker\[aq]s rounding, so 0.5 displayed with+zero decimal digits is \[dq]0\[dq].+(More at Commodity display style.)+.SS Commodity error checking+.PP+In strict mode, enabled with the \f[C]-s\f[R]/\f[C]--strict\f[R] flag,+hledger will report an error if a commodity symbol is used that has not+been declared by a \f[C]commodity\f[R] directive.+This works similarly to account error checking, see the notes there for+more details.+.SS Default commodity+.PP+The \f[C]D\f[R] directive sets a default commodity, to be used for+amounts without a commodity symbol (ie, plain numbers).+This commodity will be applied to all subsequent commodity-less amounts,+or until the next \f[C]D\f[R] directive.+(Note, this is different from Ledger\[aq]s \f[C]D\f[R].)+.PP+For compatibility/historical reasons, \f[C]D\f[R] also acts like a+\f[C]commodity\f[R] directive, setting the commodity\[aq]s display style+(for output) and decimal mark (for parsing input).+As with \f[C]commodity\f[R], the amount must always be written with a+decimal mark (period or comma).+If both directives are used, \f[C]commodity\f[R]\[aq]s style takes+precedence.+.PP+The syntax is \f[C]D AMOUNT\f[R].+Eg:+.IP+.nf+\f[C]+; commodity-less amounts should be treated as dollars+; (and displayed with the dollar sign on the left, thousands separators and two decimal places)+D $1,000.00++1/1+ a 5 ; <- commodity-less amount, parsed as $5 and displayed as $5.00+ b+\f[R]+.fi+.SS Declaring market prices+.PP+The \f[C]P\f[R] directive declares a market price, which is an exchange+rate between two commodities on a certain date.+(In Ledger, they are called \[dq]historical prices\[dq].) These are+often obtained from a stock exchange, cryptocurrency exchange, or the+foreign exchange market.+.PP+Here is the format:+.IP+.nf+\f[C]+P DATE COMMODITYA COMMODITYBAMOUNT+\f[R]+.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]+P 2009/1/1 \[Eu] $1.35+P 2010/1/1 \[Eu] $1.40+\f[R]+.fi+.PP+The \f[C]-V\f[R], \f[C]-X\f[R] and \f[C]--value\f[R] flags use these+market prices to show amount values in another commodity.+See Valuation.+.SS Declaring accounts+.PP+\f[C]account\f[R] directives can be used to declare accounts (ie, the+places that amounts are transferred from and to).+Though not required, these declarations can provide several benefits:+.IP \[bu] 2+They can document your intended chart of accounts, providing a+reference.+.IP \[bu] 2+They can help hledger know your accounts\[aq] types (asset, liability,+equity, revenue, expense), useful for reports like balancesheet and+incomestatement.+.IP \[bu] 2+They control account display order in reports, allowing non-alphabetic+sorting (eg Revenues to appear above Expenses).+.IP \[bu] 2+They can store extra information about accounts (account numbers, notes,+etc.)+.IP \[bu] 2+They help with account name completion in the add command, hledger-iadd,+hledger-web, ledger-mode etc.+.IP \[bu] 2+In strict mode, they restrict which accounts may be posted to by+transactions, which helps detect typos.+.PP+The simplest form is just the word \f[C]account\f[R] followed by a+hledger-style account name, eg this account directive declares the+\f[C]assets:bank:checking\f[R] account:+.IP+.nf+\f[C]+account assets:bank:checking+\f[R]+.fi+.SS Account error checking+.PP+By default, accounts come into existence when a transaction references+them by name.+This is convenient, but it means hledger can\[aq]t warn you when you+mis-spell an account name in the journal.+Usually you\[aq]ll find the error later, as an extra account in balance+reports, or an incorrect balance when reconciling.+.PP+In strict mode, enabled with the \f[C]-s\f[R]/\f[C]--strict\f[R] flag,+hledger will report an error if any transaction uses an account name+that has not been declared by an account directive.+Some notes:+.IP \[bu] 2+The declaration is case-sensitive; transactions must use the correct+account name capitalisation.+.IP \[bu] 2+The account directive\[aq]s scope is \[dq]whole file and below\[dq] (see+directives).+This means it affects all of the current file, and any files it+includes, but not parent or sibling files.+The position of account directives within the file does not matter,+though it\[aq]s usual to put them at the top.+.IP \[bu] 2+Accounts can only be declared in \f[C]journal\f[R] files (but will+affect included files in other formats).+.IP \[bu] 2+It\[aq]s currently not possible to declare \[dq]all possible+subaccounts\[dq] with a wildcard; every account posted to must be+declared.+.SS Account comments+.PP+Comments, beginning with a semicolon, can be added:+.IP \[bu] 2+on the same line, \f[B]after two or more spaces\f[R] (because ; is+allowed in account names)+.IP \[bu] 2+on the next lines, indented+.PP+An example of both:+.IP+.nf+\f[C]+account assets:bank:checking ; same-line comment, note 2+ spaces before ;+ ; next-line comment+ ; another with tag, acctno:12345 (not used yet)+\f[R]+.fi+.PP+Same-line comments are not supported by Ledger, or hledger <1.13.+.SS Account subdirectives+.PP+We also allow (and ignore) Ledger-style indented subdirectives, just for+compatibility.:+.IP+.nf+\f[C]+account assets:bank:checking+ format blah blah ; <- subdirective, ignored+\f[R]+.fi+.PP+Here is the full syntax of account directives:+.IP+.nf+\f[C]+account ACCTNAME [ACCTTYPE] [;COMMENT]+ [;COMMENTS]+ [LEDGER-STYLE SUBDIRECTIVES, IGNORED]+\f[R]+.fi+.SS Account types+.PP+hledger recognises five main types of account, corresponding to the+account classes in the accounting equation:+.PP+\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].+.PP+These account types are important for controlling which accounts appear+in the balancesheet, balancesheetequity, incomestatement reports (and+probably for other things in future).+.PP+Additionally, we recognise the \f[C]Cash\f[R] type, which is also an+\f[C]Asset\f[R], and which causes accounts to appear in the cashflow+report.+(\[dq]Cash\[dq] here means liquid assets, eg bank balances but typically+not investments or receivables.)+.SS Declaring account types+.PP+Generally, to make these reports work you should declare your top-level+accounts and their types, using account directives with \f[C]type:\f[R]+tags.+.PP+The tag\[aq]s value should be one of: \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], \f[C]Cash\f[R], \f[C]A\f[R], \f[C]L\f[R],+\f[C]E\f[R], \f[C]R\f[R], \f[C]X\f[R], \f[C]C\f[R] (all case+insensitive).+The type is inherited by all subaccounts except where they override it.+Here\[aq]s a complete example:+.IP+.nf+\f[C]+account assets ; type: Asset+account assets:bank ; type: Cash+account assets:cash ; type: Cash+account liabilities ; type: Liability+account equity ; type: Equity+account revenues ; type: Revenue+account expenses ; type: Expense+\f[R]+.fi+.SS Auto-detected account types+.PP+If you happen to use common english top-level account names, you may not+need to declare account types, as they will be detected automatically+using the following rules:+.PP+.TS+tab(@);+l l.+T{+If name matches regular expression:+T}@T{+account type is:+T}+_+T{+\f[C]\[ha]assets?(:|$)\f[R]+T}@T{+\f[C]Asset\f[R]+T}+T{+\f[C]\[ha](debts?|liabilit(y|ies))(:|$)\f[R]+T}@T{+\f[C]Liability\f[R]+T}+T{+\f[C]\[ha]equity(:|$)\f[R]+T}@T{+\f[C]Equity\f[R]+T}+T{+\f[C]\[ha](income|revenue)s?(:|$)\f[R]+T}@T{+\f[C]Revenue\f[R]+T}+T{+\f[C]\[ha]expenses?(:|$)\f[R]+T}@T{+\f[C]Expense\f[R]+T}+.TE+.PP+.TS+tab(@);+lw(56.9n) lw(13.1n).+T{+If account type is \f[C]Asset\f[R] and name does not contain regular+expression:+T}@T{+account type is:+T}+_+T{+\f[C](investment|receivable|:A/R|:fixed)\f[R]+T}@T{+\f[C]Cash\f[R]+T}+.TE+.PP+Even so, explicit declarations may be a good idea, for clarity and+predictability.+.SS Interference from auto-detected account types+.PP+If you assign any account type, it\[aq]s a good idea to assign all of+them, to prevent any confusion from mixing declared and auto-detected+types.+Although it\[aq]s unlikely to happen in real life, here\[aq]s an+example: with the following journal, \f[C]balancesheetequity\f[R] shows+\[dq]liabilities\[dq] in both Liabilities and Equity sections.+Declaring another account as \f[C]type:Liability\f[R] would fix it:+.IP+.nf+\f[C]+account liabilities ; type:Equity++2020-01-01+ assets 1+ liabilities 1+ equity -2+\f[R]+.fi+.SS Old account type syntax+.PP+In some hledger journals you might instead see this old syntax (the+letters ALERX, separated from the account name by two or more spaces);+this is deprecated and may be removed soon:+.IP+.nf+\f[C]+account assets A+account liabilities L+account equity E+account revenues R+account expenses X+\f[R]+.fi+.SS Account display order+.PP+Account directives also set the order in which accounts are displayed,+eg in reports, the hledger-ui accounts screen, and the hledger-web+sidebar.+By default accounts are listed in alphabetical order.+But if you have these account directives in the journal:+.IP+.nf+\f[C]+account assets+account liabilities+account equity+account revenues+account expenses+\f[R]+.fi+.PP+you\[aq]ll see those accounts displayed in declaration order, not+alphabetically:+.IP+.nf+\f[C]+$ hledger accounts -1+assets+liabilities+equity+revenues+expenses+\f[R]+.fi+.PP+Undeclared accounts, if any, are displayed last, in alphabetical order.+.PP+Note that sorting is done at each level of the account tree (within each+group of sibling accounts under the same parent).+And currently, this directive:+.IP+.nf+\f[C]+account other:zoo+\f[R]+.fi+.PP+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:+.IP \[bu] 2+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+.IP \[bu] 2+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]).+.SS Rewriting accounts+.PP+You can define account alias rules which rewrite your account names, or+parts of them, before generating reports.+This can be useful for:+.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+Account aliases also rewrite account names in account directives.+They do not affect account names being entered via hledger add or+hledger-web.+.PP+See also Rewrite account names.+.SS Basic aliases+.PP+To set an account alias, use the \f[C]alias\f[R] directive in your+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]+alias OLD = NEW+\f[R]+.fi+.PP+Or, you can use the \f[C]--alias \[aq]OLD=NEW\[aq]\f[R] option on the+command line.+This affects all entries.+It\[aq]s useful for trying out aliases interactively.+.PP+OLD and NEW are case sensitive full account names.+hledger will replace any occurrence of the old account name with the new+one.+Subaccounts are also affected.+Eg:+.IP+.nf+\f[C]+alias checking = assets:bank:wells fargo:checking+; 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]+\f[R]+.fi+.SS Regex aliases+.PP+There is also a more powerful variant that uses a regular expression,+indicated by the forward slashes:+.IP+.nf+\f[C]+alias /REGEX/ = REPLACEMENT+\f[R]+.fi+.PP+or \f[C]--alias \[aq]/REGEX/=REPLACEMENT\[aq]\f[R].+.PP+REGEX is a case-insensitive regular expression.+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.+Eg:+.IP+.nf+\f[C]+alias /\[ha](.+):bank:([\[ha]:]+):(.*)/ = \[rs]1:\[rs]2 \[rs]3+; rewrites \[dq]assets:bank:wells fargo:checking\[dq] to \[dq]assets:wells fargo checking\[dq]+\f[R]+.fi+.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.+.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:+.IP "1." 3+\f[C]alias\f[R] directives preceding the journal entry, most recently+parsed first (ie, reading upward from the journal entry, bottom to top)+.IP "2." 3+\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.+.SS Aliases and multiple files+.PP+As explained at Directives and multiple files, \f[C]alias\f[R]+directives do not affect parent or sibling files.+Eg in this command,+.IP+.nf+\f[C]+hledger -f a.aliases -f b.journal+\f[R]+.fi+.PP+account aliases defined in a.aliases will not affect b.journal.+Including the aliases doesn\[aq]t work either:+.IP+.nf+\f[C]+include a.aliases++2020-01-01 ; not affected by a.aliases+ foo 1+ bar+\f[R]+.fi+.PP+This means that account aliases should usually be declared at the start+of your top-most file, like this:+.IP+.nf+\f[C]+alias foo=Foo+alias bar=Bar++2020-01-01 ; affected by aliases above+ foo 1+ bar++include c.journal ; also affected+\f[R]+.fi+.SS \f[C]end aliases\f[R]+.PP+You can clear (forget) all currently defined aliases with the+\f[C]end aliases\f[R] directive:+.IP+.nf+\f[C]+end aliases+\f[R]+.fi+.SS Default parent account+.PP+You can specify a parent account which will be prepended to all accounts+within a section of the journal.+Use the \f[C]apply account\f[R] and \f[C]end apply account\f[R]+directives like so:+.IP+.nf+\f[C]+apply account home++2010/1/1+ food $10+ cash++end apply account+\f[R]+.fi+.PP+which is equivalent to:+.IP+.nf+\f[C]+2010/01/01+ home:food $10+ home:cash $-10+\f[R]+.fi+.PP+If \f[C]end apply account\f[R] is omitted, the effect lasts to the end+of the file.+Included files are also affected, eg:+.IP+.nf+\f[C]+apply account business+include biz.journal+end apply account+apply account personal+include personal.journal+\f[R]+.fi+.PP+Prior to hledger 1.0, legacy \f[C]account\f[R] and \f[C]end\f[R]+spellings were also supported.+.PP+A default parent account also affects account directives.+It does not affect account names being entered via hledger add or+hledger-web.+If account aliases are present, they are applied after the default+parent account.+.SS Periodic transactions+.PP+Periodic transaction rules describe transactions that recur.+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.+.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.+.PP+Periodic transaction rules also have a second meaning: they are used to+define budget goals, shown in budget reports.+.SS Periodic rule syntax+.PP+A periodic transaction rule looks like a normal journal entry, with the+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.):+.IP+.nf+\f[C]+\[ti] monthly+ expenses:rent $2000+ assets:bank:checking+\f[R]+.fi+.PP+There is an additional constraint on the period expression: the start+date must fall on a natural boundary of the interval.+Eg \f[C]monthly from 2018/1/1\f[R] is valid, but+\f[C]monthly from 2018/1/15\f[R] is not.+.PP+Partial or relative dates (M/D, D, tomorrow, last week) in the period+expression can work (useful or not).+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.+.SS Two spaces between period expression and description!+.PP+If the period expression is followed by a transaction description, these+must be separated by \f[B]two or more spaces\f[R].+This helps hledger know where the period expression ends, so that+descriptions can not accidentally alter their meaning, as in this+example:+.IP+.nf+\f[C]+; 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]+.fi+.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.+.SS Forecasting with periodic transactions+.PP+The \f[C]--forecast\f[R] flag activates any periodic transaction rules+in the journal.+They will generate temporary recurring transactions, which are not saved+in the journal, but will appear in all reports (eg print).+This can be useful for estimating balances into the future, or+experimenting with different scenarios.+Or, it can be used as a data entry aid: describe recurring transactions,+and every so often copy the output of \f[C]print --forecast\f[R] into+the journal.+.PP+These transactions will have an extra tag indicating which periodic rule+generated them: \f[C]generated-transaction:\[ti] PERIODICEXPR\f[R].+And a similar, hidden tag (beginning with an underscore) which, because+it\[aq]s never displayed by print, can be used to match transactions+generated \[dq]just now\[dq]:+\f[C]_generated-transaction:\[ti] PERIODICEXPR\f[R].+.PP+Periodic transactions are generated within some forecast period.+By default, this+.IP \[bu] 2+begins on the later of+.RS 2+.IP \[bu] 2+the report start date if specified with -b/-p/date:+.IP \[bu] 2+the day after the latest normal (non-periodic) transaction in the+journal, or today if there are no normal transactions.+.RE+.IP \[bu] 2+ends on the report end date if specified with -e/-p/date:, or 6 months+(180 days) from today.+.PP+This means that periodic transactions will begin only after the latest+recorded transaction.+And a recorded transaction dated in the future can prevent generation of+periodic transactions.+(You can avoid that by writing the future transaction as a one-time+periodic rule instead - put tilde before the date, eg+\f[C]\[ti] YYYY-MM-DD ...\f[R]).+.PP+Or, you can set your own arbitrary \[dq]forecast period\[dq], which can+overlap recorded transactions, and need not be in the future, by+providing an option argument, like \f[C]--forecast=PERIODEXPR\f[R].+Note the equals sign is required, a space won\[aq]t work.+PERIODEXPR is a period expression, which can specify the start date, end+date, or both, like in a \f[C]date:\f[R] query.+(See also hledger.1 -> Report start & end date).+Some examples: \f[C]--forecast=202001-202004\f[R],+\f[C]--forecast=jan-\f[R], \f[C]--forecast=2020\f[R].+.SS Budgeting with periodic transactions+.PP+With the \f[C]--budget\f[R] flag, currently supported by the balance+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.+.PP+See also: Budgeting and Forecasting.+.PP+.SS Auto postings+.PP+\[dq]Automated postings\[dq] or \[dq]auto postings\[dq] are extra+postings which get added automatically to transactions which match+certain queries, defined by \[dq]auto posting rules\[dq], when you use+the \f[C]--auto\f[R] flag.+.PP+An auto posting rule looks a bit like a transaction:+.IP+.nf+\f[C]+= QUERY+ ACCOUNT AMOUNT+ ...+ ACCOUNT [AMOUNT]+\f[R]+.fi+.PP+except the first line is an equals sign (mnemonic: \f[C]=\f[R] suggests+matching), followed by a query (which matches existing postings), and+each \[dq]posting\[dq] line describes a posting to be generated, and the+posting amounts can be:+.IP \[bu] 2+a normal amount with a commodity symbol, eg \f[C]$2\f[R].+This will be used as-is.+.IP \[bu] 2+a number, eg \f[C]2\f[R].+The commodity symbol (if any) from the matched posting will be added to+this.+.IP \[bu] 2+a numeric multiplier, eg \f[C]*2\f[R] (a star followed by a number N).+The matched posting\[aq]s amount (and total price, if any) will be+multiplied by N.+.IP \[bu] 2+a multiplier with a commodity symbol, eg \f[C]*$2\f[R] (a star, number+N, and symbol S).+The matched posting\[aq]s amount will be multiplied by N, and its+commodity symbol will be replaced with S.+.PP+Any query term containing spaces must be enclosed in single or double+quotes, as on the command line.+Eg, note the quotes around the second query term below:+.IP+.nf+\f[C]+= expenses:groceries \[aq]expenses:dining out\[aq]+ (budget:funds:dining out) *-1+\f[R]+.fi+.PP+Some examples:+.IP+.nf+\f[C]+; every time I buy food, schedule a dollar donation+= expenses:food+ (liabilities:charity) $-1++; when I buy a gift, also deduct that amount from a budget envelope subaccount+= expenses:gifts+ assets:checking:gifts *-1+ assets:checking *1++2017/12/1+ expenses:food $10+ assets:checking++2017/12/14+ expenses:gifts $20+ assets:checking+\f[R]+.fi+.IP+.nf+\f[C]+$ hledger print --auto+2017-12-01+ expenses:food $10+ assets:checking+ (liabilities:charity) $-1++2017-12-14+ expenses:gifts $20+ assets:checking+ assets:checking:gifts -$20+ assets:checking $20+\f[R]+.fi+.SS Auto postings and multiple files+.PP+An auto posting rule can affect any transaction in the current file, or+in any parent file or child file.+Note, currently it will not affect sibling files (when multiple+\f[C]-f\f[R]/\f[C]--file\f[R] are used - see #1212).+.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.+.SS Auto postings and transaction balancing / inferred amounts / balance assertions+.PP+Currently, 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+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.+.SS Auto posting tags+.PP+Automated postings 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 auto posting 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].+.SH CSV FORMAT+.PP+How hledger reads CSV data, and the CSV rules file format.+.PP+hledger can read CSV files (Character Separated Value - usually comma,+semicolon, or tab) containing dated records as if they were journal+files, automatically converting each CSV record into a transaction.+.PP+(To learn about \f[I]writing\f[R] CSV, see CSV output.)+.PP+We describe each CSV file\[aq]s format with a corresponding \f[I]rules+file\f[R].+By default this is named like the CSV file with a \f[C].rules\f[R]+extension added.+Eg when reading \f[C]FILE.csv\f[R], hledger also looks for+\f[C]FILE.csv.rules\f[R] in the same directory as \f[C]FILE.csv\f[R].+You can specify a different rules file with the \f[C]--rules-file\f[R]+option.+If a rules file is not found, hledger will create a sample rules file,+which you\[aq]ll need to adjust.+.PP+This file contains rules describing the CSV data (header line, fields+layout, date format etc.), and how to construct hledger journal entries+(transactions) from it.+Often there will also be a list of conditional rules for categorising+transactions based on their descriptions.+Here\[aq]s an overview of the CSV rules; these are described more fully+below, after the examples:+.PP+.TS+tab(@);+lw(30.1n) lw(39.9n).+T{+\f[B]\f[CB]skip\f[B]\f[R]+T}@T{+skip one or more header lines or matched CSV records+T}+T{+\f[B]\f[CB]fields\f[B]\f[R]+T}@T{+name CSV fields, assign them to hledger fields+T}+T{+\f[B]field assignment\f[R]+T}@T{+assign a value to one hledger field, with interpolation+T}+T{+\f[B]\f[CB]separator\f[B]\f[R]+T}@T{+a custom field separator+T}+T{+\f[B]\f[CB]if\f[B] block\f[R]+T}@T{+apply some rules to CSV records matched by patterns+T}+T{+\f[B]\f[CB]if\f[B] table\f[R]+T}@T{+apply some rules to CSV records matched by patterns, alternate syntax+T}+T{+\f[B]\f[CB]end\f[B]\f[R]+T}@T{+skip the remaining CSV records+T}+T{+\f[B]\f[CB]date-format\f[B]\f[R]+T}@T{+how to parse dates in CSV records+T}+T{+\f[B]\f[CB]decimal-mark\f[B]\f[R]+T}@T{+the decimal mark used in CSV amounts, if ambiguous+T}+T{+\f[B]\f[CB]newest-first\f[B]\f[R]+T}@T{+disambiguate record order when there\[aq]s only one date+T}+T{+\f[B]\f[CB]include\f[B]\f[R]+T}@T{+inline another CSV rules file+T}+T{+\f[B]\f[CB]balance-type\f[B]\f[R]+T}@T{+choose which type of balance assignments to use+T}+.TE+.PP+Note, for best error messages when reading CSV files, use a+\f[C].csv\f[R], \f[C].tsv\f[R] or \f[C].ssv\f[R] file extension or file+prefix - see File Extension below.+.PP+There\[aq]s an introductory Convert CSV files tutorial on hledger.org.+.SS Examples+.PP+Here are some sample hledger CSV rules files.+See also the full collection at:+.PD 0+.P+.PD+https://github.com/simonmichael/hledger/tree/master/examples/csv+.SS Basic+.PP+At minimum, the rules file must identify the date and amount fields, and+often it also specifies the date format and how many header lines there+are.+Here\[aq]s a simple CSV file and a rules file for it:+.IP+.nf+\f[C]+Date, Description, Id, Amount+12/11/2019, Foo, 123, 10.23+\f[R]+.fi+.IP+.nf+\f[C]+# basic.csv.rules+skip 1+fields date, description, _, amount+date-format %d/%m/%Y+\f[R]+.fi+.IP+.nf+\f[C]+$ hledger print -f basic.csv+2019-11-12 Foo+ expenses:unknown 10.23+ income:unknown -10.23+\f[R]+.fi+.PP+Default account names are chosen, since we didn\[aq]t set them.+.SS Bank of Ireland+.PP+Here\[aq]s a CSV with two amount fields (Debit and Credit), and a+balance field, which we can use to add balance assertions, which is not+necessary but provides extra error checking:+.IP+.nf+\f[C]+Date,Details,Debit,Credit,Balance+07/12/2012,LODGMENT 529898,,10.0,131.21+07/12/2012,PAYMENT,5,,126+\f[R]+.fi+.IP+.nf+\f[C]+# bankofireland-checking.csv.rules++# skip the header line+skip++# name the csv fields, and assign some of them as journal entry fields+fields date, description, amount-out, amount-in, balance++# We generate balance assertions by assigning to \[dq]balance\[dq]+# above, but you may sometimes need to remove these because:+#+# - the CSV balance differs from the true balance,+# by up to 0.0000000000005 in my experience+#+# - it is sometimes calculated based on non-chronological ordering,+# eg when multiple transactions clear on the same day++# date is in UK/Ireland format+date-format %d/%m/%Y++# set the currency+currency EUR++# set the base account for all txns+account1 assets:bank:boi:checking+\f[R]+.fi+.IP+.nf+\f[C]+$ hledger -f bankofireland-checking.csv print+2012-12-07 LODGMENT 529898+ assets:bank:boi:checking EUR10.0 = EUR131.2+ income:unknown EUR-10.0++2012-12-07 PAYMENT+ assets:bank:boi:checking EUR-5.0 = EUR126.0+ expenses:unknown EUR5.0+\f[R]+.fi+.PP+The balance assertions don\[aq]t raise an error above, because we\[aq]re+reading directly from CSV, but they will be checked if these entries are+imported into a journal file.+.SS Amazon+.PP+Here we convert amazon.com order history, and use an if block to+generate a third posting if there\[aq]s a fee.+(In practice you\[aq]d probably get this data from your bank instead,+but it\[aq]s an example.)+.IP+.nf+\f[C]+\[dq]Date\[dq],\[dq]Type\[dq],\[dq]To/From\[dq],\[dq]Name\[dq],\[dq]Status\[dq],\[dq]Amount\[dq],\[dq]Fees\[dq],\[dq]Transaction ID\[dq]+\[dq]Jul 29, 2012\[dq],\[dq]Payment\[dq],\[dq]To\[dq],\[dq]Foo.\[dq],\[dq]Completed\[dq],\[dq]$20.00\[dq],\[dq]$0.00\[dq],\[dq]16000000000000DGLNJPI1P9B8DKPVHL\[dq]+\[dq]Jul 30, 2012\[dq],\[dq]Payment\[dq],\[dq]To\[dq],\[dq]Adapteva, Inc.\[dq],\[dq]Completed\[dq],\[dq]$25.00\[dq],\[dq]$1.00\[dq],\[dq]17LA58JSKRD4HDGLNJPI1P9B8DKPVHL\[dq]+\f[R]+.fi+.IP+.nf+\f[C]+# amazon-orders.csv.rules++# skip one header line+skip 1++# name the csv fields, and assign the transaction\[aq]s date, amount and code.+# Avoided the \[dq]status\[dq] and \[dq]amount\[dq] hledger field names to prevent confusion.+fields date, _, toorfrom, name, amzstatus, amzamount, fees, code++# how to parse the date+date-format %b %-d, %Y++# combine two fields to make the description+description %toorfrom %name++# save the status as a tag+comment status:%amzstatus++# set the base account for all transactions+account1 assets:amazon+# leave amount1 blank so it can balance the other(s).+# I\[aq]m assuming amzamount excludes the fees, don\[aq]t remember++# set a generic account2+account2 expenses:misc+amount2 %amzamount+# and maybe refine it further:+#include categorisation.rules++# add a third posting for fees, but only if they are non-zero.+if %fees [1-9]+ account3 expenses:fees+ amount3 %fees+\f[R]+.fi+.IP+.nf+\f[C]+$ hledger -f amazon-orders.csv print+2012-07-29 (16000000000000DGLNJPI1P9B8DKPVHL) To Foo. ; status:Completed+ assets:amazon+ expenses:misc $20.00++2012-07-30 (17LA58JSKRD4HDGLNJPI1P9B8DKPVHL) To Adapteva, Inc. ; status:Completed+ assets:amazon+ expenses:misc $25.00+ expenses:fees $1.00+\f[R]+.fi+.SS Paypal+.PP+Here\[aq]s a real-world rules file for (customised) Paypal CSV, with+some Paypal-specific rules, and a second rules file included:+.IP+.nf+\f[C]+\[dq]Date\[dq],\[dq]Time\[dq],\[dq]TimeZone\[dq],\[dq]Name\[dq],\[dq]Type\[dq],\[dq]Status\[dq],\[dq]Currency\[dq],\[dq]Gross\[dq],\[dq]Fee\[dq],\[dq]Net\[dq],\[dq]From Email Address\[dq],\[dq]To Email Address\[dq],\[dq]Transaction ID\[dq],\[dq]Item Title\[dq],\[dq]Item ID\[dq],\[dq]Reference Txn ID\[dq],\[dq]Receipt ID\[dq],\[dq]Balance\[dq],\[dq]Note\[dq]+\[dq]10/01/2019\[dq],\[dq]03:46:20\[dq],\[dq]PDT\[dq],\[dq]Calm Radio\[dq],\[dq]Subscription Payment\[dq],\[dq]Completed\[dq],\[dq]USD\[dq],\[dq]-6.99\[dq],\[dq]0.00\[dq],\[dq]-6.99\[dq],\[dq]simon\[at]joyful.com\[dq],\[dq]memberships\[at]calmradio.com\[dq],\[dq]60P57143A8206782E\[dq],\[dq]MONTHLY - $1 for the first 2 Months: Me - Order 99309. Item total: $1.00 USD first 2 months, then $6.99 / Month\[dq],\[dq]\[dq],\[dq]I-R8YLY094FJYR\[dq],\[dq]\[dq],\[dq]-6.99\[dq],\[dq]\[dq]+\[dq]10/01/2019\[dq],\[dq]03:46:20\[dq],\[dq]PDT\[dq],\[dq]\[dq],\[dq]Bank Deposit to PP Account \[dq],\[dq]Pending\[dq],\[dq]USD\[dq],\[dq]6.99\[dq],\[dq]0.00\[dq],\[dq]6.99\[dq],\[dq]\[dq],\[dq]simon\[at]joyful.com\[dq],\[dq]0TU1544T080463733\[dq],\[dq]\[dq],\[dq]\[dq],\[dq]60P57143A8206782E\[dq],\[dq]\[dq],\[dq]0.00\[dq],\[dq]\[dq]+\[dq]10/01/2019\[dq],\[dq]08:57:01\[dq],\[dq]PDT\[dq],\[dq]Patreon\[dq],\[dq]PreApproved Payment Bill User Payment\[dq],\[dq]Completed\[dq],\[dq]USD\[dq],\[dq]-7.00\[dq],\[dq]0.00\[dq],\[dq]-7.00\[dq],\[dq]simon\[at]joyful.com\[dq],\[dq]support\[at]patreon.com\[dq],\[dq]2722394R5F586712G\[dq],\[dq]Patreon* Membership\[dq],\[dq]\[dq],\[dq]B-0PG93074E7M86381M\[dq],\[dq]\[dq],\[dq]-7.00\[dq],\[dq]\[dq]+\[dq]10/01/2019\[dq],\[dq]08:57:01\[dq],\[dq]PDT\[dq],\[dq]\[dq],\[dq]Bank Deposit to PP Account \[dq],\[dq]Pending\[dq],\[dq]USD\[dq],\[dq]7.00\[dq],\[dq]0.00\[dq],\[dq]7.00\[dq],\[dq]\[dq],\[dq]simon\[at]joyful.com\[dq],\[dq]71854087RG994194F\[dq],\[dq]Patreon* Membership\[dq],\[dq]\[dq],\[dq]2722394R5F586712G\[dq],\[dq]\[dq],\[dq]0.00\[dq],\[dq]\[dq]+\[dq]10/19/2019\[dq],\[dq]03:02:12\[dq],\[dq]PDT\[dq],\[dq]Wikimedia Foundation, Inc.\[dq],\[dq]Subscription Payment\[dq],\[dq]Completed\[dq],\[dq]USD\[dq],\[dq]-2.00\[dq],\[dq]0.00\[dq],\[dq]-2.00\[dq],\[dq]simon\[at]joyful.com\[dq],\[dq]tle\[at]wikimedia.org\[dq],\[dq]K9U43044RY432050M\[dq],\[dq]Monthly donation to the Wikimedia Foundation\[dq],\[dq]\[dq],\[dq]I-R5C3YUS3285L\[dq],\[dq]\[dq],\[dq]-2.00\[dq],\[dq]\[dq]+\[dq]10/19/2019\[dq],\[dq]03:02:12\[dq],\[dq]PDT\[dq],\[dq]\[dq],\[dq]Bank Deposit to PP Account \[dq],\[dq]Pending\[dq],\[dq]USD\[dq],\[dq]2.00\[dq],\[dq]0.00\[dq],\[dq]2.00\[dq],\[dq]\[dq],\[dq]simon\[at]joyful.com\[dq],\[dq]3XJ107139A851061F\[dq],\[dq]\[dq],\[dq]\[dq],\[dq]K9U43044RY432050M\[dq],\[dq]\[dq],\[dq]0.00\[dq],\[dq]\[dq]+\[dq]10/22/2019\[dq],\[dq]05:07:06\[dq],\[dq]PDT\[dq],\[dq]Noble Benefactor\[dq],\[dq]Subscription Payment\[dq],\[dq]Completed\[dq],\[dq]USD\[dq],\[dq]10.00\[dq],\[dq]-0.59\[dq],\[dq]9.41\[dq],\[dq]noble\[at]bene.fac.tor\[dq],\[dq]simon\[at]joyful.com\[dq],\[dq]6L8L1662YP1334033\[dq],\[dq]Joyful Systems\[dq],\[dq]\[dq],\[dq]I-KC9VBGY2GWDB\[dq],\[dq]\[dq],\[dq]9.41\[dq],\[dq]\[dq]+\f[R]+.fi+.IP+.nf+\f[C]+# paypal-custom.csv.rules++# Tips:+# Export from Activity -> Statements -> Custom -> Activity download+# Suggested transaction type: \[dq]Balance affecting\[dq]+# Paypal\[aq]s default fields in 2018 were:+# \[dq]Date\[dq],\[dq]Time\[dq],\[dq]TimeZone\[dq],\[dq]Name\[dq],\[dq]Type\[dq],\[dq]Status\[dq],\[dq]Currency\[dq],\[dq]Gross\[dq],\[dq]Fee\[dq],\[dq]Net\[dq],\[dq]From Email Address\[dq],\[dq]To Email Address\[dq],\[dq]Transaction ID\[dq],\[dq]Shipping Address\[dq],\[dq]Address Status\[dq],\[dq]Item Title\[dq],\[dq]Item ID\[dq],\[dq]Shipping and Handling Amount\[dq],\[dq]Insurance Amount\[dq],\[dq]Sales Tax\[dq],\[dq]Option 1 Name\[dq],\[dq]Option 1 Value\[dq],\[dq]Option 2 Name\[dq],\[dq]Option 2 Value\[dq],\[dq]Reference Txn ID\[dq],\[dq]Invoice Number\[dq],\[dq]Custom Number\[dq],\[dq]Quantity\[dq],\[dq]Receipt ID\[dq],\[dq]Balance\[dq],\[dq]Address Line 1\[dq],\[dq]Address Line 2/District/Neighborhood\[dq],\[dq]Town/City\[dq],\[dq]State/Province/Region/County/Territory/Prefecture/Republic\[dq],\[dq]Zip/Postal Code\[dq],\[dq]Country\[dq],\[dq]Contact Phone Number\[dq],\[dq]Subject\[dq],\[dq]Note\[dq],\[dq]Country Code\[dq],\[dq]Balance Impact\[dq]+# This rules file assumes the following more detailed fields, configured in \[dq]Customize report fields\[dq]:+# \[dq]Date\[dq],\[dq]Time\[dq],\[dq]TimeZone\[dq],\[dq]Name\[dq],\[dq]Type\[dq],\[dq]Status\[dq],\[dq]Currency\[dq],\[dq]Gross\[dq],\[dq]Fee\[dq],\[dq]Net\[dq],\[dq]From Email Address\[dq],\[dq]To Email Address\[dq],\[dq]Transaction ID\[dq],\[dq]Item Title\[dq],\[dq]Item ID\[dq],\[dq]Reference Txn ID\[dq],\[dq]Receipt ID\[dq],\[dq]Balance\[dq],\[dq]Note\[dq]++fields date, time, timezone, description_, type, status_, currency, grossamount, feeamount, netamount, fromemail, toemail, code, itemtitle, itemid, referencetxnid, receiptid, balance, note++skip 1++date-format %-m/%-d/%Y++# ignore some paypal events+if+In Progress+Temporary Hold+Update to+ skip++# add more fields to the description+description %description_ %itemtitle++# save some other fields as tags+comment itemid:%itemid, fromemail:%fromemail, toemail:%toemail, time:%time, type:%type, status:%status_++# convert to short currency symbols+if %currency USD+ currency $+if %currency EUR+ currency E+if %currency GBP+ currency P++# generate postings++# the first posting will be the money leaving/entering my paypal account+# (negative means leaving my account, in all amount fields)+account1 assets:online:paypal+amount1 %netamount++# the second posting will be money sent to/received from other party+# (account2 is set below)+amount2 -%grossamount++# if there\[aq]s a fee, add a third posting for the money taken by paypal.+if %feeamount [1-9]+ account3 expenses:banking:paypal+ amount3 -%feeamount+ comment3 business:++# choose an account for the second posting++# override the default account names:+# if the amount is positive, it\[aq]s income (a debit)+if %grossamount \[ha][\[ha]-]+ account2 income:unknown+# if negative, it\[aq]s an expense (a credit)+if %grossamount \[ha]-+ account2 expenses:unknown++# apply common rules for setting account2 & other tweaks+include common.rules++# apply some overrides specific to this csv++# Transfers from/to bank. These are usually marked Pending,+# which can be disregarded in this case.+if+Bank Account+Bank Deposit to PP Account+ description %type for %referencetxnid %itemtitle+ account2 assets:bank:wf:pchecking+ account1 assets:online:paypal++# Currency conversions+if Currency Conversion+ account2 equity:currency conversion+\f[R]+.fi+.IP+.nf+\f[C]+# common.rules++if+darcs+noble benefactor+ account2 revenues:foss donations:darcshub+ comment2 business:++if+Calm Radio+ account2 expenses:online:apps++if+electronic frontier foundation+Patreon+wikimedia+Advent of Code+ account2 expenses:dues++if Google+ account2 expenses:online:apps+ description google | music+\f[R]+.fi+.IP+.nf+\f[C]+$ hledger -f paypal-custom.csv print+2019-10-01 (60P57143A8206782E) Calm Radio MONTHLY - $1 for the first 2 Months: Me - Order 99309. Item total: $1.00 USD first 2 months, then $6.99 / Month ; itemid:, fromemail:simon\[at]joyful.com, toemail:memberships\[at]calmradio.com, time:03:46:20, type:Subscription Payment, status:Completed+ assets:online:paypal $-6.99 = $-6.99+ expenses:online:apps $6.99++2019-10-01 (0TU1544T080463733) Bank Deposit to PP Account for 60P57143A8206782E ; itemid:, fromemail:, toemail:simon\[at]joyful.com, time:03:46:20, type:Bank Deposit to PP Account, status:Pending+ assets:online:paypal $6.99 = $0.00+ assets:bank:wf:pchecking $-6.99++2019-10-01 (2722394R5F586712G) Patreon Patreon* Membership ; itemid:, fromemail:simon\[at]joyful.com, toemail:support\[at]patreon.com, time:08:57:01, type:PreApproved Payment Bill User Payment, status:Completed+ assets:online:paypal $-7.00 = $-7.00+ expenses:dues $7.00++2019-10-01 (71854087RG994194F) Bank Deposit to PP Account for 2722394R5F586712G Patreon* Membership ; itemid:, fromemail:, toemail:simon\[at]joyful.com, time:08:57:01, type:Bank Deposit to PP Account, status:Pending+ assets:online:paypal $7.00 = $0.00+ assets:bank:wf:pchecking $-7.00++2019-10-19 (K9U43044RY432050M) Wikimedia Foundation, Inc. Monthly donation to the Wikimedia Foundation ; itemid:, fromemail:simon\[at]joyful.com, toemail:tle\[at]wikimedia.org, time:03:02:12, type:Subscription Payment, status:Completed+ assets:online:paypal $-2.00 = $-2.00+ expenses:dues $2.00+ expenses:banking:paypal ; business:++2019-10-19 (3XJ107139A851061F) Bank Deposit to PP Account for K9U43044RY432050M ; itemid:, fromemail:, toemail:simon\[at]joyful.com, time:03:02:12, type:Bank Deposit to PP Account, status:Pending+ assets:online:paypal $2.00 = $0.00+ assets:bank:wf:pchecking $-2.00++2019-10-22 (6L8L1662YP1334033) Noble Benefactor Joyful Systems ; itemid:, fromemail:noble\[at]bene.fac.tor, toemail:simon\[at]joyful.com, time:05:07:06, type:Subscription Payment, status:Completed+ assets:online:paypal $9.41 = $9.41+ revenues:foss donations:darcshub $-10.00 ; business:+ expenses:banking:paypal $0.59 ; business:+\f[R]+.fi+.SS CSV rules+.PP+The following kinds of rule can appear in the rules file, in any order.+Blank lines and lines beginning with \f[C]#\f[R] or \f[C];\f[R] are+ignored.+.SS \f[C]skip\f[R]+.IP+.nf+\f[C]+skip N+\f[R]+.fi+.PP+The word \[dq]skip\[dq] followed by a number (or no number, meaning 1)+tells hledger to ignore this many non-empty lines preceding the CSV+data.+(Empty/blank lines are skipped automatically.) You\[aq]ll need this+whenever your CSV data contains header lines.+.PP+It also has a second purpose: it can be used inside if blocks to ignore+certain CSV records (described below).+.SS \f[C]fields\f[R]+.IP+.nf+\f[C]+fields FIELDNAME1, FIELDNAME2, ...+\f[R]+.fi+.PP+A fields list (the word \[dq]fields\[dq] followed by comma-separated+field names) is the quick way to assign CSV field values to hledger+fields.+It does two things:+.IP "1." 3+it names the CSV fields.+This is optional, but can be convenient later for interpolating them.+.IP "2." 3+when you use a standard hledger field name, it assigns the CSV value to+that part of the hledger transaction.+.PP+Here\[aq]s an example that says \[dq]use the 1st, 2nd and 4th fields as+the transaction\[aq]s date, description and amount; name the last two+fields for later reference; and ignore the others\[dq]:+.IP+.nf+\f[C]+fields date, description, , amount, , , somefield, anotherfield+\f[R]+.fi+.PP+Field names may not contain whitespace.+Fields you don\[aq]t care about can be left unnamed.+Currently there must be least two items (there must be at least one+comma).+.PP+Note, always use comma in the fields list, even if your CSV uses another+separator character.+.PP+Here are the standard hledger field/pseudo-field names.+For more about the transaction parts they refer to, see the manual for+hledger\[aq]s journal format.+.SS Transaction field names+.PP+\f[C]date\f[R], \f[C]date2\f[R], \f[C]status\f[R], \f[C]code\f[R],+\f[C]description\f[R], \f[C]comment\f[R] can be used to form the+transaction\[aq]s first line.+.SS Posting field names+.SS account+.PP+\f[C]accountN\f[R], where N is 1 to 99, causes a posting to be+generated, with that account name.+.PP+Most often there are two postings, so you\[aq]ll want to set+\f[C]account1\f[R] and \f[C]account2\f[R].+Typically \f[C]account1\f[R] is associated with the CSV file, and is set+once with a top-level assignment, while \f[C]account2\f[R] is set based+on each transaction\[aq]s description, and in conditional blocks.+.PP+If a posting\[aq]s account name is left unset but its amount is set (see+below), a default account name will be chosen (like+\[dq]expenses:unknown\[dq] or \[dq]income:unknown\[dq]).+.SS amount+.PP+\f[C]amountN\f[R] sets posting N\[aq]s amount.+If the CSV uses separate fields for inflows and outflows, you can use+\f[C]amountN-in\f[R] and \f[C]amountN-out\f[R] instead.+By assigning to \f[C]amount1\f[R], \f[C]amount2\f[R], ...+etc.+you can generate anywhere from 0 to 99 postings.+.PP+There is also an older, unnumbered form of these names, suitable for+2-posting transactions, which sets both posting 1\[aq]s and (negated)+posting 2\[aq]s amount: \f[C]amount\f[R], or \f[C]amount-in\f[R] and+\f[C]amount-out\f[R].+This is still supported because it keeps pre-hledger-1.17 csv rules+files working, and because it can be more succinct, and because it+converts posting 2\[aq]s amount to cost if there\[aq]s a transaction+price, which can be useful.+.PP+If you have an existing rules file using the unnumbered form, you might+want to use the numbered form in certain conditional blocks, without+having to update and retest all the old rules.+To facilitate this, posting 1 ignores+\f[C]amount\f[R]/\f[C]amount-in\f[R]/\f[C]amount-out\f[R] if any of+\f[C]amount1\f[R]/\f[C]amount1-in\f[R]/\f[C]amount1-out\f[R] are+assigned, and posting 2 ignores them if any of+\f[C]amount2\f[R]/\f[C]amount2-in\f[R]/\f[C]amount2-out\f[R] are+assigned, avoiding conflicts.+.SS currency+.PP+If the CSV has the currency symbol in a separate field (ie, not part of+the amount field), you can use \f[C]currencyN\f[R] to prepend it to+posting N\[aq]s amount.+Or, \f[C]currency\f[R] with no number affects all postings.+.SS balance+.PP+\f[C]balanceN\f[R] sets a balance assertion amount (or if the posting+amount is left empty, a balance assignment) on posting N.+.PP+Also, for compatibility with hledger <1.17: \f[C]balance\f[R] with no+number is equivalent to \f[C]balance1\f[R].+.PP+You can adjust the type of assertion/assignment with the+\f[C]balance-type\f[R] rule (see below).+.SS comment+.PP+Finally, \f[C]commentN\f[R] sets a comment on the Nth posting.+Comments can also contain tags, as usual.+.PP+See TIPS below for more about setting amounts and currency.+.SS field assignment+.IP+.nf+\f[C]+HLEDGERFIELDNAME FIELDVALUE+\f[R]+.fi+.PP+Instead of or in addition to a fields list, you can use a \[dq]field+assignment\[dq] rule to set the value of a single hledger field, by+writing its name (any of the standard hledger field names above)+followed by a text value.+The value may contain interpolated CSV fields, referenced by their+1-based position in the CSV record (\f[C]%N\f[R]), or by the name they+were given in the fields list (\f[C]%CSVFIELDNAME\f[R]).+Some examples:+.IP+.nf+\f[C]+# set the amount to the 4th CSV field, with \[dq] USD\[dq] appended+amount %4 USD++# combine three fields to make a comment, containing note: and date: tags+comment note: %somefield - %anotherfield, date: %1+\f[R]+.fi+.PP+Interpolation strips outer whitespace (so a CSV value like+\f[C]\[dq] 1 \[dq]\f[R] becomes \f[C]1\f[R] when interpolated) (#1051).+See TIPS below for more about referencing other fields.+.SS \f[C]separator\f[R]+.PP+You can use the \f[C]separator\f[R] rule to read other kinds of+character-separated data.+The argument is any single separator character, or the words+\f[C]tab\f[R] or \f[C]space\f[R] (case insensitive).+Eg, for comma-separated values (CSV):+.IP+.nf+\f[C]+separator ,+\f[R]+.fi+.PP+or for semicolon-separated values (SSV):+.IP+.nf+\f[C]+separator ;+\f[R]+.fi+.PP+or for tab-separated values (TSV):+.IP+.nf+\f[C]+separator TAB+\f[R]+.fi+.PP+If the input file has a \f[C].csv\f[R], \f[C].ssv\f[R] or \f[C].tsv\f[R]+file extension (or a \f[C]csv:\f[R], \f[C]ssv:\f[R], \f[C]tsv:\f[R]+prefix), the appropriate separator will be inferred automatically, and+you won\[aq]t need this rule.+.SS \f[C]if\f[R] block+.IP+.nf+\f[C]+if MATCHER+ RULE++if+MATCHER+MATCHER+MATCHER+ RULE+ RULE+\f[R]+.fi+.PP+Conditional blocks (\[dq]if blocks\[dq]) are a block of rules that are+applied only to CSV records which match certain patterns.+They are often used for customising account names based on transaction+descriptions.+.SS Matching the whole record+.PP+Each MATCHER can be a record matcher, which looks like this:+.IP+.nf+\f[C]+REGEX+\f[R]+.fi+.PP+REGEX is a case-insensitive regular expression which tries to match+anywhere within the CSV record.+It is a POSIX ERE (extended regular expression) that also supports GNU+word boundaries (\f[C]\[rs]b\f[R], \f[C]\[rs]B\f[R], \f[C]\[rs]<\f[R],+\f[C]\[rs]>\f[R]), and nothing else.+If you have trouble, be sure to check our+https://hledger.org/hledger.html#regular-expressions doc.+.PP+Important note: the record that is matched is not the original record,+but a synthetic one, with any enclosing double quotes (but not enclosing+whitespace) removed, and always comma-separated (which means that a+field containing a comma will appear like two fields).+Eg, if the original record is+\f[C]2020-01-01; \[dq]Acme, Inc.\[dq]; 1,000\f[R], the REGEX will+actually see \f[C]2020-01-01,Acme, Inc., 1,000\f[R]).+.SS Matching individual fields+.PP+Or, MATCHER can be a field matcher, like this:+.IP+.nf+\f[C]+%CSVFIELD REGEX+\f[R]+.fi+.PP+which matches just the content of a particular CSV field.+CSVFIELD is a percent sign followed by the field\[aq]s name or column+number, like \f[C]%date\f[R] or \f[C]%1\f[R].+.SS Combining matchers+.PP+A single matcher can be written on the same line as the \[dq]if\[dq]; or+multiple matchers can be written on the following lines, non-indented.+Multiple matchers are OR\[aq]d (any one of them can match), unless one+begins with an \f[C]&\f[R] symbol, in which case it is AND\[aq]ed with+the previous matcher.+.IP+.nf+\f[C]+if+MATCHER+& MATCHER+ RULE+\f[R]+.fi+.SS Rules applied on successful match+.PP+After the patterns there should be one or more rules to apply, all+indented by at least one space.+Three kinds of rule are allowed in conditional blocks:+.IP \[bu] 2+field assignments (to set a hledger field)+.IP \[bu] 2+skip (to skip the matched CSV record)+.IP \[bu] 2+end (to skip all remaining CSV records).+.PP+Examples:+.IP+.nf+\f[C]+# if the CSV record contains \[dq]groceries\[dq], set account2 to \[dq]expenses:groceries\[dq]+if groceries+ account2 expenses:groceries+\f[R]+.fi+.IP+.nf+\f[C]+# if the CSV record contains any of these patterns, set account2 and comment as shown+if+monthly service fee+atm transaction fee+banking thru software+ account2 expenses:business:banking+ comment XXX deductible ? check it+\f[R]+.fi+.SS \f[C]if\f[R] table+.IP+.nf+\f[C]+if,CSVFIELDNAME1,CSVFIELDNAME2,...,CSVFIELDNAMEn+MATCHER1,VALUE11,VALUE12,...,VALUE1n+MATCHER2,VALUE21,VALUE22,...,VALUE2n+MATCHER3,VALUE31,VALUE32,...,VALUE3n+<empty line>+\f[R]+.fi+.PP+Conditional tables (\[dq]if tables\[dq]) are a different syntax to+specify field assignments that will be applied only to CSV records which+match certain patterns.+.PP+MATCHER could be either field or record matcher, as described above.+When MATCHER matches, values from that row would be assigned to the CSV+fields named on the \f[C]if\f[R] line, in the same order.+.PP+Therefore \f[C]if\f[R] table is exactly equivalent to a sequence of of+\f[C]if\f[R] blocks:+.IP+.nf+\f[C]+if MATCHER1+ CSVFIELDNAME1 VALUE11+ CSVFIELDNAME2 VALUE12+ ...+ CSVFIELDNAMEn VALUE1n++if MATCHER2+ CSVFIELDNAME1 VALUE21+ CSVFIELDNAME2 VALUE22+ ...+ CSVFIELDNAMEn VALUE2n++if MATCHER3+ CSVFIELDNAME1 VALUE31+ CSVFIELDNAME2 VALUE32+ ...+ CSVFIELDNAMEn VALUE3n+\f[R]+.fi+.PP+Each line starting with MATCHER should contain enough (possibly empty)+values for all the listed fields.+.PP+Rules would be checked and applied in the order they are listed in the+table and, like with \f[C]if\f[R] blocks, later rules (in the same or+another table) or \f[C]if\f[R] blocks could override the effect of any+rule.+.PP+Instead of \[aq],\[aq] you can use a variety of other non-alphanumeric+characters as a separator.+First character after \f[C]if\f[R] is taken to be the separator for the+rest of the table.+It is the responsibility of the user to ensure that separator does not+occur inside MATCHERs and values - there is no way to escape separator.+.PP+Example:+.IP+.nf+\f[C]+if,account2,comment+atm transaction fee,expenses:business:banking,deductible? check it+%description groceries,expenses:groceries,+2020/01/12.*Plumbing LLC,expenses:house:upkeep,emergency plumbing call-out+\f[R]+.fi+.SS \f[C]end\f[R]+.PP+This rule can be used inside if blocks (only), to make hledger stop+reading this CSV file and move on to the next input file, or to command+execution.+Eg:+.IP+.nf+\f[C]+# ignore everything following the first empty record+if ,,,,+ end+\f[R]+.fi+.SS \f[C]date-format\f[R]+.IP+.nf+\f[C]+date-format DATEFMT+\f[R]+.fi+.PP+This is a helper for the \f[C]date\f[R] (and \f[C]date2\f[R]) fields.+If your CSV dates are not formatted like \f[C]YYYY-MM-DD\f[R],+\f[C]YYYY/MM/DD\f[R] or \f[C]YYYY.MM.DD\f[R], you\[aq]ll need to add a+date-format rule describing them with a strptime date parsing pattern,+which must parse the CSV date value completely.+Some examples:+.IP+.nf+\f[C]+# MM/DD/YY+date-format %m/%d/%y+\f[R]+.fi+.IP+.nf+\f[C]+# D/M/YYYY+# The - makes leading zeros optional.+date-format %-d/%-m/%Y+\f[R]+.fi+.IP+.nf+\f[C]+# YYYY-Mmm-DD+date-format %Y-%h-%d+\f[R]+.fi+.IP+.nf+\f[C]+# M/D/YYYY HH:MM AM some other junk+# Note the time and junk must be fully parsed, though only the date is used.+date-format %-m/%-d/%Y %l:%M %p some other junk+\f[R]+.fi+.PP+For the supported strptime syntax, see:+.PD 0+.P+.PD+https://hackage.haskell.org/package/time/docs/Data-Time-Format.html#v:formatTime+.SS \f[C]decimal-mark\f[R]+.IP+.nf+\f[C]+decimal-mark .+\f[R]+.fi+.PP+or:+.IP+.nf+\f[C]+decimal-mark ,+\f[R]+.fi+.PP+hledger automatically accepts either period or comma as a decimal mark+when parsing numbers (cf Amounts).+However if any numbers in the CSV contain digit group marks, such as+thousand-separating commas, you should declare the decimal mark+explicitly with this rule, to avoid misparsed numbers.+.SS \f[C]newest-first\f[R]+.PP+hledger always sorts the generated transactions by date.+Transactions on the same date should appear in the same order as their+CSV records, as hledger can usually auto-detect whether the CSV\[aq]s+normal order is oldest first or newest first.+But if all of the following are true:+.IP \[bu] 2+the CSV might sometimes contain just one day of data (all records having+the same date)+.IP \[bu] 2+the CSV records are normally in reverse chronological order (newest at+the top)+.IP \[bu] 2+and you care about preserving the order of same-day transactions+.PP+then, you should add the \f[C]newest-first\f[R] rule as a hint.+Eg:+.IP+.nf+\f[C]+# tell hledger explicitly that the CSV is normally newest first+newest-first+\f[R]+.fi+.SS \f[C]include\f[R]+.IP+.nf+\f[C]+include RULESFILE+\f[R]+.fi+.PP+This includes the contents of another CSV rules file at this point.+\f[C]RULESFILE\f[R] is an absolute file path or a path relative to the+current file\[aq]s directory.+This can be useful for sharing common rules between several rules files,+eg:+.IP+.nf+\f[C]+# someaccount.csv.rules++## someaccount-specific rules+fields date,description,amount+account1 assets:someaccount+account2 expenses:misc++## common rules+include categorisation.rules+\f[R]+.fi+.SS \f[C]balance-type\f[R]+.PP+Balance assertions generated by assigning to balanceN are of the simple+\f[C]=\f[R] type by default, which is a single-commodity,+subaccount-excluding assertion.+You may find the subaccount-including variants more useful, eg if you+have created some virtual subaccounts of checking to help with+budgeting.+You can select a different type of assertion with the+\f[C]balance-type\f[R] rule:+.IP+.nf+\f[C]+# balance assertions will consider all commodities and all subaccounts+balance-type ==*+\f[R]+.fi+.PP+Here are the balance assertion types for quick reference:+.IP+.nf+\f[C]+= single commodity, exclude subaccounts+=* single commodity, include subaccounts+== multi commodity, exclude subaccounts+==* multi commodity, include subaccounts+\f[R]+.fi+.SS Tips+.SS Rapid feedback+.PP+It\[aq]s a good idea to get rapid feedback while+creating/troubleshooting CSV rules.+Here\[aq]s a good way, using entr from http://eradman.com/entrproject :+.IP+.nf+\f[C]+$ ls foo.csv* | entr bash -c \[aq]echo ----; hledger -f foo.csv print desc:SOMEDESC\[aq]+\f[R]+.fi+.PP+A desc: query (eg) is used to select just one, or a few, transactions of+interest.+\[dq]bash -c\[dq] is used to run multiple commands, so we can echo a+separator each time the command re-runs, making it easier to read the+output.+.SS Valid CSV+.PP+hledger accepts CSV conforming to RFC 4180.+When CSV values are enclosed in quotes, note:+.IP \[bu] 2+they must be double quotes (not single quotes)+.IP \[bu] 2+spaces outside the quotes are not allowed+.SS File Extension+.PP+To help hledger identify the format and show the right error messages,+CSV/SSV/TSV files should normally be named with a \f[C].csv\f[R],+\f[C].ssv\f[R] or \f[C].tsv\f[R] filename extension.+Or, the file path should be prefixed with \f[C]csv:\f[R], \f[C]ssv:\f[R]+or \f[C]tsv:\f[R].+Eg:+.IP+.nf+\f[C]+$ hledger -f foo.ssv print+\f[R]+.fi+.PP+or:+.IP+.nf+\f[C]+$ cat foo | hledger -f ssv:- foo+\f[R]+.fi+.PP+You can override the file extension with a separator rule if needed.+See also: Input files in the hledger manual.+.SS Reading multiple CSV files+.PP+If you use multiple \f[C]-f\f[R] options to read multiple CSV files at+once, hledger will look for a correspondingly-named rules file for each+CSV file.+But if you use the \f[C]--rules-file\f[R] option, that rules file will+be used for all the CSV files.+.SS Valid transactions+.PP+After reading a CSV file, hledger post-processes and validates the+generated journal entries as it would for a journal file - balancing+them, applying balance assignments, and canonicalising amount styles.+Any errors at this stage will be reported in the usual way, displaying+the problem entry.+.PP+There is one exception: balance assertions, if you have generated them,+will not be checked, since normally these will work only when the CSV+data is part of the main journal.+If you do need to check balance assertions generated from CSV right+away, pipe into another hledger:+.IP+.nf+\f[C]+$ hledger -f file.csv print | hledger -f- print+\f[R]+.fi+.SS Deduplicating, importing+.PP+When you download a CSV file periodically, eg to get your latest bank+transactions, the new file may overlap with the old one, containing some+of the same records.+.PP+The import command will (a) detect the new transactions, and (b) append+just those transactions to your main journal.+It is idempotent, so you don\[aq]t have to remember how many times you+ran it or with which version of the CSV.+(It keeps state in a hidden \f[C].latest.FILE.csv\f[R] file.) This is+the easiest way to import CSV data.+Eg:+.IP+.nf+\f[C]+# download the latest CSV files, then run this command.+# Note, no -f flags needed here.+$ hledger import *.csv [--dry]+\f[R]+.fi+.PP+This method works for most CSV files.+(Where records have a stable chronological order, and new records appear+only at the new end.)+.PP+A number of other tools and workflows, hledger-specific and otherwise,+exist for converting, deduplicating, classifying and managing CSV data.+See:+.IP \[bu] 2+https://hledger.org -> sidebar -> real world setups+.IP \[bu] 2+https://plaintextaccounting.org -> data import/conversion+.SS Setting amounts+.PP+Some tips on using the amount-setting rules discussed above.+.PP+Here are the ways to set a posting\[aq]s amount:+.IP "1." 3+\f[B]If the CSV has a single amount field:\f[R]+.PD 0+.P+.PD+Assign (via a fields list or a field assignment) to \f[C]amountN\f[R].+This sets the Nth posting\[aq]s amount.+N is usually 1 or 2 but can go up to 99.+.IP "2." 3+\f[B]If the CSV has separate Debit and Credit amount fields:\f[R]+.PD 0+.P+.PD+Assign to \f[C]amountN-in\f[R] and \f[C]amountN-out\f[R].+This sets posting N\[aq]s amount to whichever of these has a non-zero+value, guessing an appropriate sign.+.RS 4+.IP \[bu] 2+\f[B]If hledger guesses the wrong sign:\f[R]+.PD 0+.P+.PD+Prepend a minus sign to flip it.+Eg:+.RS 2+.IP+.nf+\f[C]+fields date, description, amount-in, amount-out+amount-out -%amount-out+\f[R]+.fi+.RE+.IP \[bu] 2+\f[B]If both fields contain a non-zero value:\f[R]+.PD 0+.P+.PD+The \f[C]amountN-in\f[R]/\f[C]amountN-out\f[R] rules require that each+CSV record has a non-zero value in exactly one of the two fields, so+that hledger knows which to choose.+So these would all be rejected:+.RS 2+.IP+.nf+\f[C]+\[dq]\[dq], \[dq]\[dq]+\[dq]0\[dq], \[dq]0\[dq]+\[dq]1\[dq], \[dq]none\[dq]+\f[R]+.fi+.PP+If your CSV has amount values like this, use conditional rules instead.+For example, to make hledger to choose the value containing non-zero+digits:+.IP+.nf+\f[C]+fields date, description, in, out+if %in [1-9]+ amount1 %in+if %out [1-9]+ amount1 %out+\f[R]+.fi+.RE+.RE+.IP "3." 3+\f[B]Using the old numberless syntax:\f[R]+.PD 0+.P+.PD+Assign to \f[C]amount\f[R] (or to \f[C]amount-in\f[R] and+\f[C]amount-out\f[R]).+This sets posting 1\[aq]s and posting 2\[aq]s amounts (and converts+posting 2\[aq]s amount to cost).+This is supported for backwards compatibility (and occasional+convenience).+.IP "4." 3+\f[B]If the CSV has the balance instead of the transaction amount:\f[R]+.PD 0+.P+.PD+Assign to \f[C]balanceN\f[R], which sets posting N\[aq]s amount+indirectly via a balance assignment.+(Old syntax: \f[C]balance\f[R], equivalent to \f[C]balance1\f[R].)+.RS 4+.IP \[bu] 2+\f[B]If hledger guesses the wrong default account name:\f[R]+.PD 0+.P+.PD+When setting the amount via balance assertion, hledger may guess the+wrong default account name.+So, set the account name explicitly, eg:+.RS 2+.IP+.nf+\f[C]+fields date, description, balance1+account1 assets:checking+\f[R]+.fi+.RE+.RE+.SS Amount signs+.PP+There is some special handling for amount signs, to simplify parsing and+sign-flipping:+.IP \[bu] 2+\f[B]If an amount value begins with a plus sign:\f[R]+.PD 0+.P+.PD+that will be removed: \f[C]+AMT\f[R] becomes \f[C]AMT\f[R]+.IP \[bu] 2+\f[B]If an amount value is parenthesised:\f[R]+.PD 0+.P+.PD+it will be de-parenthesised and sign-flipped: \f[C](AMT)\f[R] becomes+\f[C]-AMT\f[R]+.IP \[bu] 2+\f[B]If an amount value has two minus signs (or two sets of parentheses,+or a minus sign and parentheses):\f[R]+.PD 0+.P+.PD+they cancel out and will be removed: \f[C]--AMT\f[R] or \f[C]-(AMT)\f[R]+becomes \f[C]AMT\f[R]+.IP \[bu] 2+\f[B]If an amount value contains just a sign (or just a set of+parentheses):\f[R]+.PD 0+.P+.PD+that is removed, making it an empty value.+\f[C]\[dq]+\[dq]\f[R] or \f[C]\[dq]-\[dq]\f[R] or \f[C]\[dq]()\[dq]\f[R]+becomes \f[C]\[dq]\[dq]\f[R].+.SS Setting currency/commodity+.PP+If the currency/commodity symbol is included in the CSV\[aq]s amount+field(s):+.IP+.nf+\f[C]+2020-01-01,foo,$123.00+\f[R]+.fi+.PP+you don\[aq]t have to do anything special for the commodity symbol, it+will be assigned as part of the amount.+Eg:+.IP+.nf+\f[C]+fields date,description,amount+\f[R]+.fi+.IP+.nf+\f[C]+2020-01-01 foo+ expenses:unknown $123.00+ income:unknown $-123.00+\f[R]+.fi+.PP+If the currency is provided as a separate CSV field:+.IP+.nf+\f[C]+2020-01-01,foo,USD,123.00+\f[R]+.fi+.PP+You can assign that to the \f[C]currency\f[R] pseudo-field, which has+the special effect of prepending itself to every amount in the+transaction (on the left, with no separating space):+.IP+.nf+\f[C]+fields date,description,currency,amount+\f[R]+.fi+.IP+.nf+\f[C]+2020-01-01 foo+ expenses:unknown USD123.00+ income:unknown USD-123.00+\f[R]+.fi+.PP+Or, you can use a field assignment to construct the amount yourself,+with more control.+Eg to put the symbol on the right, and separated by a space:+.IP+.nf+\f[C]+fields date,description,cur,amt+amount %amt %cur+\f[R]+.fi+.IP+.nf+\f[C]+2020-01-01 foo+ expenses:unknown 123.00 USD+ income:unknown -123.00 USD+\f[R]+.fi+.PP+Note we used a temporary field name (\f[C]cur\f[R]) that is not+\f[C]currency\f[R] - that would trigger the prepending effect, which we+don\[aq]t want here.+.SS Amount decimal places+.PP+Like amounts in a journal file, the amounts generated by CSV rules like+\f[C]amount1\f[R] influence commodity display styles, such as the number+of decimal places displayed in reports.+.PP+The original amounts as written in the CSV file do not affect display+style (because we don\[aq]t yet reliably know their commodity).+.SS Referencing other fields+.PP+In field assignments, you can interpolate only CSV fields, not hledger+fields.+In the example below, there\[aq]s both a CSV field and a hledger field+named amount1, but %amount1 always means the CSV field, not the hledger+field:+.IP+.nf+\f[C]+# Name the third CSV field \[dq]amount1\[dq]+fields date,description,amount1++# Set hledger\[aq]s amount1 to the CSV amount1 field followed by USD+amount1 %amount1 USD++# Set comment to the CSV amount1 (not the amount1 assigned above)+comment %amount1+\f[R]+.fi+.PP+Here, since there\[aq]s no CSV amount1 field, %amount1 will produce a+literal \[dq]amount1\[dq]:+.IP+.nf+\f[C]+fields date,description,csvamount+amount1 %csvamount USD+# Can\[aq]t interpolate amount1 here+comment %amount1+\f[R]+.fi+.PP+When there are multiple field assignments to the same hledger field,+only the last one takes effect.+Here, comment\[aq]s value will be be B, or C if \[dq]something\[dq] is+matched, but never A:+.IP+.nf+\f[C]+comment A+comment B+if something+ comment C+\f[R]+.fi+.SS How CSV rules are evaluated+.PP+Here\[aq]s how to think of CSV rules being evaluated (if you really need+to).+First,+.IP \[bu] 2+\f[C]include\f[R] - all includes are inlined, from top to bottom, depth+first.+(At each include point the file is inlined and scanned for further+includes, recursively, before proceeding.)+.PP+Then \[dq]global\[dq] rules are evaluated, top to bottom.+If a rule is repeated, the last one wins:+.IP \[bu] 2+\f[C]skip\f[R] (at top level)+.IP \[bu] 2+\f[C]date-format\f[R]+.IP \[bu] 2+\f[C]newest-first\f[R]+.IP \[bu] 2+\f[C]fields\f[R] - names the CSV fields, optionally sets up initial+assignments to hledger fields+.PP+Then for each CSV record in turn:+.IP \[bu] 2+test all \f[C]if\f[R] blocks.+If any of them contain a \f[C]end\f[R] rule, skip all remaining CSV+records.+Otherwise if any of them contain a \f[C]skip\f[R] rule, skip that many+CSV records.+If there are multiple matched \f[C]skip\f[R] rules, the first one wins.+.IP \[bu] 2+collect all field assignments at top level and in matched \f[C]if\f[R]+blocks.+When there are multiple assignments for a field, keep only the last one.+.IP \[bu] 2+compute a value for each hledger field - either the one that was+assigned to it (and interpolate the %CSVFIELDNAME references), or a+default+.IP \[bu] 2+generate a synthetic hledger transaction from these values.+.PP+This is all part of the CSV reader, one of several readers hledger can+use to parse input files.+When all files have been read successfully, the transactions are passed+as input to whichever hledger command the user specified.+.SH TIMECLOCK FORMAT+.PP+The time logging format of timeclock.el, as read by hledger.+.PP+hledger can read time logs in timeclock format.+As with Ledger, these are (a subset of) timeclock.el\[aq]s format,+containing clock-in and clock-out entries as in the example below.+The date is a simple date.+The time format is HH:MM[:SS][+-ZZZZ].+Seconds and timezone are optional.+The timezone, if present, must be four digits and is ignored (currently+the time is always interpreted as a local time).+.IP+.nf+\f[C]+i 2015/03/30 09:00:00 some:account name optional description after two spaces+o 2015/03/30 09:20:00+i 2015/03/31 22:21:45 another account+o 2015/04/01 02:00:34+\f[R]+.fi+.PP+hledger treats each clock-in/clock-out pair as a transaction posting+some number of hours to an account.+Or if the session spans more than one day, it is split into several+transactions, one for each day.+For the above time log, \f[C]hledger print\f[R] generates these journal+entries:+.IP+.nf+\f[C]+$ hledger -f t.timeclock print+2015-03-30 * optional description after two spaces+ (some:account name) 0.33h++2015-03-31 * 22:21-23:59+ (another account) 1.64h++2015-04-01 * 00:00-02:00+ (another account) 2.01h+\f[R]+.fi+.PP+Here is a sample.timeclock to download and some queries to try:+.IP+.nf+\f[C]+$ hledger -f sample.timeclock balance # current time balances+$ hledger -f sample.timeclock register -p 2009/3 # sessions in march 2009+$ hledger -f sample.timeclock register -p weekly --depth 1 --empty # time summary by week+\f[R]+.fi+.PP+To generate time logs, ie to clock in and clock out, you could:+.IP \[bu] 2+use emacs and the built-in timeclock.el, or the extended timeclock-x.el+and perhaps the extras in ledgerutils.el+.IP \[bu] 2+at the command line, use these bash aliases:+\f[C]shell alias ti=\[dq]echo i \[ga]date \[aq]+%Y-%m-%d %H:%M:%S\[aq]\[ga] \[rs]$* >>$TIMELOG\[dq] alias to=\[dq]echo o \[ga]date \[aq]+%Y-%m-%d %H:%M:%S\[aq]\[ga] >>$TIMELOG\[dq]\f[R]+.IP \[bu] 2+or use the old \f[C]ti\f[R] and \f[C]to\f[R] scripts in the ledger 2.x+repository.+These rely on a \[dq]timeclock\[dq] executable which I think is just the+ledger 2 executable renamed.+.SH TIMEDOT FORMAT+.PP+hledger\[aq]s human-friendly time logging format.+.PP+Timedot is a plain text format for logging dated, categorised quantities+(of time, usually), supported by hledger.+It is convenient for approximate and retroactive time logging, eg when+the real-time clock-in/out required with a timeclock file is too precise+or too interruptive.+It can be formatted like a bar chart, making clear at a glance where+time was spent.+.PP+Though called \[dq]timedot\[dq], this format is read by hledger as+commodityless quantities, so it could be used to represent dated+quantities other than time.+In the docs below we\[aq]ll assume it\[aq]s time.+.PP+A timedot file contains a series of day entries.+A day entry begins with a non-indented hledger-style simple date (Y-M-D,+Y/M/D, Y.M.D..) Any additional text on the same line is used as a+transaction description for this day.+.PP+This is followed by optionally-indented timelog items for that day, one+per line.+Each timelog item is a note, usually a hledger:style:account:name+representing a time category, followed by two or more spaces, and a+quantity.+Each timelog item generates a hledger transaction.+.PP+Quantities can be written as:+.IP \[bu] 2+dots: a sequence of dots (.) representing quarter hours.+Spaces may optionally be used for grouping.+Eg: ....+\&..+.IP \[bu] 2+an integral or decimal number, representing hours.+Eg: 1.5+.IP \[bu] 2+an integral or decimal number immediately followed by a unit symbol+\f[C]s\f[R], \f[C]m\f[R], \f[C]h\f[R], \f[C]d\f[R], \f[C]w\f[R],+\f[C]mo\f[R], or \f[C]y\f[R], representing seconds, minutes, hours, days+weeks, months or years respectively.+Eg: 90m.+The following equivalencies are assumed, currently: 1m = 60s, 1h = 60m,+1d = 24h, 1w = 7d, 1mo = 30d, 1y=365d.+.PP+There is some flexibility allowing notes and todo lists to be kept right+in the time log, if needed:+.IP \[bu] 2+Blank lines and lines beginning with \f[C]#\f[R] or \f[C];\f[R] are+ignored.+.IP \[bu] 2+Lines not ending with a double-space and quantity are parsed as items+taking no time, which will not appear in balance reports by default.+(Add -E to see them.)+.IP \[bu] 2+Org mode headlines (lines beginning with one or more \f[C]*\f[R]+followed by a space) can be used as date lines or timelog items (the+stars are ignored).+Also all org headlines before the first date line are ignored.+This means org users can manage their timelog as an org outline (eg+using org-mode/orgstruct-mode in Emacs), for organisation, faster+navigation, controlling visibility etc.+.PP+Examples:+.IP+.nf+\f[C]+# on this day, 6h was spent on client work, 1.5h on haskell FOSS work, etc.+2016/2/1+inc:client1 .... .... .... .... .... ....+fos:haskell .... ..+biz:research .++2016/2/2+inc:client1 .... ....+biz:research .+\f[R]+.fi+.IP+.nf+\f[C]+2016/2/3+inc:client1 4+fos:hledger 3+biz:research 1+\f[R]+.fi+.IP+.nf+\f[C]+* Time log+** 2020-01-01+*** adm:time .+*** adm:finance .+\f[R]+.fi+.IP+.nf+\f[C]+* 2020 Work Diary+** Q1+*** 2020-02-29+**** DONE+0700 yoga+**** UNPLANNED+**** BEGUN+hom:chores+ cleaning ...+ water plants+ outdoor - one full watering can+ indoor - light watering+**** TODO+adm:planning: trip+*** LATER+\f[R]+.fi+.PP+Reporting:+.IP+.nf+\f[C]+$ hledger -f t.timedot print date:2016/2/2+2016-02-02 *+ (inc:client1) 2.00++2016-02-02 *+ (biz:research) 0.25+\f[R]+.fi+.IP+.nf+\f[C]+$ hledger -f t.timedot bal --daily --tree+Balance changes in 2016-02-01-2016-02-03:++ || 2016-02-01d 2016-02-02d 2016-02-03d +============++========================================+ biz || 0.25 0.25 1.00 + research || 0.25 0.25 1.00 + fos || 1.50 0 3.00 + haskell || 1.50 0 0 + hledger || 0 0 3.00 + inc || 6.00 2.00 4.00 + client1 || 6.00 2.00 4.00 +------------++----------------------------------------+ || 7.75 2.25 8.00 +\f[R]+.fi+.PP+I prefer to use period for separating account components.+We can make this work with an account alias:+.IP+.nf+\f[C]+2016/2/4+fos.hledger.timedot 4+fos.ledger ..+\f[R]+.fi+.IP+.nf+\f[C]+$ hledger -f t.timedot --alias /\[rs]\[rs]./=: bal date:2016/2/4 --tree+ 4.50 fos+ 4.00 hledger:timedot+ 0.50 ledger+--------------------+ 4.50+\f[R]+.fi+.PP+Here is a sample.timedot.+.SH COMMON TASKS+.PP+Here are some quick examples of how to do some basic tasks with hledger.+For more details, see the reference section below, the+hledger_journal(5) manual, or the more extensive docs at+https://hledger.org.+.SS Getting help+.IP+.nf+\f[C]+$ hledger # show available commands+$ hledger --help # show common options+$ hledger CMD --help # show common and command options, and command help+$ hledger help # show available manuals/topics+$ hledger help hledger # show hledger manual as info/man/text (auto-chosen)+$ hledger help journal --man # show the journal manual as a man page+$ hledger help --help # show more detailed help for the help command+\f[R]+.fi+.PP+Find more docs, chat, mail list, reddit, issue tracker:+https://hledger.org#help-feedback+.SS Constructing command lines+.PP+hledger has an extensive and powerful command line interface.+We strive to keep it simple and ergonomic, but you may run into one of+the confusing real world details described in OPTIONS, below.+If that happens, here are some tips that may help:+.IP \[bu] 2+command-specific options must go after the command (it\[aq]s fine to put+all options there) (\f[C]hledger CMD OPTS ARGS\f[R])+.IP \[bu] 2+running add-on executables directly simplifies command line parsing+(\f[C]hledger-ui OPTS ARGS\f[R])+.IP \[bu] 2+enclose \[dq]problematic\[dq] args in single quotes+.IP \[bu] 2+if needed, also add a backslash to hide regular expression+metacharacters from the shell+.IP \[bu] 2+to see how a misbehaving command is being parsed, add+\f[C]--debug=2\f[R].+.SS Starting a journal file+.PP+hledger looks for your accounting data in a journal file,+\f[C]$HOME/.hledger.journal\f[R] by default:+.IP+.nf+\f[C]+$ hledger stats+The hledger journal file \[dq]/Users/simon/.hledger.journal\[dq] was not found.+Please create it first, eg with \[dq]hledger add\[dq] or a text editor.+Or, specify an existing journal file with -f or LEDGER_FILE.+\f[R]+.fi+.PP+You can override this by setting the \f[C]LEDGER_FILE\f[R] environment+variable.+It\[aq]s a good practice to keep this important file under version+control, and to start a new file each year.+So you could do something like this:+.IP+.nf+\f[C]+$ mkdir \[ti]/finance+$ cd \[ti]/finance+$ git init+Initialized empty Git repository in /Users/simon/finance/.git/+$ touch 2020.journal+$ echo \[dq]export LEDGER_FILE=$HOME/finance/2020.journal\[dq] >> \[ti]/.bashrc+$ source \[ti]/.bashrc+$ hledger stats+Main file : /Users/simon/finance/2020.journal+Included files : +Transactions span : to (0 days)+Last transaction : none+Transactions : 0 (0.0 per day)+Transactions last 30 days: 0 (0.0 per day)+Transactions last 7 days : 0 (0.0 per day)+Payees/descriptions : 0+Accounts : 0 (depth 0)+Commodities : 0 ()+Market prices : 0 ()+\f[R]+.fi+.SS Setting opening balances+.PP+Pick a starting date for which you can look up the balances of some+real-world assets (bank accounts, wallet..) and liabilities (credit+cards..).+.PP+To avoid a lot of data entry, you may want to start with just one or two+accounts, like your checking account or cash wallet; and pick a recent+starting date, like today or the start of the week.+You can always come back later and add more accounts and older+transactions, eg going back to january 1st.+.PP+Add an opening balances transaction to the journal, declaring the+balances on this date.+Here are two ways to do it:+.IP \[bu] 2+The first way: open the journal in any text editor and save an entry+like this:+.RS 2+.IP+.nf+\f[C]+2020-01-01 * opening balances+ assets:bank:checking $1000 = $1000+ assets:bank:savings $2000 = $2000+ assets:cash $100 = $100+ liabilities:creditcard $-50 = $-50+ equity:opening/closing balances+\f[R]+.fi+.PP+These are start-of-day balances, ie whatever was in the account at the+end of the previous day.+.PP+The * after the date is an optional status flag.+Here it means \[dq]cleared & confirmed\[dq].+.PP+The currency symbols are optional, but usually a good idea as you\[aq]ll+be dealing with multiple currencies sooner or later.+.PP+The = amounts are optional balance assertions, providing extra error+checking.+.RE+.IP \[bu] 2+The second way: run \f[C]hledger add\f[R] and follow the prompts to+record a similar transaction:+.RS 2+.IP+.nf+\f[C]+$ hledger add+Adding transactions to journal file /Users/simon/finance/2020.journal+Any command line arguments will be used as defaults.+Use tab key to complete, readline keys to edit, enter to accept defaults.+An optional (CODE) may follow transaction dates.+An optional ; COMMENT may follow descriptions or amounts.+If you make a mistake, enter < at any prompt to go one step backward.+To end a transaction, enter . when prompted.+To quit, enter . at a date prompt or press control-d or control-c.+Date [2020-02-07]: 2020-01-01+Description: * opening balances+Account 1: assets:bank:checking+Amount 1: $1000+Account 2: assets:bank:savings+Amount 2 [$-1000]: $2000+Account 3: assets:cash+Amount 3 [$-3000]: $100+Account 4: liabilities:creditcard+Amount 4 [$-3100]: $-50+Account 5: equity:opening/closing balances+Amount 5 [$-3050]: +Account 6 (or . or enter to finish this transaction): .+2020-01-01 * opening balances+ assets:bank:checking $1000+ assets:bank:savings $2000+ assets:cash $100+ liabilities:creditcard $-50+ equity:opening/closing balances $-3050++Save this transaction to the journal ? [y]: +Saved.+Starting the next transaction (. or ctrl-D/ctrl-C to quit)+Date [2020-01-01]: .+\f[R]+.fi+.RE+.PP+If you\[aq]re using version control, this could be a good time to commit+the journal.+Eg:+.IP+.nf+\f[C]+$ git commit -m \[aq]initial balances\[aq] 2020.journal+\f[R]+.fi+.SS Recording transactions+.PP+As you spend or receive money, you can record these transactions using+one of the methods above (text editor, hledger add) or by using the+hledger-iadd or hledger-web add-ons, or by using the import command to+convert CSV data downloaded from your bank.+.PP+Here are some simple transactions, see the hledger_journal(5) manual and+hledger.org for more ideas:+.IP+.nf+\f[C]+2020/1/10 * gift received+ assets:cash $20+ income:gifts++2020.1.12 * farmers market+ expenses:food $13+ assets:cash++2020-01-15 paycheck+ income:salary+ assets:bank:checking $1000+\f[R]+.fi+.SS Reconciling+.PP+Periodically you should reconcile - compare your hledger-reported+balances against external sources of truth, like bank statements or your+bank\[aq]s website - to be sure that your ledger accurately represents+the real-world balances (and, that the real-world institutions have not+made a mistake!).+This gets easy and fast with (1) practice and (2) frequency.+If you do it daily, it can take 2-10 minutes.+If you let it pile up, expect it to take longer as you hunt down errors+and discrepancies.+.PP+A typical workflow:+.IP "1." 3+Reconcile cash.+Count what\[aq]s in your wallet.+Compare with what hledger reports (\f[C]hledger bal cash\f[R]).+If they are different, try to remember the missing transaction, or look+for the error in the already-recorded transactions.+A register report can be helpful (\f[C]hledger reg cash\f[R]).+If you can\[aq]t find the error, add an adjustment transaction.+Eg if you have $105 after the above, and can\[aq]t explain the missing+$2, it could be:+.RS 4+.IP+.nf+\f[C]+2020-01-16 * adjust cash+ assets:cash $-2 = $105+ expenses:misc+\f[R]+.fi+.RE+.IP "2." 3+Reconcile checking.+Log in to your bank\[aq]s website.+Compare today\[aq]s (cleared) balance with hledger\[aq]s cleared balance+(\f[C]hledger bal checking -C\f[R]).+If they are different, track down the error or record the missing+transaction(s) or add an adjustment transaction, similar to the above.+Unlike the cash case, you can usually compare the transaction history+and running balance from your bank with the one reported by+\f[C]hledger reg checking -C\f[R].+This will be easier if you generally record transaction dates quite+similar to your bank\[aq]s clearing dates.+.IP "3." 3+Repeat for other asset/liability accounts.+.PP+Tip: instead of the register command, use hledger-ui to see a+live-updating register while you edit the journal:+\f[C]hledger-ui --watch --register checking -C\f[R]+.PP+After reconciling, it could be a good time to mark the reconciled+transactions\[aq] status as \[dq]cleared and confirmed\[dq], if you want+to track that, by adding the \f[C]*\f[R] marker.+Eg in the paycheck transaction above, insert \f[C]*\f[R] between+\f[C]2020-01-15\f[R] and \f[C]paycheck\f[R]+.PP+If you\[aq]re using version control, this can be another good time to+commit:+.IP+.nf+\f[C]+$ git commit -m \[aq]txns\[aq] 2020.journal+\f[R]+.fi+.SS Reporting+.PP+Here are some basic reports.+.PP+Show all transactions:+.IP+.nf+\f[C]+$ hledger print+2020-01-01 * opening balances+ assets:bank:checking $1000+ assets:bank:savings $2000+ assets:cash $100+ liabilities:creditcard $-50+ equity:opening/closing balances $-3050++2020-01-10 * gift received+ assets:cash $20+ income:gifts++2020-01-12 * farmers market+ expenses:food $13+ assets:cash++2020-01-15 * paycheck+ income:salary+ assets:bank:checking $1000++2020-01-16 * adjust cash+ assets:cash $-2 = $105+ expenses:misc+\f[R]+.fi+.PP+Show account names, and their hierarchy:+.IP+.nf+\f[C]+$ hledger accounts --tree+assets+ bank+ checking+ savings+ cash+equity+ opening/closing balances+expenses+ food+ misc+income+ gifts+ salary+liabilities+ creditcard+\f[R]+.fi+.PP+Show all account totals:+.IP+.nf+\f[C]+$ hledger balance+ $4105 assets+ $4000 bank+ $2000 checking+ $2000 savings+ $105 cash+ $-3050 equity:opening/closing balances+ $15 expenses+ $13 food+ $2 misc+ $-1020 income+ $-20 gifts+ $-1000 salary+ $-50 liabilities:creditcard+--------------------+ 0+\f[R]+.fi+.PP+Show only asset and liability balances, as a flat list, limited to depth+2:+.IP+.nf+\f[C]+$ hledger bal assets liabilities --flat -2+ $4000 assets:bank+ $105 assets:cash+ $-50 liabilities:creditcard+--------------------+ $4055+\f[R]+.fi+.PP+Show the same thing without negative numbers, formatted as a simple+balance sheet:+.IP+.nf+\f[C]+$ hledger bs --flat -2+Balance Sheet 2020-01-16++ || 2020-01-16 +========================++============+ Assets || +------------------------++------------+ assets:bank || $4000 + assets:cash || $105 +------------------------++------------+ || $4105 +========================++============+ Liabilities || +------------------------++------------+ liabilities:creditcard || $50 +------------------------++------------+ || $50 +========================++============+ Net: || $4055 +\f[R]+.fi+.PP+The final total is your \[dq]net worth\[dq] on the end date.+(Or use \f[C]bse\f[R] for a full balance sheet with equity.)+.PP+Show income and expense totals, formatted as an income statement:+.IP+.nf+\f[C]+hledger is +Income Statement 2020-01-01-2020-01-16++ || 2020-01-01-2020-01-16 +===============++=======================+ Revenues || +---------------++-----------------------+ income:gifts || $20 + income:salary || $1000 +---------------++-----------------------+ || $1020 +===============++=======================+ Expenses || +---------------++-----------------------+ expenses:food || $13 + expenses:misc || $2 +---------------++-----------------------+ || $15 +===============++=======================+ Net: || $1005 +\f[R]+.fi+.PP+The final total is your net income during this period.+.PP+Show transactions affecting your wallet, with running total:+.IP+.nf+\f[C]+$ hledger register cash+2020-01-01 opening balances assets:cash $100 $100+2020-01-10 gift received assets:cash $20 $120+2020-01-12 farmers market assets:cash $-13 $107+2020-01-16 adjust cash assets:cash $-2 $105+\f[R]+.fi+.PP+Show weekly posting counts as a bar chart:+.IP+.nf+\f[C]+$ hledger activity -W+2019-12-30 *****+2020-01-06 ****+2020-01-13 ****+\f[R]+.fi+.SS Migrating to a new file+.PP+At the end of the year, you may want to continue your journal in a new+file, so that old transactions don\[aq]t slow down or clutter your+reports, and to help ensure the integrity of your accounting history.+See the close command.+.PP+If using version control, don\[aq]t forget to \f[C]git add\f[R] the new+file.+.SH LIMITATIONS+.PP+The need to precede add-on command options with \f[C]--\f[R] when+invoked from hledger is awkward.+.PP+When input data contains non-ascii characters, a suitable system locale+must be configured (or there will be an unhelpful error).+Eg on POSIX, set LANG to something other than C.+.PP+In a Microsoft Windows CMD window, non-ascii characters and colours are+not supported.+.PP+On Windows, non-ascii characters may not display correctly when running+a hledger built in CMD in MSYS/CYGWIN, or vice-versa.+.PP+In a Cygwin/MSYS/Mintty window, the tab key is not supported in hledger+add.+.PP+Not all of Ledger\[aq]s journal file syntax is supported.+See file format differences.+.PP+On large data files, hledger is slower and uses more memory than Ledger.+.SH TROUBLESHOOTING+.PP+Here are some issues you might encounter when you run hledger (and+remember you can also seek help from the IRC channel, mail list or bug+tracker):+.PP+\f[B]Successfully installed, but \[dq]No command \[aq]hledger\[aq]+found\[dq]\f[R]+.PD 0+.P+.PD+stack and cabal install binaries into a special directory, which should+be added to your PATH environment variable.+Eg on unix-like systems, that is \[ti]/.local/bin and \[ti]/.cabal/bin+respectively.+.PP+\f[B]I set a custom LEDGER_FILE, but hledger is still using the default+file\f[R]+.PD 0+.P+.PD+\f[C]LEDGER_FILE\f[R] should be a real environment variable, not just a+shell variable.+The command \f[C]env | grep LEDGER_FILE\f[R] should show it.+You may need to use \f[C]export\f[R].+Here\[aq]s an explanation.+.PP+\f[B]Getting errors like \[dq]Illegal byte sequence\[dq] or \[dq]Invalid+or incomplete multibyte or wide character\[dq] or+\[dq]commitAndReleaseBuffer: invalid argument (invalid+character)\[dq]\f[R]+.PD 0+.P+.PD+Programs compiled with GHC (hledger, haskell build tools, etc.) need to+have a UTF-8-aware locale configured in the environment, otherwise they+will fail with these kinds of errors when they encounter non-ascii+characters.+.PP+To fix it, set the LANG environment variable to some locale which+supports UTF-8.+The locale you choose must be installed on your system.+.PP+Here\[aq]s an example of setting LANG temporarily, on Ubuntu GNU/Linux:+.IP+.nf+\f[C]+$ file my.journal+my.journal: UTF-8 Unicode text # the file is UTF8-encoded+$ echo $LANG+C # LANG is set to the default locale, which does not support UTF8+$ locale -a # which locales are installed ?+C+en_US.utf8 # here\[aq]s a UTF8-aware one we can use+POSIX+$ LANG=en_US.utf8 hledger -f my.journal print # ensure it is used for this command+\f[R]+.fi+.PP+If available, \f[C]C.UTF-8\f[R] will also work.+If your preferred locale isn\[aq]t listed by \f[C]locale -a\f[R], you+might need to install it.+Eg on Ubuntu/Debian:+.IP+.nf+\f[C]+$ apt-get install language-pack-fr+$ locale -a+C+en_US.utf8+fr_BE.utf8+fr_CA.utf8+fr_CH.utf8+fr_FR.utf8+fr_LU.utf8+POSIX+$ LANG=fr_FR.utf8 hledger -f my.journal print+\f[R]+.fi+.PP+Here\[aq]s how you could set it permanently, if you use a bash shell:+.IP+.nf+\f[C]+$ echo \[dq]export LANG=en_US.utf8\[dq] >>\[ti]/.bash_profile+$ bash --login+\f[R]+.fi+.PP+Exact spelling and capitalisation may be important.+Note the difference on MacOS (\f[C]UTF-8\f[R], not \f[C]utf8\f[R]).+Some platforms (eg ubuntu) allow variant spellings, but others (eg+macos) require it to be exact:+.IP+.nf+\f[C]+$ locale -a | grep -iE en_us.*utf+en_US.UTF-8+$ LANG=en_US.UTF-8 hledger -f my.journal print+\f[R]+.fi+++.SH "REPORTING BUGS"+Report bugs at http://bugs.hledger.org+(or on the #hledger IRC channel or hledger mail list)++.SH AUTHORS+Simon Michael <simon@joyful.com> and contributors++.SH COPYRIGHT++Copyright (C) 2007-2020 Simon Michael.+.br+Released under GNU GPL v3 or later.++.SH SEE ALSO+hledger(1), hledger\-ui(1), hledger\-web(1), ledger(1)
hledger.cabal view
@@ -4,10 +4,10 @@ -- -- see: https://github.com/sol/hpack ----- hash: b054f014c84f0d85323a71542c11696e6dbd06510c67a8d1fd26064272dc16a5+-- hash: 3afe815d2abe85ffcf77c10725c143f523394685d99d60c6066bd617e596317b name: hledger-version: 1.20.4+version: 1.21 synopsis: Command-line interface for the hledger accounting system description: The command-line interface for the hledger accounting system. Its basic function is to read a plain text file describing@@ -46,18 +46,6 @@ embeddedfiles/hledger-web.1 embeddedfiles/hledger-web.txt embeddedfiles/hledger-web.info- embeddedfiles/hledger_journal.5- embeddedfiles/hledger_journal.txt- embeddedfiles/hledger_journal.info- embeddedfiles/hledger_csv.5- embeddedfiles/hledger_csv.txt- embeddedfiles/hledger_csv.info- embeddedfiles/hledger_timeclock.5- embeddedfiles/hledger_timeclock.txt- embeddedfiles/hledger_timeclock.info- embeddedfiles/hledger_timedot.5- embeddedfiles/hledger_timedot.txt- embeddedfiles/hledger_timedot.info Hledger/Cli/Commands/Accounts.txt Hledger/Cli/Commands/Activity.txt Hledger/Cli/Commands/Add.txt@@ -67,8 +55,6 @@ Hledger/Cli/Commands/Balancesheetequity.txt Hledger/Cli/Commands/Cashflow.txt Hledger/Cli/Commands/Check.txt- Hledger/Cli/Commands/Checkdates.txt- Hledger/Cli/Commands/Checkdupes.txt Hledger/Cli/Commands/Close.txt Hledger/Cli/Commands/Codes.txt Hledger/Cli/Commands/Commodities.txt@@ -124,8 +110,8 @@ Hledger.Cli.Commands.Balancesheetequity Hledger.Cli.Commands.Cashflow Hledger.Cli.Commands.Check- Hledger.Cli.Commands.Checkdates- Hledger.Cli.Commands.Checkdupes+ Hledger.Cli.Commands.Check.Ordereddates+ Hledger.Cli.Commands.Check.Uniqueleafnames Hledger.Cli.Commands.Close Hledger.Cli.Commands.Codes Hledger.Cli.Commands.Commodities@@ -150,7 +136,7 @@ other-modules: Paths_hledger ghc-options: -Wall -fno-warn-unused-do-bind -fno-warn-name-shadowing -fno-warn-missing-signatures -fno-warn-type-defaults -fno-warn-orphans -optP-Wno-nonportable-include-path- cpp-options: -DVERSION="1.20.4"+ cpp-options: -DVERSION="1.21" build-depends: Decimal >=0.5.1 , Diff@@ -167,7 +153,7 @@ , filepath , hashable >=1.2.4 , haskeline >=0.6- , hledger-lib >=1.20.4 && <1.21+ , hledger-lib >=1.21 && <1.22 , lucid , math-functions >=0.3.3.0 , megaparsec >=7.0.0 && <9.1@@ -201,7 +187,7 @@ hs-source-dirs: app ghc-options: -Wall -fno-warn-unused-do-bind -fno-warn-name-shadowing -fno-warn-missing-signatures -fno-warn-type-defaults -fno-warn-orphans -optP-Wno-nonportable-include-path- cpp-options: -DVERSION="1.20.4"+ cpp-options: -DVERSION="1.21" build-depends: Decimal >=0.5.1 , aeson >=1@@ -217,7 +203,7 @@ , filepath , haskeline >=0.6 , hledger- , hledger-lib >=1.20.4 && <1.21+ , hledger-lib >=1.21 && <1.22 , math-functions >=0.3.3.0 , megaparsec >=7.0.0 && <9.1 , mtl >=2.2.1@@ -251,7 +237,7 @@ hs-source-dirs: test ghc-options: -Wall -fno-warn-unused-do-bind -fno-warn-name-shadowing -fno-warn-missing-signatures -fno-warn-type-defaults -fno-warn-orphans -optP-Wno-nonportable-include-path- cpp-options: -DVERSION="1.20.4"+ cpp-options: -DVERSION="1.21" build-depends: Decimal >=0.5.1 , aeson >=1@@ -267,7 +253,7 @@ , filepath , haskeline >=0.6 , hledger- , hledger-lib >=1.20.4 && <1.21+ , hledger-lib >=1.21 && <1.22 , math-functions >=0.3.3.0 , megaparsec >=7.0.0 && <9.1 , mtl >=2.2.1@@ -315,7 +301,7 @@ , filepath , haskeline >=0.6 , hledger- , hledger-lib >=1.20.4 && <1.21+ , hledger-lib >=1.21 && <1.22 , html , math-functions >=0.3.3.0 , megaparsec >=7.0.0 && <9.1
hledger.info view
@@ -7,4613 +7,9052 @@ hledger(1) ********** -A command-line accounting tool for both power users and folks new to-accounting.-- `hledger'-- `hledger [-f FILE] COMMAND [OPTIONS] [ARGS]'-- `hledger [-f FILE] ADDONCMD -- [OPTIONS] [ARGS]'-- hledger is a reliable, cross-platform set of programs for tracking-money, time, or any other commodity, using double-entry accounting and a-simple, editable file format. hledger is inspired by and largely-compatible with ledger(1).-- This is hledger's command-line interface (there are also terminal and-web interfaces). Its basic function is to read a plain text file-describing financial transactions (in accounting terms, a general-journal) and print useful reports on standard output, or export them as-CSV. hledger can also read some other file formats such as CSV files,-translating them to journal format. Additionally, hledger lists other-hledger-* executables found in the user's $PATH and can invoke them as-subcommands.-- hledger reads data from one or more files in hledger journal,-timeclock, timedot, or CSV format specified with `-f', or-`$LEDGER_FILE', or `$HOME/.hledger.journal' (on windows, perhaps-`C:/Users/USER/.hledger.journal'). If using `$LEDGER_FILE', note this-must be a real environment variable, not a shell variable. You can-specify standard input with `-f-'.-- Transactions are dated movements of money between two (or more) named-accounts, and are recorded with journal entries like this:---2015/10/16 bought food- expenses:food $10- assets:cash-- For more about this format, see hledger_journal(5).-- Most users use a text editor to edit the journal, usually with an-editor mode such as ledger-mode for added convenience. hledger's-interactive add command is another way to record new transactions.-hledger never changes existing transactions.-- To get started, you can either save some entries like the above in-`~/.hledger.journal', or run `hledger add' and follow the prompts. Then-try some commands like `hledger print' or `hledger balance'. Run-`hledger' with no arguments for a list of commands.--* Menu:--* COMMON TASKS::-* OPTIONS::-* COMMANDS::-* ENVIRONMENT::-* FILES::-* LIMITATIONS::-* TROUBLESHOOTING::---File: hledger.info, Node: COMMON TASKS, Next: OPTIONS, Prev: Top, Up: Top--1 COMMON TASKS-**************--Here are some quick examples of how to do some basic tasks with hledger.-For more details, see the reference section below, the-hledger_journal(5) manual, or the more extensive docs at-https://hledger.org.--* Menu:--* Getting help::-* Constructing command lines::-* Starting a journal file::-* Setting opening balances::-* Recording transactions::-* Reconciling::-* Reporting::-* Migrating to a new file::---File: hledger.info, Node: Getting help, Next: Constructing command lines, Up: COMMON TASKS--1.1 Getting help-================---$ hledger # show available commands-$ hledger --help # show common options-$ hledger CMD --help # show common and command options, and command help-$ hledger help # show available manuals/topics-$ hledger help hledger # show hledger manual as info/man/text (auto-chosen)-$ hledger help journal --man # show the journal manual as a man page-$ hledger help --help # show more detailed help for the help command--Find more docs, chat, mail list, reddit, issue tracker:-https://hledger.org#help-feedback---File: hledger.info, Node: Constructing command lines, Next: Starting a journal file, Prev: Getting help, Up: COMMON TASKS--1.2 Constructing command lines-==============================--hledger has an extensive and powerful command line interface. We strive-to keep it simple and ergonomic, but you may run into one of the-confusing real world details described in OPTIONS, below. If that-happens, here are some tips that may help:-- * command-specific options must go after the command (it's fine to- put all options there) (`hledger CMD OPTS ARGS')-- * running add-on executables directly simplifies command line parsing- (`hledger-ui OPTS ARGS')-- * enclose "problematic" args in single quotes-- * if needed, also add a backslash to hide regular expression- metacharacters from the shell-- * to see how a misbehaving command is being parsed, add `--debug=2'.---File: hledger.info, Node: Starting a journal file, Next: Setting opening balances, Prev: Constructing command lines, Up: COMMON TASKS--1.3 Starting a journal file-===========================--hledger looks for your accounting data in a journal file,-`$HOME/.hledger.journal' by default:---$ hledger stats-The hledger journal file "/Users/simon/.hledger.journal" was not found.-Please create it first, eg with "hledger add" or a text editor.-Or, specify an existing journal file with -f or LEDGER_FILE.-- You can override this by setting the `LEDGER_FILE' environment-variable. It's a good practice to keep this important file under version-control, and to start a new file each year. So you could do something-like this:---$ mkdir ~/finance-$ cd ~/finance-$ git init-Initialized empty Git repository in /Users/simon/finance/.git/-$ touch 2020.journal-$ echo "export LEDGER_FILE=$HOME/finance/2020.journal" >> ~/.bashrc-$ source ~/.bashrc-$ hledger stats-Main file : /Users/simon/finance/2020.journal-Included files :-Transactions span : to (0 days)-Last transaction : none-Transactions : 0 (0.0 per day)-Transactions last 30 days: 0 (0.0 per day)-Transactions last 7 days : 0 (0.0 per day)-Payees/descriptions : 0-Accounts : 0 (depth 0)-Commodities : 0 ()-Market prices : 0 ()---File: hledger.info, Node: Setting opening balances, Next: Recording transactions, Prev: Starting a journal file, Up: COMMON TASKS--1.4 Setting opening balances-============================--Pick a starting date for which you can look up the balances of some-real-world assets (bank accounts, wallet..) and liabilities (credit-cards..).-- To avoid a lot of data entry, you may want to start with just one or-two accounts, like your checking account or cash wallet; and pick a-recent starting date, like today or the start of the week. You can-always come back later and add more accounts and older transactions, eg-going back to january 1st.-- Add an opening balances transaction to the journal, declaring the-balances on this date. Here are two ways to do it:-- * The first way: open the journal in any text editor and save an- entry like this:--- 2020-01-01 * opening balances- assets:bank:checking $1000 = $1000- assets:bank:savings $2000 = $2000- assets:cash $100 = $100- liabilities:creditcard $-50 = $-50- equity:opening/closing balances-- These are start-of-day balances, ie whatever was in the account at- the end of the previous day.-- The * after the date is an optional status flag. Here it means- "cleared & confirmed".-- The currency symbols are optional, but usually a good idea as- you'll be dealing with multiple currencies sooner or later.-- The = amounts are optional balance assertions, providing extra- error checking.-- * The second way: run `hledger add' and follow the prompts to record- a similar transaction:--- $ hledger add- Adding transactions to journal file /Users/simon/finance/2020.journal- Any command line arguments will be used as defaults.- Use tab key to complete, readline keys to edit, enter to accept defaults.- An optional (CODE) may follow transaction dates.- An optional ; COMMENT may follow descriptions or amounts.- If you make a mistake, enter < at any prompt to go one step backward.- To end a transaction, enter . when prompted.- To quit, enter . at a date prompt or press control-d or control-c.- Date [2020-02-07]: 2020-01-01- Description: * opening balances- Account 1: assets:bank:checking- Amount 1: $1000- Account 2: assets:bank:savings- Amount 2 [$-1000]: $2000- Account 3: assets:cash- Amount 3 [$-3000]: $100- Account 4: liabilities:creditcard- Amount 4 [$-3100]: $-50- Account 5: equity:opening/closing balances- Amount 5 [$-3050]:- Account 6 (or . or enter to finish this transaction): .- 2020-01-01 * opening balances- assets:bank:checking $1000- assets:bank:savings $2000- assets:cash $100- liabilities:creditcard $-50- equity:opening/closing balances $-3050-- Save this transaction to the journal ? [y]:- Saved.- Starting the next transaction (. or ctrl-D/ctrl-C to quit)- Date [2020-01-01]: .--- If you're using version control, this could be a good time to commit-the journal. Eg:---$ git commit -m 'initial balances' 2020.journal---File: hledger.info, Node: Recording transactions, Next: Reconciling, Prev: Setting opening balances, Up: COMMON TASKS--1.5 Recording transactions-==========================--As you spend or receive money, you can record these transactions using-one of the methods above (text editor, hledger add) or by using the-hledger-iadd or hledger-web add-ons, or by using the import command to-convert CSV data downloaded from your bank.-- Here are some simple transactions, see the hledger_journal(5) manual-and hledger.org for more ideas:---2020/1/10 * gift received- assets:cash $20- income:gifts--2020.1.12 * farmers market- expenses:food $13- assets:cash--2020-01-15 paycheck- income:salary- assets:bank:checking $1000---File: hledger.info, Node: Reconciling, Next: Reporting, Prev: Recording transactions, Up: COMMON TASKS--1.6 Reconciling-===============--Periodically you should reconcile - compare your hledger-reported-balances against external sources of truth, like bank statements or your-bank's website - to be sure that your ledger accurately represents the-real-world balances (and, that the real-world institutions have not made-a mistake!). This gets easy and fast with (1) practice and (2)-frequency. If you do it daily, it can take 2-10 minutes. If you let it-pile up, expect it to take longer as you hunt down errors and-discrepancies.-- A typical workflow:-- 1. Reconcile cash. Count what's in your wallet. Compare with what- hledger reports (`hledger bal cash'). If they are different, try to- remember the missing transaction, or look for the error in the- already-recorded transactions. A register report can be helpful- (`hledger reg cash'). If you can't find the error, add an- adjustment transaction. Eg if you have $105 after the above, and- can't explain the missing $2, it could be:--- 2020-01-16 * adjust cash- assets:cash $-2 = $105- expenses:misc-- 2. Reconcile checking. Log in to your bank's website. Compare today's- (cleared) balance with hledger's cleared balance (`hledger bal- checking -C'). If they are different, track down the error or- record the missing transaction(s) or add an adjustment- transaction, similar to the above. Unlike the cash case, you can- usually compare the transaction history and running balance from- your bank with the one reported by `hledger reg checking -C'. This- will be easier if you generally record transaction dates quite- similar to your bank's clearing dates.-- 3. Repeat for other asset/liability accounts.--- Tip: instead of the register command, use hledger-ui to see a-live-updating register while you edit the journal: `hledger-ui --watch---register checking -C'-- After reconciling, it could be a good time to mark the reconciled-transactions' status as "cleared and confirmed", if you want to track-that, by adding the `*' marker. Eg in the paycheck transaction above,-insert `*' between `2020-01-15' and `paycheck'-- If you're using version control, this can be another good time to-commit:---$ git commit -m 'txns' 2020.journal---File: hledger.info, Node: Reporting, Next: Migrating to a new file, Prev: Reconciling, Up: COMMON TASKS--1.7 Reporting-=============--Here are some basic reports.-- Show all transactions:---$ hledger print-2020-01-01 * opening balances- assets:bank:checking $1000- assets:bank:savings $2000- assets:cash $100- liabilities:creditcard $-50- equity:opening/closing balances $-3050--2020-01-10 * gift received- assets:cash $20- income:gifts--2020-01-12 * farmers market- expenses:food $13- assets:cash--2020-01-15 * paycheck- income:salary- assets:bank:checking $1000--2020-01-16 * adjust cash- assets:cash $-2 = $105- expenses:misc-- Show account names, and their hierarchy:---$ hledger accounts --tree-assets- bank- checking- savings- cash-equity- opening/closing balances-expenses- food- misc-income- gifts- salary-liabilities- creditcard-- Show all account totals:---$ hledger balance- $4105 assets- $4000 bank- $2000 checking- $2000 savings- $105 cash- $-3050 equity:opening/closing balances- $15 expenses- $13 food- $2 misc- $-1020 income- $-20 gifts- $-1000 salary- $-50 liabilities:creditcard---------------------- 0-- Show only asset and liability balances, as a flat list, limited to-depth 2:---$ hledger bal assets liabilities --flat -2- $4000 assets:bank- $105 assets:cash- $-50 liabilities:creditcard---------------------- $4055-- Show the same thing without negative numbers, formatted as a simple-balance sheet:---$ hledger bs --flat -2-Balance Sheet 2020-01-16-- || 2020-01-16-========================++============- Assets ||-------------------------++------------- assets:bank || $4000- assets:cash || $105-------------------------++------------- || $4105-========================++============- Liabilities ||-------------------------++------------- liabilities:creditcard || $50-------------------------++------------- || $50-========================++============- Net: || $4055-- The final total is your "net worth" on the end date. (Or use `bse'-for a full balance sheet with equity.)-- Show income and expense totals, formatted as an income statement:---hledger is-Income Statement 2020-01-01-2020-01-16-- || 2020-01-01-2020-01-16-===============++=======================- Revenues ||----------------++------------------------ income:gifts || $20- income:salary || $1000----------------++------------------------ || $1020-===============++=======================- Expenses ||----------------++------------------------ expenses:food || $13- expenses:misc || $2----------------++------------------------ || $15-===============++=======================- Net: || $1005-- The final total is your net income during this period.-- Show transactions affecting your wallet, with running total:---$ hledger register cash-2020-01-01 opening balances assets:cash $100 $100-2020-01-10 gift received assets:cash $20 $120-2020-01-12 farmers market assets:cash $-13 $107-2020-01-16 adjust cash assets:cash $-2 $105-- Show weekly posting counts as a bar chart:---$ hledger activity -W-2019-12-30 *****-2020-01-06 ****-2020-01-13 ****---File: hledger.info, Node: Migrating to a new file, Prev: Reporting, Up: COMMON TASKS--1.8 Migrating to a new file-===========================--At the end of the year, you may want to continue your journal in a new-file, so that old transactions don't slow down or clutter your reports,-and to help ensure the integrity of your accounting history. See the-close command.-- If using version control, don't forget to `git add' the new file.---File: hledger.info, Node: OPTIONS, Next: COMMANDS, Prev: COMMON TASKS, Up: Top--2 OPTIONS-*********--* Menu:--* General options::-* Command options::-* Command arguments::-* Queries::-* Special characters in arguments and queries::-* Unicode characters::-* Input files::-* Strict mode::-* Output destination::-* Output format::-* Regular expressions::-* Smart dates::-* Report start & end date::-* Report intervals::-* Period expressions::-* Depth limiting::-* Pivoting::-* Valuation::---File: hledger.info, Node: General options, Next: Command options, Up: OPTIONS--2.1 General options-===================--To see general usage help, including general options which are supported-by most hledger commands, run `hledger -h'.-- General help options:--`-h --help'- show general usage (or after COMMAND, command usage)--`--version'- show version--`--debug[=N]'- show debug output (levels 1-9, default: 1)-- General input options:--`-f FILE --file=FILE'- use a different input file. For stdin, use - (default:- `$LEDGER_FILE' or `$HOME/.hledger.journal')--`--rules-file=RULESFILE'- Conversion rules file to use when reading CSV (default: FILE.rules)--`--separator=CHAR'- Field separator to expect when reading CSV (default: ',')--`--alias=OLD=NEW'- rename accounts named OLD to NEW--`--anon'- anonymize accounts and payees--`--pivot FIELDNAME'- use some other field or tag for the account name--`-I --ignore-assertions'- disable balance assertion checks (note: does not disable balance- assignments)--`-s --strict'- do extra error checking (check that all posted accounts are- declared)-- General reporting options:--`-b --begin=DATE'- include postings/txns on or after this date--`-e --end=DATE'- include postings/txns before this date--`-D --daily'- multiperiod/multicolumn report by day--`-W --weekly'- multiperiod/multicolumn report by week--`-M --monthly'- multiperiod/multicolumn report by month--`-Q --quarterly'- multiperiod/multicolumn report by quarter--`-Y --yearly'- multiperiod/multicolumn report by year--`-p --period=PERIODEXP'- set start date, end date, and/or reporting interval all at once- using period expressions syntax--`--date2'- match the secondary date instead (see command help for other- effects)--`-U --unmarked'- include only unmarked postings/txns (can combine with -P or -C)--`-P --pending'- include only pending postings/txns--`-C --cleared'- include only cleared postings/txns--`-R --real'- include only non-virtual postings--`-NUM --depth=NUM'- hide/aggregate accounts or postings more than NUM levels deep--`-E --empty'- show items with zero amount, normally hidden (and vice-versa in- hledger-ui/hledger-web)--`-B --cost'- convert amounts to their cost/selling amount at transaction time--`-V --market'- convert amounts to their market value in default valuation- commodities--`-X --exchange=COMM'- convert amounts to their market value in commodity COMM--`--value'- convert amounts to cost or market value, more flexibly than- -B/-V/-X--`--infer-value'- with -V/-X/-value, also infer market prices from transactions--`--auto'- apply automated posting rules to modify transactions.--`--forecast'- generate future transactions from periodic transaction rules, for- the next 6 months or till report end date. In hledger-ui, also- make ordinary future transactions visible.--`--color=WHEN (or --colour=WHEN)'- Should color-supporting commands use ANSI color codes in text- output. 'auto' (default): whenever stdout seems to be a- color-supporting terminal. 'always' or 'yes': always, useful eg- when piping output into 'less -R'. 'never' or 'no': never. A- NO_COLOR environment variable overrides this.-- When a reporting option appears more than once in the command line,-the last one takes precedence.-- Some reporting options can also be written as query arguments.---File: hledger.info, Node: Command options, Next: Command arguments, Prev: General options, Up: OPTIONS--2.2 Command options-===================--To see options for a particular command, including command-specific-options, run: `hledger COMMAND -h'.-- Command-specific options must be written after the command name, eg:-`hledger print -x'.-- Additionally, if the command is an add-on, you may need to put its-options after a double-hyphen, eg: `hledger ui -- --watch'. Or, you can-run the add-on executable directly: `hledger-ui --watch'.---File: hledger.info, Node: Command arguments, Next: Queries, Prev: Command options, Up: OPTIONS--2.3 Command arguments-=====================--Most hledger commands accept arguments after the command name, which are-often a query, filtering the data in some way.-- You can save a set of command line options/arguments in a file, and-then reuse them by writing `@FILENAME' as a command line argument. Eg:-`hledger bal @foo.args'. (To prevent this, eg if you have an argument-that begins with a literal `@', precede it with `--', eg: `hledger bal--- @ARG').-- Inside the argument file, each line should contain just one option or-argument. Avoid the use of spaces, except inside quotes (or you'll see a-confusing error). Between a flag and its argument, use = (or nothing).-Bad:---assets depth:2--X USD-- Good:---assets-depth:2--X=USD-- For special characters (see below), use one less level of quoting-than you would at the command prompt. Bad:----X"$"-- Good:----X$-- See also: Save frequently used options.---File: hledger.info, Node: Queries, Next: Special characters in arguments and queries, Prev: Command arguments, Up: OPTIONS--2.4 Queries-===========--One of hledger's strengths is being able to quickly report on precise-subsets of your data. Most commands accept an optional query expression,-written as arguments after the command name, to filter the data by date,-account name or other criteria. The syntax is similar to a web search:-one or more space-separated search terms, quotes to enclose whitespace,-prefixes to match specific fields, a not: prefix to negate the match.-- We do not yet support arbitrary boolean combinations of search terms;-instead most commands show transactions/postings/accounts which match-(or negatively match):-- * any of the description terms AND-- * any of the account terms AND-- * any of the status terms AND-- * all the other terms.-- The print command instead shows transactions which:-- * match any of the description terms AND-- * have any postings matching any of the positive account terms AND-- * have no postings matching any of the negative account terms AND-- * match all the other terms.-- The following kinds of search terms can be used. Remember these can-also be prefixed with *`not:'*, eg to exclude a particular subaccount.--*`REGEX', `acct:REGEX'*- match account names by this regular expression. (With no prefix,- `acct:' is assumed.) same as above--*`amt:N, amt:<N, amt:<=N, amt:>N, amt:>=N'*- match postings with a single-commodity amount that is equal to,- less than, or greater than N. (Multi-commodity amounts are not- tested, and will always match.) The comparison has two modes: if N- is preceded by a + or - sign (or is 0), the two signed numbers are- compared. Otherwise, the absolute magnitudes are compared,- ignoring sign.--*`code:REGEX'*- match by transaction code (eg check number)--*`cur:REGEX'*- match postings or transactions including any amounts whose- currency/commodity symbol is fully matched by REGEX. (For a partial- match, use `.*REGEX.*'). Note, to match characters which are- regex-significant, like the dollar sign (`$'), you need to prepend- `\'. And when using the command line you need to add one more level- of quoting to hide it from the shell, so eg do: `hledger print- cur:'\$'' or `hledger print cur:\\$'.--*`desc:REGEX'*- match transaction descriptions.--*`date:PERIODEXPR'*- match dates within the specified period. PERIODEXPR is a period- expression (with no report interval). Examples: `date:2016',- `date:thismonth', `date:2000/2/1-2/15', `date:lastweek-'. If the- `--date2' command line flag is present, this matches secondary- dates instead.--*`date2:PERIODEXPR'*- match secondary dates within the specified period.--*`depth:N'*- match (or display, depending on command) accounts at or above this- depth--*`note:REGEX'*- match transaction notes (part of description right of `|', or whole- description when there's no `|')--*`payee:REGEX'*- match transaction payee/payer names (part of description left of- `|', or whole description when there's no `|')--*`real:, real:0'*- match real or virtual postings respectively--*`status:, status:!, status:*'*- match unmarked, pending, or cleared transactions respectively--*`tag:REGEX[=REGEX]'*- match by tag name, and optionally also by tag value. Note a tag:- query is considered to match a transaction if it matches any of- the postings. Also remember that postings inherit the tags of- their parent transaction.-- The following special search term is used automatically in-hledger-web, only:--*`inacct:ACCTNAME'*- tells hledger-web to show the transaction register for this- account. Can be filtered further with `acct' etc.-- Some of these can also be expressed as command-line options (eg-`depth:2' is equivalent to `--depth 2'). Generally you can mix options-and query arguments, and the resulting query will be their intersection-(perhaps excluding the `-p/--period' option).---File: hledger.info, Node: Special characters in arguments and queries, Next: Unicode characters, Prev: Queries, Up: OPTIONS--2.5 Special characters in arguments and queries-===============================================--In shell command lines, option and argument values which contain-"problematic" characters, ie spaces, and also characters significant to-your shell such as `<', `>', `(', `)', `|' and `$', should be escaped-by enclosing them in quotes or by writing backslashes before the-characters. Eg:-- `hledger register -p 'last year' "accounts receivable-(receivable|payable)" amt:\>100'.--* Menu:--* More escaping::-* Even more escaping::-* Less escaping::---File: hledger.info, Node: More escaping, Next: Even more escaping, Up: Special characters in arguments and queries--2.5.1 More escaping----------------------Characters significant both to the shell and in regular expressions may-need one extra level of escaping. These include parentheses, the pipe-symbol and the dollar sign. Eg, to match the dollar symbol, bash users-should do:-- `hledger balance cur:'\$''-- or:-- `hledger balance cur:\\$'---File: hledger.info, Node: Even more escaping, Next: Less escaping, Prev: More escaping, Up: Special characters in arguments and queries--2.5.2 Even more escaping---------------------------When hledger runs an add-on executable (eg you type `hledger ui',-hledger runs `hledger-ui'), it de-escapes command-line options and-arguments once, so you might need to _triple_-escape. Eg in bash,-running the ui command and matching the dollar sign, it's:-- `hledger ui cur:'\\$''-- or:-- `hledger ui cur:\\\\$'-- If you asked why _four_ slashes above, this may help:--unescaped: `$'-escaped: `\$'-double-escaped: `\\$'-triple-escaped: `\\\\$'-- (The number of backslashes in fish shell is left as an exercise for-the reader.)-- You can always avoid the extra escaping for add-ons by running the-add-on directly:-- `hledger-ui cur:\\$'---File: hledger.info, Node: Less escaping, Prev: Even more escaping, Up: Special characters in arguments and queries--2.5.3 Less escaping----------------------Inside an argument file, or in the search field of hledger-ui or-hledger-web, or at a GHCI prompt, you need one less level of escaping-than at the command line. And backslashes may work better than quotes.-Eg:-- `ghci> :main balance cur:\$'---File: hledger.info, Node: Unicode characters, Next: Input files, Prev: Special characters in arguments and queries, Up: OPTIONS--2.6 Unicode characters-======================--hledger is expected to handle non-ascii characters correctly:-- * they should be parsed correctly in input files and on the command- line, by all hledger tools (add, iadd, hledger-web's- search/add/edit forms, etc.)-- * they should be displayed correctly by all hledger tools, and- on-screen alignment should be preserved.--- This requires a well-configured environment. Here are some tips:-- * A system locale must be configured, and it must be one that can- decode the characters being used. In bash, you can set a locale- like this: `export LANG=en_US.UTF-8'. There are some more details- in Troubleshooting. This step is essential - without it, hledger- will quit on encountering a non-ascii character (as with all- GHC-compiled programs).-- * your terminal software (eg Terminal.app, iTerm, CMD.exe, xterm..)- must support unicode-- * the terminal must be using a font which includes the required- unicode glyphs-- * the terminal should be configured to display wide characters as- double width (for report alignment)-- * on Windows, for best results you should run hledger in the same- kind of environment in which it was built. Eg hledger built in the- standard CMD.EXE environment (like the binaries on our download- page) might show display problems when run in a cygwin or msys- terminal, and vice versa. (See eg #961).----File: hledger.info, Node: Input files, Next: Strict mode, Prev: Unicode characters, Up: OPTIONS--2.7 Input files-===============--hledger reads transactions from a data file (and the add command writes-to it). By default this file is `$HOME/.hledger.journal' (or on-Windows, something like `C:/Users/USER/.hledger.journal'). You can-override this with the `$LEDGER_FILE' environment variable:---$ setenv LEDGER_FILE ~/finance/2016.journal-$ hledger stats-- or with the `-f/--file' option:---$ hledger -f /some/file stats-- The file name `-' (hyphen) means standard input:---$ cat some.journal | hledger -f--- Usually the data file is in hledger's journal format, but it can be-in any of the supported file formats, which currently are:--Reader: Reads: Used for file- extensions:--------------------------------------------------------------------------- -`journal'hledger journal files and some Ledger `.journal' `.j'- journals, for transactions `.hledger' `.ledger'-`timeclock'timeclock files, for precise time `.timeclock'- logging -`timedot'timedot files, for approximate time `.timedot'- logging -`csv' comma/semicolon/tab/other-separated `.csv' `.ssv' `.tsv'- values, for data import -- hledger detects the format automatically based on the file extensions-shown above. If it can't recognise the file extension, it assumes-`journal' format. So for non-journal files, it's important to use a-recognised file extension, so as to either read successfully or to show-relevant error messages.-- When you can't ensure the right file extension, not to worry: you can-force a specific reader/format by prefixing the file path with the-format and a colon. Eg to read a .dat file as csv:---$ hledger -f csv:/some/csv-file.dat stats-$ echo 'i 2009/13/1 08:00:00' | hledger print -ftimeclock:--- You can specify multiple `-f' options, to read multiple files as one-big journal. There are some limitations with this:-- * directives in one file will not affect the other files-- * balance assertions will not see any account balances from previous- files-- If you need either of those things, you can-- * use a single parent file which includes the others-- * or concatenate the files into one before reading, eg: `cat- a.journal b.journal | hledger -f- CMD'.---File: hledger.info, Node: Strict mode, Next: Output destination, Prev: Input files, Up: OPTIONS--2.8 Strict mode-===============--hledger checks input files for valid data. By default, the most-important errors are detected, while still accepting easy journal files-without a lot of declarations:-- * Are the input files parseable, with valid syntax ?-- * Are all transactions balanced ?-- * Do all balance assertions pass ?-- With the `-s'/`--strict' flag, additional checks are performed:-- * Are all accounts posted to, declared with an `account' directive ?- (Account error checking)-- * Are all commodities declared with a `commodity' directive ?- (Commodity error checking)-- See also: https://hledger.org/checking-for-errors.html-- _experimental._---File: hledger.info, Node: Output destination, Next: Output format, Prev: Strict mode, Up: OPTIONS--2.9 Output destination-======================--hledger commands send their output to the terminal by default. You can-of course redirect this, eg into a file, using standard shell syntax:---$ hledger print > foo.txt-- Some commands (print, register, stats, the balance commands) also-provide the `-o/--output-file' option, which does the same thing-without needing the shell. Eg:---$ hledger print -o foo.txt-$ hledger print -o - # write to stdout (the default)---File: hledger.info, Node: Output format, Next: Regular expressions, Prev: Output destination, Up: OPTIONS--2.10 Output format-==================--Some commands (print, register, the balance commands) offer a choice of-output format. In addition to the usual plain text format (`txt'),-there are CSV (`csv'), HTML (`html'), JSON (`json') and SQL (`sql').-This is controlled by the `-O/--output-format' option:---$ hledger print -O csv-- or, by a file extension specified with `-o/--output-file':---$ hledger balancesheet -o foo.html # write HTML to foo.html-- The `-O' option can be used to override the file extension if needed:---$ hledger balancesheet -o foo.txt -O html # write HTML to foo.txt-- Some notes about JSON output:-- * This feature is marked experimental, and not yet much used; you- should expect our JSON to evolve. Real-world feedback is welcome.-- * Our JSON is rather large and verbose, as it is quite a faithful- representation of hledger's internal data types. To understand the- JSON, read the Haskell type definitions, which are mostly in- https://github.com/simonmichael/hledger/blob/master/hledger-lib/Hledger/Data/Types.hs.--- * hledger represents quantities as Decimal values storing up to 255- significant digits, eg for repeating decimals. Such numbers can- arise in practice (from automatically-calculated transaction- prices), and would break most JSON consumers. So in JSON, we show- quantities as simple Numbers with at most 10 decimal places. We- don't limit the number of integer digits, but that part is under- your control. We hope this approach will not cause problems in- practice; if you find otherwise, please let us know. (Cf #1195)-- Notes about SQL output:-- * SQL output is also marked experimental, and much like JSON could- use real-world feedback.-- * SQL output is expected to work with sqlite, MySQL and PostgreSQL-- * SQL output is structured with the expectations that statements- will be executed in the empty database. If you already have tables- created via SQL output of hledger, you would probably want to- either clear tables of existing data (via `delete' or `truncate'- SQL statements) or drop tables completely as otherwise your- postings will be duped.----File: hledger.info, Node: Regular expressions, Next: Smart dates, Prev: Output format, Up: OPTIONS--2.11 Regular expressions-========================--hledger uses regular expressions in a number of places:-- * query terms, on the command line and in the hledger-web search- form: `REGEX', `desc:REGEX', `cur:REGEX', `tag:...=REGEX'-- * CSV rules conditional blocks: `if REGEX ...'-- * account alias directives and options: `alias /REGEX/ =- REPLACEMENT', `--alias /REGEX/=REPLACEMENT'-- hledger's regular expressions come from the regex-tdfa library. If-they're not doing what you expect, it's important to know exactly what-they support:-- 1. they are case insensitive-- 2. they are infix matching (they do not need to match the entire thing- being matched)-- 3. they are POSIX ERE (extended regular expressions)-- 4. they also support GNU word boundaries (`\b', `\B', `\<', `\>')-- 5. they do not support backreferences; if you write `\1', it will- match the digit `1'. Except when doing text replacement, eg in- account aliases, where backreferences can be used in the- replacement string to reference capturing groups in the search- regexp.-- 6. they do not support mode modifiers (`(?s)'), character classes- (`\w', `\d'), or anything else not mentioned above.-- Some things to note:-- * In the `alias' directive and `--alias' option, regular expressions- must be enclosed in forward slashes (`/REGEX/'). Elsewhere in- hledger, these are not required.-- * In queries, to match a regular expression metacharacter like `$' as- a literal character, prepend a backslash. Eg to search for amounts- with the dollar sign in hledger-web, write `cur:\$'.-- * On the command line, some metacharacters like `$' have a special- meaning to the shell and so must be escaped at least once more. See- Special characters.----File: hledger.info, Node: Smart dates, Next: Report start & end date, Prev: Regular expressions, Up: OPTIONS--2.12 Smart dates-================--hledger's user interfaces accept a flexible "smart date" syntax (unlike-dates in the journal file). Smart dates allow some english words, can be-relative to today's date, and can have less-significant date parts-omitted (defaulting to 1).-- Examples:--`2004/10/1', exact date, several separators allowed. Year-`2004-01-01', `2004.9.1' is 4+ digits, month is 1-12, day is 1-31-`2004' start of year-`2004/10' start of month-`10/1' month and day in current year-`21' day in current month-`october, oct' start of month in current year-`yesterday, today, -1, 0, 1 days from today-tomorrow' -`last/this/next -1, 0, 1 periods from the current period-day/week/month/quarter/year'-`20181201' 8 digit YYYYMMDD with valid year month and day-`201812' 6 digit YYYYMM with valid year and month-- Counterexamples - malformed digit sequences might give surprising-results:--`201813' 6 digits with an invalid month is parsed as start of- 6-digit year-`20181301' 8 digits with an invalid month is parsed as start of- 8-digit year-`20181232' 8 digits with an invalid day gives an error-`201801012' 9+ digits beginning with a valid YYYYMMDD gives an error---File: hledger.info, Node: Report start & end date, Next: Report intervals, Prev: Smart dates, Up: OPTIONS--2.13 Report start & end date-============================--Most hledger reports show the full span of time represented by the-journal data, by default. So, the effective report start and end dates-will be the earliest and latest transaction or posting dates found in-the journal.-- Often you will want to see a shorter time span, such as the current-month. You can specify a start and/or end date using `-b/--begin',-`-e/--end', `-p/--period' or a `date:' query (described below). All of-these accept the smart date syntax.-- Some notes:-- * As in Ledger, end dates are exclusive, so you need to write the- date _after_ the last day you want to include.-- * As noted in reporting options: among start/end dates specified with- _options_, the last (i.e. right-most) option takes precedence.-- * The effective report start and end dates are the intersection of- the start/end dates from options and that from `date:' queries.- That is, `date:2019-01 date:2019 -p'2000 to 2030'' yields January- 2019, the smallest common time span.-- Examples:--`-b begin on St. Patrick's day 2016-2016/3/17' -`-e 12/1' end at the start of december 1st of the current year- (11/30 will be the last date included)-`-b all transactions on or after the 1st of the current month-thismonth' -`-p all transactions in the current month-thismonth' -`date:2016/3/17..'the above written as queries instead (`..' can also be- replaced with `-')-`date:..12/1' -`date:thismonth..'-`date:thismonth'---File: hledger.info, Node: Report intervals, Next: Period expressions, Prev: Report start & end date, Up: OPTIONS--2.14 Report intervals-=====================--A report interval can be specified so that commands like register,-balance and activity will divide their reports into multiple subperiods.-The basic intervals can be selected with one of `-D/--daily',-`-W/--weekly', `-M/--monthly', `-Q/--quarterly', or `-Y/--yearly'. More-complex intervals may be specified with a period expression. Report-intervals can not be specified with a query.---File: hledger.info, Node: Period expressions, Next: Depth limiting, Prev: Report intervals, Up: OPTIONS--2.15 Period expressions-=======================--The `-p/--period' option accepts period expressions, a shorthand way of-expressing a start date, end date, and/or report interval all at once.-- Here's a basic period expression specifying the first quarter of-2009. Note, hledger always treats start dates as inclusive and end-dates as exclusive:-- `-p "from 2009/1/1 to 2009/4/1"'-- Keywords like "from" and "to" are optional, and so are the spaces, as-long as you don't run two dates together. "to" can also be written as-".." or "-". These are equivalent to the above:--`-p "2009/1/1 2009/4/1"'-`-p2009/1/1to2009/4/1'-`-p2009/1/1..2009/4/1'-- Dates are smart dates, so if the current year is 2009, the above can-also be written as:--`-p "1/1 4/1"'-`-p "january-apr"'-`-p "this year to 4/1"'-- If you specify only one date, the missing start or end date will be-the earliest or latest transaction in your journal:--`-p "from 2009/1/1"' everything after january 1, 2009-`-p "from 2009/1"' the same-`-p "from 2009"' the same-`-p "to 2009"' everything before january 1, 2009-- A single date with no "from" or "to" defines both the start and end-date like so:--`-p "2009"' the year 2009; equivalent to “2009/1/1 to 2010/1/1”-`-p "2009/1"' the month of jan; equivalent to “2009/1/1 to 2009/2/1”-`-p "2009/1/1"' just that day; equivalent to “2009/1/1 to 2009/1/2”-- Or you can specify a single quarter like so:--`-p "2009Q1"' first quarter of 2009, equivalent to “2009/1/1 to 2009/4/1”-`-p "q4"' fourth quarter of the current year-- The argument of `-p' can also begin with, or be, a report interval-expression. The basic report intervals are `daily', `weekly',-`monthly', `quarterly', or `yearly', which have the same effect as the-`-D',`-W',`-M',`-Q', or `-Y' flags. Between report interval and-start/end dates (if any), the word `in' is optional. Examples:--`-p "weekly from 2009/1/1 to 2009/4/1"'-`-p "monthly in 2008"'-`-p "quarterly"'-- Note that `weekly', `monthly', `quarterly' and `yearly' intervals-will always start on the first day on week, month, quarter or year-accordingly, and will end on the last day of same period, even if-associated period expression specifies different explicit start and end-date.-- For example:--`-p "weekly from 2009/1/1 starts on 2008/12/29, closest preceding Monday-to 2009/4/1"' -`-p "monthly in starts on 2018/11/01-2008/11/25"' -`-p "quarterly from starts on 2009/04/01, ends on 2009/06/30,-2009-05-05 to 2009-06-01"' which are first and last days of Q2 2009-`-p "yearly from starts on 2009/01/01, first day of 2009-2009-12-29"' -- The following more complex report intervals are also supported:-`biweekly', `fortnightly', `bimonthly', `every-day|week|month|quarter|year', `every N-days|weeks|months|quarters|years'.-- All of these will start on the first day of the requested period and-end on the last one, as described above.-- Examples:--`-p "bimonthly from 2008"' periods will have boundaries on 2008/01/01,- 2008/03/01, ...-`-p "every 2 weeks"' starts on closest preceding Monday-`-p "every 5 month from periods will have boundaries on 2009/03/01,-2009/03"' 2009/08/01, ...-- If you want intervals that start on arbitrary day of your choosing-and span a week, month or year, you need to use any of the following:-- `every Nth day of week', `every WEEKDAYNAME' (eg-`mon|tue|wed|thu|fri|sat|sun'), `every Nth day [of month]', `every Nth-WEEKDAYNAME [of month]', `every MM/DD [of year]', `every Nth MMM [of-year]', `every MMM Nth [of year]'.-- Examples:--`-p "every 2nd day of periods will go from Tue to Tue-week"' -`-p "every Tue"' same-`-p "every 15th day"' period boundaries will be on 15th of each month-`-p "every 2nd Monday"' period boundaries will be on second Monday of- each month-`-p "every 11/05"' yearly periods with boundaries on 5th of Nov-`-p "every 5th Nov"' same-`-p "every Nov 5th"' same-- Show historical balances at end of 15th each month (N is exclusive-end date):-- `hledger balance -H -p "every 16th day"'-- Group postings from start of wednesday to end of next tuesday (N is-start date and exclusive end date):-- `hledger register checking -p "every 3rd day of week"'---File: hledger.info, Node: Depth limiting, Next: Pivoting, Prev: Period expressions, Up: OPTIONS--2.16 Depth limiting-===================--With the `--depth N' option (short form: `-N'), commands like account,-balance and register will show only the uppermost accounts in the-account tree, down to level N. Use this when you want a summary with-less detail. This flag has the same effect as a `depth:' query argument-(so `-2', `--depth=2' or `depth:2' are equivalent).---File: hledger.info, Node: Pivoting, Next: Valuation, Prev: Depth limiting, Up: OPTIONS--2.17 Pivoting-=============--Normally hledger sums amounts, and organizes them in a hierarchy, based-on account name. The `--pivot FIELD' option causes it to sum and-organize hierarchy based on the value of some other field instead. FIELD-can be: `code', `description', `payee', `note', or the full name (case-insensitive) of any tag. As with account names, values containing-`colon:separated:parts' will be displayed hierarchically in reports.-- `--pivot' is a general option affecting all reports; you can think-of hledger transforming the journal before any other processing,-replacing every posting's account name with the value of the specified-field on that posting, inheriting it from the transaction or using a-blank value if it's not present.-- An example:---2016/02/16 Member Fee Payment- assets:bank account 2 EUR- income:member fees -2 EUR ; member: John Doe-- Normal balance report showing account names:---$ hledger balance- 2 EUR assets:bank account- -2 EUR income:member fees---------------------- 0-- Pivoted balance report, using member: tag values instead:---$ hledger balance --pivot member- 2 EUR- -2 EUR John Doe---------------------- 0-- One way to show only amounts with a member: value (using a query,-described below):---$ hledger balance --pivot member tag:member=.- -2 EUR John Doe---------------------- -2 EUR-- Another way (the acct: query matches against the pivoted "account-name"):---$ hledger balance --pivot member acct:.- -2 EUR John Doe---------------------- -2 EUR---File: hledger.info, Node: Valuation, Prev: Pivoting, Up: OPTIONS--2.18 Valuation-==============--Instead of reporting amounts in their original commodity, hledger can-convert them to cost/sale amount (using the conversion rate recorded in-the transaction), or to market value (using some market price on a-certain date). This is controlled by the `--value=TYPE[,COMMODITY]'-option, but we also provide the simpler `-B'/`-V'/`-X' flags, and-usually one of those is all you need.--* Menu:--* -B Cost::-* -V Value::-* -X Value in specified commodity::-* Valuation date::-* Market prices::-* --infer-value market prices from transactions::-* Valuation commodity::-* Simple valuation examples::-* --value Flexible valuation::-* More valuation examples::-* Effect of valuation on reports::---File: hledger.info, Node: -B Cost, Next: -V Value, Up: Valuation--2.18.1 -B: Cost------------------The `-B/--cost' flag converts amounts to their cost or sale amount at-transaction time, if they have a transaction price specified.---File: hledger.info, Node: -V Value, Next: -X Value in specified commodity, Prev: -B Cost, Up: Valuation--2.18.2 -V: Value-------------------The `-V/--market' flag converts amounts to market value in their-default _valuation commodity_, using the market prices in effect on the-_valuation date(s)_, if any. More on these in a minute.---File: hledger.info, Node: -X Value in specified commodity, Next: Valuation date, Prev: -V Value, Up: Valuation--2.18.3 -X: Value in specified commodity------------------------------------------The `-X/--exchange=COMM' option is like `-V', except you tell it which-currency you want to convert to, and it tries to convert everything to-that.---File: hledger.info, Node: Valuation date, Next: Market prices, Prev: -X Value in specified commodity, Up: Valuation--2.18.4 Valuation date------------------------Since market prices can change from day to day, market value reports-have a valuation date (or more than one), which determines which market-prices will be used.-- For single period reports, if an explicit report end date is-specified, that will be used as the valuation date; otherwise the-valuation date is "today".-- For multiperiod reports, each column/period is valued on the last-day of the period, by default.---File: hledger.info, Node: Market prices, Next: --infer-value market prices from transactions, Prev: Valuation date, Up: Valuation--2.18.5 Market prices-----------------------_(experimental)_-- To convert a commodity A to its market value in another commodity B,-hledger looks for a suitable market price (exchange rate) as follows, in-this order of preference :-- 1. A _declared market price_ or _inferred market price_: A's latest- market price in B on or before the valuation date as declared by a- P directive, or (with the `--infer-value' flag) inferred from- transaction prices.-- 2. A _reverse market price_: the inverse of a declared or inferred- market price from B to A.-- 3. A _a forward chain of market prices_: a synthetic price formed by- combining the shortest chain of "forward" (only 1 above) market- prices, leading from A to B.-- 4. A _any chain of market prices_: a chain of any market prices,- including both forward and reverse prices (1 and 2 above), leading- from A to B.--- Amounts for which no applicable market price can be found, are not-converted.---File: hledger.info, Node: --infer-value market prices from transactions, Next: Valuation commodity, Prev: Market prices, Up: Valuation--2.18.6 -infer-value: market prices from transactions-------------------------------------------------------_(experimental)_-- Normally, market value in hledger is fully controlled by, and-requires, P directives in your journal. Since adding and updating those-can be a chore, and since transactions usually take place at close to-market value, why not use the recorded transaction prices as additional-market prices (as Ledger does) ? We could produce value reports without-needing P directives at all.-- Adding the `--infer-value' flag to `-V', `-X' or `--value' enables-this. So for example, `hledger bs -V --infer-value' will get market-prices both from P directives and from transactions.-- There is a downside: value reports can sometimes be affected in-confusing/undesired ways by your journal entries. If this happens to-you, read all of this Valuation section carefully, and try adding-`--debug' or `--debug=2' to troubleshoot.-- `--infer-value' can infer market prices from:-- * multicommodity transactions with explicit prices (`@'/`@@')-- * multicommodity transactions with implicit prices (no `@', two- commodities, unbalanced). (With these, the order of postings- matters. `hledger print -x' can be useful for troubleshooting.)-- * but not, currently, from "more correct" multicommodity- transactions (no `@', multiple commodities, balanced).----File: hledger.info, Node: Valuation commodity, Next: Simple valuation examples, Prev: --infer-value market prices from transactions, Up: Valuation--2.18.7 Valuation commodity-----------------------------_(experimental)_-- *When you specify a valuation commodity (`-X COMM' or `--value-TYPE,COMM'):*-hledger will convert all amounts to COMM, wherever it can find a-suitable market price (including by reversing or chaining prices).-- *When you leave the valuation commodity unspecified (`-V' or-`--value TYPE'):*-For each commodity A, hledger picks a default valuation commodity as-follows, in this order of preference:-- 1. The price commodity from the latest P-declared market price for A- on or before valuation date.-- 2. The price commodity from the latest P-declared market price for A- on any date. (Allows conversion to proceed when there are inferred- prices before the valuation date.)-- 3. If there are no P directives at all (any commodity or date) and the- `--infer-value' flag is used: the price commodity from the latest- transaction-inferred price for A on or before valuation date.--- This means:-- * If you have P directives, they determine which commodities `-V'- will convert, and to what.-- * If you have no P directives, and use the `--infer-value' flag,- transaction prices determine it.--- Amounts for which no valuation commodity can be found are not-converted.---File: hledger.info, Node: Simple valuation examples, Next: --value Flexible valuation, Prev: Valuation commodity, Up: Valuation--2.18.8 Simple valuation examples-----------------------------------Here are some quick examples of `-V':---; one euro is worth this many dollars from nov 1-P 2016/11/01 € $1.10--; purchase some euros on nov 3-2016/11/3- assets:euros €100- assets:checking--; the euro is worth fewer dollars by dec 21-P 2016/12/21 € $1.03-- How many euros do I have ?---$ hledger -f t.j bal -N euros- €100 assets:euros-- What are they worth at end of nov 3 ?---$ hledger -f t.j bal -N euros -V -e 2016/11/4- $110.00 assets:euros-- What are they worth after 2016/12/21 ? (no report end date specified,-defaults to today)---$ hledger -f t.j bal -N euros -V- $103.00 assets:euros---File: hledger.info, Node: --value Flexible valuation, Next: More valuation examples, Prev: Simple valuation examples, Up: Valuation--2.18.9 -value: Flexible valuation------------------------------------`-B', `-V' and `-X' are special cases of the more general `--value'-option:--- --value=TYPE[,COMM] TYPE is cost, then, end, now or YYYY-MM-DD.- COMM is an optional commodity symbol.- Shows amounts converted to:- - cost commodity using transaction prices (then optionally to COMM using market prices at period end(s))- - default valuation commodity (or COMM) using market prices at posting dates- - default valuation commodity (or COMM) using market prices at period end(s)- - default valuation commodity (or COMM) using current market prices- - default valuation commodity (or COMM) using market prices at some date-- The TYPE part selects cost or value and valuation date:--`--value=cost'- Convert amounts to cost, using the prices recorded in transactions.--`--value=then'- Convert amounts to their value in the default valuation commodity,- using market prices on each posting's date. This is currently- supported only by the print and register commands.--`--value=end'- Convert amounts to their value in the default valuation commodity,- using market prices on the last day of the report period (or if- unspecified, the journal's end date); or in multiperiod reports,- market prices on the last day of each subperiod.--`--value=now'- Convert amounts to their value in the default valuation commodity- using current market prices (as of when report is generated).--`--value=YYYY-MM-DD'- Convert amounts to their value in the default valuation commodity- using market prices on this date.-- To select a different valuation commodity, add the optional `,COMM'-part: a comma, then the target commodity's symbol. Eg:-*`--value=now,EUR'*. hledger will do its best to convert amounts to-this commodity, deducing market prices as described above.---File: hledger.info, Node: More valuation examples, Next: Effect of valuation on reports, Prev: --value Flexible valuation, Up: Valuation--2.18.10 More valuation examples----------------------------------Here are some examples showing the effect of `--value', as seen with-`print':---P 2000-01-01 A 1 B-P 2000-02-01 A 2 B-P 2000-03-01 A 3 B-P 2000-04-01 A 4 B--2000-01-01- (a) 1 A @ 5 B--2000-02-01- (a) 1 A @ 6 B--2000-03-01- (a) 1 A @ 7 B-- Show the cost of each posting:---$ hledger -f- print --value=cost-2000-01-01- (a) 5 B--2000-02-01- (a) 6 B--2000-03-01- (a) 7 B-- Show the value as of the last day of the report period (2000-02-29):---$ hledger -f- print --value=end date:2000/01-2000/03-2000-01-01- (a) 2 B--2000-02-01- (a) 2 B-- With no report period specified, that shows the value as of the last-day of the journal (2000-03-01):---$ hledger -f- print --value=end-2000-01-01- (a) 3 B--2000-02-01- (a) 3 B--2000-03-01- (a) 3 B-- Show the current value (the 2000-04-01 price is still in effect-today):---$ hledger -f- print --value=now-2000-01-01- (a) 4 B--2000-02-01- (a) 4 B--2000-03-01- (a) 4 B-- Show the value on 2000/01/15:---$ hledger -f- print --value=2000-01-15-2000-01-01- (a) 1 B--2000-02-01- (a) 1 B--2000-03-01- (a) 1 B-- You may need to explicitly set a commodity's display style, when-reverse prices are used. Eg this output might be surprising:---P 2000-01-01 A 2B--2000-01-01- a 1B- b---$ hledger print -x -X A-2000-01-01- a 0- b 0-- Explanation: because there's no amount or commodity directive-specifying a display style for A, 0.5A gets the default style, which-shows no decimal digits. Because the displayed amount looks like zero,-the commodity symbol and minus sign are not displayed either. Adding a-commodity directive sets a more useful display style for A:---P 2000-01-01 A 2B-commodity 0.00A--2000-01-01- a 1B- b---$ hledger print -X A-2000-01-01- a 0.50A- b -0.50A---File: hledger.info, Node: Effect of valuation on reports, Prev: More valuation examples, Up: Valuation--2.18.11 Effect of valuation on reports-----------------------------------------Here is a reference for how valuation is supposed to affect each part of-hledger's reports (and a glossary). (It's wide, you'll have to scroll-sideways.) It may be useful when troubleshooting. If you find problems,-please report them, ideally with a reproducible example. Related: #329,-#1083.--Report type `-B', `-V', `-X' `--value=then'`--value=end' `--value=DATE',- `--value=cost' `--value=now'--------------------------------------------------------------------------------- -*print* -posting cost value at value at value at value at-amounts report end or posting date report or DATE/today- today journal end -balance unchanged unchanged unchanged unchanged unchanged-assertions/assignments --*register* -starting cost value at day not value at day value at-balance before report supported before report DATE/today-(-H) or journal or journal - start start -posting cost value at value at value at value at-amounts report end or posting date report or DATE/today- today journal end -summary summarised value at sum of value at value at-posting cost period ends postings in period ends DATE/today-amounts interval, -with valued at -report interval -interval start -running sum/average sum/average sum/average sum/average sum/average-total/averageof displayed of displayed of of displayed of- values values displayed values displayed- values values--*balance -(bs, bse, -cf, is)* -balance sums of costs value at not value at value at-changes report end or supported report or DATE/today- today of sums journal end of sums- of postings of sums of of- postings postings-budget like balance like balance not like balances like-amounts changes changes supported balance-(-budget) changes-grand total sum of sum of not sum of sum of- displayed displayed supported displayed displayed- values values values values--*balance -(bs, bse, -cf, is) -with -report -interval* -starting sums of costs value at not value at sums of-balances of postings report start supported report start postings-(-H) before report of sums of of sums of before- start all postings all postings report- before report before report start- start start -balance sums of costs same as not balance value at-changes of postings -value=end supported change in DATE/today-(bal, is, in period each period, of sums-bs valued at of--change, period ends postings-cf -change) -end sums of costs same as not period end value at-balances of postings -value=end supported balances, DATE/today-(bal -H, from before valued at of sums-is -H, bs, report start period ends of-cf) to period end postings-budget like balance like balance not like balances like-amounts changes/end changes/end supported balance-(-budget) balances balances changes/end- balances-row sums, sums, not sums, sums,-totals, averages of averages of supported averages of averages-row displayed displayed displayed of-averages values values values displayed-(-T, -A) values-column sums of sums of not sums of sums of-totals displayed displayed supported displayed displayed- values values values values-grand sum, average sum, average not sum, average sum,-total, of column of column supported of column average-grand totals totals totals of-average column- totals--- `--cumulative' is omitted to save space, it works like `-H' but with-a zero starting balance.-- *Glossary:*--_cost_- calculated using price(s) recorded in the transaction(s).--_value_- market value using available market price declarations, or the- unchanged amount if no conversion rate can be found.--_report start_- the first day of the report period specified with -b or -p or- date:, otherwise today.--_report or journal start_- the first day of the report period specified with -b or -p or- date:, otherwise the earliest transaction date in the journal,- otherwise today.--_report end_- the last day of the report period specified with -e or -p or date:,- otherwise today.--_report or journal end_- the last day of the report period specified with -e or -p or date:,- otherwise the latest transaction date in the journal, otherwise- today.--_report interval_- a flag (-D/-W/-M/-Q/-Y) or period expression that activates the- report's multi-period mode (whether showing one or many- subperiods).---File: hledger.info, Node: COMMANDS, Next: ENVIRONMENT, Prev: OPTIONS, Up: Top--3 COMMANDS-**********--hledger provides a number of commands for producing reports and managing-your data. Run `hledger' with no arguments to list the commands-available.-- To run a command, write its name (or its abbreviation shown in the-commands list, or any unambiguous prefix of the name) as hledger's first-argument. Eg: `hledger balance' or `hledger bal'.-- Here are the built-in commands:-- *Data entry (these modify the journal file):*-- * add - add transactions using guided prompts-- * import - add any new transactions from other files (eg csv)-- *Data management*:-- * check - check for various kinds of issue in the data-- * close (equity) - generate balance-resetting transactions-- * diff - compare account transactions in two journal files-- * rewrite - generate extra postings, similar to print -auto-- *Financial statements:*-- * aregister (areg) - show transactions in a particular account-- * balancesheet (bs) - show assets, liabilities and net worth-- * balancesheetequity (bse) - show assets, liabilities and equity-- * cashflow (cf) - show changes in liquid assets-- * incomestatement (is) - show revenues and expenses-- * roi - show return on investments-- *Miscellaneous reports:*-- * accounts (a) - show account names-- * activity - show postings-per-interval bar charts-- * balance (b, bal) - show balance changes/end balances/budgets in- accounts-- * codes - show transaction codes-- * commodities - show commodity/currency symbols-- * descriptions - show unique transaction descriptions-- * files - show input file paths-- * notes - show unique note segments of transaction descriptions-- * payees - show unique payee segments of transaction descriptions-- * prices - show market price records-- * print (p, txns) - show transactions (journal entries)-- * print-unique - show only transactions with unique descriptions-- * register (r, reg) - show postings in one or more accounts & running- total-- * register-match - show a recent posting that best matches a- description-- * stats - show journal statistics-- * tags - show tag names-- * test - run self tests-- Next, the detailed command docs, in alphabetical order.--* Menu:--* accounts::-* activity::-* add::-* aregister::-* balance::-* balancesheet::-* balancesheetequity::-* cashflow::-* check::-* close::-* codes::-* commodities::-* descriptions::-* diff::-* files::-* help::-* import::-* incomestatement::-* notes::-* rewrite::-* roi::-* stats::-* tags::-* test::-* Add-on commands::-* Add-on command flags::-* Making add-on commands::---File: hledger.info, Node: accounts, Next: activity, Up: COMMANDS--3.1 accounts-============--accounts, a-Show account names.-- This command lists account names, either declared with account-directives (-declared), posted to (-used), or both (the default). With-query arguments, only matched account names and account names referenced-by matched postings are shown. It shows a flat list by default. With-`--tree', it uses indentation to show the account hierarchy. In flat-mode you can add `--drop N' to omit the first few account name-components. Account names can be depth-clipped with `depth:N' or-`--depth N' or `-N'.-- Examples:---$ hledger accounts-assets:bank:checking-assets:bank:saving-assets:cash-expenses:food-expenses:supplies-income:gifts-income:salary-liabilities:debts---File: hledger.info, Node: activity, Next: add, Prev: accounts, Up: COMMANDS--3.2 activity-============--activity-Show an ascii barchart of posting counts per interval.-- The activity command displays an ascii histogram showing transaction-counts by day, week, month or other reporting interval (by day is the-default). With query arguments, it counts only matched transactions.-- Examples:---$ hledger activity --quarterly-2008-01-01 **-2008-04-01 *******-2008-07-01-2008-10-01 **---File: hledger.info, Node: add, Next: aregister, Prev: activity, Up: COMMANDS--3.3 add-=======--add-Prompt for transactions and add them to the journal. Any arguments will-be used as default inputs for the first N prompts.-- Many hledger users edit their journals directly with a text editor,-or generate them from CSV. For more interactive data entry, there is the-`add' command, which prompts interactively on the console for new-transactions, and appends them to the journal file (if there are-multiple `-f FILE' options, the first file is used.) Existing-transactions are not changed. This is the only hledger command that-writes to the journal file.-- To use it, just run `hledger add' and follow the prompts. You can-add as many transactions as you like; when you are finished, enter `.'-or press control-d or control-c to exit.-- Features:-- * add tries to provide useful defaults, using the most similar (by- description) recent transaction (filtered by the query, if any) as- a template.-- * You can also set the initial defaults with command line arguments.-- * Readline-style edit keys can be used during data entry.-- * The tab key will auto-complete whenever possible - accounts,- descriptions, dates (`yesterday', `today', `tomorrow'). If the- input area is empty, it will insert the default value.-- * If the journal defines a default commodity, it will be added to- any bare numbers entered.-- * A parenthesised transaction code may be entered following a date.-- * Comments and tags may be entered following a description or amount.-- * If you make a mistake, enter `<' at any prompt to go one step- backward.-- * Input prompts are displayed in a different colour when the terminal- supports it.-- Example (see the tutorial for a detailed explanation):---$ hledger add-Adding transactions to journal file /src/hledger/examples/sample.journal-Any command line arguments will be used as defaults.-Use tab key to complete, readline keys to edit, enter to accept defaults.-An optional (CODE) may follow transaction dates.-An optional ; COMMENT may follow descriptions or amounts.-If you make a mistake, enter < at any prompt to go one step backward.-To end a transaction, enter . when prompted.-To quit, enter . at a date prompt or press control-d or control-c.-Date [2015/05/22]:-Description: supermarket-Account 1: expenses:food-Amount 1: $10-Account 2: assets:checking-Amount 2 [$-10.0]:-Account 3 (or . or enter to finish this transaction): .-2015/05/22 supermarket- expenses:food $10- assets:checking $-10.0--Save this transaction to the journal ? [y]:-Saved.-Starting the next transaction (. or ctrl-D/ctrl-C to quit)-Date [2015/05/22]: <CTRL-D> $-- On Microsoft Windows, the add command makes sure that no part of the-file path ends with a period, as that would cause problems (#1056).---File: hledger.info, Node: aregister, Next: balance, Prev: add, Up: COMMANDS--3.4 aregister-=============--aregister, areg-Show the transactions and running historical balance in an account, with-each line item representing one transaction.-- `aregister' shows the transactions affecting a particular account-and its subaccounts, with each line item representing a whole-transaction - as in bank statements, hledger-ui, hledger-web and other-accounting apps.-- Note this is unlike the `register' command, which shows individual-postings and does not always show a single account or a historical-balance.-- A reminder, "historical" balances include any balance from-transactions before the report start date, so (if opening balances are-recorded correctly) `aregister' will show the real-world balances of an-account, as you would see in a bank statement.-- As a quick rule of thumb, use `aregister' for reconciling real-world-asset/liability accounts and `register' for reviewing detailed-revenues/expenses.-- `aregister' shows the register for just one account (and its-subaccounts). This account must be specified as the first argument. You-can write either the full account name, or a case-insensitive regular-expression which will select the alphabetically first matched account.-(Eg if you have `assets:aaa:checking' and `assets:bbb:checking'-accounts, `hledger areg checking' would select `assets:aaa:checking'.)-- Any additional arguments form a query which will filter the-transactions shown.-- Each `aregister' line item shows:-- * the transaction's date (or the relevant posting's date if- different, see below)-- * the names of all the other account(s) involved in this transaction- (probably abbreviated)-- * the total change to this account's balance from this transaction-- * the account's historical running balance after this transaction.-- Transactions making a net change of zero are not shown by default;-add the `-E/--empty' flag to show them.-- `aregister' ignores a depth limit, so its final total will always-match a balance report with similar arguments.-- This command also supports the output destination and output format-options The output formats supported are `txt', `csv', and `json'.--* Menu:--* aregister and custom posting dates::---File: hledger.info, Node: aregister and custom posting dates, Up: aregister--3.4.1 aregister and custom posting dates-------------------------------------------Transactions whose date is outside the report period can still be shown,-if they have a posting to this account dated inside the report period.-(And in this case it's the posting date that is shown.) This ensures-that `aregister' can show an accurate historical running balance,-matching the one shown by `register -H' with the same arguments.-- To filter strictly by transaction date instead, add the-`--txn-dates' flag. If you use this flag and some of your postings have-custom dates, it's probably best to assume the running balance is wrong.-- Examples:-- Show all transactions and historical running balance in the first-account whose name contains "checking":---$ hledger areg checking-- Show transactions and historical running balance in all asset-accounts during july:---$ hledger areg assets date:jul---File: hledger.info, Node: balance, Next: balancesheet, Prev: aregister, Up: COMMANDS--3.5 balance-===========--balance, bal, b-Show accounts and their balances.-- The balance command is hledger's most versatile command. Note,-despite the name, it is not always used for showing real-world account-balances; the more accounting-aware balancesheet and incomestatement-may be more convenient for that.-- By default, it displays all accounts, and each account's change in-balance during the entire period of the journal. Balance changes are-calculated by adding up the postings in each account. You can limit the-postings matched, by a query, to see fewer accounts, changes over a-different time period, changes from only cleared transactions, etc.-- If you include an account's complete history of postings in the-report, the balance change is equivalent to the account's current ending-balance. For a real-world account, typically you won't have all-transactions in the journal; instead you'll have all transactions after-a certain date, and an "opening balances" transaction setting the-correct starting balance on that date. Then the balance command will-show real-world account balances. In some cases the -H/-historical flag-is used to ensure this (more below).-- This command also supports the output destination and output format-options The output formats supported are (in most modes): `txt', `csv',-`html', and `json'.-- The balance command can produce several styles of report:--* Menu:--* Single-period flat balance report::-* Single-period tree-mode balance report::-* Multi-period balance report::-* Depth limiting::-* Colour support::-* Sorting by amount::-* Percentages::-* Customising single-period balance reports::-* Budget report::---File: hledger.info, Node: Single-period flat balance report, Next: Single-period tree-mode balance report, Up: balance--3.5.1 Single-period flat balance report------------------------------------------This is the default for hledger's balance command: a flat list of all-(or with a query, matched) accounts, showing full account names.-Accounts are sorted by declaration order if any, and then by account-name. Accounts which have zero balance are not shown unless-`-E/--empty' is used. The reported balances' total is shown as the last-line, unless disabled by `-N'/`--no-total'.---$ hledger bal- $1 assets:bank:saving- $-2 assets:cash- $1 expenses:food- $1 expenses:supplies- $-1 income:gifts- $-1 income:salary- $1 liabilities:debts---------------------- 0---File: hledger.info, Node: Single-period tree-mode balance report, Next: Multi-period balance report, Prev: Single-period flat balance report, Up: balance--3.5.2 Single-period tree-mode balance report-----------------------------------------------With the `-t/--tree' flag, accounts are displayed hierarchically,-showing subaccounts as short names indented below their parent. (This is-the default style in Ledger and in older hledger versions.)---$ hledger balance- $-1 assets- $1 bank:saving- $-2 cash- $2 expenses- $1 food- $1 supplies- $-2 income- $-1 gifts- $-1 salary- $1 liabilities:debts---------------------- 0-- For more compact output, "boring" accounts containing a single-interesting subaccount and no balance of their own (`assets:bank' and-`liabilities' here) are elided into the following line, unless-`--no-elide' is used. And accounts which have zero balance and no-non-zero subaccounts are omitted, unless `-E/--empty' is used.-- Account balances in tree mode are "inclusive" - they include the-balances of any subaccounts. Eg, the `assets' `$-1' balance here-includes the `$1' from `assets:bank:saving' and the `$-2' from-`assets:cash'. (And it would include balance posted to the `assets'-account itself, if there was any). Note this causes some repetition,-and the final total (`0') is the sum of the top-level balances, not of-all the balances shown.-- Each group of sibling accounts is sorted separately, by declaration-order and then by account name.---File: hledger.info, Node: Multi-period balance report, Next: Depth limiting, Prev: Single-period tree-mode balance report, Up: balance--3.5.3 Multi-period balance report------------------------------------Multi-period balance reports are a very useful hledger feature,-activated if you provide one of the reporting interval flags, such as-`-M'/`--monthly'. They are similar to single-period balance reports,-but they show the report as a table, with columns representing one or-more successive time periods. This is the usually the preferred style-of balance report in hledger (even for a single period).-- Multi-period balance reports come in several types, showing different-information:-- 1. A balance change report: by default, each column shows the sum of- postings in that period, ie the account's change of balance in that- period. This is useful eg for a monthly income statement:---$ hledger balance --quarterly income expenses -E-Balance changes in 2008:-- || 2008q1 2008q2 2008q3 2008q4-===================++=================================- expenses:food || 0 $1 0 0- expenses:supplies || 0 $1 0 0- income:gifts || 0 $-1 0 0- income:salary || $-1 0 0 0--------------------++---------------------------------- || $-1 $1 0 0-- 2. A cumulative end balance report: with `--cumulative', each column- shows the end balance for that period, accumulating the changes- across periods, starting from 0 at the report start date:--- $ hledger balance --quarterly income expenses -E --cumulative- Ending balances (cumulative) in 2008:-- || 2008/03/31 2008/06/30 2008/09/30 2008/12/31- ===================++=================================================- expenses:food || 0 $1 $1 $1- expenses:supplies || 0 $1 $1 $1- income:gifts || 0 $-1 $-1 $-1- income:salary || $-1 $-1 $-1 $-1- -------------------++-------------------------------------------------- || $-1 0 0 0-- 3. A historical end balance report: with `--historical/-H', each- column shows the actual historical end balance for that period,- accumulating the changes across periods, and including the balance- from any postings before the report start date. This is useful eg- for a multi-period balance sheet, and when you want to see- balances only after a certain date:--- $ hledger balance ^assets ^liabilities --quarterly --historical --begin 2008/4/1- Ending balances (historical) in 2008/04/01-2008/12/31:-- || 2008/06/30 2008/09/30 2008/12/31- ======================++=====================================- assets:bank:checking || $1 $1 0- assets:bank:saving || $1 $1 $1- assets:cash || $-2 $-2 $-2- liabilities:debts || 0 0 $1- ----------------------++-------------------------------------- || 0 0 0--- Note that `--cumulative' or `--historical/-H' disable-`--row-total/-T', since summing end balances generally does not make-sense.-- With a reporting interval (like `--quarterly' above), the report-start/end dates will be adjusted if necessary so that they encompass the-displayed report periods. This is so that the first and last periods-will be "full" and comparable to the others.-- The `-E/--empty' flag does two things in multicolumn balance-reports: first, the report will show all columns within the specified-report period (without -E, leading and trailing columns with all zeroes-are not shown). Second, all accounts which existed at the report start-date will be considered, not just the ones with activity during the-report period (use -E to include low-activity accounts which would-otherwise would be omitted).-- The `-T/--row-total' flag adds an additional column showing the-total for each row.-- The `-A/--average' flag adds a column showing the average value in-each row.-- Here's an example of all three:---$ hledger balance -Q income expenses --tree -ETA-Balance changes in 2008:-- || 2008q1 2008q2 2008q3 2008q4 Total Average-============++===================================================- expenses || 0 $2 0 0 $2 $1- food || 0 $1 0 0 $1 0- supplies || 0 $1 0 0 $1 0- income || $-1 $-1 0 0 $-2 $-1- gifts || 0 $-1 0 0 $-1 0- salary || $-1 0 0 0 $-1 0-------------++---------------------------------------------------- || $-1 $1 0 0 0 0--(Average is rounded to the dollar here since all journal amounts are)-- The `--transpose' flag can be used to exchange the rows and columns-of a multicolumn report.-- When showing multicommodity amounts, multicolumn balance reports will-elide any amounts which have more than two commodities, since otherwise-columns could get very wide. The `--no-elide' flag disables this.-Hiding totals with the `-N/--no-total' flag can also help reduce the-width of multicommodity reports.-- When the report is still too wide, a good workaround is to pipe it-into `less -RS' (-R for colour, -S to chop long lines). Eg: `hledger-bal -D --color=yes | less -RS'.---File: hledger.info, Node: Depth limiting, Next: Colour support, Prev: Multi-period balance report, Up: balance--3.5.4 Depth limiting-----------------------With a `depth:N' query, or `--depth N' option, or just `-N', balance-reports will show accounts only to the specified depth. This is very-useful to hide low-level accounts and get an overview. Eg, limiting to-depth 1 shows the top-level accounts:---$ hledger balance -N -1- $-1 assets- $2 expenses- $-2 income- $1 liabilities-- Accounts at the depth limit will include the balances of any hidden-subaccounts (even in flat mode, which normally shows exclusive-balances).-- You can also drop account name components from the start of account-names, using `--drop N'. This can be useful to hide unwanted top-level-detail.---File: hledger.info, Node: Colour support, Next: Sorting by amount, Prev: Depth limiting, Up: balance--3.5.5 Colour support-----------------------In terminal output, when colour is enabled, the balance command shows-negative amounts in red.---File: hledger.info, Node: Sorting by amount, Next: Percentages, Prev: Colour support, Up: balance--3.5.6 Sorting by amount--------------------------With `-S'/`--sort-amount', accounts with the largest (most positive)-balances are shown first. For example, `hledger bal expenses -MAS'-shows your biggest averaged monthly expenses first.-- Revenues and liability balances are typically negative, however, so-`-S' shows these in reverse order. To work around this, you can add-`--invert' to flip the signs. Or, use one of the sign-flipping reports-like `balancesheet' or `incomestatement', which also support `-S'. Eg:-`hledger is -MAS'.---File: hledger.info, Node: Percentages, Next: Customising single-period balance reports, Prev: Sorting by amount, Up: balance--3.5.7 Percentages--------------------With `-%' or `--percent', balance reports show each account's value-expressed as a percentage of the column's total. This is useful to get-an overview of the relative sizes of account balances. For example to-obtain an overview of expenses:---$ hledger balance expenses -%- 100.0 % expenses- 50.0 % food- 50.0 % supplies---------------------- 100.0 %-- Note that `--tree' does not have an effect on `-%'. The percentages-are always relative to the total sum of each column, they are never-relative to the parent account.-- Since the percentages are relative to the columns sum, it is usually-not useful to calculate percentages if the signs of the amounts are-mixed. Although the results are technically correct, they are most-likely useless. Especially in a balance report that sums up to zero (eg-`hledger balance -B') all percentage values will be zero.-- This flag does not work if the report contains any mixed commodity-accounts. If there are mixed commodity accounts in the report be sure to-use `-V' or `-B' to coerce the report into using a single commodity.---File: hledger.info, Node: Customising single-period balance reports, Next: Budget report, Prev: Percentages, Up: balance--3.5.8 Customising single-period balance reports--------------------------------------------------You can customise the layout of single-period balance reports with-`--format FMT', which sets the format of each line. Eg:---$ hledger balance --format "%20(account) %12(total)"- assets $-1- bank:saving $1- cash $-2- expenses $2- food $1- supplies $1- income $-2- gifts $-1- salary $-1- liabilities:debts $1----------------------------------- 0-- The FMT format string (plus a newline) specifies the formatting-applied to each account/balance pair. It may contain any suitable text,-with data fields interpolated like so:-- `%[MIN][.MAX](FIELDNAME)'-- * MIN pads with spaces to at least this width (optional)-- * MAX truncates at this width (optional)-- * FIELDNAME must be enclosed in parentheses, and can be one of:-- * `depth_spacer' - a number of spaces equal to the account's- depth, or if MIN is specified, MIN * depth spaces.-- * `account' - the account's name-- * `total' - the account's balance/posted total, right justified--- Also, FMT can begin with an optional prefix to control how-multi-commodity amounts are rendered:-- * `%_' - render on multiple lines, bottom-aligned (the default)-- * `%^' - render on multiple lines, top-aligned-- * `%,' - render on one line, comma-separated-- There are some quirks. Eg in one-line mode, `%(depth_spacer)' has no-effect, instead `%(account)' has indentation built in. Experimentation-may be needed to get pleasing results.-- Some example formats:-- * `%(total)' - the account's total-- * `%-20.20(account)' - the account's name, left justified, padded to- 20 characters and clipped at 20 characters-- * `%,%-50(account) %25(total)' - account name padded to 50- characters, total padded to 20 characters, with multiple- commodities rendered on one line-- * `%20(total) %2(depth_spacer)%-(account)' - the default format for- the single-column balance report---File: hledger.info, Node: Budget report, Prev: Customising single-period balance reports, Up: balance--3.5.9 Budget report----------------------There is also a special balance report mode for showing budget-performance. The `--budget' flag activates extra columns showing the-budget goals for each account and period, if any. For this report,-budget goals are defined by periodic transactions. This is very useful-for comparing planned and actual income, expenses, time usage, etc.-- For example, you can take average monthly expenses in the common-expense categories to construct a minimal monthly budget:---;; Budget-~ monthly- income $2000- expenses:food $400- expenses:bus $50- expenses:movies $30- assets:bank:checking--;; Two months worth of expenses-2017-11-01- income $1950- expenses:food $396- expenses:bus $49- expenses:movies $30- expenses:supplies $20- assets:bank:checking--2017-12-01- income $2100- expenses:food $412- expenses:bus $53- expenses:gifts $100- assets:bank:checking-- You can now see a monthly budget report:---$ hledger balance -M --budget-Budget performance in 2017/11/01-2017/12/31:-- || Nov Dec-======================++====================================================- assets || $-2445 [ 99% of $-2480] $-2665 [ 107% of $-2480]- assets:bank || $-2445 [ 99% of $-2480] $-2665 [ 107% of $-2480]- assets:bank:checking || $-2445 [ 99% of $-2480] $-2665 [ 107% of $-2480]- expenses || $495 [ 103% of $480] $565 [ 118% of $480]- expenses:bus || $49 [ 98% of $50] $53 [ 106% of $50]- expenses:food || $396 [ 99% of $400] $412 [ 103% of $400]- expenses:movies || $30 [ 100% of $30] 0 [ 0% of $30]- income || $1950 [ 98% of $2000] $2100 [ 105% of $2000]-----------------------++----------------------------------------------------- || 0 [ 0] 0 [ 0]-- This is different from a normal balance report in several ways:-- * Only accounts with budget goals during the report period are- shown, by default.-- * In each column, in square brackets after the actual amount, budget- goal amounts are shown, and the actual/goal percentage. (Note:- budget goals should be in the same commodity as the actual amount.)-- * All parent accounts are always shown, even in flat mode. Eg assets,- assets:bank, and expenses above.-- * Amounts always include all subaccounts, budgeted or unbudgeted,- even in flat mode.--- This means that the numbers displayed will not always add up! Eg-above, the `expenses' actual amount includes the gifts and supplies-transactions, but the `expenses:gifts' and `expenses:supplies' accounts-are not shown, as they have no budget amounts declared.-- This can be confusing. When you need to make things clearer, use the-`-E/--empty' flag, which will reveal all accounts including unbudgeted-ones, giving the full picture. Eg:---$ hledger balance -M --budget --empty-Budget performance in 2017/11/01-2017/12/31:-- || Nov Dec-======================++====================================================- assets || $-2445 [ 99% of $-2480] $-2665 [ 107% of $-2480]- assets:bank || $-2445 [ 99% of $-2480] $-2665 [ 107% of $-2480]- assets:bank:checking || $-2445 [ 99% of $-2480] $-2665 [ 107% of $-2480]- expenses || $495 [ 103% of $480] $565 [ 118% of $480]- expenses:bus || $49 [ 98% of $50] $53 [ 106% of $50]- expenses:food || $396 [ 99% of $400] $412 [ 103% of $400]- expenses:gifts || 0 $100- expenses:movies || $30 [ 100% of $30] 0 [ 0% of $30]- expenses:supplies || $20 0- income || $1950 [ 98% of $2000] $2100 [ 105% of $2000]-----------------------++----------------------------------------------------- || 0 [ 0] 0 [ 0]-- You can roll over unspent budgets to next period with `--cumulative':---$ hledger balance -M --budget --cumulative-Budget performance in 2017/11/01-2017/12/31:-- || Nov Dec-======================++====================================================- assets || $-2445 [ 99% of $-2480] $-5110 [ 103% of $-4960]- assets:bank || $-2445 [ 99% of $-2480] $-5110 [ 103% of $-4960]- assets:bank:checking || $-2445 [ 99% of $-2480] $-5110 [ 103% of $-4960]- expenses || $495 [ 103% of $480] $1060 [ 110% of $960]- expenses:bus || $49 [ 98% of $50] $102 [ 102% of $100]- expenses:food || $396 [ 99% of $400] $808 [ 101% of $800]- expenses:movies || $30 [ 100% of $30] $30 [ 50% of $60]- income || $1950 [ 98% of $2000] $4050 [ 101% of $4000]-----------------------++----------------------------------------------------- || 0 [ 0] 0 [ 0]-- For more examples and notes, see Budgeting.--* Menu:--* Budget report start date::-* Nested budgets::---File: hledger.info, Node: Budget report start date, Next: Nested budgets, Up: Budget report--3.5.9.1 Budget report start date-................................--This might be a bug, but for now: when making budget reports, it's a-good idea to explicitly set the report's start date to the first day of-a reporting period, because a periodic rule like `~ monthly' generates-its transactions on the 1st of each month, and if your journal has no-regular transactions on the 1st, the default report start date could-exclude that budget goal, which can be a little surprising. Eg here the-default report period is just the day of 2020-01-15:---~ monthly in 2020- (expenses:food) $500--2020-01-15- expenses:food $400- assets:checking---$ hledger bal expenses --budget-Budget performance in 2020-01-15:-- || 2020-01-15-==============++============- <unbudgeted> || $400---------------++------------- || $400-- To avoid this, specify the budget report's period, or at least the-start date, with `-b'/`-e'/`-p'/`date:', to ensure it includes the-budget goal transactions (periodic transactions) that you want. Eg,-adding `-b 2020/1/1' to the above:---$ hledger bal expenses --budget -b 2020/1/1-Budget performance in 2020-01-01..2020-01-15:-- || 2020-01-01..2020-01-15-===============++========================- expenses:food || $400 [80% of $500]----------------++------------------------- || $400 [80% of $500]---File: hledger.info, Node: Nested budgets, Prev: Budget report start date, Up: Budget report--3.5.9.2 Nested budgets-......................--You can add budgets to any account in your account hierarchy. If you-have budgets on both parent account and some of its children, then-budget(s) of the child account(s) would be added to the budget of their-parent, much like account balances behave.-- In the most simple case this means that once you add a budget to any-account, all its parents would have budget as well.-- To illustrate this, consider the following budget:---~ monthly from 2019/01- expenses:personal $1,000.00- expenses:personal:electronics $100.00- liabilities-- With this, monthly budget for electronics is defined to be $100 and-budget for personal expenses is an additional $1000, which implicitly-means that budget for both `expenses:personal' and `expenses' is $1100.-- Transactions in `expenses:personal:electronics' will be counted both-towards its $100 budget and $1100 of `expenses:personal' , and-transactions in any other subaccount of `expenses:personal' would be-counted towards only towards the budget of `expenses:personal'.-- For example, let's consider these transactions:---~ monthly from 2019/01- expenses:personal $1,000.00- expenses:personal:electronics $100.00- liabilities--2019/01/01 Google home hub- expenses:personal:electronics $90.00- liabilities $-90.00--2019/01/02 Phone screen protector- expenses:personal:electronics:upgrades $10.00- liabilities--2019/01/02 Weekly train ticket- expenses:personal:train tickets $153.00- liabilities--2019/01/03 Flowers- expenses:personal $30.00- liabilities-- As you can see, we have transactions in-`expenses:personal:electronics:upgrades' and `expenses:personal:train-tickets', and since both of these accounts are without explicitly-defined budget, these transactions would be counted towards budgets of-`expenses:personal:electronics' and `expenses:personal' accordingly:---$ hledger balance --budget -M-Budget performance in 2019/01:-- || Jan-===============================++===============================- expenses || $283.00 [ 26% of $1100.00]- expenses:personal || $283.00 [ 26% of $1100.00]- expenses:personal:electronics || $100.00 [ 100% of $100.00]- liabilities || $-283.00 [ 26% of $-1100.00]--------------------------------++-------------------------------- || 0 [ 0]-- And with `--empty', we can get a better picture of budget allocation-and consumption:---$ hledger balance --budget -M --empty-Budget performance in 2019/01:-- || Jan-========================================++===============================- expenses || $283.00 [ 26% of $1100.00]- expenses:personal || $283.00 [ 26% of $1100.00]- expenses:personal:electronics || $100.00 [ 100% of $100.00]- expenses:personal:electronics:upgrades || $10.00- expenses:personal:train tickets || $153.00- liabilities || $-283.00 [ 26% of $-1100.00]-----------------------------------------++-------------------------------- || 0 [ 0]---File: hledger.info, Node: balancesheet, Next: balancesheetequity, Prev: balance, Up: COMMANDS--3.6 balancesheet-================--balancesheet, bs-This command displays a balance sheet, showing historical ending-balances of asset and liability accounts. (To see equity as well, use-the balancesheetequity command.) Amounts are shown with normal positive-sign, as in conventional financial statements.-- The asset and liability accounts shown are those accounts declared-with the `Asset' or `Cash' or `Liability' type, or otherwise all-accounts under a top-level `asset' or `liability' account (case-insensitive, plurals allowed).-- Example:---$ hledger balancesheet-Balance Sheet--Assets:- $-1 assets- $1 bank:saving- $-2 cash---------------------- $-1--Liabilities:- $1 liabilities:debts---------------------- $1--Total:---------------------- 0-- With a reporting interval, multiple columns will be shown, one for-each report period. As with multicolumn balance reports, you can alter-the report mode with `--change'/`--cumulative'/`--historical'. Normally-balancesheet shows historical ending balances, which is what you need-for a balance sheet; note this means it ignores report begin dates (and-`-T/--row-total', since summing end balances generally does not make-sense). Instead of absolute values percentages can be displayed with-`-%'.-- This command also supports the output destination and output format-options The output formats supported are `txt', `csv', `html', and-(experimental) `json'.---File: hledger.info, Node: balancesheetequity, Next: cashflow, Prev: balancesheet, Up: COMMANDS--3.7 balancesheetequity-======================--balancesheetequity, bse-This command displays a balance sheet, showing historical ending-balances of asset, liability and equity accounts. Amounts are shown with-normal positive sign, as in conventional financial statements.-- The asset, liability and equity accounts shown are those accounts-declared with the `Asset', `Cash', `Liability' or `Equity' type, or-otherwise all accounts under a top-level `asset', `liability' or-`equity' account (case insensitive, plurals allowed).-- Example:---$ hledger balancesheetequity-Balance Sheet With Equity--Assets:- $-2 assets- $1 bank:saving- $-3 cash---------------------- $-2--Liabilities:- $1 liabilities:debts---------------------- $1--Equity:- $1 equity:owner---------------------- $1--Total:---------------------- 0-- This command also supports the output destination and output format-options The output formats supported are `txt', `csv', `html', and-(experimental) `json'.---File: hledger.info, Node: cashflow, Next: check, Prev: balancesheetequity, Up: COMMANDS--3.8 cashflow-============--cashflow, cf-This command displays a cashflow statement, showing the inflows and-outflows affecting "cash" (ie, liquid) assets. Amounts are shown with-normal positive sign, as in conventional financial statements.-- The "cash" accounts shown are those accounts declared with the-`Cash' type, or otherwise all accounts under a top-level `asset'-account (case insensitive, plural allowed) which do not have `fixed',-`investment', `receivable' or `A/R' in their name.-- Example:---$ hledger cashflow-Cashflow Statement--Cash flows:- $-1 assets- $1 bank:saving- $-2 cash---------------------- $-1--Total:---------------------- $-1-- With a reporting interval, multiple columns will be shown, one for-each report period. Normally cashflow shows changes in assets per-period, though as with multicolumn balance reports you can alter the-report mode with `--change'/`--cumulative'/`--historical'. Instead of-absolute values percentages can be displayed with `-%'.-- This command also supports the output destination and output format-options The output formats supported are `txt', `csv', `html', and-(experimental) `json'.---File: hledger.info, Node: check, Next: close, Prev: cashflow, Up: COMMANDS--3.9 check-=========--check-Check for various kinds of errors in your data. _experimental_-- hledger provides a number of built-in error checks to help prevent-problems in your data. Some of these are run automatically; or, you can-use this `check' command to run them on demand, with no output and a-zero exit code if all is well. Some examples:---hledger check # basic checks-hledger check -s # basic + strict checks-hledger check ordereddates uniqueleafnames # basic + specified checks-- Here are the checks currently available:--* Menu:--* Basic checks::-* Strict checks::-* Other checks::-* Add-on checks::---File: hledger.info, Node: Basic checks, Next: Strict checks, Up: check--3.9.1 Basic checks---------------------These are always run by this command and other commands:-- * *parseable* - data files are well-formed and can be successfully- parsed-- * *autobalanced* - all transactions are balanced, inferring missing- amounts where necessary, and possibly converting commodities using- transaction prices or automatically-inferred transaction prices-- * *assertions* - all balance assertions in the journal are passing.- (This check can be disabled with `-I'/`--ignore-assertions'.)----File: hledger.info, Node: Strict checks, Next: Other checks, Prev: Basic checks, Up: check--3.9.2 Strict checks----------------------These are always run by this and other commands when `-s'/`--strict' is-used (strict mode):-- * *accounts* - all account names used by transactions have been- declared-- * *commodities* - all commodity symbols used have been declared----File: hledger.info, Node: Other checks, Next: Add-on checks, Prev: Strict checks, Up: check--3.9.3 Other checks---------------------These checks can be run by specifying their names as arguments to the-check command:-- * *ordereddates* - transactions are ordered by date (similar to the- old `check-dates' command)-- * *uniqueleafnames* - all account leaf names are unique (similar to- the old `check-dupes' command)----File: hledger.info, Node: Add-on checks, Prev: Other checks, Up: check--3.9.4 Add-on checks----------------------Some checks are not yet integrated with this command, but are available-as add-on commands in-https://github.com/simonmichael/hledger/tree/master/bin:-- * *hledger-check-tagfiles* - all tag values containing / (a forward- slash) exist as file paths-- * *hledger-check-fancyassertions* - more complex balance assertions- are passing--- You could make your own similar scripts to perform custom checks;-Cookbook -> Scripting may be helpful.---File: hledger.info, Node: close, Next: codes, Prev: check, Up: COMMANDS--3.10 close-==========--close, equity-Prints a "closing balances" transaction and an "opening balances"-transaction that bring account balances to and from zero, respectively.-These can be added to your journal file(s), eg to bring asset/liability-balances forward into a new journal file, or to close out-revenues/expenses to retained earnings at the end of a period.-- You can print just one of these transactions by using the `--close'-or `--open' flag. You can customise their descriptions with the-`--close-desc' and `--open-desc' options.-- One amountless posting to "equity:opening/closing balances" is added-to balance the transactions, by default. You can customise this account-name with `--close-acct' and `--open-acct'; if you specify only one of-these, it will be used for both.-- With `--x/--explicit', the equity posting's amount will be shown.-And if it involves multiple commodities, a posting for each commodity-will be shown, as with the print command.-- With `--interleaved', the equity postings are shown next to the-postings they balance, which makes troubleshooting easier.-- By default, transaction prices in the journal are ignored when-generating the closing/opening transactions. With `--show-costs', this-cost information is preserved (`balance -B' reports will be unchanged-after the transition). Separate postings are generated for each cost in-each commodity. Note this can generate very large journal entries, if-you have many foreign currency or investment transactions.--* Menu:--* close usage::---File: hledger.info, Node: close usage, Up: close--3.10.1 close usage---------------------If you split your journal files by time (eg yearly), you will typically-run this command at the end of the year, and save the closing-transaction as last entry of the old file, and the opening transaction-as the first entry of the new file. This makes the files self contained,-so that correct balances are reported no matter which of them are-loaded. Ie, if you load just one file, the balances are initialised-correctly; or if you load several files, the redundant closing/opening-transactions cancel each other out. (They will show up in print or-register reports; you can exclude them with a query like-`not:desc:'(opening|closing) balances''.)-- If you're running a business, you might also use this command to-"close the books" at the end of an accounting period, transferring-income statement account balances to retained earnings. (You may want-to change the equity account name to something like "equity:retained-earnings".)-- By default, the closing transaction is dated yesterday, the balances-are calculated as of end of yesterday, and the opening transaction is-dated today. To close on some other date, use: `hledger close -e-OPENINGDATE'. Eg, to close/open on the 2018/2019 boundary, use `-e-2019'. You can also use -p or `date:PERIOD' (any starting date is-ignored).-- Both transactions will include balance assertions for the-closed/reopened accounts. You probably shouldn't use status or realness-filters (like -C or -R or `status:') with this command, or the-generated balance assertions will depend on these flags. Likewise, if-you run this command with -auto, the balance assertions will probably-always require -auto.-- Examples:-- Carrying asset/liability balances into a new file for 2019:---$ hledger close -f 2018.journal -e 2019 assets liabilities --open- # (copy/paste the output to the start of your 2019 journal file)-$ hledger close -f 2018.journal -e 2019 assets liabilities --close- # (copy/paste the output to the end of your 2018 journal file)-- Now:---$ hledger bs -f 2019.journal # one file - balances are correct-$ hledger bs -f 2018.journal -f 2019.journal # two files - balances still correct-$ hledger bs -f 2018.journal not:desc:closing # to see year-end balances, must exclude closing txn-- Transactions spanning the closing date can complicate matters,-breaking balance assertions:---2018/12/30 a purchase made in 2018, clearing the following year- expenses:food 5- assets:bank:checking -5 ; [2019/1/2]-- Here's one way to resolve that:---; in 2018.journal:-2018/12/30 a purchase made in 2018, clearing the following year- expenses:food 5- liabilities:pending--; in 2019.journal:-2019/1/2 clearance of last year's pending transactions- liabilities:pending 5 = 0- assets:checking---File: hledger.info, Node: codes, Next: commodities, Prev: close, Up: COMMANDS--3.11 codes-==========--codes-List the codes seen in transactions, in the order parsed.-- This command prints the value of each transaction's code field, in-the order transactions were parsed. The transaction code is an optional-value written in parentheses between the date and description, often-used to store a cheque number, order number or similar.-- Transactions aren't required to have a code, and missing or empty-codes will not be shown by default. With the `-E'/`--empty' flag, they-will be printed as blank lines.-- You can add a query to select a subset of transactions.-- Examples:---1/1 (123)- (a) 1--1/1 ()- (a) 1--1/1- (a) 1--1/1 (126)- (a) 1---$ hledger codes-123-124-126---$ hledger codes -E-123-124---126---File: hledger.info, Node: commodities, Next: descriptions, Prev: codes, Up: COMMANDS--3.12 commodities-================--commodities-List all commodity/currency symbols used or declared in the journal.---File: hledger.info, Node: descriptions, Next: diff, Prev: commodities, Up: COMMANDS--3.13 descriptions-=================--descriptions-List the unique descriptions that appear in transactions.-- This command lists the unique descriptions that appear in-transactions, in alphabetic order. You can add a query to select a-subset of transactions.-- Example:---$ hledger descriptions-Store Name-Gas Station | Petrol-Person A---File: hledger.info, Node: diff, Next: files, Prev: descriptions, Up: COMMANDS--3.14 diff-=========--diff-Compares a particular account's transactions in two input files. It-shows any transactions to this account which are in one file but not in-the other.-- More precisely, for each posting affecting this account in either-file, it looks for a corresponding posting in the other file which-posts the same amount to the same account (ignoring date, description,-etc.) Since postings not transactions are compared, this also works-when multiple bank transactions have been combined into a single-journal entry.-- This is useful eg if you have downloaded an account's transactions-from your bank (eg as CSV data). When hledger and your bank disagree-about the account balance, you can compare the bank data with your-journal to find out the cause.-- Examples:---$ hledger diff -f $LEDGER_FILE -f bank.csv assets:bank:giro-These transactions are in the first file only:--2014/01/01 Opening Balances- assets:bank:giro EUR ...- ...- equity:opening balances EUR -...--These transactions are in the second file only:---File: hledger.info, Node: files, Next: help, Prev: diff, Up: COMMANDS--3.15 files-==========--files-List all files included in the journal. With a REGEX argument, only file-names matching the regular expression (case sensitive) are shown.---File: hledger.info, Node: help, Next: import, Prev: files, Up: COMMANDS--3.16 help-=========--help-Show any of the hledger manuals.-- The `help' command displays any of the main hledger manuals, in one-of several ways. Run it with no argument to list the manuals, or provide-a full or partial manual name to select one.-- hledger manuals are available in several formats. hledger help will-use the first of these display methods that it finds: info, man, $PAGER,-less, stdout (or when non-interactive, just stdout). You can force a-particular viewer with the `--info', `--man', `--pager', `--cat' flags.-- Examples:---$ hledger help-Please choose a manual by typing "hledger help MANUAL" (a substring is ok).-Manuals: hledger hledger-ui hledger-web journal csv timeclock timedot---$ hledger help h --man--hledger(1) hledger User Manuals hledger(1)--NAME- hledger - a command-line accounting tool--SYNOPSIS- hledger [-f FILE] COMMAND [OPTIONS] [ARGS]- hledger [-f FILE] ADDONCMD -- [OPTIONS] [ARGS]- hledger--DESCRIPTION- hledger is a cross-platform program for tracking money, time, or any-...---File: hledger.info, Node: import, Next: incomestatement, Prev: help, Up: COMMANDS--3.17 import-===========--import-Read new transactions added to each FILE since last run, and add them to-the main journal file. Or with -dry-run, just print the transactions-that would be added. Or with -catchup, just mark all of the FILEs'-transactions as imported, without actually importing any.-- The input files are specified as arguments - no need to write -f-before each one. So eg to add new transactions from all CSV files to-the main journal, it's just: `hledger import *.csv'-- New transactions are detected in the same way as print -new: by-assuming transactions are always added to the input files in increasing-date order, and by saving `.latest.FILE' state files.-- The -dry-run output is in journal format, so you can filter it, eg to-see only uncategorised transactions:---$ hledger import --dry ... | hledger -f- print unknown --ignore-assertions--* Menu:--* Importing balance assignments::-* Commodity display styles::---File: hledger.info, Node: Importing balance assignments, Next: Commodity display styles, Up: import--3.17.1 Importing balance assignments---------------------------------------Entries added by import will have their posting amounts made explicit-(like `hledger print -x'). This means that any balance assignments in-imported files must be evaluated; but, imported files don't get to see-the main file's account balances. As a result, importing entries with-balance assignments (eg from an institution that provides only balances-and not posting amounts) will probably generate incorrect posting-amounts. To avoid this problem, use print instead of import:---$ hledger print IMPORTFILE [--new] >> $LEDGER_FILE-- (If you think import should leave amounts implicit like print does,-please test it and send a pull request.)---File: hledger.info, Node: Commodity display styles, Prev: Importing balance assignments, Up: import--3.17.2 Commodity display styles----------------------------------Imported amounts will be formatted according to the canonical commodity-styles (declared or inferred) in the main journal file.---File: hledger.info, Node: incomestatement, Next: notes, Prev: import, Up: COMMANDS--3.18 incomestatement-====================--incomestatement, is-This command displays an income statement, showing revenues and expenses-during one or more periods. Amounts are shown with normal positive sign,-as in conventional financial statements.-- The revenue and expense accounts shown are those accounts declared-with the `Revenue' or `Expense' type, or otherwise all accounts under a-top-level `revenue' or `income' or `expense' account (case insensitive,-plurals allowed).-- Example:---$ hledger incomestatement-Income Statement--Revenues:- $-2 income- $-1 gifts- $-1 salary---------------------- $-2--Expenses:- $2 expenses- $1 food- $1 supplies---------------------- $2--Total:---------------------- 0-- With a reporting interval, multiple columns will be shown, one for-each report period. Normally incomestatement shows revenues/expenses per-period, though as with multicolumn balance reports you can alter the-report mode with `--change'/`--cumulative'/`--historical'. Instead of-absolute values percentages can be displayed with `-%'.-- This command also supports the output destination and output format-options The output formats supported are `txt', `csv', `html', and-(experimental) `json'.---File: hledger.info, Node: notes, Next: rewrite, Prev: incomestatement, Up: COMMANDS--3.19 notes-==========--notes-List the unique notes that appear in transactions.-- This command lists the unique notes that appear in transactions, in-alphabetic order. You can add a query to select a subset of-transactions. The note is the part of the transaction description after-a | character (or if there is no |, the whole description).-- Example:---$ hledger notes-Petrol-Snacks---File: hledger.info, Node: rewrite, Next: roi, Prev: notes, Up: COMMANDS--3.20 rewrite-============--rewrite-Print all transactions, rewriting the postings of matched transactions.-For now the only rewrite available is adding new postings, like print--auto.-- This is a start at a generic rewriter of transaction entries. It-reads the default journal and prints the transactions, like print, but-adds one or more specified postings to any transactions matching QUERY.-The posting amounts can be fixed, or a multiplier of the existing-transaction's first posting amount.-- Examples:---$ hledger-rewrite.hs ^income --add-posting '(liabilities:tax) *.33 ; income tax' --add-posting '(reserve:gifts) $100'-$ hledger-rewrite.hs expenses:gifts --add-posting '(reserve:gifts) *-1"'-$ hledger-rewrite.hs -f rewrites.hledger-- rewrites.hledger may consist of entries like:---= ^income amt:<0 date:2017- (liabilities:tax) *0.33 ; tax on income- (reserve:grocery) *0.25 ; reserve 25% for grocery- (reserve:) *0.25 ; reserve 25% for grocery-- Note the single quotes to protect the dollar sign from bash, and the-two spaces between account and amount.-- More:---$ hledger rewrite -- [QUERY] --add-posting "ACCT AMTEXPR" ...-$ hledger rewrite -- ^income --add-posting '(liabilities:tax) *.33'-$ hledger rewrite -- expenses:gifts --add-posting '(budget:gifts) *-1"'-$ hledger rewrite -- ^income --add-posting '(budget:foreign currency) *0.25 JPY; diversify'-- Argument for `--add-posting' option is a usual posting of-transaction with an exception for amount specification. More precisely,-you can use `'*'' (star symbol) before the amount to indicate that that-this is a factor for an amount of original matched posting. If the-amount includes a commodity name, the new posting amount will be in the-new commodity; otherwise, it will be in the matched posting amount's-commodity.--* Menu:--* Re-write rules in a file::-* Diff output format::-* rewrite vs print --auto::---File: hledger.info, Node: Re-write rules in a file, Next: Diff output format, Up: rewrite--3.20.1 Re-write rules in a file----------------------------------During the run this tool will execute so called "Automated Transactions"-found in any journal it process. I.e instead of specifying this-operations in command line you can put them in a journal file.---$ rewrite-rules.journal-- Make contents look like this:---= ^income- (liabilities:tax) *.33--= expenses:gifts- budget:gifts *-1- assets:budget *1-- Note that `'='' (equality symbol) that is used instead of date in-transactions you usually write. It indicates the query by which you want-to match the posting to add new ones.---$ hledger rewrite -- -f input.journal -f rewrite-rules.journal > rewritten-tidy-output.journal-- This is something similar to the commands pipeline:---$ hledger rewrite -- -f input.journal '^income' --add-posting '(liabilities:tax) *.33' \- | hledger rewrite -- -f - expenses:gifts --add-posting 'budget:gifts *-1' \- --add-posting 'assets:budget *1' \- > rewritten-tidy-output.journal-- It is important to understand that relative order of such entries in-journal is important. You can re-use result of previously added-postings.---File: hledger.info, Node: Diff output format, Next: rewrite vs print --auto, Prev: Re-write rules in a file, Up: rewrite--3.20.2 Diff output format----------------------------To use this tool for batch modification of your journal files you may-find useful output in form of unified diff.---$ hledger rewrite -- --diff -f examples/sample.journal '^income' --add-posting '(liabilities:tax) *.33'-- Output might look like:------ /tmp/examples/sample.journal-+++ /tmp/examples/sample.journal-@@ -18,3 +18,4 @@- 2008/01/01 income-- assets:bank:checking $1-+ assets:bank:checking $1- income:salary-+ (liabilities:tax) 0-@@ -22,3 +23,4 @@- 2008/06/01 gift-- assets:bank:checking $1-+ assets:bank:checking $1- income:gifts-+ (liabilities:tax) 0-- If you'll pass this through `patch' tool you'll get transactions-containing the posting that matches your query be updated. Note that-multiple files might be update according to list of input files-specified via `--file' options and `include' directives inside of these-files.-- Be careful. Whole transaction being re-formatted in a style of output-from `hledger print'.-- See also:-- https://github.com/simonmichael/hledger/issues/99---File: hledger.info, Node: rewrite vs print --auto, Prev: Diff output format, Up: rewrite--3.20.3 rewrite vs. print -auto---------------------------------This command predates print -auto, and currently does much the same-thing, but with these differences:-- * with multiple files, rewrite lets rules in any file affect all- other files. print -auto uses standard directive scoping; rules- affect only child files.-- * rewrite's query limits which transactions can be rewritten; all are- printed. print -auto's query limits which transactions are printed.-- * rewrite applies rules specified on command line or in the journal.- print -auto applies rules specified in the journal.----File: hledger.info, Node: roi, Next: stats, Prev: rewrite, Up: COMMANDS--3.21 roi-========--roi-Shows the time-weighted (TWR) and money-weighted (IRR) rate of return on-your investments.-- This command assumes that you have account(s) that hold nothing but-your investments and whenever you record current appraisal/valuation of-these investments you offset unrealized profit and loss into account(s)-that, again, hold nothing but unrealized profit and loss.-- Any transactions affecting balance of investment account(s) and not-originating from unrealized profit and loss account(s) are assumed to be-your investments or withdrawals.-- At a minimum, you need to supply a query (which could be just an-account name) to select your investments with `--inv', and another-query to identify your profit and loss transactions with `--pnl'.-- This command will compute and display the internalized rate of return-(IRR) and time-weighted rate of return (TWR) for your investments for-the time period requested. Both rates of return are annualized before-display, regardless of the length of reporting interval.-- Note, in some cases this report can fail, for these reasons:-- * Error (NotBracketed): No solution for Internal Rate of Return- (IRR). Possible causes: IRR is huge (>1000000%), balance of- investment becomes negative at some point in time.-- * Error (SearchFailed): Failed to find solution for Internal Rate of- Return (IRR). Either search does not converge to a solution, or- converges too slowly.-- Examples:-- * Using roi to report unrealised gains:- https://github.com/simonmichael/hledger/blob/master/examples/roi-unrealised.ledger-- More background:-- "ROI" stands for "return on investment". Traditionally this was-computed as a difference between current value of investment and its-initial value, expressed in percentage of the initial value.-- However, this approach is only practical in simple cases, where-investments receives no in-flows or out-flows of money, and where rate-of growth is fixed over time. For more complex scenarios you need-different ways to compute rate of return, and this command implements-two of them: IRR and TWR.-- Internal rate of return, or "IRR" (also called "money-weighted rate-of return") takes into account effects of in-flows and out-flows.-Naively, if you are withdrawing from your investment, your future gains-would be smaller (in absolute numbers), and will be a smaller-percentage of your initial investment, and if you are adding to your-investment, you will receive bigger absolute gains (but probably at the-same rate of return). IRR is a way to compute rate of return for each-period between in-flow or out-flow of money, and then combine them in a-way that gives you an annual rate of return that investment is expected-to generate.-- As mentioned before, in-flows and out-flows would be any cash that-you personally put in or withdraw, and for the "roi" command, these are-transactions that involve account(s) matching `--inv' argument and NOT-involve account(s) matching `--pnl' argument.-- Presumably, you will also record changes in the value of your-investment, and balance them against "profit and loss" (or "unrealized-gains") account. Note that in order for IRR to compute the precise-effect of your in-flows and out-flows on the rate of return, you will-need to record the value of your investement on or close to the days-when in- or out-flows occur.-- Implementation of IRR in hledger should match the `XIRR' formula in-Excel.-- Second way to compute rate of return that `roi' command implements-is called "time-weighted rate of return" or "TWR". Like IRR, it will-also break the history of your investment into periods between in-flows-and out-flows to compute rate of return per each period and then a-compound rate of return. However, internal workings of TWR are quite-different.-- In technical terms, IRR uses the same approach as computation of net-present value, and tries to find a discount rate that makes net present-value of all the cash flows of your investment to add up to zero. This-could be hard to wrap your head around, especially if you haven't done-discounted cash flow analysis before.-- TWR represents your investment as an imaginary "unit fund" where-in-flows/ out-flows lead to buying or selling "units" of your investment-and changes in its value change the value of "investment unit". Change-in "unit price" over the reporting period gives you rate of return of-your investment.-- References: * Explanation of rate of return * Explanation of IRR *-Explanation of TWR * Examples of computing IRR and TWR and discussion of-the limitations of both metrics-- More examples:-- Lets say that we found an investment in Snake Oil that is proising to-give us 10% annually:---2019-01-01 Investing in Snake Oil- assets:cash -$100- investment:snake oil--2019-12-24 Recording the growth of Snake Oil- investment:snake oil = $110- equity:unrealized gains-- For now, basic computation of the rate of return, as well as IRR and-TWR, gives us the expected 10%:---$ hledger roi -Y --inv investment --pnl "unrealized"-+---++------------+------------++---------------+----------+-------------+-----++--------+--------+-| || Begin | End || Value (begin) | Cashflow | Value (end) | PnL || IRR | TWR |-+===++============+============++===============+==========+=============+=====++========+========+-| 1 || 2019-01-01 | 2019-12-31 || 0 | 100 | 110 | 10 || 10.00% | 10.00% |-+---++------------+------------++---------------+----------+-------------+-----++--------+--------+-- However, lets say that shorty after investing in the Snake Oil we-started to have second thoughs, so we prompty withdrew $90, leaving only-$10 in. Before Christmas, though, we started to get the "fear of mission-out", so we put the $90 back in. So for most of the year, our investment-was just $10 dollars, and it gave us just $1 in growth:---2019-01-01 Investing in Snake Oil- assets:cash -$100- investment:snake oil--2019-01-02 Buyers remorse- assets:cash $90- investment:snake oil--2019-12-30 Fear of missing out- assets:cash -$90- investment:snake oil--2019-12-31 Recording the growth of Snake Oil- investment:snake oil = $101- equity:unrealized gains-- Now IRR and TWR are drastically different:---$ hledger roi -Y --inv investment --pnl "unrealized"-+---++------------+------------++---------------+----------+-------------+-----++-------+-------+-| || Begin | End || Value (begin) | Cashflow | Value (end) | PnL || IRR | TWR |-+===++============+============++===============+==========+=============+=====++=======+=======+-| 1 || 2019-01-01 | 2019-12-31 || 0 | 100 | 101 | 1 || 9.32% | 1.00% |-+---++------------+------------++---------------+----------+-------------+-----++-------+-------+-- Here, IRR tells us that we made close to 10% on the $10 dollars that-we had in the account most of the time. And TWR is ... just 1%? Why?-- Based on the transactions in our journal, TWR "think" that we are-buying back $90 worst of Snake Oil at the same price that it had at the-beginning of they year, and then after that our $100 investment gets $1-increase in value, or 1% of $100. Let's take a closer look at what is-happening here by asking for quarterly reports instead of annual:---$ hledger roi -Q --inv investment --pnl "unrealized"-+---++------------+------------++---------------+----------+-------------+-----++--------+-------+-| || Begin | End || Value (begin) | Cashflow | Value (end) | PnL || IRR | TWR |-+===++============+============++===============+==========+=============+=====++========+=======+-| 1 || 2019-01-01 | 2019-03-31 || 0 | 10 | 10 | 0 || 0.00% | 0.00% |-| 2 || 2019-04-01 | 2019-06-30 || 10 | 0 | 10 | 0 || 0.00% | 0.00% |-| 3 || 2019-07-01 | 2019-09-30 || 10 | 0 | 10 | 0 || 0.00% | 0.00% |-| 4 || 2019-10-01 | 2019-12-31 || 10 | 90 | 101 | 1 || 37.80% | 4.03% |-+---++------------+------------++---------------+----------+-------------+-----++--------+-------+-- Now both IRR and TWR are thrown off by the fact that all of the-growth for our investment happens in Q4 2019. This happes because IRR-computation is still yielding 9.32% and TWR is still 1%, but this time-these are rates for three month period instead of twelve, so in order to-get an annual rate they should be multiplied by four!-- Let's try to keep a better record of how Snake Oil grew in value:---2019-01-01 Investing in Snake Oil- assets:cash -$100- investment:snake oil--2019-01-02 Buyers remorse- assets:cash $90- investment:snake oil--2019-02-28 Recording the growth of Snake Oil- investment:snake oil- equity:unrealized gains -$0.25--2019-06-30 Recording the growth of Snake Oil- investment:snake oil- equity:unrealized gains -$0.25--2019-09-30 Recording the growth of Snake Oil- investment:snake oil- equity:unrealized gains -$0.25--2019-12-30 Fear of missing out- assets:cash -$90- investment:snake oil--2019-12-31 Recording the growth of Snake Oil- investment:snake oil- equity:unrealized gains -$0.25-- Would our quartery report look better now? Almost:---$ hledger roi -Q --inv investment --pnl "unrealized"-+---++------------+------------++---------------+----------+-------------+------++--------+--------+-| || Begin | End || Value (begin) | Cashflow | Value (end) | PnL || IRR | TWR |-+===++============+============++===============+==========+=============+======++========+========+-| 1 || 2019-01-01 | 2019-03-31 || 0 | 10 | 10.25 | 0.25 || 9.53% | 10.53% |-| 2 || 2019-04-01 | 2019-06-30 || 10.25 | 0 | 10.50 | 0.25 || 10.15% | 10.15% |-| 3 || 2019-07-01 | 2019-09-30 || 10.50 | 0 | 10.75 | 0.25 || 9.79% | 9.78% |-| 4 || 2019-10-01 | 2019-12-31 || 10.75 | 90 | 101.00 | 0.25 || 8.05% | 1.00% |-+---++------------+------------++---------------+----------+-------------+------++--------+--------+-- Something is still wrong with TWR computation for Q4, and if you have-been paying attention you know what it is already: big $90 buy-back is-recorded prior to the only transaction that captures the change of value-of Snake Oil that happened in this time period. Lets combine-transactions from 30th and 31st of Dec into one:---2019-12-30 Fear of missing out and growth of Snake Oil- assets:cash -$90- investment:snake oil- equity:unrealized gains -$0.25-- Now growth of investment properly affects its price at the time of-buy-back:---$ hledger roi -Q --inv investment --pnl "unrealized"-+---++------------+------------++---------------+----------+-------------+------++--------+--------+-| || Begin | End || Value (begin) | Cashflow | Value (end) | PnL || IRR | TWR |-+===++============+============++===============+==========+=============+======++========+========+-| 1 || 2019-01-01 | 2019-03-31 || 0 | 10 | 10.25 | 0.25 || 9.53% | 10.53% |-| 2 || 2019-04-01 | 2019-06-30 || 10.25 | 0 | 10.50 | 0.25 || 10.15% | 10.15% |-| 3 || 2019-07-01 | 2019-09-30 || 10.50 | 0 | 10.75 | 0.25 || 9.79% | 9.78% |-| 4 || 2019-10-01 | 2019-12-31 || 10.75 | 90 | 101.00 | 0.25 || 8.05% | 9.57% |-+---++------------+------------++---------------+----------+-------------+------++--------+--------+-- And for annual report, TWR now reports the exact profitability of our-investment:---$ hledger roi -Y --inv investment --pnl "unrealized"-+---++------------+------------++---------------+----------+-------------+------++-------+--------+-| || Begin | End || Value (begin) | Cashflow | Value (end) | PnL || IRR | TWR |-+===++============+============++===============+==========+=============+======++=======+========+-| 1 || 2019-01-01 | 2019-12-31 || 0 | 100 | 101.00 | 1.00 || 9.32% | 10.00% |-+---++------------+------------++---------------+----------+-------------+------++-------+--------+---File: hledger.info, Node: stats, Next: tags, Prev: roi, Up: COMMANDS--3.22 stats-==========--stats-Show some journal statistics.-- The stats command displays summary information for the whole-journal, or a matched part of it. With a reporting interval, it shows a-report for each report period.-- Example:---$ hledger stats-Main journal file : /src/hledger/examples/sample.journal-Included journal files :-Transactions span : 2008-01-01 to 2009-01-01 (366 days)-Last transaction : 2008-12-31 (2333 days ago)-Transactions : 5 (0.0 per day)-Transactions last 30 days: 0 (0.0 per day)-Transactions last 7 days : 0 (0.0 per day)-Payees/descriptions : 5-Accounts : 8 (depth 3)-Commodities : 1 ($)-Market prices : 12 ($)-- This command also supports output destination and output format-selection.---File: hledger.info, Node: tags, Next: test, Prev: stats, Up: COMMANDS--3.23 tags-=========--tags-List the unique tag names used in the journal. With a TAGREGEX argument,-only tag names matching the regular expression (case insensitive) are-shown. With QUERY arguments, only transactions matching the query are-considered.-- With the -values flag, the tags' unique values are listed instead.-- With -parsed flag, all tags or values are shown in the order they are-parsed from the input data, including duplicates.-- With -E/-empty, any blank/empty values will also be shown, otherwise-they are omitted.---File: hledger.info, Node: test, Next: Add-on commands, Prev: tags, Up: COMMANDS--3.24 test-=========--test-Run built-in unit tests.-- This command runs the unit tests built in to hledger and hledger-lib,-printing the results on stdout. If any test fails, the exit code will be-non-zero.-- This is mainly used by hledger developers, but you can also use it to-sanity-check the installed hledger executable on your platform. All-tests are expected to pass - if you ever see a failure, please report as-a bug!-- This command also accepts tasty test runner options, written after a-- (double hyphen). Eg to run only the tests in Hledger.Data.Amount, with-ANSI colour codes disabled:---$ hledger test -- -pData.Amount --color=never-- For help on these, see https://github.com/feuerbach/tasty#options-(`-- --help' currently doesn't show them).---File: hledger.info, Node: Add-on commands, Next: Add-on command flags, Prev: test, Up: COMMANDS--3.25 Add-on commands-====================--Any programs or scripts in your PATH named named `hledger-SOMETHING'-will also appear in the commands list (with a `+' mark). These are-called add-on commands.-- These offical add-ons are maintained and released along with hledger:-- * ui an efficient terminal interface for hledger (TUI)-- * web a simple web interface for hledger (WUI)-- These add-ons are maintained separately:-- * iadd a more interactive alternative for the add command-- * interest generates interest transactions according to various- schemes-- * stockquotes downloads market prices for your commodities from- AlphaVantage _(experimental)_-- Additional experimental add-ons, which may not be in a working state,-can be found in the bin/ directory in the hledger repo.---File: hledger.info, Node: Add-on command flags, Next: Making add-on commands, Prev: Add-on commands, Up: COMMANDS--3.26 Add-on command flags-=========================--In a hledger command line, add-on command flags must have a double dash-(`--') preceding them. Eg you must write:---$ hledger web -- --serve-- and not:---$ hledger web --serve-- (because the `--serve' flag belongs to `hledger-web', not `hledger').-- The `-h/--help' and `--version' flags work without `--', with their-position deciding which program they refer to. Eg `hledger -h web'-shows hledger's help, `hledger web -h' shows hledger-web's help.-- If you have any trouble with this, remember you can always run the-add-on program directly, eg:---$ hledger-web --serve---File: hledger.info, Node: Making add-on commands, Prev: Add-on command flags, Up: COMMANDS--3.27 Making add-on commands-===========================--Add-on commands are programs or scripts in your PATH-- * whose name starts with `hledger-'-- * whose name ends with a recognised file extension:- `.bat',`.com',`.exe', `.hs',`.lhs',`.pl',`.py',`.rb',`.rkt',`.sh'- or none-- * and (on unix, mac) which are executable by the current user.-- Add-ons are a relatively easy way to add local features or experiment-with new ideas. They can be written in any language, but haskell scripts-have a big advantage: they can use the same hledger library functions-that built-in commands use for command-line options, parsing and-reporting.---File: hledger.info, Node: ENVIRONMENT, Next: FILES, Prev: COMMANDS, Up: Top--4 ENVIRONMENT-*************--*LEDGER_FILE* The journal file path when not specified with `-f'.-Default: `~/.hledger.journal' (on windows, perhaps-`C:/Users/USER/.hledger.journal').-- A typical value is `~/DIR/YYYY.journal', where DIR is a-version-controlled finance directory and YYYY is the current year. Or-`~/DIR/current.journal', where current.journal is a symbolic link to-YYYY.journal.-- On Mac computers, you can set this and other environment variables-in a more thorough way that also affects applications started from the-GUI (say, an Emacs dock icon). Eg on MacOS Catalina I have a-`~/.MacOSX/environment.plist' file containing---{- "LEDGER_FILE" : "~/finance/current.journal"-}-- To see the effect you may need to `killall Dock', or reboot.-- *COLUMNS* The screen width used by the register command. Default:-the full terminal width.-- *NO_COLOR* If this variable exists with any value, hledger will not-use ANSI color codes in terminal output. This overrides the--color/-colour option.---File: hledger.info, Node: FILES, Next: LIMITATIONS, Prev: ENVIRONMENT, Up: Top--5 FILES-*******--Reads data from one or more files in hledger journal, timeclock,-timedot, or CSV format specified with `-f', or `$LEDGER_FILE', or-`$HOME/.hledger.journal' (on windows, perhaps-`C:/Users/USER/.hledger.journal').---File: hledger.info, Node: LIMITATIONS, Next: TROUBLESHOOTING, Prev: FILES, Up: Top--6 LIMITATIONS-*************--The need to precede add-on command options with `--' when invoked from-hledger is awkward.-- When input data contains non-ascii characters, a suitable system-locale must be configured (or there will be an unhelpful error). Eg on-POSIX, set LANG to something other than C.-- In a Microsoft Windows CMD window, non-ascii characters and colours-are not supported.-- On Windows, non-ascii characters may not display correctly when-running a hledger built in CMD in MSYS/CYGWIN, or vice-versa.-- In a Cygwin/MSYS/Mintty window, the tab key is not supported in-hledger add.-- Not all of Ledger's journal file syntax is supported. See file format-differences.-- On large data files, hledger is slower and uses more memory than-Ledger.---File: hledger.info, Node: TROUBLESHOOTING, Prev: LIMITATIONS, Up: Top--7 TROUBLESHOOTING-*****************--Here are some issues you might encounter when you run hledger (and-remember you can also seek help from the IRC channel, mail list or bug-tracker):-- *Successfully installed, but "No command 'hledger' found"*-stack and cabal install binaries into a special directory, which should-be added to your PATH environment variable. Eg on unix-like systems,-that is ~/.local/bin and ~/.cabal/bin respectively.-- *I set a custom LEDGER_FILE, but hledger is still using the default-file*-`LEDGER_FILE' should be a real environment variable, not just a shell-variable. The command `env | grep LEDGER_FILE' should show it. You may-need to use `export'. Here's an explanation.-- *Getting errors like "Illegal byte sequence" or "Invalid or-incomplete multibyte or wide character" or "commitAndReleaseBuffer:-invalid argument (invalid character)"*-Programs compiled with GHC (hledger, haskell build tools, etc.) need to-have a UTF-8-aware locale configured in the environment, otherwise they-will fail with these kinds of errors when they encounter non-ascii-characters.-- To fix it, set the LANG environment variable to some locale which-supports UTF-8. The locale you choose must be installed on your system.-- Here's an example of setting LANG temporarily, on Ubuntu GNU/Linux:---$ file my.journal-my.journal: UTF-8 Unicode text # the file is UTF8-encoded-$ echo $LANG-C # LANG is set to the default locale, which does not support UTF8-$ locale -a # which locales are installed ?-C-en_US.utf8 # here's a UTF8-aware one we can use-POSIX-$ LANG=en_US.utf8 hledger -f my.journal print # ensure it is used for this command-- If available, `C.UTF-8' will also work. If your preferred locale-isn't listed by `locale -a', you might need to install it. Eg on-Ubuntu/Debian:---$ apt-get install language-pack-fr-$ locale -a-C-en_US.utf8-fr_BE.utf8-fr_CA.utf8-fr_CH.utf8-fr_FR.utf8-fr_LU.utf8-POSIX-$ LANG=fr_FR.utf8 hledger -f my.journal print-- Here's how you could set it permanently, if you use a bash shell:---$ echo "export LANG=en_US.utf8" >>~/.bash_profile-$ bash --login-- Exact spelling and capitalisation may be important. Note the-difference on MacOS (`UTF-8', not `utf8'). Some platforms (eg ubuntu)-allow variant spellings, but others (eg macos) require it to be exact:---$ locale -a | grep -iE en_us.*utf-en_US.UTF-8-$ LANG=en_US.UTF-8 hledger -f my.journal print----Tag Table:-Node: Top76-Node: COMMON TASKS2317-Ref: #common-tasks2429-Node: Getting help2836-Ref: #getting-help2968-Node: Constructing command lines3519-Ref: #constructing-command-lines3711-Node: Starting a journal file4410-Ref: #starting-a-journal-file4608-Node: Setting opening balances5795-Ref: #setting-opening-balances5991-Node: Recording transactions9124-Ref: #recording-transactions9304-Node: Reconciling9861-Ref: #reconciling10004-Node: Reporting12249-Ref: #reporting12389-Node: Migrating to a new file16309-Ref: #migrating-to-a-new-file16457-Node: OPTIONS16755-Ref: #options16862-Node: General options17248-Ref: #general-options17373-Node: Command options20770-Ref: #command-options20921-Node: Command arguments21320-Ref: #command-arguments21467-Node: Queries22345-Ref: #queries22500-Node: Special characters in arguments and queries26452-Ref: #special-characters-in-arguments-and-queries26680-Node: More escaping27130-Ref: #more-escaping27292-Node: Even more escaping27586-Ref: #even-more-escaping27780-Node: Less escaping28453-Ref: #less-escaping28615-Node: Unicode characters28859-Ref: #unicode-characters29041-Node: Input files30450-Ref: #input-files30586-Node: Strict mode32974-Ref: #strict-mode33110-Node: Output destination33760-Ref: #output-destination33912-Node: Output format34337-Ref: #output-format34489-Node: Regular expressions36652-Ref: #regular-expressions36809-Node: Smart dates38550-Ref: #smart-dates38701-Node: Report start & end date40040-Ref: #report-start-end-date40212-Node: Report intervals41720-Ref: #report-intervals41885-Node: Period expressions42273-Ref: #period-expressions42433-Node: Depth limiting46812-Ref: #depth-limiting46956-Node: Pivoting47287-Ref: #pivoting47410-Node: Valuation49089-Ref: #valuation49191-Node: -B Cost49879-Ref: #b-cost49983-Node: -V Value50116-Ref: #v-value50262-Node: -X Value in specified commodity50456-Ref: #x-value-in-specified-commodity50655-Node: Valuation date50804-Ref: #valuation-date50972-Node: Market prices51394-Ref: #market-prices51574-Node: --infer-value market prices from transactions52517-Ref: #infer-value-market-prices-from-transactions52766-Node: Valuation commodity54044-Ref: #valuation-commodity54253-Node: Simple valuation examples55480-Ref: #simple-valuation-examples55682-Node: --value Flexible valuation56344-Ref: #value-flexible-valuation56552-Node: More valuation examples58496-Ref: #more-valuation-examples58705-Node: Effect of valuation on reports60717-Ref: #effect-of-valuation-on-reports60905-Node: COMMANDS68470-Ref: #commands68578-Node: accounts71166-Ref: #accounts71264-Node: activity71959-Ref: #activity72069-Node: add72451-Ref: #add72552-Node: aregister75347-Ref: #aregister75459-Node: aregister and custom posting dates77654-Ref: #aregister-and-custom-posting-dates77818-Node: balance78639-Ref: #balance78756-Node: Single-period flat balance report80405-Ref: #single-period-flat-balance-report80611-Node: Single-period tree-mode balance report81312-Ref: #single-period-tree-mode-balance-report81564-Node: Multi-period balance report83005-Ref: #multi-period-balance-report83216-Node: Depth limiting88827-Ref: #depth-limiting-188988-Node: Colour support89682-Ref: #colour-support89833-Node: Sorting by amount89929-Ref: #sorting-by-amount90083-Node: Percentages90573-Ref: #percentages90742-Node: Customising single-period balance reports91875-Ref: #customising-single-period-balance-reports92100-Node: Budget report94231-Ref: #budget-report94380-Node: Budget report start date99639-Ref: #budget-report-start-date99804-Node: Nested budgets101131-Ref: #nested-budgets101276-Node: balancesheet104663-Ref: #balancesheet104799-Node: balancesheetequity106307-Ref: #balancesheetequity106456-Node: cashflow107532-Ref: #cashflow107654-Node: check108868-Ref: #check108971-Node: Basic checks109574-Ref: #basic-checks109690-Node: Strict checks110184-Ref: #strict-checks110323-Node: Other checks110567-Ref: #other-checks110705-Node: Add-on checks111004-Ref: #add-on-checks111122-Node: close111576-Ref: #close111678-Node: close usage113195-Ref: #close-usage113288-Node: codes116096-Ref: #codes116204-Node: commodities116917-Ref: #commodities117044-Node: descriptions117126-Ref: #descriptions117254-Node: diff117558-Ref: #diff117664-Node: files118709-Ref: #files118809-Node: help118955-Ref: #help119055-Node: import120135-Ref: #import120249-Node: Importing balance assignments121169-Ref: #importing-balance-assignments121350-Node: Commodity display styles121997-Ref: #commodity-display-styles122168-Node: incomestatement122297-Ref: #incomestatement122430-Node: notes123769-Ref: #notes123883-Node: rewrite124250-Ref: #rewrite124356-Node: Re-write rules in a file126262-Ref: #re-write-rules-in-a-file126423-Node: Diff output format127573-Ref: #diff-output-format127754-Node: rewrite vs print --auto128846-Ref: #rewrite-vs.-print---auto129004-Node: roi129554-Ref: #roi129652-Node: stats141845-Ref: #stats141944-Node: tags142731-Ref: #tags142829-Node: test143346-Ref: #test143454-Node: Add-on commands144199-Ref: #add-on-commands144345-Node: Add-on command flags145111-Ref: #add-on-command-flags145285-Node: Making add-on commands145866-Ref: #making-add-on-commands146020-Node: ENVIRONMENT146614-Ref: #environment146726-Node: FILES147708-Ref: #files-1147811-Node: LIMITATIONS148024-Ref: #limitations148143-Node: TROUBLESHOOTING148884-Ref: #troubleshooting148997+This is the command-line interface (CLI) for the hledger accounting+tool. Here we also describe hledger's concepts and file formats. This+manual is for hledger 1.21.++ `hledger'++ `hledger [-f FILE] COMMAND [OPTIONS] [ARGS]'++ `hledger [-f FILE] ADDONCMD -- [OPTIONS] [ARGS]'++ hledger is a reliable, cross-platform set of programs for tracking+money, time, or any other commodity, using double-entry accounting and a+simple, editable file format. hledger is inspired by and largely+compatible with ledger(1).++ The basic function of the hledger CLI is to read a plain text file+describing financial transactions (in accounting terms, a general+journal) and print useful reports on standard output, or export them as+CSV. hledger can also read some other file formats such as CSV files,+translating them to journal format. Additionally, hledger lists other+hledger-* executables found in the user's $PATH and can invoke them as+subcommands.++ hledger reads data from one or more files in hledger journal,+timeclock, timedot, or CSV format specified with `-f', or+`$LEDGER_FILE', or `$HOME/.hledger.journal' (on windows, perhaps+`C:/Users/USER/.hledger.journal'). If using `$LEDGER_FILE', note this+must be a real environment variable, not a shell variable. You can+specify standard input with `-f-'.++ Transactions are dated movements of money between two (or more) named+accounts, and are recorded with journal entries like this:+++2015/10/16 bought food+ expenses:food $10+ assets:cash++ For more about this format, see hledger_journal(5).++ Most users use a text editor to edit the journal, usually with an+editor mode such as ledger-mode for added convenience. hledger's+interactive add command is another way to record new transactions.+hledger never changes existing transactions.++ To get started, you can either save some entries like the above in+`~/.hledger.journal', or run `hledger add' and follow the prompts. Then+try some commands like `hledger print' or `hledger balance'. Run+`hledger' with no arguments for a list of commands.++* Menu:++* OPTIONS::+* ENVIRONMENT::+* DATA FILES::+* TIME PERIODS::+* DEPTH::+* QUERIES::+* COSTING::+* VALUATION::+* PIVOTING::+* OUTPUT::+* COMMANDS::+* JOURNAL FORMAT::+* CSV FORMAT::+* TIMECLOCK FORMAT::+* TIMEDOT FORMAT::+* COMMON TASKS::+* LIMITATIONS::+* TROUBLESHOOTING::+++File: hledger.info, Node: OPTIONS, Next: ENVIRONMENT, Prev: Top, Up: Top++1 OPTIONS+*********++* Menu:++* General options::+* Command options::+* Command arguments::+* Special characters::+* Unicode characters::+* Regular expressions::+++File: hledger.info, Node: General options, Next: Command options, Up: OPTIONS++1.1 General options+===================++To see general usage help, including general options which are supported+by most hledger commands, run `hledger -h'.++ General help options:++`-h --help'+ show general or COMMAND help++`--man'+ show general or COMMAND user manual with man++`--info'+ show general or COMMAND user manual with info++`--version'+ show general or ADDONCMD version++`--debug[=N]'+ show debug output (levels 1-9, default: 1)++ General input options:++`-f FILE --file=FILE'+ use a different input file. For stdin, use - (default:+ `$LEDGER_FILE' or `$HOME/.hledger.journal')++`--rules-file=RULESFILE'+ Conversion rules file to use when reading CSV (default: FILE.rules)++`--separator=CHAR'+ Field separator to expect when reading CSV (default: ',')++`--alias=OLD=NEW'+ rename accounts named OLD to NEW++`--anon'+ anonymize accounts and payees++`--pivot FIELDNAME'+ use some other field or tag for the account name++`-I --ignore-assertions'+ disable balance assertion checks (note: does not disable balance+ assignments)++`-s --strict'+ do extra error checking (check that all posted accounts are+ declared)++ General reporting options:++`-b --begin=DATE'+ include postings/txns on or after this date++`-e --end=DATE'+ include postings/txns before this date++`-D --daily'+ multiperiod/multicolumn report by day++`-W --weekly'+ multiperiod/multicolumn report by week++`-M --monthly'+ multiperiod/multicolumn report by month++`-Q --quarterly'+ multiperiod/multicolumn report by quarter++`-Y --yearly'+ multiperiod/multicolumn report by year++`-p --period=PERIODEXP'+ set start date, end date, and/or reporting interval all at once+ using period expressions syntax++`--date2'+ match the secondary date instead (see command help for other+ effects)++`-U --unmarked'+ include only unmarked postings/txns (can combine with -P or -C)++`-P --pending'+ include only pending postings/txns++`-C --cleared'+ include only cleared postings/txns++`-R --real'+ include only non-virtual postings++`-NUM --depth=NUM'+ hide/aggregate accounts or postings more than NUM levels deep++`-E --empty'+ show items with zero amount, normally hidden (and vice-versa in+ hledger-ui/hledger-web)++`-B --cost'+ convert amounts to their cost/selling amount at transaction time++`-V --market'+ convert amounts to their market value in default valuation+ commodities++`-X --exchange=COMM'+ convert amounts to their market value in commodity COMM++`--value'+ convert amounts to cost or market value, more flexibly than+ -B/-V/-X++`--infer-market-prices'+ use transaction prices (recorded with @ or @@) as additional market+ prices, as if they were P directives++`--auto'+ apply automated posting rules to modify transactions.++`--forecast'+ generate future transactions from periodic transaction rules, for+ the next 6 months or till report end date. In hledger-ui, also+ make ordinary future transactions visible.++`--color=WHEN (or --colour=WHEN)'+ Should color-supporting commands use ANSI color codes in text+ output. 'auto' (default): whenever stdout seems to be a+ color-supporting terminal. 'always' or 'yes': always, useful eg+ when piping output into 'less -R'. 'never' or 'no': never. A+ NO_COLOR environment variable overrides this.++ When a reporting option appears more than once in the command line,+the last one takes precedence.++ Some reporting options can also be written as query arguments.+++File: hledger.info, Node: Command options, Next: Command arguments, Prev: General options, Up: OPTIONS++1.2 Command options+===================++To see options for a particular command, including command-specific+options, run: `hledger COMMAND -h'.++ Command-specific options must be written after the command name, eg:+`hledger print -x'.++ Additionally, if the command is an add-on, you may need to put its+options after a double-hyphen, eg: `hledger ui -- --watch'. Or, you can+run the add-on executable directly: `hledger-ui --watch'.+++File: hledger.info, Node: Command arguments, Next: Special characters, Prev: Command options, Up: OPTIONS++1.3 Command arguments+=====================++Most hledger commands accept arguments after the command name, which are+often a query, filtering the data in some way.++ You can save a set of command line options/arguments in a file, and+then reuse them by writing `@FILENAME' as a command line argument. Eg:+`hledger bal @foo.args'. (To prevent this, eg if you have an argument+that begins with a literal `@', precede it with `--', eg: `hledger bal+-- @ARG').++ Inside the argument file, each line should contain just one option or+argument. Avoid the use of spaces, except inside quotes (or you'll see a+confusing error). Between a flag and its argument, use = (or nothing).+Bad:+++assets depth:2+-X USD++ Good:+++assets+depth:2+-X=USD++ For special characters (see below), use one less level of quoting+than you would at the command prompt. Bad:+++-X"$"++ Good:+++-X$++ See also: Save frequently used options.+++File: hledger.info, Node: Special characters, Next: Unicode characters, Prev: Command arguments, Up: OPTIONS++1.4 Special characters+======================++* Menu:++* Single escaping shell metacharacters::+* Double escaping regular expression metacharacters::+* Triple escaping for add-on commands::+* Less escaping::+++File: hledger.info, Node: Single escaping shell metacharacters, Next: Double escaping regular expression metacharacters, Up: Special characters++1.4.1 Single escaping (shell metacharacters)+--------------------------------------------++In shell command lines, characters significant to your shell - such as+spaces, `<', `>', `(', `)', `|', `$' and `\' - should be+"shell-escaped" if you want hledger to see them. This is done by+enclosing them in single or double quotes, or by writing a backslash+before them. Eg to match an account name containing a space:+++$ hledger register 'credit card'++ or:+++$ hledger register credit\ card+++File: hledger.info, Node: Double escaping regular expression metacharacters, Next: Triple escaping for add-on commands, Prev: Single escaping shell metacharacters, Up: Special characters++1.4.2 Double escaping (regular expression metacharacters)+---------------------------------------------------------++Characters significant in regular expressions (described below) - such+as `.', `^', `$', `[', `]', `(', `)', `|', and `\' - may need to be+"regex-escaped" if you don't want them to be interpreted by hledger's+regular expression engine. This is done by writing backslashes before+them, but since backslash is typically also a shell metacharacter, both+shell-escaping and regex-escaping will be needed. Eg to match a literal+`$' sign while using the bash shell:+++$ hledger balance cur:'\$'++ or:+++$ hledger balance cur:\\$+++File: hledger.info, Node: Triple escaping for add-on commands, Next: Less escaping, Prev: Double escaping regular expression metacharacters, Up: Special characters++1.4.3 Triple escaping (for add-on commands)+-------------------------------------------++When you use hledger to run an external add-on command (described+below), one level of shell-escaping is lost from any options or+arguments intended for by the add-on command, so those need an extra+level of shell-escaping. Eg to match a literal `$' sign while using the+bash shell and running an add-on command (`ui'):+++$ hledger ui cur:'\\$'++ or:+++$ hledger ui cur:\\\\$++ If you wondered why _four_ backslashes, perhaps this helps:++unescaped: `$'+escaped: `\$'+double-escaped: `\\$'+triple-escaped: `\\\\$'++ Or, you can avoid the extra escaping by running the add-on executable+directly:+++$ hledger-ui cur:\\$+++File: hledger.info, Node: Less escaping, Prev: Triple escaping for add-on commands, Up: Special characters++1.4.4 Less escaping+-------------------++Options and arguments are sometimes used in places other than the shell+command line, where shell-escaping is not needed, so there you should+use one less level of escaping. Those places include:++ * an @argumentfile++ * hledger-ui's filter field++ * hledger-web's search form++ * GHCI's prompt (used by developers).+++File: hledger.info, Node: Unicode characters, Next: Regular expressions, Prev: Special characters, Up: OPTIONS++1.5 Unicode characters+======================++hledger is expected to handle non-ascii characters correctly:++ * they should be parsed correctly in input files and on the command+ line, by all hledger tools (add, iadd, hledger-web's+ search/add/edit forms, etc.)++ * they should be displayed correctly by all hledger tools, and+ on-screen alignment should be preserved.+++ This requires a well-configured environment. Here are some tips:++ * A system locale must be configured, and it must be one that can+ decode the characters being used. In bash, you can set a locale+ like this: `export LANG=en_US.UTF-8'. There are some more details+ in Troubleshooting. This step is essential - without it, hledger+ will quit on encountering a non-ascii character (as with all+ GHC-compiled programs).++ * your terminal software (eg Terminal.app, iTerm, CMD.exe, xterm..)+ must support unicode++ * the terminal must be using a font which includes the required+ unicode glyphs++ * the terminal should be configured to display wide characters as+ double width (for report alignment)++ * on Windows, for best results you should run hledger in the same+ kind of environment in which it was built. Eg hledger built in the+ standard CMD.EXE environment (like the binaries on our download+ page) might show display problems when run in a cygwin or msys+ terminal, and vice versa. (See eg #961).++++File: hledger.info, Node: Regular expressions, Prev: Unicode characters, Up: OPTIONS++1.6 Regular expressions+=======================++hledger uses regular expressions in a number of places:++ * query terms, on the command line and in the hledger-web search+ form: `REGEX', `desc:REGEX', `cur:REGEX', `tag:...=REGEX'++ * CSV rules conditional blocks: `if REGEX ...'++ * account alias directives and options: `alias /REGEX/ =+ REPLACEMENT', `--alias /REGEX/=REPLACEMENT'++ hledger's regular expressions come from the regex-tdfa library. If+they're not doing what you expect, it's important to know exactly what+they support:++ 1. they are case insensitive++ 2. they are infix matching (they do not need to match the entire thing+ being matched)++ 3. they are POSIX ERE (extended regular expressions)++ 4. they also support GNU word boundaries (`\b', `\B', `\<', `\>')++ 5. they do not support backreferences; if you write `\1', it will+ match the digit `1'. Except when doing text replacement, eg in+ account aliases, where backreferences can be used in the+ replacement string to reference capturing groups in the search+ regexp.++ 6. they do not support mode modifiers (`(?s)'), character classes+ (`\w', `\d'), or anything else not mentioned above.++ Some things to note:++ * In the `alias' directive and `--alias' option, regular expressions+ must be enclosed in forward slashes (`/REGEX/'). Elsewhere in+ hledger, these are not required.++ * In queries, to match a regular expression metacharacter like `$' as+ a literal character, prepend a backslash. Eg to search for amounts+ with the dollar sign in hledger-web, write `cur:\$'.++ * On the command line, some metacharacters like `$' have a special+ meaning to the shell and so must be escaped at least once more. See+ Special characters.++++File: hledger.info, Node: ENVIRONMENT, Next: DATA FILES, Prev: OPTIONS, Up: Top++2 ENVIRONMENT+*************++*LEDGER_FILE* The journal file path when not specified with `-f'.+Default: `~/.hledger.journal' (on windows, perhaps+`C:/Users/USER/.hledger.journal').++ A typical value is `~/DIR/YYYY.journal', where DIR is a+version-controlled finance directory and YYYY is the current year. Or+`~/DIR/current.journal', where current.journal is a symbolic link to+YYYY.journal.++ On Mac computers, you can set this and other environment variables+in a more thorough way that also affects applications started from the+GUI (say, an Emacs dock icon). Eg on MacOS Catalina I have a+`~/.MacOSX/environment.plist' file containing+++{+ "LEDGER_FILE" : "~/finance/current.journal"+}++ To see the effect you may need to `killall Dock', or reboot.++ *COLUMNS* The screen width used by the register command. Default:+the full terminal width.++ *NO_COLOR* If this variable exists with any value, hledger will not+use ANSI color codes in terminal output. This overrides the+-color/-colour option.+++File: hledger.info, Node: DATA FILES, Next: TIME PERIODS, Prev: ENVIRONMENT, Up: Top++3 DATA FILES+************++hledger reads transactions from one or more data files. The default data+file is `$HOME/.hledger.journal' (or on Windows, something like+`C:/Users/USER/.hledger.journal').++ You can override this with the `$LEDGER_FILE' environment variable:+++$ setenv LEDGER_FILE ~/finance/2016.journal+$ hledger stats++ or with one or more `-f/--file' options:+++$ hledger -f /some/file -f another_file stats++ The file name `-' means standard input:+++$ cat some.journal | hledger -f-++* Menu:++* Data formats::+* Multiple files::+* Strict mode::+++File: hledger.info, Node: Data formats, Next: Multiple files, Up: DATA FILES++3.1 Data formats+================++Usually the data file is in hledger's journal format, but it can be in+any of the supported file formats, which currently are:++Reader: Reads: Used for file+ extensions:+-------------------------------------------------------------------------- +`journal'hledger journal files and some Ledger `.journal' `.j'+ journals, for transactions `.hledger' `.ledger'+`timeclock'timeclock files, for precise time `.timeclock'+ logging +`timedot'timedot files, for approximate time `.timedot'+ logging +`csv' comma/semicolon/tab/other-separated `.csv' `.ssv' `.tsv'+ values, for data import ++ These formats are described in their own sections, below.++ hledger detects the format automatically based on the file extensions+shown above. If it can't recognise the file extension, it assumes+`journal' format. So for non-journal files, it's important to use a+recognised file extension, so as to either read successfully or to show+relevant error messages.++ You can also force a specific reader/format by prefixing the file+path with the format and a colon. Eg, to read a .dat file as csv format:+++$ hledger -f csv:/some/csv-file.dat stats++ Or to read stdin (`-') as timeclock format:+++$ echo 'i 2009/13/1 08:00:00' | hledger print -ftimeclock:-+++File: hledger.info, Node: Multiple files, Next: Strict mode, Prev: Data formats, Up: DATA FILES++3.2 Multiple files+==================++You can specify multiple `-f' options, to read multiple files as one+big journal. There are some limitations with this:++ * most directives do not affect sibling files++ * balance assertions will not see any account balances from previous+ files++ If you need either of those things, you can++ * use a single parent file which includes the others++ * or concatenate the files into one before reading, eg: `cat+ a.journal b.journal | hledger -f- CMD'.+++File: hledger.info, Node: Strict mode, Prev: Multiple files, Up: DATA FILES++3.3 Strict mode+===============++hledger checks input files for valid data. By default, the most+important errors are detected, while still accepting easy journal files+without a lot of declarations:++ * Are the input files parseable, with valid syntax ?++ * Are all transactions balanced ?++ * Do all balance assertions pass ?++ With the `-s'/`--strict' flag, additional checks are performed:++ * Are all accounts posted to, declared with an `account' directive ?+ (Account error checking)++ * Are all commodities declared with a `commodity' directive ?+ (Commodity error checking)++ See also: https://hledger.org/checking-for-errors.html++ _experimental._+++File: hledger.info, Node: TIME PERIODS, Next: DEPTH, Prev: DATA FILES, Up: Top++4 TIME PERIODS+**************++* Menu:++* Smart dates::+* Report start & end date::+* Report intervals::+* Period expressions::+++File: hledger.info, Node: Smart dates, Next: Report start & end date, Up: TIME PERIODS++4.1 Smart dates+===============++hledger's user interfaces accept a flexible "smart date" syntax. Smart+dates allow some english words, can be relative to today's date, and can+have less-significant date parts omitted (defaulting to 1).++ Examples:++`2004/10/1', exact date, several separators allowed. Year+`2004-01-01', `2004.9.1' is 4+ digits, month is 1-12, day is 1-31+`2004' start of year+`2004/10' start of month+`10/1' month and day in current year+`21' day in current month+`october, oct' start of month in current year+`yesterday, today, -1, 0, 1 days from today+tomorrow' +`last/this/next -1, 0, 1 periods from the current period+day/week/month/quarter/year'+`20181201' 8 digit YYYYMMDD with valid year month and day+`201812' 6 digit YYYYMM with valid year and month++ Counterexamples - malformed digit sequences might give surprising+results:++`201813' 6 digits with an invalid month is parsed as start of+ 6-digit year+`20181301' 8 digits with an invalid month is parsed as start of+ 8-digit year+`20181232' 8 digits with an invalid day gives an error+`201801012' 9+ digits beginning with a valid YYYYMMDD gives an error+++File: hledger.info, Node: Report start & end date, Next: Report intervals, Prev: Smart dates, Up: TIME PERIODS++4.2 Report start & end date+===========================++By default, most hledger reports will show the full span of time+represented by the journal data. The report start date will be the+earliest transaction or posting date, and the report end date will be+the latest transaction, posting, or market price date.++ Often you will want to see a shorter time span, such as the current+month. You can specify a start and/or end date using `-b/--begin',+`-e/--end', `-p/--period' or a `date:' query (described below). All of+these accept the smart date syntax.++ Some notes:++ * As in Ledger, end dates are exclusive, so you need to write the+ date _after_ the last day you want to include.++ * As noted in reporting options: among start/end dates specified with+ _options_, the last (i.e. right-most) option takes precedence.++ * The effective report start and end dates are the intersection of+ the start/end dates from options and that from `date:' queries.+ That is, `date:2019-01 date:2019 -p'2000 to 2030'' yields January+ 2019, the smallest common time span.++ Examples:++`-b begin on St. Patrick's day 2016+2016/3/17' +`-e 12/1' end at the start of december 1st of the current year+ (11/30 will be the last date included)+`-b all transactions on or after the 1st of the current month+thismonth' +`-p all transactions in the current month+thismonth' +`date:2016/3/17..'the above written as queries instead (`..' can also be+ replaced with `-')+`date:..12/1' +`date:thismonth..'+`date:thismonth'+++File: hledger.info, Node: Report intervals, Next: Period expressions, Prev: Report start & end date, Up: TIME PERIODS++4.3 Report intervals+====================++A report interval can be specified so that commands like register,+balance and activity will divide their reports into multiple subperiods.+The basic intervals can be selected with one of `-D/--daily',+`-W/--weekly', `-M/--monthly', `-Q/--quarterly', or `-Y/--yearly'. More+complex intervals may be specified with a period expression. Report+intervals can not be specified with a query.+++File: hledger.info, Node: Period expressions, Prev: Report intervals, Up: TIME PERIODS++4.4 Period expressions+======================++The `-p/--period' option accepts period expressions, a shorthand way of+expressing a start date, end date, and/or report interval all at once.++ Here's a basic period expression specifying the first quarter of+2009. Note, hledger always treats start dates as inclusive and end+dates as exclusive:++ `-p "from 2009/1/1 to 2009/4/1"'++ Keywords like "from" and "to" are optional, and so are the spaces, as+long as you don't run two dates together. "to" can also be written as+".." or "-". These are equivalent to the above:++`-p "2009/1/1 2009/4/1"'+`-p2009/1/1to2009/4/1'+`-p2009/1/1..2009/4/1'++ Dates are smart dates, so if the current year is 2009, the above can+also be written as:++`-p "1/1 4/1"'+`-p "january-apr"'+`-p "this year to 4/1"'++ If you specify only one date, the missing start or end date will be+the earliest or latest transaction in your journal:++`-p "from 2009/1/1"' everything after january 1, 2009+`-p "from 2009/1"' the same+`-p "from 2009"' the same+`-p "to 2009"' everything before january 1, 2009++ A single date with no "from" or "to" defines both the start and end+date like so:++`-p "2009"' the year 2009; equivalent to “2009/1/1 to 2010/1/1”+`-p "2009/1"' the month of jan; equivalent to “2009/1/1 to 2009/2/1”+`-p "2009/1/1"' just that day; equivalent to “2009/1/1 to 2009/1/2”++ Or you can specify a single quarter like so:++`-p "2009Q1"' first quarter of 2009, equivalent to “2009/1/1 to 2009/4/1”+`-p "q4"' fourth quarter of the current year++ The argument of `-p' can also begin with, or be, a report interval+expression. The basic report intervals are `daily', `weekly',+`monthly', `quarterly', or `yearly', which have the same effect as the+`-D',`-W',`-M',`-Q', or `-Y' flags. Between report interval and+start/end dates (if any), the word `in' is optional. Examples:++`-p "weekly from 2009/1/1 to 2009/4/1"'+`-p "monthly in 2008"'+`-p "quarterly"'++ Note that `weekly', `monthly', `quarterly' and `yearly' intervals+will always start on the first day on week, month, quarter or year+accordingly, and will end on the last day of same period, even if+associated period expression specifies different explicit start and end+date.++ For example:++`-p "weekly from 2009/1/1 starts on 2008/12/29, closest preceding Monday+to 2009/4/1"' +`-p "monthly in starts on 2018/11/01+2008/11/25"' +`-p "quarterly from starts on 2009/04/01, ends on 2009/06/30,+2009-05-05 to 2009-06-01"' which are first and last days of Q2 2009+`-p "yearly from starts on 2009/01/01, first day of 2009+2009-12-29"' ++ The following more complex report intervals are also supported:+`biweekly', `fortnightly', `bimonthly', `every+day|week|month|quarter|year', `every N+days|weeks|months|quarters|years'.++ All of these will start on the first day of the requested period and+end on the last one, as described above.++ Examples:++`-p "bimonthly from 2008"' periods will have boundaries on 2008/01/01,+ 2008/03/01, ...+`-p "every 2 weeks"' starts on closest preceding Monday+`-p "every 5 month from periods will have boundaries on 2009/03/01,+2009/03"' 2009/08/01, ...++ If you want intervals that start on arbitrary day of your choosing+and span a week, month or year, you need to use any of the following:++ `every Nth day of week', `every WEEKDAYNAME' (eg+`mon|tue|wed|thu|fri|sat|sun'), `every Nth day [of month]', `every Nth+WEEKDAYNAME [of month]', `every MM/DD [of year]', `every Nth MMM [of+year]', `every MMM Nth [of year]'.++ Examples:++`-p "every 2nd day of periods will go from Tue to Tue+week"' +`-p "every Tue"' same+`-p "every 15th day"' period boundaries will be on 15th of each month+`-p "every 2nd Monday"' period boundaries will be on second Monday of+ each month+`-p "every 11/05"' yearly periods with boundaries on 5th of Nov+`-p "every 5th Nov"' same+`-p "every Nov 5th"' same++ Show historical balances at end of 15th each month (N is exclusive+end date):++ `hledger balance -H -p "every 16th day"'++ Group postings from start of wednesday to end of next tuesday (N is+start date and exclusive end date):++ `hledger register checking -p "every 3rd day of week"'+++File: hledger.info, Node: DEPTH, Next: QUERIES, Prev: TIME PERIODS, Up: Top++5 DEPTH+*******++With the `--depth N' option (short form: `-N'), commands like account,+balance and register will show only the uppermost accounts in the+account tree, down to level N. Use this when you want a summary with+less detail. This flag has the same effect as a `depth:' query argument+(so `-2', `--depth=2' or `depth:2' are equivalent).+++File: hledger.info, Node: QUERIES, Next: COSTING, Prev: DEPTH, Up: Top++6 QUERIES+*********++One of hledger's strengths is being able to quickly report on precise+subsets of your data. Most commands accept an optional query expression,+written as arguments after the command name, to filter the data by date,+account name or other criteria. The syntax is similar to a web search:+one or more space-separated search terms, quotes to enclose whitespace,+prefixes to match specific fields, a not: prefix to negate the match.++ We do not yet support arbitrary boolean combinations of search terms;+instead most commands show transactions/postings/accounts which match+(or negatively match):++ * any of the description terms AND++ * any of the account terms AND++ * any of the status terms AND++ * all the other terms.++ The print command instead shows transactions which:++ * match any of the description terms AND++ * have any postings matching any of the positive account terms AND++ * have no postings matching any of the negative account terms AND++ * match all the other terms.++ The following kinds of search terms can be used. Remember these can+also be prefixed with *`not:'*, eg to exclude a particular subaccount.++*`REGEX', `acct:REGEX'*+ match account names by this regular expression. (With no prefix,+ `acct:' is assumed.) same as above++*`amt:N, amt:<N, amt:<=N, amt:>N, amt:>=N'*+ match postings with a single-commodity amount that is equal to,+ less than, or greater than N. (Multi-commodity amounts are not+ tested, and will always match.) The comparison has two modes: if N+ is preceded by a + or - sign (or is 0), the two signed numbers are+ compared. Otherwise, the absolute magnitudes are compared,+ ignoring sign.++*`code:REGEX'*+ match by transaction code (eg check number)++*`cur:REGEX'*+ match postings or transactions including any amounts whose+ currency/commodity symbol is fully matched by REGEX. (For a partial+ match, use `.*REGEX.*'). Note, to match characters which are+ regex-significant, like the dollar sign (`$'), you need to prepend+ `\'. And when using the command line you need to add one more level+ of quoting to hide it from the shell, so eg do: `hledger print+ cur:'\$'' or `hledger print cur:\\$'.++*`desc:REGEX'*+ match transaction descriptions.++*`date:PERIODEXPR'*+ match dates within the specified period. PERIODEXPR is a period+ expression (with no report interval). Examples: `date:2016',+ `date:thismonth', `date:2000/2/1-2/15', `date:lastweek-'. If the+ `--date2' command line flag is present, this matches secondary+ dates instead.++*`date2:PERIODEXPR'*+ match secondary dates within the specified period.++*`depth:N'*+ match (or display, depending on command) accounts at or above this+ depth++*`note:REGEX'*+ match transaction notes (part of description right of `|', or whole+ description when there's no `|')++*`payee:REGEX'*+ match transaction payee/payer names (part of description left of+ `|', or whole description when there's no `|')++*`real:, real:0'*+ match real or virtual postings respectively++*`status:, status:!, status:*'*+ match unmarked, pending, or cleared transactions respectively++*`tag:REGEX[=REGEX]'*+ match by tag name, and optionally also by tag value. Note a tag:+ query is considered to match a transaction if it matches any of+ the postings. Also remember that postings inherit the tags of+ their parent transaction.++ The following special search term is used automatically in+hledger-web, only:++*`inacct:ACCTNAME'*+ tells hledger-web to show the transaction register for this+ account. Can be filtered further with `acct' etc.++ Some of these can also be expressed as command-line options (eg+`depth:2' is equivalent to `--depth 2'). Generally you can mix options+and query arguments, and the resulting query will be their intersection+(perhaps excluding the `-p/--period' option).+++File: hledger.info, Node: COSTING, Next: VALUATION, Prev: QUERIES, Up: Top++7 COSTING+*********++The `-B/--cost' flag converts amounts to their cost or sale amount at+transaction time, if they have a transaction price specified. If this+flag is supplied, hledger will perform cost conversion first, and will+apply any market price valuations (if requested) afterwards.+++File: hledger.info, Node: VALUATION, Next: PIVOTING, Prev: COSTING, Up: Top++8 VALUATION+***********++Instead of reporting amounts in their original commodity, hledger can+convert them to cost/sale amount (using the conversion rate recorded in+the transaction), and/or to market value (using some market price on a+certain date). This is controlled by the `--value=TYPE[,COMMODITY]'+option, which will be described below. We also provide the simpler `-V'+and `-X COMMODITY' options, and often one of these is all you need:++* Menu:++* -V Value::+* -X Value in specified commodity::+* Valuation date::+* Market prices::+* --infer-market-price market prices from transactions::+* Valuation commodity::+* Simple valuation examples::+* --value Flexible valuation::+* More valuation examples::+* Effect of valuation on reports::+++File: hledger.info, Node: -V Value, Next: -X Value in specified commodity, Up: VALUATION++8.1 -V: Value+=============++The `-V/--market' flag converts amounts to market value in their+default _valuation commodity_, using the market prices in effect on the+_valuation date(s)_, if any. More on these in a minute.+++File: hledger.info, Node: -X Value in specified commodity, Next: Valuation date, Prev: -V Value, Up: VALUATION++8.2 -X: Value in specified commodity+====================================++The `-X/--exchange=COMM' option is like `-V', except you tell it which+currency you want to convert to, and it tries to convert everything to+that.+++File: hledger.info, Node: Valuation date, Next: Market prices, Prev: -X Value in specified commodity, Up: VALUATION++8.3 Valuation date+==================++Since market prices can change from day to day, market value reports+have a valuation date (or more than one), which determines which market+prices will be used.++ For single period reports, if an explicit report end date is+specified, that will be used as the valuation date; otherwise the+valuation date is the journal's end date.++ For multiperiod reports, each column/period is valued on the last+day of the period, by default.+++File: hledger.info, Node: Market prices, Next: --infer-market-price market prices from transactions, Prev: Valuation date, Up: VALUATION++8.4 Market prices+=================++To convert a commodity A to its market value in another commodity B,+hledger looks for a suitable market price (exchange rate) as follows, in+this order of preference :++ 1. A _declared market price_ or _inferred market price_: A's latest+ market price in B on or before the valuation date as declared by a+ P directive, or (with the `--infer-market-price' flag) inferred+ from transaction prices.++ 2. A _reverse market price_: the inverse of a declared or inferred+ market price from B to A.++ 3. A _forward chain of market prices_: a synthetic price formed by+ combining the shortest chain of "forward" (only 1 above) market+ prices, leading from A to B.++ 4. _Any chain of market prices_: a chain of any market prices,+ including both forward and reverse prices (1 and 2 above), leading+ from A to B.+++ There is a limit to the length of these price chains; if hledger+reaches that length without finding a complete chain or exhausting all+possibilities, it will give up (with a "gave up" message visible in+`--debug=2' output). That limit is currently 1000.++ Amounts for which no suitable market price can be found, are not+converted.+++File: hledger.info, Node: --infer-market-price market prices from transactions, Next: Valuation commodity, Prev: Market prices, Up: VALUATION++8.5 -infer-market-price: market prices from transactions+========================================================++Normally, market value in hledger is fully controlled by, and requires,+P directives in your journal. Since adding and updating those can be a+chore, and since transactions usually take place at close to market+value, why not use the recorded transaction prices as additional market+prices (as Ledger does) ? We could produce value reports without needing+P directives at all.++ Adding the `--infer-market-price' flag to `-V', `-X' or `--value'+enables this. So for example, `hledger bs -V --infer-market-price' will+get market prices both from P directives and from transactions. (And if+both occur on the same day, the P directive takes precedence).++ There is a downside: value reports can sometimes be affected in+confusing/undesired ways by your journal entries. If this happens to+you, read all of this Valuation section carefully, and try adding+`--debug' or `--debug=2' to troubleshoot.++ `--infer-market-price' can infer market prices from:++ * multicommodity transactions with explicit prices (`@'/`@@')++ * multicommodity transactions with implicit prices (no `@', two+ commodities, unbalanced). (With these, the order of postings+ matters. `hledger print -x' can be useful for troubleshooting.)++ * but not, currently, from "more correct" multicommodity+ transactions (no `@', multiple commodities, balanced).++++File: hledger.info, Node: Valuation commodity, Next: Simple valuation examples, Prev: --infer-market-price market prices from transactions, Up: VALUATION++8.6 Valuation commodity+=======================++*When you specify a valuation commodity (`-X COMM' or `--value+TYPE,COMM'):*+hledger will convert all amounts to COMM, wherever it can find a+suitable market price (including by reversing or chaining prices).++ *When you leave the valuation commodity unspecified (`-V' or+`--value TYPE'):*+For each commodity A, hledger picks a default valuation commodity as+follows, in this order of preference:++ 1. The price commodity from the latest P-declared market price for A+ on or before valuation date.++ 2. The price commodity from the latest P-declared market price for A+ on any date. (Allows conversion to proceed when there are inferred+ prices before the valuation date.)++ 3. If there are no P directives at all (any commodity or date) and the+ `--infer-market-price' flag is used: the price commodity from the+ latest transaction-inferred price for A on or before valuation+ date.+++ This means:++ * If you have P directives, they determine which commodities `-V'+ will convert, and to what.++ * If you have no P directives, and use the `--infer-market-price'+ flag, transaction prices determine it.+++ Amounts for which no valuation commodity can be found are not+converted.+++File: hledger.info, Node: Simple valuation examples, Next: --value Flexible valuation, Prev: Valuation commodity, Up: VALUATION++8.7 Simple valuation examples+=============================++Here are some quick examples of `-V':+++; one euro is worth this many dollars from nov 1+P 2016/11/01 € $1.10++; purchase some euros on nov 3+2016/11/3+ assets:euros €100+ assets:checking++; the euro is worth fewer dollars by dec 21+P 2016/12/21 € $1.03++ How many euros do I have ?+++$ hledger -f t.j bal -N euros+ €100 assets:euros++ What are they worth at end of nov 3 ?+++$ hledger -f t.j bal -N euros -V -e 2016/11/4+ $110.00 assets:euros++ What are they worth after 2016/12/21 ? (no report end date specified,+defaults to today)+++$ hledger -f t.j bal -N euros -V+ $103.00 assets:euros+++File: hledger.info, Node: --value Flexible valuation, Next: More valuation examples, Prev: Simple valuation examples, Up: VALUATION++8.8 -value: Flexible valuation+==============================++`-V' and `-X' are special cases of the more general `--value' option:+++ --value=TYPE[,COMM] TYPE is then, end, now or YYYY-MM-DD.+ COMM is an optional commodity symbol.+ Shows amounts converted to:+ - default valuation commodity (or COMM) using market prices at posting dates+ - default valuation commodity (or COMM) using market prices at period end(s)+ - default valuation commodity (or COMM) using current market prices+ - default valuation commodity (or COMM) using market prices at some date++ The TYPE part selects cost or value and valuation date:++`--value=then'+ Convert amounts to their value in the default valuation commodity,+ using market prices on each posting's date.++`--value=end'+ Convert amounts to their value in the default valuation commodity,+ using market prices on the last day of the report period (or if+ unspecified, the journal's end date); or in multiperiod reports,+ market prices on the last day of each subperiod.++`--value=now'+ Convert amounts to their value in the default valuation commodity+ using current market prices (as of when report is generated).++`--value=YYYY-MM-DD'+ Convert amounts to their value in the default valuation commodity+ using market prices on this date.++ To select a different valuation commodity, add the optional `,COMM'+part: a comma, then the target commodity's symbol. Eg:+*`--value=now,EUR'*. hledger will do its best to convert amounts to+this commodity, deducing market prices as described above.+++File: hledger.info, Node: More valuation examples, Next: Effect of valuation on reports, Prev: --value Flexible valuation, Up: VALUATION++8.9 More valuation examples+===========================++Here are some examples showing the effect of `--value', as seen with+`print':+++P 2000-01-01 A 1 B+P 2000-02-01 A 2 B+P 2000-03-01 A 3 B+P 2000-04-01 A 4 B++2000-01-01+ (a) 1 A @ 5 B++2000-02-01+ (a) 1 A @ 6 B++2000-03-01+ (a) 1 A @ 7 B++ Show the cost of each posting:+++$ hledger -f- print --cost+2000-01-01+ (a) 5 B++2000-02-01+ (a) 6 B++2000-03-01+ (a) 7 B++ Show the value as of the last day of the report period (2000-02-29):+++$ hledger -f- print --value=end date:2000/01-2000/03+2000-01-01+ (a) 2 B++2000-02-01+ (a) 2 B++ With no report period specified, that shows the value as of the last+day of the journal (2000-03-01):+++$ hledger -f- print --value=end+2000-01-01+ (a) 3 B++2000-02-01+ (a) 3 B++2000-03-01+ (a) 3 B++ Show the current value (the 2000-04-01 price is still in effect+today):+++$ hledger -f- print --value=now+2000-01-01+ (a) 4 B++2000-02-01+ (a) 4 B++2000-03-01+ (a) 4 B++ Show the value on 2000/01/15:+++$ hledger -f- print --value=2000-01-15+2000-01-01+ (a) 1 B++2000-02-01+ (a) 1 B++2000-03-01+ (a) 1 B++ You may need to explicitly set a commodity's display style, when+reverse prices are used. Eg this output might be surprising:+++P 2000-01-01 A 2B++2000-01-01+ a 1B+ b+++$ hledger print -x -X A+2000-01-01+ a 0+ b 0++ Explanation: because there's no amount or commodity directive+specifying a display style for A, 0.5A gets the default style, which+shows no decimal digits. Because the displayed amount looks like zero,+the commodity symbol and minus sign are not displayed either. Adding a+commodity directive sets a more useful display style for A:+++P 2000-01-01 A 2B+commodity 0.00A++2000-01-01+ a 1B+ b+++$ hledger print -X A+2000-01-01+ a 0.50A+ b -0.50A+++File: hledger.info, Node: Effect of valuation on reports, Prev: More valuation examples, Up: VALUATION++8.10 Effect of valuation on reports+===================================++Here is a reference for how valuation is supposed to affect each part of+hledger's reports (and a glossary). (It's wide, you'll have to scroll+sideways.) It may be useful when troubleshooting. If you find problems,+please report them, ideally with a reproducible example. Related: #329,+#1083.++Report `-B', `-V', `-X' `--value=then' `--value=end'`--value=DATE',+type `--cost' `--value=now'+------------------------------------------------------------------------------ +*print* +posting cost value at value at posting value at value+amounts report end date report or at+ or today journal end DATE/today+balance unchanged unchanged unchanged unchanged unchanged+assertions/assignments ++*register* +starting cost value at valued at day value at value+balance day before each historical day before at+(-H) report or posting was made report or DATE/today+ journal journal + start start +posting cost value at value at posting value at value+amounts report end date report or at+ or today journal end DATE/today+summary summarised value at sum of postings value at value+posting cost period ends in interval, period ends at+amounts valued at DATE/today+with interval start +report +interval +running sum/average sum/average sum/average of sum/average sum/average+total/averageof of displayed values of of+ displayed displayed displayed displayed+ values values values values++*balance +(bs, bse, +cf, is)* +balance sums of value at value at posting value at value+changes costs report end date report or at+ or today of journal end DATE/today+ sums of of sums of of sums+ postings postings of+ postings+budget like like like balance like like+amounts balance balance changes balances balance+(-budget) changes changes changes+grand sum of sum of sum of displayed sum of sum of+total displayed displayed valued displayed displayed+ values values values values++*balance +(bs, bse, +cf, is) +with +report +interval* +starting sums of value at sums of values of value at sums of+balances costs of report postings before report postings+(-H) postings start of report start at start of before+ before sums of all respective sums of all report+ report start postings posting dates postings start+ before before + report start report start +balance sums of same as sums of values of balance value+changes costs of -value=end postings in change in at+(bal, is, postings in period at each DATE/today+bs period respective period, of sums+-change, posting dates valued at of+cf period ends postings+-change) +end sums of same as sums of values of period end value+balances costs of -value=end postings from balances, at+(bal -H, postings before period valued at DATE/today+is -H, from before start to period period ends of sums+bs, cf) report end at respective of+ start to posting dates postings+ period end +budget like like like balance like like+amounts balance balance changes/end balances balance+(-budget) changes/end changes/end balances changes/end+ balances balances balances+row sums, sums, sums, averages of sums, sums,+totals, averages of averages of displayed values averages of averages+row displayed displayed displayed of+averages values values values displayed+(-T, -A) values+column sums of sums of sums of displayed sums of sums of+totals displayed displayed values displayed displayed+ values values values values+grand sum, sum, sum, average of sum, sum,+total, average of average of column totals average of average+grand column column column of+average totals totals totals column+ totals+++ `--cumulative' is omitted to save space, it works like `-H' but with+a zero starting balance.++ *Glossary:*++_cost_+ calculated using price(s) recorded in the transaction(s).++_value_+ market value using available market price declarations, or the+ unchanged amount if no conversion rate can be found.++_report start_+ the first day of the report period specified with -b or -p or+ date:, otherwise today.++_report or journal start_+ the first day of the report period specified with -b or -p or+ date:, otherwise the earliest transaction date in the journal,+ otherwise today.++_report end_+ the last day of the report period specified with -e or -p or date:,+ otherwise today.++_report or journal end_+ the last day of the report period specified with -e or -p or date:,+ otherwise the latest transaction date in the journal, otherwise+ today.++_report interval_+ a flag (-D/-W/-M/-Q/-Y) or period expression that activates the+ report's multi-period mode (whether showing one or many+ subperiods).+++File: hledger.info, Node: PIVOTING, Next: OUTPUT, Prev: VALUATION, Up: Top++9 PIVOTING+**********++Normally hledger sums amounts, and organizes them in a hierarchy, based+on account name. The `--pivot FIELD' option causes it to sum and+organize hierarchy based on the value of some other field instead. FIELD+can be: `code', `description', `payee', `note', or the full name (case+insensitive) of any tag. As with account names, values containing+`colon:separated:parts' will be displayed hierarchically in reports.++ `--pivot' is a general option affecting all reports; you can think+of hledger transforming the journal before any other processing,+replacing every posting's account name with the value of the specified+field on that posting, inheriting it from the transaction or using a+blank value if it's not present.++ An example:+++2016/02/16 Member Fee Payment+ assets:bank account 2 EUR+ income:member fees -2 EUR ; member: John Doe++ Normal balance report showing account names:+++$ hledger balance+ 2 EUR assets:bank account+ -2 EUR income:member fees+--------------------+ 0++ Pivoted balance report, using member: tag values instead:+++$ hledger balance --pivot member+ 2 EUR+ -2 EUR John Doe+--------------------+ 0++ One way to show only amounts with a member: value (using a query,+described below):+++$ hledger balance --pivot member tag:member=.+ -2 EUR John Doe+--------------------+ -2 EUR++ Another way (the acct: query matches against the pivoted "account+name"):+++$ hledger balance --pivot member acct:.+ -2 EUR John Doe+--------------------+ -2 EUR+++File: hledger.info, Node: OUTPUT, Next: COMMANDS, Prev: PIVOTING, Up: Top++10 OUTPUT+*********++* Menu:++* Output destination::+* Output format::+++File: hledger.info, Node: Output destination, Next: Output format, Up: OUTPUT++10.1 Output destination+=======================++hledger commands send their output to the terminal by default. You can+of course redirect this, eg into a file, using standard shell syntax:+++$ hledger print > foo.txt++ Some commands (print, register, stats, the balance commands) also+provide the `-o/--output-file' option, which does the same thing+without needing the shell. Eg:+++$ hledger print -o foo.txt+$ hledger print -o - # write to stdout (the default)+++File: hledger.info, Node: Output format, Prev: Output destination, Up: OUTPUT++10.2 Output format+==================++Some commands (print, register, the balance commands) offer a choice of+output format. In addition to the usual plain text format (`txt'),+there are CSV (`csv'), HTML (`html'), JSON (`json') and SQL (`sql').+This is controlled by the `-O/--output-format' option:+++$ hledger print -O csv++ or, by a file extension specified with `-o/--output-file':+++$ hledger balancesheet -o foo.html # write HTML to foo.html++ The `-O' option can be used to override the file extension if needed:+++$ hledger balancesheet -o foo.txt -O html # write HTML to foo.txt++ Some notes about JSON output:++ * This feature is marked experimental, and not yet much used; you+ should expect our JSON to evolve. Real-world feedback is welcome.++ * Our JSON is rather large and verbose, as it is quite a faithful+ representation of hledger's internal data types. To understand the+ JSON, read the Haskell type definitions, which are mostly in+ https://github.com/simonmichael/hledger/blob/master/hledger-lib/Hledger/Data/Types.hs.+++ * hledger represents quantities as Decimal values storing up to 255+ significant digits, eg for repeating decimals. Such numbers can+ arise in practice (from automatically-calculated transaction+ prices), and would break most JSON consumers. So in JSON, we show+ quantities as simple Numbers with at most 10 decimal places. We+ don't limit the number of integer digits, but that part is under+ your control. We hope this approach will not cause problems in+ practice; if you find otherwise, please let us know. (Cf #1195)++ Notes about SQL output:++ * SQL output is also marked experimental, and much like JSON could+ use real-world feedback.++ * SQL output is expected to work with sqlite, MySQL and PostgreSQL++ * SQL output is structured with the expectations that statements+ will be executed in the empty database. If you already have tables+ created via SQL output of hledger, you would probably want to+ either clear tables of existing data (via `delete' or `truncate'+ SQL statements) or drop tables completely as otherwise your+ postings will be duped.++++File: hledger.info, Node: COMMANDS, Next: JOURNAL FORMAT, Prev: OUTPUT, Up: Top++11 COMMANDS+***********++hledger provides a number of commands for producing reports and managing+your data. Run `hledger' with no arguments to list the commands+available, and `hledger CMD' to run a command. CMD can be the full+command name, or its standard abbreviation shown in the commands list,+or any unambiguous prefix of the name. Eg: `hledger bal'.++ Here are the built-in commands, with the most often-used in bold:++ *Data entry:*++ These data entry commands are the only ones which can modify your+journal file.++ * *add* - add transactions using guided prompts++ * *import* - add any new transactions from other files (eg csv)++ *Data management:*++ * check - check for various kinds of issue in the data++ * close (equity) - generate balance-resetting transactions++ * diff - compare account transactions in two journal files++ * rewrite - generate extra postings, similar to print -auto++ *Financial statements:*++ * *aregister (areg)* - show transactions in a particular account++ * *balancesheet (bs)* - show assets, liabilities and net worth++ * balancesheetequity (bse) - show assets, liabilities and equity++ * cashflow (cf) - show changes in liquid assets++ * *incomestatement (is)* - show revenues and expenses++ * roi - show return on investments++ *Miscellaneous reports:*++ * accounts - show account names++ * activity - show postings-per-interval bar charts++ * *balance (bal)* - show balance changes/end balances/budgets in any+ accounts++ * codes - show transaction codes++ * commodities - show commodity/currency symbols++ * descriptions - show unique transaction descriptions++ * files - show input file paths++ * help - show hledger user manuals in several formats++ * notes - show unique note segments of transaction descriptions++ * payees - show unique payee segments of transaction descriptions++ * prices - show market price records++ * *print* - show transactions (journal entries)++ * print-unique - show only transactions with unique descriptions++ * *register (reg)* - show postings in one or more accounts & running+ total++ * register-match - show a recent posting that best matches a+ description++ * stats - show journal statistics++ * tags - show tag names++ * test - run self tests++ *Add-on commands:*++ Programs or scripts named `hledger-SOMETHING' in your PATH are+add-on commands; these appear in the commands list with a `+' mark.+Two of these are maintained and released with hledger:++ * *ui* - an efficient terminal interface (TUI) for hledger++ * *web* - a simple web interface (WUI) for hledger++ And these add-ons are maintained separately:++ * iadd - a more interactive alternative for the add command++ * interest - generates interest transactions according to various+ schemes++ * stockquotes - downloads market prices for your commodities from+ AlphaVantage _(experimental)_++ Next, the detailed command docs, in alphabetical order.++* Menu:++* accounts::+* activity::+* add::+* aregister::+* balance::+* balancesheet::+* balancesheetequity::+* cashflow::+* check::+* close::+* codes::+* commodities::+* descriptions::+* diff::+* files::+* help::+* import::+* incomestatement::+* notes::+* payees::+* prices::+* print::+* print-unique::+* register::+* register-match::+* rewrite::+* roi::+* stats::+* tags::+* test::+* About add-on commands::+++File: hledger.info, Node: accounts, Next: activity, Up: COMMANDS++11.1 accounts+=============++accounts+Show account names.++ This command lists account names, either declared with account+directives (-declared), posted to (-used), or both (the default). With+query arguments, only matched account names and account names referenced+by matched postings are shown. It shows a flat list by default. With+`--tree', it uses indentation to show the account hierarchy. In flat+mode you can add `--drop N' to omit the first few account name+components. Account names can be depth-clipped with `depth:N' or+`--depth N' or `-N'.++ Examples:+++$ hledger accounts+assets:bank:checking+assets:bank:saving+assets:cash+expenses:food+expenses:supplies+income:gifts+income:salary+liabilities:debts+++File: hledger.info, Node: activity, Next: add, Prev: accounts, Up: COMMANDS++11.2 activity+=============++activity+Show an ascii barchart of posting counts per interval.++ The activity command displays an ascii histogram showing transaction+counts by day, week, month or other reporting interval (by day is the+default). With query arguments, it counts only matched transactions.++ Examples:+++$ hledger activity --quarterly+2008-01-01 **+2008-04-01 *******+2008-07-01+2008-10-01 **+++File: hledger.info, Node: add, Next: aregister, Prev: activity, Up: COMMANDS++11.3 add+========++add+Prompt for transactions and add them to the journal. Any arguments will+be used as default inputs for the first N prompts.++ Many hledger users edit their journals directly with a text editor,+or generate them from CSV. For more interactive data entry, there is the+`add' command, which prompts interactively on the console for new+transactions, and appends them to the journal file (if there are+multiple `-f FILE' options, the first file is used.) Existing+transactions are not changed. This is the only hledger command that+writes to the journal file.++ To use it, just run `hledger add' and follow the prompts. You can+add as many transactions as you like; when you are finished, enter `.'+or press control-d or control-c to exit.++ Features:++ * add tries to provide useful defaults, using the most similar (by+ description) recent transaction (filtered by the query, if any) as+ a template.++ * You can also set the initial defaults with command line arguments.++ * Readline-style edit keys can be used during data entry.++ * The tab key will auto-complete whenever possible - accounts,+ descriptions, dates (`yesterday', `today', `tomorrow'). If the+ input area is empty, it will insert the default value.++ * If the journal defines a default commodity, it will be added to+ any bare numbers entered.++ * A parenthesised transaction code may be entered following a date.++ * Comments and tags may be entered following a description or amount.++ * If you make a mistake, enter `<' at any prompt to go one step+ backward.++ * Input prompts are displayed in a different colour when the terminal+ supports it.++ Example (see the tutorial for a detailed explanation):+++$ hledger add+Adding transactions to journal file /src/hledger/examples/sample.journal+Any command line arguments will be used as defaults.+Use tab key to complete, readline keys to edit, enter to accept defaults.+An optional (CODE) may follow transaction dates.+An optional ; COMMENT may follow descriptions or amounts.+If you make a mistake, enter < at any prompt to go one step backward.+To end a transaction, enter . when prompted.+To quit, enter . at a date prompt or press control-d or control-c.+Date [2015/05/22]:+Description: supermarket+Account 1: expenses:food+Amount 1: $10+Account 2: assets:checking+Amount 2 [$-10.0]:+Account 3 (or . or enter to finish this transaction): .+2015/05/22 supermarket+ expenses:food $10+ assets:checking $-10.0++Save this transaction to the journal ? [y]:+Saved.+Starting the next transaction (. or ctrl-D/ctrl-C to quit)+Date [2015/05/22]: <CTRL-D> $++ On Microsoft Windows, the add command makes sure that no part of the+file path ends with a period, as that would cause problems (#1056).+++File: hledger.info, Node: aregister, Next: balance, Prev: add, Up: COMMANDS++11.4 aregister+==============++aregister, areg+Show the transactions and running historical balance in an account, with+each line item representing one transaction.++ `aregister' shows the transactions affecting a particular account+and its subaccounts, with each line item representing a whole+transaction - as in bank statements, hledger-ui, hledger-web and other+accounting apps.++ Note this is unlike the `register' command, which shows individual+postings and does not always show a single account or a historical+balance.++ A reminder, "historical" balances include any balance from+transactions before the report start date, so (if opening balances are+recorded correctly) `aregister' will show the real-world balances of an+account, as you would see in a bank statement.++ As a quick rule of thumb, use `aregister' for reconciling real-world+asset/liability accounts and `register' for reviewing detailed+revenues/expenses.++ `aregister' shows the register for just one account (and its+subaccounts). This account must be specified as the first argument. You+can write either the full account name, or a case-insensitive regular+expression which will select the alphabetically first matched account.+(Eg if you have `assets:aaa:checking' and `assets:bbb:checking'+accounts, `hledger areg checking' would select `assets:aaa:checking'.)++ Any additional arguments form a query which will filter the+transactions shown.++ Each `aregister' line item shows:++ * the transaction's date (or the relevant posting's date if+ different, see below)++ * the names of all the other account(s) involved in this transaction+ (probably abbreviated)++ * the total change to this account's balance from this transaction++ * the account's historical running balance after this transaction.++ Transactions making a net change of zero are not shown by default;+add the `-E/--empty' flag to show them.++ `aregister' ignores a depth limit, so its final total will always+match a balance report with similar arguments.++ This command also supports the output destination and output format+options The output formats supported are `txt', `csv', and `json'.++* Menu:++* aregister and custom posting dates::+++File: hledger.info, Node: aregister and custom posting dates, Up: aregister++11.4.1 aregister and custom posting dates+-----------------------------------------++Transactions whose date is outside the report period can still be shown,+if they have a posting to this account dated inside the report period.+(And in this case it's the posting date that is shown.) This ensures+that `aregister' can show an accurate historical running balance,+matching the one shown by `register -H' with the same arguments.++ To filter strictly by transaction date instead, add the+`--txn-dates' flag. If you use this flag and some of your postings have+custom dates, it's probably best to assume the running balance is wrong.++ Examples:++ Show all transactions and historical running balance in the first+account whose name contains "checking":+++$ hledger areg checking++ Show transactions and historical running balance in all asset+accounts during july:+++$ hledger areg assets date:jul+++File: hledger.info, Node: balance, Next: balancesheet, Prev: aregister, Up: COMMANDS++11.5 balance+============++balance, bal+Show accounts and their balances.++ `balance' is one of hledger's oldest and most versatile commands,+for listing account balances, balance changes, values, value changes and+more, during one time period or many. Generally it shows a table, with+rows representing accounts, and columns representing periods.++ Note there are some higher-level variants of the `balance' command+with convenient defaults, which can be simpler to use: `balancesheet',+`balancesheetequity', `cashflow' and `incomestatement'. When you need+more control, then use `balance'.++* Menu:++* balance features::+* Simple balance report::+* Filtered balance report::+* List or tree mode::+* Depth limiting::+* Multi-period balance report::+* Sorting by amount::+* Percentages::+* Balance change end balance::+* Balance report types::+* Useful balance reports::+* Budget report::+* Customising single-period balance reports::+++File: hledger.info, Node: balance features, Next: Simple balance report, Up: balance++11.5.1 balance features+-----------------------++Here's a quick overview of the `balance' command's features, followed+by more detailed descriptions and examples. Many of these work with the+higher-level commands as well.++ `balance' can show..++ * accounts as a list (`-l') or a tree (`-t')++ * optionally depth-limited (`-[1-9]')++ * sorted by declaration order and name, or by amount++ ..and their..++ * balance changes (the default)++ * or actual and planned balance changes (`--budget')++ * or value of balance changes (`-V')++ * or change of balance values (`--valuechange')++ ..in..++ * one time period (the whole journal period by default)++ * or multiple periods (`-D', `-W', `-M', `-Q', `-Y', `-p INTERVAL')++ ..either..++ * per period (the default)++ * or accumulated since report start date (`--cumulative')++ * or accumulated since account creation (`--historical/-H')++ ..possibly converted to..++ * cost (`--value=cost[,COMM]'/`--cost'/`-B')++ * or market value, as of transaction dates (`--value=then[,COMM]')++ * or at period ends (`--value=end[,COMM]')++ * or now (`--value=now')++ * or at some other date (`--value=YYYY-MM-DD')++ ..with..++ * totals (`-T'), averages (`-A'), percentages (`-%'), inverted sign+ (`--invert')++ * rows and columns swapped (`--transpose')++ * another field used as account name (`--pivot')++ * custom-formatted line items (single-period reports only)+ (`--format')++ This command supports the output destination and output format+options, with output formats `txt', `csv', `json', and (multi-period+reports only:) `html'. In `txt' output in a colour-supporting terminal,+negative amounts are shown in red.+++File: hledger.info, Node: Simple balance report, Next: Filtered balance report, Prev: balance features, Up: balance++11.5.2 Simple balance report+----------------------------++With no arguments, `balance' shows a list of all accounts and their+change of balance - ie, the sum of posting amounts, both inflows and+outflows - during the entire period of the journal. For real-world+accounts, this should also match their end balance at the end of the+journal period (more on this below).++ Accounts are sorted by declaration order if any, and then+alphabetically by account name. For instance, using+examples/sample.journal:+++$ hledger bal+ $1 assets:bank:saving+ $-2 assets:cash+ $1 expenses:food+ $1 expenses:supplies+ $-1 income:gifts+ $-1 income:salary+ $1 liabilities:debts+--------------------+ 0++ Accounts with a zero balance (and no non-zero subaccounts, in tree+mode - see below) are hidden by default. Use `-E/--empty' to show them+(revealing `assets:bank:checking' here):+++$ hledger -f examples/sample.journal bal -E+ 0 assets:bank:checking+ $1 assets:bank:saving+ $-2 assets:cash+ $1 expenses:food+ $1 expenses:supplies+ $-1 income:gifts+ $-1 income:salary+ $1 liabilities:debts+--------------------+ 0++ The total of the amounts displayed is shown as the last line, unless+`-N'/`--no-total' is used.+++File: hledger.info, Node: Filtered balance report, Next: List or tree mode, Prev: Simple balance report, Up: balance++11.5.3 Filtered balance report+------------------------------++You can show fewer accounts, a different time period, totals from+cleared transactions only, etc. by using query arguments or options to+limit the postings being matched. Eg:+++$ hledger bal --cleared assets date:200806+ $-2 assets:cash+--------------------+ $-2+++File: hledger.info, Node: List or tree mode, Next: Depth limiting, Prev: Filtered balance report, Up: balance++11.5.4 List or tree mode+------------------------++By default, or with `-l/--flat', accounts are shown as a flat list with+their full names visible, as in the examples above.++ With `-t/--tree', the account hierarchy is shown, with subaccounts'+"leaf" names indented below their parent:+++$ hledger balance+ $-1 assets+ $1 bank:saving+ $-2 cash+ $2 expenses+ $1 food+ $1 supplies+ $-2 income+ $-1 gifts+ $-1 salary+ $1 liabilities:debts+--------------------+ 0++ Notes:++ * "Boring" accounts are combined with their subaccount for more+ compact output, unless `--no-elide' is used. Boring accounts have+ no balance of their own and just one subaccount (eg `assets:bank'+ and `liabilities' above).++ * All balances shown are "inclusive", ie including the balances from+ all subaccounts. Note this means some repetition in the output,+ which requires explanation when sharing reports with+ non-plaintextaccounting-users. A tree mode report's final total is+ the sum of the top-level balances shown, not of all the balances+ shown.++ * Each group of sibling accounts (ie, under a common parent) is+ sorted separately.++++File: hledger.info, Node: Depth limiting, Next: Multi-period balance report, Prev: List or tree mode, Up: balance++11.5.5 Depth limiting+---------------------++With a `depth:N' query, or `--depth N' option, or just `-N', balance+reports will show accounts only to the specified depth, hiding the+deeper subaccounts. Account balances at the depth limit always include+the balances from any hidden subaccounts (even in list mode). This can+be useful for getting an overview. Eg, limiting to depth 1:+++$ hledger balance -N -1+ $-1 assets+ $2 expenses+ $-2 income+ $1 liabilities++ You can also hide top-level account name parts, using `--drop N'.+This can be useful for hiding repetitive top-level account names:+++$ hledger bal expenses --drop 1+ $1 food+ $1 supplies+--------------------+ $2+++File: hledger.info, Node: Multi-period balance report, Next: Sorting by amount, Prev: Depth limiting, Up: balance++11.5.6 Multi-period balance report+----------------------------------++With a report interval (set by the `-D/--daily', `-W/--weekly',+`-M/--monthly', `-Q/--quarterly', `-Y/--yearly', or `-p/--period'+flag), `balance' shows a tabular report, with columns representing+successive time periods (and a title):+++$ hledger balance --quarterly income expenses -E+Balance changes in 2008:++ || 2008q1 2008q2 2008q3 2008q4+===================++=================================+ expenses:food || 0 $1 0 0+ expenses:supplies || 0 $1 0 0+ income:gifts || 0 $-1 0 0+ income:salary || $-1 0 0 0+-------------------++---------------------------------+ || $-1 $1 0 0++ Notes:++ * The report's start/end dates will be expanded, if necessary, to+ fully encompass the displayed subperiods (so that the first and+ last subperiods have the same duration as the others).++ * Leading and trailing periods (columns) containing all zeroes are+ not shown, unless `-E/--empty' is used.++ * Accounts (rows) containing all zeroes are not shown, unless+ `-E/--empty' is used.++ * Amounts with many commodities are shown in abbreviated form, unless+ `--no-elide' is used. _(experimental)_++ * Average and/or total columns can be added with the `-A/--average'+ and `-T/--row-total' flags.++ * The `--transpose' flag can be used to exchange rows and columns.++ * The `--pivot FIELD' option causes a different transaction field to+ be used as "account name". See PIVOTING.++ Multi-period reports with many periods can be too wide for easy+viewing in the terminal. Here are some ways to handle that:++ * Hide the totals row with `-N/--no-total'++ * Convert to a single currency with `-V'++ * Maximize the terminal window++ * Reduce the terminal's font size++ * View with a pager like less, eg: `hledger bal -D --color=yes |+ less -RS'++ * Output as CSV and use a CSV viewer like visidata (`hledger bal -D+ -O csv | vd -f csv'), Emacs' csv-mode (`M-x csv-mode, C-c C-a'),+ or a spreadsheet (`hledger bal -D -o a.csv && open a.csv')++ * Output as HTML and view with a browser: `hledger bal -D -o a.html+ && open a.html'+++File: hledger.info, Node: Sorting by amount, Next: Percentages, Prev: Multi-period balance report, Up: balance++11.5.7 Sorting by amount+------------------------++With `-S/--sort-amount', accounts with the largest (most positive)+balances are shown first. Eg: `hledger bal expenses -MAS' shows your+biggest averaged monthly expenses first.++ Revenues and liability balances are typically negative, however, so+`-S' shows these in reverse order. To work around this, you can add+`--invert' to flip the signs. (Or, use one of the higher-level reports,+which flip the sign automatically. Eg: `hledger incomestatement -MAS').+++File: hledger.info, Node: Percentages, Next: Balance change end balance, Prev: Sorting by amount, Up: balance++11.5.8 Percentages+------------------++With `-%/--percent', balance reports show each account's value+expressed as a percentage of the (column) total:+++$ hledger bal expenses -Q -%+Balance changes in 2008:++ || 2008Q1 2008Q2 2008Q3 2008Q4+===================++=================================+ expenses:food || 0 50.0 % 0 0+ expenses:supplies || 0 50.0 % 0 0+-------------------++---------------------------------+ || 0 100.0 % 0 0++ Note it is not useful to calculate percentages if the amounts in a+column have mixed signs. In this case, make a separate report for each+sign, eg:+++$ hledger bal -% amt:`>0`+$ hledger bal -% amt:`<0`++ Similarly, if the amounts in a column have mixed commodities, convert+them to one commodity with `-B', `-V', `-X' or `--value', or make a+separate report for each commodity:+++$ hledger bal -% cur:\\$+$ hledger bal -% cur:€+++File: hledger.info, Node: Balance change end balance, Next: Balance report types, Prev: Percentages, Up: balance++11.5.9 Balance change, end balance+----------------------------------++It's important to be clear on the meaning of the numbers shown in+balance reports. Here is some terminology we use:++ A *_balance change_* is the net amount added to, or removed from, an+account during some period.++ An *_end balance_* is the amount accumulated in an account as of+some date (and some time, but hledger doesn't store that; assume end of+day in your timezone). It is the sum of previous balance changes.++ We call it a *_historical end balance_* if it includes all balance+changes since the account was created. For a real world account, this+means it will match the "historical record", eg the balances reported+in your bank statements or bank web UI. (If they are correct!)++ In general, balance changes are what you want to see when reviewing+revenues and expenses, and historical end balances are what you want to+see when reviewing or reconciling asset, liability and equity accounts.++ `balance' shows balance changes by default. To see accurate+historical end balances:++ 1. Initialise account starting balances with an "opening balances"+ transaction (a transfer from equity to the account), unless the+ journal covers the account's full lifetime.++ 2. Include all of of the account's prior postings in the report, by+ not specifying a report start date, or by using the+ `-H/--historical' flag. (`-H' causes report start date to be+ ignored when summing postings.)++++File: hledger.info, Node: Balance report types, Next: Useful balance reports, Prev: Balance change end balance, Up: balance++11.5.10 Balance report types+----------------------------++For more flexible reporting, there are three important option groups:++ `hledger balance [CALCULATIONTYPE] [ACCUMULATIONTYPE]+[VALUATIONTYPE] ...'++ The first two are the most important: calculation type selects the+basic calculation to perform for each table cell, while accumulation+type says which postings should be included in each cell's calculation.+Typically one or both of these are selected by default, so you don't+need to write them explicitly. A valuation type can be added if you+want to convert the basic report to value or cost.++ *Calculation type:*+The basic calculation to perform for each table cell. It is one of:++ * `--sum' : sum the posting amounts (*default*)++ * `--budget' : like -sum but also show a goal amount++ * `--valuechange' : show the change in period-end historical balance+ values++ *Accumulation type:*+Which postings should be included in each cell's calculation. It is one+of:++ * `--change' : postings from column start to column end, ie within+ the cell's period. Typically used to see revenues/expenses.+ (*default for balance, incomestatement*)++ * `--cumulative' : postings from report start to column end, eg to+ show changes accumulated since the report's start date. Rarely+ used.++ * `--historical/-H' : postings from journal start to column end, ie+ all postings from account creation to the end of the cell's period.+ Typically used to see historical end balances of+ assets/liabilities/equity. (*default for balancesheet,+ balancesheetequity, cashflow*)+++ *Valuation type:*+Which kind of valuation, valuation date(s) and optionally a target+valuation commodity to use. It is one of:++ * no valuation, show amounts in their original commodities+ (*default*)++ * `--value=cost[,COMM]' : no valuation, show amounts converted to+ cost++ * `--value=then[,COMM]' : show value at transaction dates++ * `--value=end[,COMM]' : show value at period end date(s) (*default+ with `--valuechange'*)++ * `--value=now[,COMM]' : show value at today's date++ * `--value=YYYY-MM-DD[,COMM]' : show value at another date++ or one of their aliases: `--cost/-B', `--market/-V' or+`--exchange/-X'.++ Most combinations of these options should produce reasonable reports,+but if you find any that seem wrong or misleading, let us know. The+following restrictions are applied:++ * `--valuechange' implies `--value=end'++ * `--valuechange' makes `--change' the default when used with the+ `balancesheet'/`balancesheetequity' commands++ * `--cumulative' or `--historical' disables `--row-total/-T'++ For reference, here is what the combinations of accumulation and+valuation show:++Valuation:no valuation `--value= then' `--value= end' `--value=+>Accumulation: YYYY-MM-DD+v /now'+------------------------------------------------------------------------------ +`--change'change in period sum of period-end DATE-value of+ posting-date value of change change in+ market values in in period period+ period +`--cumulative'change from sum of period-end DATE-value of+ report start to posting-date value of change change from+ period end market values from report report start+ from report start to period to period end+ start to period end + end +`--historicalchange from sum of period-end DATE-value of+/-H' journal start to posting-date value of change change from+ period end market values from journal journal start+ (historical end from journal start to period to period end+ balance) start to period end + end +++File: hledger.info, Node: Useful balance reports, Next: Budget report, Prev: Balance report types, Up: balance++11.5.11 Useful balance reports+------------------------------++Some frequently used `balance' options/reports are:++ * `bal -M revenues expenses'+ Show revenues/expenses in each month. Also available as the+ `incomestatement' command.++ * `bal -M -H assets liabilities'+ Show historical asset/liability balances at each month end. Also+ available as the `balancesheet' command.++ * `bal -M -H assets liabilities equity'+ Show historical asset/liability/equity balances at each month end.+ Also available as the `balancesheetequity' command.++ * `bal -M assets not:receivable'+ Show changes to liquid assets in each month. Also available as the+ `cashflow' command.+++ Also:++ * `bal -M expenses -2 -SA'+ Show monthly expenses summarised to depth 2 and sorted by average+ amount.++ * `bal -M --budget expenses'+ Show monthly expenses and budget goals.++ * `bal -M --valuechange investments'+ Show monthly change in market value of investment assets.++ * `bal investments --valuechange -D date:lastweek amt:'>1000' -STA+ [--invert]'+ Show top gainers [or losers] last week++++File: hledger.info, Node: Budget report, Next: Customising single-period balance reports, Prev: Useful balance reports, Up: balance++11.5.12 Budget report+---------------------++The `--budget' report type activates extra columns showing any budget+goals for each account and period. The budget goals are defined by+periodic transactions. This is very useful for comparing planned and+actual income, expenses, time usage, etc.++ For example, you can take average monthly expenses in the common+expense categories to construct a minimal monthly budget:+++;; Budget+~ monthly+ income $2000+ expenses:food $400+ expenses:bus $50+ expenses:movies $30+ assets:bank:checking++;; Two months worth of expenses+2017-11-01+ income $1950+ expenses:food $396+ expenses:bus $49+ expenses:movies $30+ expenses:supplies $20+ assets:bank:checking++2017-12-01+ income $2100+ expenses:food $412+ expenses:bus $53+ expenses:gifts $100+ assets:bank:checking++ You can now see a monthly budget report:+++$ hledger balance -M --budget+Budget performance in 2017/11/01-2017/12/31:++ || Nov Dec+======================++====================================================+ assets || $-2445 [ 99% of $-2480] $-2665 [ 107% of $-2480]+ assets:bank || $-2445 [ 99% of $-2480] $-2665 [ 107% of $-2480]+ assets:bank:checking || $-2445 [ 99% of $-2480] $-2665 [ 107% of $-2480]+ expenses || $495 [ 103% of $480] $565 [ 118% of $480]+ expenses:bus || $49 [ 98% of $50] $53 [ 106% of $50]+ expenses:food || $396 [ 99% of $400] $412 [ 103% of $400]+ expenses:movies || $30 [ 100% of $30] 0 [ 0% of $30]+ income || $1950 [ 98% of $2000] $2100 [ 105% of $2000]+----------------------++----------------------------------------------------+ || 0 [ 0] 0 [ 0]++ This is different from a normal balance report in several ways:++ * Only accounts with budget goals during the report period are+ shown, by default.++ * In each column, in square brackets after the actual amount, budget+ goal amounts are shown, and the actual/goal percentage. (Note:+ budget goals should be in the same commodity as the actual amount.)++ * All parent accounts are always shown, even in list mode. Eg assets,+ assets:bank, and expenses above.++ * Amounts always include all subaccounts, budgeted or unbudgeted,+ even in list mode.+++ This means that the numbers displayed will not always add up! Eg+above, the `expenses' actual amount includes the gifts and supplies+transactions, but the `expenses:gifts' and `expenses:supplies' accounts+are not shown, as they have no budget amounts declared.++ This can be confusing. When you need to make things clearer, use the+`-E/--empty' flag, which will reveal all accounts including unbudgeted+ones, giving the full picture. Eg:+++$ hledger balance -M --budget --empty+Budget performance in 2017/11/01-2017/12/31:++ || Nov Dec+======================++====================================================+ assets || $-2445 [ 99% of $-2480] $-2665 [ 107% of $-2480]+ assets:bank || $-2445 [ 99% of $-2480] $-2665 [ 107% of $-2480]+ assets:bank:checking || $-2445 [ 99% of $-2480] $-2665 [ 107% of $-2480]+ expenses || $495 [ 103% of $480] $565 [ 118% of $480]+ expenses:bus || $49 [ 98% of $50] $53 [ 106% of $50]+ expenses:food || $396 [ 99% of $400] $412 [ 103% of $400]+ expenses:gifts || 0 $100+ expenses:movies || $30 [ 100% of $30] 0 [ 0% of $30]+ expenses:supplies || $20 0+ income || $1950 [ 98% of $2000] $2100 [ 105% of $2000]+----------------------++----------------------------------------------------+ || 0 [ 0] 0 [ 0]++ You can roll over unspent budgets to next period with `--cumulative':+++$ hledger balance -M --budget --cumulative+Budget performance in 2017/11/01-2017/12/31:++ || Nov Dec+======================++====================================================+ assets || $-2445 [ 99% of $-2480] $-5110 [ 103% of $-4960]+ assets:bank || $-2445 [ 99% of $-2480] $-5110 [ 103% of $-4960]+ assets:bank:checking || $-2445 [ 99% of $-2480] $-5110 [ 103% of $-4960]+ expenses || $495 [ 103% of $480] $1060 [ 110% of $960]+ expenses:bus || $49 [ 98% of $50] $102 [ 102% of $100]+ expenses:food || $396 [ 99% of $400] $808 [ 101% of $800]+ expenses:movies || $30 [ 100% of $30] $30 [ 50% of $60]+ income || $1950 [ 98% of $2000] $4050 [ 101% of $4000]+----------------------++----------------------------------------------------+ || 0 [ 0] 0 [ 0]++ For more examples and notes, see Budgeting.++* Menu:++* Budget report start date::+* Nested budgets::+++File: hledger.info, Node: Budget report start date, Next: Nested budgets, Up: Budget report++11.5.12.1 Budget report start date+..................................++This might be a bug, but for now: when making budget reports, it's a+good idea to explicitly set the report's start date to the first day of+a reporting period, because a periodic rule like `~ monthly' generates+its transactions on the 1st of each month, and if your journal has no+regular transactions on the 1st, the default report start date could+exclude that budget goal, which can be a little surprising. Eg here the+default report period is just the day of 2020-01-15:+++~ monthly in 2020+ (expenses:food) $500++2020-01-15+ expenses:food $400+ assets:checking+++$ hledger bal expenses --budget+Budget performance in 2020-01-15:++ || 2020-01-15+==============++============+ <unbudgeted> || $400+--------------++------------+ || $400++ To avoid this, specify the budget report's period, or at least the+start date, with `-b'/`-e'/`-p'/`date:', to ensure it includes the+budget goal transactions (periodic transactions) that you want. Eg,+adding `-b 2020/1/1' to the above:+++$ hledger bal expenses --budget -b 2020/1/1+Budget performance in 2020-01-01..2020-01-15:++ || 2020-01-01..2020-01-15+===============++========================+ expenses:food || $400 [80% of $500]+---------------++------------------------+ || $400 [80% of $500]+++File: hledger.info, Node: Nested budgets, Prev: Budget report start date, Up: Budget report++11.5.12.2 Nested budgets+........................++You can add budgets to any account in your account hierarchy. If you+have budgets on both parent account and some of its children, then+budget(s) of the child account(s) would be added to the budget of their+parent, much like account balances behave.++ In the most simple case this means that once you add a budget to any+account, all its parents would have budget as well.++ To illustrate this, consider the following budget:+++~ monthly from 2019/01+ expenses:personal $1,000.00+ expenses:personal:electronics $100.00+ liabilities++ With this, monthly budget for electronics is defined to be $100 and+budget for personal expenses is an additional $1000, which implicitly+means that budget for both `expenses:personal' and `expenses' is $1100.++ Transactions in `expenses:personal:electronics' will be counted both+towards its $100 budget and $1100 of `expenses:personal' , and+transactions in any other subaccount of `expenses:personal' would be+counted towards only towards the budget of `expenses:personal'.++ For example, let's consider these transactions:+++~ monthly from 2019/01+ expenses:personal $1,000.00+ expenses:personal:electronics $100.00+ liabilities++2019/01/01 Google home hub+ expenses:personal:electronics $90.00+ liabilities $-90.00++2019/01/02 Phone screen protector+ expenses:personal:electronics:upgrades $10.00+ liabilities++2019/01/02 Weekly train ticket+ expenses:personal:train tickets $153.00+ liabilities++2019/01/03 Flowers+ expenses:personal $30.00+ liabilities++ As you can see, we have transactions in+`expenses:personal:electronics:upgrades' and `expenses:personal:train+tickets', and since both of these accounts are without explicitly+defined budget, these transactions would be counted towards budgets of+`expenses:personal:electronics' and `expenses:personal' accordingly:+++$ hledger balance --budget -M+Budget performance in 2019/01:++ || Jan+===============================++===============================+ expenses || $283.00 [ 26% of $1100.00]+ expenses:personal || $283.00 [ 26% of $1100.00]+ expenses:personal:electronics || $100.00 [ 100% of $100.00]+ liabilities || $-283.00 [ 26% of $-1100.00]+-------------------------------++-------------------------------+ || 0 [ 0]++ And with `--empty', we can get a better picture of budget allocation+and consumption:+++$ hledger balance --budget -M --empty+Budget performance in 2019/01:++ || Jan+========================================++===============================+ expenses || $283.00 [ 26% of $1100.00]+ expenses:personal || $283.00 [ 26% of $1100.00]+ expenses:personal:electronics || $100.00 [ 100% of $100.00]+ expenses:personal:electronics:upgrades || $10.00+ expenses:personal:train tickets || $153.00+ liabilities || $-283.00 [ 26% of $-1100.00]+----------------------------------------++-------------------------------+ || 0 [ 0]+++File: hledger.info, Node: Customising single-period balance reports, Prev: Budget report, Up: balance++11.5.13 Customising single-period balance reports+-------------------------------------------------++For single-period balance reports displayed in the terminal (only), you+can use `--format FMT' to customise the format and content of each+line. Eg:+++$ hledger balance --format "%20(account) %12(total)"+ assets $-1+ bank:saving $1+ cash $-2+ expenses $2+ food $1+ supplies $1+ income $-2+ gifts $-1+ salary $-1+ liabilities:debts $1+---------------------------------+ 0++ The FMT format string (plus a newline) specifies the formatting+applied to each account/balance pair. It may contain any suitable text,+with data fields interpolated like so:++ `%[MIN][.MAX](FIELDNAME)'++ * MIN pads with spaces to at least this width (optional)++ * MAX truncates at this width (optional)++ * FIELDNAME must be enclosed in parentheses, and can be one of:++ * `depth_spacer' - a number of spaces equal to the account's+ depth, or if MIN is specified, MIN * depth spaces.++ * `account' - the account's name++ * `total' - the account's balance/posted total, right justified+++ Also, FMT can begin with an optional prefix to control how+multi-commodity amounts are rendered:++ * `%_' - render on multiple lines, bottom-aligned (the default)++ * `%^' - render on multiple lines, top-aligned++ * `%,' - render on one line, comma-separated++ There are some quirks. Eg in one-line mode, `%(depth_spacer)' has no+effect, instead `%(account)' has indentation built in. Experimentation+may be needed to get pleasing results.++ Some example formats:++ * `%(total)' - the account's total++ * `%-20.20(account)' - the account's name, left justified, padded to+ 20 characters and clipped at 20 characters++ * `%,%-50(account) %25(total)' - account name padded to 50+ characters, total padded to 20 characters, with multiple+ commodities rendered on one line++ * `%20(total) %2(depth_spacer)%-(account)' - the default format for+ the single-column balance report+++File: hledger.info, Node: balancesheet, Next: balancesheetequity, Prev: balance, Up: COMMANDS++11.6 balancesheet+=================++balancesheet, bs+This command displays a balance sheet, showing historical ending+balances of asset and liability accounts. (To see equity as well, use+the balancesheetequity command.) Amounts are shown with normal positive+sign, as in conventional financial statements.++ The asset and liability accounts shown are those accounts declared+with the `Asset' or `Cash' or `Liability' type, or otherwise all+accounts under a top-level `asset' or `liability' account (case+insensitive, plurals allowed).++ Example:+++$ hledger balancesheet+Balance Sheet++Assets:+ $-1 assets+ $1 bank:saving+ $-2 cash+--------------------+ $-1++Liabilities:+ $1 liabilities:debts+--------------------+ $1++Total:+--------------------+ 0++ This command is a higher-level variant of the `balance' command, and+supports many of that command's features, such as multi-period reports.+It is similar to `hledger balance -H assets liabilities', but with+smarter account detection, and liabilities displayed with their sign+flipped.++ This command also supports the output destination and output format+options The output formats supported are `txt', `csv', `html', and+(experimental) `json'.+++File: hledger.info, Node: balancesheetequity, Next: cashflow, Prev: balancesheet, Up: COMMANDS++11.7 balancesheetequity+=======================++balancesheetequity, bse+This command displays a balance sheet, showing historical ending+balances of asset, liability and equity accounts. Amounts are shown with+normal positive sign, as in conventional financial statements.++ The asset, liability and equity accounts shown are those accounts+declared with the `Asset', `Cash', `Liability' or `Equity' type, or+otherwise all accounts under a top-level `asset', `liability' or+`equity' account (case insensitive, plurals allowed).++ Example:+++$ hledger balancesheetequity+Balance Sheet With Equity++Assets:+ $-2 assets+ $1 bank:saving+ $-3 cash+--------------------+ $-2++Liabilities:+ $1 liabilities:debts+--------------------+ $1++Equity:+ $1 equity:owner+--------------------+ $1++Total:+--------------------+ 0++ This command is a higher-level variant of the `balance' command, and+supports many of that command's features, such as multi-period reports.+It is similar to `hledger balance -H assets liabilities equity', but+with smarter account detection, and liabilities/equity displayed with+their sign flipped.++ This command also supports the output destination and output format+options The output formats supported are `txt', `csv', `html', and+(experimental) `json'.+++File: hledger.info, Node: cashflow, Next: check, Prev: balancesheetequity, Up: COMMANDS++11.8 cashflow+=============++cashflow, cf+This command displays a cashflow statement, showing the inflows and+outflows affecting "cash" (ie, liquid) assets. Amounts are shown with+normal positive sign, as in conventional financial statements.++ The "cash" accounts shown are those accounts declared with the+`Cash' type, or otherwise all accounts under a top-level `asset'+account (case insensitive, plural allowed) which do not have `fixed',+`investment', `receivable' or `A/R' in their name.++ Example:+++$ hledger cashflow+Cashflow Statement++Cash flows:+ $-1 assets+ $1 bank:saving+ $-2 cash+--------------------+ $-1++Total:+--------------------+ $-1++ This command is a higher-level variant of the `balance' command, and+supports many of that command's features, such as multi-period reports.+It is similar to `hledger balance assets not:fixed not:investment+not:receivable', but with smarter account detection.++ This command also supports the output destination and output format+options The output formats supported are `txt', `csv', `html', and+(experimental) `json'.+++File: hledger.info, Node: check, Next: close, Prev: cashflow, Up: COMMANDS++11.9 check+==========++check+Check for various kinds of errors in your data.++ hledger provides a number of built-in error checks to help prevent+problems in your data. Some of these are run automatically; or, you can+use this `check' command to run them on demand, with no output and a+zero exit code if all is well. Specify their names (or a prefix) as+argument(s).++ Some examples:+++hledger check # basic checks+hledger check -s # basic + strict checks+hledger check ordereddates payees # basic + two other checks++ Here are the checks currently available:++* Menu:++* Basic checks::+* Strict checks::+* Other checks::+* Custom checks::+++File: hledger.info, Node: Basic checks, Next: Strict checks, Up: check++11.9.1 Basic checks+-------------------++These checks are always run automatically, by (almost) all hledger+commands, including `check':++ * *parseable* - data files are well-formed and can be successfully+ parsed++ * *autobalanced* - all transactions are balanced, inferring missing+ amounts where necessary, and possibly converting commodities using+ transaction prices or automatically-inferred transaction prices++ * *assertions* - all balance assertions in the journal are passing.+ (This check can be disabled with `-I'/`--ignore-assertions'.)++++File: hledger.info, Node: Strict checks, Next: Other checks, Prev: Basic checks, Up: check++11.9.2 Strict checks+--------------------++These additional checks are run when the `-s'/`--strict' (strict mode)+flag is used. Or, they can be run by giving their names as arguments to+`check':++ * *accounts* - all account names used by transactions have been+ declared++ * *commodities* - all commodity symbols used have been declared++++File: hledger.info, Node: Other checks, Next: Custom checks, Prev: Strict checks, Up: check++11.9.3 Other checks+-------------------++These checks can be run only by giving their names as arguments to+`check'. They are more specialised and not desirable for everyone,+therefore optional:++ * *ordereddates* - transactions are ordered by date in each file++ * *payees* - all payees used by transactions have been declared++ * *uniqueleafnames* - all account leaf names are unique++++File: hledger.info, Node: Custom checks, Prev: Other checks, Up: check++11.9.4 Custom checks+--------------------++A few more checks are are available as separate add-on commands, in+https://github.com/simonmichael/hledger/tree/master/bin:++ * *hledger-check-tagfiles* - all tag values containing / (a forward+ slash) exist as file paths++ * *hledger-check-fancyassertions* - more complex balance assertions+ are passing+++ You could make similar scripts to perform your own custom checks.+See: Cookbook -> Scripting.+++File: hledger.info, Node: close, Next: codes, Prev: check, Up: COMMANDS++11.10 close+===========++close, equity+Prints a "closing balances" transaction and an "opening balances"+transaction that bring account balances to and from zero, respectively.+These can be added to your journal file(s), eg to bring asset/liability+balances forward into a new journal file, or to close out+revenues/expenses to retained earnings at the end of a period.++ You can print just one of these transactions by using the `--close'+or `--open' flag. You can customise their descriptions with the+`--close-desc' and `--open-desc' options.++ One amountless posting to "equity:opening/closing balances" is added+to balance the transactions, by default. You can customise this account+name with `--close-acct' and `--open-acct'; if you specify only one of+these, it will be used for both.++ With `--x/--explicit', the equity posting's amount will be shown.+And if it involves multiple commodities, a posting for each commodity+will be shown, as with the print command.++ With `--interleaved', the equity postings are shown next to the+postings they balance, which makes troubleshooting easier.++ By default, transaction prices in the journal are ignored when+generating the closing/opening transactions. With `--show-costs', this+cost information is preserved (`balance -B' reports will be unchanged+after the transition). Separate postings are generated for each cost in+each commodity. Note this can generate very large journal entries, if+you have many foreign currency or investment transactions.++* Menu:++* close usage::+++File: hledger.info, Node: close usage, Up: close++11.10.1 close usage+-------------------++If you split your journal files by time (eg yearly), you will typically+run this command at the end of the year, and save the closing+transaction as last entry of the old file, and the opening transaction+as the first entry of the new file. This makes the files self contained,+so that correct balances are reported no matter which of them are+loaded. Ie, if you load just one file, the balances are initialised+correctly; or if you load several files, the redundant closing/opening+transactions cancel each other out. (They will show up in print or+register reports; you can exclude them with a query like+`not:desc:'(opening|closing) balances''.)++ If you're running a business, you might also use this command to+"close the books" at the end of an accounting period, transferring+income statement account balances to retained earnings. (You may want+to change the equity account name to something like "equity:retained+earnings".)++ By default, the closing transaction is dated yesterday, the balances+are calculated as of end of yesterday, and the opening transaction is+dated today. To close on some other date, use: `hledger close -e+OPENINGDATE'. Eg, to close/open on the 2018/2019 boundary, use `-e+2019'. You can also use -p or `date:PERIOD' (any starting date is+ignored).++ Both transactions will include balance assertions for the+closed/reopened accounts. You probably shouldn't use status or realness+filters (like -C or -R or `status:') with this command, or the+generated balance assertions will depend on these flags. Likewise, if+you run this command with -auto, the balance assertions will probably+always require -auto.++ Examples:++ Carrying asset/liability balances into a new file for 2019:+++$ hledger close -f 2018.journal -e 2019 assets liabilities --open+ # (copy/paste the output to the start of your 2019 journal file)+$ hledger close -f 2018.journal -e 2019 assets liabilities --close+ # (copy/paste the output to the end of your 2018 journal file)++ Now:+++$ hledger bs -f 2019.journal # one file - balances are correct+$ hledger bs -f 2018.journal -f 2019.journal # two files - balances still correct+$ hledger bs -f 2018.journal not:desc:closing # to see year-end balances, must exclude closing txn++ Transactions spanning the closing date can complicate matters,+breaking balance assertions:+++2018/12/30 a purchase made in 2018, clearing the following year+ expenses:food 5+ assets:bank:checking -5 ; [2019/1/2]++ Here's one way to resolve that:+++; in 2018.journal:+2018/12/30 a purchase made in 2018, clearing the following year+ expenses:food 5+ liabilities:pending++; in 2019.journal:+2019/1/2 clearance of last year's pending transactions+ liabilities:pending 5 = 0+ assets:checking+++File: hledger.info, Node: codes, Next: commodities, Prev: close, Up: COMMANDS++11.11 codes+===========++codes+List the codes seen in transactions, in the order parsed.++ This command prints the value of each transaction's code field, in+the order transactions were parsed. The transaction code is an optional+value written in parentheses between the date and description, often+used to store a cheque number, order number or similar.++ Transactions aren't required to have a code, and missing or empty+codes will not be shown by default. With the `-E'/`--empty' flag, they+will be printed as blank lines.++ You can add a query to select a subset of transactions.++ Examples:+++1/1 (123)+ (a) 1++1/1 ()+ (a) 1++1/1+ (a) 1++1/1 (126)+ (a) 1+++$ hledger codes+123+124+126+++$ hledger codes -E+123+124+++126+++File: hledger.info, Node: commodities, Next: descriptions, Prev: codes, Up: COMMANDS++11.12 commodities+=================++commodities+List all commodity/currency symbols used or declared in the journal.+++File: hledger.info, Node: descriptions, Next: diff, Prev: commodities, Up: COMMANDS++11.13 descriptions+==================++descriptions+List the unique descriptions that appear in transactions.++ This command lists the unique descriptions that appear in+transactions, in alphabetic order. You can add a query to select a+subset of transactions.++ Example:+++$ hledger descriptions+Store Name+Gas Station | Petrol+Person A+++File: hledger.info, Node: diff, Next: files, Prev: descriptions, Up: COMMANDS++11.14 diff+==========++diff+Compares a particular account's transactions in two input files. It+shows any transactions to this account which are in one file but not in+the other.++ More precisely, for each posting affecting this account in either+file, it looks for a corresponding posting in the other file which+posts the same amount to the same account (ignoring date, description,+etc.) Since postings not transactions are compared, this also works+when multiple bank transactions have been combined into a single+journal entry.++ This is useful eg if you have downloaded an account's transactions+from your bank (eg as CSV data). When hledger and your bank disagree+about the account balance, you can compare the bank data with your+journal to find out the cause.++ Examples:+++$ hledger diff -f $LEDGER_FILE -f bank.csv assets:bank:giro+These transactions are in the first file only:++2014/01/01 Opening Balances+ assets:bank:giro EUR ...+ ...+ equity:opening balances EUR -...++These transactions are in the second file only:+++File: hledger.info, Node: files, Next: help, Prev: diff, Up: COMMANDS++11.15 files+===========++files+List all files included in the journal. With a REGEX argument, only file+names matching the regular expression (case sensitive) are shown.+++File: hledger.info, Node: help, Next: import, Prev: files, Up: COMMANDS++11.16 help+==========++help+Show the hledger user manual in one of several formats, optionally+positioned at a given TOPIC (if possible). TOPIC is any heading, or+heading prefix, in the manual. Some examples: commands, print, 'auto+postings', periodic.++ This command shows the user manual built in to this hledger version.+It can be useful if the correct version of the hledger manual, or the+usual viewing tools, are not installed on your system.++ By default it uses the best viewer it can find in $PATH, in this+order: `info', `man', $PAGER (unless a topic is specified), `less', or+stdout. When run non-interactively, it always uses stdout. Or you can+select a particular viewer with the `-i' (info), `-m' (man), or `-p'+(pager) flags.+++File: hledger.info, Node: import, Next: incomestatement, Prev: help, Up: COMMANDS++11.17 import+============++import+Read new transactions added to each FILE since last run, and add them to+the main journal file. Or with -dry-run, just print the transactions+that would be added. Or with -catchup, just mark all of the FILEs'+transactions as imported, without actually importing any.++ Unlike other hledger commands, with `import' the journal file is an+output file, and will be modified, though only by appending (existing+data will not be changed). The input files are specified as arguments,+so to import one or more CSV files to your main journal, you will run+`hledger import bank.csv' or perhaps `hledger import *.csv'.++ Note you can import from any file format, though CSV files are the+most common import source, and these docs focus on that case.++* Menu:++* Deduplication::+* Import testing::+* Importing balance assignments::+* Commodity display styles::+++File: hledger.info, Node: Deduplication, Next: Import testing, Up: import++11.17.1 Deduplication+---------------------++As a convenience `import' does _deduplication_ while reading+transactions. This does not mean "ignore transactions that look the+same", but rather "ignore transactions that have been seen before". This+is intended for when you are periodically importing foreign data which+may contain already-imported transactions. So eg, if every day you+download bank CSV files containing redundant data, you can safely run+`hledger import bank.csv' and only new transactions will be imported.+(`import' is idempotent.)++ Since the items being read (CSV records, eg) often do not come with+unique identifiers, hledger detects new transactions by date, assuming+that:++ 1. new items always have the newest dates++ 2. item dates do not change across reads++ 3. and items with the same date remain in the same relative order+ across reads.++ These are often true of CSV files representing transactions, or true+enough so that it works pretty well in practice. 1 is important, but+violations of 2 and 3 amongst the old transactions won't matter (and if+you import often, the new transactions will be few, so less likely to be+the ones affected).++ hledger remembers the latest date processed in each input file by+saving a hidden ".latest" state file in the same directory. Eg when+reading `finance/bank.csv', it will look for and update the+`finance/.latest.bank.csv' state file. The format is simple: one or+more lines containing the same ISO-format date (YYYY-MM-DD), meaning "I+have processed transactions up to this date, and this many of them on+that date." Normally you won't see or manipulate these state files+yourself. But if needed, you can delete them to reset the state (making+all transactions "new"), or you can construct them to "catch up" to a+certain date.++ Note deduplication (and updating of state files) can also be done by+`print --new', but this is less often used.+++File: hledger.info, Node: Import testing, Next: Importing balance assignments, Prev: Deduplication, Up: import++11.17.2 Import testing+----------------------++With `--dry-run', the transactions that will be imported are printed to+the terminal, without updating your journal or state files. The output+is valid journal format, like the print command, so you can re-parse+it. Eg, to see any importable transactions which CSV rules have not+categorised:+++$ hledger import --dry bank.csv | hledger -f- -I print unknown++ or (live updating):+++$ ls bank.csv* | entr bash -c 'echo ====; hledger import --dry bank.csv | hledger -f- -I print unknown'+++File: hledger.info, Node: Importing balance assignments, Next: Commodity display styles, Prev: Import testing, Up: import++11.17.3 Importing balance assignments+-------------------------------------++Entries added by import will have their posting amounts made explicit+(like `hledger print -x'). This means that any balance assignments in+imported files must be evaluated; but, imported files don't get to see+the main file's account balances. As a result, importing entries with+balance assignments (eg from an institution that provides only balances+and not posting amounts) will probably generate incorrect posting+amounts. To avoid this problem, use print instead of import:+++$ hledger print IMPORTFILE [--new] >> $LEDGER_FILE++ (If you think import should leave amounts implicit like print does,+please test it and send a pull request.)+++File: hledger.info, Node: Commodity display styles, Prev: Importing balance assignments, Up: import++11.17.4 Commodity display styles+--------------------------------++Imported amounts will be formatted according to the canonical commodity+styles (declared or inferred) in the main journal file.+++File: hledger.info, Node: incomestatement, Next: notes, Prev: import, Up: COMMANDS++11.18 incomestatement+=====================++incomestatement, is+This command displays an income statement, showing revenues and expenses+during one or more periods. Amounts are shown with normal positive sign,+as in conventional financial statements.++ The revenue and expense accounts shown are those accounts declared+with the `Revenue' or `Expense' type, or otherwise all accounts under a+top-level `revenue' or `income' or `expense' account (case insensitive,+plurals allowed).++ Example:+++$ hledger incomestatement+Income Statement++Revenues:+ $-2 income+ $-1 gifts+ $-1 salary+--------------------+ $-2++Expenses:+ $2 expenses+ $1 food+ $1 supplies+--------------------+ $2++Total:+--------------------+ 0++ This command is a higher-level variant of the `balance' command, and+supports many of that command's features, such as multi-period reports.+It is similar to `hledger balance '(revenues|income)' expenses', but+with smarter account detection, and revenues/income displayed with+their sign flipped.++ This command also supports the output destination and output format+options The output formats supported are `txt', `csv', `html', and+(experimental) `json'.+++File: hledger.info, Node: notes, Next: payees, Prev: incomestatement, Up: COMMANDS++11.19 notes+===========++notes+List the unique notes that appear in transactions.++ This command lists the unique notes that appear in transactions, in+alphabetic order. You can add a query to select a subset of+transactions. The note is the part of the transaction description after+a | character (or if there is no |, the whole description).++ Example:+++$ hledger notes+Petrol+Snacks+++File: hledger.info, Node: payees, Next: prices, Prev: notes, Up: COMMANDS++11.20 payees+============++payees+List the unique payee/payer names that appear in transactions.++ This command lists unique payee/payer names which have been declared+with payee directives (-declared), used in transaction descriptions+(-used), or both (the default).++ The payee/payer is the part of the transaction description before a |+character (or if there is no |, the whole description).++ You can add query arguments to select a subset of transactions. This+implies -used.++ Example:+++$ hledger payees+Store Name+Gas Station+Person A+++File: hledger.info, Node: prices, Next: print, Prev: payees, Up: COMMANDS++11.21 prices+============++prices+Print market price directives from the journal. With -costs, also print+synthetic market prices based on transaction prices. With+-inverted-costs, also print inverse prices based on transaction prices.+Prices (and postings providing prices) can be filtered by a query. Price+amounts are always displayed with their full precision.+++File: hledger.info, Node: print, Next: print-unique, Prev: prices, Up: COMMANDS++11.22 print+===========++print+Show transaction journal entries, sorted by date.++ The print command displays full journal entries (transactions) from+the journal file, sorted by date (or with `--date2', by secondary date).++ Amounts are shown mostly normalised to commodity display style, eg+the placement of commodity symbols will be consistent. All of their+decimal places are shown, as in the original journal entry (with one+alteration: in some cases trailing zeroes are added.)++ Amounts are shown right-aligned within each transaction (but not+across all transactions).++ Directives and inter-transaction comments are not shown, currently.+This means the print command is somewhat lossy, and if you are using it+to reformat your journal you should take care to also copy over the+directives and file-level comments.++ Eg:+++$ hledger print+2008/01/01 income+ assets:bank:checking $1+ income:salary $-1++2008/06/01 gift+ assets:bank:checking $1+ income:gifts $-1++2008/06/02 save+ assets:bank:saving $1+ assets:bank:checking $-1++2008/06/03 * eat & shop+ expenses:food $1+ expenses:supplies $1+ assets:cash $-2++2008/12/31 * pay off+ liabilities:debts $1+ assets:bank:checking $-1++ print's output is usually a valid hledger journal, and you can+process it again with a second hledger command. This can be useful for+certain kinds of search, eg:+++# Show running total of food expenses paid from cash.+# -f- reads from stdin. -I/--ignore-assertions is sometimes needed.+$ hledger print assets:cash | hledger -f- -I reg expenses:food++ There are some situations where print's output can become+unparseable:++ * Valuation affects posting amounts but not balance assertion or+ balance assignment amounts, potentially causing those to fail.++ * Auto postings can generate postings with too many missing amounts.++ Normally, the journal entry's explicit or implicit amount style is+preserved. For example, when an amount is omitted in the journal, it+will not appear in the output. Similarly, when a transaction price is+implied but not written, it will not appear in the output. You can use+the `-x'/`--explicit' flag to make all amounts and transaction prices+explicit, which can be useful for troubleshooting or for making your+journal more readable and robust against data entry errors. `-x' is+also implied by using any of `-B',`-V',`-X',`--value'.++ Note, `-x'/`--explicit' will cause postings with a multi-commodity+amount (these can arise when a multi-commodity transaction has an+implicit amount) to be split into multiple single-commodity postings,+keeping the output parseable.++ With `-B'/`--cost', amounts with transaction prices are converted to+cost using that price. This can be used for troubleshooting.++ With `-m'/`--match' and a STR argument, print will show at most one+transaction: the one one whose description is most similar to STR, and+is most recent. STR should contain at least two characters. If there is+no similar-enough match, no transaction will be shown.++ With `--new', hledger prints only transactions it has not seen on a+previous run. This uses the same deduplication system as the `import'+command. (See import's docs for details.)++ This command also supports the output destination and output format+options The output formats supported are `txt', `csv', and+(experimental) `json' and `sql'.++ Here's an example of print's CSV output:+++$ hledger print -Ocsv+"txnidx","date","date2","status","code","description","comment","account","amount","commodity","credit","debit","posting-status","posting-comment"+"1","2008/01/01","","","","income","","assets:bank:checking","1","$","","1","",""+"1","2008/01/01","","","","income","","income:salary","-1","$","1","","",""+"2","2008/06/01","","","","gift","","assets:bank:checking","1","$","","1","",""+"2","2008/06/01","","","","gift","","income:gifts","-1","$","1","","",""+"3","2008/06/02","","","","save","","assets:bank:saving","1","$","","1","",""+"3","2008/06/02","","","","save","","assets:bank:checking","-1","$","1","","",""+"4","2008/06/03","","*","","eat & shop","","expenses:food","1","$","","1","",""+"4","2008/06/03","","*","","eat & shop","","expenses:supplies","1","$","","1","",""+"4","2008/06/03","","*","","eat & shop","","assets:cash","-2","$","2","","",""+"5","2008/12/31","","*","","pay off","","liabilities:debts","1","$","","1","",""+"5","2008/12/31","","*","","pay off","","assets:bank:checking","-1","$","1","","",""++ * There is one CSV record per posting, with the parent transaction's+ fields repeated.++ * The "txnidx" (transaction index) field shows which postings belong+ to the same transaction. (This number might change if transactions+ are reordered within the file, files are parsed/included in a+ different order, etc.)++ * The amount is separated into "commodity" (the symbol) and "amount"+ (numeric quantity) fields.++ * The numeric amount is repeated in either the "credit" or "debit"+ column, for convenience. (Those names are not accurate in the+ accounting sense; it just puts negative amounts under credit and+ zero or greater amounts under debit.)+++File: hledger.info, Node: print-unique, Next: register, Prev: print, Up: COMMANDS++11.23 print-unique+==================++print-unique+Print transactions which do not reuse an already-seen description.++ Example:+++$ cat unique.journal+1/1 test+ (acct:one) 1+2/2 test+ (acct:two) 2+$ LEDGER_FILE=unique.journal hledger print-unique+(-f option not supported)+2015/01/01 test+ (acct:one) 1+++File: hledger.info, Node: register, Next: register-match, Prev: print-unique, Up: COMMANDS++11.24 register+==============++register, reg+Show postings and their running total.++ The register command displays matched postings, across all accounts,+in date order, with their running total or running historical balance.+(See also the `aregister' command, which shows matched transactions in a+specific account.)++ register normally shows line per posting, but note that+multi-commodity amounts will occupy multiple lines (one line per+commodity).++ It is typically used with a query selecting a particular account, to+see that account's activity:+++$ hledger register checking+2008/01/01 income assets:bank:checking $1 $1+2008/06/01 gift assets:bank:checking $1 $2+2008/06/02 save assets:bank:checking $-1 $1+2008/12/31 pay off assets:bank:checking $-1 0++ With -date2, it shows and sorts by secondary date instead.++ The `--historical'/`-H' flag adds the balance from any undisplayed+prior postings to the running total. This is useful when you want to+see only recent activity, with a historically accurate running balance:+++$ hledger register checking -b 2008/6 --historical+2008/06/01 gift assets:bank:checking $1 $2+2008/06/02 save assets:bank:checking $-1 $1+2008/12/31 pay off assets:bank:checking $-1 0++ The `--depth' option limits the amount of sub-account detail+displayed.++ The `--average'/`-A' flag shows the running average posting amount+instead of the running total (so, the final number displayed is the+average for the whole report period). This flag implies `--empty' (see+below). It is affected by `--historical'. It works best when showing+just one account and one commodity.++ The `--related'/`-r' flag shows the _other_ postings in the+transactions of the postings which would normally be shown.++ The `--invert' flag negates all amounts. For example, it can be used+on an income account where amounts are normally displayed as negative+numbers. It's also useful to show postings on the checking account+together with the related account:+++$ hledger register --related --invert assets:checking++ With a reporting interval, register shows summary postings, one per+interval, aggregating the postings to each account:+++$ hledger register --monthly income+2008/01 income:salary $-1 $-1+2008/06 income:gifts $-1 $-2++ Periods with no activity, and summary postings with a zero amount,+are not shown by default; use the `--empty'/`-E' flag to see them:+++$ hledger register --monthly income -E+2008/01 income:salary $-1 $-1+2008/02 0 $-1+2008/03 0 $-1+2008/04 0 $-1+2008/05 0 $-1+2008/06 income:gifts $-1 $-2+2008/07 0 $-2+2008/08 0 $-2+2008/09 0 $-2+2008/10 0 $-2+2008/11 0 $-2+2008/12 0 $-2++ Often, you'll want to see just one line per interval. The `--depth'+option helps with this, causing subaccounts to be aggregated:+++$ hledger register --monthly assets --depth 1h+2008/01 assets $1 $1+2008/06 assets $-1 0+2008/12 assets $-1 $-1++ Note when using report intervals, if you specify start/end dates+these will be adjusted outward if necessary to contain a whole number of+intervals. This ensures that the first and last intervals are full+length and comparable to the others in the report.++* Menu:++* Custom register output::+++File: hledger.info, Node: Custom register output, Up: register++11.24.1 Custom register output+------------------------------++register uses the full terminal width by default, except on windows. You+can override this by setting the `COLUMNS' environment variable (not a+bash shell variable) or by using the `--width'/`-w' option.++ The description and account columns normally share the space equally+(about half of (width - 40) each). You can adjust this by adding a+description width as part of -width's argument, comma-separated:+`--width W,D' . Here's a diagram (won't display correctly in -help):+++<--------------------------------- width (W) ---------------------------------->+date (10) description (D) account (W-41-D) amount (12) balance (12)+DDDDDDDDDD dddddddddddddddddddd aaaaaaaaaaaaaaaaaaa AAAAAAAAAAAA AAAAAAAAAAAA++ and some examples:+++$ hledger reg # use terminal width (or 80 on windows)+$ hledger reg -w 100 # use width 100+$ COLUMNS=100 hledger reg # set with one-time environment variable+$ export COLUMNS=100; hledger reg # set till session end (or window resize)+$ hledger reg -w 100,40 # set overall width 100, description width 40+$ hledger reg -w $COLUMNS,40 # use terminal width, & description width 40++ This command also supports the output destination and output format+options The output formats supported are `txt', `csv', and+(experimental) `json'.+++File: hledger.info, Node: register-match, Next: rewrite, Prev: register, Up: COMMANDS++11.25 register-match+====================++register-match+Print the one posting whose transaction description is closest to DESC,+in the style of the register command. If there are multiple equally good+matches, it shows the most recent. Query options (options, not+arguments) can be used to restrict the search space. Helps+ledger-autosync detect already-seen transactions when importing.+++File: hledger.info, Node: rewrite, Next: roi, Prev: register-match, Up: COMMANDS++11.26 rewrite+=============++rewrite+Print all transactions, rewriting the postings of matched transactions.+For now the only rewrite available is adding new postings, like print+-auto.++ This is a start at a generic rewriter of transaction entries. It+reads the default journal and prints the transactions, like print, but+adds one or more specified postings to any transactions matching QUERY.+The posting amounts can be fixed, or a multiplier of the existing+transaction's first posting amount.++ Examples:+++$ hledger-rewrite.hs ^income --add-posting '(liabilities:tax) *.33 ; income tax' --add-posting '(reserve:gifts) $100'+$ hledger-rewrite.hs expenses:gifts --add-posting '(reserve:gifts) *-1"'+$ hledger-rewrite.hs -f rewrites.hledger++ rewrites.hledger may consist of entries like:+++= ^income amt:<0 date:2017+ (liabilities:tax) *0.33 ; tax on income+ (reserve:grocery) *0.25 ; reserve 25% for grocery+ (reserve:) *0.25 ; reserve 25% for grocery++ Note the single quotes to protect the dollar sign from bash, and the+two spaces between account and amount.++ More:+++$ hledger rewrite -- [QUERY] --add-posting "ACCT AMTEXPR" ...+$ hledger rewrite -- ^income --add-posting '(liabilities:tax) *.33'+$ hledger rewrite -- expenses:gifts --add-posting '(budget:gifts) *-1"'+$ hledger rewrite -- ^income --add-posting '(budget:foreign currency) *0.25 JPY; diversify'++ Argument for `--add-posting' option is a usual posting of+transaction with an exception for amount specification. More precisely,+you can use `'*'' (star symbol) before the amount to indicate that that+this is a factor for an amount of original matched posting. If the+amount includes a commodity name, the new posting amount will be in the+new commodity; otherwise, it will be in the matched posting amount's+commodity.++* Menu:++* Re-write rules in a file::+* Diff output format::+* rewrite vs print --auto::+++File: hledger.info, Node: Re-write rules in a file, Next: Diff output format, Up: rewrite++11.26.1 Re-write rules in a file+--------------------------------++During the run this tool will execute so called "Automated Transactions"+found in any journal it process. I.e instead of specifying this+operations in command line you can put them in a journal file.+++$ rewrite-rules.journal++ Make contents look like this:+++= ^income+ (liabilities:tax) *.33++= expenses:gifts+ budget:gifts *-1+ assets:budget *1++ Note that `'='' (equality symbol) that is used instead of date in+transactions you usually write. It indicates the query by which you want+to match the posting to add new ones.+++$ hledger rewrite -- -f input.journal -f rewrite-rules.journal > rewritten-tidy-output.journal++ This is something similar to the commands pipeline:+++$ hledger rewrite -- -f input.journal '^income' --add-posting '(liabilities:tax) *.33' \+ | hledger rewrite -- -f - expenses:gifts --add-posting 'budget:gifts *-1' \+ --add-posting 'assets:budget *1' \+ > rewritten-tidy-output.journal++ It is important to understand that relative order of such entries in+journal is important. You can re-use result of previously added+postings.+++File: hledger.info, Node: Diff output format, Next: rewrite vs print --auto, Prev: Re-write rules in a file, Up: rewrite++11.26.2 Diff output format+--------------------------++To use this tool for batch modification of your journal files you may+find useful output in form of unified diff.+++$ hledger rewrite -- --diff -f examples/sample.journal '^income' --add-posting '(liabilities:tax) *.33'++ Output might look like:+++--- /tmp/examples/sample.journal++++ /tmp/examples/sample.journal+@@ -18,3 +18,4 @@+ 2008/01/01 income+- assets:bank:checking $1++ assets:bank:checking $1+ income:salary++ (liabilities:tax) 0+@@ -22,3 +23,4 @@+ 2008/06/01 gift+- assets:bank:checking $1++ assets:bank:checking $1+ income:gifts++ (liabilities:tax) 0++ If you'll pass this through `patch' tool you'll get transactions+containing the posting that matches your query be updated. Note that+multiple files might be update according to list of input files+specified via `--file' options and `include' directives inside of these+files.++ Be careful. Whole transaction being re-formatted in a style of output+from `hledger print'.++ See also:++ https://github.com/simonmichael/hledger/issues/99+++File: hledger.info, Node: rewrite vs print --auto, Prev: Diff output format, Up: rewrite++11.26.3 rewrite vs. print -auto+-------------------------------++This command predates print -auto, and currently does much the same+thing, but with these differences:++ * with multiple files, rewrite lets rules in any file affect all+ other files. print -auto uses standard directive scoping; rules+ affect only child files.++ * rewrite's query limits which transactions can be rewritten; all are+ printed. print -auto's query limits which transactions are printed.++ * rewrite applies rules specified on command line or in the journal.+ print -auto applies rules specified in the journal.++++File: hledger.info, Node: roi, Next: stats, Prev: rewrite, Up: COMMANDS++11.27 roi+=========++roi+Shows the time-weighted (TWR) and money-weighted (IRR) rate of return on+your investments.++ At a minimum, you need to supply a query (which could be just an+account name) to select your investment(s) with `--inv', and another+query to identify your profit and loss transactions with `--pnl'.++ If you do not record changes in the value of your investment+manually, or do not require computation of time-weighted return (TWR),+`--pnl' could be an empty query (`--pnl ""' or `--pnl STR' where `STR'+does not match any of your accounts).++ This command will compute and display the internalized rate of return+(IRR) and time-weighted rate of return (TWR) for your investments for+the time period requested. Both rates of return are annualized before+display, regardless of the length of reporting interval.++ Price directives will be taken into account if you supply appropriate+`--cost' or `--value' flags (see VALUATION).++ Note, in some cases this report can fail, for these reasons:++ * Error (NotBracketed): No solution for Internal Rate of Return+ (IRR). Possible causes: IRR is huge (>1000000%), balance of+ investment becomes negative at some point in time.++ * Error (SearchFailed): Failed to find solution for Internal Rate of+ Return (IRR). Either search does not converge to a solution, or+ converges too slowly.++ Examples:++ * Using roi to compute total return of investment in stocks:+ https://github.com/simonmichael/hledger/blob/master/examples/roi-unrealised.ledger++ * Cookbook -> Return on Investment+++* Menu:++* Semantics of --inv and --pnl::+* IRR and TWR explained::+++File: hledger.info, Node: Semantics of --inv and --pnl, Next: IRR and TWR explained, Up: roi++11.27.1 Semantics of `--inv' and `--pnl'+----------------------------------------++Query supplied to `--inv' has to match all transactions that are+related to your investment. Transactions not matching `--inv' will be+ignored.++ In these transactions, ROI will conside postings that match `--inv'+to be "investment postings" and other postings (not matching `--inv')+will be sorted into two categories: "cash flow" and "profit and loss",+as ROI needs to know which part of the investment value is your+contributions and which is due to the return on investment.++ * "Cash flow" is depositing or withdrawing money, buying or selling+ assets, or otherwise converting between your investment commodity+ and any other commodity. Example:+++ 2019-01-01 Investing in Snake Oil+ assets:cash -$100+ investment:snake oil++ 2020-01-01 Selling my Snake Oil+ assets:cash $10+ investment:snake oil = 0++ * "Profit and loss" is change in the value of your investment:+++ 2019-06-01 Snake Oil falls in value+ investment:snake oil = $57+ equity:unrealized profit or loss+++ All non-investment postings are assumed to be "cash flow", unless+they match `--pnl' query. Changes in value of your investment due to+"profit and loss" postings will be considered as part of your investment+return.++ Example: if you use `--inv snake --pnl equity:unrealized', then+postings in the example below would be classifed as:+++2019-01-01 Snake Oil #1+ assets:cash -$100 ; cash flow posting+ investment:snake oil ; investment posting++2019-03-01 Snake Oil #2+ equity:unrealized pnl -$100 ; profit and loss posting+ snake oil ; investment posting++2019-07-01 Snake Oil #3+ equity:unrealized pnl ; profit and loss posting+ cash -$100 ; cash flow posting+ snake oil $50 ; investment posting+++File: hledger.info, Node: IRR and TWR explained, Prev: Semantics of --inv and --pnl, Up: roi++11.27.2 IRR and TWR explained+-----------------------------++"ROI" stands for "return on investment". Traditionally this was computed+as a difference between current value of investment and its initial+value, expressed in percentage of the initial value.++ However, this approach is only practical in simple cases, where+investments receives no in-flows or out-flows of money, and where rate+of growth is fixed over time. For more complex scenarios you need+different ways to compute rate of return, and this command implements+two of them: IRR and TWR.++ Internal rate of return, or "IRR" (also called "money-weighted rate+of return") takes into account effects of in-flows and out-flows.+Naively, if you are withdrawing from your investment, your future gains+would be smaller (in absolute numbers), and will be a smaller+percentage of your initial investment, and if you are adding to your+investment, you will receive bigger absolute gains (but probably at the+same rate of return). IRR is a way to compute rate of return for each+period between in-flow or out-flow of money, and then combine them in a+way that gives you a compound annual rate of return that investment is+expected to generate.++ As mentioned before, in-flows and out-flows would be any cash that+you personally put in or withdraw, and for the "roi" command, these are+the postings that match the query in the`--inv' argument and NOT match+the query in the`--pnl' argument.++ If you manually record changes in the value of your investment as+transactions that balance them against "profit and loss" (or "unrealized+gains") account or use price directives, then in order for IRR to+compute the precise effect of your in-flows and out-flows on the rate of+return, you will need to record the value of your investement on or+close to the days when in- or out-flows occur.++ In technical terms, IRR uses the same approach as computation of net+present value, and tries to find a discount rate that makes net present+value of all the cash flows of your investment to add up to zero. This+could be hard to wrap your head around, especially if you haven't done+discounted cash flow analysis before. Implementation of IRR in hledger+should produce results that match the `XIRR' formula in Excel.++ Second way to compute rate of return that `roi' command implements+is called "time-weighted rate of return" or "TWR". Like IRR, it will+also break the history of your investment into periods between in-flows,+out-flows and value changes, to compute rate of return per each period+and then a compound rate of return. However, internal workings of TWR+are quite different.++ TWR represents your investment as an imaginary "unit fund" where+in-flows/ out-flows lead to buying or selling "units" of your investment+and changes in its value change the value of "investment unit". Change+in "unit price" over the reporting period gives you rate of return of+your investment.++ References: * Explanation of rate of return * Explanation of IRR *+Explanation of TWR * Examples of computing IRR and TWR and discussion of+the limitations of both metrics+++File: hledger.info, Node: stats, Next: tags, Prev: roi, Up: COMMANDS++11.28 stats+===========++stats+Show some journal statistics.++ The stats command displays summary information for the whole+journal, or a matched part of it. With a reporting interval, it shows a+report for each report period.++ Example:+++$ hledger stats+Main journal file : /src/hledger/examples/sample.journal+Included journal files :+Transactions span : 2008-01-01 to 2009-01-01 (366 days)+Last transaction : 2008-12-31 (2333 days ago)+Transactions : 5 (0.0 per day)+Transactions last 30 days: 0 (0.0 per day)+Transactions last 7 days : 0 (0.0 per day)+Payees/descriptions : 5+Accounts : 8 (depth 3)+Commodities : 1 ($)+Market prices : 12 ($)++ This command also supports output destination and output format+selection.+++File: hledger.info, Node: tags, Next: test, Prev: stats, Up: COMMANDS++11.29 tags+==========++tags+List the unique tag names used in the journal. With a TAGREGEX argument,+only tag names matching the regular expression (case insensitive) are+shown. With QUERY arguments, only transactions matching the query are+considered.++ With the -values flag, the tags' unique values are listed instead.++ With -parsed flag, all tags or values are shown in the order they are+parsed from the input data, including duplicates.++ With -E/-empty, any blank/empty values will also be shown, otherwise+they are omitted.+++File: hledger.info, Node: test, Next: About add-on commands, Prev: tags, Up: COMMANDS++11.30 test+==========++test+Run built-in unit tests.++ This command runs the unit tests built in to hledger and hledger-lib,+printing the results on stdout. If any test fails, the exit code will be+non-zero.++ This is mainly used by hledger developers, but you can also use it to+sanity-check the installed hledger executable on your platform. All+tests are expected to pass - if you ever see a failure, please report as+a bug!++ This command also accepts tasty test runner options, written after a+- (double hyphen). Eg to run only the tests in Hledger.Data.Amount, with+ANSI colour codes disabled:+++$ hledger test -- -pData.Amount --color=never++ For help on these, see https://github.com/feuerbach/tasty#options+(`-- --help' currently doesn't show them).+++File: hledger.info, Node: About add-on commands, Prev: test, Up: COMMANDS++11.31 About add-on commands+===========================++Add-on commands are programs or scripts in your PATH++ * whose name starts with `hledger-'++ * whose name ends with a recognised file extension:+ `.bat',`.com',`.exe', `.hs',`.lhs',`.pl',`.py',`.rb',`.rkt',`.sh'+ or none++ * and (on unix, mac) which are executable by the current user.++ Add-ons are a relatively easy way to add local features or experiment+with new ideas. They can be written in any language, but haskell scripts+have a big advantage: they can use the same hledger library functions+that built-in commands use for command-line options, parsing and+reporting. Some experimental/example add-on scripts can be found in the+hledger repo's bin/ directory.++ Note in a hledger command line, add-on command flags must have a+double dash (`--') preceding them. Eg you must write:+++$ hledger web -- --serve++ and not:+++$ hledger web --serve++ (because the `--serve' flag belongs to `hledger-web', not `hledger').++ The `-h/--help' and `--version' flags don't require `--'.++ If you have any trouble with this, remember you can always run the+add-on program directly, eg:+++$ hledger-web --serve+++File: hledger.info, Node: JOURNAL FORMAT, Next: CSV FORMAT, Prev: COMMANDS, Up: Top++12 JOURNAL FORMAT+*****************++hledger's default file format, representing a General Journal.++ hledger's usual data source is a plain text file containing journal+entries in hledger journal format. This file represents a standard+accounting general journal. I use file names ending in `.journal', but+that's not required. 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.++ hledger's journal format is a compatible subset, mostly, of ledger's+journal format, so hledger can work with compatible ledger journal files+as well. It's safe, and encouraged, to run both hledger and ledger on+the same journal file, eg to validate the results you're getting.++ You can use hledger without learning any more about this file; just+use the add or web or import commands to create and update it.++ Many users, though, edit the journal file with a text editor, and+track changes with a version control system such as git. Editor addons+such as ledger-mode or hledger-mode for Emacs, vim-ledger for Vim, and+hledger-vscode for Visual Studio Code, make this easier, adding colour,+formatting, tab completion, and useful commands. See Editor+configuration at hledger.org for the full list.++ Here's a description of each part of the file format (and hledger's+data model). These are mostly in the order you'll use them, but in some+cases related concepts have been grouped together for easy reference, or+linked before they are introduced, so feel free to skip over anything+that looks unnecessary right now.++* Menu:++* Transactions::+* Dates::+* Status::+* Description::+* Comments::+* Tags::+* Postings::+* Account names::+* Amounts::+* Transaction prices::+* Lot prices lot dates::+* Balance assertions::+* Balance assignments::+* Directives::+* Directives and multiple files::+* Comment blocks::+* Including other files::+* Default year::+* Declaring payees::+* Declaring commodities::+* Default commodity::+* Declaring market prices::+* Declaring accounts::+* Rewriting accounts::+* Default parent account::+* Periodic transactions::+* Auto postings::+++File: hledger.info, Node: Transactions, Next: Dates, Up: JOURNAL FORMAT++12.1 Transactions+=================++Transactions are the main unit of information in a journal file. They+represent events, typically a movement of some quantity of commodities+between two or more named accounts.++ Each transaction is recorded as a journal entry, beginning with a+simple date in column 0. This can be followed by any of the following+optional fields, separated by spaces:++ * a status character (empty, `!', or `*')++ * a code (any short number or text, enclosed in parentheses)++ * a description (any remaining text until end of line or a semicolon)++ * a comment (any remaining text following a semicolon until end of+ line, and any following indented lines beginning with a semicolon)++ * 0 or more indented _posting_ lines, describing what was transferred+ and the accounts involved (indented comment lines are also+ allowed, but not blank lines or non-indented lines).++ Here's a simple journal file containing one transaction:+++2008/01/01 income+ assets:bank:checking $1+ income:salary $-1+++File: hledger.info, Node: Dates, Next: Status, Prev: Transactions, Up: JOURNAL FORMAT++12.2 Dates+==========++* Menu:++* Simple dates::+* Secondary dates::+* Posting dates::+++File: hledger.info, Node: Simple dates, Next: Secondary dates, Up: Dates++12.2.1 Simple dates+-------------------++Dates in the journal file use _simple dates_ format: `YYYY-MM-DD' or+`YYYY/MM/DD' or `YYYY.MM.DD', with leading zeros optional. The year may+be omitted, in which case it will be inferred from the context: the+current transaction, the default year set with a default year+directive, or the current date when the command is run. Some examples:+`2010-01-31', `2010/01/31', `2010.1.31', `1/31'.++ (The UI also accepts simple dates, as well as the more flexible smart+dates documented in the hledger manual.)+++File: hledger.info, Node: Secondary dates, Next: Posting dates, Prev: Simple dates, Up: Dates++12.2.2 Secondary dates+----------------------++Real-life transactions sometimes involve more than one date - eg the+date you write a cheque, and the date it clears in your bank. When you+want to model this, for more accurate daily balances, you can specify+individual posting dates.++ Or, you can use the older _secondary date_ feature (Ledger calls it+auxiliary date or effective date). Note: we support this for+compatibility, but I usually recommend avoiding this feature; posting+dates are almost always clearer and simpler.++ A secondary date is written after the primary date, following an+equals sign. If the year is omitted, the primary date's year is+assumed. When running reports, the primary (left) date is used by+default, but with the `--date2' flag (or `--aux-date' or `--effective'),+the secondary (right) date will be used instead.++ The meaning of secondary dates is up to you, but it's best to follow+a consistent rule. Eg "primary = the bank's clearing date, secondary =+date the transaction was initiated, if different", as shown here:+++2010/2/23=2/19 movie ticket+ expenses:cinema $10+ assets:checking+++$ hledger register checking+2010-02-23 movie ticket assets:checking $-10 $-10+++$ hledger register checking --date2+2010-02-19 movie ticket assets:checking $-10 $-10+++File: hledger.info, Node: Posting dates, Prev: Secondary dates, Up: Dates++12.2.3 Posting dates+--------------------++You can give individual postings a different date from their parent+transaction, by adding a posting comment containing a tag (see below)+like `date:DATE'. 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:+++2015/5/30+ expenses:food $10 ; food purchased on saturday 5/30+ assets:checking ; bank cleared it on monday, date:6/1+++$ hledger -f t.j register food+2015-05-30 expenses:food $10 $10+++$ hledger -f t.j register checking+2015-06-01 assets:checking $-10 $-10++ DATE should be a simple date; if the year is not specified it will+use the year of the transaction's date. You can set the secondary date+similarly, with `date2:DATE2'. The `date:' or `date2:' tags must have a+valid simple date value if they are present, eg a `date:' tag with no+value is not allowed.++ Ledger's earlier, more compact bracketed date syntax is also+supported: `[DATE]', `[DATE=DATE2]' or `[=DATE2]'. hledger will attempt+to parse any square-bracketed sequence of the `0123456789/-.='+characters in this way. With this syntax, DATE infers its year from the+transaction and DATE2 infers its year from DATE.+++File: hledger.info, Node: Status, Next: Description, Prev: Dates, Up: JOURNAL FORMAT++12.3 Status+===========++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:++mark status+----------------- + unmarked+`!' pending+`*' cleared++ When reporting, you can filter by status with the `-U/--unmarked',+`-P/--pending', and `-C/--cleared' flags; or the `status:', `status:!',+and `status:*' queries; or the U, P, C keys in hledger-ui.++ Note, in Ledger and in older versions of hledger, the "unmarked"+state is called "uncleared". As of hledger 1.3 we have renamed it to+unmarked for clarity.++ To replicate Ledger and old hledger's behaviour of also matching+pending, combine -U and -P.++ Status marks are optional, but can be helpful eg for reconciling with+real-world accounts. Some editor modes provide highlighting and+shortcuts for working with status. Eg in Emacs ledger-mode, you can+toggle transaction status with C-c C-e, or posting status with C-c C-c.++ What "uncleared", "pending", and "cleared" actually mean is up to+you. Here's one suggestion:++status meaning+-------------------------------------------------------------------------- +uncleared recorded but not yet reconciled; needs review+pending tentatively reconciled (if needed, eg during a big+ reconciliation)+cleared complete, reconciled as far as possible, and considered+ correct++ With this scheme, you would use `-PC' to see the current balance at+your bank, `-U' to see things which will probably hit your bank soon+(like uncashed checks), and no flags to see the most up-to-date state+of your finances.+++File: hledger.info, Node: Description, Next: Comments, Prev: Status, Up: JOURNAL FORMAT++12.4 Description+================++A transaction's description is the rest of the line following the date+and status mark (or until a comment begins). Sometimes called the+"narration" in traditional bookkeeping, it can be used for whatever you+wish, or left blank. Transaction descriptions can be queried, unlike+comments.++* Menu:++* Payee and note::+++File: hledger.info, Node: Payee and note, Up: Description++12.4.1 Payee and note+---------------------++You can optionally include a `|' (pipe) character in descriptions to+subdivide the description into separate fields for payee/payer name on+the left (up to the first `|') and an additional note field on the+right (after the first `|'). This may be worthwhile if you need to do+more precise querying and pivoting by payee or by note.+++File: hledger.info, Node: Comments, Next: Tags, Prev: Description, Up: JOURNAL FORMAT++12.5 Comments+=============++Lines in the journal beginning with a semicolon (`;') or hash (`#') or+star (`*') 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.)++ 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.+Transaction and posting comments must begin with a semicolon (`;').++ Some examples:+++# a file comment+; another file comment+* also a file comment, useful in org/orgstruct mode++comment+A multiline file comment, which continues+until a line containing just "end comment"+(or end of file).+end comment++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)++ You can also comment larger regions of a file using `comment' and+`end comment' directives.+++File: hledger.info, Node: Tags, Next: Postings, Prev: Comments, Up: JOURNAL FORMAT++12.6 Tags+=========++Tags are a way to add extra labels or labelled data to postings and+transactions, which you can then search or pivot on.++ A simple tag is a word (which may contain hyphens) followed by a full+colon, written inside a transaction or posting comment line:+++2017/1/16 bought groceries ; sometag:++ 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:+++ expenses:food $10 ; a-posting-tag: the tag value++ Note this means hledger's tag values can not contain commas or+newlines. Ending at commas means you can write multiple short tags on+one line, comma separated:+++ assets:checking ; a comment containing tag1:, tag2: some value ...++ Here,++ * "`a comment containing'" is just comment text, not a tag++ * "`tag1'" is a tag with no value++ * "`tag2'" is another tag, whose value is "`some value ...'"++ Tags in a transaction comment affect the transaction and all of its+postings, while tags in a posting comment affect only that posting. For+example, the following transaction has three tags (`A', `TAG2',+`third-tag') and the posting has four (those plus `posting-tag'):+++1/1 a transaction ; A:, TAG2:+ ; third-tag: a third transaction tag, <- with a value+ (a) $1 ; posting-tag:++ Tags are like Ledger's metadata feature, except hledger's tag values+are simple strings.+++File: hledger.info, Node: Postings, Next: Account names, Prev: Tags, Up: JOURNAL FORMAT++12.7 Postings+=============++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:++ * (optional) a status character (empty, `!', or `*'), followed by a+ space++ * (required) an account name (any text, optionally containing+ *single spaces*, until end of line or a double space)++ * (optional) *two or more spaces* or tabs followed by an amount.++ Positive amounts are being added to the account, negative amounts are+being removed.++ 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.++ Be sure to note the unusual two-space delimiter between account name+and amount. 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.++* Menu:++* Virtual postings::+++File: hledger.info, Node: Virtual postings, Up: Postings++12.7.1 Virtual postings+-----------------------++A posting with a parenthesised account name is called a _virtual+posting_ or _unbalanced posting_, which means it is exempt from the+usual rule that a transaction's postings must balance add up to zero.++ This is not part of double entry accounting, so you might choose to+avoid this feature. Or you can use it sparingly for certain special+cases where it can be convenient. Eg, you could set opening balances+without using a balancing equity account:+++1/1 opening balances+ (assets:checking) $1000+ (assets:savings) $2000++ A posting with a bracketed account name is called a _balanced+virtual posting_. The balanced virtual postings in a transaction must+add up to zero (separately from other postings). Eg:+++1/1 buy food with cash, update budget envelope subaccounts, & something else+ assets:cash $-10 ; <- these balance+ expenses:food $7 ; <-+ expenses:food $3 ; <-+ [assets:checking:budget:food] $-10 ; <- and these balance+ [assets:checking:available] $10 ; <-+ (something:else) $5 ; <- not required to balance++ Ordinary non-parenthesised, non-bracketed postings are called _real+postings_. You can exclude virtual postings from reports with the+`-R/--real' flag or `real:1' query.+++File: hledger.info, Node: Account names, Next: Amounts, Prev: Postings, Up: JOURNAL FORMAT++12.8 Account names+==================++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 five top-level+accounts: `assets', `liabilities', `revenue', `expenses', and `equity'.++ Account names may contain single spaces, eg: `assets:accounts+receivable'. Because of this, they must always be followed by *two or+more spaces* (or newline).++ Account names can be aliased.+++File: hledger.info, Node: Amounts, Next: Transaction prices, Prev: Account names, Up: JOURNAL FORMAT++12.9 Amounts+============++After the account name, there is usually an amount. (Important: between+account name and amount, there must be *two or more spaces*.)++ hledger's amount format is flexible, supporting several international+formats. Here are some examples. Amounts have a number (the "quantity"):+++1++ ..and usually a currency or commodity name (the "commodity"). This+is a symbol, word, or phrase, to the left or right of the quantity,+with or without a separating space:+++$1+4000 AAPL++ If the commodity name contains spaces, numbers, or punctuation, it+must be enclosed in double quotes:+++3 "no. 42 green apples"++ Amounts can be preceded by a minus sign (or a plus sign, though plus+is the default), The sign can be written before or after a left-side+commodity symbol:+++-$1+$-1++ One or more spaces between the sign and the number are acceptable+when parsing (but they won't be displayed in output):++++ $1+$- 1++ Scientific E notation is allowed:+++1E-6+EUR 1E3++* Menu:++* Decimal marks digit group marks::+* Commodity display style::+* Rounding::+++File: hledger.info, Node: Decimal marks digit group marks, Next: Commodity display style, Up: Amounts++12.9.1 Decimal marks, digit group marks+---------------------------------------++A decimal mark can be written as a period or a comma:+++1.23+1,23456780000009++ In the integer part of the quantity (left of the decimal mark),+groups of digits can optionally be separated by a "digit group mark" -+a space, comma, or period (different from the decimal mark):+++ $1,000,000.00+ EUR 2.000.000,00+INR 9,99,99,999.00+ 1 000 000.9455++ Note, a number containing a single digit group mark and no decimal+mark is ambiguous. Are these digit group marks or decimal marks ?+++1,000+1.000++ If you don't tell it otherwise, hledger will assume both of the above+are decimal marks, parsing both numbers as 1. To prevent confusion and+undetected typos, especially if your data contains digit group marks, we+recommend you explicitly declare the decimal mark (and optionally a+digit group mark), for each commodity, using `commodity' directives+(described below):+++# number formats for $, EUR, INR and the no-symbol commodity:+commodity $1,000.00+commodity EUR 1.000,00+commodity INR 9,99,99,999.00+commodity 1 000 000.9455++ Note, `commodity' directives declare both the number format for+parsing input, and the display style for showing output. For the former,+they are position-sensitive, affecting only following amounts, so+commodity directives should be at the top of your journal file. This is+discussed more on #793.+++File: hledger.info, Node: Commodity display style, Next: Rounding, Prev: Decimal marks digit group marks, Up: Amounts++12.9.2 Commodity display style+------------------------------++For the amounts in each commodity, hledger chooses a consistent display+style to use in most reports. (Except for price amounts, which are+always displayed as written). The display style is inferred as follows.++ First, if a default commodity is declared with `D', this commodity+and its style is applied to any no-symbol amounts in the journal.++ Then each commodity's style is inferred from one of the following, in+order of preference:++ * The commodity directive for that commodity (including the no-symbol+ commodity), if any.++ * The amounts in that commodity seen in the journal's transactions.+ (Posting amounts only; prices and periodic or auto rules are+ ignored, currently.)++ * The built-in fallback style, which looks like this: `$1000.00'.+ (Symbol on the left, period decimal mark, two decimal places.)++ A style is inferred from journal amounts as follows:++ * Use the general style (decimal mark, symbol placement) of the first+ amount++ * Use the first-seen digit group style (digit group mark, digit group+ sizes), if any++ * Use the maximum number of decimal places of all.++ Transaction price amounts don't affect the commodity display style+directly, but occasionally they can do so indirectly (eg when a+posting's amount is inferred using a transaction price). If you find+this causing problems, use a commodity directive to fix the display+style.++ To summarise: each commodity's amounts will be normalised to (a) the+style declared by a `commodity' directive, or (b) the style of the+first posting amount in the journal, with the first-seen digit group+style and the maximum-seen number of decimal places. So if your reports+are showing amounts in a way you don't like, eg with too many decimal+places, use a commodity directive. Some examples:+++# declare euro, dollar, bitcoin and no-symbol commodities and set their+# input number formats and output display styles:+commodity EUR 1.000,+commodity $1000.00+commodity 1000.00000000 BTC+commodity 1 000.+++File: hledger.info, Node: Rounding, Prev: Commodity display style, Up: Amounts++12.9.3 Rounding+---------------++Amounts are stored internally as decimal numbers with up to 255 decimal+places, and displayed with the number of decimal places specified by the+commodity display style. Note, hledger uses banker's rounding: it rounds+to the nearest even number, eg 0.5 displayed with zero decimal places is+"0"). (Guaranteed since hledger 1.17.1; in older versions this could+vary if hledger was built with Decimal < 0.5.1.)+++File: hledger.info, Node: Transaction prices, Next: Lot prices lot dates, Prev: Amounts, Up: JOURNAL FORMAT++12.10 Transaction prices+========================++Within a transaction, you can note an amount's price in another+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. 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.++ There are several ways to record a transaction price:++ 1. Write the price per unit, as `@ UNITPRICE' after the amount:+++ 2009/1/1+ assets:euros €100 @ $1.35 ; one hundred euros purchased at $1.35 each+ assets:dollars ; balancing amount is -$135.00++ 2. Write the total price, as `@@ TOTALPRICE' after the amount:+++ 2009/1/1+ assets:euros €100 @@ $135 ; one hundred euros purchased at $135 for the lot+ assets:dollars++ 3. Specify amounts for all postings, using exactly two commodities,+ and let hledger infer the price that balances the transaction:+++ 2009/1/1+ assets:euros €100 ; one hundred euros purchased+ assets:dollars $-135 ; for $135++ 4. Like 1, but the `@' is parenthesised, i.e. `(@)'; this is for+ compatibility with Ledger journals (Virtual posting costs), and is+ equivalent to 1 in hledger.++ 5. Like 2, but as in 4 the `@@' is parenthesised, i.e. `(@@)'; in+ hledger, this is equivalent to 2.+++ Use the `-B/--cost' flag to convert amounts to their transaction+price's commodity, if any. (mnemonic: "B" is from "cost Basis", as in+Ledger). Eg here is how -B affects the balance report for the example+above:+++$ hledger bal -N --flat+ $-135 assets:dollars+ €100 assets:euros+$ hledger bal -N --flat -B+ $-135 assets:dollars+ $135 assets:euros # <- the euros' cost++ Note -B is sensitive to the order of postings when a transaction+price is inferred: the inferred price will be in the commodity of the+last amount. So if example 3's postings are reversed, while the+transaction is equivalent, -B shows something different:+++2009/1/1+ assets:dollars $-135 ; 135 dollars sold+ assets:euros €100 ; for 100 euros+++$ hledger bal -N --flat -B+ €-100 assets:dollars # <- the dollars' selling price+ €100 assets:euros+++File: hledger.info, Node: Lot prices lot dates, Next: Balance assertions, Prev: Transaction prices, Up: JOURNAL FORMAT++12.11 Lot prices, lot dates+===========================++Ledger allows another kind of price, lot price (four variants:+`{UNITPRICE}', `{{TOTALPRICE}}', `{=FIXEDUNITPRICE}',+`{{=FIXEDTOTALPRICE}}'), and/or a lot date (`[DATE]') to be specified.+These are normally used to select a lot when selling investments.+hledger will parse these, for compatibility with Ledger journals, but+currently ignores them. A transaction price, lot price and/or lot date+may appear in any order, after the posting amount and before the+balance assertion if any.+++File: hledger.info, Node: Balance assertions, Next: Balance assignments, Prev: Lot prices lot dates, Up: JOURNAL FORMAT++12.12 Balance assertions+========================++hledger supports Ledger-style balance assertions in journal files. These+look like, for example, `= EXPECTEDBALANCE' following a posting's+amount. Eg here we assert the expected dollar balance in accounts a and+b after each posting:+++2013/1/1+ a $1 =$1+ b =$-1++2013/1/2+ a $1 =$2+ b $-1 =$-2++ 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+`-I/--ignore-assertions' flag, which can be useful for troubleshooting+or for reading Ledger files. (Note: this flag currently does not+disable balance assignments, below).++* Menu:++* Assertions and ordering::+* Assertions and included files::+* Assertions and multiple -f options::+* Assertions and commodities::+* Assertions and prices::+* Assertions and subaccounts::+* Assertions and virtual postings::+* Assertions and precision::+++File: hledger.info, Node: Assertions and ordering, Next: Assertions and included files, Up: Balance assertions++12.12.1 Assertions and ordering+-------------------------------++hledger sorts an account's postings and assertions first by date and+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.)++ So, hledger balance assertions keep working if you reorder+differently-dated transactions within the journal. But if you reorder+same-dated transactions or postings, assertions might break and require+updating. This order dependence does bring an advantage: precise control+over the order of postings and assertions within a day, so you can+assert intra-day balances.+++File: hledger.info, Node: Assertions and included files, Next: Assertions and multiple -f options, Prev: Assertions and ordering, Up: Balance assertions++12.12.2 Assertions and included files+-------------------------------------++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 across different files,+and you also want to assert the account's balance on the same day,+you'll have to put the assertion in the right file.+++File: hledger.info, Node: Assertions and multiple -f options, Next: Assertions and commodities, Prev: Assertions and included files, Up: Balance assertions++12.12.3 Assertions and multiple -f options+------------------------------------------++Balance assertions don't work well across files specified with multiple+-f options. Use include or concatenate the files instead.+++File: hledger.info, Node: Assertions and commodities, Next: Assertions and prices, Prev: Assertions and multiple -f options, Up: Balance assertions++12.12.4 Assertions and commodities+----------------------------------++The asserted balance must be a simple single-commodity amount, and in+fact the assertion checks only this commodity's balance within the+(possibly multi-commodity) account balance. This is how assertions work+in Ledger also. We could call this a "partial" balance assertion.++ To assert the balance of more than one commodity in an account, you+can write multiple postings, each asserting one commodity's balance.++ You can make a stronger "total" balance assertion by writing a double+equals sign (`== EXPECTEDBALANCE'). This asserts that there are no+other unasserted commodities in the account (or, that their balance is+0).+++2013/1/1+ a $1+ a 1€+ b $-1+ c -1€++2013/1/2 ; These assertions succeed+ a 0 = $1+ a 0 = 1€+ b 0 == $-1+ c 0 == -1€++2013/1/3 ; This assertion fails as 'a' also contains 1€+ a 0 == $1++ It's not yet possible to make a complete assertion about a balance+that has multiple commodities. One workaround is to isolate each+commodity into its own subaccount:+++2013/1/1+ a:usd $1+ a:euro 1€+ b++2013/1/2+ a 0 == 0+ a:usd 0 == $1+ a:euro 0 == 1€+++File: hledger.info, Node: Assertions and prices, Next: Assertions and subaccounts, Prev: Assertions and commodities, Up: Balance assertions++12.12.5 Assertions and prices+-----------------------------++Balance assertions ignore transaction prices, and should normally be+written without one:+++2019/1/1+ (a) $1 @ €1 = $1++ We do allow prices to be written there, however, and print shows+them, even though they don't affect whether the assertion passes or+fails. This is for backward compatibility (hledger's close command+used to generate balance assertions with prices), and because balance+_assignments_ do use them (see below).+++File: hledger.info, Node: Assertions and subaccounts, Next: Assertions and virtual postings, Prev: Assertions and prices, Up: Balance assertions++12.12.6 Assertions and subaccounts+----------------------------------++The balance assertions above (`=' and `==') do not count the balance+from subaccounts; they check the account's exclusive balance only. You+can assert the balance including subaccounts by writing `=*' or `==*',+eg:+++2019/1/1+ equity:opening balances+ checking:a 5+ checking:b 5+ checking 1 ==* 11+++File: hledger.info, Node: Assertions and virtual postings, Next: Assertions and precision, Prev: Assertions and subaccounts, Up: Balance assertions++12.12.7 Assertions and virtual postings+---------------------------------------++Balance assertions are checked against all postings, both real and+virtual. They are not affected by the `--real/-R' flag or `real:' query.+++File: hledger.info, Node: Assertions and precision, Prev: Assertions and virtual postings, Up: Balance assertions++12.12.8 Assertions and precision+--------------------------------++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.+++File: hledger.info, Node: Balance assignments, Next: Directives, Prev: Balance assertions, Up: JOURNAL FORMAT++12.13 Balance assignments+=========================++Ledger-style balance assignments are also supported. 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:+++; 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++ or when adjusting a balance to reality:+++; no cash left; update balance, record any untracked spending as a generic expense+2016/1/15+ assets:cash = $0+ expenses:misc++ The calculated amount depends on the account's balance in the+commodity at that point (which depends on the previously-dated postings+of the commodity to that account since the last balance assertion or+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.++* Menu:++* Balance assignments and prices::+++File: hledger.info, Node: Balance assignments and prices, Up: Balance assignments++12.13.1 Balance assignments and prices+--------------------------------------++A transaction price in a balance assignment will cause the calculated+amount to have that price attached:+++2019/1/1+ (a) = $1 @ €2+++$ hledger print --explicit+2019-01-01+ (a) $1 @ €2 = $1 @ €2+++File: hledger.info, Node: Directives, Next: Directives and multiple files, Prev: Balance assignments, Up: JOURNAL FORMAT++12.14 Directives+================++A directive is a line in the journal beginning with a special keyword,+that influences how the journal is processed. hledger's directives are+based on a subset of Ledger's, but there are many differences (and also+some differences between hledger versions).++ Directives' 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. Note part of this table is hidden when+viewed in a web browser - scroll it sideways to see more.++directiveend subdirectivespurpose can affect (as of+ directive 2018/06)+----------------------------------------------------------------------------- +`account' any document account names, all entries in all+ text declare account types & files, before or+ display order after+`alias' `end rewrite account names following entries+ aliases' until end of+ current file or+ end directive+`apply `end prepend a common parent to following entries+account' apply account names until end of+ account' current file or+ end directive+`comment'`end ignore part of journal following entries+ comment' until end of+ current file or+ end directive+`commodity' `format'declare a commodity and its number notation:+ number notation & display following entries+ style in that commodity+ in all files ;+ display style:+ amounts of that+ commodity in+ reports+`D' declare a commodity to be default commodity:+ used for commodityless following+ amounts, and its number commodityless+ notation & display style entries until end+ of current file;+ number notation:+ following entries+ in that commodity+ until end of+ current file;+ display style:+ amounts of that+ commodity in+ reports+`include' include entries/directives what the included+ from another file directives affect+[`payee'] declare a payee name following entries+ until end of+ current file+`P' declare a market price for a amounts of that+ commodity commodity in+ reports, when -V+ is used+`Y' declare a year for yearless following entries+ dates until end of+ current file+`=' declare an auto posting all entries in+ rule, adding postings to parent/current/child+ other transactions files (but not+ sibling files, see+ #1212)++ And some definitions:++subdirectiveoptional indented directive line immediately following a parent+ directive+number how to interpret numbers when parsing journal entries (the+notationidentity of the decimal separator character). (Currently each+ commodity can have its own notation, even in the same file.)+displayhow to display amounts of a commodity in reports (symbol side and+style spacing, digit groups, decimal separator, decimal places)+directivewhich entries and (when there are multiple files) which files are+scope affected by a directive++ 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.+++File: hledger.info, Node: Directives and multiple files, Next: Comment blocks, Prev: Directives, Up: JOURNAL FORMAT++12.15 Directives and multiple files+===================================++If you use multiple `-f'/`--file' options, or the `include' directive,+hledger will process multiple input files. But note that directives+which affect input (see above) typically last only until the end of the+file in which they occur.++ This may seem inconvenient, but it's intentional; it makes reports+stable and deterministic, independent of the order of input. Otherwise+you could see different numbers if you happened to write -f options in a+different order, or if you moved includes around while cleaning up your+files.++ It can be surprising though; for example, it means that `alias'+directives do not affect parent or sibling files (see below).+++File: hledger.info, Node: Comment blocks, Next: Including other files, Prev: Directives and multiple files, Up: JOURNAL FORMAT++12.16 Comment blocks+====================++A line containing just `comment' starts a commented region of the file,+and a line containing just `end comment' (or the end of the current+file) ends it. See also comments.+++File: hledger.info, Node: Including other files, Next: Default year, Prev: Comment blocks, Up: JOURNAL FORMAT++12.17 Including other files+===========================++You can pull in the content of additional files by writing an include+directive, like this:+++include FILEPATH++ Only journal files can include, and only journal, timeclock or+timedot files can be included (not CSV files, currently).++ If the file path does not begin with a slash, it is relative to the+current file's folder.++ A tilde means home directory, eg: `include ~/main.journal'.++ The path may contain glob patterns to match multiple files, eg:+`include *.journal'.++ There is limited support for recursive wildcards: `**/' (the slash+is required) matches 0 or more subdirectories. It's not super convenient+since you have to avoid include cycles and including directories, but+this can be done, eg: `include */**/*.journal'.++ The path may also be prefixed to force a specific file format,+overriding the file extension (as described in hledger.1 -> Input+files): `include timedot:~/notes/2020*.md'.+++File: hledger.info, Node: Default year, Next: Declaring payees, Prev: Including other files, Up: JOURNAL FORMAT++12.18 Default year+==================++You can set a default year to be used for subsequent dates which don't+specify a year. This is a line beginning with `Y' followed by the year.+Eg:+++Y2009 ; set default year to 2009++12/15 ; equivalent to 2009/12/15+ expenses 1+ assets++Y2010 ; change default year to 2010++2009/1/30 ; specifies the year, not affected+ expenses 1+ assets++1/31 ; equivalent to 2010/1/31+ expenses 1+ assets+++File: hledger.info, Node: Declaring payees, Next: Declaring commodities, Prev: Default year, Up: JOURNAL FORMAT++12.19 Declaring payees+======================++The `payee' directive can be used to declare a limited set of payees+which may appear in transaction descriptions. The "payees" check will+report an error if any transaction refers to a payee that has not been+declared. Eg:+++payee Whole Foods+++File: hledger.info, Node: Declaring commodities, Next: Default commodity, Prev: Declaring payees, Up: JOURNAL FORMAT++12.20 Declaring commodities+===========================++The `commodity' directive has several functions:++ 1. It declares commodities which may be used in the journal. This is+ currently not enforced, but can serve as documentation.++ 2. It declares what decimal mark character (period or comma) to+ expect when parsing input - useful to disambiguate international+ number formats in your data. (Without this, hledger will parse+ both `1,000' and `1.000' as 1).++ 3. It declares a commodity's display style in output - decimal and+ digit group marks, number of decimal places, symbol placement etc.+++ You are likely to run into one of the problems solved by commodity+directives, sooner or later, so it's a good idea to just always use them+to declare your commodities.++ A commodity directive is just the word `commodity' followed by an+amount. It may be written on a single line, like this:+++; commodity EXAMPLEAMOUNT++; 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++ or on multiple lines, using the "format" subdirective. (In this case+the commodity symbol appears twice and should be the same in both+places.):+++; commodity SYMBOL+; format EXAMPLEAMOUNT++; 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+ format INR 1,00,00,000.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.++ Note hledger normally uses banker's rounding, so 0.5 displayed with+zero decimal digits is "0". (More at Commodity display style.)++* Menu:++* Commodity error checking::+++File: hledger.info, Node: Commodity error checking, Up: Declaring commodities++12.20.1 Commodity error checking+--------------------------------++In strict mode, enabled with the `-s'/`--strict' flag, hledger will+report an error if a commodity symbol is used that has not been+declared by a `commodity' directive. This works similarly to account+error checking, see the notes there for more details.+++File: hledger.info, Node: Default commodity, Next: Declaring market prices, Prev: Declaring commodities, Up: JOURNAL FORMAT++12.21 Default commodity+=======================++The `D' directive sets a default commodity, to be used for amounts+without a commodity symbol (ie, plain numbers). This commodity will be+applied to all subsequent commodity-less amounts, or until the next `D'+directive. (Note, this is different from Ledger's `D'.)++ For compatibility/historical reasons, `D' also acts like a+`commodity' directive, setting the commodity's display style (for+output) and decimal mark (for parsing input). As with `commodity', the+amount must always be written with a decimal mark (period or comma).+If both directives are used, `commodity''s style takes precedence.++ The syntax is `D AMOUNT'. Eg:+++; commodity-less amounts should be treated as dollars+; (and displayed with the dollar sign on the left, thousands separators and two decimal places)+D $1,000.00++1/1+ a 5 ; <- commodity-less amount, parsed as $5 and displayed as $5.00+ b+++File: hledger.info, Node: Declaring market prices, Next: Declaring accounts, Prev: Default commodity, Up: JOURNAL FORMAT++12.22 Declaring market prices+=============================++The `P' directive declares a market price, which is an exchange rate+between two commodities on a certain date. (In Ledger, they are called+"historical prices".) These are often obtained from a stock exchange,+cryptocurrency exchange, or the foreign exchange market.++ Here is the format:+++P DATE COMMODITYA COMMODITYBAMOUNT++ * DATE is a simple date++ * COMMODITYA is the symbol of the commodity being priced++ * COMMODITYBAMOUNT is an amount (symbol and quantity) in a second+ commodity, giving the price in commodity B of one unit of+ commodity A.++ These two market price directives say that one euro was worth 1.35 US+dollars during 2009, and $1.40 from 2010 onward:+++P 2009/1/1 € $1.35+P 2010/1/1 € $1.40++ The `-V', `-X' and `--value' flags use these market prices to show+amount values in another commodity. See Valuation.+++File: hledger.info, Node: Declaring accounts, Next: Rewriting accounts, Prev: Declaring market prices, Up: JOURNAL FORMAT++12.23 Declaring accounts+========================++`account' directives can be used to declare accounts (ie, the places+that amounts are transferred from and to). Though not required, these+declarations can provide several benefits:++ * They can document your intended chart of accounts, providing a+ reference.++ * They can help hledger know your accounts' types (asset, liability,+ equity, revenue, expense), useful for reports like balancesheet and+ incomestatement.++ * They control account display order in reports, allowing+ non-alphabetic sorting (eg Revenues to appear above Expenses).++ * They can store extra information about accounts (account numbers,+ notes, etc.)++ * They help with account name completion in the add command,+ hledger-iadd, hledger-web, ledger-mode etc.++ * In strict mode, they restrict which accounts may be posted to by+ transactions, which helps detect typos.++ The simplest form is just the word `account' followed by a+hledger-style account name, eg this account directive declares the+`assets:bank:checking' account:+++account assets:bank:checking++* Menu:++* Account error checking::+* Account comments::+* Account subdirectives::+* Account types::+* Account display order::+++File: hledger.info, Node: Account error checking, Next: Account comments, Up: Declaring accounts++12.23.1 Account error checking+------------------------------++By default, accounts come into existence when a transaction references+them by name. This is convenient, but it means hledger can't warn you+when you mis-spell an account name in the journal. Usually you'll find+the error later, as an extra account in balance reports, or an incorrect+balance when reconciling.++ In strict mode, enabled with the `-s'/`--strict' flag, hledger will+report an error if any transaction uses an account name that has not+been declared by an account directive. Some notes:++ * The declaration is case-sensitive; transactions must use the+ correct account name capitalisation.++ * The account directive's scope is "whole file and below" (see+ directives). This means it affects all of the current file, and any+ files it includes, but not parent or sibling files. The position of+ account directives within the file does not matter, though it's+ usual to put them at the top.++ * Accounts can only be declared in `journal' files (but will affect+ included files in other formats).++ * It's currently not possible to declare "all possible subaccounts"+ with a wildcard; every account posted to must be declared.+++File: hledger.info, Node: Account comments, Next: Account subdirectives, Prev: Account error checking, Up: Declaring accounts++12.23.2 Account comments+------------------------++Comments, beginning with a semicolon, can be added:++ * on the same line, *after two or more spaces* (because ; is allowed+ in account names)++ * on the next lines, indented++ An example of both:+++account assets:bank:checking ; same-line comment, note 2+ spaces before ;+ ; next-line comment+ ; another with tag, acctno:12345 (not used yet)++ Same-line comments are not supported by Ledger, or hledger <1.13.+++File: hledger.info, Node: Account subdirectives, Next: Account types, Prev: Account comments, Up: Declaring accounts++12.23.3 Account subdirectives+-----------------------------++We also allow (and ignore) Ledger-style indented subdirectives, just for+compatibility.:+++account assets:bank:checking+ format blah blah ; <- subdirective, ignored++ Here is the full syntax of account directives:+++account ACCTNAME [ACCTTYPE] [;COMMENT]+ [;COMMENTS]+ [LEDGER-STYLE SUBDIRECTIVES, IGNORED]+++File: hledger.info, Node: Account types, Next: Account display order, Prev: Account subdirectives, Up: Declaring accounts++12.23.4 Account types+---------------------++hledger recognises five main types of account, corresponding to the+account classes in the accounting equation:++ `Asset', `Liability', `Equity', `Revenue', `Expense'.++ These account types are important for controlling which accounts+appear in the balancesheet, balancesheetequity, incomestatement reports+(and probably for other things in future).++ Additionally, we recognise the `Cash' type, which is also an+`Asset', and which causes accounts to appear in the cashflow report.+("Cash" here means liquid assets, eg bank balances but typically not+investments or receivables.)++* Menu:++* Declaring account types::+* Auto-detected account types::+* Interference from auto-detected account types::+* Old account type syntax::+++File: hledger.info, Node: Declaring account types, Next: Auto-detected account types, Up: Account types++12.23.4.1 Declaring account types+.................................++Generally, to make these reports work you should declare your top-level+accounts and their types, using account directives with `type:' tags.++ The tag's value should be one of: `Asset', `Liability', `Equity',+`Revenue', `Expense', `Cash', `A', `L', `E', `R', `X', `C' (all case+insensitive). The type is inherited by all subaccounts except where+they override it. Here's a complete example:+++account assets ; type: Asset+account assets:bank ; type: Cash+account assets:cash ; type: Cash+account liabilities ; type: Liability+account equity ; type: Equity+account revenues ; type: Revenue+account expenses ; type: Expense+++File: hledger.info, Node: Auto-detected account types, Next: Interference from auto-detected account types, Prev: Declaring account types, Up: Account types++12.23.4.2 Auto-detected account types+.....................................++If you happen to use common english top-level account names, you may not+need to declare account types, as they will be detected automatically+using the following rules:++If name matches regular account type+expression: is:+------------------------------------------------- +`^assets?(:|$)' `Asset'+`^(debts?|liabilit(y|ies))(:|$)' `Liability'+`^equity(:|$)' `Equity'+`^(income|revenue)s?(:|$)' `Revenue'+`^expenses?(:|$)' `Expense'++If account type is `Asset' and name does not contain account type+regular expression: is:+-------------------------------------------------------------------------- +`(investment|receivable|:A/R|:fixed)' `Cash'++ Even so, explicit declarations may be a good idea, for clarity and+predictability.+++File: hledger.info, Node: Interference from auto-detected account types, Next: Old account type syntax, Prev: Auto-detected account types, Up: Account types++12.23.4.3 Interference from auto-detected account types+.......................................................++If you assign any account type, it's a good idea to assign all of them,+to prevent any confusion from mixing declared and auto-detected types.+Although it's unlikely to happen in real life, here's an example: with+the following journal, `balancesheetequity' shows "liabilities" in both+Liabilities and Equity sections. Declaring another account as+`type:Liability' would fix it:+++account liabilities ; type:Equity++2020-01-01+ assets 1+ liabilities 1+ equity -2+++File: hledger.info, Node: Old account type syntax, Prev: Interference from auto-detected account types, Up: Account types++12.23.4.4 Old account type syntax+.................................++In some hledger journals you might instead see this old syntax (the+letters ALERX, separated from the account name by two or more spaces);+this is deprecated and may be removed soon:+++account assets A+account liabilities L+account equity E+account revenues R+account expenses X+++File: hledger.info, Node: Account display order, Prev: Account types, Up: Declaring accounts++12.23.5 Account display order+-----------------------------++Account directives also set the order in which accounts are displayed,+eg in reports, the hledger-ui accounts screen, and the hledger-web+sidebar. By default accounts are listed in alphabetical order. But if+you have these account directives in the journal:+++account assets+account liabilities+account equity+account revenues+account expenses++ you'll see those accounts displayed in declaration order, not+alphabetically:+++$ hledger accounts -1+assets+liabilities+equity+revenues+expenses++ Undeclared accounts, if any, are displayed last, in alphabetical+order.++ Note that sorting is done at each level of the account tree (within+each group of sibling accounts under the same parent). And currently,+this directive:+++account other:zoo++ would influence the position of `zoo' among `other''s subaccounts,+but not the position of `other' among the top-level accounts. This+means:++ * you will sometimes declare parent accounts (eg `account other'+ above) that you don't intend to post to, just to customize their+ display order++ * sibling accounts stay together (you couldn't display `x:y' in+ between `a:b' and `a:c').+++File: hledger.info, Node: Rewriting accounts, Next: Default parent account, Prev: Declaring accounts, Up: JOURNAL FORMAT++12.24 Rewriting accounts+========================++You can define account alias rules which rewrite your account names, or+parts of them, before generating reports. This can be useful for:++ * expanding shorthand account names to their full form, allowing+ easier data entry and a less verbose journal++ * adapting old journals to your current chart of accounts++ * experimenting with new account organisations, like a new hierarchy+ or combining two accounts into one++ * customising reports++ Account aliases also rewrite account names in account directives.+They do not affect account names being entered via hledger add or+hledger-web.++ See also Rewrite account names.++* Menu:++* Basic aliases::+* Regex aliases::+* Combining aliases::+* Aliases and multiple files::+* end aliases::+++File: hledger.info, Node: Basic aliases, Next: Regex aliases, Up: Rewriting accounts++12.24.1 Basic aliases+---------------------++To set an account alias, use the `alias' directive in your journal+file. This affects all subsequent journal entries in the current file or+its included files. The spaces around the = are optional:+++alias OLD = NEW++ Or, you can use the `--alias 'OLD=NEW'' option on the command line.+This affects all entries. It's useful for trying out aliases+interactively.++ OLD and NEW are case sensitive full account names. hledger will+replace any occurrence of the old account name with the new one.+Subaccounts are also affected. Eg:+++alias checking = assets:bank:wells fargo:checking+; rewrites "checking" to "assets:bank:wells fargo:checking", or "checking:a" to "assets:bank:wells fargo:checking:a"+++File: hledger.info, Node: Regex aliases, Next: Combining aliases, Prev: Basic aliases, Up: Rewriting accounts++12.24.2 Regex aliases+---------------------++There is also a more powerful variant that uses a regular expression,+indicated by the forward slashes:+++alias /REGEX/ = REPLACEMENT++ or `--alias '/REGEX/=REPLACEMENT''.++ REGEX is a case-insensitive regular expression. 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. Eg:+++alias /^(.+):bank:([^:]+):(.*)/ = \1:\2 \3+; rewrites "assets:bank:wells fargo:checking" to "assets:wells fargo checking"++ 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.+++File: hledger.info, Node: Combining aliases, Next: Aliases and multiple files, Prev: Regex aliases, Up: Rewriting accounts++12.24.3 Combining aliases+-------------------------++You can define as many aliases as you like, using journal directives+and/or command line options.++ 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.++ 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:++ 1. `alias' directives preceding the journal entry, most recently+ parsed first (ie, reading upward from the journal entry, bottom to+ top)++ 2. `--alias' options, in the order they appeared on the command line+ (left to right).++ In other words, for (an account name in) a given journal entry:++ * the nearest alias declaration before/above the entry is applied+ first++ * the next alias before/above that will be be applied next, and so on++ * aliases defined after/below the entry do not affect it.++ 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.++ In case of trouble, adding `--debug=6' to the command line will show+which aliases are being applied when.+++File: hledger.info, Node: Aliases and multiple files, Next: end aliases, Prev: Combining aliases, Up: Rewriting accounts++12.24.4 Aliases and multiple files+----------------------------------++As explained at Directives and multiple files, `alias' directives do+not affect parent or sibling files. Eg in this command,+++hledger -f a.aliases -f b.journal++ account aliases defined in a.aliases will not affect b.journal.+Including the aliases doesn't work either:+++include a.aliases++2020-01-01 ; not affected by a.aliases+ foo 1+ bar++ This means that account aliases should usually be declared at the+start of your top-most file, like this:+++alias foo=Foo+alias bar=Bar++2020-01-01 ; affected by aliases above+ foo 1+ bar++include c.journal ; also affected+++File: hledger.info, Node: end aliases, Prev: Aliases and multiple files, Up: Rewriting accounts++12.24.5 `end aliases'+---------------------++You can clear (forget) all currently defined aliases with the `end+aliases' directive:+++end aliases+++File: hledger.info, Node: Default parent account, Next: Periodic transactions, Prev: Rewriting accounts, Up: JOURNAL FORMAT++12.25 Default parent account+============================++You can specify a parent account which will be prepended to all accounts+within a section of the journal. Use the `apply account' and `end apply+account' directives like so:+++apply account home++2010/1/1+ food $10+ cash++end apply account++ which is equivalent to:+++2010/01/01+ home:food $10+ home:cash $-10++ If `end apply account' is omitted, the effect lasts to the end of+the file. Included files are also affected, eg:+++apply account business+include biz.journal+end apply account+apply account personal+include personal.journal++ Prior to hledger 1.0, legacy `account' and `end' spellings were also+supported.++ A default parent account also affects account directives. It does not+affect account names being entered via hledger add or hledger-web. If+account aliases are present, they are applied after the default parent+account.+++File: hledger.info, Node: Periodic transactions, Next: Auto postings, Prev: Default parent account, Up: JOURNAL FORMAT++12.26 Periodic transactions+===========================++Periodic transaction rules describe transactions that recur. They allow+hledger to generate temporary future transactions to help with+forecasting, so you don't have to write out each one in the journal, and+it's easy to try out different forecasts.++ Periodic transactions can be a little tricky, so before you use them,+read this whole section - or at least these tips:++ 1. Two spaces accidentally added or omitted will cause you trouble -+ read about this below.++ 2. For troubleshooting, show the generated transactions with `hledger+ print --forecast tag:generated' or `hledger register --forecast+ tag:generated'.++ 3. Forecasted transactions will begin only after the last+ non-forecasted transaction's date.++ 4. Forecasted transactions will end 6 months from today, by default.+ See below for the exact start/end rules.++ 5. period expressions can be tricky. Their documentation needs+ improvement, but is worth studying.++ 6. Some period expressions with a repeating interval must begin on a+ natural boundary of that interval. Eg in `weekly from DATE', DATE+ must be a monday. `~ weekly from 2019/10/1' (a tuesday) will give+ an error.++ 7. 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's a bit inconsistent with the above.) Eg: `~ every 10th+ day of month from 2020/01', which is equivalent to `~ every 10th+ day of month from 2020/01/01', will be adjusted to start on+ 2019/12/10.++ Periodic transaction rules also have a second meaning: they are used+to define budget goals, shown in budget reports.++* Menu:++* Periodic rule syntax::+* Two spaces between period expression and description!::+* Forecasting with periodic transactions::+* Budgeting with periodic transactions::+++File: hledger.info, Node: Periodic rule syntax, Next: Two spaces between period expression and description!, Up: Periodic transactions++12.26.1 Periodic rule syntax+----------------------------++A periodic transaction rule looks like a normal journal entry, with the+date replaced by a tilde (`~') followed by a period expression+(mnemonic: `~' looks like a recurring sine wave.):+++~ monthly+ expenses:rent $2000+ assets:bank:checking++ There is an additional constraint on the period expression: the start+date must fall on a natural boundary of the interval. Eg `monthly from+2018/1/1' is valid, but `monthly from 2018/1/15' is not.++ Partial or relative dates (M/D, D, tomorrow, last week) in the period+expression can work (useful or not). They will be relative to today's+date, unless a Y default year directive is in effect, in which case they+will be relative to Y/1/1.+++File: hledger.info, Node: Two spaces between period expression and description!, Next: Forecasting with periodic transactions, Prev: Periodic rule syntax, Up: Periodic transactions++12.26.2 Two spaces between period expression and description!+-------------------------------------------------------------++If the period expression is followed by a transaction description, these+must be separated by *two or more spaces*. This helps hledger know+where the period expression ends, so that descriptions can not+accidentally alter their meaning, as in this example:+++; 2 or more spaces needed here, so the period is not understood as "every 2 months in 2020"+; ||+; vv+~ every 2 months in 2020, we will review+ assets:bank:checking $1500+ income:acme inc++ So,++ * Do write two spaces between your period expression and your+ transaction description, if any.++ * Don't accidentally write two spaces in the middle of your period+ expression.+++File: hledger.info, Node: Forecasting with periodic transactions, Next: Budgeting with periodic transactions, Prev: Two spaces between period expression and description!, Up: Periodic transactions++12.26.3 Forecasting with periodic transactions+----------------------------------------------++The `--forecast' flag activates any periodic transaction rules in the+journal. They will generate temporary recurring transactions, which are+not saved in the journal, but will appear in all reports (eg print).+This can be useful for estimating balances into the future, or+experimenting with different scenarios. Or, it can be used as a data+entry aid: describe recurring transactions, and every so often copy the+output of `print --forecast' into the journal.++ These transactions will have an extra tag indicating which periodic+rule generated them: `generated-transaction:~ PERIODICEXPR'. And a+similar, hidden tag (beginning with an underscore) which, because it's+never displayed by print, can be used to match transactions generated+"just now": `_generated-transaction:~ PERIODICEXPR'.++ Periodic transactions are generated within some forecast period. By+default, this++ * begins on the later of+ * the report start date if specified with -b/-p/date:++ * the day after the latest normal (non-periodic) transaction in+ the journal, or today if there are no normal transactions.++ * ends on the report end date if specified with -e/-p/date:, or 6+ months (180 days) from today.++ This means that periodic transactions will begin only after the+latest recorded transaction. And a recorded transaction dated in the+future can prevent generation of periodic transactions. (You can avoid+that by writing the future transaction as a one-time periodic rule+instead - put tilde before the date, eg `~ YYYY-MM-DD ...').++ Or, you can set your own arbitrary "forecast period", which can+overlap recorded transactions, and need not be in the future, by+providing an option argument, like `--forecast=PERIODEXPR'. Note the+equals sign is required, a space won't work. PERIODEXPR is a period+expression, which can specify the start date, end date, or both, like+in a `date:' query. (See also hledger.1 -> Report start & end date).+Some examples: `--forecast=202001-202004', `--forecast=jan-',+`--forecast=2020'.+++File: hledger.info, Node: Budgeting with periodic transactions, Prev: Forecasting with periodic transactions, Up: Periodic transactions++12.26.4 Budgeting with periodic transactions+--------------------------------------------++With the `--budget' flag, currently supported by the balance 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.++ See also: Budgeting and Forecasting.+++File: hledger.info, Node: Auto postings, Prev: Periodic transactions, Up: JOURNAL FORMAT++12.27 Auto postings+===================++"Automated postings" or "auto postings" are extra postings which get+added automatically to transactions which match certain queries, defined+by "auto posting rules", when you use the `--auto' flag.++ An auto posting rule looks a bit like a transaction:+++= QUERY+ ACCOUNT AMOUNT+ ...+ ACCOUNT [AMOUNT]++ except the first line is an equals sign (mnemonic: `=' suggests+matching), followed by a query (which matches existing postings), and+each "posting" line describes a posting to be generated, and the posting+amounts can be:++ * a normal amount with a commodity symbol, eg `$2'. This will be used+ as-is.++ * a number, eg `2'. The commodity symbol (if any) from the matched+ posting will be added to this.++ * a numeric multiplier, eg `*2' (a star followed by a number N). The+ matched posting's amount (and total price, if any) will be+ multiplied by N.++ * a multiplier with a commodity symbol, eg `*$2' (a star, number N,+ and symbol S). The matched posting's amount will be multiplied by+ N, and its commodity symbol will be replaced with S.++ Any query term containing spaces must be enclosed in single or double+quotes, as on the command line. Eg, note the quotes around the second+query term below:+++= expenses:groceries 'expenses:dining out'+ (budget:funds:dining out) *-1++ Some examples:+++; every time I buy food, schedule a dollar donation+= expenses:food+ (liabilities:charity) $-1++; when I buy a gift, also deduct that amount from a budget envelope subaccount+= expenses:gifts+ assets:checking:gifts *-1+ assets:checking *1++2017/12/1+ expenses:food $10+ assets:checking++2017/12/14+ expenses:gifts $20+ assets:checking+++$ hledger print --auto+2017-12-01+ expenses:food $10+ assets:checking+ (liabilities:charity) $-1++2017-12-14+ expenses:gifts $20+ assets:checking+ assets:checking:gifts -$20+ assets:checking $20++* Menu:++* Auto postings and multiple files::+* Auto postings and dates::+* Auto postings and transaction balancing / inferred amounts / balance assertions::+* Auto posting tags::+++File: hledger.info, Node: Auto postings and multiple files, Next: Auto postings and dates, Up: Auto postings++12.27.1 Auto postings and multiple files+----------------------------------------++An auto posting rule can affect any transaction in the current file, or+in any parent file or child file. Note, currently it will not affect+sibling files (when multiple `-f'/`--file' are used - see #1212).+++File: hledger.info, Node: Auto postings and dates, Next: Auto postings and transaction balancing / inferred amounts / balance assertions, Prev: Auto postings and multiple files, Up: Auto postings++12.27.2 Auto postings and dates+-------------------------------++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.+++File: hledger.info, Node: Auto postings and transaction balancing / inferred amounts / balance assertions, Next: Auto posting tags, Prev: Auto postings and dates, Up: Auto postings++12.27.3 Auto postings and transaction balancing / inferred amounts /+--------------------------------------------------------------------++balance assertions++ Currently, auto postings are added:++ * after missing amounts are inferred, and transactions are checked+ for balancedness,++ * but before balance assertions are checked.++ 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.+++File: hledger.info, Node: Auto posting tags, Prev: Auto postings and transaction balancing / inferred amounts / balance assertions, Up: Auto postings++12.27.4 Auto posting tags+-------------------------++Automated postings will have some extra tags:++ * `generated-posting:= QUERY' - shows this was generated by an auto+ posting rule, and the query++ * `_generated-posting:= QUERY' - a hidden tag, which does not appear+ in hledger's output. This can be used to match postings generated+ "just now", rather than generated in the past and saved to the+ journal.++ Also, any transaction that has been changed by auto posting rules+will have these tags added:++ * `modified:' - this transaction was modified++ * `_modified:' - a hidden tag not appearing in the comment; this+ transaction was modified "just now".+++File: hledger.info, Node: CSV FORMAT, Next: TIMECLOCK FORMAT, Prev: JOURNAL FORMAT, Up: Top++13 CSV FORMAT+*************++How hledger reads CSV data, and the CSV rules file format.++ hledger can read CSV files (Character Separated Value - usually+comma, semicolon, or tab) containing dated records as if they were+journal files, automatically converting each CSV record into a+transaction.++ (To learn about _writing_ CSV, see CSV output.)++ We describe each CSV file's format with a corresponding _rules+file_. By default this is named like the CSV file with a `.rules'+extension added. Eg when reading `FILE.csv', hledger also looks for+`FILE.csv.rules' in the same directory as `FILE.csv'. You can specify a+different rules file with the `--rules-file' option. If a rules file is+not found, hledger will create a sample rules file, which you'll need+to adjust.++ This file contains rules describing the CSV data (header line, fields+layout, date format etc.), and how to construct hledger journal entries+(transactions) from it. Often there will also be a list of conditional+rules for categorising transactions based on their descriptions. Here's+an overview of the CSV rules; these are described more fully below,+after the examples:++*`skip'* skip one or more header lines or matched+ CSV records+*`fields'* name CSV fields, assign them to hledger+ fields+*field assignment* assign a value to one hledger field,+ with interpolation+*`separator'* a custom field separator+*`if' block* apply some rules to CSV records matched+ by patterns+*`if' table* apply some rules to CSV records matched+ by patterns, alternate syntax+*`end'* skip the remaining CSV records+*`date-format'* how to parse dates in CSV records+*`decimal-mark'* the decimal mark used in CSV amounts, if+ ambiguous+*`newest-first'* disambiguate record order when there's+ only one date+*`include'* inline another CSV rules file+*`balance-type'* choose which type of balance assignments+ to use++ Note, for best error messages when reading CSV files, use a `.csv',+`.tsv' or `.ssv' file extension or file prefix - see File Extension+below.++ There's an introductory Convert CSV files tutorial on hledger.org.++* Menu:++* Examples::+* CSV rules::+* Tips::+++File: hledger.info, Node: Examples, Next: CSV rules, Up: CSV FORMAT++13.1 Examples+=============++Here are some sample hledger CSV rules files. See also the full+collection at:+https://github.com/simonmichael/hledger/tree/master/examples/csv++* Menu:++* Basic::+* Bank of Ireland::+* Amazon::+* Paypal::+++File: hledger.info, Node: Basic, Next: Bank of Ireland, Up: Examples++13.1.1 Basic+------------++At minimum, the rules file must identify the date and amount fields, and+often it also specifies the date format and how many header lines there+are. Here's a simple CSV file and a rules file for it:+++Date, Description, Id, Amount+12/11/2019, Foo, 123, 10.23+++# basic.csv.rules+skip 1+fields date, description, _, amount+date-format %d/%m/%Y+++$ hledger print -f basic.csv+2019-11-12 Foo+ expenses:unknown 10.23+ income:unknown -10.23++ Default account names are chosen, since we didn't set them.+++File: hledger.info, Node: Bank of Ireland, Next: Amazon, Prev: Basic, Up: Examples++13.1.2 Bank of Ireland+----------------------++Here's a CSV with two amount fields (Debit and Credit), and a balance+field, which we can use to add balance assertions, which is not+necessary but provides extra error checking:+++Date,Details,Debit,Credit,Balance+07/12/2012,LODGMENT 529898,,10.0,131.21+07/12/2012,PAYMENT,5,,126+++# bankofireland-checking.csv.rules++# skip the header line+skip++# name the csv fields, and assign some of them as journal entry fields+fields date, description, amount-out, amount-in, balance++# We generate balance assertions by assigning to "balance"+# above, but you may sometimes need to remove these because:+#+# - the CSV balance differs from the true balance,+# by up to 0.0000000000005 in my experience+#+# - it is sometimes calculated based on non-chronological ordering,+# eg when multiple transactions clear on the same day++# date is in UK/Ireland format+date-format %d/%m/%Y++# set the currency+currency EUR++# set the base account for all txns+account1 assets:bank:boi:checking+++$ hledger -f bankofireland-checking.csv print+2012-12-07 LODGMENT 529898+ assets:bank:boi:checking EUR10.0 = EUR131.2+ income:unknown EUR-10.0++2012-12-07 PAYMENT+ assets:bank:boi:checking EUR-5.0 = EUR126.0+ expenses:unknown EUR5.0++ The balance assertions don't raise an error above, because we're+reading directly from CSV, but they will be checked if these entries are+imported into a journal file.+++File: hledger.info, Node: Amazon, Next: Paypal, Prev: Bank of Ireland, Up: Examples++13.1.3 Amazon+-------------++Here we convert amazon.com order history, and use an if block to+generate a third posting if there's a fee. (In practice you'd probably+get this data from your bank instead, but it's an example.)+++"Date","Type","To/From","Name","Status","Amount","Fees","Transaction ID"+"Jul 29, 2012","Payment","To","Foo.","Completed","$20.00","$0.00","16000000000000DGLNJPI1P9B8DKPVHL"+"Jul 30, 2012","Payment","To","Adapteva, Inc.","Completed","$25.00","$1.00","17LA58JSKRD4HDGLNJPI1P9B8DKPVHL"+++# amazon-orders.csv.rules++# skip one header line+skip 1++# name the csv fields, and assign the transaction's date, amount and code.+# Avoided the "status" and "amount" hledger field names to prevent confusion.+fields date, _, toorfrom, name, amzstatus, amzamount, fees, code++# how to parse the date+date-format %b %-d, %Y++# combine two fields to make the description+description %toorfrom %name++# save the status as a tag+comment status:%amzstatus++# set the base account for all transactions+account1 assets:amazon+# leave amount1 blank so it can balance the other(s).+# I'm assuming amzamount excludes the fees, don't remember++# set a generic account2+account2 expenses:misc+amount2 %amzamount+# and maybe refine it further:+#include categorisation.rules++# add a third posting for fees, but only if they are non-zero.+if %fees [1-9]+ account3 expenses:fees+ amount3 %fees+++$ hledger -f amazon-orders.csv print+2012-07-29 (16000000000000DGLNJPI1P9B8DKPVHL) To Foo. ; status:Completed+ assets:amazon+ expenses:misc $20.00++2012-07-30 (17LA58JSKRD4HDGLNJPI1P9B8DKPVHL) To Adapteva, Inc. ; status:Completed+ assets:amazon+ expenses:misc $25.00+ expenses:fees $1.00+++File: hledger.info, Node: Paypal, Prev: Amazon, Up: Examples++13.1.4 Paypal+-------------++Here's a real-world rules file for (customised) Paypal CSV, with some+Paypal-specific rules, and a second rules file included:+++"Date","Time","TimeZone","Name","Type","Status","Currency","Gross","Fee","Net","From Email Address","To Email Address","Transaction ID","Item Title","Item ID","Reference Txn ID","Receipt ID","Balance","Note"+"10/01/2019","03:46:20","PDT","Calm Radio","Subscription Payment","Completed","USD","-6.99","0.00","-6.99","simon@joyful.com","memberships@calmradio.com","60P57143A8206782E","MONTHLY - $1 for the first 2 Months: Me - Order 99309. Item total: $1.00 USD first 2 months, then $6.99 / Month","","I-R8YLY094FJYR","","-6.99",""+"10/01/2019","03:46:20","PDT","","Bank Deposit to PP Account ","Pending","USD","6.99","0.00","6.99","","simon@joyful.com","0TU1544T080463733","","","60P57143A8206782E","","0.00",""+"10/01/2019","08:57:01","PDT","Patreon","PreApproved Payment Bill User Payment","Completed","USD","-7.00","0.00","-7.00","simon@joyful.com","support@patreon.com","2722394R5F586712G","Patreon* Membership","","B-0PG93074E7M86381M","","-7.00",""+"10/01/2019","08:57:01","PDT","","Bank Deposit to PP Account ","Pending","USD","7.00","0.00","7.00","","simon@joyful.com","71854087RG994194F","Patreon* Membership","","2722394R5F586712G","","0.00",""+"10/19/2019","03:02:12","PDT","Wikimedia Foundation, Inc.","Subscription Payment","Completed","USD","-2.00","0.00","-2.00","simon@joyful.com","tle@wikimedia.org","K9U43044RY432050M","Monthly donation to the Wikimedia Foundation","","I-R5C3YUS3285L","","-2.00",""+"10/19/2019","03:02:12","PDT","","Bank Deposit to PP Account ","Pending","USD","2.00","0.00","2.00","","simon@joyful.com","3XJ107139A851061F","","","K9U43044RY432050M","","0.00",""+"10/22/2019","05:07:06","PDT","Noble Benefactor","Subscription Payment","Completed","USD","10.00","-0.59","9.41","noble@bene.fac.tor","simon@joyful.com","6L8L1662YP1334033","Joyful Systems","","I-KC9VBGY2GWDB","","9.41",""+++# paypal-custom.csv.rules++# Tips:+# Export from Activity -> Statements -> Custom -> Activity download+# Suggested transaction type: "Balance affecting"+# Paypal's default fields in 2018 were:+# "Date","Time","TimeZone","Name","Type","Status","Currency","Gross","Fee","Net","From Email Address","To Email Address","Transaction ID","Shipping Address","Address Status","Item Title","Item ID","Shipping and Handling Amount","Insurance Amount","Sales Tax","Option 1 Name","Option 1 Value","Option 2 Name","Option 2 Value","Reference Txn ID","Invoice Number","Custom Number","Quantity","Receipt ID","Balance","Address Line 1","Address Line 2/District/Neighborhood","Town/City","State/Province/Region/County/Territory/Prefecture/Republic","Zip/Postal Code","Country","Contact Phone Number","Subject","Note","Country Code","Balance Impact"+# This rules file assumes the following more detailed fields, configured in "Customize report fields":+# "Date","Time","TimeZone","Name","Type","Status","Currency","Gross","Fee","Net","From Email Address","To Email Address","Transaction ID","Item Title","Item ID","Reference Txn ID","Receipt ID","Balance","Note"++fields date, time, timezone, description_, type, status_, currency, grossamount, feeamount, netamount, fromemail, toemail, code, itemtitle, itemid, referencetxnid, receiptid, balance, note++skip 1++date-format %-m/%-d/%Y++# ignore some paypal events+if+In Progress+Temporary Hold+Update to+ skip++# add more fields to the description+description %description_ %itemtitle++# save some other fields as tags+comment itemid:%itemid, fromemail:%fromemail, toemail:%toemail, time:%time, type:%type, status:%status_++# convert to short currency symbols+if %currency USD+ currency $+if %currency EUR+ currency E+if %currency GBP+ currency P++# generate postings++# the first posting will be the money leaving/entering my paypal account+# (negative means leaving my account, in all amount fields)+account1 assets:online:paypal+amount1 %netamount++# the second posting will be money sent to/received from other party+# (account2 is set below)+amount2 -%grossamount++# if there's a fee, add a third posting for the money taken by paypal.+if %feeamount [1-9]+ account3 expenses:banking:paypal+ amount3 -%feeamount+ comment3 business:++# choose an account for the second posting++# override the default account names:+# if the amount is positive, it's income (a debit)+if %grossamount ^[^-]+ account2 income:unknown+# if negative, it's an expense (a credit)+if %grossamount ^-+ account2 expenses:unknown++# apply common rules for setting account2 & other tweaks+include common.rules++# apply some overrides specific to this csv++# Transfers from/to bank. These are usually marked Pending,+# which can be disregarded in this case.+if+Bank Account+Bank Deposit to PP Account+ description %type for %referencetxnid %itemtitle+ account2 assets:bank:wf:pchecking+ account1 assets:online:paypal++# Currency conversions+if Currency Conversion+ account2 equity:currency conversion+++# common.rules++if+darcs+noble benefactor+ account2 revenues:foss donations:darcshub+ comment2 business:++if+Calm Radio+ account2 expenses:online:apps++if+electronic frontier foundation+Patreon+wikimedia+Advent of Code+ account2 expenses:dues++if Google+ account2 expenses:online:apps+ description google | music+++$ hledger -f paypal-custom.csv print+2019-10-01 (60P57143A8206782E) Calm Radio MONTHLY - $1 for the first 2 Months: Me - Order 99309. Item total: $1.00 USD first 2 months, then $6.99 / Month ; itemid:, fromemail:simon@joyful.com, toemail:memberships@calmradio.com, time:03:46:20, type:Subscription Payment, status:Completed+ assets:online:paypal $-6.99 = $-6.99+ expenses:online:apps $6.99++2019-10-01 (0TU1544T080463733) Bank Deposit to PP Account for 60P57143A8206782E ; itemid:, fromemail:, toemail:simon@joyful.com, time:03:46:20, type:Bank Deposit to PP Account, status:Pending+ assets:online:paypal $6.99 = $0.00+ assets:bank:wf:pchecking $-6.99++2019-10-01 (2722394R5F586712G) Patreon Patreon* Membership ; itemid:, fromemail:simon@joyful.com, toemail:support@patreon.com, time:08:57:01, type:PreApproved Payment Bill User Payment, status:Completed+ assets:online:paypal $-7.00 = $-7.00+ expenses:dues $7.00++2019-10-01 (71854087RG994194F) Bank Deposit to PP Account for 2722394R5F586712G Patreon* Membership ; itemid:, fromemail:, toemail:simon@joyful.com, time:08:57:01, type:Bank Deposit to PP Account, status:Pending+ assets:online:paypal $7.00 = $0.00+ assets:bank:wf:pchecking $-7.00++2019-10-19 (K9U43044RY432050M) Wikimedia Foundation, Inc. Monthly donation to the Wikimedia Foundation ; itemid:, fromemail:simon@joyful.com, toemail:tle@wikimedia.org, time:03:02:12, type:Subscription Payment, status:Completed+ assets:online:paypal $-2.00 = $-2.00+ expenses:dues $2.00+ expenses:banking:paypal ; business:++2019-10-19 (3XJ107139A851061F) Bank Deposit to PP Account for K9U43044RY432050M ; itemid:, fromemail:, toemail:simon@joyful.com, time:03:02:12, type:Bank Deposit to PP Account, status:Pending+ assets:online:paypal $2.00 = $0.00+ assets:bank:wf:pchecking $-2.00++2019-10-22 (6L8L1662YP1334033) Noble Benefactor Joyful Systems ; itemid:, fromemail:noble@bene.fac.tor, toemail:simon@joyful.com, time:05:07:06, type:Subscription Payment, status:Completed+ assets:online:paypal $9.41 = $9.41+ revenues:foss donations:darcshub $-10.00 ; business:+ expenses:banking:paypal $0.59 ; business:+++File: hledger.info, Node: CSV rules, Next: Tips, Prev: Examples, Up: CSV FORMAT++13.2 CSV rules+==============++The following kinds of rule can appear in the rules file, in any order.+Blank lines and lines beginning with `#' or `;' are ignored.++* Menu:++* skip::+* fields::+* field assignment::+* separator::+* if block::+* if table::+* end::+* date-format::+* decimal-mark::+* newest-first::+* include::+* balance-type::+++File: hledger.info, Node: skip, Next: fields, Up: CSV rules++13.2.1 `skip'+-------------+++skip N++The word "skip" followed by a number (or no number, meaning 1) tells+hledger to ignore this many non-empty lines preceding the CSV data.+(Empty/blank lines are skipped automatically.) You'll need this whenever+your CSV data contains header lines.++ It also has a second purpose: it can be used inside if blocks to+ignore certain CSV records (described below).+++File: hledger.info, Node: fields, Next: field assignment, Prev: skip, Up: CSV rules++13.2.2 `fields'+---------------+++fields FIELDNAME1, FIELDNAME2, ...++A fields list (the word "fields" followed by comma-separated field+names) is the quick way to assign CSV field values to hledger fields. It+does two things:++ 1. it names the CSV fields. This is optional, but can be convenient+ later for interpolating them.++ 2. when you use a standard hledger field name, it assigns the CSV+ value to that part of the hledger transaction.+++ Here's an example that says "use the 1st, 2nd and 4th fields as the+transaction's date, description and amount; name the last two fields for+later reference; and ignore the others":+++fields date, description, , amount, , , somefield, anotherfield++ Field names may not contain whitespace. Fields you don't care about+can be left unnamed. Currently there must be least two items (there+must be at least one comma).++ Note, always use comma in the fields list, even if your CSV uses+another separator character.++ Here are the standard hledger field/pseudo-field names. For more+about the transaction parts they refer to, see the manual for hledger's+journal format.++* Menu:++* Transaction field names::+* Posting field names::+++File: hledger.info, Node: Transaction field names, Next: Posting field names, Up: fields++13.2.2.1 Transaction field names+................................++`date', `date2', `status', `code', `description', `comment' can be used+to form the transaction's first line.+++File: hledger.info, Node: Posting field names, Prev: Transaction field names, Up: fields++13.2.2.2 Posting field names+............................++account `accountN', where N is 1 to 99, causes a posting to be+generated, with that account name.++ Most often there are two postings, so you'll want to set `account1'+and `account2'. Typically `account1' is associated with the CSV file,+and is set once with a top-level assignment, while `account2' is set+based on each transaction's description, and in conditional blocks.++ If a posting's account name is left unset but its amount is set (see+below), a default account name will be chosen (like "expenses:unknown"+or "income:unknown"). amount `amountN' sets posting N's amount. If the+CSV uses separate fields for inflows and outflows, you can use+`amountN-in' and `amountN-out' instead. By assigning to `amount1',+`amount2', ... etc. you can generate anywhere from 0 to 99 postings.++ There is also an older, unnumbered form of these names, suitable for+2-posting transactions, which sets both posting 1's and (negated)+posting 2's amount: `amount', or `amount-in' and `amount-out'. This is+still supported because it keeps pre-hledger-1.17 csv rules files+working, and because it can be more succinct, and because it converts+posting 2's amount to cost if there's a transaction price, which can be+useful.++ If you have an existing rules file using the unnumbered form, you+might want to use the numbered form in certain conditional blocks,+without having to update and retest all the old rules. To facilitate+this, posting 1 ignores `amount'/`amount-in'/`amount-out' if any of+`amount1'/`amount1-in'/`amount1-out' are assigned, and posting 2+ignores them if any of `amount2'/`amount2-in'/`amount2-out' are+assigned, avoiding conflicts. currency If the CSV has the currency+symbol in a separate field (ie, not part of the amount field), you can+use `currencyN' to prepend it to posting N's amount. Or, `currency'+with no number affects all postings. balance `balanceN' sets a balance+assertion amount (or if the posting amount is left empty, a balance+assignment) on posting N.++ Also, for compatibility with hledger <1.17: `balance' with no number+is equivalent to `balance1'.++ You can adjust the type of assertion/assignment with the+`balance-type' rule (see below). comment Finally, `commentN' sets a+comment on the Nth posting. Comments can also contain tags, as usual.++ See TIPS below for more about setting amounts and currency.+++File: hledger.info, Node: field assignment, Next: separator, Prev: fields, Up: CSV rules++13.2.3 field assignment+-----------------------+++HLEDGERFIELDNAME FIELDVALUE++Instead of or in addition to a fields list, you can use a "field+assignment" rule to set the value of a single hledger field, by writing+its name (any of the standard hledger field names above) followed by a+text value. The value may contain interpolated CSV fields, referenced by+their 1-based position in the CSV record (`%N'), or by the name they+were given in the fields list (`%CSVFIELDNAME'). Some examples:+++# set the amount to the 4th CSV field, with " USD" appended+amount %4 USD++# combine three fields to make a comment, containing note: and date: tags+comment note: %somefield - %anotherfield, date: %1++ Interpolation strips outer whitespace (so a CSV value like `" 1 "'+becomes `1' when interpolated) (#1051). See TIPS below for more about+referencing other fields.+++File: hledger.info, Node: separator, Next: if block, Prev: field assignment, Up: CSV rules++13.2.4 `separator'+------------------++You can use the `separator' rule to read other kinds of+character-separated data. The argument is any single separator+character, or the words `tab' or `space' (case insensitive). Eg, for+comma-separated values (CSV):+++separator ,++ or for semicolon-separated values (SSV):+++separator ;++ or for tab-separated values (TSV):+++separator TAB++ If the input file has a `.csv', `.ssv' or `.tsv' file extension (or+a `csv:', `ssv:', `tsv:' prefix), the appropriate separator will be+inferred automatically, and you won't need this rule.+++File: hledger.info, Node: if block, Next: if table, Prev: separator, Up: CSV rules++13.2.5 `if' block+-----------------+++if MATCHER+ RULE++if+MATCHER+MATCHER+MATCHER+ RULE+ RULE++Conditional blocks ("if blocks") are a block of rules that are applied+only to CSV records which match certain patterns. They are often used+for customising account names based on transaction descriptions.++* Menu:++* Matching the whole record::+* Matching individual fields::+* Combining matchers::+* Rules applied on successful match::+++File: hledger.info, Node: Matching the whole record, Next: Matching individual fields, Up: if block++13.2.5.1 Matching the whole record+..................................++Each MATCHER can be a record matcher, which looks like this:+++REGEX++ REGEX is a case-insensitive regular expression which tries to match+anywhere within the CSV record. It is a POSIX ERE (extended regular+expression) that also supports GNU word boundaries (`\b', `\B', `\<',+`\>'), and nothing else. If you have trouble, be sure to check our+https://hledger.org/hledger.html#regular-expressions doc.++ Important note: the record that is matched is not the original+record, but a synthetic one, with any enclosing double quotes (but not+enclosing whitespace) removed, and always comma-separated (which means+that a field containing a comma will appear like two fields). Eg, if the+original record is `2020-01-01; "Acme, Inc."; 1,000', the REGEX will+actually see `2020-01-01,Acme, Inc., 1,000').+++File: hledger.info, Node: Matching individual fields, Next: Combining matchers, Prev: Matching the whole record, Up: if block++13.2.5.2 Matching individual fields+...................................++Or, MATCHER can be a field matcher, like this:+++%CSVFIELD REGEX++ which matches just the content of a particular CSV field. CSVFIELD+is a percent sign followed by the field's name or column number, like+`%date' or `%1'.+++File: hledger.info, Node: Combining matchers, Next: Rules applied on successful match, Prev: Matching individual fields, Up: if block++13.2.5.3 Combining matchers+...........................++A single matcher can be written on the same line as the "if"; or+multiple matchers can be written on the following lines, non-indented.+Multiple matchers are OR'd (any one of them can match), unless one+begins with an `&' symbol, in which case it is AND'ed with the previous+matcher.+++if+MATCHER+& MATCHER+ RULE+++File: hledger.info, Node: Rules applied on successful match, Prev: Combining matchers, Up: if block++13.2.5.4 Rules applied on successful match+..........................................++After the patterns there should be one or more rules to apply, all+indented by at least one space. Three kinds of rule are allowed in+conditional blocks:++ * field assignments (to set a hledger field)++ * skip (to skip the matched CSV record)++ * end (to skip all remaining CSV records).++ Examples:+++# if the CSV record contains "groceries", set account2 to "expenses:groceries"+if groceries+ account2 expenses:groceries+++# if the CSV record contains any of these patterns, set account2 and comment as shown+if+monthly service fee+atm transaction fee+banking thru software+ account2 expenses:business:banking+ comment XXX deductible ? check it+++File: hledger.info, Node: if table, Next: end, Prev: if block, Up: CSV rules++13.2.6 `if' table+-----------------+++if,CSVFIELDNAME1,CSVFIELDNAME2,...,CSVFIELDNAMEn+MATCHER1,VALUE11,VALUE12,...,VALUE1n+MATCHER2,VALUE21,VALUE22,...,VALUE2n+MATCHER3,VALUE31,VALUE32,...,VALUE3n+<empty line>++Conditional tables ("if tables") are a different syntax to specify field+assignments that will be applied only to CSV records which match certain+patterns.++ MATCHER could be either field or record matcher, as described above.+When MATCHER matches, values from that row would be assigned to the CSV+fields named on the `if' line, in the same order.++ Therefore `if' table is exactly equivalent to a sequence of of `if'+blocks:+++if MATCHER1+ CSVFIELDNAME1 VALUE11+ CSVFIELDNAME2 VALUE12+ ...+ CSVFIELDNAMEn VALUE1n++if MATCHER2+ CSVFIELDNAME1 VALUE21+ CSVFIELDNAME2 VALUE22+ ...+ CSVFIELDNAMEn VALUE2n++if MATCHER3+ CSVFIELDNAME1 VALUE31+ CSVFIELDNAME2 VALUE32+ ...+ CSVFIELDNAMEn VALUE3n++ Each line starting with MATCHER should contain enough (possibly+empty) values for all the listed fields.++ Rules would be checked and applied in the order they are listed in+the table and, like with `if' blocks, later rules (in the same or+another table) or `if' blocks could override the effect of any rule.++ Instead of ',' you can use a variety of other non-alphanumeric+characters as a separator. First character after `if' is taken to be+the separator for the rest of the table. It is the responsibility of+the user to ensure that separator does not occur inside MATCHERs and+values - there is no way to escape separator.++ Example:+++if,account2,comment+atm transaction fee,expenses:business:banking,deductible? check it+%description groceries,expenses:groceries,+2020/01/12.*Plumbing LLC,expenses:house:upkeep,emergency plumbing call-out+++File: hledger.info, Node: end, Next: date-format, Prev: if table, Up: CSV rules++13.2.7 `end'+------------++This rule can be used inside if blocks (only), to make hledger stop+reading this CSV file and move on to the next input file, or to command+execution. Eg:+++# ignore everything following the first empty record+if ,,,,+ end+++File: hledger.info, Node: date-format, Next: decimal-mark, Prev: end, Up: CSV rules++13.2.8 `date-format'+--------------------+++date-format DATEFMT++This is a helper for the `date' (and `date2') fields. If your CSV dates+are not formatted like `YYYY-MM-DD', `YYYY/MM/DD' or `YYYY.MM.DD',+you'll need to add a date-format rule describing them with a strptime+date parsing pattern, which must parse the CSV date value completely.+Some examples:+++# MM/DD/YY+date-format %m/%d/%y+++# D/M/YYYY+# The - makes leading zeros optional.+date-format %-d/%-m/%Y+++# YYYY-Mmm-DD+date-format %Y-%h-%d+++# M/D/YYYY HH:MM AM some other junk+# Note the time and junk must be fully parsed, though only the date is used.+date-format %-m/%-d/%Y %l:%M %p some other junk++ For the supported strptime syntax, see:+https://hackage.haskell.org/package/time/docs/Data-Time-Format.html#v:formatTime+++File: hledger.info, Node: decimal-mark, Next: newest-first, Prev: date-format, Up: CSV rules++13.2.9 `decimal-mark'+---------------------+++decimal-mark .++or:+++decimal-mark ,++ hledger automatically accepts either period or comma as a decimal+mark when parsing numbers (cf Amounts). However if any numbers in the+CSV contain digit group marks, such as thousand-separating commas, you+should declare the decimal mark explicitly with this rule, to avoid+misparsed numbers.+++File: hledger.info, Node: newest-first, Next: include, Prev: decimal-mark, Up: CSV rules++13.2.10 `newest-first'+----------------------++hledger always sorts the generated transactions by date. Transactions on+the same date should appear in the same order as their CSV records, as+hledger can usually auto-detect whether the CSV's normal order is oldest+first or newest first. But if all of the following are true:++ * the CSV might sometimes contain just one day of data (all records+ having the same date)++ * the CSV records are normally in reverse chronological order+ (newest at the top)++ * and you care about preserving the order of same-day transactions++ then, you should add the `newest-first' rule as a hint. Eg:+++# tell hledger explicitly that the CSV is normally newest first+newest-first+++File: hledger.info, Node: include, Next: balance-type, Prev: newest-first, Up: CSV rules++13.2.11 `include'+-----------------+++include RULESFILE++This includes the contents of another CSV rules file at this point.+`RULESFILE' is an absolute file path or a path relative to the current+file's directory. This can be useful for sharing common rules between+several rules files, eg:+++# someaccount.csv.rules++## someaccount-specific rules+fields date,description,amount+account1 assets:someaccount+account2 expenses:misc++## common rules+include categorisation.rules+++File: hledger.info, Node: balance-type, Prev: include, Up: CSV rules++13.2.12 `balance-type'+----------------------++Balance assertions generated by assigning to balanceN are of the simple+`=' type by default, which is a single-commodity, subaccount-excluding+assertion. You may find the subaccount-including variants more useful,+eg if you have created some virtual subaccounts of checking to help+with budgeting. You can select a different type of assertion with the+`balance-type' rule:+++# balance assertions will consider all commodities and all subaccounts+balance-type ==*++ Here are the balance assertion types for quick reference:+++= single commodity, exclude subaccounts+=* single commodity, include subaccounts+== multi commodity, exclude subaccounts+==* multi commodity, include subaccounts+++File: hledger.info, Node: Tips, Prev: CSV rules, Up: CSV FORMAT++13.3 Tips+=========++* Menu:++* Rapid feedback::+* Valid CSV::+* File Extension::+* Reading multiple CSV files::+* Valid transactions::+* Deduplicating importing::+* Setting amounts::+* Amount signs::+* Setting currency/commodity::+* Amount decimal places::+* Referencing other fields::+* How CSV rules are evaluated::+++File: hledger.info, Node: Rapid feedback, Next: Valid CSV, Up: Tips++13.3.1 Rapid feedback+---------------------++It's a good idea to get rapid feedback while creating/troubleshooting+CSV rules. Here's a good way, using entr from+http://eradman.com/entrproject :+++$ ls foo.csv* | entr bash -c 'echo ----; hledger -f foo.csv print desc:SOMEDESC'++ A desc: query (eg) is used to select just one, or a few,+transactions of interest. "bash -c" is used to run multiple commands,+so we can echo a separator each time the command re-runs, making it+easier to read the output.+++File: hledger.info, Node: Valid CSV, Next: File Extension, Prev: Rapid feedback, Up: Tips++13.3.2 Valid CSV+----------------++hledger accepts CSV conforming to RFC 4180. When CSV values are enclosed+in quotes, note:++ * they must be double quotes (not single quotes)++ * spaces outside the quotes are not allowed+++File: hledger.info, Node: File Extension, Next: Reading multiple CSV files, Prev: Valid CSV, Up: Tips++13.3.3 File Extension+---------------------++To help hledger identify the format and show the right error messages,+CSV/SSV/TSV files should normally be named with a `.csv', `.ssv' or+`.tsv' filename extension. Or, the file path should be prefixed with+`csv:', `ssv:' or `tsv:'. Eg:+++$ hledger -f foo.ssv print++ or:+++$ cat foo | hledger -f ssv:- foo++ You can override the file extension with a separator rule if needed.+See also: Input files in the hledger manual.+++File: hledger.info, Node: Reading multiple CSV files, Next: Valid transactions, Prev: File Extension, Up: Tips++13.3.4 Reading multiple CSV files+---------------------------------++If you use multiple `-f' options to read multiple CSV files at once,+hledger will look for a correspondingly-named rules file for each CSV+file. But if you use the `--rules-file' option, that rules file will be+used for all the CSV files.+++File: hledger.info, Node: Valid transactions, Next: Deduplicating importing, Prev: Reading multiple CSV files, Up: Tips++13.3.5 Valid transactions+-------------------------++After reading a CSV file, hledger post-processes and validates the+generated journal entries as it would for a journal file - balancing+them, applying balance assignments, and canonicalising amount styles.+Any errors at this stage will be reported in the usual way, displaying+the problem entry.++ There is one exception: balance assertions, if you have generated+them, will not be checked, since normally these will work only when the+CSV data is part of the main journal. If you do need to check balance+assertions generated from CSV right away, pipe into another hledger:+++$ hledger -f file.csv print | hledger -f- print+++File: hledger.info, Node: Deduplicating importing, Next: Setting amounts, Prev: Valid transactions, Up: Tips++13.3.6 Deduplicating, importing+-------------------------------++When you download a CSV file periodically, eg to get your latest bank+transactions, the new file may overlap with the old one, containing some+of the same records.++ The import command will (a) detect the new transactions, and (b)+append just those transactions to your main journal. It is idempotent,+so you don't have to remember how many times you ran it or with which+version of the CSV. (It keeps state in a hidden `.latest.FILE.csv'+file.) This is the easiest way to import CSV data. Eg:+++# download the latest CSV files, then run this command.+# Note, no -f flags needed here.+$ hledger import *.csv [--dry]++ This method works for most CSV files. (Where records have a stable+chronological order, and new records appear only at the new end.)++ A number of other tools and workflows, hledger-specific and+otherwise, exist for converting, deduplicating, classifying and+managing CSV data. See:++ * https://hledger.org -> sidebar -> real world setups++ * https://plaintextaccounting.org -> data import/conversion+++File: hledger.info, Node: Setting amounts, Next: Amount signs, Prev: Deduplicating importing, Up: Tips++13.3.7 Setting amounts+----------------------++Some tips on using the amount-setting rules discussed above.++ Here are the ways to set a posting's amount:++ 1. *If the CSV has a single amount field:*+ Assign (via a fields list or a field assignment) to `amountN'. This+ sets the Nth posting's amount. N is usually 1 or 2 but can go up+ to 99.++ 2. *If the CSV has separate Debit and Credit amount fields:*+ Assign to `amountN-in' and `amountN-out'. This sets posting N's+ amount to whichever of these has a non-zero value, guessing an+ appropriate sign.++ * *If hledger guesses the wrong sign:*+ Prepend a minus sign to flip it. Eg:+++ fields date, description, amount-in, amount-out+ amount-out -%amount-out++ * *If both fields contain a non-zero value:*+ The `amountN-in'/`amountN-out' rules require that each CSV+ record has a non-zero value in exactly one of the two fields,+ so that hledger knows which to choose. So these would all be+ rejected:+++ "", ""+ "0", "0"+ "1", "none"++ If your CSV has amount values like this, use conditional+ rules instead. For example, to make hledger to choose the+ value containing non-zero digits:+++ fields date, description, in, out+ if %in [1-9]+ amount1 %in+ if %out [1-9]+ amount1 %out+++ 3. *Using the old numberless syntax:*+ Assign to `amount' (or to `amount-in' and `amount-out'). This+ sets posting 1's and posting 2's amounts (and converts posting 2's+ amount to cost). This is supported for backwards compatibility (and+ occasional convenience).++ 4. *If the CSV has the balance instead of the transaction amount:*+ Assign to `balanceN', which sets posting N's amount indirectly via+ a balance assignment. (Old syntax: `balance', equivalent to+ `balance1'.)++ * *If hledger guesses the wrong default account name:*+ When setting the amount via balance assertion, hledger may+ guess the wrong default account name. So, set the account+ name explicitly, eg:+++ fields date, description, balance1+ account1 assets:checking+++++File: hledger.info, Node: Amount signs, Next: Setting currency/commodity, Prev: Setting amounts, Up: Tips++13.3.8 Amount signs+-------------------++There is some special handling for amount signs, to simplify parsing and+sign-flipping:++ * *If an amount value begins with a plus sign:*+ that will be removed: `+AMT' becomes `AMT'++ * *If an amount value is parenthesised:*+ it will be de-parenthesised and sign-flipped: `(AMT)' becomes+ `-AMT'++ * *If an amount value has two minus signs (or two sets of+ parentheses, or a minus sign and parentheses):*+ they cancel out and will be removed: `--AMT' or `-(AMT)' becomes+ `AMT'++ * *If an amount value contains just a sign (or just a set of+ parentheses):*+ that is removed, making it an empty value. `"+"' or `"-"' or+ `"()"' becomes `""'.++++File: hledger.info, Node: Setting currency/commodity, Next: Amount decimal places, Prev: Amount signs, Up: Tips++13.3.9 Setting currency/commodity+---------------------------------++If the currency/commodity symbol is included in the CSV's amount+field(s):+++2020-01-01,foo,$123.00++ you don't have to do anything special for the commodity symbol, it+will be assigned as part of the amount. Eg:+++fields date,description,amount+++2020-01-01 foo+ expenses:unknown $123.00+ income:unknown $-123.00++ If the currency is provided as a separate CSV field:+++2020-01-01,foo,USD,123.00++ You can assign that to the `currency' pseudo-field, which has the+special effect of prepending itself to every amount in the transaction+(on the left, with no separating space):+++fields date,description,currency,amount+++2020-01-01 foo+ expenses:unknown USD123.00+ income:unknown USD-123.00++ Or, you can use a field assignment to construct the amount yourself,+with more control. Eg to put the symbol on the right, and separated by a+space:+++fields date,description,cur,amt+amount %amt %cur+++2020-01-01 foo+ expenses:unknown 123.00 USD+ income:unknown -123.00 USD++ Note we used a temporary field name (`cur') that is not `currency' -+that would trigger the prepending effect, which we don't want here.+++File: hledger.info, Node: Amount decimal places, Next: Referencing other fields, Prev: Setting currency/commodity, Up: Tips++13.3.10 Amount decimal places+-----------------------------++Like amounts in a journal file, the amounts generated by CSV rules like+`amount1' influence commodity display styles, such as the number of+decimal places displayed in reports.++ The original amounts as written in the CSV file do not affect display+style (because we don't yet reliably know their commodity).+++File: hledger.info, Node: Referencing other fields, Next: How CSV rules are evaluated, Prev: Amount decimal places, Up: Tips++13.3.11 Referencing other fields+--------------------------------++In field assignments, you can interpolate only CSV fields, not hledger+fields. In the example below, there's both a CSV field and a hledger+field named amount1, but %amount1 always means the CSV field, not the+hledger field:+++# Name the third CSV field "amount1"+fields date,description,amount1++# Set hledger's amount1 to the CSV amount1 field followed by USD+amount1 %amount1 USD++# Set comment to the CSV amount1 (not the amount1 assigned above)+comment %amount1++ Here, since there's no CSV amount1 field, %amount1 will produce a+literal "amount1":+++fields date,description,csvamount+amount1 %csvamount USD+# Can't interpolate amount1 here+comment %amount1++ When there are multiple field assignments to the same hledger field,+only the last one takes effect. Here, comment's value will be be B, or C+if "something" is matched, but never A:+++comment A+comment B+if something+ comment C+++File: hledger.info, Node: How CSV rules are evaluated, Prev: Referencing other fields, Up: Tips++13.3.12 How CSV rules are evaluated+-----------------------------------++Here's how to think of CSV rules being evaluated (if you really need+to). First,++ * `include' - all includes are inlined, from top to bottom, depth+ first. (At each include point the file is inlined and scanned for+ further includes, recursively, before proceeding.)++ Then "global" rules are evaluated, top to bottom. If a rule is+repeated, the last one wins:++ * `skip' (at top level)++ * `date-format'++ * `newest-first'++ * `fields' - names the CSV fields, optionally sets up initial+ assignments to hledger fields++ Then for each CSV record in turn:++ * test all `if' blocks. If any of them contain a `end' rule, skip+ all remaining CSV records. Otherwise if any of them contain a+ `skip' rule, skip that many CSV records. If there are multiple+ matched `skip' rules, the first one wins.++ * collect all field assignments at top level and in matched `if'+ blocks. When there are multiple assignments for a field, keep only+ the last one.++ * compute a value for each hledger field - either the one that was+ assigned to it (and interpolate the %CSVFIELDNAME references), or a+ default++ * generate a synthetic hledger transaction from these values.++ This is all part of the CSV reader, one of several readers hledger+can use to parse input files. When all files have been read+successfully, the transactions are passed as input to whichever hledger+command the user specified.+++File: hledger.info, Node: TIMECLOCK FORMAT, Next: TIMEDOT FORMAT, Prev: CSV FORMAT, Up: Top++14 TIMECLOCK FORMAT+*******************++The time logging format of timeclock.el, as read by hledger.++ hledger can read time logs in timeclock format. As with Ledger, these+are (a subset of) timeclock.el's format, containing clock-in and+clock-out entries as in the example below. The date is a simple date.+The time format is HH:MM[:SS][+-ZZZZ]. Seconds and timezone are+optional. The timezone, if present, must be four digits and is ignored+(currently the time is always interpreted as a local time).+++i 2015/03/30 09:00:00 some:account name optional description after two spaces+o 2015/03/30 09:20:00+i 2015/03/31 22:21:45 another account+o 2015/04/01 02:00:34++ hledger treats each clock-in/clock-out pair as a transaction posting+some number of hours to an account. Or if the session spans more than+one day, it is split into several transactions, one for each day. For+the above time log, `hledger print' generates these journal entries:+++$ hledger -f t.timeclock print+2015-03-30 * optional description after two spaces+ (some:account name) 0.33h++2015-03-31 * 22:21-23:59+ (another account) 1.64h++2015-04-01 * 00:00-02:00+ (another account) 2.01h++ Here is a sample.timeclock to download and some queries to try:+++$ hledger -f sample.timeclock balance # current time balances+$ hledger -f sample.timeclock register -p 2009/3 # sessions in march 2009+$ hledger -f sample.timeclock register -p weekly --depth 1 --empty # time summary by week++ To generate time logs, ie to clock in and clock out, you could:++ * use emacs and the built-in timeclock.el, or the extended+ timeclock-x.el and perhaps the extras in ledgerutils.el++ * at the command line, use these bash aliases: `shell alias+ ti="echo i `date '+%Y-%m-%d %H:%M:%S'` \$* >>$TIMELOG" alias+ to="echo o `date '+%Y-%m-%d %H:%M:%S'` >>$TIMELOG"'++ * or use the old `ti' and `to' scripts in the ledger 2.x repository.+ These rely on a "timeclock" executable which I think is just the+ ledger 2 executable renamed.++++File: hledger.info, Node: TIMEDOT FORMAT, Next: COMMON TASKS, Prev: TIMECLOCK FORMAT, Up: Top++15 TIMEDOT FORMAT+*****************++hledger's human-friendly time logging format.++ Timedot is a plain text format for logging dated, categorised+quantities (of time, usually), supported by hledger. It is convenient+for approximate and retroactive time logging, eg when the real-time+clock-in/out required with a timeclock file is too precise or too+interruptive. It can be formatted like a bar chart, making clear at a+glance where time was spent.++ Though called "timedot", this format is read by hledger as+commodityless quantities, so it could be used to represent dated+quantities other than time. In the docs below we'll assume it's time.++ A timedot file contains a series of day entries. A day entry begins+with a non-indented hledger-style simple date (Y-M-D, Y/M/D, Y.M.D..)+Any additional text on the same line is used as a transaction+description for this day.++ This is followed by optionally-indented timelog items for that day,+one per line. Each timelog item is a note, usually a+hledger:style:account:name representing a time category, followed by two+or more spaces, and a quantity. Each timelog item generates a hledger+transaction.++ Quantities can be written as:++ * dots: a sequence of dots (.) representing quarter hours. Spaces may+ optionally be used for grouping. Eg: .... ..++ * an integral or decimal number, representing hours. Eg: 1.5++ * an integral or decimal number immediately followed by a unit symbol+ `s', `m', `h', `d', `w', `mo', or `y', representing seconds,+ minutes, hours, days weeks, months or years respectively. Eg: 90m.+ The following equivalencies are assumed, currently: 1m = 60s, 1h =+ 60m, 1d = 24h, 1w = 7d, 1mo = 30d, 1y=365d.+++ There is some flexibility allowing notes and todo lists to be kept+right in the time log, if needed:++ * Blank lines and lines beginning with `#' or `;' are ignored.++ * Lines not ending with a double-space and quantity are parsed as+ items taking no time, which will not appear in balance reports by+ default. (Add -E to see them.)++ * Org mode headlines (lines beginning with one or more `*' followed+ by a space) can be used as date lines or timelog items (the stars+ are ignored). Also all org headlines before the first date line+ are ignored. This means org users can manage their timelog as an+ org outline (eg using org-mode/orgstruct-mode in Emacs), for+ organisation, faster navigation, controlling visibility etc.+++ Examples:+++# on this day, 6h was spent on client work, 1.5h on haskell FOSS work, etc.+2016/2/1+inc:client1 .... .... .... .... .... ....+fos:haskell .... ..+biz:research .++2016/2/2+inc:client1 .... ....+biz:research .+++2016/2/3+inc:client1 4+fos:hledger 3+biz:research 1+++* Time log+** 2020-01-01+*** adm:time .+*** adm:finance .+++* 2020 Work Diary+** Q1+*** 2020-02-29+**** DONE+0700 yoga+**** UNPLANNED+**** BEGUN+hom:chores+ cleaning ...+ water plants+ outdoor - one full watering can+ indoor - light watering+**** TODO+adm:planning: trip+*** LATER++ Reporting:+++$ hledger -f t.timedot print date:2016/2/2+2016-02-02 *+ (inc:client1) 2.00++2016-02-02 *+ (biz:research) 0.25+++$ hledger -f t.timedot bal --daily --tree+Balance changes in 2016-02-01-2016-02-03:++ || 2016-02-01d 2016-02-02d 2016-02-03d+============++========================================+ biz || 0.25 0.25 1.00+ research || 0.25 0.25 1.00+ fos || 1.50 0 3.00+ haskell || 1.50 0 0+ hledger || 0 0 3.00+ inc || 6.00 2.00 4.00+ client1 || 6.00 2.00 4.00+------------++----------------------------------------+ || 7.75 2.25 8.00++ I prefer to use period for separating account components. We can make+this work with an account alias:+++2016/2/4+fos.hledger.timedot 4+fos.ledger ..+++$ hledger -f t.timedot --alias /\\./=: bal date:2016/2/4 --tree+ 4.50 fos+ 4.00 hledger:timedot+ 0.50 ledger+--------------------+ 4.50++ Here is a sample.timedot.+++File: hledger.info, Node: COMMON TASKS, Next: LIMITATIONS, Prev: TIMEDOT FORMAT, Up: Top++16 COMMON TASKS+***************++Here are some quick examples of how to do some basic tasks with hledger.+For more details, see the reference section below, the+hledger_journal(5) manual, or the more extensive docs at+https://hledger.org.++* Menu:++* Getting help::+* Constructing command lines::+* Starting a journal file::+* Setting opening balances::+* Recording transactions::+* Reconciling::+* Reporting::+* Migrating to a new file::+++File: hledger.info, Node: Getting help, Next: Constructing command lines, Up: COMMON TASKS++16.1 Getting help+=================+++$ hledger # show available commands+$ hledger --help # show common options+$ hledger CMD --help # show common and command options, and command help+$ hledger help # show available manuals/topics+$ hledger help hledger # show hledger manual as info/man/text (auto-chosen)+$ hledger help journal --man # show the journal manual as a man page+$ hledger help --help # show more detailed help for the help command++Find more docs, chat, mail list, reddit, issue tracker:+https://hledger.org#help-feedback+++File: hledger.info, Node: Constructing command lines, Next: Starting a journal file, Prev: Getting help, Up: COMMON TASKS++16.2 Constructing command lines+===============================++hledger has an extensive and powerful command line interface. We strive+to keep it simple and ergonomic, but you may run into one of the+confusing real world details described in OPTIONS, below. If that+happens, here are some tips that may help:++ * command-specific options must go after the command (it's fine to+ put all options there) (`hledger CMD OPTS ARGS')++ * running add-on executables directly simplifies command line parsing+ (`hledger-ui OPTS ARGS')++ * enclose "problematic" args in single quotes++ * if needed, also add a backslash to hide regular expression+ metacharacters from the shell++ * to see how a misbehaving command is being parsed, add `--debug=2'.+++File: hledger.info, Node: Starting a journal file, Next: Setting opening balances, Prev: Constructing command lines, Up: COMMON TASKS++16.3 Starting a journal file+============================++hledger looks for your accounting data in a journal file,+`$HOME/.hledger.journal' by default:+++$ hledger stats+The hledger journal file "/Users/simon/.hledger.journal" was not found.+Please create it first, eg with "hledger add" or a text editor.+Or, specify an existing journal file with -f or LEDGER_FILE.++ You can override this by setting the `LEDGER_FILE' environment+variable. It's a good practice to keep this important file under version+control, and to start a new file each year. So you could do something+like this:+++$ mkdir ~/finance+$ cd ~/finance+$ git init+Initialized empty Git repository in /Users/simon/finance/.git/+$ touch 2020.journal+$ echo "export LEDGER_FILE=$HOME/finance/2020.journal" >> ~/.bashrc+$ source ~/.bashrc+$ hledger stats+Main file : /Users/simon/finance/2020.journal+Included files :+Transactions span : to (0 days)+Last transaction : none+Transactions : 0 (0.0 per day)+Transactions last 30 days: 0 (0.0 per day)+Transactions last 7 days : 0 (0.0 per day)+Payees/descriptions : 0+Accounts : 0 (depth 0)+Commodities : 0 ()+Market prices : 0 ()+++File: hledger.info, Node: Setting opening balances, Next: Recording transactions, Prev: Starting a journal file, Up: COMMON TASKS++16.4 Setting opening balances+=============================++Pick a starting date for which you can look up the balances of some+real-world assets (bank accounts, wallet..) and liabilities (credit+cards..).++ To avoid a lot of data entry, you may want to start with just one or+two accounts, like your checking account or cash wallet; and pick a+recent starting date, like today or the start of the week. You can+always come back later and add more accounts and older transactions, eg+going back to january 1st.++ Add an opening balances transaction to the journal, declaring the+balances on this date. Here are two ways to do it:++ * The first way: open the journal in any text editor and save an+ entry like this:+++ 2020-01-01 * opening balances+ assets:bank:checking $1000 = $1000+ assets:bank:savings $2000 = $2000+ assets:cash $100 = $100+ liabilities:creditcard $-50 = $-50+ equity:opening/closing balances++ These are start-of-day balances, ie whatever was in the account at+ the end of the previous day.++ The * after the date is an optional status flag. Here it means+ "cleared & confirmed".++ The currency symbols are optional, but usually a good idea as+ you'll be dealing with multiple currencies sooner or later.++ The = amounts are optional balance assertions, providing extra+ error checking.++ * The second way: run `hledger add' and follow the prompts to record+ a similar transaction:+++ $ hledger add+ Adding transactions to journal file /Users/simon/finance/2020.journal+ Any command line arguments will be used as defaults.+ Use tab key to complete, readline keys to edit, enter to accept defaults.+ An optional (CODE) may follow transaction dates.+ An optional ; COMMENT may follow descriptions or amounts.+ If you make a mistake, enter < at any prompt to go one step backward.+ To end a transaction, enter . when prompted.+ To quit, enter . at a date prompt or press control-d or control-c.+ Date [2020-02-07]: 2020-01-01+ Description: * opening balances+ Account 1: assets:bank:checking+ Amount 1: $1000+ Account 2: assets:bank:savings+ Amount 2 [$-1000]: $2000+ Account 3: assets:cash+ Amount 3 [$-3000]: $100+ Account 4: liabilities:creditcard+ Amount 4 [$-3100]: $-50+ Account 5: equity:opening/closing balances+ Amount 5 [$-3050]:+ Account 6 (or . or enter to finish this transaction): .+ 2020-01-01 * opening balances+ assets:bank:checking $1000+ assets:bank:savings $2000+ assets:cash $100+ liabilities:creditcard $-50+ equity:opening/closing balances $-3050++ Save this transaction to the journal ? [y]:+ Saved.+ Starting the next transaction (. or ctrl-D/ctrl-C to quit)+ Date [2020-01-01]: .+++ If you're using version control, this could be a good time to commit+the journal. Eg:+++$ git commit -m 'initial balances' 2020.journal+++File: hledger.info, Node: Recording transactions, Next: Reconciling, Prev: Setting opening balances, Up: COMMON TASKS++16.5 Recording transactions+===========================++As you spend or receive money, you can record these transactions using+one of the methods above (text editor, hledger add) or by using the+hledger-iadd or hledger-web add-ons, or by using the import command to+convert CSV data downloaded from your bank.++ Here are some simple transactions, see the hledger_journal(5) manual+and hledger.org for more ideas:+++2020/1/10 * gift received+ assets:cash $20+ income:gifts++2020.1.12 * farmers market+ expenses:food $13+ assets:cash++2020-01-15 paycheck+ income:salary+ assets:bank:checking $1000+++File: hledger.info, Node: Reconciling, Next: Reporting, Prev: Recording transactions, Up: COMMON TASKS++16.6 Reconciling+================++Periodically you should reconcile - compare your hledger-reported+balances against external sources of truth, like bank statements or your+bank's website - to be sure that your ledger accurately represents the+real-world balances (and, that the real-world institutions have not made+a mistake!). This gets easy and fast with (1) practice and (2)+frequency. If you do it daily, it can take 2-10 minutes. If you let it+pile up, expect it to take longer as you hunt down errors and+discrepancies.++ A typical workflow:++ 1. Reconcile cash. Count what's in your wallet. Compare with what+ hledger reports (`hledger bal cash'). If they are different, try to+ remember the missing transaction, or look for the error in the+ already-recorded transactions. A register report can be helpful+ (`hledger reg cash'). If you can't find the error, add an+ adjustment transaction. Eg if you have $105 after the above, and+ can't explain the missing $2, it could be:+++ 2020-01-16 * adjust cash+ assets:cash $-2 = $105+ expenses:misc++ 2. Reconcile checking. Log in to your bank's website. Compare today's+ (cleared) balance with hledger's cleared balance (`hledger bal+ checking -C'). If they are different, track down the error or+ record the missing transaction(s) or add an adjustment+ transaction, similar to the above. Unlike the cash case, you can+ usually compare the transaction history and running balance from+ your bank with the one reported by `hledger reg checking -C'. This+ will be easier if you generally record transaction dates quite+ similar to your bank's clearing dates.++ 3. Repeat for other asset/liability accounts.+++ Tip: instead of the register command, use hledger-ui to see a+live-updating register while you edit the journal: `hledger-ui --watch+--register checking -C'++ After reconciling, it could be a good time to mark the reconciled+transactions' status as "cleared and confirmed", if you want to track+that, by adding the `*' marker. Eg in the paycheck transaction above,+insert `*' between `2020-01-15' and `paycheck'++ If you're using version control, this can be another good time to+commit:+++$ git commit -m 'txns' 2020.journal+++File: hledger.info, Node: Reporting, Next: Migrating to a new file, Prev: Reconciling, Up: COMMON TASKS++16.7 Reporting+==============++Here are some basic reports.++ Show all transactions:+++$ hledger print+2020-01-01 * opening balances+ assets:bank:checking $1000+ assets:bank:savings $2000+ assets:cash $100+ liabilities:creditcard $-50+ equity:opening/closing balances $-3050++2020-01-10 * gift received+ assets:cash $20+ income:gifts++2020-01-12 * farmers market+ expenses:food $13+ assets:cash++2020-01-15 * paycheck+ income:salary+ assets:bank:checking $1000++2020-01-16 * adjust cash+ assets:cash $-2 = $105+ expenses:misc++ Show account names, and their hierarchy:+++$ hledger accounts --tree+assets+ bank+ checking+ savings+ cash+equity+ opening/closing balances+expenses+ food+ misc+income+ gifts+ salary+liabilities+ creditcard++ Show all account totals:+++$ hledger balance+ $4105 assets+ $4000 bank+ $2000 checking+ $2000 savings+ $105 cash+ $-3050 equity:opening/closing balances+ $15 expenses+ $13 food+ $2 misc+ $-1020 income+ $-20 gifts+ $-1000 salary+ $-50 liabilities:creditcard+--------------------+ 0++ Show only asset and liability balances, as a flat list, limited to+depth 2:+++$ hledger bal assets liabilities --flat -2+ $4000 assets:bank+ $105 assets:cash+ $-50 liabilities:creditcard+--------------------+ $4055++ Show the same thing without negative numbers, formatted as a simple+balance sheet:+++$ hledger bs --flat -2+Balance Sheet 2020-01-16++ || 2020-01-16+========================++============+ Assets ||+------------------------++------------+ assets:bank || $4000+ assets:cash || $105+------------------------++------------+ || $4105+========================++============+ Liabilities ||+------------------------++------------+ liabilities:creditcard || $50+------------------------++------------+ || $50+========================++============+ Net: || $4055++ The final total is your "net worth" on the end date. (Or use `bse'+for a full balance sheet with equity.)++ Show income and expense totals, formatted as an income statement:+++hledger is+Income Statement 2020-01-01-2020-01-16++ || 2020-01-01-2020-01-16+===============++=======================+ Revenues ||+---------------++-----------------------+ income:gifts || $20+ income:salary || $1000+---------------++-----------------------+ || $1020+===============++=======================+ Expenses ||+---------------++-----------------------+ expenses:food || $13+ expenses:misc || $2+---------------++-----------------------+ || $15+===============++=======================+ Net: || $1005++ The final total is your net income during this period.++ Show transactions affecting your wallet, with running total:+++$ hledger register cash+2020-01-01 opening balances assets:cash $100 $100+2020-01-10 gift received assets:cash $20 $120+2020-01-12 farmers market assets:cash $-13 $107+2020-01-16 adjust cash assets:cash $-2 $105++ Show weekly posting counts as a bar chart:+++$ hledger activity -W+2019-12-30 *****+2020-01-06 ****+2020-01-13 ****+++File: hledger.info, Node: Migrating to a new file, Prev: Reporting, Up: COMMON TASKS++16.8 Migrating to a new file+============================++At the end of the year, you may want to continue your journal in a new+file, so that old transactions don't slow down or clutter your reports,+and to help ensure the integrity of your accounting history. See the+close command.++ If using version control, don't forget to `git add' the new file.+++File: hledger.info, Node: LIMITATIONS, Next: TROUBLESHOOTING, Prev: COMMON TASKS, Up: Top++17 LIMITATIONS+**************++The need to precede add-on command options with `--' when invoked from+hledger is awkward.++ When input data contains non-ascii characters, a suitable system+locale must be configured (or there will be an unhelpful error). Eg on+POSIX, set LANG to something other than C.++ In a Microsoft Windows CMD window, non-ascii characters and colours+are not supported.++ On Windows, non-ascii characters may not display correctly when+running a hledger built in CMD in MSYS/CYGWIN, or vice-versa.++ In a Cygwin/MSYS/Mintty window, the tab key is not supported in+hledger add.++ Not all of Ledger's journal file syntax is supported. See file format+differences.++ On large data files, hledger is slower and uses more memory than+Ledger.+++File: hledger.info, Node: TROUBLESHOOTING, Prev: LIMITATIONS, Up: Top++18 TROUBLESHOOTING+******************++Here are some issues you might encounter when you run hledger (and+remember you can also seek help from the IRC channel, mail list or bug+tracker):++ *Successfully installed, but "No command 'hledger' found"*+stack and cabal install binaries into a special directory, which should+be added to your PATH environment variable. Eg on unix-like systems,+that is ~/.local/bin and ~/.cabal/bin respectively.++ *I set a custom LEDGER_FILE, but hledger is still using the default+file*+`LEDGER_FILE' should be a real environment variable, not just a shell+variable. The command `env | grep LEDGER_FILE' should show it. You may+need to use `export'. Here's an explanation.++ *Getting errors like "Illegal byte sequence" or "Invalid or+incomplete multibyte or wide character" or "commitAndReleaseBuffer:+invalid argument (invalid character)"*+Programs compiled with GHC (hledger, haskell build tools, etc.) need to+have a UTF-8-aware locale configured in the environment, otherwise they+will fail with these kinds of errors when they encounter non-ascii+characters.++ To fix it, set the LANG environment variable to some locale which+supports UTF-8. The locale you choose must be installed on your system.++ Here's an example of setting LANG temporarily, on Ubuntu GNU/Linux:+++$ file my.journal+my.journal: UTF-8 Unicode text # the file is UTF8-encoded+$ echo $LANG+C # LANG is set to the default locale, which does not support UTF8+$ locale -a # which locales are installed ?+C+en_US.utf8 # here's a UTF8-aware one we can use+POSIX+$ LANG=en_US.utf8 hledger -f my.journal print # ensure it is used for this command++ If available, `C.UTF-8' will also work. If your preferred locale+isn't listed by `locale -a', you might need to install it. Eg on+Ubuntu/Debian:+++$ apt-get install language-pack-fr+$ locale -a+C+en_US.utf8+fr_BE.utf8+fr_CA.utf8+fr_CH.utf8+fr_FR.utf8+fr_LU.utf8+POSIX+$ LANG=fr_FR.utf8 hledger -f my.journal print++ Here's how you could set it permanently, if you use a bash shell:+++$ echo "export LANG=en_US.utf8" >>~/.bash_profile+$ bash --login++ Exact spelling and capitalisation may be important. Note the+difference on MacOS (`UTF-8', not `utf8'). Some platforms (eg ubuntu)+allow variant spellings, but others (eg macos) require it to be exact:+++$ locale -a | grep -iE en_us.*utf+en_US.UTF-8+$ LANG=en_US.UTF-8 hledger -f my.journal print++++Tag Table:+Node: Top76+Node: OPTIONS2502+Ref: #options2603+Node: General options2745+Ref: #general-options2870+Node: Command options6439+Ref: #command-options6590+Node: Command arguments6989+Ref: #command-arguments7147+Node: Special characters8025+Ref: #special-characters8188+Node: Single escaping shell metacharacters8351+Ref: #single-escaping-shell-metacharacters8592+Node: Double escaping regular expression metacharacters8994+Ref: #double-escaping-regular-expression-metacharacters9305+Node: Triple escaping for add-on commands9831+Ref: #triple-escaping-for-add-on-commands10091+Node: Less escaping10737+Ref: #less-escaping10891+Node: Unicode characters11217+Ref: #unicode-characters11382+Node: Regular expressions12791+Ref: #regular-expressions12931+Node: ENVIRONMENT14672+Ref: #environment14788+Node: DATA FILES15770+Ref: #data-files15889+Node: Data formats16430+Ref: #data-formats16548+Node: Multiple files18030+Ref: #multiple-files18172+Node: Strict mode18642+Ref: #strict-mode18757+Node: TIME PERIODS19407+Ref: #time-periods19524+Node: Smart dates19622+Ref: #smart-dates19748+Node: Report start & end date21052+Ref: #report-start-end-date21227+Node: Report intervals22771+Ref: #report-intervals22939+Node: Period expressions23327+Ref: #period-expressions23467+Node: DEPTH27846+Ref: #depth27946+Node: QUERIES28277+Ref: #queries28376+Node: COSTING32328+Ref: #costing32431+Node: VALUATION32704+Ref: #valuation32812+Node: -V Value33535+Ref: #v-value33659+Node: -X Value in specified commodity33853+Ref: #x-value-in-specified-commodity34046+Node: Valuation date34195+Ref: #valuation-date34357+Node: Market prices34794+Ref: #market-prices34975+Node: --infer-market-price market prices from transactions36157+Ref: #infer-market-price-market-prices-from-transactions36421+Node: Valuation commodity37770+Ref: #valuation-commodity37980+Node: Simple valuation examples39205+Ref: #simple-valuation-examples39401+Node: --value Flexible valuation40063+Ref: #value-flexible-valuation40265+Node: More valuation examples41907+Ref: #more-valuation-examples42108+Node: Effect of valuation on reports44114+Ref: #effect-of-valuation-on-reports44296+Node: PIVOTING52193+Ref: #pivoting52298+Node: OUTPUT53977+Ref: #output54079+Node: Output destination54130+Ref: #output-destination54263+Node: Output format54688+Ref: #output-format54811+Node: COMMANDS56974+Ref: #commands57086+Node: accounts60476+Ref: #accounts60576+Node: activity61268+Ref: #activity61380+Node: add61762+Ref: #add61865+Node: aregister64660+Ref: #aregister64774+Node: aregister and custom posting dates66969+Ref: #aregister-and-custom-posting-dates67135+Node: balance67956+Ref: #balance68075+Node: balance features68988+Ref: #balance-features69128+Node: Simple balance report70798+Ref: #simple-balance-report70980+Node: Filtered balance report72428+Ref: #filtered-balance-report72615+Node: List or tree mode72912+Ref: #list-or-tree-mode73080+Node: Depth limiting74397+Ref: #depth-limiting74563+Node: Multi-period balance report75321+Ref: #multi-period-balance-report75513+Node: Sorting by amount77769+Ref: #sorting-by-amount77938+Node: Percentages78400+Ref: #percentages78556+Node: Balance change end balance79488+Ref: #balance-change-end-balance79679+Node: Balance report types81103+Ref: #balance-report-types81293+Node: Useful balance reports85457+Ref: #useful-balance-reports85638+Node: Budget report86722+Ref: #budget-report86906+Node: Budget report start date92075+Ref: #budget-report-start-date92244+Node: Nested budgets93571+Ref: #nested-budgets93720+Node: Customising single-period balance reports97107+Ref: #customising-single-period-balance-reports97316+Node: balancesheet99473+Ref: #balancesheet99611+Node: balancesheetequity100909+Ref: #balancesheetequity101060+Node: cashflow102440+Ref: #cashflow102564+Node: check103710+Ref: #check103815+Node: Basic checks104448+Ref: #basic-checks104566+Node: Strict checks105099+Ref: #strict-checks105240+Node: Other checks105544+Ref: #other-checks105684+Node: Custom checks106037+Ref: #custom-checks106157+Node: close106575+Ref: #close106679+Node: close usage108196+Ref: #close-usage108291+Node: codes111099+Ref: #codes111209+Node: commodities111922+Ref: #commodities112051+Node: descriptions112133+Ref: #descriptions112263+Node: diff112567+Ref: #diff112675+Node: files113720+Ref: #files113822+Node: help113968+Ref: #help114070+Node: import114793+Ref: #import114909+Node: Deduplication115771+Ref: #deduplication115896+Node: Import testing117784+Ref: #import-testing117949+Node: Importing balance assignments118439+Ref: #importing-balance-assignments118645+Node: Commodity display styles119292+Ref: #commodity-display-styles119465+Node: incomestatement119594+Ref: #incomestatement119729+Node: notes121030+Ref: #notes121145+Node: payees121512+Ref: #payees121620+Node: prices122146+Ref: #prices122254+Node: print122593+Ref: #print122705+Node: print-unique128015+Ref: #print-unique128143+Node: register128429+Ref: #register128558+Node: Custom register output133002+Ref: #custom-register-output133133+Node: register-match134470+Ref: #register-match134606+Node: rewrite134954+Ref: #rewrite135071+Node: Re-write rules in a file136977+Ref: #re-write-rules-in-a-file137140+Node: Diff output format138290+Ref: #diff-output-format138473+Node: rewrite vs print --auto139565+Ref: #rewrite-vs.-print---auto139725+Node: roi140275+Ref: #roi140375+Node: Semantics of --inv and --pnl142010+Ref: #semantics-of---inv-and---pnl142192+Node: IRR and TWR explained144038+Ref: #irr-and-twr-explained144198+Node: stats147260+Ref: #stats147361+Node: tags148148+Ref: #tags148248+Node: test148765+Ref: #test148881+Node: About add-on commands149626+Ref: #about-add-on-commands149763+Node: JOURNAL FORMAT150896+Ref: #journal-format151024+Node: Transactions153204+Ref: #transactions153319+Node: Dates154336+Ref: #dates154452+Node: Simple dates154517+Ref: #simple-dates154637+Node: Secondary dates155144+Ref: #secondary-dates155292+Node: Posting dates156626+Ref: #posting-dates156749+Node: Status158118+Ref: #status158235+Node: Description159940+Ref: #description160070+Node: Payee and note160388+Ref: #payee-and-note160496+Node: Comments160830+Ref: #comments160952+Node: Tags162145+Ref: #tags-1162256+Node: Postings163654+Ref: #postings163778+Node: Virtual postings164802+Ref: #virtual-postings164913+Node: Account names166215+Ref: #account-names166352+Node: Amounts166838+Ref: #amounts166973+Node: Decimal marks digit group marks168032+Ref: #decimal-marks-digit-group-marks168221+Node: Commodity display style169568+Ref: #commodity-display-style169756+Node: Rounding171782+Ref: #rounding171900+Node: Transaction prices172310+Ref: #transaction-prices172476+Node: Lot prices lot dates174906+Ref: #lot-prices-lot-dates175089+Node: Balance assertions175576+Ref: #balance-assertions175754+Node: Assertions and ordering176784+Ref: #assertions-and-ordering176966+Node: Assertions and included files177663+Ref: #assertions-and-included-files177900+Node: Assertions and multiple -f options178231+Ref: #assertions-and-multiple--f-options178481+Node: Assertions and commodities178612+Ref: #assertions-and-commodities178838+Node: Assertions and prices179993+Ref: #assertions-and-prices180201+Node: Assertions and subaccounts180642+Ref: #assertions-and-subaccounts180865+Node: Assertions and virtual postings181189+Ref: #assertions-and-virtual-postings181425+Node: Assertions and precision181566+Ref: #assertions-and-precision181753+Node: Balance assignments182018+Ref: #balance-assignments182188+Node: Balance assignments and prices183351+Ref: #balance-assignments-and-prices183517+Node: Directives183743+Ref: #directives183906+Node: Directives and multiple files189311+Ref: #directives-and-multiple-files189507+Node: Comment blocks190169+Ref: #comment-blocks190346+Node: Including other files190521+Ref: #including-other-files190695+Node: Default year191619+Ref: #default-year191777+Node: Declaring payees192184+Ref: #declaring-payees192350+Node: Declaring commodities192595+Ref: #declaring-commodities192776+Node: Commodity error checking194617+Ref: #commodity-error-checking194767+Node: Default commodity195023+Ref: #default-commodity195203+Node: Declaring market prices196088+Ref: #declaring-market-prices196277+Node: Declaring accounts197135+Ref: #declaring-accounts197315+Node: Account error checking198522+Ref: #account-error-checking198688+Node: Account comments199865+Ref: #account-comments200049+Node: Account subdirectives200475+Ref: #account-subdirectives200660+Node: Account types200975+Ref: #account-types201149+Node: Declaring account types201884+Ref: #declaring-account-types202063+Node: Auto-detected account types202714+Ref: #auto-detected-account-types202955+Node: Interference from auto-detected account types203854+Ref: #interference-from-auto-detected-account-types204131+Node: Old account type syntax204614+Ref: #old-account-type-syntax204811+Node: Account display order205112+Ref: #account-display-order205272+Node: Rewriting accounts206423+Ref: #rewriting-accounts206602+Node: Basic aliases207361+Ref: #basic-aliases207497+Node: Regex aliases208199+Ref: #regex-aliases208361+Node: Combining aliases209081+Ref: #combining-aliases209264+Node: Aliases and multiple files210541+Ref: #aliases-and-multiple-files210740+Node: end aliases211321+Ref: #end-aliases211468+Node: Default parent account211570+Ref: #default-parent-account211760+Node: Periodic transactions212644+Ref: #periodic-transactions212827+Node: Periodic rule syntax214744+Ref: #periodic-rule-syntax214944+Node: Two spaces between period expression and description!215647+Ref: #two-spaces-between-period-expression-and-description215960+Node: Forecasting with periodic transactions216645+Ref: #forecasting-with-periodic-transactions216944+Node: Budgeting with periodic transactions218990+Ref: #budgeting-with-periodic-transactions219223+Node: Auto postings219630+Ref: #auto-postings219766+Node: Auto postings and multiple files221949+Ref: #auto-postings-and-multiple-files222147+Node: Auto postings and dates222355+Ref: #auto-postings-and-dates222623+Node: Auto postings and transaction balancing / inferred amounts / balance assertions222798+Ref: #auto-postings-and-transaction-balancing-inferred-amounts-balance-assertions223144+Node: Auto posting tags223489+Ref: #auto-posting-tags223698+Node: CSV FORMAT224335+Ref: #csv-format224463+Node: Examples227044+Ref: #examples227147+Node: Basic227354+Ref: #basic227456+Node: Bank of Ireland228000+Ref: #bank-of-ireland228137+Node: Amazon229602+Ref: #amazon229722+Node: Paypal231443+Ref: #paypal231539+Node: CSV rules239187+Ref: #csv-rules239305+Node: skip239617+Ref: #skip239712+Node: fields240084+Ref: #fields240208+Node: Transaction field names241369+Ref: #transaction-field-names241531+Node: Posting field names241642+Ref: #posting-field-names241796+Node: field assignment244157+Ref: #field-assignment244302+Node: separator245116+Ref: #separator245253+Node: if block245795+Ref: #if-block245922+Node: Matching the whole record246320+Ref: #matching-the-whole-record246497+Node: Matching individual fields247301+Ref: #matching-individual-fields247507+Node: Combining matchers247731+Ref: #combining-matchers247929+Node: Rules applied on successful match248243+Ref: #rules-applied-on-successful-match248436+Node: if table249093+Ref: #if-table249214+Node: end250950+Ref: #end251064+Node: date-format251288+Ref: #date-format251422+Node: decimal-mark252172+Ref: #decimal-mark252317+Node: newest-first252654+Ref: #newest-first252797+Node: include253480+Ref: #include253613+Node: balance-type254055+Ref: #balance-type254177+Node: Tips254877+Ref: #tips254968+Node: Rapid feedback255267+Ref: #rapid-feedback255386+Node: Valid CSV255845+Ref: #valid-csv255977+Node: File Extension256169+Ref: #file-extension256323+Node: Reading multiple CSV files256752+Ref: #reading-multiple-csv-files256939+Node: Valid transactions257179+Ref: #valid-transactions257359+Node: Deduplicating importing257987+Ref: #deduplicating-importing258168+Node: Setting amounts259200+Ref: #setting-amounts259357+Node: Amount signs261576+Ref: #amount-signs261730+Node: Setting currency/commodity262417+Ref: #setting-currencycommodity262605+Node: Amount decimal places263785+Ref: #amount-decimal-places263977+Node: Referencing other fields264289+Ref: #referencing-other-fields264488+Node: How CSV rules are evaluated265386+Ref: #how-csv-rules-are-evaluated265561+Node: TIMECLOCK FORMAT267010+Ref: #timeclock-format267150+Node: TIMEDOT FORMAT269218+Ref: #timedot-format269356+Node: COMMON TASKS273619+Ref: #common-tasks273748+Node: Getting help274155+Ref: #getting-help274289+Node: Constructing command lines274840+Ref: #constructing-command-lines275034+Node: Starting a journal file275733+Ref: #starting-a-journal-file275933+Node: Setting opening balances277120+Ref: #setting-opening-balances277318+Node: Recording transactions280451+Ref: #recording-transactions280633+Node: Reconciling281190+Ref: #reconciling281335+Node: Reporting283580+Ref: #reporting283722+Node: Migrating to a new file287642+Ref: #migrating-to-a-new-file287792+Node: LIMITATIONS288090+Ref: #limitations288218+Node: TROUBLESHOOTING288959+Ref: #troubleshooting289074 End Tag Table
hledger.txt view
@@ -4,3685 +4,6864 @@ NAME- A command-line accounting tool for both power users and folks new to- accounting.--SYNOPSIS- hledger-- hledger [-f FILE] COMMAND [OPTIONS] [ARGS]-- hledger [-f FILE] ADDONCMD -- [OPTIONS] [ARGS]--DESCRIPTION- hledger is a reliable, cross-platform set of programs for tracking- money, time, or any other commodity, using double-entry accounting and- a simple, editable file format. hledger is inspired by and largely- compatible with ledger(1).-- This is hledger's command-line interface (there are also terminal and- web interfaces). Its basic function is to read a plain text file- describing financial transactions (in accounting terms, a general jour-- nal) and print useful reports on standard output, or export them as- CSV. hledger can also read some other file formats such as CSV files,- translating them to journal format. Additionally, hledger lists other- hledger-* executables found in the user's $PATH and can invoke them as- subcommands.-- hledger reads data from one or more files in hledger journal, time-- clock, timedot, or CSV format specified with -f, or $LEDGER_FILE, or- $HOME/.hledger.journal (on windows, perhaps- C:/Users/USER/.hledger.journal). If using $LEDGER_FILE, note this must- be a real environment variable, not a shell variable. You can specify- standard input with -f-.-- Transactions are dated movements of money between two (or more) named- accounts, and are recorded with journal entries like this:-- 2015/10/16 bought food- expenses:food $10- assets:cash-- For more about this format, see hledger_journal(5).-- Most users use a text editor to edit the journal, usually with an edi-- tor mode such as ledger-mode for added convenience. hledger's interac-- tive add command is another way to record new transactions. hledger- never changes existing transactions.-- To get started, you can either save some entries like the above in- ~/.hledger.journal, or run hledger add and follow the prompts. Then- try some commands like hledger print or hledger balance. Run hledger- with no arguments for a list of commands.--COMMON TASKS- Here are some quick examples of how to do some basic tasks with- hledger. For more details, see the reference section below, the- hledger_journal(5) manual, or the more extensive docs at- https://hledger.org.-- Getting help- $ hledger # show available commands- $ hledger --help # show common options- $ hledger CMD --help # show common and command options, and command help- $ hledger help # show available manuals/topics- $ hledger help hledger # show hledger manual as info/man/text (auto-chosen)- $ hledger help journal --man # show the journal manual as a man page- $ hledger help --help # show more detailed help for the help command-- Find more docs, chat, mail list, reddit, issue tracker:- https://hledger.org#help-feedback-- Constructing command lines- hledger has an extensive and powerful command line interface. We- strive to keep it simple and ergonomic, but you may run into one of the- confusing real world details described in OPTIONS, below. If that hap-- pens, here are some tips that may help:-- o command-specific options must go after the command (it's fine to put- all options there) (hledger CMD OPTS ARGS)-- o running add-on executables directly simplifies command line parsing- (hledger-ui OPTS ARGS)-- o enclose "problematic" args in single quotes-- o if needed, also add a backslash to hide regular expression metachar-- acters from the shell-- o to see how a misbehaving command is being parsed, add --debug=2.-- Starting a journal file- hledger looks for your accounting data in a journal file,- $HOME/.hledger.journal by default:-- $ hledger stats- The hledger journal file "/Users/simon/.hledger.journal" was not found.- Please create it first, eg with "hledger add" or a text editor.- Or, specify an existing journal file with -f or LEDGER_FILE.-- You can override this by setting the LEDGER_FILE environment variable.- It's a good practice to keep this important file under version control,- and to start a new file each year. So you could do something like- this:-- $ mkdir ~/finance- $ cd ~/finance- $ git init- Initialized empty Git repository in /Users/simon/finance/.git/- $ touch 2020.journal- $ echo "export LEDGER_FILE=$HOME/finance/2020.journal" >> ~/.bashrc- $ source ~/.bashrc- $ hledger stats- Main file : /Users/simon/finance/2020.journal- Included files :- Transactions span : to (0 days)- Last transaction : none- Transactions : 0 (0.0 per day)- Transactions last 30 days: 0 (0.0 per day)- Transactions last 7 days : 0 (0.0 per day)- Payees/descriptions : 0- Accounts : 0 (depth 0)- Commodities : 0 ()- Market prices : 0 ()-- Setting opening balances- Pick a starting date for which you can look up the balances of some- real-world assets (bank accounts, wallet..) and liabilities (credit- cards..).-- To avoid a lot of data entry, you may want to start with just one or- two accounts, like your checking account or cash wallet; and pick a- recent starting date, like today or the start of the week. You can- always come back later and add more accounts and older transactions, eg- going back to january 1st.-- Add an opening balances transaction to the journal, declaring the bal-- ances on this date. Here are two ways to do it:-- o The first way: open the journal in any text editor and save an entry- like this:-- 2020-01-01 * opening balances- assets:bank:checking $1000 = $1000- assets:bank:savings $2000 = $2000- assets:cash $100 = $100- liabilities:creditcard $-50 = $-50- equity:opening/closing balances-- These are start-of-day balances, ie whatever was in the account at- the end of the previous day.-- The * after the date is an optional status flag. Here it means- "cleared & confirmed".-- The currency symbols are optional, but usually a good idea as you'll- be dealing with multiple currencies sooner or later.-- The = amounts are optional balance assertions, providing extra error- checking.-- o The second way: run hledger add and follow the prompts to record a- similar transaction:-- $ hledger add- Adding transactions to journal file /Users/simon/finance/2020.journal- Any command line arguments will be used as defaults.- Use tab key to complete, readline keys to edit, enter to accept defaults.- An optional (CODE) may follow transaction dates.- An optional ; COMMENT may follow descriptions or amounts.- If you make a mistake, enter < at any prompt to go one step backward.- To end a transaction, enter . when prompted.- To quit, enter . at a date prompt or press control-d or control-c.- Date [2020-02-07]: 2020-01-01- Description: * opening balances- Account 1: assets:bank:checking- Amount 1: $1000- Account 2: assets:bank:savings- Amount 2 [$-1000]: $2000- Account 3: assets:cash- Amount 3 [$-3000]: $100- Account 4: liabilities:creditcard- Amount 4 [$-3100]: $-50- Account 5: equity:opening/closing balances- Amount 5 [$-3050]:- Account 6 (or . or enter to finish this transaction): .- 2020-01-01 * opening balances- assets:bank:checking $1000- assets:bank:savings $2000- assets:cash $100- liabilities:creditcard $-50- equity:opening/closing balances $-3050-- Save this transaction to the journal ? [y]:- Saved.- Starting the next transaction (. or ctrl-D/ctrl-C to quit)- Date [2020-01-01]: .-- If you're using version control, this could be a good time to commit- the journal. Eg:-- $ git commit -m 'initial balances' 2020.journal-- Recording transactions- As you spend or receive money, you can record these transactions using- one of the methods above (text editor, hledger add) or by using the- hledger-iadd or hledger-web add-ons, or by using the import command to- convert CSV data downloaded from your bank.-- Here are some simple transactions, see the hledger_journal(5) manual- and hledger.org for more ideas:-- 2020/1/10 * gift received- assets:cash $20- income:gifts-- 2020.1.12 * farmers market- expenses:food $13- assets:cash-- 2020-01-15 paycheck- income:salary- assets:bank:checking $1000-- Reconciling- Periodically you should reconcile - compare your hledger-reported bal-- ances against external sources of truth, like bank statements or your- bank's website - to be sure that your ledger accurately represents the- real-world balances (and, that the real-world institutions have not- made a mistake!). This gets easy and fast with (1) practice and (2)- frequency. If you do it daily, it can take 2-10 minutes. If you let- it pile up, expect it to take longer as you hunt down errors and dis-- crepancies.-- A typical workflow:-- 1. Reconcile cash. Count what's in your wallet. Compare with what- hledger reports (hledger bal cash). If they are different, try to- remember the missing transaction, or look for the error in the- already-recorded transactions. A register report can be helpful- (hledger reg cash). If you can't find the error, add an adjustment- transaction. Eg if you have $105 after the above, and can't explain- the missing $2, it could be:-- 2020-01-16 * adjust cash- assets:cash $-2 = $105- expenses:misc-- 2. Reconcile checking. Log in to your bank's website. Compare today's- (cleared) balance with hledger's cleared balance (hledger bal check-- ing -C). If they are different, track down the error or record the- missing transaction(s) or add an adjustment transaction, similar to- the above. Unlike the cash case, you can usually compare the trans-- action history and running balance from your bank with the one- reported by hledger reg checking -C. This will be easier if you- generally record transaction dates quite similar to your bank's- clearing dates.-- 3. Repeat for other asset/liability accounts.-- Tip: instead of the register command, use hledger-ui to see a live-- updating register while you edit the journal: hledger-ui --watch --reg-- ister checking -C-- After reconciling, it could be a good time to mark the reconciled- transactions' status as "cleared and confirmed", if you want to track- that, by adding the * marker. Eg in the paycheck transaction above,- insert * between 2020-01-15 and paycheck-- If you're using version control, this can be another good time to com-- mit:-- $ git commit -m 'txns' 2020.journal-- Reporting- Here are some basic reports.-- Show all transactions:-- $ hledger print- 2020-01-01 * opening balances- assets:bank:checking $1000- assets:bank:savings $2000- assets:cash $100- liabilities:creditcard $-50- equity:opening/closing balances $-3050-- 2020-01-10 * gift received- assets:cash $20- income:gifts-- 2020-01-12 * farmers market- expenses:food $13- assets:cash-- 2020-01-15 * paycheck- income:salary- assets:bank:checking $1000-- 2020-01-16 * adjust cash- assets:cash $-2 = $105- expenses:misc-- Show account names, and their hierarchy:-- $ hledger accounts --tree- assets- bank- checking- savings- cash- equity- opening/closing balances- expenses- food- misc- income- gifts- salary- liabilities- creditcard-- Show all account totals:-- $ hledger balance- $4105 assets- $4000 bank- $2000 checking- $2000 savings- $105 cash- $-3050 equity:opening/closing balances- $15 expenses- $13 food- $2 misc- $-1020 income- $-20 gifts- $-1000 salary- $-50 liabilities:creditcard- --------------------- 0-- Show only asset and liability balances, as a flat list, limited to- depth 2:-- $ hledger bal assets liabilities --flat -2- $4000 assets:bank- $105 assets:cash- $-50 liabilities:creditcard- --------------------- $4055-- Show the same thing without negative numbers, formatted as a simple- balance sheet:-- $ hledger bs --flat -2- Balance Sheet 2020-01-16-- || 2020-01-16- ========================++============- Assets ||- ------------------------++------------- assets:bank || $4000- assets:cash || $105- ------------------------++------------- || $4105- ========================++============- Liabilities ||- ------------------------++------------- liabilities:creditcard || $50- ------------------------++------------- || $50- ========================++============- Net: || $4055-- The final total is your "net worth" on the end date. (Or use bse for a- full balance sheet with equity.)-- Show income and expense totals, formatted as an income statement:-- hledger is- Income Statement 2020-01-01-2020-01-16-- || 2020-01-01-2020-01-16- ===============++=======================- Revenues ||- ---------------++------------------------ income:gifts || $20- income:salary || $1000- ---------------++------------------------ || $1020- ===============++=======================- Expenses ||- ---------------++------------------------ expenses:food || $13- expenses:misc || $2- ---------------++------------------------ || $15- ===============++=======================- Net: || $1005-- The final total is your net income during this period.-- Show transactions affecting your wallet, with running total:-- $ hledger register cash- 2020-01-01 opening balances assets:cash $100 $100- 2020-01-10 gift received assets:cash $20 $120- 2020-01-12 farmers market assets:cash $-13 $107- 2020-01-16 adjust cash assets:cash $-2 $105-- Show weekly posting counts as a bar chart:-- $ hledger activity -W- 2019-12-30 *****- 2020-01-06 ****- 2020-01-13 ****-- Migrating to a new file- At the end of the year, you may want to continue your journal in a new- file, so that old transactions don't slow down or clutter your reports,- and to help ensure the integrity of your accounting history. See the- close command.-- If using version control, don't forget to git add the new file.--OPTIONS- General options- To see general usage help, including general options which are sup-- ported by most hledger commands, run hledger -h.-- General help options:-- -h --help- show general usage (or after COMMAND, command usage)-- --version- show version-- --debug[=N]- show debug output (levels 1-9, default: 1)-- General input options:-- -f FILE --file=FILE- use a different input file. For stdin, use - (default:- $LEDGER_FILE or $HOME/.hledger.journal)-- --rules-file=RULESFILE- Conversion rules file to use when reading CSV (default:- FILE.rules)-- --separator=CHAR- Field separator to expect when reading CSV (default: ',')-- --alias=OLD=NEW- rename accounts named OLD to NEW-- --anon anonymize accounts and payees-- --pivot FIELDNAME- use some other field or tag for the account name-- -I --ignore-assertions- disable balance assertion checks (note: does not disable balance- assignments)-- -s --strict- do extra error checking (check that all posted accounts are- declared)-- General reporting options:-- -b --begin=DATE- include postings/txns on or after this date-- -e --end=DATE- include postings/txns before this date-- -D --daily- multiperiod/multicolumn report by day-- -W --weekly- multiperiod/multicolumn report by week-- -M --monthly- multiperiod/multicolumn report by month-- -Q --quarterly- multiperiod/multicolumn report by quarter-- -Y --yearly- multiperiod/multicolumn report by year-- -p --period=PERIODEXP- set start date, end date, and/or reporting interval all at once- using period expressions syntax-- --date2- match the secondary date instead (see command help for other- effects)-- -U --unmarked- include only unmarked postings/txns (can combine with -P or -C)-- -P --pending- include only pending postings/txns-- -C --cleared- include only cleared postings/txns-- -R --real- include only non-virtual postings-- -NUM --depth=NUM- hide/aggregate accounts or postings more than NUM levels deep-- -E --empty- show items with zero amount, normally hidden (and vice-versa in- hledger-ui/hledger-web)-- -B --cost- convert amounts to their cost/selling amount at transaction time-- -V --market- convert amounts to their market value in default valuation com-- modities-- -X --exchange=COMM- convert amounts to their market value in commodity COMM-- --value- convert amounts to cost or market value, more flexibly than- -B/-V/-X-- --infer-value- with -V/-X/--value, also infer market prices from transactions-- --auto apply automated posting rules to modify transactions.-- --forecast- generate future transactions from periodic transaction rules,- for the next 6 months or till report end date. In hledger-ui,- also make ordinary future transactions visible.-- --color=WHEN (or --colour=WHEN)- Should color-supporting commands use ANSI color codes in text- output. 'auto' (default): whenever stdout seems to be a color-- supporting terminal. 'always' or 'yes': always, useful eg when- piping output into 'less -R'. 'never' or 'no': never. A- NO_COLOR environment variable overrides this.-- When a reporting option appears more than once in the command line, the- last one takes precedence.-- Some reporting options can also be written as query arguments.-- Command options- To see options for a particular command, including command-specific- options, run: hledger COMMAND -h.-- Command-specific options must be written after the command name, eg:- hledger print -x.-- Additionally, if the command is an add-on, you may need to put its- options after a double-hyphen, eg: hledger ui -- --watch. Or, you can- run the add-on executable directly: hledger-ui --watch.-- Command arguments- Most hledger commands accept arguments after the command name, which- are often a query, filtering the data in some way.-- You can save a set of command line options/arguments in a file, and- then reuse them by writing @FILENAME as a command line argument. Eg:- hledger bal @foo.args. (To prevent this, eg if you have an argument- that begins with a literal @, precede it with --, eg: hledger bal --- @ARG).-- Inside the argument file, each line should contain just one option or- argument. Avoid the use of spaces, except inside quotes (or you'll see- a confusing error). Between a flag and its argument, use = (or noth-- ing). Bad:-- assets depth:2- -X USD-- Good:-- assets- depth:2- -X=USD-- For special characters (see below), use one less level of quoting than- you would at the command prompt. Bad:-- -X"$"-- Good:-- -X$-- See also: Save frequently used options.-- Queries- One of hledger's strengths is being able to quickly report on precise- subsets of your data. Most commands accept an optional query expres-- sion, written as arguments after the command name, to filter the data- by date, account name or other criteria. The syntax is similar to a- web search: one or more space-separated search terms, quotes to enclose- whitespace, prefixes to match specific fields, a not: prefix to negate- the match.-- We do not yet support arbitrary boolean combinations of search terms;- instead most commands show transactions/postings/accounts which match- (or negatively match):-- o any of the description terms AND-- o any of the account terms AND-- o any of the status terms AND-- o all the other terms.-- The print command instead shows transactions which:-- o match any of the description terms AND-- o have any postings matching any of the positive account terms AND-- o have no postings matching any of the negative account terms AND-- o match all the other terms.-- The following kinds of search terms can be used. Remember these can- also be prefixed with not:, eg to exclude a particular subaccount.-- REGEX, acct:REGEX- match account names by this regular expression. (With no pre-- fix, acct: is assumed.) same as above-- amt:N, amt:<N, amt:<=N, amt:>N, amt:>=N- match postings with a single-commodity amount that is equal to,- less than, or greater than N. (Multi-commodity amounts are not- tested, and will always match.) The comparison has two modes: if- N is preceded by a + or - sign (or is 0), the two signed numbers- are compared. Otherwise, the absolute magnitudes are compared,- ignoring sign.-- code:REGEX- match by transaction code (eg check number)-- cur:REGEX- match postings or transactions including any amounts whose cur-- rency/commodity symbol is fully matched by REGEX. (For a par-- tial match, use .*REGEX.*). Note, to match characters which are- regex-significant, like the dollar sign ($), you need to prepend- \. And when using the command line you need to add one more- level of quoting to hide it from the shell, so eg do: hledger- print cur:'\$' or hledger print cur:\\$.-- desc:REGEX- match transaction descriptions.-- date:PERIODEXPR- match dates within the specified period. PERIODEXPR is a period- expression (with no report interval). Examples: date:2016,- date:thismonth, date:2000/2/1-2/15, date:lastweek-. If the- --date2 command line flag is present, this matches secondary- dates instead.-- date2:PERIODEXPR- match secondary dates within the specified period.-- depth:N- match (or display, depending on command) accounts at or above- this depth-- note:REGEX- match transaction notes (part of description right of |, or- whole description when there's no |)-- payee:REGEX- match transaction payee/payer names (part of description left of- |, or whole description when there's no |)-- real:, real:0- match real or virtual postings respectively-- status:, status:!, status:*- match unmarked, pending, or cleared transactions respectively-- tag:REGEX[=REGEX]- match by tag name, and optionally also by tag value. Note a- tag: query is considered to match a transaction if it matches- any of the postings. Also remember that postings inherit the- tags of their parent transaction.-- The following special search term is used automatically in hledger-web,- only:-- inacct:ACCTNAME- tells hledger-web to show the transaction register for this- account. Can be filtered further with acct etc.-- Some of these can also be expressed as command-line options (eg depth:2- is equivalent to --depth 2). Generally you can mix options and query- arguments, and the resulting query will be their intersection (perhaps- excluding the -p/--period option).-- Special characters in arguments and queries- In shell command lines, option and argument values which contain "prob-- lematic" characters, ie spaces, and also characters significant to your- shell such as <, >, (, ), | and $, should be escaped by enclosing them- in quotes or by writing backslashes before the characters. Eg:-- hledger register -p 'last year' "accounts receivable (receiv-- able|payable)" amt:\>100.-- More escaping- Characters significant both to the shell and in regular expressions may- need one extra level of escaping. These include parentheses, the pipe- symbol and the dollar sign. Eg, to match the dollar symbol, bash users- should do:-- hledger balance cur:'\$'-- or:-- hledger balance cur:\\$-- Even more escaping- When hledger runs an add-on executable (eg you type hledger ui, hledger- runs hledger-ui), it de-escapes command-line options and arguments- once, so you might need to triple-escape. Eg in bash, running the ui- command and matching the dollar sign, it's:-- hledger ui cur:'\\$'-- or:-- hledger ui cur:\\\\$-- If you asked why four slashes above, this may help:--- unescaped: $- escaped: \$- double-escaped: \\$- triple-escaped: \\\\$-- (The number of backslashes in fish shell is left as an exercise for the- reader.)-- You can always avoid the extra escaping for add-ons by running the add-- on directly:-- hledger-ui cur:\\$-- Less escaping- Inside an argument file, or in the search field of hledger-ui or- hledger-web, or at a GHCI prompt, you need one less level of escaping- than at the command line. And backslashes may work better than quotes.- Eg:-- ghci> :main balance cur:\$-- Unicode characters- hledger is expected to handle non-ascii characters correctly:-- o they should be parsed correctly in input files and on the command- line, by all hledger tools (add, iadd, hledger-web's search/add/edit- forms, etc.)-- o they should be displayed correctly by all hledger tools, and on-- screen alignment should be preserved.-- This requires a well-configured environment. Here are some tips:-- o A system locale must be configured, and it must be one that can- decode the characters being used. In bash, you can set a locale like- this: export LANG=en_US.UTF-8. There are some more details in Trou-- bleshooting. This step is essential - without it, hledger will quit- on encountering a non-ascii character (as with all GHC-compiled pro-- grams).-- o your terminal software (eg Terminal.app, iTerm, CMD.exe, xterm..)- must support unicode-- o the terminal must be using a font which includes the required unicode- glyphs-- o the terminal should be configured to display wide characters as dou-- ble width (for report alignment)-- o on Windows, for best results you should run hledger in the same kind- of environment in which it was built. Eg hledger built in the stan-- dard CMD.EXE environment (like the binaries on our download page)- might show display problems when run in a cygwin or msys terminal,- and vice versa. (See eg #961).-- Input files- hledger reads transactions from a data file (and the add command writes- to it). By default this file is $HOME/.hledger.journal (or on Windows,- something like C:/Users/USER/.hledger.journal). You can override this- with the $LEDGER_FILE environment variable:-- $ setenv LEDGER_FILE ~/finance/2016.journal- $ hledger stats-- or with the -f/--file option:-- $ hledger -f /some/file stats-- The file name - (hyphen) means standard input:-- $ cat some.journal | hledger -f--- Usually the data file is in hledger's journal format, but it can be in- any of the supported file formats, which currently are:--- Reader: Reads: Used for file exten-- sions:- ------------------------------------------------------------------------------ journal hledger journal files and some Ledger .journal .j .hledger- journals, for transactions .ledger- time- timeclock files, for precise time log- .timeclock- clock ging- timedot timedot files, for approximate time .timedot- logging- csv comma/semicolon/tab/other-separated .csv .ssv .tsv- values, for data import-- hledger detects the format automatically based on the file extensions- shown above. If it can't recognise the file extension, it assumes- journal format. So for non-journal files, it's important to use a- recognised file extension, so as to either read successfully or to show- relevant error messages.-- When you can't ensure the right file extension, not to worry: you can- force a specific reader/format by prefixing the file path with the for-- mat and a colon. Eg to read a .dat file as csv:-- $ hledger -f csv:/some/csv-file.dat stats- $ echo 'i 2009/13/1 08:00:00' | hledger print -ftimeclock:--- You can specify multiple -f options, to read multiple files as one big- journal. There are some limitations with this:-- o directives in one file will not affect the other files-- o balance assertions will not see any account balances from previous- files-- If you need either of those things, you can-- o use a single parent file which includes the others-- o or concatenate the files into one before reading, eg: cat a.journal- b.journal | hledger -f- CMD.-- Strict mode- hledger checks input files for valid data. By default, the most impor-- tant errors are detected, while still accepting easy journal files- without a lot of declarations:-- o Are the input files parseable, with valid syntax ?-- o Are all transactions balanced ?-- o Do all balance assertions pass ?-- With the -s/--strict flag, additional checks are performed:-- o Are all accounts posted to, declared with an account directive ?- (Account error checking)-- o Are all commodities declared with a commodity directive ? (Commodity- error checking)-- See also: https://hledger.org/checking-for-errors.html-- experimental.-- Output destination- hledger commands send their output to the terminal by default. You can- of course redirect this, eg into a file, using standard shell syntax:-- $ hledger print > foo.txt-- Some commands (print, register, stats, the balance commands) also pro-- vide the -o/--output-file option, which does the same thing without- needing the shell. Eg:-- $ hledger print -o foo.txt- $ hledger print -o - # write to stdout (the default)-- Output format- Some commands (print, register, the balance commands) offer a choice of- output format. In addition to the usual plain text format (txt), there- are CSV (csv), HTML (html), JSON (json) and SQL (sql). This is con-- trolled by the -O/--output-format option:-- $ hledger print -O csv-- or, by a file extension specified with -o/--output-file:-- $ hledger balancesheet -o foo.html # write HTML to foo.html-- The -O option can be used to override the file extension if needed:-- $ hledger balancesheet -o foo.txt -O html # write HTML to foo.txt-- Some notes about JSON output:-- o This feature is marked experimental, and not yet much used; you- should expect our JSON to evolve. Real-world feedback is welcome.-- o Our JSON is rather large and verbose, as it is quite a faithful rep-- resentation of hledger's internal data types. To understand the- JSON, read the Haskell type definitions, which are mostly in- https://github.com/simonmichael/hledger/blob/master/hledger-- lib/Hledger/Data/Types.hs.-- o hledger represents quantities as Decimal values storing up to 255- significant digits, eg for repeating decimals. Such numbers can- arise in practice (from automatically-calculated transaction prices),- and would break most JSON consumers. So in JSON, we show quantities- as simple Numbers with at most 10 decimal places. We don't limit the- number of integer digits, but that part is under your control. We- hope this approach will not cause problems in practice; if you find- otherwise, please let us know. (Cf #1195)-- Notes about SQL output:-- o SQL output is also marked experimental, and much like JSON could use- real-world feedback.-- o SQL output is expected to work with sqlite, MySQL and PostgreSQL-- o SQL output is structured with the expectations that statements will- be executed in the empty database. If you already have tables cre-- ated via SQL output of hledger, you would probably want to either- clear tables of existing data (via delete or truncate SQL statements)- or drop tables completely as otherwise your postings will be duped.-- Regular expressions- hledger uses regular expressions in a number of places:-- o query terms, on the command line and in the hledger-web search form:- REGEX, desc:REGEX, cur:REGEX, tag:...=REGEX-- o CSV rules conditional blocks: if REGEX ...-- o account alias directives and options: alias /REGEX/ = REPLACEMENT,- --alias /REGEX/=REPLACEMENT-- hledger's regular expressions come from the regex-tdfa library. If- they're not doing what you expect, it's important to know exactly what- they support:-- 1. they are case insensitive-- 2. they are infix matching (they do not need to match the entire thing- being matched)-- 3. they are POSIX ERE (extended regular expressions)-- 4. they also support GNU word boundaries (\b, \B, \<, \>)-- 5. they do not support backreferences; if you write \1, it will match- the digit 1. Except when doing text replacement, eg in account- aliases, where backreferences can be used in the replacement string- to reference capturing groups in the search regexp.-- 6. they do not support mode modifiers ((?s)), character classes (\w,- \d), or anything else not mentioned above.-- Some things to note:-- o In the alias directive and --alias option, regular expressions must- be enclosed in forward slashes (/REGEX/). Elsewhere in hledger,- these are not required.-- o In queries, to match a regular expression metacharacter like $ as a- literal character, prepend a backslash. Eg to search for amounts- with the dollar sign in hledger-web, write cur:\$.-- o On the command line, some metacharacters like $ have a special mean-- ing to the shell and so must be escaped at least once more. See Spe-- cial characters.-- Smart dates- hledger's user interfaces accept a flexible "smart date" syntax (unlike- dates in the journal file). Smart dates allow some english words, can- be relative to today's date, and can have less-significant date parts- omitted (defaulting to 1).-- Examples:--- 2004/10/1, 2004-01-01, exact date, several separators allowed. Year- 2004.9.1 is 4+ digits, month is 1-12, day is 1-31- 2004 start of year- 2004/10 start of month- 10/1 month and day in current year- 21 day in current month- october, oct start of month in current year- yesterday, today, tomor- -1, 0, 1 days from today- row- last/this/next -1, 0, 1 periods from the current period- day/week/month/quar-- ter/year- 20181201 8 digit YYYYMMDD with valid year month and day- 201812 6 digit YYYYMM with valid year and month-- Counterexamples - malformed digit sequences might give surprising- results:--- 201813 6 digits with an invalid month is parsed as start of- 6-digit year- 20181301 8 digits with an invalid month is parsed as start of- 8-digit year- 20181232 8 digits with an invalid day gives an error- 201801012 9+ digits beginning with a valid YYYYMMDD gives an error-- Report start & end date- Most hledger reports show the full span of time represented by the- journal data, by default. So, the effective report start and end dates- will be the earliest and latest transaction or posting dates found in- the journal.-- Often you will want to see a shorter time span, such as the current- month. You can specify a start and/or end date using -b/--begin,- -e/--end, -p/--period or a date: query (described below). All of these- accept the smart date syntax.-- Some notes:-- o As in Ledger, end dates are exclusive, so you need to write the date- after the last day you want to include.-- o As noted in reporting options: among start/end dates specified with- options, the last (i.e. right-most) option takes precedence.-- o The effective report start and end dates are the intersection of the- start/end dates from options and that from date: queries. That is,- date:2019-01 date:2019 -p'2000 to 2030' yields January 2019, the- smallest common time span.-- Examples:--- -b 2016/3/17 begin on St. Patrick's day 2016- -e 12/1 end at the start of december 1st of the current year- (11/30 will be the last date included)- -b thismonth all transactions on or after the 1st of the current month- -p thismonth all transactions in the current month- date:2016/3/17.. the above written as queries instead (.. can also be- replaced with -)-- date:..12/1- date:thismonth..- date:thismonth-- Report intervals- A report interval can be specified so that commands like register, bal-- ance and activity will divide their reports into multiple subperiods.- The basic intervals can be selected with one of -D/--daily,- -W/--weekly, -M/--monthly, -Q/--quarterly, or -Y/--yearly. More com-- plex intervals may be specified with a period expression. Report- intervals can not be specified with a query.-- Period expressions- The -p/--period option accepts period expressions, a shorthand way of- expressing a start date, end date, and/or report interval all at once.-- Here's a basic period expression specifying the first quarter of 2009.- Note, hledger always treats start dates as inclusive and end dates as- exclusive:-- -p "from 2009/1/1 to 2009/4/1"-- Keywords like "from" and "to" are optional, and so are the spaces, as- long as you don't run two dates together. "to" can also be written as- ".." or "-". These are equivalent to the above:--- -p "2009/1/1 2009/4/1"- -p2009/1/1to2009/4/1- -p2009/1/1..2009/4/1-- Dates are smart dates, so if the current year is 2009, the above can- also be written as:--- -p "1/1 4/1"- -p "january-apr"- -p "this year to 4/1"-- If you specify only one date, the missing start or end date will be the- earliest or latest transaction in your journal:--- -p "from 2009/1/1" everything after january- 1, 2009- -p "from 2009/1" the same- -p "from 2009" the same- -p "to 2009" everything before january- 1, 2009-- A single date with no "from" or "to" defines both the start and end- date like so:--- -p "2009" the year 2009; equivalent- to "2009/1/1 to 2010/1/1"- -p "2009/1" the month of jan; equiva-- lent to "2009/1/1 to- 2009/2/1"- -p "2009/1/1" just that day; equivalent- to "2009/1/1 to 2009/1/2"-- Or you can specify a single quarter like so:----- -p "2009Q1" first quarter of 2009,- equivalent to "2009/1/1 to- 2009/4/1"- -p "q4" fourth quarter of the cur-- rent year-- The argument of -p can also begin with, or be, a report interval- expression. The basic report intervals are daily, weekly, monthly,- quarterly, or yearly, which have the same effect as the -D,-W,-M,-Q, or- -Y flags. Between report interval and start/end dates (if any), the- word in is optional. Examples:--- -p "weekly from 2009/1/1 to 2009/4/1"- -p "monthly in 2008"- -p "quarterly"-- Note that weekly, monthly, quarterly and yearly intervals will always- start on the first day on week, month, quarter or year accordingly, and- will end on the last day of same period, even if associated period- expression specifies different explicit start and end date.-- For example:--- -p "weekly from 2009/1/1 starts on 2008/12/29, closest preceding Mon-- to 2009/4/1" day- -p "monthly in starts on 2018/11/01- 2008/11/25"- -p "quarterly from starts on 2009/04/01, ends on 2009/06/30,- 2009-05-05 to 2009-06-01" which are first and last days of Q2 2009- -p "yearly from starts on 2009/01/01, first day of 2009- 2009-12-29"-- The following more complex report intervals are also supported:- biweekly, fortnightly, bimonthly, every day|week|month|quarter|year,- every N days|weeks|months|quarters|years.-- All of these will start on the first day of the requested period and- end on the last one, as described above.-- Examples:--- -p "bimonthly from 2008" periods will have boundaries on 2008/01/01,- 2008/03/01, ...- -p "every 2 weeks" starts on closest preceding Monday- -p "every 5 month from periods will have boundaries on 2009/03/01,- 2009/03" 2009/08/01, ...-- If you want intervals that start on arbitrary day of your choosing and- span a week, month or year, you need to use any of the following:-- every Nth day of week, every WEEKDAYNAME (eg- mon|tue|wed|thu|fri|sat|sun), every Nth day [of month], every Nth WEEK-- DAYNAME [of month], every MM/DD [of year], every Nth MMM [of year],- every MMM Nth [of year].-- Examples:--- -p "every 2nd day of periods will go from Tue to Tue- week"- -p "every Tue" same- -p "every 15th day" period boundaries will be on 15th of each- month-- -p "every 2nd Monday" period boundaries will be on second Monday of- each month- -p "every 11/05" yearly periods with boundaries on 5th of Nov- -p "every 5th Nov" same- -p "every Nov 5th" same-- Show historical balances at end of 15th each month (N is exclusive end- date):-- hledger balance -H -p "every 16th day"-- Group postings from start of wednesday to end of next tuesday (N is- start date and exclusive end date):-- hledger register checking -p "every 3rd day of week"-- Depth limiting- With the --depth N option (short form: -N), commands like account, bal-- ance and register will show only the uppermost accounts in the account- tree, down to level N. Use this when you want a summary with less- detail. This flag has the same effect as a depth: query argument (so- -2, --depth=2 or depth:2 are equivalent).-- Pivoting- Normally hledger sums amounts, and organizes them in a hierarchy, based- on account name. The --pivot FIELD option causes it to sum and orga-- nize hierarchy based on the value of some other field instead. FIELD- can be: code, description, payee, note, or the full name (case insensi-- tive) of any tag. As with account names, values containing colon:sepa-- rated:parts will be displayed hierarchically in reports.-- --pivot is a general option affecting all reports; you can think of- hledger transforming the journal before any other processing, replacing- every posting's account name with the value of the specified field on- that posting, inheriting it from the transaction or using a blank value- if it's not present.-- An example:-- 2016/02/16 Member Fee Payment- assets:bank account 2 EUR- income:member fees -2 EUR ; member: John Doe-- Normal balance report showing account names:-- $ hledger balance- 2 EUR assets:bank account- -2 EUR income:member fees- --------------------- 0-- Pivoted balance report, using member: tag values instead:-- $ hledger balance --pivot member- 2 EUR- -2 EUR John Doe- --------------------- 0-- One way to show only amounts with a member: value (using a query,- described below):-- $ hledger balance --pivot member tag:member=.- -2 EUR John Doe- --------------------- -2 EUR-- Another way (the acct: query matches against the pivoted "account- name"):-- $ hledger balance --pivot member acct:.- -2 EUR John Doe- --------------------- -2 EUR-- Valuation- Instead of reporting amounts in their original commodity, hledger can- convert them to cost/sale amount (using the conversion rate recorded in- the transaction), or to market value (using some market price on a cer-- tain date). This is controlled by the --value=TYPE[,COMMODITY] option,- but we also provide the simpler -B/-V/-X flags, and usually one of- those is all you need.-- -B: Cost- The -B/--cost flag converts amounts to their cost or sale amount at- transaction time, if they have a transaction price specified.-- -V: Value- The -V/--market flag converts amounts to market value in their default- valuation commodity, using the market prices in effect on the valuation- date(s), if any. More on these in a minute.-- -X: Value in specified commodity- The -X/--exchange=COMM option is like -V, except you tell it which cur-- rency you want to convert to, and it tries to convert everything to- that.-- Valuation date- Since market prices can change from day to day, market value reports- have a valuation date (or more than one), which determines which market- prices will be used.-- For single period reports, if an explicit report end date is specified,- that will be used as the valuation date; otherwise the valuation date- is "today".-- For multiperiod reports, each column/period is valued on the last day- of the period, by default.-- Market prices- (experimental)-- To convert a commodity A to its market value in another commodity B,- hledger looks for a suitable market price (exchange rate) as follows,- in this order of preference :-- 1. A declared market price or inferred market price: A's latest market- price in B on or before the valuation date as declared by a P direc-- tive, or (with the --infer-value flag) inferred from transaction- prices.-- 2. A reverse market price: the inverse of a declared or inferred market- price from B to A.-- 3. A a forward chain of market prices: a synthetic price formed by com-- bining the shortest chain of "forward" (only 1 above) market prices,- leading from A to B.-- 4. A any chain of market prices: a chain of any market prices, includ-- ing both forward and reverse prices (1 and 2 above), leading from A- to B.-- Amounts for which no applicable market price can be found, are not con-- verted.-- --infer-value: market prices from transactions- (experimental)-- Normally, market value in hledger is fully controlled by, and requires,- P directives in your journal. Since adding and updating those can be a- chore, and since transactions usually take place at close to market- value, why not use the recorded transaction prices as additional market- prices (as Ledger does) ? We could produce value reports without need-- ing P directives at all.-- Adding the --infer-value flag to -V, -X or --value enables this. So- for example, hledger bs -V --infer-value will get market prices both- from P directives and from transactions.-- There is a downside: value reports can sometimes be affected in confus-- ing/undesired ways by your journal entries. If this happens to you,- read all of this Valuation section carefully, and try adding --debug or- --debug=2 to troubleshoot.-- --infer-value can infer market prices from:-- o multicommodity transactions with explicit prices (@/@@)-- o multicommodity transactions with implicit prices (no @, two commodi-- ties, unbalanced). (With these, the order of postings matters.- hledger print -x can be useful for troubleshooting.)-- o but not, currently, from "more correct" multicommodity transactions- (no @, multiple commodities, balanced).-- Valuation commodity- (experimental)-- When you specify a valuation commodity (-X COMM or --value TYPE,COMM):- hledger will convert all amounts to COMM, wherever it can find a suit-- able market price (including by reversing or chaining prices).-- When you leave the valuation commodity unspecified (-V or --value- TYPE):- For each commodity A, hledger picks a default valuation commodity as- follows, in this order of preference:-- 1. The price commodity from the latest P-declared market price for A on- or before valuation date.-- 2. The price commodity from the latest P-declared market price for A on- any date. (Allows conversion to proceed when there are inferred- prices before the valuation date.)-- 3. If there are no P directives at all (any commodity or date) and the- --infer-value flag is used: the price commodity from the latest- transaction-inferred price for A on or before valuation date.-- This means:-- o If you have P directives, they determine which commodities -V will- convert, and to what.-- o If you have no P directives, and use the --infer-value flag, transac-- tion prices determine it.-- Amounts for which no valuation commodity can be found are not con-- verted.-- Simple valuation examples- Here are some quick examples of -V:-- ; one euro is worth this many dollars from nov 1- P 2016/11/01 EUR $1.10-- ; purchase some euros on nov 3- 2016/11/3- assets:euros EUR100- assets:checking-- ; the euro is worth fewer dollars by dec 21- P 2016/12/21 EUR $1.03-- How many euros do I have ?-- $ hledger -f t.j bal -N euros- EUR100 assets:euros-- What are they worth at end of nov 3 ?-- $ hledger -f t.j bal -N euros -V -e 2016/11/4- $110.00 assets:euros-- What are they worth after 2016/12/21 ? (no report end date specified,- defaults to today)-- $ hledger -f t.j bal -N euros -V- $103.00 assets:euros-- --value: Flexible valuation- -B, -V and -X are special cases of the more general --value option:-- --value=TYPE[,COMM] TYPE is cost, then, end, now or YYYY-MM-DD.- COMM is an optional commodity symbol.- Shows amounts converted to:- - cost commodity using transaction prices (then optionally to COMM using market prices at period end(s))- - default valuation commodity (or COMM) using market prices at posting dates- - default valuation commodity (or COMM) using market prices at period end(s)- - default valuation commodity (or COMM) using current market prices- - default valuation commodity (or COMM) using market prices at some date-- The TYPE part selects cost or value and valuation date:-- --value=cost- Convert amounts to cost, using the prices recorded in transac-- tions.-- --value=then- Convert amounts to their value in the default valuation commod-- ity, using market prices on each posting's date. This is cur-- rently supported only by the print and register commands.-- --value=end- Convert amounts to their value in the default valuation commod-- ity, using market prices on the last day of the report period- (or if unspecified, the journal's end date); or in multiperiod- reports, market prices on the last day of each subperiod.-- --value=now- Convert amounts to their value in the default valuation commod-- ity using current market prices (as of when report is gener-- ated).-- --value=YYYY-MM-DD- Convert amounts to their value in the default valuation commod-- ity using market prices on this date.-- To select a different valuation commodity, add the optional ,COMM part:- a comma, then the target commodity's symbol. Eg: --value=now,EUR.- hledger will do its best to convert amounts to this commodity, deducing- market prices as described above.-- More valuation examples- Here are some examples showing the effect of --value, as seen with- print:-- P 2000-01-01 A 1 B- P 2000-02-01 A 2 B- P 2000-03-01 A 3 B- P 2000-04-01 A 4 B-- 2000-01-01- (a) 1 A @ 5 B-- 2000-02-01- (a) 1 A @ 6 B-- 2000-03-01- (a) 1 A @ 7 B-- Show the cost of each posting:-- $ hledger -f- print --value=cost- 2000-01-01- (a) 5 B-- 2000-02-01- (a) 6 B-- 2000-03-01- (a) 7 B-- Show the value as of the last day of the report period (2000-02-29):-- $ hledger -f- print --value=end date:2000/01-2000/03- 2000-01-01- (a) 2 B-- 2000-02-01- (a) 2 B-- With no report period specified, that shows the value as of the last- day of the journal (2000-03-01):-- $ hledger -f- print --value=end- 2000-01-01- (a) 3 B-- 2000-02-01- (a) 3 B-- 2000-03-01- (a) 3 B-- Show the current value (the 2000-04-01 price is still in effect today):-- $ hledger -f- print --value=now- 2000-01-01- (a) 4 B-- 2000-02-01- (a) 4 B-- 2000-03-01- (a) 4 B-- Show the value on 2000/01/15:-- $ hledger -f- print --value=2000-01-15- 2000-01-01- (a) 1 B-- 2000-02-01- (a) 1 B-- 2000-03-01- (a) 1 B-- You may need to explicitly set a commodity's display style, when- reverse prices are used. Eg this output might be surprising:-- P 2000-01-01 A 2B-- 2000-01-01- a 1B- b-- $ hledger print -x -X A- 2000-01-01- a 0- b 0-- Explanation: because there's no amount or commodity directive specify-- ing a display style for A, 0.5A gets the default style, which shows no- decimal digits. Because the displayed amount looks like zero, the com-- modity symbol and minus sign are not displayed either. Adding a com-- modity directive sets a more useful display style for A:-- P 2000-01-01 A 2B- commodity 0.00A-- 2000-01-01- a 1B- b-- $ hledger print -X A- 2000-01-01- a 0.50A- b -0.50A-- Effect of valuation on reports- Here is a reference for how valuation is supposed to affect each part- of hledger's reports (and a glossary). (It's wide, you'll have to- scroll sideways.) It may be useful when troubleshooting. If you find- problems, please report them, ideally with a reproducible example.- Related: #329, #1083.--- Report type -B, -V, -X --value=then --value=end --value=DATE,- --value=cost --value=now- ----------------------------------------------------------------------------------------------- print- posting cost value at value at value at value at- amounts report end or posting date report or DATE/today- today journal end- balance unchanged unchanged unchanged unchanged unchanged- asser-- tions/assign-- ments-- register- starting bal- cost value at day not sup- value at day value at- ance (-H) before report ported before report DATE/today- or journal or journal- start start-- posting cost value at value at value at value at- amounts report end or posting date report or DATE/today- today journal end- summary post- summarised value at sum of post- value at value at- ing amounts cost period ends ings in period ends DATE/today- with report interval,- interval valued at- interval- start- running sum/average sum/average sum/average sum/average sum/average- total/average of displayed of displayed of displayed of displayed of displayed- values values values values values-- balance (bs,- bse, cf, is)- balance sums of costs value at not sup- value at value at- changes report end or ported report or DATE/today of- today of sums journal end sums of post-- of postings of sums of ings- postings- budget like balance like balance not sup- like balances like balance- amounts changes changes ported changes- (--budget)- grand total sum of dis- sum of dis- not sup- sum of dis- sum of dis-- played values played values ported played values played values-- balance (bs,- bse, cf, is)- with report- interval- starting bal- sums of costs value at not sup- value at sums of post-- ances (-H) of postings report start ported report start ings before- before report of sums of of sums of report start- start all postings all postings- before report before report- start start- balance sums of costs same as not sup- balance value at- changes (bal, of postings --value=end ported change in DATE/today of- is, bs in period each period, sums of post-- --change, cf valued at ings- --change) period ends- end balances sums of costs same as not sup- period end value at- (bal -H, is of postings --value=end ported balances, DATE/today of- --H, bs, cf) from before valued at sums of post-- report start period ends ings- to period end- budget like balance like balance not sup- like balances like balance- amounts changes/end changes/end ported changes/end- (--budget) balances balances balances- row totals, sums, aver- sums, aver- not sup- sums, aver- sums, aver-- row averages ages of dis- ages of dis- ported ages of dis- ages of dis-- (-T, -A) played values played values played values played values- column totals sums of dis- sums of dis- not sup- sums of dis- sums of dis-- played values played values ported played values played values- grand total, sum, average sum, average not sup- sum, average sum, average- grand average of column of column ported of column of column- totals totals totals totals--- --cumulative is omitted to save space, it works like -H but with a zero- starting balance.-- Glossary:-- cost calculated using price(s) recorded in the transaction(s).-- value market value using available market price declarations, or the- unchanged amount if no conversion rate can be found.-- report start- the first day of the report period specified with -b or -p or- date:, otherwise today.-- report or journal start- the first day of the report period specified with -b or -p or- date:, otherwise the earliest transaction date in the journal,- otherwise today.-- report end- the last day of the report period specified with -e or -p or- date:, otherwise today.-- report or journal end- the last day of the report period specified with -e or -p or- date:, otherwise the latest transaction date in the journal,- otherwise today.-- report interval- a flag (-D/-W/-M/-Q/-Y) or period expression that activates the- report's multi-period mode (whether showing one or many subperi-- ods).--COMMANDS- hledger provides a number of commands for producing reports and manag-- ing your data. Run hledger with no arguments to list the commands- available.-- To run a command, write its name (or its abbreviation shown in the com-- mands list, or any unambiguous prefix of the name) as hledger's first- argument. Eg: hledger balance or hledger bal.-- Here are the built-in commands:-- Data entry (these modify the journal file):-- o add - add transactions using guided prompts-- o import - add any new transactions from other files (eg csv)-- Data management:-- o check - check for various kinds of issue in the data-- o close (equity) - generate balance-resetting transactions-- o diff - compare account transactions in two journal files-- o rewrite - generate extra postings, similar to print --auto-- Financial statements:-- o aregister (areg) - show transactions in a particular account-- o balancesheet (bs) - show assets, liabilities and net worth-- o balancesheetequity (bse) - show assets, liabilities and equity-- o cashflow (cf) - show changes in liquid assets-- o incomestatement (is) - show revenues and expenses-- o roi - show return on investments-- Miscellaneous reports:-- o accounts (a) - show account names-- o activity - show postings-per-interval bar charts-- o balance (b, bal) - show balance changes/end balances/budgets in- accounts-- o codes - show transaction codes-- o commodities - show commodity/currency symbols-- o descriptions - show unique transaction descriptions-- o files - show input file paths-- o notes - show unique note segments of transaction descriptions-- o payees - show unique payee segments of transaction descriptions-- o prices - show market price records-- o print (p, txns) - show transactions (journal entries)-- o print-unique - show only transactions with unique descriptions-- o register (r, reg) - show postings in one or more accounts & running- total-- o register-match - show a recent posting that best matches a descrip-- tion-- o stats - show journal statistics-- o tags - show tag names-- o test - run self tests-- Next, the detailed command docs, in alphabetical order.-- accounts- accounts, a- Show account names.-- This command lists account names, either declared with account direc-- tives (--declared), posted to (--used), or both (the default). With- query arguments, only matched account names and account names refer-- enced by matched postings are shown. It shows a flat list by default.- With --tree, it uses indentation to show the account hierarchy. In- flat mode you can add --drop N to omit the first few account name com-- ponents. Account names can be depth-clipped with depth:N or --depth N- or -N.-- Examples:-- $ hledger accounts- assets:bank:checking- assets:bank:saving- assets:cash- expenses:food- expenses:supplies- income:gifts- income:salary- liabilities:debts-- activity- activity- Show an ascii barchart of posting counts per interval.-- The activity command displays an ascii histogram showing transaction- counts by day, week, month or other reporting interval (by day is the- default). With query arguments, it counts only matched transactions.-- Examples:-- $ hledger activity --quarterly- 2008-01-01 **- 2008-04-01 *******- 2008-07-01- 2008-10-01 **-- add- add- Prompt for transactions and add them to the journal. Any arguments- will be used as default inputs for the first N prompts.-- Many hledger users edit their journals directly with a text editor, or- generate them from CSV. For more interactive data entry, there is the- add command, which prompts interactively on the console for new trans-- actions, and appends them to the journal file (if there are multiple -f- FILE options, the first file is used.) Existing transactions are not- changed. This is the only hledger command that writes to the journal- file.-- To use it, just run hledger add and follow the prompts. You can add as- many transactions as you like; when you are finished, enter . or press- control-d or control-c to exit.-- Features:-- o add tries to provide useful defaults, using the most similar (by- description) recent transaction (filtered by the query, if any) as a- template.-- o You can also set the initial defaults with command line arguments.-- o Readline-style edit keys can be used during data entry.-- o The tab key will auto-complete whenever possible - accounts, descrip-- tions, dates (yesterday, today, tomorrow). If the input area is- empty, it will insert the default value.-- o If the journal defines a default commodity, it will be added to any- bare numbers entered.-- o A parenthesised transaction code may be entered following a date.-- o Comments and tags may be entered following a description or amount.-- o If you make a mistake, enter < at any prompt to go one step backward.-- o Input prompts are displayed in a different colour when the terminal- supports it.-- Example (see the tutorial for a detailed explanation):-- $ hledger add- Adding transactions to journal file /src/hledger/examples/sample.journal- Any command line arguments will be used as defaults.- Use tab key to complete, readline keys to edit, enter to accept defaults.- An optional (CODE) may follow transaction dates.- An optional ; COMMENT may follow descriptions or amounts.- If you make a mistake, enter < at any prompt to go one step backward.- To end a transaction, enter . when prompted.- To quit, enter . at a date prompt or press control-d or control-c.- Date [2015/05/22]:- Description: supermarket- Account 1: expenses:food- Amount 1: $10- Account 2: assets:checking- Amount 2 [$-10.0]:- Account 3 (or . or enter to finish this transaction): .- 2015/05/22 supermarket- expenses:food $10- assets:checking $-10.0-- Save this transaction to the journal ? [y]:- Saved.- Starting the next transaction (. or ctrl-D/ctrl-C to quit)- Date [2015/05/22]: <CTRL-D> $-- On Microsoft Windows, the add command makes sure that no part of the- file path ends with a period, as that would cause problems (#1056).-- aregister- aregister, areg-- Show the transactions and running historical balance in an account,- with each line item representing one transaction.-- aregister shows the transactions affecting a particular account and its- subaccounts, with each line item representing a whole transaction - as- in bank statements, hledger-ui, hledger-web and other accounting apps.-- Note this is unlike the register command, which shows individual post-- ings and does not always show a single account or a historical balance.-- A reminder, "historical" balances include any balance from transactions- before the report start date, so (if opening balances are recorded cor-- rectly) aregister will show the real-world balances of an account, as- you would see in a bank statement.-- As a quick rule of thumb, use aregister for reconciling real-world- asset/liability accounts and register for reviewing detailed rev-- enues/expenses.-- aregister shows the register for just one account (and its subac-- counts). This account must be specified as the first argument. You- can write either the full account name, or a case-insensitive regular- expression which will select the alphabetically first matched account.- (Eg if you have assets:aaa:checking and assets:bbb:checking accounts,- hledger areg checking would select assets:aaa:checking.)-- Any additional arguments form a query which will filter the transac-- tions shown.-- Each aregister line item shows:-- o the transaction's date (or the relevant posting's date if different,- see below)-- o the names of all the other account(s) involved in this transaction- (probably abbreviated)-- o the total change to this account's balance from this transaction-- o the account's historical running balance after this transaction.-- Transactions making a net change of zero are not shown by default; add- the -E/--empty flag to show them.-- aregister ignores a depth limit, so its final total will always match a- balance report with similar arguments.-- This command also supports the output destination and output format- options The output formats supported are txt, csv, and json.-- aregister and custom posting dates- Transactions whose date is outside the report period can still be- shown, if they have a posting to this account dated inside the report- period. (And in this case it's the posting date that is shown.) This- ensures that aregister can show an accurate historical running balance,- matching the one shown by register -H with the same arguments.-- To filter strictly by transaction date instead, add the --txn-dates- flag. If you use this flag and some of your postings have custom- dates, it's probably best to assume the running balance is wrong.-- Examples:-- Show all transactions and historical running balance in the first- account whose name contains "checking":-- $ hledger areg checking-- Show transactions and historical running balance in all asset accounts- during july:-- $ hledger areg assets date:jul-- balance- balance, bal, b- Show accounts and their balances.-- The balance command is hledger's most versatile command. Note, despite- the name, it is not always used for showing real-world account bal-- ances; the more accounting-aware balancesheet and incomestatement may- be more convenient for that.-- By default, it displays all accounts, and each account's change in bal-- ance during the entire period of the journal. Balance changes are cal-- culated by adding up the postings in each account. You can limit the- postings matched, by a query, to see fewer accounts, changes over a- different time period, changes from only cleared transactions, etc.-- If you include an account's complete history of postings in the report,- the balance change is equivalent to the account's current ending bal-- ance. For a real-world account, typically you won't have all transac-- tions in the journal; instead you'll have all transactions after a cer-- tain date, and an "opening balances" transaction setting the correct- starting balance on that date. Then the balance command will show- real-world account balances. In some cases the -H/--historical flag is- used to ensure this (more below).-- This command also supports the output destination and output format- options The output formats supported are (in most modes): txt, csv,- html, and json.-- The balance command can produce several styles of report:--- Single-period flat balance report- This is the default for hledger's balance command: a flat list of all- (or with a query, matched) accounts, showing full account names.- Accounts are sorted by declaration order if any, and then by account- name. Accounts which have zero balance are not shown unless -E/--empty- is used. The reported balances' total is shown as the last line,- unless disabled by -N/--no-total.-- $ hledger bal- $1 assets:bank:saving- $-2 assets:cash- $1 expenses:food- $1 expenses:supplies- $-1 income:gifts- $-1 income:salary- $1 liabilities:debts- --------------------- 0--- Single-period tree-mode balance report- With the -t/--tree flag, accounts are displayed hierarchically, showing- subaccounts as short names indented below their parent. (This is the- default style in Ledger and in older hledger versions.)-- $ hledger balance- $-1 assets- $1 bank:saving- $-2 cash- $2 expenses- $1 food- $1 supplies- $-2 income- $-1 gifts- $-1 salary- $1 liabilities:debts- --------------------- 0-- For more compact output, "boring" accounts containing a single inter-- esting subaccount and no balance of their own (assets:bank and liabili-- ties here) are elided into the following line, unless --no-elide is- used. And accounts which have zero balance and no non-zero subaccounts- are omitted, unless -E/--empty is used.-- Account balances in tree mode are "inclusive" - they include the bal-- ances of any subaccounts. Eg, the assets $-1 balance here includes the- $1 from assets:bank:saving and the $-2 from assets:cash. (And it would- include balance posted to the assets account itself, if there was any).- Note this causes some repetition, and the final total (0) is the sum of- the top-level balances, not of all the balances shown.-- Each group of sibling accounts is sorted separately, by declaration- order and then by account name.-- Multi-period balance report- Multi-period balance reports are a very useful hledger feature, acti-- vated if you provide one of the reporting interval flags, such as- -M/--monthly. They are similar to single-period balance reports, but- they show the report as a table, with columns representing one or more- successive time periods. This is the usually the preferred style of- balance report in hledger (even for a single period).-- Multi-period balance reports come in several types, showing different- information:-- 1. A balance change report: by default, each column shows the sum of- postings in that period, ie the account's change of balance in that- period. This is useful eg for a monthly income statement:-- $ hledger balance --quarterly income expenses -E- Balance changes in 2008:-- || 2008q1 2008q2 2008q3 2008q4- ===================++=================================- expenses:food || 0 $1 0 0- expenses:supplies || 0 $1 0 0- income:gifts || 0 $-1 0 0- income:salary || $-1 0 0 0- -------------------++---------------------------------- || $-1 $1 0 0-- 2. A cumulative end balance report: with --cumulative, each column- shows the end balance for that period, accumulating the changes- across periods, starting from 0 at the report start date:-- $ hledger balance --quarterly income expenses -E --cumulative- Ending balances (cumulative) in 2008:-- || 2008/03/31 2008/06/30 2008/09/30 2008/12/31- ===================++=================================================- expenses:food || 0 $1 $1 $1- expenses:supplies || 0 $1 $1 $1- income:gifts || 0 $-1 $-1 $-1- income:salary || $-1 $-1 $-1 $-1- -------------------++-------------------------------------------------- || $-1 0 0 0-- 3. A historical end balance report: with --historical/-H, each column- shows the actual historical end balance for that period, accumulat-- ing the changes across periods, and including the balance from any- postings before the report start date. This is useful eg for a- multi-period balance sheet, and when you want to see balances only- after a certain date:-- $ hledger balance ^assets ^liabilities --quarterly --historical --begin 2008/4/1- Ending balances (historical) in 2008/04/01-2008/12/31:-- || 2008/06/30 2008/09/30 2008/12/31- ======================++=====================================- assets:bank:checking || $1 $1 0- assets:bank:saving || $1 $1 $1- assets:cash || $-2 $-2 $-2- liabilities:debts || 0 0 $1- ----------------------++-------------------------------------- || 0 0 0-- Note that --cumulative or --historical/-H disable --row-total/-T, since- summing end balances generally does not make sense.-- With a reporting interval (like --quarterly above), the report- start/end dates will be adjusted if necessary so that they encompass- the displayed report periods. This is so that the first and last peri-- ods will be "full" and comparable to the others.-- The -E/--empty flag does two things in multicolumn balance reports:- first, the report will show all columns within the specified report- period (without -E, leading and trailing columns with all zeroes are- not shown). Second, all accounts which existed at the report start- date will be considered, not just the ones with activity during the- report period (use -E to include low-activity accounts which would oth-- erwise would be omitted).-- The -T/--row-total flag adds an additional column showing the total for- each row.-- The -A/--average flag adds a column showing the average value in each- row.-- Here's an example of all three:-- $ hledger balance -Q income expenses --tree -ETA- Balance changes in 2008:-- || 2008q1 2008q2 2008q3 2008q4 Total Average- ============++===================================================- expenses || 0 $2 0 0 $2 $1- food || 0 $1 0 0 $1 0- supplies || 0 $1 0 0 $1 0- income || $-1 $-1 0 0 $-2 $-1- gifts || 0 $-1 0 0 $-1 0- salary || $-1 0 0 0 $-1 0- ------------++---------------------------------------------------- || $-1 $1 0 0 0 0-- (Average is rounded to the dollar here since all journal amounts are)-- The --transpose flag can be used to exchange the rows and columns of a- multicolumn report.-- When showing multicommodity amounts, multicolumn balance reports will- elide any amounts which have more than two commodities, since otherwise- columns could get very wide. The --no-elide flag disables this. Hid-- ing totals with the -N/--no-total flag can also help reduce the width- of multicommodity reports.-- When the report is still too wide, a good workaround is to pipe it into- less -RS (-R for colour, -S to chop long lines). Eg: hledger bal -D- --color=yes | less -RS.-- Depth limiting- With a depth:N query, or --depth N option, or just -N, balance reports- will show accounts only to the specified depth. This is very useful to- hide low-level accounts and get an overview. Eg, limiting to depth 1- shows the top-level accounts:-- $ hledger balance -N -1- $-1 assets- $2 expenses- $-2 income- $1 liabilities-- Accounts at the depth limit will include the balances of any hidden- subaccounts (even in flat mode, which normally shows exclusive bal-- ances).-- You can also drop account name components from the start of account- names, using --drop N. This can be useful to hide unwanted top-level- detail.-- Colour support- In terminal output, when colour is enabled, the balance command shows- negative amounts in red.-- Sorting by amount- With -S/--sort-amount, accounts with the largest (most positive) bal-- ances are shown first. For example, hledger bal expenses -MAS shows- your biggest averaged monthly expenses first.-- Revenues and liability balances are typically negative, however, so -S- shows these in reverse order. To work around this, you can add- --invert to flip the signs. Or, use one of the sign-flipping reports- like balancesheet or incomestatement, which also support -S. Eg:- hledger is -MAS.-- Percentages- With -% or --percent, balance reports show each account's value- expressed as a percentage of the column's total. This is useful to get- an overview of the relative sizes of account balances. For example to- obtain an overview of expenses:-- $ hledger balance expenses -%- 100.0 % expenses- 50.0 % food- 50.0 % supplies- --------------------- 100.0 %-- Note that --tree does not have an effect on -%. The percentages are- always relative to the total sum of each column, they are never rela-- tive to the parent account.-- Since the percentages are relative to the columns sum, it is usually- not useful to calculate percentages if the signs of the amounts are- mixed. Although the results are technically correct, they are most- likely useless. Especially in a balance report that sums up to zero- (eg hledger balance -B) all percentage values will be zero.-- This flag does not work if the report contains any mixed commodity- accounts. If there are mixed commodity accounts in the report be sure- to use -V or -B to coerce the report into using a single commodity.--- Customising single-period balance reports- You can customise the layout of single-period balance reports with- --format FMT, which sets the format of each line. Eg:-- $ hledger balance --format "%20(account) %12(total)"- assets $-1- bank:saving $1- cash $-2- expenses $2- food $1- supplies $1- income $-2- gifts $-1- salary $-1- liabilities:debts $1- ---------------------------------- 0-- The FMT format string (plus a newline) specifies the formatting applied- to each account/balance pair. It may contain any suitable text, with- data fields interpolated like so:-- %[MIN][.MAX](FIELDNAME)-- o MIN pads with spaces to at least this width (optional)-- o MAX truncates at this width (optional)-- o FIELDNAME must be enclosed in parentheses, and can be one of:-- o depth_spacer - a number of spaces equal to the account's depth, or- if MIN is specified, MIN * depth spaces.-- o account - the account's name-- o total - the account's balance/posted total, right justified-- Also, FMT can begin with an optional prefix to control how multi-com-- modity amounts are rendered:-- o %_ - render on multiple lines, bottom-aligned (the default)-- o %^ - render on multiple lines, top-aligned-- o %, - render on one line, comma-separated-- There are some quirks. Eg in one-line mode, %(depth_spacer) has no- effect, instead %(account) has indentation built in. Experimentation- may be needed to get pleasing results.-- Some example formats:-- o %(total) - the account's total-- o %-20.20(account) - the account's name, left justified, padded to 20- characters and clipped at 20 characters-- o %,%-50(account) %25(total) - account name padded to 50 characters,- total padded to 20 characters, with multiple commodities rendered on- one line-- o %20(total) %2(depth_spacer)%-(account) - the default format for the- single-column balance report-- Budget report- There is also a special balance report mode for showing budget perfor-- mance. The --budget flag activates extra columns showing the budget- goals for each account and period, if any. For this report, budget- goals are defined by periodic transactions. This is very useful for- comparing planned and actual income, expenses, time usage, etc.-- For example, you can take average monthly expenses in the common- expense categories to construct a minimal monthly budget:-- ;; Budget- ~ monthly- income $2000- expenses:food $400- expenses:bus $50- expenses:movies $30- assets:bank:checking-- ;; Two months worth of expenses- 2017-11-01- income $1950- expenses:food $396- expenses:bus $49- expenses:movies $30- expenses:supplies $20- assets:bank:checking-- 2017-12-01- income $2100- expenses:food $412- expenses:bus $53- expenses:gifts $100- assets:bank:checking-- You can now see a monthly budget report:-- $ hledger balance -M --budget- Budget performance in 2017/11/01-2017/12/31:-- || Nov Dec- ======================++====================================================- assets || $-2445 [ 99% of $-2480] $-2665 [ 107% of $-2480]- assets:bank || $-2445 [ 99% of $-2480] $-2665 [ 107% of $-2480]- assets:bank:checking || $-2445 [ 99% of $-2480] $-2665 [ 107% of $-2480]- expenses || $495 [ 103% of $480] $565 [ 118% of $480]- expenses:bus || $49 [ 98% of $50] $53 [ 106% of $50]- expenses:food || $396 [ 99% of $400] $412 [ 103% of $400]- expenses:movies || $30 [ 100% of $30] 0 [ 0% of $30]- income || $1950 [ 98% of $2000] $2100 [ 105% of $2000]- ----------------------++----------------------------------------------------- || 0 [ 0] 0 [ 0]-- This is different from a normal balance report in several ways:-- o Only accounts with budget goals during the report period are shown,- by default.-- o In each column, in square brackets after the actual amount, budget- goal amounts are shown, and the actual/goal percentage. (Note: bud-- get goals should be in the same commodity as the actual amount.)-- o All parent accounts are always shown, even in flat mode. Eg assets,- assets:bank, and expenses above.-- o Amounts always include all subaccounts, budgeted or unbudgeted, even- in flat mode.-- This means that the numbers displayed will not always add up! Eg above,- the expenses actual amount includes the gifts and supplies transac-- tions, but the expenses:gifts and expenses:supplies accounts are not- shown, as they have no budget amounts declared.-- This can be confusing. When you need to make things clearer, use the- -E/--empty flag, which will reveal all accounts including unbudgeted- ones, giving the full picture. Eg:-- $ hledger balance -M --budget --empty- Budget performance in 2017/11/01-2017/12/31:-- || Nov Dec- ======================++====================================================- assets || $-2445 [ 99% of $-2480] $-2665 [ 107% of $-2480]- assets:bank || $-2445 [ 99% of $-2480] $-2665 [ 107% of $-2480]- assets:bank:checking || $-2445 [ 99% of $-2480] $-2665 [ 107% of $-2480]- expenses || $495 [ 103% of $480] $565 [ 118% of $480]- expenses:bus || $49 [ 98% of $50] $53 [ 106% of $50]- expenses:food || $396 [ 99% of $400] $412 [ 103% of $400]- expenses:gifts || 0 $100- expenses:movies || $30 [ 100% of $30] 0 [ 0% of $30]- expenses:supplies || $20 0- income || $1950 [ 98% of $2000] $2100 [ 105% of $2000]- ----------------------++----------------------------------------------------- || 0 [ 0] 0 [ 0]-- You can roll over unspent budgets to next period with --cumulative:-- $ hledger balance -M --budget --cumulative- Budget performance in 2017/11/01-2017/12/31:-- || Nov Dec- ======================++====================================================- assets || $-2445 [ 99% of $-2480] $-5110 [ 103% of $-4960]- assets:bank || $-2445 [ 99% of $-2480] $-5110 [ 103% of $-4960]- assets:bank:checking || $-2445 [ 99% of $-2480] $-5110 [ 103% of $-4960]- expenses || $495 [ 103% of $480] $1060 [ 110% of $960]- expenses:bus || $49 [ 98% of $50] $102 [ 102% of $100]- expenses:food || $396 [ 99% of $400] $808 [ 101% of $800]- expenses:movies || $30 [ 100% of $30] $30 [ 50% of $60]- income || $1950 [ 98% of $2000] $4050 [ 101% of $4000]- ----------------------++----------------------------------------------------- || 0 [ 0] 0 [ 0]-- For more examples and notes, see Budgeting.-- Budget report start date- This might be a bug, but for now: when making budget reports, it's a- good idea to explicitly set the report's start date to the first day of- a reporting period, because a periodic rule like ~ monthly generates- its transactions on the 1st of each month, and if your journal has no- regular transactions on the 1st, the default report start date could- exclude that budget goal, which can be a little surprising. Eg here- the default report period is just the day of 2020-01-15:-- ~ monthly in 2020- (expenses:food) $500-- 2020-01-15- expenses:food $400- assets:checking-- $ hledger bal expenses --budget- Budget performance in 2020-01-15:-- || 2020-01-15- ==============++============- <unbudgeted> || $400- --------------++------------- || $400-- To avoid this, specify the budget report's period, or at least the- start date, with -b/-e/-p/date:, to ensure it includes the budget goal- transactions (periodic transactions) that you want. Eg, adding -b- 2020/1/1 to the above:-- $ hledger bal expenses --budget -b 2020/1/1- Budget performance in 2020-01-01..2020-01-15:-- || 2020-01-01..2020-01-15- ===============++========================- expenses:food || $400 [80% of $500]- ---------------++------------------------- || $400 [80% of $500]-- Nested budgets- You can add budgets to any account in your account hierarchy. If you- have budgets on both parent account and some of its children, then bud-- get(s) of the child account(s) would be added to the budget of their- parent, much like account balances behave.-- In the most simple case this means that once you add a budget to any- account, all its parents would have budget as well.-- To illustrate this, consider the following budget:-- ~ monthly from 2019/01- expenses:personal $1,000.00- expenses:personal:electronics $100.00- liabilities-- With this, monthly budget for electronics is defined to be $100 and- budget for personal expenses is an additional $1000, which implicitly- means that budget for both expenses:personal and expenses is $1100.-- Transactions in expenses:personal:electronics will be counted both- towards its $100 budget and $1100 of expenses:personal , and transac-- tions in any other subaccount of expenses:personal would be counted- towards only towards the budget of expenses:personal.-- For example, let's consider these transactions:-- ~ monthly from 2019/01- expenses:personal $1,000.00- expenses:personal:electronics $100.00- liabilities-- 2019/01/01 Google home hub- expenses:personal:electronics $90.00- liabilities $-90.00-- 2019/01/02 Phone screen protector- expenses:personal:electronics:upgrades $10.00- liabilities-- 2019/01/02 Weekly train ticket- expenses:personal:train tickets $153.00- liabilities-- 2019/01/03 Flowers- expenses:personal $30.00- liabilities-- As you can see, we have transactions in expenses:personal:electron-- ics:upgrades and expenses:personal:train tickets, and since both of- these accounts are without explicitly defined budget, these transac-- tions would be counted towards budgets of expenses:personal:electronics- and expenses:personal accordingly:-- $ hledger balance --budget -M- Budget performance in 2019/01:-- || Jan- ===============================++===============================- expenses || $283.00 [ 26% of $1100.00]- expenses:personal || $283.00 [ 26% of $1100.00]- expenses:personal:electronics || $100.00 [ 100% of $100.00]- liabilities || $-283.00 [ 26% of $-1100.00]- -------------------------------++-------------------------------- || 0 [ 0]-- And with --empty, we can get a better picture of budget allocation and- consumption:-- $ hledger balance --budget -M --empty- Budget performance in 2019/01:-- || Jan- ========================================++===============================- expenses || $283.00 [ 26% of $1100.00]- expenses:personal || $283.00 [ 26% of $1100.00]- expenses:personal:electronics || $100.00 [ 100% of $100.00]- expenses:personal:electronics:upgrades || $10.00- expenses:personal:train tickets || $153.00- liabilities || $-283.00 [ 26% of $-1100.00]- ----------------------------------------++-------------------------------- || 0 [ 0]-- balancesheet- balancesheet, bs- This command displays a balance sheet, showing historical ending bal-- ances of asset and liability accounts. (To see equity as well, use the- balancesheetequity command.) Amounts are shown with normal positive- sign, as in conventional financial statements.-- The asset and liability accounts shown are those accounts declared with- the Asset or Cash or Liability type, or otherwise all accounts under a- top-level asset or liability account (case insensitive, plurals- allowed).-- Example:-- $ hledger balancesheet- Balance Sheet-- Assets:- $-1 assets- $1 bank:saving- $-2 cash- --------------------- $-1-- Liabilities:- $1 liabilities:debts- --------------------- $1-- Total:- --------------------- 0-- With a reporting interval, multiple columns will be shown, one for each- report period. As with multicolumn balance reports, you can alter the- report mode with --change/--cumulative/--historical. Normally bal-- ancesheet shows historical ending balances, which is what you need for- a balance sheet; note this means it ignores report begin dates (and- -T/--row-total, since summing end balances generally does not make- sense). Instead of absolute values percentages can be displayed with- -%.-- This command also supports the output destination and output format- options The output formats supported are txt, csv, html, and (experi-- mental) json.-- balancesheetequity- balancesheetequity, bse- This command displays a balance sheet, showing historical ending bal-- ances of asset, liability and equity accounts. Amounts are shown with- normal positive sign, as in conventional financial statements.-- The asset, liability and equity accounts shown are those accounts- declared with the Asset, Cash, Liability or Equity type, or otherwise- all accounts under a top-level asset, liability or equity account (case- insensitive, plurals allowed).-- Example:-- $ hledger balancesheetequity- Balance Sheet With Equity-- Assets:- $-2 assets- $1 bank:saving- $-3 cash- --------------------- $-2-- Liabilities:- $1 liabilities:debts- --------------------- $1-- Equity:- $1 equity:owner- --------------------- $1-- Total:- --------------------- 0-- This command also supports the output destination and output format- options The output formats supported are txt, csv, html, and (experi-- mental) json.-- cashflow- cashflow, cf- This command displays a cashflow statement, showing the inflows and- outflows affecting "cash" (ie, liquid) assets. Amounts are shown with- normal positive sign, as in conventional financial statements.-- The "cash" accounts shown are those accounts declared with the Cash- type, or otherwise all accounts under a top-level asset account (case- insensitive, plural allowed) which do not have fixed, investment,- receivable or A/R in their name.-- Example:-- $ hledger cashflow- Cashflow Statement-- Cash flows:- $-1 assets- $1 bank:saving- $-2 cash- --------------------- $-1-- Total:- --------------------- $-1-- With a reporting interval, multiple columns will be shown, one for each- report period. Normally cashflow shows changes in assets per period,- though as with multicolumn balance reports you can alter the report- mode with --change/--cumulative/--historical. Instead of absolute val-- ues percentages can be displayed with -%.-- This command also supports the output destination and output format- options The output formats supported are txt, csv, html, and (experi-- mental) json.-- check- check- Check for various kinds of errors in your data. experimental-- hledger provides a number of built-in error checks to help prevent- problems in your data. Some of these are run automatically; or, you- can use this check command to run them on demand, with no output and a- zero exit code if all is well. Some examples:-- hledger check # basic checks- hledger check -s # basic + strict checks- hledger check ordereddates uniqueleafnames # basic + specified checks-- Here are the checks currently available:-- Basic checks- These are always run by this command and other commands:-- o parseable - data files are well-formed and can be successfully parsed-- o autobalanced - all transactions are balanced, inferring missing- amounts where necessary, and possibly converting commodities using- transaction prices or automatically-inferred transaction prices-- o assertions - all balance assertions in the journal are passing.- (This check can be disabled with -I/--ignore-assertions.)-- Strict checks- These are always run by this and other commands when -s/--strict is- used (strict mode):-- o accounts - all account names used by transactions have been declared-- o commodities - all commodity symbols used have been declared-- Other checks- These checks can be run by specifying their names as arguments to the- check command:-- o ordereddates - transactions are ordered by date (similar to the old- check-dates command)-- o uniqueleafnames - all account leaf names are unique (similar to the- old check-dupes command)-- Add-on checks- Some checks are not yet integrated with this command, but are available- as add-on commands in https://github.com/simonmichael/hledger/tree/mas-- ter/bin:-- o hledger-check-tagfiles - all tag values containing / (a forward- slash) exist as file paths-- o hledger-check-fancyassertions - more complex balance assertions are- passing-- You could make your own similar scripts to perform custom checks; Cook-- book -> Scripting may be helpful.-- close- close, equity- Prints a "closing balances" transaction and an "opening balances"- transaction that bring account balances to and from zero, respectively.- These can be added to your journal file(s), eg to bring asset/liability- balances forward into a new journal file, or to close out rev-- enues/expenses to retained earnings at the end of a period.-- You can print just one of these transactions by using the --close or- --open flag. You can customise their descriptions with the --close-- desc and --open-desc options.-- One amountless posting to "equity:opening/closing balances" is added to- balance the transactions, by default. You can customise this account- name with --close-acct and --open-acct; if you specify only one of- these, it will be used for both.-- With --x/--explicit, the equity posting's amount will be shown. And if- it involves multiple commodities, a posting for each commodity will be- shown, as with the print command.-- With --interleaved, the equity postings are shown next to the postings- they balance, which makes troubleshooting easier.-- By default, transaction prices in the journal are ignored when generat-- ing the closing/opening transactions. With --show-costs, this cost- information is preserved (balance -B reports will be unchanged after- the transition). Separate postings are generated for each cost in each- commodity. Note this can generate very large journal entries, if you- have many foreign currency or investment transactions.-- close usage- If you split your journal files by time (eg yearly), you will typically- run this command at the end of the year, and save the closing transac-- tion as last entry of the old file, and the opening transaction as the- first entry of the new file. This makes the files self contained, so- that correct balances are reported no matter which of them are loaded.- Ie, if you load just one file, the balances are initialised correctly;- or if you load several files, the redundant closing/opening transac-- tions cancel each other out. (They will show up in print or register- reports; you can exclude them with a query like not:desc:'(open-- ing|closing) balances'.)-- If you're running a business, you might also use this command to "close- the books" at the end of an accounting period, transferring income- statement account balances to retained earnings. (You may want to- change the equity account name to something like "equity:retained earn-- ings".)-- By default, the closing transaction is dated yesterday, the balances- are calculated as of end of yesterday, and the opening transaction is- dated today. To close on some other date, use: hledger close -e OPEN-- INGDATE. Eg, to close/open on the 2018/2019 boundary, use -e 2019.- You can also use -p or date:PERIOD (any starting date is ignored).-- Both transactions will include balance assertions for the- closed/reopened accounts. You probably shouldn't use status or real-- ness filters (like -C or -R or status:) with this command, or the gen-- erated balance assertions will depend on these flags. Likewise, if you- run this command with --auto, the balance assertions will probably- always require --auto.-- Examples:-- Carrying asset/liability balances into a new file for 2019:-- $ hledger close -f 2018.journal -e 2019 assets liabilities --open- # (copy/paste the output to the start of your 2019 journal file)- $ hledger close -f 2018.journal -e 2019 assets liabilities --close- # (copy/paste the output to the end of your 2018 journal file)-- Now:-- $ hledger bs -f 2019.journal # one file - balances are correct- $ hledger bs -f 2018.journal -f 2019.journal # two files - balances still correct- $ hledger bs -f 2018.journal not:desc:closing # to see year-end balances, must exclude closing txn-- Transactions spanning the closing date can complicate matters, breaking- balance assertions:-- 2018/12/30 a purchase made in 2018, clearing the following year- expenses:food 5- assets:bank:checking -5 ; [2019/1/2]-- Here's one way to resolve that:-- ; in 2018.journal:- 2018/12/30 a purchase made in 2018, clearing the following year- expenses:food 5- liabilities:pending-- ; in 2019.journal:- 2019/1/2 clearance of last year's pending transactions- liabilities:pending 5 = 0- assets:checking-- codes- codes- List the codes seen in transactions, in the order parsed.-- This command prints the value of each transaction's code field, in the- order transactions were parsed. The transaction code is an optional- value written in parentheses between the date and description, often- used to store a cheque number, order number or similar.-- Transactions aren't required to have a code, and missing or empty codes- will not be shown by default. With the -E/--empty flag, they will be- printed as blank lines.-- You can add a query to select a subset of transactions.-- Examples:-- 1/1 (123)- (a) 1-- 1/1 ()- (a) 1-- 1/1- (a) 1-- 1/1 (126)- (a) 1-- $ hledger codes- 123- 124- 126-- $ hledger codes -E- 123- 124--- 126-- commodities- commodities- List all commodity/currency symbols used or declared in the journal.-- descriptions- descriptions- List the unique descriptions that appear in transactions.-- This command lists the unique descriptions that appear in transactions,- in alphabetic order. You can add a query to select a subset of trans-- actions.-- Example:-- $ hledger descriptions- Store Name- Gas Station | Petrol- Person A-- diff- diff- Compares a particular account's transactions in two input files. It- shows any transactions to this account which are in one file but not in- the other.-- More precisely, for each posting affecting this account in either file,- it looks for a corresponding posting in the other file which posts the- same amount to the same account (ignoring date, description, etc.)- Since postings not transactions are compared, this also works when mul-- tiple bank transactions have been combined into a single journal entry.-- This is useful eg if you have downloaded an account's transactions from- your bank (eg as CSV data). When hledger and your bank disagree about- the account balance, you can compare the bank data with your journal to- find out the cause.-- Examples:-- $ hledger diff -f $LEDGER_FILE -f bank.csv assets:bank:giro- These transactions are in the first file only:-- 2014/01/01 Opening Balances- assets:bank:giro EUR ...- ...- equity:opening balances EUR -...-- These transactions are in the second file only:-- files- files- List all files included in the journal. With a REGEX argument, only- file names matching the regular expression (case sensitive) are shown.-- help- help- Show any of the hledger manuals.-- The help command displays any of the main hledger manuals, in one of- several ways. Run it with no argument to list the manuals, or provide- a full or partial manual name to select one.-- hledger manuals are available in several formats. hledger help will- use the first of these display methods that it finds: info, man,- $PAGER, less, stdout (or when non-interactive, just stdout). You can- force a particular viewer with the --info, --man, --pager, --cat flags.-- Examples:-- $ hledger help- Please choose a manual by typing "hledger help MANUAL" (a substring is ok).- Manuals: hledger hledger-ui hledger-web journal csv timeclock timedot-- $ hledger help h --man-- hledger(1) hledger User Manuals hledger(1)-- NAME- hledger - a command-line accounting tool-- SYNOPSIS- hledger [-f FILE] COMMAND [OPTIONS] [ARGS]- hledger [-f FILE] ADDONCMD -- [OPTIONS] [ARGS]- hledger-- DESCRIPTION- hledger is a cross-platform program for tracking money, time, or any- ...-- import- import- Read new transactions added to each FILE since last run, and add them- to the main journal file. Or with --dry-run, just print the transac-- tions that would be added. Or with --catchup, just mark all of the- FILEs' transactions as imported, without actually importing any.-- The input files are specified as arguments - no need to write -f before- each one. So eg to add new transactions from all CSV files to the main- journal, it's just: hledger import *.csv-- New transactions are detected in the same way as print --new: by assum-- ing transactions are always added to the input files in increasing date- order, and by saving .latest.FILE state files.-- The --dry-run output is in journal format, so you can filter it, eg to- see only uncategorised transactions:-- $ hledger import --dry ... | hledger -f- print unknown --ignore-assertions-- Importing balance assignments- Entries added by import will have their posting amounts made explicit- (like hledger print -x). This means that any balance assignments in- imported files must be evaluated; but, imported files don't get to see- the main file's account balances. As a result, importing entries with- balance assignments (eg from an institution that provides only balances- and not posting amounts) will probably generate incorrect posting- amounts. To avoid this problem, use print instead of import:-- $ hledger print IMPORTFILE [--new] >> $LEDGER_FILE-- (If you think import should leave amounts implicit like print does,- please test it and send a pull request.)-- Commodity display styles- Imported amounts will be formatted according to the canonical commodity- styles (declared or inferred) in the main journal file.-- incomestatement- incomestatement, is-- This command displays an income statement, showing revenues and- expenses during one or more periods. Amounts are shown with normal- positive sign, as in conventional financial statements.-- The revenue and expense accounts shown are those accounts declared with- the Revenue or Expense type, or otherwise all accounts under a top-- level revenue or income or expense account (case insensitive, plurals- allowed).-- Example:-- $ hledger incomestatement- Income Statement-- Revenues:- $-2 income- $-1 gifts- $-1 salary- --------------------- $-2-- Expenses:- $2 expenses- $1 food- $1 supplies- --------------------- $2-- Total:- --------------------- 0-- With a reporting interval, multiple columns will be shown, one for each- report period. Normally incomestatement shows revenues/expenses per- period, though as with multicolumn balance reports you can alter the- report mode with --change/--cumulative/--historical. Instead of abso-- lute values percentages can be displayed with -%.-- This command also supports the output destination and output format- options The output formats supported are txt, csv, html, and (experi-- mental) json.-- notes- notes- List the unique notes that appear in transactions.-- This command lists the unique notes that appear in transactions, in- alphabetic order. You can add a query to select a subset of transac-- tions. The note is the part of the transaction description after a |- character (or if there is no |, the whole description).-- Example:-- $ hledger notes- Petrol- Snacks-- rewrite- rewrite- Print all transactions, rewriting the postings of matched transactions.- For now the only rewrite available is adding new postings, like print- --auto.-- This is a start at a generic rewriter of transaction entries. It reads- the default journal and prints the transactions, like print, but adds- one or more specified postings to any transactions matching QUERY. The- posting amounts can be fixed, or a multiplier of the existing transac-- tion's first posting amount.-- Examples:-- $ hledger-rewrite.hs ^income --add-posting '(liabilities:tax) *.33 ; income tax' --add-posting '(reserve:gifts) $100'- $ hledger-rewrite.hs expenses:gifts --add-posting '(reserve:gifts) *-1"'- $ hledger-rewrite.hs -f rewrites.hledger-- rewrites.hledger may consist of entries like:-- = ^income amt:<0 date:2017- (liabilities:tax) *0.33 ; tax on income- (reserve:grocery) *0.25 ; reserve 25% for grocery- (reserve:) *0.25 ; reserve 25% for grocery-- Note the single quotes to protect the dollar sign from bash, and the- two spaces between account and amount.-- More:-- $ hledger rewrite -- [QUERY] --add-posting "ACCT AMTEXPR" ...- $ hledger rewrite -- ^income --add-posting '(liabilities:tax) *.33'- $ hledger rewrite -- expenses:gifts --add-posting '(budget:gifts) *-1"'- $ hledger rewrite -- ^income --add-posting '(budget:foreign currency) *0.25 JPY; diversify'-- Argument for --add-posting option is a usual posting of transaction- with an exception for amount specification. More precisely, you can- use '*' (star symbol) before the amount to indicate that that this is a- factor for an amount of original matched posting. If the amount- includes a commodity name, the new posting amount will be in the new- commodity; otherwise, it will be in the matched posting amount's com-- modity.-- Re-write rules in a file- During the run this tool will execute so called "Automated Transac-- tions" found in any journal it process. I.e instead of specifying this- operations in command line you can put them in a journal file.-- $ rewrite-rules.journal-- Make contents look like this:-- = ^income- (liabilities:tax) *.33-- = expenses:gifts- budget:gifts *-1- assets:budget *1-- Note that '=' (equality symbol) that is used instead of date in trans-- actions you usually write. It indicates the query by which you want to- match the posting to add new ones.-- $ hledger rewrite -- -f input.journal -f rewrite-rules.journal > rewritten-tidy-output.journal-- This is something similar to the commands pipeline:-- $ hledger rewrite -- -f input.journal '^income' --add-posting '(liabilities:tax) *.33' \- | hledger rewrite -- -f - expenses:gifts --add-posting 'budget:gifts *-1' \- --add-posting 'assets:budget *1' \- > rewritten-tidy-output.journal-- It is important to understand that relative order of such entries in- journal is important. You can re-use result of previously added post-- ings.-- Diff output format- To use this tool for batch modification of your journal files you may- find useful output in form of unified diff.-- $ hledger rewrite -- --diff -f examples/sample.journal '^income' --add-posting '(liabilities:tax) *.33'-- Output might look like:-- --- /tmp/examples/sample.journal- +++ /tmp/examples/sample.journal- @@ -18,3 +18,4 @@- 2008/01/01 income- - assets:bank:checking $1- + assets:bank:checking $1- income:salary- + (liabilities:tax) 0- @@ -22,3 +23,4 @@- 2008/06/01 gift- - assets:bank:checking $1- + assets:bank:checking $1- income:gifts- + (liabilities:tax) 0-- If you'll pass this through patch tool you'll get transactions contain-- ing the posting that matches your query be updated. Note that multiple- files might be update according to list of input files specified via- --file options and include directives inside of these files.-- Be careful. Whole transaction being re-formatted in a style of output- from hledger print.-- See also:-- https://github.com/simonmichael/hledger/issues/99-- rewrite vs. print --auto- This command predates print --auto, and currently does much the same- thing, but with these differences:-- o with multiple files, rewrite lets rules in any file affect all other- files. print --auto uses standard directive scoping; rules affect- only child files.-- o rewrite's query limits which transactions can be rewritten; all are- printed. print --auto's query limits which transactions are printed.-- o rewrite applies rules specified on command line or in the journal.- print --auto applies rules specified in the journal.-- roi- roi- Shows the time-weighted (TWR) and money-weighted (IRR) rate of return- on your investments.-- This command assumes that you have account(s) that hold nothing but- your investments and whenever you record current appraisal/valuation of- these investments you offset unrealized profit and loss into account(s)- that, again, hold nothing but unrealized profit and loss.-- Any transactions affecting balance of investment account(s) and not- originating from unrealized profit and loss account(s) are assumed to- be your investments or withdrawals.-- At a minimum, you need to supply a query (which could be just an- account name) to select your investments with --inv, and another query- to identify your profit and loss transactions with --pnl.-- This command will compute and display the internalized rate of return- (IRR) and time-weighted rate of return (TWR) for your investments for- the time period requested. Both rates of return are annualized before- display, regardless of the length of reporting interval.-- Note, in some cases this report can fail, for these reasons:-- o Error (NotBracketed): No solution for Internal Rate of Return (IRR).- Possible causes: IRR is huge (>1000000%), balance of investment- becomes negative at some point in time.-- o Error (SearchFailed): Failed to find solution for Internal Rate of- Return (IRR). Either search does not converge to a solution, or con-- verges too slowly.-- Examples:-- o Using roi to report unrealised gains: https://github.com/simon-- michael/hledger/blob/master/examples/roi-unrealised.ledger-- More background:-- "ROI" stands for "return on investment". Traditionally this was com-- puted as a difference between current value of investment and its ini-- tial value, expressed in percentage of the initial value.-- However, this approach is only practical in simple cases, where invest-- ments receives no in-flows or out-flows of money, and where rate of- growth is fixed over time. For more complex scenarios you need differ-- ent ways to compute rate of return, and this command implements two of- them: IRR and TWR.-- Internal rate of return, or "IRR" (also called "money-weighted rate of- return") takes into account effects of in-flows and out-flows.- Naively, if you are withdrawing from your investment, your future gains- would be smaller (in absolute numbers), and will be a smaller percent-- age of your initial investment, and if you are adding to your invest-- ment, you will receive bigger absolute gains (but probably at the same- rate of return). IRR is a way to compute rate of return for each- period between in-flow or out-flow of money, and then combine them in a- way that gives you an annual rate of return that investment is expected- to generate.-- As mentioned before, in-flows and out-flows would be any cash that you- personally put in or withdraw, and for the "roi" command, these are- transactions that involve account(s) matching --inv argument and NOT- involve account(s) matching --pnl argument.-- Presumably, you will also record changes in the value of your invest-- ment, and balance them against "profit and loss" (or "unrealized- gains") account. Note that in order for IRR to compute the precise- effect of your in-flows and out-flows on the rate of return, you will- need to record the value of your investement on or close to the days- when in- or out-flows occur.-- Implementation of IRR in hledger should match the XIRR formula in- Excel.-- Second way to compute rate of return that roi command implements is- called "time-weighted rate of return" or "TWR". Like IRR, it will also- break the history of your investment into periods between in-flows and- out-flows to compute rate of return per each period and then a compound- rate of return. However, internal workings of TWR are quite different.-- In technical terms, IRR uses the same approach as computation of net- present value, and tries to find a discount rate that makes net present- value of all the cash flows of your investment to add up to zero. This- could be hard to wrap your head around, especially if you haven't done- discounted cash flow analysis before.-- TWR represents your investment as an imaginary "unit fund" where in-- flows/ out-flows lead to buying or selling "units" of your investment- and changes in its value change the value of "investment unit". Change- in "unit price" over the reporting period gives you rate of return of- your investment.-- References: * Explanation of rate of return * Explanation of IRR *- Explanation of TWR * Examples of computing IRR and TWR and discussion- of the limitations of both metrics-- More examples:-- Lets say that we found an investment in Snake Oil that is proising to- give us 10% annually:-- 2019-01-01 Investing in Snake Oil- assets:cash -$100- investment:snake oil-- 2019-12-24 Recording the growth of Snake Oil- investment:snake oil = $110- equity:unrealized gains-- For now, basic computation of the rate of return, as well as IRR and- TWR, gives us the expected 10%:-- $ hledger roi -Y --inv investment --pnl "unrealized"- +---++------------+------------++---------------+----------+-------------+-----++--------+--------+- | || Begin | End || Value (begin) | Cashflow | Value (end) | PnL || IRR | TWR |- +===++============+============++===============+==========+=============+=====++========+========+- | 1 || 2019-01-01 | 2019-12-31 || 0 | 100 | 110 | 10 || 10.00% | 10.00% |- +---++------------+------------++---------------+----------+-------------+-----++--------+--------+-- However, lets say that shorty after investing in the Snake Oil we- started to have second thoughs, so we prompty withdrew $90, leaving- only $10 in. Before Christmas, though, we started to get the "fear of- mission out", so we put the $90 back in. So for most of the year, our- investment was just $10 dollars, and it gave us just $1 in growth:-- 2019-01-01 Investing in Snake Oil- assets:cash -$100- investment:snake oil-- 2019-01-02 Buyers remorse- assets:cash $90- investment:snake oil-- 2019-12-30 Fear of missing out- assets:cash -$90- investment:snake oil-- 2019-12-31 Recording the growth of Snake Oil- investment:snake oil = $101- equity:unrealized gains-- Now IRR and TWR are drastically different:-- $ hledger roi -Y --inv investment --pnl "unrealized"- +---++------------+------------++---------------+----------+-------------+-----++-------+-------+- | || Begin | End || Value (begin) | Cashflow | Value (end) | PnL || IRR | TWR |- +===++============+============++===============+==========+=============+=====++=======+=======+- | 1 || 2019-01-01 | 2019-12-31 || 0 | 100 | 101 | 1 || 9.32% | 1.00% |- +---++------------+------------++---------------+----------+-------------+-----++-------+-------+-- Here, IRR tells us that we made close to 10% on the $10 dollars that we- had in the account most of the time. And TWR is ... just 1%? Why?-- Based on the transactions in our journal, TWR "think" that we are buy-- ing back $90 worst of Snake Oil at the same price that it had at the- beginning of they year, and then after that our $100 investment gets $1- increase in value, or 1% of $100. Let's take a closer look at what is- happening here by asking for quarterly reports instead of annual:-- $ hledger roi -Q --inv investment --pnl "unrealized"- +---++------------+------------++---------------+----------+-------------+-----++--------+-------+- | || Begin | End || Value (begin) | Cashflow | Value (end) | PnL || IRR | TWR |- +===++============+============++===============+==========+=============+=====++========+=======+- | 1 || 2019-01-01 | 2019-03-31 || 0 | 10 | 10 | 0 || 0.00% | 0.00% |- | 2 || 2019-04-01 | 2019-06-30 || 10 | 0 | 10 | 0 || 0.00% | 0.00% |- | 3 || 2019-07-01 | 2019-09-30 || 10 | 0 | 10 | 0 || 0.00% | 0.00% |- | 4 || 2019-10-01 | 2019-12-31 || 10 | 90 | 101 | 1 || 37.80% | 4.03% |- +---++------------+------------++---------------+----------+-------------+-----++--------+-------+-- Now both IRR and TWR are thrown off by the fact that all of the growth- for our investment happens in Q4 2019. This happes because IRR compu-- tation is still yielding 9.32% and TWR is still 1%, but this time these- are rates for three month period instead of twelve, so in order to get- an annual rate they should be multiplied by four!-- Let's try to keep a better record of how Snake Oil grew in value:-- 2019-01-01 Investing in Snake Oil- assets:cash -$100- investment:snake oil-- 2019-01-02 Buyers remorse- assets:cash $90- investment:snake oil-- 2019-02-28 Recording the growth of Snake Oil- investment:snake oil- equity:unrealized gains -$0.25-- 2019-06-30 Recording the growth of Snake Oil- investment:snake oil- equity:unrealized gains -$0.25-- 2019-09-30 Recording the growth of Snake Oil- investment:snake oil- equity:unrealized gains -$0.25-- 2019-12-30 Fear of missing out- assets:cash -$90- investment:snake oil-- 2019-12-31 Recording the growth of Snake Oil- investment:snake oil- equity:unrealized gains -$0.25-- Would our quartery report look better now? Almost:-- $ hledger roi -Q --inv investment --pnl "unrealized"- +---++------------+------------++---------------+----------+-------------+------++--------+--------+- | || Begin | End || Value (begin) | Cashflow | Value (end) | PnL || IRR | TWR |- +===++============+============++===============+==========+=============+======++========+========+- | 1 || 2019-01-01 | 2019-03-31 || 0 | 10 | 10.25 | 0.25 || 9.53% | 10.53% |- | 2 || 2019-04-01 | 2019-06-30 || 10.25 | 0 | 10.50 | 0.25 || 10.15% | 10.15% |- | 3 || 2019-07-01 | 2019-09-30 || 10.50 | 0 | 10.75 | 0.25 || 9.79% | 9.78% |- | 4 || 2019-10-01 | 2019-12-31 || 10.75 | 90 | 101.00 | 0.25 || 8.05% | 1.00% |- +---++------------+------------++---------------+----------+-------------+------++--------+--------+-- Something is still wrong with TWR computation for Q4, and if you have- been paying attention you know what it is already: big $90 buy-back is- recorded prior to the only transaction that captures the change of- value of Snake Oil that happened in this time period. Lets combine- transactions from 30th and 31st of Dec into one:-- 2019-12-30 Fear of missing out and growth of Snake Oil- assets:cash -$90- investment:snake oil- equity:unrealized gains -$0.25-- Now growth of investment properly affects its price at the time of buy-- back:-- $ hledger roi -Q --inv investment --pnl "unrealized"- +---++------------+------------++---------------+----------+-------------+------++--------+--------+- | || Begin | End || Value (begin) | Cashflow | Value (end) | PnL || IRR | TWR |- +===++============+============++===============+==========+=============+======++========+========+- | 1 || 2019-01-01 | 2019-03-31 || 0 | 10 | 10.25 | 0.25 || 9.53% | 10.53% |- | 2 || 2019-04-01 | 2019-06-30 || 10.25 | 0 | 10.50 | 0.25 || 10.15% | 10.15% |- | 3 || 2019-07-01 | 2019-09-30 || 10.50 | 0 | 10.75 | 0.25 || 9.79% | 9.78% |- | 4 || 2019-10-01 | 2019-12-31 || 10.75 | 90 | 101.00 | 0.25 || 8.05% | 9.57% |- +---++------------+------------++---------------+----------+-------------+------++--------+--------+-- And for annual report, TWR now reports the exact profitability of our- investment:-- $ hledger roi -Y --inv investment --pnl "unrealized"- +---++------------+------------++---------------+----------+-------------+------++-------+--------+- | || Begin | End || Value (begin) | Cashflow | Value (end) | PnL || IRR | TWR |- +===++============+============++===============+==========+=============+======++=======+========+- | 1 || 2019-01-01 | 2019-12-31 || 0 | 100 | 101.00 | 1.00 || 9.32% | 10.00% |- +---++------------+------------++---------------+----------+-------------+------++-------+--------+-- stats- stats- Show some journal statistics.-- The stats command displays summary information for the whole journal,- or a matched part of it. With a reporting interval, it shows a report- for each report period.-- Example:-- $ hledger stats- Main journal file : /src/hledger/examples/sample.journal- Included journal files :- Transactions span : 2008-01-01 to 2009-01-01 (366 days)- Last transaction : 2008-12-31 (2333 days ago)- Transactions : 5 (0.0 per day)- Transactions last 30 days: 0 (0.0 per day)- Transactions last 7 days : 0 (0.0 per day)- Payees/descriptions : 5- Accounts : 8 (depth 3)- Commodities : 1 ($)- Market prices : 12 ($)-- This command also supports output destination and output format selec-- tion.-- tags- tags- List the unique tag names used in the journal. With a TAGREGEX argu-- ment, only tag names matching the regular expression (case insensitive)- are shown. With QUERY arguments, only transactions matching the query- are considered.-- With the --values flag, the tags' unique values are listed instead.-- With --parsed flag, all tags or values are shown in the order they are- parsed from the input data, including duplicates.-- With -E/--empty, any blank/empty values will also be shown, otherwise- they are omitted.-- test- test- Run built-in unit tests.-- This command runs the unit tests built in to hledger and hledger-lib,- printing the results on stdout. If any test fails, the exit code will- be non-zero.-- This is mainly used by hledger developers, but you can also use it to- sanity-check the installed hledger executable on your platform. All- tests are expected to pass - if you ever see a failure, please report- as a bug!-- This command also accepts tasty test runner options, written after a --- (double hyphen). Eg to run only the tests in Hledger.Data.Amount, with- ANSI colour codes disabled:-- $ hledger test -- -pData.Amount --color=never-- For help on these, see https://github.com/feuerbach/tasty#options (--- --help currently doesn't show them).-- Add-on commands- Any programs or scripts in your PATH named named hledger-SOMETHING will- also appear in the commands list (with a + mark). These are called- add-on commands.-- These offical add-ons are maintained and released along with hledger:-- o ui an efficient terminal interface for hledger (TUI)-- o web a simple web interface for hledger (WUI)-- These add-ons are maintained separately:-- o iadd a more interactive alternative for the add command-- o interest generates interest transactions according to various schemes-- o stockquotes downloads market prices for your commodities from Alpha-- Vantage (experimental)-- Additional experimental add-ons, which may not be in a working state,- can be found in the bin/ directory in the hledger repo.-- Add-on command flags- In a hledger command line, add-on command flags must have a double dash- (--) preceding them. Eg you must write:-- $ hledger web -- --serve-- and not:-- $ hledger web --serve-- (because the --serve flag belongs to hledger-web, not hledger).-- The -h/--help and --version flags work without --, with their position- deciding which program they refer to. Eg hledger -h web shows- hledger's help, hledger web -h shows hledger-web's help.-- If you have any trouble with this, remember you can always run the add-- on program directly, eg:-- $ hledger-web --serve-- Making add-on commands- Add-on commands are programs or scripts in your PATH-- o whose name starts with hledger--- o whose name ends with a recognised file extension: .bat,.com,.exe,- .hs,.lhs,.pl,.py,.rb,.rkt,.sh or none-- o and (on unix, mac) which are executable by the current user.-- Add-ons are a relatively easy way to add local features or experiment- with new ideas. They can be written in any language, but haskell- scripts have a big advantage: they can use the same hledger library- functions that built-in commands use for command-line options, parsing- and reporting.--ENVIRONMENT- LEDGER_FILE The journal file path when not specified with -f. Default:- ~/.hledger.journal (on windows, perhaps C:/Users/USER/.hledger.jour-- nal).-- A typical value is ~/DIR/YYYY.journal, where DIR is a version-con-- trolled finance directory and YYYY is the current year. Or ~/DIR/cur-- rent.journal, where current.journal is a symbolic link to YYYY.journal.-- On Mac computers, you can set this and other environment variables in a- more thorough way that also affects applications started from the GUI- (say, an Emacs dock icon). Eg on MacOS Catalina I have a- ~/.MacOSX/environment.plist file containing-- {- "LEDGER_FILE" : "~/finance/current.journal"- }-- To see the effect you may need to killall Dock, or reboot.-- COLUMNS The screen width used by the register command. Default: the- full terminal width.-- NO_COLOR If this variable exists with any value, hledger will not use- ANSI color codes in terminal output. This overrides the- --color/--colour option.--FILES- Reads data from one or more files in hledger journal, timeclock, time-- dot, or CSV format specified with -f, or $LEDGER_FILE, or- $HOME/.hledger.journal (on windows, perhaps- C:/Users/USER/.hledger.journal).--LIMITATIONS- The need to precede add-on command options with -- when invoked from- hledger is awkward.-- When input data contains non-ascii characters, a suitable system locale- must be configured (or there will be an unhelpful error). Eg on POSIX,- set LANG to something other than C.-- In a Microsoft Windows CMD window, non-ascii characters and colours are- not supported.-- On Windows, non-ascii characters may not display correctly when running- a hledger built in CMD in MSYS/CYGWIN, or vice-versa.-- In a Cygwin/MSYS/Mintty window, the tab key is not supported in hledger- add.-- Not all of Ledger's journal file syntax is supported. See file format- differences.-- On large data files, hledger is slower and uses more memory than- Ledger.--TROUBLESHOOTING- Here are some issues you might encounter when you run hledger (and- remember you can also seek help from the IRC channel, mail list or bug- tracker):-- Successfully installed, but "No command 'hledger' found"- stack and cabal install binaries into a special directory, which should- be added to your PATH environment variable. Eg on unix-like systems,- that is ~/.local/bin and ~/.cabal/bin respectively.-- I set a custom LEDGER_FILE, but hledger is still using the default file- LEDGER_FILE should be a real environment variable, not just a shell- variable. The command env | grep LEDGER_FILE should show it. You may- need to use export. Here's an explanation.-- Getting errors like "Illegal byte sequence" or "Invalid or incomplete- multibyte or wide character" or "commitAndReleaseBuffer: invalid argu-- ment (invalid character)"- Programs compiled with GHC (hledger, haskell build tools, etc.) need to- have a UTF-8-aware locale configured in the environment, otherwise they- will fail with these kinds of errors when they encounter non-ascii- characters.-- To fix it, set the LANG environment variable to some locale which sup-- ports UTF-8. The locale you choose must be installed on your system.-- Here's an example of setting LANG temporarily, on Ubuntu GNU/Linux:-- $ file my.journal- my.journal: UTF-8 Unicode text # the file is UTF8-encoded- $ echo $LANG- C # LANG is set to the default locale, which does not support UTF8- $ locale -a # which locales are installed ?- C- en_US.utf8 # here's a UTF8-aware one we can use- POSIX- $ LANG=en_US.utf8 hledger -f my.journal print # ensure it is used for this command-- If available, C.UTF-8 will also work. If your preferred locale isn't- listed by locale -a, you might need to install it. Eg on- Ubuntu/Debian:-- $ apt-get install language-pack-fr- $ locale -a- C- en_US.utf8- fr_BE.utf8- fr_CA.utf8- fr_CH.utf8- fr_FR.utf8- fr_LU.utf8- POSIX- $ LANG=fr_FR.utf8 hledger -f my.journal print-- Here's how you could set it permanently, if you use a bash shell:-- $ echo "export LANG=en_US.utf8" >>~/.bash_profile- $ bash --login-- Exact spelling and capitalisation may be important. Note the differ-- ence on MacOS (UTF-8, not utf8). Some platforms (eg ubuntu) allow- variant spellings, but others (eg macos) require it to be exact:-- $ locale -a | grep -iE en_us.*utf- en_US.UTF-8- $ LANG=en_US.UTF-8 hledger -f my.journal print----REPORTING BUGS- Report bugs at http://bugs.hledger.org (or on the #hledger IRC channel- or hledger mail list)---AUTHORS- Simon Michael <simon@joyful.com> and contributors---COPYRIGHT- Copyright (C) 2007-2020 Simon Michael.- Released under GNU GPL v3 or later.---SEE ALSO- hledger(1), hledger-ui(1), hledger-web(1), ledger(1)-- hledger_journal(5), hledger_csv(5), hledger_timeclock(5), hledger_time-- dot(5)----hledger-1.20.4 December 2020 HLEDGER(1)+ This is the command-line interface (CLI) for the hledger accounting+ tool. Here we also describe hledger's concepts and file formats. This+ manual is for hledger 1.21.++SYNOPSIS+ hledger++ hledger [-f FILE] COMMAND [OPTIONS] [ARGS]++ hledger [-f FILE] ADDONCMD -- [OPTIONS] [ARGS]++DESCRIPTION+ hledger is a reliable, cross-platform set of programs for tracking+ money, time, or any other commodity, using double-entry accounting and+ a simple, editable file format. hledger is inspired by and largely+ compatible with ledger(1).++ The basic function of the hledger CLI is to read a plain text file+ describing financial transactions (in accounting terms, a general jour-+ nal) and print useful reports on standard output, or export them as+ CSV. hledger can also read some other file formats such as CSV files,+ translating them to journal format. Additionally, hledger lists other+ hledger-* executables found in the user's $PATH and can invoke them as+ subcommands.++ hledger reads data from one or more files in hledger journal, time-+ clock, timedot, or CSV format specified with -f, or $LEDGER_FILE, or+ $HOME/.hledger.journal (on windows, perhaps+ C:/Users/USER/.hledger.journal). If using $LEDGER_FILE, note this must+ be a real environment variable, not a shell variable. You can specify+ standard input with -f-.++ Transactions are dated movements of money between two (or more) named+ accounts, and are recorded with journal entries like this:++ 2015/10/16 bought food+ expenses:food $10+ assets:cash++ For more about this format, see hledger_journal(5).++ Most users use a text editor to edit the journal, usually with an edi-+ tor mode such as ledger-mode for added convenience. hledger's interac-+ tive add command is another way to record new transactions. hledger+ never changes existing transactions.++ To get started, you can either save some entries like the above in+ ~/.hledger.journal, or run hledger add and follow the prompts. Then+ try some commands like hledger print or hledger balance. Run hledger+ with no arguments for a list of commands.++OPTIONS+ General options+ To see general usage help, including general options which are sup-+ ported by most hledger commands, run hledger -h.++ General help options:++ -h --help+ show general or COMMAND help++ --man show general or COMMAND user manual with man++ --info show general or COMMAND user manual with info++ --version+ show general or ADDONCMD version++ --debug[=N]+ show debug output (levels 1-9, default: 1)++ General input options:++ -f FILE --file=FILE+ use a different input file. For stdin, use - (default:+ $LEDGER_FILE or $HOME/.hledger.journal)++ --rules-file=RULESFILE+ Conversion rules file to use when reading CSV (default:+ FILE.rules)++ --separator=CHAR+ Field separator to expect when reading CSV (default: ',')++ --alias=OLD=NEW+ rename accounts named OLD to NEW++ --anon anonymize accounts and payees++ --pivot FIELDNAME+ use some other field or tag for the account name++ -I --ignore-assertions+ disable balance assertion checks (note: does not disable balance+ assignments)++ -s --strict+ do extra error checking (check that all posted accounts are+ declared)++ General reporting options:++ -b --begin=DATE+ include postings/txns on or after this date++ -e --end=DATE+ include postings/txns before this date++ -D --daily+ multiperiod/multicolumn report by day++ -W --weekly+ multiperiod/multicolumn report by week++ -M --monthly+ multiperiod/multicolumn report by month++ -Q --quarterly+ multiperiod/multicolumn report by quarter++ -Y --yearly+ multiperiod/multicolumn report by year++ -p --period=PERIODEXP+ set start date, end date, and/or reporting interval all at once+ using period expressions syntax++ --date2+ match the secondary date instead (see command help for other+ effects)++ -U --unmarked+ include only unmarked postings/txns (can combine with -P or -C)++ -P --pending+ include only pending postings/txns++ -C --cleared+ include only cleared postings/txns++ -R --real+ include only non-virtual postings++ -NUM --depth=NUM+ hide/aggregate accounts or postings more than NUM levels deep++ -E --empty+ show items with zero amount, normally hidden (and vice-versa in+ hledger-ui/hledger-web)++ -B --cost+ convert amounts to their cost/selling amount at transaction time++ -V --market+ convert amounts to their market value in default valuation com-+ modities++ -X --exchange=COMM+ convert amounts to their market value in commodity COMM++ --value+ convert amounts to cost or market value, more flexibly than+ -B/-V/-X++ --infer-market-prices+ use transaction prices (recorded with @ or @@) as additional+ market prices, as if they were P directives++ --auto apply automated posting rules to modify transactions.++ --forecast+ generate future transactions from periodic transaction rules,+ for the next 6 months or till report end date. In hledger-ui,+ also make ordinary future transactions visible.++ --color=WHEN (or --colour=WHEN)+ Should color-supporting commands use ANSI color codes in text+ output. 'auto' (default): whenever stdout seems to be a color-+ supporting terminal. 'always' or 'yes': always, useful eg when+ piping output into 'less -R'. 'never' or 'no': never. A+ NO_COLOR environment variable overrides this.++ When a reporting option appears more than once in the command line, the+ last one takes precedence.++ Some reporting options can also be written as query arguments.++ Command options+ To see options for a particular command, including command-specific+ options, run: hledger COMMAND -h.++ Command-specific options must be written after the command name, eg:+ hledger print -x.++ Additionally, if the command is an add-on, you may need to put its+ options after a double-hyphen, eg: hledger ui -- --watch. Or, you can+ run the add-on executable directly: hledger-ui --watch.++ Command arguments+ Most hledger commands accept arguments after the command name, which+ are often a query, filtering the data in some way.++ You can save a set of command line options/arguments in a file, and+ then reuse them by writing @FILENAME as a command line argument. Eg:+ hledger bal @foo.args. (To prevent this, eg if you have an argument+ that begins with a literal @, precede it with --, eg: hledger bal --+ @ARG).++ Inside the argument file, each line should contain just one option or+ argument. Avoid the use of spaces, except inside quotes (or you'll see+ a confusing error). Between a flag and its argument, use = (or noth-+ ing). Bad:++ assets depth:2+ -X USD++ Good:++ assets+ depth:2+ -X=USD++ For special characters (see below), use one less level of quoting than+ you would at the command prompt. Bad:++ -X"$"++ Good:++ -X$++ See also: Save frequently used options.++ Special characters+ Single escaping (shell metacharacters)+ In shell command lines, characters significant to your shell - such as+ spaces, <, >, (, ), |, $ and \ - should be "shell-escaped" if you want+ hledger to see them. This is done by enclosing them in single or dou-+ ble quotes, or by writing a backslash before them. Eg to match an+ account name containing a space:++ $ hledger register 'credit card'++ or:++ $ hledger register credit\ card++ Double escaping (regular expression metacharacters)+ Characters significant in regular expressions (described below) - such+ as ., ^, $, [, ], (, ), |, and \ - may need to be "regex-escaped" if+ you don't want them to be interpreted by hledger's regular expression+ engine. This is done by writing backslashes before them, but since+ backslash is typically also a shell metacharacter, both shell-escaping+ and regex-escaping will be needed. Eg to match a literal $ sign while+ using the bash shell:++ $ hledger balance cur:'\$'++ or:++ $ hledger balance cur:\\$++ Triple escaping (for add-on commands)+ When you use hledger to run an external add-on command (described+ below), one level of shell-escaping is lost from any options or argu-+ ments intended for by the add-on command, so those need an extra level+ of shell-escaping. Eg to match a literal $ sign while using the bash+ shell and running an add-on command (ui):++ $ hledger ui cur:'\\$'++ or:++ $ hledger ui cur:\\\\$++ If you wondered why four backslashes, perhaps this helps:+++ unescaped: $+ escaped: \$+ double-escaped: \\$+ triple-escaped: \\\\$++ Or, you can avoid the extra escaping by running the add-on executable+ directly:++ $ hledger-ui cur:\\$++ Less escaping+ Options and arguments are sometimes used in places other than the shell+ command line, where shell-escaping is not needed, so there you should+ use one less level of escaping. Those places include:++ o an @argumentfile++ o hledger-ui's filter field++ o hledger-web's search form++ o GHCI's prompt (used by developers).++ Unicode characters+ hledger is expected to handle non-ascii characters correctly:++ o they should be parsed correctly in input files and on the command+ line, by all hledger tools (add, iadd, hledger-web's search/add/edit+ forms, etc.)++ o they should be displayed correctly by all hledger tools, and on-+ screen alignment should be preserved.++ This requires a well-configured environment. Here are some tips:++ o A system locale must be configured, and it must be one that can+ decode the characters being used. In bash, you can set a locale like+ this: export LANG=en_US.UTF-8. There are some more details in Trou-+ bleshooting. This step is essential - without it, hledger will quit+ on encountering a non-ascii character (as with all GHC-compiled pro-+ grams).++ o your terminal software (eg Terminal.app, iTerm, CMD.exe, xterm..)+ must support unicode++ o the terminal must be using a font which includes the required unicode+ glyphs++ o the terminal should be configured to display wide characters as dou-+ ble width (for report alignment)++ o on Windows, for best results you should run hledger in the same kind+ of environment in which it was built. Eg hledger built in the stan-+ dard CMD.EXE environment (like the binaries on our download page)+ might show display problems when run in a cygwin or msys terminal,+ and vice versa. (See eg #961).++ Regular expressions+ hledger uses regular expressions in a number of places:++ o query terms, on the command line and in the hledger-web search form:+ REGEX, desc:REGEX, cur:REGEX, tag:...=REGEX++ o CSV rules conditional blocks: if REGEX ...++ o account alias directives and options: alias /REGEX/ = REPLACEMENT,+ --alias /REGEX/=REPLACEMENT++ hledger's regular expressions come from the regex-tdfa library. If+ they're not doing what you expect, it's important to know exactly what+ they support:++ 1. they are case insensitive++ 2. they are infix matching (they do not need to match the entire thing+ being matched)++ 3. they are POSIX ERE (extended regular expressions)++ 4. they also support GNU word boundaries (\b, \B, \<, \>)++ 5. they do not support backreferences; if you write \1, it will match+ the digit 1. Except when doing text replacement, eg in account+ aliases, where backreferences can be used in the replacement string+ to reference capturing groups in the search regexp.++ 6. they do not support mode modifiers ((?s)), character classes (\w,+ \d), or anything else not mentioned above.++ Some things to note:++ o In the alias directive and --alias option, regular expressions must+ be enclosed in forward slashes (/REGEX/). Elsewhere in hledger,+ these are not required.++ o In queries, to match a regular expression metacharacter like $ as a+ literal character, prepend a backslash. Eg to search for amounts+ with the dollar sign in hledger-web, write cur:\$.++ o On the command line, some metacharacters like $ have a special mean-+ ing to the shell and so must be escaped at least once more. See Spe-+ cial characters.++ENVIRONMENT+ LEDGER_FILE The journal file path when not specified with -f. Default:+ ~/.hledger.journal (on windows, perhaps C:/Users/USER/.hledger.jour-+ nal).++ A typical value is ~/DIR/YYYY.journal, where DIR is a version-con-+ trolled finance directory and YYYY is the current year. Or ~/DIR/cur-+ rent.journal, where current.journal is a symbolic link to YYYY.journal.++ On Mac computers, you can set this and other environment variables in a+ more thorough way that also affects applications started from the GUI+ (say, an Emacs dock icon). Eg on MacOS Catalina I have a+ ~/.MacOSX/environment.plist file containing++ {+ "LEDGER_FILE" : "~/finance/current.journal"+ }++ To see the effect you may need to killall Dock, or reboot.++ COLUMNS The screen width used by the register command. Default: the+ full terminal width.++ NO_COLOR If this variable exists with any value, hledger will not use+ ANSI color codes in terminal output. This overrides the+ --color/--colour option.++DATA FILES+ hledger reads transactions from one or more data files. The default+ data file is $HOME/.hledger.journal (or on Windows, something like+ C:/Users/USER/.hledger.journal).++ You can override this with the $LEDGER_FILE environment variable:++ $ setenv LEDGER_FILE ~/finance/2016.journal+ $ hledger stats++ or with one or more -f/--file options:++ $ hledger -f /some/file -f another_file stats++ The file name - means standard input:++ $ cat some.journal | hledger -f-++ Data formats+ Usually the data file is in hledger's journal format, but it can be in+ any of the supported file formats, which currently are:+++ Reader: Reads: Used for file exten-+ sions:+ -----------------------------------------------------------------------------+ journal hledger journal files and some Ledger .journal .j .hledger+ journals, for transactions .ledger+ time- timeclock files, for precise time log- .timeclock+ clock ging+ timedot timedot files, for approximate time .timedot+ logging+ csv comma/semicolon/tab/other-separated .csv .ssv .tsv+ values, for data import++ These formats are described in their own sections, below.++ hledger detects the format automatically based on the file extensions+ shown above. If it can't recognise the file extension, it assumes+ journal format. So for non-journal files, it's important to use a+ recognised file extension, so as to either read successfully or to show+ relevant error messages.++ You can also force a specific reader/format by prefixing the file path+ with the format and a colon. Eg, to read a .dat file as csv format:++ $ hledger -f csv:/some/csv-file.dat stats++ Or to read stdin (-) as timeclock format:++ $ echo 'i 2009/13/1 08:00:00' | hledger print -ftimeclock:-++ Multiple files+ You can specify multiple -f options, to read multiple files as one big+ journal. There are some limitations with this:++ o most directives do not affect sibling files++ o balance assertions will not see any account balances from previous+ files++ If you need either of those things, you can++ o use a single parent file which includes the others++ o or concatenate the files into one before reading, eg: cat a.journal+ b.journal | hledger -f- CMD.++ Strict mode+ hledger checks input files for valid data. By default, the most impor-+ tant errors are detected, while still accepting easy journal files+ without a lot of declarations:++ o Are the input files parseable, with valid syntax ?++ o Are all transactions balanced ?++ o Do all balance assertions pass ?++ With the -s/--strict flag, additional checks are performed:++ o Are all accounts posted to, declared with an account directive ?+ (Account error checking)++ o Are all commodities declared with a commodity directive ? (Commodity+ error checking)++ See also: https://hledger.org/checking-for-errors.html++ experimental.++TIME PERIODS+ Smart dates+ hledger's user interfaces accept a flexible "smart date" syntax. Smart+ dates allow some english words, can be relative to today's date, and+ can have less-significant date parts omitted (defaulting to 1).++ Examples:+++ 2004/10/1, 2004-01-01, exact date, several separators allowed. Year+ 2004.9.1 is 4+ digits, month is 1-12, day is 1-31+ 2004 start of year+ 2004/10 start of month+ 10/1 month and day in current year+ 21 day in current month+ october, oct start of month in current year+ yesterday, today, tomor- -1, 0, 1 days from today+ row+ last/this/next -1, 0, 1 periods from the current period+ day/week/month/quar-+ ter/year+ 20181201 8 digit YYYYMMDD with valid year month and day+ 201812 6 digit YYYYMM with valid year and month++ Counterexamples - malformed digit sequences might give surprising+ results:+++ 201813 6 digits with an invalid month is parsed as start of+ 6-digit year+ 20181301 8 digits with an invalid month is parsed as start of+ 8-digit year+ 20181232 8 digits with an invalid day gives an error+ 201801012 9+ digits beginning with a valid YYYYMMDD gives an error++ Report start & end date+ By default, most hledger reports will show the full span of time repre-+ sented by the journal data. The report start date will be the earliest+ transaction or posting date, and the report end date will be the latest+ transaction, posting, or market price date.++ Often you will want to see a shorter time span, such as the current+ month. You can specify a start and/or end date using -b/--begin,+ -e/--end, -p/--period or a date: query (described below). All of these+ accept the smart date syntax.++ Some notes:++ o As in Ledger, end dates are exclusive, so you need to write the date+ after the last day you want to include.++ o As noted in reporting options: among start/end dates specified with+ options, the last (i.e. right-most) option takes precedence.++ o The effective report start and end dates are the intersection of the+ start/end dates from options and that from date: queries. That is,+ date:2019-01 date:2019 -p'2000 to 2030' yields January 2019, the+ smallest common time span.++ Examples:+++ -b 2016/3/17 begin on St. Patrick's day 2016+ -e 12/1 end at the start of december 1st of the current year+ (11/30 will be the last date included)+ -b thismonth all transactions on or after the 1st of the current month+ -p thismonth all transactions in the current month+ date:2016/3/17.. the above written as queries instead (.. can also be+ replaced with -)+ date:..12/1+ date:thismonth..+ date:thismonth++ Report intervals+ A report interval can be specified so that commands like register, bal-+ ance and activity will divide their reports into multiple subperiods.+ The basic intervals can be selected with one of -D/--daily,+ -W/--weekly, -M/--monthly, -Q/--quarterly, or -Y/--yearly. More com-+ plex intervals may be specified with a period expression. Report+ intervals can not be specified with a query.++ Period expressions+ The -p/--period option accepts period expressions, a shorthand way of+ expressing a start date, end date, and/or report interval all at once.++ Here's a basic period expression specifying the first quarter of 2009.+ Note, hledger always treats start dates as inclusive and end dates as+ exclusive:++ -p "from 2009/1/1 to 2009/4/1"++ Keywords like "from" and "to" are optional, and so are the spaces, as+ long as you don't run two dates together. "to" can also be written as+ ".." or "-". These are equivalent to the above:+++ -p "2009/1/1 2009/4/1"+ -p2009/1/1to2009/4/1+ -p2009/1/1..2009/4/1++ Dates are smart dates, so if the current year is 2009, the above can+ also be written as:+++ -p "1/1 4/1"+ -p "january-apr"+ -p "this year to 4/1"++ If you specify only one date, the missing start or end date will be the+ earliest or latest transaction in your journal:+++ -p "from 2009/1/1" everything after january+ 1, 2009+ -p "from 2009/1" the same+ -p "from 2009" the same+ -p "to 2009" everything before january+ 1, 2009++ A single date with no "from" or "to" defines both the start and end+ date like so:+++ -p "2009" the year 2009; equivalent+ to "2009/1/1 to 2010/1/1"++++ -p "2009/1" the month of jan; equiva-+ lent to "2009/1/1 to+ 2009/2/1"+ -p "2009/1/1" just that day; equivalent+ to "2009/1/1 to 2009/1/2"++ Or you can specify a single quarter like so:+++ -p "2009Q1" first quarter of 2009,+ equivalent to "2009/1/1 to+ 2009/4/1"+ -p "q4" fourth quarter of the cur-+ rent year++ The argument of -p can also begin with, or be, a report interval+ expression. The basic report intervals are daily, weekly, monthly,+ quarterly, or yearly, which have the same effect as the -D,-W,-M,-Q, or+ -Y flags. Between report interval and start/end dates (if any), the+ word in is optional. Examples:+++ -p "weekly from 2009/1/1 to 2009/4/1"+ -p "monthly in 2008"+ -p "quarterly"++ Note that weekly, monthly, quarterly and yearly intervals will always+ start on the first day on week, month, quarter or year accordingly, and+ will end on the last day of same period, even if associated period+ expression specifies different explicit start and end date.++ For example:+++ -p "weekly from 2009/1/1 starts on 2008/12/29, closest preceding Mon-+ to 2009/4/1" day+ -p "monthly in starts on 2018/11/01+ 2008/11/25"+ -p "quarterly from starts on 2009/04/01, ends on 2009/06/30,+ 2009-05-05 to 2009-06-01" which are first and last days of Q2 2009+ -p "yearly from starts on 2009/01/01, first day of 2009+ 2009-12-29"++ The following more complex report intervals are also supported:+ biweekly, fortnightly, bimonthly, every day|week|month|quarter|year,+ every N days|weeks|months|quarters|years.++ All of these will start on the first day of the requested period and+ end on the last one, as described above.++ Examples:+++ -p "bimonthly from 2008" periods will have boundaries on 2008/01/01,+ 2008/03/01, ...+ -p "every 2 weeks" starts on closest preceding Monday+ -p "every 5 month from periods will have boundaries on 2009/03/01,+ 2009/03" 2009/08/01, ...++ If you want intervals that start on arbitrary day of your choosing and+ span a week, month or year, you need to use any of the following:++ every Nth day of week, every WEEKDAYNAME (eg+ mon|tue|wed|thu|fri|sat|sun), every Nth day [of month], every Nth WEEK-+ DAYNAME [of month], every MM/DD [of year], every Nth MMM [of year],+ every MMM Nth [of year].++ Examples:++++ -p "every 2nd day of periods will go from Tue to Tue+ week"+ -p "every Tue" same+ -p "every 15th day" period boundaries will be on 15th of each+ month+ -p "every 2nd Monday" period boundaries will be on second Monday of+ each month+ -p "every 11/05" yearly periods with boundaries on 5th of Nov+ -p "every 5th Nov" same+ -p "every Nov 5th" same++ Show historical balances at end of 15th each month (N is exclusive end+ date):++ hledger balance -H -p "every 16th day"++ Group postings from start of wednesday to end of next tuesday (N is+ start date and exclusive end date):++ hledger register checking -p "every 3rd day of week"++DEPTH+ With the --depth N option (short form: -N), commands like account, bal-+ ance and register will show only the uppermost accounts in the account+ tree, down to level N. Use this when you want a summary with less+ detail. This flag has the same effect as a depth: query argument (so+ -2, --depth=2 or depth:2 are equivalent).++QUERIES+ One of hledger's strengths is being able to quickly report on precise+ subsets of your data. Most commands accept an optional query expres-+ sion, written as arguments after the command name, to filter the data+ by date, account name or other criteria. The syntax is similar to a+ web search: one or more space-separated search terms, quotes to enclose+ whitespace, prefixes to match specific fields, a not: prefix to negate+ the match.++ We do not yet support arbitrary boolean combinations of search terms;+ instead most commands show transactions/postings/accounts which match+ (or negatively match):++ o any of the description terms AND++ o any of the account terms AND++ o any of the status terms AND++ o all the other terms.++ The print command instead shows transactions which:++ o match any of the description terms AND++ o have any postings matching any of the positive account terms AND++ o have no postings matching any of the negative account terms AND++ o match all the other terms.++ The following kinds of search terms can be used. Remember these can+ also be prefixed with not:, eg to exclude a particular subaccount.++ REGEX, acct:REGEX+ match account names by this regular expression. (With no pre-+ fix, acct: is assumed.) same as above++ amt:N, amt:<N, amt:<=N, amt:>N, amt:>=N+ match postings with a single-commodity amount that is equal to,+ less than, or greater than N. (Multi-commodity amounts are not+ tested, and will always match.) The comparison has two modes: if+ N is preceded by a + or - sign (or is 0), the two signed numbers+ are compared. Otherwise, the absolute magnitudes are compared,+ ignoring sign.++ code:REGEX+ match by transaction code (eg check number)++ cur:REGEX+ match postings or transactions including any amounts whose cur-+ rency/commodity symbol is fully matched by REGEX. (For a par-+ tial match, use .*REGEX.*). Note, to match characters which are+ regex-significant, like the dollar sign ($), you need to prepend+ \. And when using the command line you need to add one more+ level of quoting to hide it from the shell, so eg do: hledger+ print cur:'\$' or hledger print cur:\\$.++ desc:REGEX+ match transaction descriptions.++ date:PERIODEXPR+ match dates within the specified period. PERIODEXPR is a period+ expression (with no report interval). Examples: date:2016,+ date:thismonth, date:2000/2/1-2/15, date:lastweek-. If the+ --date2 command line flag is present, this matches secondary+ dates instead.++ date2:PERIODEXPR+ match secondary dates within the specified period.++ depth:N+ match (or display, depending on command) accounts at or above+ this depth++ note:REGEX+ match transaction notes (part of description right of |, or+ whole description when there's no |)++ payee:REGEX+ match transaction payee/payer names (part of description left of+ |, or whole description when there's no |)++ real:, real:0+ match real or virtual postings respectively++ status:, status:!, status:*+ match unmarked, pending, or cleared transactions respectively++ tag:REGEX[=REGEX]+ match by tag name, and optionally also by tag value. Note a+ tag: query is considered to match a transaction if it matches+ any of the postings. Also remember that postings inherit the+ tags of their parent transaction.++ The following special search term is used automatically in hledger-web,+ only:++ inacct:ACCTNAME+ tells hledger-web to show the transaction register for this+ account. Can be filtered further with acct etc.++ Some of these can also be expressed as command-line options (eg depth:2+ is equivalent to --depth 2). Generally you can mix options and query+ arguments, and the resulting query will be their intersection (perhaps+ excluding the -p/--period option).++COSTING+ The -B/--cost flag converts amounts to their cost or sale amount at+ transaction time, if they have a transaction price specified. If this+ flag is supplied, hledger will perform cost conversion first, and will+ apply any market price valuations (if requested) afterwards.++VALUATION+ Instead of reporting amounts in their original commodity, hledger can+ convert them to cost/sale amount (using the conversion rate recorded in+ the transaction), and/or to market value (using some market price on a+ certain date). This is controlled by the --value=TYPE[,COMMODITY]+ option, which will be described below. We also provide the simpler -V+ and -X COMMODITY options, and often one of these is all you need:++ -V: Value+ The -V/--market flag converts amounts to market value in their default+ valuation commodity, using the market prices in effect on the valuation+ date(s), if any. More on these in a minute.++ -X: Value in specified commodity+ The -X/--exchange=COMM option is like -V, except you tell it which cur-+ rency you want to convert to, and it tries to convert everything to+ that.++ Valuation date+ Since market prices can change from day to day, market value reports+ have a valuation date (or more than one), which determines which market+ prices will be used.++ For single period reports, if an explicit report end date is specified,+ that will be used as the valuation date; otherwise the valuation date+ is the journal's end date.++ For multiperiod reports, each column/period is valued on the last day+ of the period, by default.++ Market prices+ To convert a commodity A to its market value in another commodity B,+ hledger looks for a suitable market price (exchange rate) as follows,+ in this order of preference :++ 1. A declared market price or inferred market price: A's latest market+ price in B on or before the valuation date as declared by a P direc-+ tive, or (with the --infer-market-price flag) inferred from transac-+ tion prices.++ 2. A reverse market price: the inverse of a declared or inferred market+ price from B to A.++ 3. A forward chain of market prices: a synthetic price formed by com-+ bining the shortest chain of "forward" (only 1 above) market prices,+ leading from A to B.++ 4. Any chain of market prices: a chain of any market prices, including+ both forward and reverse prices (1 and 2 above), leading from A to+ B.++ There is a limit to the length of these price chains; if hledger+ reaches that length without finding a complete chain or exhausting all+ possibilities, it will give up (with a "gave up" message visible in+ --debug=2 output). That limit is currently 1000.++ Amounts for which no suitable market price can be found, are not con-+ verted.++ --infer-market-price: market prices from transactions+ Normally, market value in hledger is fully controlled by, and requires,+ P directives in your journal. Since adding and updating those can be a+ chore, and since transactions usually take place at close to market+ value, why not use the recorded transaction prices as additional market+ prices (as Ledger does) ? We could produce value reports without need-+ ing P directives at all.++ Adding the --infer-market-price flag to -V, -X or --value enables this.+ So for example, hledger bs -V --infer-market-price will get market+ prices both from P directives and from transactions. (And if both+ occur on the same day, the P directive takes precedence).++ There is a downside: value reports can sometimes be affected in confus-+ ing/undesired ways by your journal entries. If this happens to you,+ read all of this Valuation section carefully, and try adding --debug or+ --debug=2 to troubleshoot.++ --infer-market-price can infer market prices from:++ o multicommodity transactions with explicit prices (@/@@)++ o multicommodity transactions with implicit prices (no @, two commodi-+ ties, unbalanced). (With these, the order of postings matters.+ hledger print -x can be useful for troubleshooting.)++ o but not, currently, from "more correct" multicommodity transactions+ (no @, multiple commodities, balanced).++ Valuation commodity+ When you specify a valuation commodity (-X COMM or --value TYPE,COMM):+ hledger will convert all amounts to COMM, wherever it can find a suit-+ able market price (including by reversing or chaining prices).++ When you leave the valuation commodity unspecified (-V or --value+ TYPE):+ For each commodity A, hledger picks a default valuation commodity as+ follows, in this order of preference:++ 1. The price commodity from the latest P-declared market price for A on+ or before valuation date.++ 2. The price commodity from the latest P-declared market price for A on+ any date. (Allows conversion to proceed when there are inferred+ prices before the valuation date.)++ 3. If there are no P directives at all (any commodity or date) and the+ --infer-market-price flag is used: the price commodity from the lat-+ est transaction-inferred price for A on or before valuation date.++ This means:++ o If you have P directives, they determine which commodities -V will+ convert, and to what.++ o If you have no P directives, and use the --infer-market-price flag,+ transaction prices determine it.++ Amounts for which no valuation commodity can be found are not con-+ verted.++ Simple valuation examples+ Here are some quick examples of -V:++ ; one euro is worth this many dollars from nov 1+ P 2016/11/01 EUR $1.10++ ; purchase some euros on nov 3+ 2016/11/3+ assets:euros EUR100+ assets:checking++ ; the euro is worth fewer dollars by dec 21+ P 2016/12/21 EUR $1.03++ How many euros do I have ?++ $ hledger -f t.j bal -N euros+ EUR100 assets:euros++ What are they worth at end of nov 3 ?++ $ hledger -f t.j bal -N euros -V -e 2016/11/4+ $110.00 assets:euros++ What are they worth after 2016/12/21 ? (no report end date specified,+ defaults to today)++ $ hledger -f t.j bal -N euros -V+ $103.00 assets:euros++ --value: Flexible valuation+ -V and -X are special cases of the more general --value option:++ --value=TYPE[,COMM] TYPE is then, end, now or YYYY-MM-DD.+ COMM is an optional commodity symbol.+ Shows amounts converted to:+ - default valuation commodity (or COMM) using market prices at posting dates+ - default valuation commodity (or COMM) using market prices at period end(s)+ - default valuation commodity (or COMM) using current market prices+ - default valuation commodity (or COMM) using market prices at some date++ The TYPE part selects cost or value and valuation date:++ --value=then+ Convert amounts to their value in the default valuation commod-+ ity, using market prices on each posting's date.++ --value=end+ Convert amounts to their value in the default valuation commod-+ ity, using market prices on the last day of the report period+ (or if unspecified, the journal's end date); or in multiperiod+ reports, market prices on the last day of each subperiod.++ --value=now+ Convert amounts to their value in the default valuation commod-+ ity using current market prices (as of when report is gener-+ ated).++ --value=YYYY-MM-DD+ Convert amounts to their value in the default valuation commod-+ ity using market prices on this date.++ To select a different valuation commodity, add the optional ,COMM part:+ a comma, then the target commodity's symbol. Eg: --value=now,EUR.+ hledger will do its best to convert amounts to this commodity, deducing+ market prices as described above.++ More valuation examples+ Here are some examples showing the effect of --value, as seen with+ print:++ P 2000-01-01 A 1 B+ P 2000-02-01 A 2 B+ P 2000-03-01 A 3 B+ P 2000-04-01 A 4 B++ 2000-01-01+ (a) 1 A @ 5 B++ 2000-02-01+ (a) 1 A @ 6 B++ 2000-03-01+ (a) 1 A @ 7 B++ Show the cost of each posting:++ $ hledger -f- print --cost+ 2000-01-01+ (a) 5 B++ 2000-02-01+ (a) 6 B++ 2000-03-01+ (a) 7 B++ Show the value as of the last day of the report period (2000-02-29):++ $ hledger -f- print --value=end date:2000/01-2000/03+ 2000-01-01+ (a) 2 B++ 2000-02-01+ (a) 2 B++ With no report period specified, that shows the value as of the last+ day of the journal (2000-03-01):++ $ hledger -f- print --value=end+ 2000-01-01+ (a) 3 B++ 2000-02-01+ (a) 3 B++ 2000-03-01+ (a) 3 B++ Show the current value (the 2000-04-01 price is still in effect today):++ $ hledger -f- print --value=now+ 2000-01-01+ (a) 4 B++ 2000-02-01+ (a) 4 B++ 2000-03-01+ (a) 4 B++ Show the value on 2000/01/15:++ $ hledger -f- print --value=2000-01-15+ 2000-01-01+ (a) 1 B++ 2000-02-01+ (a) 1 B++ 2000-03-01+ (a) 1 B++ You may need to explicitly set a commodity's display style, when+ reverse prices are used. Eg this output might be surprising:++ P 2000-01-01 A 2B++ 2000-01-01+ a 1B+ b++ $ hledger print -x -X A+ 2000-01-01+ a 0+ b 0++ Explanation: because there's no amount or commodity directive specify-+ ing a display style for A, 0.5A gets the default style, which shows no+ decimal digits. Because the displayed amount looks like zero, the com-+ modity symbol and minus sign are not displayed either. Adding a com-+ modity directive sets a more useful display style for A:++ P 2000-01-01 A 2B+ commodity 0.00A++ 2000-01-01+ a 1B+ b++ $ hledger print -X A+ 2000-01-01+ a 0.50A+ b -0.50A++ Effect of valuation on reports+ Here is a reference for how valuation is supposed to affect each part+ of hledger's reports (and a glossary). (It's wide, you'll have to+ scroll sideways.) It may be useful when troubleshooting. If you find+ problems, please report them, ideally with a reproducible example.+ Related: #329, #1083.+++ Report -B, --cost -V, -X --value=then --value=end --value=DATE,+ type --value=now+ -----------------------------------------------------------------------------------------------+ print+ posting cost value at value at posting value at value at+ amounts report end date report or DATE/today+ or today journal end+ balance unchanged unchanged unchanged unchanged unchanged+ asser-+ tions/assign-+ ments++ register+ starting bal- cost value at day valued at day value at day value at+ ance (-H) before each historical before DATE/today+ report or posting was made report or+ journal journal+ start start+ posting cost value at value at posting value at value at+ amounts report end date report or DATE/today+ or today journal end+ summary post- summarised value at sum of postings value at value at+ ing amounts cost period ends in interval, val- period ends DATE/today+ with report ued at interval+ interval start+ running sum/average sum/average sum/average of sum/average sum/average+ total/average of displayed of displayed displayed values of displayed of displayed+ values values values values++ balance (bs,+ bse, cf, is)+ balance sums of value at value at posting value at value at+ changes costs report end date report or DATE/today of+ or today of journal end sums of post-+ sums of of sums of ings+ postings postings+ budget like balance like balance like balance like bal- like balance+ amounts changes changes changes ances changes+ (--budget)+ grand total sum of dis- sum of dis- sum of displayed sum of dis- sum of dis-+ played val- played val- valued played val- played values+ ues ues ues++ balance (bs,+ bse, cf, is)+ with report+ interval+ starting bal- sums of value at sums of values of value at sums of post-+ ances (-H) costs of report start postings before report start ings before+ postings of sums of report start at of sums of report start+ before all postings respective post- all postings+ report start before ing dates before+ report start report start+ balance sums of same as sums of values of balance value at+ changes (bal, costs of --value=end postings in change in DATE/today of+ is, bs postings in period at respec- each period, sums of post-+ --change, cf period tive posting valued at ings+ --change) dates period ends++++++++ end balances sums of same as sums of values of period end value at+ (bal -H, is costs of --value=end postings from balances, DATE/today of+ --H, bs, cf) postings before period valued at sums of post-+ from before start to period period ends ings+ report start end at respective+ to period posting dates+ end+ budget like balance like balance like balance like bal- like balance+ amounts changes/end changes/end changes/end bal- ances changes/end+ (--budget) balances balances ances balances+ row totals, sums, aver- sums, aver- sums, averages of sums, aver- sums, aver-+ row averages ages of dis- ages of dis- displayed values ages of dis- ages of dis-+ (-T, -A) played val- played val- played val- played values+ ues ues ues+ column totals sums of dis- sums of dis- sums of displayed sums of dis- sums of dis-+ played val- played val- values played val- played values+ ues ues ues+ grand total, sum, average sum, average sum, average of sum, average sum, average+ grand average of column of column column totals of column of column+ totals totals totals totals+++ --cumulative is omitted to save space, it works like -H but with a zero+ starting balance.++ Glossary:++ cost calculated using price(s) recorded in the transaction(s).++ value market value using available market price declarations, or the+ unchanged amount if no conversion rate can be found.++ report start+ the first day of the report period specified with -b or -p or+ date:, otherwise today.++ report or journal start+ the first day of the report period specified with -b or -p or+ date:, otherwise the earliest transaction date in the journal,+ otherwise today.++ report end+ the last day of the report period specified with -e or -p or+ date:, otherwise today.++ report or journal end+ the last day of the report period specified with -e or -p or+ date:, otherwise the latest transaction date in the journal,+ otherwise today.++ report interval+ a flag (-D/-W/-M/-Q/-Y) or period expression that activates the+ report's multi-period mode (whether showing one or many subperi-+ ods).++PIVOTING+ Normally hledger sums amounts, and organizes them in a hierarchy, based+ on account name. The --pivot FIELD option causes it to sum and orga-+ nize hierarchy based on the value of some other field instead. FIELD+ can be: code, description, payee, note, or the full name (case insensi-+ tive) of any tag. As with account names, values containing colon:sepa-+ rated:parts will be displayed hierarchically in reports.++ --pivot is a general option affecting all reports; you can think of+ hledger transforming the journal before any other processing, replacing+ every posting's account name with the value of the specified field on+ that posting, inheriting it from the transaction or using a blank value+ if it's not present.++ An example:++ 2016/02/16 Member Fee Payment+ assets:bank account 2 EUR+ income:member fees -2 EUR ; member: John Doe++ Normal balance report showing account names:++ $ hledger balance+ 2 EUR assets:bank account+ -2 EUR income:member fees+ --------------------+ 0++ Pivoted balance report, using member: tag values instead:++ $ hledger balance --pivot member+ 2 EUR+ -2 EUR John Doe+ --------------------+ 0++ One way to show only amounts with a member: value (using a query,+ described below):++ $ hledger balance --pivot member tag:member=.+ -2 EUR John Doe+ --------------------+ -2 EUR++ Another way (the acct: query matches against the pivoted "account+ name"):++ $ hledger balance --pivot member acct:.+ -2 EUR John Doe+ --------------------+ -2 EUR++OUTPUT+ Output destination+ hledger commands send their output to the terminal by default. You can+ of course redirect this, eg into a file, using standard shell syntax:++ $ hledger print > foo.txt++ Some commands (print, register, stats, the balance commands) also pro-+ vide the -o/--output-file option, which does the same thing without+ needing the shell. Eg:++ $ hledger print -o foo.txt+ $ hledger print -o - # write to stdout (the default)++ Output format+ Some commands (print, register, the balance commands) offer a choice of+ output format. In addition to the usual plain text format (txt), there+ are CSV (csv), HTML (html), JSON (json) and SQL (sql). This is con-+ trolled by the -O/--output-format option:++ $ hledger print -O csv++ or, by a file extension specified with -o/--output-file:++ $ hledger balancesheet -o foo.html # write HTML to foo.html++ The -O option can be used to override the file extension if needed:++ $ hledger balancesheet -o foo.txt -O html # write HTML to foo.txt++ Some notes about JSON output:++ o This feature is marked experimental, and not yet much used; you+ should expect our JSON to evolve. Real-world feedback is welcome.++ o Our JSON is rather large and verbose, as it is quite a faithful rep-+ resentation of hledger's internal data types. To understand the+ JSON, read the Haskell type definitions, which are mostly in+ https://github.com/simonmichael/hledger/blob/master/hledger-+ lib/Hledger/Data/Types.hs.++ o hledger represents quantities as Decimal values storing up to 255+ significant digits, eg for repeating decimals. Such numbers can+ arise in practice (from automatically-calculated transaction prices),+ and would break most JSON consumers. So in JSON, we show quantities+ as simple Numbers with at most 10 decimal places. We don't limit the+ number of integer digits, but that part is under your control. We+ hope this approach will not cause problems in practice; if you find+ otherwise, please let us know. (Cf #1195)++ Notes about SQL output:++ o SQL output is also marked experimental, and much like JSON could use+ real-world feedback.++ o SQL output is expected to work with sqlite, MySQL and PostgreSQL++ o SQL output is structured with the expectations that statements will+ be executed in the empty database. If you already have tables cre-+ ated via SQL output of hledger, you would probably want to either+ clear tables of existing data (via delete or truncate SQL statements)+ or drop tables completely as otherwise your postings will be duped.++COMMANDS+ hledger provides a number of commands for producing reports and manag-+ ing your data. Run hledger with no arguments to list the commands+ available, and hledger CMD to run a command. CMD can be the full com-+ mand name, or its standard abbreviation shown in the commands list, or+ any unambiguous prefix of the name. Eg: hledger bal.++ Here are the built-in commands, with the most often-used in bold:++ Data entry:++ These data entry commands are the only ones which can modify your jour-+ nal file.++ o add - add transactions using guided prompts++ o import - add any new transactions from other files (eg csv)++ Data management:++ o check - check for various kinds of issue in the data++ o close (equity) - generate balance-resetting transactions++ o diff - compare account transactions in two journal files++ o rewrite - generate extra postings, similar to print --auto++ Financial statements:++ o aregister (areg) - show transactions in a particular account++ o balancesheet (bs) - show assets, liabilities and net worth++ o balancesheetequity (bse) - show assets, liabilities and equity++ o cashflow (cf) - show changes in liquid assets++ o incomestatement (is) - show revenues and expenses++ o roi - show return on investments++ Miscellaneous reports:++ o accounts - show account names++ o activity - show postings-per-interval bar charts++ o balance (bal) - show balance changes/end balances/budgets in any+ accounts++ o codes - show transaction codes++ o commodities - show commodity/currency symbols++ o descriptions - show unique transaction descriptions++ o files - show input file paths++ o help - show hledger user manuals in several formats++ o notes - show unique note segments of transaction descriptions++ o payees - show unique payee segments of transaction descriptions++ o prices - show market price records++ o print - show transactions (journal entries)++ o print-unique - show only transactions with unique descriptions++ o register (reg) - show postings in one or more accounts & running+ total++ o register-match - show a recent posting that best matches a descrip-+ tion++ o stats - show journal statistics++ o tags - show tag names++ o test - run self tests++ Add-on commands:++ Programs or scripts named hledger-SOMETHING in your PATH are add-on+ commands; these appear in the commands list with a + mark. Two of+ these are maintained and released with hledger:++ o ui - an efficient terminal interface (TUI) for hledger++ o web - a simple web interface (WUI) for hledger++ And these add-ons are maintained separately:++ o iadd - a more interactive alternative for the add command++ o interest - generates interest transactions according to various+ schemes++ o stockquotes - downloads market prices for your commodities from+ AlphaVantage (experimental)++ Next, the detailed command docs, in alphabetical order.++ accounts+ accounts+ Show account names.++ This command lists account names, either declared with account direc-+ tives (--declared), posted to (--used), or both (the default). With+ query arguments, only matched account names and account names refer-+ enced by matched postings are shown. It shows a flat list by default.+ With --tree, it uses indentation to show the account hierarchy. In+ flat mode you can add --drop N to omit the first few account name com-+ ponents. Account names can be depth-clipped with depth:N or --depth N+ or -N.++ Examples:++ $ hledger accounts+ assets:bank:checking+ assets:bank:saving+ assets:cash+ expenses:food+ expenses:supplies+ income:gifts+ income:salary+ liabilities:debts++ activity+ activity+ Show an ascii barchart of posting counts per interval.++ The activity command displays an ascii histogram showing transaction+ counts by day, week, month or other reporting interval (by day is the+ default). With query arguments, it counts only matched transactions.++ Examples:++ $ hledger activity --quarterly+ 2008-01-01 **+ 2008-04-01 *******+ 2008-07-01+ 2008-10-01 **++ add+ add+ Prompt for transactions and add them to the journal. Any arguments+ will be used as default inputs for the first N prompts.++ Many hledger users edit their journals directly with a text editor, or+ generate them from CSV. For more interactive data entry, there is the+ add command, which prompts interactively on the console for new trans-+ actions, and appends them to the journal file (if there are multiple -f+ FILE options, the first file is used.) Existing transactions are not+ changed. This is the only hledger command that writes to the journal+ file.++ To use it, just run hledger add and follow the prompts. You can add as+ many transactions as you like; when you are finished, enter . or press+ control-d or control-c to exit.++ Features:++ o add tries to provide useful defaults, using the most similar (by+ description) recent transaction (filtered by the query, if any) as a+ template.++ o You can also set the initial defaults with command line arguments.++ o Readline-style edit keys can be used during data entry.++ o The tab key will auto-complete whenever possible - accounts, descrip-+ tions, dates (yesterday, today, tomorrow). If the input area is+ empty, it will insert the default value.++ o If the journal defines a default commodity, it will be added to any+ bare numbers entered.++ o A parenthesised transaction code may be entered following a date.++ o Comments and tags may be entered following a description or amount.++ o If you make a mistake, enter < at any prompt to go one step backward.++ o Input prompts are displayed in a different colour when the terminal+ supports it.++ Example (see the tutorial for a detailed explanation):++ $ hledger add+ Adding transactions to journal file /src/hledger/examples/sample.journal+ Any command line arguments will be used as defaults.+ Use tab key to complete, readline keys to edit, enter to accept defaults.+ An optional (CODE) may follow transaction dates.+ An optional ; COMMENT may follow descriptions or amounts.+ If you make a mistake, enter < at any prompt to go one step backward.+ To end a transaction, enter . when prompted.+ To quit, enter . at a date prompt or press control-d or control-c.+ Date [2015/05/22]:+ Description: supermarket+ Account 1: expenses:food+ Amount 1: $10+ Account 2: assets:checking+ Amount 2 [$-10.0]:+ Account 3 (or . or enter to finish this transaction): .+ 2015/05/22 supermarket+ expenses:food $10+ assets:checking $-10.0++ Save this transaction to the journal ? [y]:+ Saved.+ Starting the next transaction (. or ctrl-D/ctrl-C to quit)+ Date [2015/05/22]: <CTRL-D> $++ On Microsoft Windows, the add command makes sure that no part of the+ file path ends with a period, as that would cause problems (#1056).++ aregister+ aregister, areg++ Show the transactions and running historical balance in an account,+ with each line item representing one transaction.++ aregister shows the transactions affecting a particular account and its+ subaccounts, with each line item representing a whole transaction - as+ in bank statements, hledger-ui, hledger-web and other accounting apps.++ Note this is unlike the register command, which shows individual post-+ ings and does not always show a single account or a historical balance.++ A reminder, "historical" balances include any balance from transactions+ before the report start date, so (if opening balances are recorded cor-+ rectly) aregister will show the real-world balances of an account, as+ you would see in a bank statement.++ As a quick rule of thumb, use aregister for reconciling real-world+ asset/liability accounts and register for reviewing detailed rev-+ enues/expenses.++ aregister shows the register for just one account (and its subac-+ counts). This account must be specified as the first argument. You+ can write either the full account name, or a case-insensitive regular+ expression which will select the alphabetically first matched account.+ (Eg if you have assets:aaa:checking and assets:bbb:checking accounts,+ hledger areg checking would select assets:aaa:checking.)++ Any additional arguments form a query which will filter the transac-+ tions shown.++ Each aregister line item shows:++ o the transaction's date (or the relevant posting's date if different,+ see below)++ o the names of all the other account(s) involved in this transaction+ (probably abbreviated)++ o the total change to this account's balance from this transaction++ o the account's historical running balance after this transaction.++ Transactions making a net change of zero are not shown by default; add+ the -E/--empty flag to show them.++ aregister ignores a depth limit, so its final total will always match a+ balance report with similar arguments.++ This command also supports the output destination and output format+ options The output formats supported are txt, csv, and json.++ aregister and custom posting dates+ Transactions whose date is outside the report period can still be+ shown, if they have a posting to this account dated inside the report+ period. (And in this case it's the posting date that is shown.) This+ ensures that aregister can show an accurate historical running balance,+ matching the one shown by register -H with the same arguments.++ To filter strictly by transaction date instead, add the --txn-dates+ flag. If you use this flag and some of your postings have custom+ dates, it's probably best to assume the running balance is wrong.++ Examples:++ Show all transactions and historical running balance in the first+ account whose name contains "checking":++ $ hledger areg checking++ Show transactions and historical running balance in all asset accounts+ during july:++ $ hledger areg assets date:jul++ balance+ balance, bal+ Show accounts and their balances.++ balance is one of hledger's oldest and most versatile commands, for+ listing account balances, balance changes, values, value changes and+ more, during one time period or many. Generally it shows a table, with+ rows representing accounts, and columns representing periods.++ Note there are some higher-level variants of the balance command with+ convenient defaults, which can be simpler to use: balancesheet, bal-+ ancesheetequity, cashflow and incomestatement. When you need more con-+ trol, then use balance.++ balance features+ Here's a quick overview of the balance command's features, followed by+ more detailed descriptions and examples. Many of these work with the+ higher-level commands as well.++ balance can show..++ o accounts as a list (-l) or a tree (-t)++ o optionally depth-limited (-[1-9])++ o sorted by declaration order and name, or by amount++ ..and their..++ o balance changes (the default)++ o or actual and planned balance changes (--budget)++ o or value of balance changes (-V)++ o or change of balance values (--valuechange)++ ..in..++ o one time period (the whole journal period by default)++ o or multiple periods (-D, -W, -M, -Q, -Y, -p INTERVAL)++ ..either..++ o per period (the default)++ o or accumulated since report start date (--cumulative)++ o or accumulated since account creation (--historical/-H)++ ..possibly converted to..++ o cost (--value=cost[,COMM]/--cost/-B)++ o or market value, as of transaction dates (--value=then[,COMM])++ o or at period ends (--value=end[,COMM])++ o or now (--value=now)++ o or at some other date (--value=YYYY-MM-DD)++ ..with..++ o totals (-T), averages (-A), percentages (-%), inverted sign+ (--invert)++ o rows and columns swapped (--transpose)++ o another field used as account name (--pivot)++ o custom-formatted line items (single-period reports only) (--format)++ This command supports the output destination and output format options,+ with output formats txt, csv, json, and (multi-period reports only:)+ html. In txt output in a colour-supporting terminal, negative amounts+ are shown in red.++ Simple balance report+ With no arguments, balance shows a list of all accounts and their+ change of balance - ie, the sum of posting amounts, both inflows and+ outflows - during the entire period of the journal. For real-world+ accounts, this should also match their end balance at the end of the+ journal period (more on this below).++ Accounts are sorted by declaration order if any, and then alphabeti-+ cally by account name. For instance, using examples/sample.journal:++ $ hledger bal+ $1 assets:bank:saving+ $-2 assets:cash+ $1 expenses:food+ $1 expenses:supplies+ $-1 income:gifts+ $-1 income:salary+ $1 liabilities:debts+ --------------------+ 0++ Accounts with a zero balance (and no non-zero subaccounts, in tree mode+ - see below) are hidden by default. Use -E/--empty to show them+ (revealing assets:bank:checking here):++ $ hledger -f examples/sample.journal bal -E+ 0 assets:bank:checking+ $1 assets:bank:saving+ $-2 assets:cash+ $1 expenses:food+ $1 expenses:supplies+ $-1 income:gifts+ $-1 income:salary+ $1 liabilities:debts+ --------------------+ 0++ The total of the amounts displayed is shown as the last line, unless+ -N/--no-total is used.++ Filtered balance report+ You can show fewer accounts, a different time period, totals from+ cleared transactions only, etc. by using query arguments or options to+ limit the postings being matched. Eg:++ $ hledger bal --cleared assets date:200806+ $-2 assets:cash+ --------------------+ $-2++ List or tree mode+ By default, or with -l/--flat, accounts are shown as a flat list with+ their full names visible, as in the examples above.++ With -t/--tree, the account hierarchy is shown, with subaccounts'+ "leaf" names indented below their parent:++ $ hledger balance+ $-1 assets+ $1 bank:saving+ $-2 cash+ $2 expenses+ $1 food+ $1 supplies+ $-2 income+ $-1 gifts+ $-1 salary+ $1 liabilities:debts+ --------------------+ 0++ Notes:++ o "Boring" accounts are combined with their subaccount for more compact+ output, unless --no-elide is used. Boring accounts have no balance+ of their own and just one subaccount (eg assets:bank and liabilities+ above).++ o All balances shown are "inclusive", ie including the balances from+ all subaccounts. Note this means some repetition in the output,+ which requires explanation when sharing reports with non-plaintextac-+ counting-users. A tree mode report's final total is the sum of the+ top-level balances shown, not of all the balances shown.++ o Each group of sibling accounts (ie, under a common parent) is sorted+ separately.++ Depth limiting+ With a depth:N query, or --depth N option, or just -N, balance reports+ will show accounts only to the specified depth, hiding the deeper sub-+ accounts. Account balances at the depth limit always include the bal-+ ances from any hidden subaccounts (even in list mode). This can be+ useful for getting an overview. Eg, limiting to depth 1:++ $ hledger balance -N -1+ $-1 assets+ $2 expenses+ $-2 income+ $1 liabilities++ You can also hide top-level account name parts, using --drop N. This+ can be useful for hiding repetitive top-level account names:++ $ hledger bal expenses --drop 1+ $1 food+ $1 supplies+ --------------------+ $2+++ Multi-period balance report+ With a report interval (set by the -D/--daily, -W/--weekly,+ -M/--monthly, -Q/--quarterly, -Y/--yearly, or -p/--period flag), bal-+ ance shows a tabular report, with columns representing successive time+ periods (and a title):++ $ hledger balance --quarterly income expenses -E+ Balance changes in 2008:++ || 2008q1 2008q2 2008q3 2008q4+ ===================++=================================+ expenses:food || 0 $1 0 0+ expenses:supplies || 0 $1 0 0+ income:gifts || 0 $-1 0 0+ income:salary || $-1 0 0 0+ -------------------++---------------------------------+ || $-1 $1 0 0++ Notes:++ o The report's start/end dates will be expanded, if necessary, to fully+ encompass the displayed subperiods (so that the first and last subpe-+ riods have the same duration as the others).++ o Leading and trailing periods (columns) containing all zeroes are not+ shown, unless -E/--empty is used.++ o Accounts (rows) containing all zeroes are not shown, unless+ -E/--empty is used.++ o Amounts with many commodities are shown in abbreviated form, unless+ --no-elide is used. (experimental)++ o Average and/or total columns can be added with the -A/--average and+ -T/--row-total flags.++ o The --transpose flag can be used to exchange rows and columns.++ o The --pivot FIELD option causes a different transaction field to be+ used as "account name". See PIVOTING.++ Multi-period reports with many periods can be too wide for easy viewing+ in the terminal. Here are some ways to handle that:++ o Hide the totals row with -N/--no-total++ o Convert to a single currency with -V++ o Maximize the terminal window++ o Reduce the terminal's font size++ o View with a pager like less, eg: hledger bal -D --color=yes | less+ -RS++ o Output as CSV and use a CSV viewer like visidata (hledger bal -D -O+ csv | vd -f csv), Emacs' csv-mode (M-x csv-mode, C-c C-a), or a+ spreadsheet (hledger bal -D -o a.csv && open a.csv)++ o Output as HTML and view with a browser: hledger bal -D -o a.html &&+ open a.html++ Sorting by amount+ With -S/--sort-amount, accounts with the largest (most positive) bal-+ ances are shown first. Eg: hledger bal expenses -MAS shows your big-+ gest averaged monthly expenses first.++ Revenues and liability balances are typically negative, however, so -S+ shows these in reverse order. To work around this, you can add+ --invert to flip the signs. (Or, use one of the higher-level reports,+ which flip the sign automatically. Eg: hledger incomestatement -MAS).+++ Percentages+ With -%/--percent, balance reports show each account's value expressed+ as a percentage of the (column) total:++ $ hledger bal expenses -Q -%+ Balance changes in 2008:++ || 2008Q1 2008Q2 2008Q3 2008Q4+ ===================++=================================+ expenses:food || 0 50.0 % 0 0+ expenses:supplies || 0 50.0 % 0 0+ -------------------++---------------------------------+ || 0 100.0 % 0 0++ Note it is not useful to calculate percentages if the amounts in a col-+ umn have mixed signs. In this case, make a separate report for each+ sign, eg:++ $ hledger bal -% amt:`>0`+ $ hledger bal -% amt:`<0`++ Similarly, if the amounts in a column have mixed commodities, convert+ them to one commodity with -B, -V, -X or --value, or make a separate+ report for each commodity:++ $ hledger bal -% cur:\\$+ $ hledger bal -% cur:EUR++ Balance change, end balance+ It's important to be clear on the meaning of the numbers shown in bal-+ ance reports. Here is some terminology we use:++ A balance change is the net amount added to, or removed from, an+ account during some period.++ An end balance is the amount accumulated in an account as of some date+ (and some time, but hledger doesn't store that; assume end of day in+ your timezone). It is the sum of previous balance changes.++ We call it a historical end balance if it includes all balance changes+ since the account was created. For a real world account, this means it+ will match the "historical record", eg the balances reported in your+ bank statements or bank web UI. (If they are correct!)++ In general, balance changes are what you want to see when reviewing+ revenues and expenses, and historical end balances are what you want to+ see when reviewing or reconciling asset, liability and equity accounts.++ balance shows balance changes by default. To see accurate historical+ end balances:++ 1. Initialise account starting balances with an "opening balances"+ transaction (a transfer from equity to the account), unless the+ journal covers the account's full lifetime.++ 2. Include all of of the account's prior postings in the report, by not+ specifying a report start date, or by using the -H/--historical+ flag. (-H causes report start date to be ignored when summing post-+ ings.)++ Balance report types+ For more flexible reporting, there are three important option groups:++ hledger balance [CALCULATIONTYPE] [ACCUMULATIONTYPE] [VALUATIONTYPE]+ ...++ The first two are the most important: calculation type selects the+ basic calculation to perform for each table cell, while accumulation+ type says which postings should be included in each cell's calculation.+ Typically one or both of these are selected by default, so you don't+ need to write them explicitly. A valuation type can be added if you+ want to convert the basic report to value or cost.++ Calculation type:+ The basic calculation to perform for each table cell. It is one of:++ o --sum : sum the posting amounts (default)++ o --budget : like --sum but also show a goal amount++ o --valuechange : show the change in period-end historical balance val-+ ues++ Accumulation type:+ Which postings should be included in each cell's calculation. It is+ one of:++ o --change : postings from column start to column end, ie within the+ cell's period. Typically used to see revenues/expenses. (default+ for balance, incomestatement)++ o --cumulative : postings from report start to column end, eg to show+ changes accumulated since the report's start date. Rarely used.++ o --historical/-H : postings from journal start to column end, ie all+ postings from account creation to the end of the cell's period. Typ-+ ically used to see historical end balances of assets/liabili-+ ties/equity. (default for balancesheet, balancesheetequity, cash-+ flow)++ Valuation type:+ Which kind of valuation, valuation date(s) and optionally a target val-+ uation commodity to use. It is one of:++ o no valuation, show amounts in their original commodities (default)++ o --value=cost[,COMM] : no valuation, show amounts converted to cost++ o --value=then[,COMM] : show value at transaction dates++ o --value=end[,COMM] : show value at period end date(s) (default with+ --valuechange)++ o --value=now[,COMM] : show value at today's date++ o --value=YYYY-MM-DD[,COMM] : show value at another date++ or one of their aliases: --cost/-B, --market/-V or --exchange/-X.++ Most combinations of these options should produce reasonable reports,+ but if you find any that seem wrong or misleading, let us know. The+ following restrictions are applied:++ o --valuechange implies --value=end++ o --valuechange makes --change the default when used with the bal-+ ancesheet/balancesheetequity commands++ o --cumulative or --historical disables --row-total/-T++ For reference, here is what the combinations of accumulation and valua-+ tion show:+++ Valua- no valuation --value= then --value= end --value= YYYY-+ tion: MM-DD /now+ >Accumu-+ lation:+ v+ ------------------------------------------------------------------------------------+ --change change in period sum of posting- period-end DATE-value of+ date market val- value of change change in+ ues in period in period period+ --cumu- change from sum of posting- period-end DATE-value of+ lative report start to date market val- value of change change from+ period end ues from report from report report start+ start to period start to period to period end+ end end+ --his- change from sum of posting- period-end DATE-value of+ torical journal start to date market val- value of change change from+ /-H period end (his- ues from journal from journal journal start+ torical end bal- start to period start to period to period end+ ance) end end++ Useful balance reports+ Some frequently used balance options/reports are:++ o bal -M revenues expenses+ Show revenues/expenses in each month. Also available as the incomes-+ tatement command.++ o bal -M -H assets liabilities+ Show historical asset/liability balances at each month end. Also+ available as the balancesheet command.++ o bal -M -H assets liabilities equity+ Show historical asset/liability/equity balances at each month end.+ Also available as the balancesheetequity command.++ o bal -M assets not:receivable+ Show changes to liquid assets in each month. Also available as the+ cashflow command.++ Also:++ o bal -M expenses -2 -SA+ Show monthly expenses summarised to depth 2 and sorted by average+ amount.++ o bal -M --budget expenses+ Show monthly expenses and budget goals.++ o bal -M --valuechange investments+ Show monthly change in market value of investment assets.++ o bal investments --valuechange -D date:lastweek amt:'>1000' -STA+ [--invert]+ Show top gainers [or losers] last week++ Budget report+ The --budget report type activates extra columns showing any budget+ goals for each account and period. The budget goals are defined by+ periodic transactions. This is very useful for comparing planned and+ actual income, expenses, time usage, etc.++ For example, you can take average monthly expenses in the common+ expense categories to construct a minimal monthly budget:++ ;; Budget+ ~ monthly+ income $2000+ expenses:food $400+ expenses:bus $50+ expenses:movies $30+ assets:bank:checking++ ;; Two months worth of expenses+ 2017-11-01+ income $1950+ expenses:food $396+ expenses:bus $49+ expenses:movies $30+ expenses:supplies $20+ assets:bank:checking++ 2017-12-01+ income $2100+ expenses:food $412+ expenses:bus $53+ expenses:gifts $100+ assets:bank:checking++ You can now see a monthly budget report:++ $ hledger balance -M --budget+ Budget performance in 2017/11/01-2017/12/31:++ || Nov Dec+ ======================++====================================================+ assets || $-2445 [ 99% of $-2480] $-2665 [ 107% of $-2480]+ assets:bank || $-2445 [ 99% of $-2480] $-2665 [ 107% of $-2480]+ assets:bank:checking || $-2445 [ 99% of $-2480] $-2665 [ 107% of $-2480]+ expenses || $495 [ 103% of $480] $565 [ 118% of $480]+ expenses:bus || $49 [ 98% of $50] $53 [ 106% of $50]+ expenses:food || $396 [ 99% of $400] $412 [ 103% of $400]+ expenses:movies || $30 [ 100% of $30] 0 [ 0% of $30]+ income || $1950 [ 98% of $2000] $2100 [ 105% of $2000]+ ----------------------++----------------------------------------------------+ || 0 [ 0] 0 [ 0]++ This is different from a normal balance report in several ways:++ o Only accounts with budget goals during the report period are shown,+ by default.++ o In each column, in square brackets after the actual amount, budget+ goal amounts are shown, and the actual/goal percentage. (Note: bud-+ get goals should be in the same commodity as the actual amount.)++ o All parent accounts are always shown, even in list mode. Eg assets,+ assets:bank, and expenses above.++ o Amounts always include all subaccounts, budgeted or unbudgeted, even+ in list mode.++ This means that the numbers displayed will not always add up! Eg above,+ the expenses actual amount includes the gifts and supplies transac-+ tions, but the expenses:gifts and expenses:supplies accounts are not+ shown, as they have no budget amounts declared.++ This can be confusing. When you need to make things clearer, use the+ -E/--empty flag, which will reveal all accounts including unbudgeted+ ones, giving the full picture. Eg:++ $ hledger balance -M --budget --empty+ Budget performance in 2017/11/01-2017/12/31:++ || Nov Dec+ ======================++====================================================+ assets || $-2445 [ 99% of $-2480] $-2665 [ 107% of $-2480]+ assets:bank || $-2445 [ 99% of $-2480] $-2665 [ 107% of $-2480]+ assets:bank:checking || $-2445 [ 99% of $-2480] $-2665 [ 107% of $-2480]+ expenses || $495 [ 103% of $480] $565 [ 118% of $480]+ expenses:bus || $49 [ 98% of $50] $53 [ 106% of $50]+ expenses:food || $396 [ 99% of $400] $412 [ 103% of $400]+ expenses:gifts || 0 $100+ expenses:movies || $30 [ 100% of $30] 0 [ 0% of $30]+ expenses:supplies || $20 0+ income || $1950 [ 98% of $2000] $2100 [ 105% of $2000]+ ----------------------++----------------------------------------------------+ || 0 [ 0] 0 [ 0]++ You can roll over unspent budgets to next period with --cumulative:++ $ hledger balance -M --budget --cumulative+ Budget performance in 2017/11/01-2017/12/31:++ || Nov Dec+ ======================++====================================================+ assets || $-2445 [ 99% of $-2480] $-5110 [ 103% of $-4960]+ assets:bank || $-2445 [ 99% of $-2480] $-5110 [ 103% of $-4960]+ assets:bank:checking || $-2445 [ 99% of $-2480] $-5110 [ 103% of $-4960]+ expenses || $495 [ 103% of $480] $1060 [ 110% of $960]+ expenses:bus || $49 [ 98% of $50] $102 [ 102% of $100]+ expenses:food || $396 [ 99% of $400] $808 [ 101% of $800]+ expenses:movies || $30 [ 100% of $30] $30 [ 50% of $60]+ income || $1950 [ 98% of $2000] $4050 [ 101% of $4000]+ ----------------------++----------------------------------------------------+ || 0 [ 0] 0 [ 0]++ For more examples and notes, see Budgeting.++ Budget report start date+ This might be a bug, but for now: when making budget reports, it's a+ good idea to explicitly set the report's start date to the first day of+ a reporting period, because a periodic rule like ~ monthly generates+ its transactions on the 1st of each month, and if your journal has no+ regular transactions on the 1st, the default report start date could+ exclude that budget goal, which can be a little surprising. Eg here+ the default report period is just the day of 2020-01-15:++ ~ monthly in 2020+ (expenses:food) $500++ 2020-01-15+ expenses:food $400+ assets:checking++ $ hledger bal expenses --budget+ Budget performance in 2020-01-15:++ || 2020-01-15+ ==============++============+ <unbudgeted> || $400+ --------------++------------+ || $400++ To avoid this, specify the budget report's period, or at least the+ start date, with -b/-e/-p/date:, to ensure it includes the budget goal+ transactions (periodic transactions) that you want. Eg, adding -b+ 2020/1/1 to the above:++ $ hledger bal expenses --budget -b 2020/1/1+ Budget performance in 2020-01-01..2020-01-15:++ || 2020-01-01..2020-01-15+ ===============++========================+ expenses:food || $400 [80% of $500]+ ---------------++------------------------+ || $400 [80% of $500]++ Nested budgets+ You can add budgets to any account in your account hierarchy. If you+ have budgets on both parent account and some of its children, then bud-+ get(s) of the child account(s) would be added to the budget of their+ parent, much like account balances behave.++ In the most simple case this means that once you add a budget to any+ account, all its parents would have budget as well.++ To illustrate this, consider the following budget:++ ~ monthly from 2019/01+ expenses:personal $1,000.00+ expenses:personal:electronics $100.00+ liabilities++ With this, monthly budget for electronics is defined to be $100 and+ budget for personal expenses is an additional $1000, which implicitly+ means that budget for both expenses:personal and expenses is $1100.++ Transactions in expenses:personal:electronics will be counted both+ towards its $100 budget and $1100 of expenses:personal , and transac-+ tions in any other subaccount of expenses:personal would be counted+ towards only towards the budget of expenses:personal.++ For example, let's consider these transactions:++ ~ monthly from 2019/01+ expenses:personal $1,000.00+ expenses:personal:electronics $100.00+ liabilities++ 2019/01/01 Google home hub+ expenses:personal:electronics $90.00+ liabilities $-90.00++ 2019/01/02 Phone screen protector+ expenses:personal:electronics:upgrades $10.00+ liabilities++ 2019/01/02 Weekly train ticket+ expenses:personal:train tickets $153.00+ liabilities++ 2019/01/03 Flowers+ expenses:personal $30.00+ liabilities++ As you can see, we have transactions in expenses:personal:electron-+ ics:upgrades and expenses:personal:train tickets, and since both of+ these accounts are without explicitly defined budget, these transac-+ tions would be counted towards budgets of expenses:personal:electronics+ and expenses:personal accordingly:++ $ hledger balance --budget -M+ Budget performance in 2019/01:++ || Jan+ ===============================++===============================+ expenses || $283.00 [ 26% of $1100.00]+ expenses:personal || $283.00 [ 26% of $1100.00]+ expenses:personal:electronics || $100.00 [ 100% of $100.00]+ liabilities || $-283.00 [ 26% of $-1100.00]+ -------------------------------++-------------------------------+ || 0 [ 0]++ And with --empty, we can get a better picture of budget allocation and+ consumption:++ $ hledger balance --budget -M --empty+ Budget performance in 2019/01:++ || Jan+ ========================================++===============================+ expenses || $283.00 [ 26% of $1100.00]+ expenses:personal || $283.00 [ 26% of $1100.00]+ expenses:personal:electronics || $100.00 [ 100% of $100.00]+ expenses:personal:electronics:upgrades || $10.00+ expenses:personal:train tickets || $153.00+ liabilities || $-283.00 [ 26% of $-1100.00]+ ----------------------------------------++-------------------------------+ || 0 [ 0]++ Customising single-period balance reports+ For single-period balance reports displayed in the terminal (only), you+ can use --format FMT to customise the format and content of each line.+ Eg:++ $ hledger balance --format "%20(account) %12(total)"+ assets $-1+ bank:saving $1+ cash $-2+ expenses $2+ food $1+ supplies $1+ income $-2+ gifts $-1+ salary $-1+ liabilities:debts $1+ ---------------------------------+ 0++ The FMT format string (plus a newline) specifies the formatting applied+ to each account/balance pair. It may contain any suitable text, with+ data fields interpolated like so:++ %[MIN][.MAX](FIELDNAME)++ o MIN pads with spaces to at least this width (optional)++ o MAX truncates at this width (optional)++ o FIELDNAME must be enclosed in parentheses, and can be one of:++ o depth_spacer - a number of spaces equal to the account's depth, or+ if MIN is specified, MIN * depth spaces.++ o account - the account's name++ o total - the account's balance/posted total, right justified++ Also, FMT can begin with an optional prefix to control how multi-com-+ modity amounts are rendered:++ o %_ - render on multiple lines, bottom-aligned (the default)++ o %^ - render on multiple lines, top-aligned++ o %, - render on one line, comma-separated++ There are some quirks. Eg in one-line mode, %(depth_spacer) has no+ effect, instead %(account) has indentation built in. Experimentation+ may be needed to get pleasing results.++ Some example formats:++ o %(total) - the account's total++ o %-20.20(account) - the account's name, left justified, padded to 20+ characters and clipped at 20 characters++ o %,%-50(account) %25(total) - account name padded to 50 characters,+ total padded to 20 characters, with multiple commodities rendered on+ one line++ o %20(total) %2(depth_spacer)%-(account) - the default format for the+ single-column balance report++ balancesheet+ balancesheet, bs+ This command displays a balance sheet, showing historical ending bal-+ ances of asset and liability accounts. (To see equity as well, use the+ balancesheetequity command.) Amounts are shown with normal positive+ sign, as in conventional financial statements.++ The asset and liability accounts shown are those accounts declared with+ the Asset or Cash or Liability type, or otherwise all accounts under a+ top-level asset or liability account (case insensitive, plurals+ allowed).++ Example:++ $ hledger balancesheet+ Balance Sheet++ Assets:+ $-1 assets+ $1 bank:saving+ $-2 cash+ --------------------+ $-1++ Liabilities:+ $1 liabilities:debts+ --------------------+ $1++ Total:+ --------------------+ 0++ This command is a higher-level variant of the balance command, and sup-+ ports many of that command's features, such as multi-period reports.+ It is similar to hledger balance -H assets liabilities, but with+ smarter account detection, and liabilities displayed with their sign+ flipped.++ This command also supports the output destination and output format+ options The output formats supported are txt, csv, html, and (experi-+ mental) json.++ balancesheetequity+ balancesheetequity, bse+ This command displays a balance sheet, showing historical ending bal-+ ances of asset, liability and equity accounts. Amounts are shown with+ normal positive sign, as in conventional financial statements.++ The asset, liability and equity accounts shown are those accounts+ declared with the Asset, Cash, Liability or Equity type, or otherwise+ all accounts under a top-level asset, liability or equity account (case+ insensitive, plurals allowed).++ Example:++ $ hledger balancesheetequity+ Balance Sheet With Equity++ Assets:+ $-2 assets+ $1 bank:saving+ $-3 cash+ --------------------+ $-2++ Liabilities:+ $1 liabilities:debts+ --------------------+ $1++ Equity:+ $1 equity:owner+ --------------------+ $1++ Total:+ --------------------+ 0++ This command is a higher-level variant of the balance command, and sup-+ ports many of that command's features, such as multi-period reports.+ It is similar to hledger balance -H assets liabilities equity, but with+ smarter account detection, and liabilities/equity displayed with their+ sign flipped.++ This command also supports the output destination and output format+ options The output formats supported are txt, csv, html, and (experi-+ mental) json.++ cashflow+ cashflow, cf+ This command displays a cashflow statement, showing the inflows and+ outflows affecting "cash" (ie, liquid) assets. Amounts are shown with+ normal positive sign, as in conventional financial statements.++ The "cash" accounts shown are those accounts declared with the Cash+ type, or otherwise all accounts under a top-level asset account (case+ insensitive, plural allowed) which do not have fixed, investment,+ receivable or A/R in their name.++ Example:++ $ hledger cashflow+ Cashflow Statement++ Cash flows:+ $-1 assets+ $1 bank:saving+ $-2 cash+ --------------------+ $-1++ Total:+ --------------------+ $-1++ This command is a higher-level variant of the balance command, and sup-+ ports many of that command's features, such as multi-period reports.+ It is similar to hledger balance assets not:fixed not:investment+ not:receivable, but with smarter account detection.++ This command also supports the output destination and output format+ options The output formats supported are txt, csv, html, and (experi-+ mental) json.++ check+ check+ Check for various kinds of errors in your data.++ hledger provides a number of built-in error checks to help prevent+ problems in your data. Some of these are run automatically; or, you+ can use this check command to run them on demand, with no output and a+ zero exit code if all is well. Specify their names (or a prefix) as+ argument(s).++ Some examples:++ hledger check # basic checks+ hledger check -s # basic + strict checks+ hledger check ordereddates payees # basic + two other checks++ Here are the checks currently available:++ Basic checks+ These checks are always run automatically, by (almost) all hledger com-+ mands, including check:++ o parseable - data files are well-formed and can be successfully parsed++ o autobalanced - all transactions are balanced, inferring missing+ amounts where necessary, and possibly converting commodities using+ transaction prices or automatically-inferred transaction prices++ o assertions - all balance assertions in the journal are passing.+ (This check can be disabled with -I/--ignore-assertions.)++ Strict checks+ These additional checks are run when the -s/--strict (strict mode) flag+ is used. Or, they can be run by giving their names as arguments to+ check:++ o accounts - all account names used by transactions have been declared++ o commodities - all commodity symbols used have been declared++ Other checks+ These checks can be run only by giving their names as arguments to+ check. They are more specialised and not desirable for everyone,+ therefore optional:++ o ordereddates - transactions are ordered by date in each file++ o payees - all payees used by transactions have been declared++ o uniqueleafnames - all account leaf names are unique++ Custom checks+ A few more checks are are available as separate add-on commands, in+ https://github.com/simonmichael/hledger/tree/master/bin:++ o hledger-check-tagfiles - all tag values containing / (a forward+ slash) exist as file paths++ o hledger-check-fancyassertions - more complex balance assertions are+ passing++ You could make similar scripts to perform your own custom checks. See:+ Cookbook -> Scripting.++ close+ close, equity+ Prints a "closing balances" transaction and an "opening balances"+ transaction that bring account balances to and from zero, respectively.+ These can be added to your journal file(s), eg to bring asset/liability+ balances forward into a new journal file, or to close out rev-+ enues/expenses to retained earnings at the end of a period.++ You can print just one of these transactions by using the --close or+ --open flag. You can customise their descriptions with the --close-+ desc and --open-desc options.++ One amountless posting to "equity:opening/closing balances" is added to+ balance the transactions, by default. You can customise this account+ name with --close-acct and --open-acct; if you specify only one of+ these, it will be used for both.++ With --x/--explicit, the equity posting's amount will be shown. And if+ it involves multiple commodities, a posting for each commodity will be+ shown, as with the print command.++ With --interleaved, the equity postings are shown next to the postings+ they balance, which makes troubleshooting easier.++ By default, transaction prices in the journal are ignored when generat-+ ing the closing/opening transactions. With --show-costs, this cost+ information is preserved (balance -B reports will be unchanged after+ the transition). Separate postings are generated for each cost in each+ commodity. Note this can generate very large journal entries, if you+ have many foreign currency or investment transactions.++ close usage+ If you split your journal files by time (eg yearly), you will typically+ run this command at the end of the year, and save the closing transac-+ tion as last entry of the old file, and the opening transaction as the+ first entry of the new file. This makes the files self contained, so+ that correct balances are reported no matter which of them are loaded.+ Ie, if you load just one file, the balances are initialised correctly;+ or if you load several files, the redundant closing/opening transac-+ tions cancel each other out. (They will show up in print or register+ reports; you can exclude them with a query like not:desc:'(open-+ ing|closing) balances'.)++ If you're running a business, you might also use this command to "close+ the books" at the end of an accounting period, transferring income+ statement account balances to retained earnings. (You may want to+ change the equity account name to something like "equity:retained earn-+ ings".)++ By default, the closing transaction is dated yesterday, the balances+ are calculated as of end of yesterday, and the opening transaction is+ dated today. To close on some other date, use: hledger close -e OPEN-+ INGDATE. Eg, to close/open on the 2018/2019 boundary, use -e 2019.+ You can also use -p or date:PERIOD (any starting date is ignored).++ Both transactions will include balance assertions for the+ closed/reopened accounts. You probably shouldn't use status or real-+ ness filters (like -C or -R or status:) with this command, or the gen-+ erated balance assertions will depend on these flags. Likewise, if you+ run this command with --auto, the balance assertions will probably+ always require --auto.++ Examples:++ Carrying asset/liability balances into a new file for 2019:++ $ hledger close -f 2018.journal -e 2019 assets liabilities --open+ # (copy/paste the output to the start of your 2019 journal file)+ $ hledger close -f 2018.journal -e 2019 assets liabilities --close+ # (copy/paste the output to the end of your 2018 journal file)++ Now:++ $ hledger bs -f 2019.journal # one file - balances are correct+ $ hledger bs -f 2018.journal -f 2019.journal # two files - balances still correct+ $ hledger bs -f 2018.journal not:desc:closing # to see year-end balances, must exclude closing txn++ Transactions spanning the closing date can complicate matters, breaking+ balance assertions:++ 2018/12/30 a purchase made in 2018, clearing the following year+ expenses:food 5+ assets:bank:checking -5 ; [2019/1/2]++ Here's one way to resolve that:++ ; in 2018.journal:+ 2018/12/30 a purchase made in 2018, clearing the following year+ expenses:food 5+ liabilities:pending++ ; in 2019.journal:+ 2019/1/2 clearance of last year's pending transactions+ liabilities:pending 5 = 0+ assets:checking++ codes+ codes+ List the codes seen in transactions, in the order parsed.++ This command prints the value of each transaction's code field, in the+ order transactions were parsed. The transaction code is an optional+ value written in parentheses between the date and description, often+ used to store a cheque number, order number or similar.++ Transactions aren't required to have a code, and missing or empty codes+ will not be shown by default. With the -E/--empty flag, they will be+ printed as blank lines.++ You can add a query to select a subset of transactions.++ Examples:++ 1/1 (123)+ (a) 1++ 1/1 ()+ (a) 1++ 1/1+ (a) 1++ 1/1 (126)+ (a) 1++ $ hledger codes+ 123+ 124+ 126++ $ hledger codes -E+ 123+ 124+++ 126++ commodities+ commodities+ List all commodity/currency symbols used or declared in the journal.++ descriptions+ descriptions+ List the unique descriptions that appear in transactions.++ This command lists the unique descriptions that appear in transactions,+ in alphabetic order. You can add a query to select a subset of trans-+ actions.++ Example:++ $ hledger descriptions+ Store Name+ Gas Station | Petrol+ Person A++ diff+ diff+ Compares a particular account's transactions in two input files. It+ shows any transactions to this account which are in one file but not in+ the other.++ More precisely, for each posting affecting this account in either file,+ it looks for a corresponding posting in the other file which posts the+ same amount to the same account (ignoring date, description, etc.)+ Since postings not transactions are compared, this also works when mul-+ tiple bank transactions have been combined into a single journal entry.++ This is useful eg if you have downloaded an account's transactions from+ your bank (eg as CSV data). When hledger and your bank disagree about+ the account balance, you can compare the bank data with your journal to+ find out the cause.++ Examples:++ $ hledger diff -f $LEDGER_FILE -f bank.csv assets:bank:giro+ These transactions are in the first file only:++ 2014/01/01 Opening Balances+ assets:bank:giro EUR ...+ ...+ equity:opening balances EUR -...++ These transactions are in the second file only:++ files+ files+ List all files included in the journal. With a REGEX argument, only+ file names matching the regular expression (case sensitive) are shown.++ help+ help+ Show the hledger user manual in one of several formats, optionally+ positioned at a given TOPIC (if possible). TOPIC is any heading, or+ heading prefix, in the manual. Some examples: commands, print, 'auto+ postings', periodic.++ This command shows the user manual built in to this hledger version.+ It can be useful if the correct version of the hledger manual, or the+ usual viewing tools, are not installed on your system.++ By default it uses the best viewer it can find in $PATH, in this order:+ info, man, $PAGER (unless a topic is specified), less, or stdout. When+ run non-interactively, it always uses stdout. Or you can select a par-+ ticular viewer with the -i (info), -m (man), or -p (pager) flags.++ import+ import+ Read new transactions added to each FILE since last run, and add them+ to the main journal file. Or with --dry-run, just print the transac-+ tions that would be added. Or with --catchup, just mark all of the+ FILEs' transactions as imported, without actually importing any.++ Unlike other hledger commands, with import the journal file is an out-+ put file, and will be modified, though only by appending (existing data+ will not be changed). The input files are specified as arguments, so+ to import one or more CSV files to your main journal, you will run+ hledger import bank.csv or perhaps hledger import *.csv.++ Note you can import from any file format, though CSV files are the most+ common import source, and these docs focus on that case.++ Deduplication+ As a convenience import does deduplication while reading transactions.+ This does not mean "ignore transactions that look the same", but rather+ "ignore transactions that have been seen before". This is intended for+ when you are periodically importing foreign data which may contain+ already-imported transactions. So eg, if every day you download bank+ CSV files containing redundant data, you can safely run hledger import+ bank.csv and only new transactions will be imported. (import is idem-+ potent.)++ Since the items being read (CSV records, eg) often do not come with+ unique identifiers, hledger detects new transactions by date, assuming+ that:++ 1. new items always have the newest dates++ 2. item dates do not change across reads++ 3. and items with the same date remain in the same relative order+ across reads.++ These are often true of CSV files representing transactions, or true+ enough so that it works pretty well in practice. 1 is important, but+ violations of 2 and 3 amongst the old transactions won't matter (and if+ you import often, the new transactions will be few, so less likely to+ be the ones affected).++ hledger remembers the latest date processed in each input file by sav-+ ing a hidden ".latest" state file in the same directory. Eg when read-+ ing finance/bank.csv, it will look for and update the finance/.lat-+ est.bank.csv state file. The format is simple: one or more lines con-+ taining the same ISO-format date (YYYY-MM-DD), meaning "I have pro-+ cessed transactions up to this date, and this many of them on that+ date." Normally you won't see or manipulate these state files yourself.+ But if needed, you can delete them to reset the state (making all+ transactions "new"), or you can construct them to "catch up" to a cer-+ tain date.++ Note deduplication (and updating of state files) can also be done by+ print --new, but this is less often used.++ Import testing+ With --dry-run, the transactions that will be imported are printed to+ the terminal, without updating your journal or state files. The output+ is valid journal format, like the print command, so you can re-parse+ it. Eg, to see any importable transactions which CSV rules have not+ categorised:++ $ hledger import --dry bank.csv | hledger -f- -I print unknown++ or (live updating):++ $ ls bank.csv* | entr bash -c 'echo ====; hledger import --dry bank.csv | hledger -f- -I print unknown'++ Importing balance assignments+ Entries added by import will have their posting amounts made explicit+ (like hledger print -x). This means that any balance assignments in+ imported files must be evaluated; but, imported files don't get to see+ the main file's account balances. As a result, importing entries with+ balance assignments (eg from an institution that provides only balances+ and not posting amounts) will probably generate incorrect posting+ amounts. To avoid this problem, use print instead of import:++ $ hledger print IMPORTFILE [--new] >> $LEDGER_FILE++ (If you think import should leave amounts implicit like print does,+ please test it and send a pull request.)++ Commodity display styles+ Imported amounts will be formatted according to the canonical commodity+ styles (declared or inferred) in the main journal file.++ incomestatement+ incomestatement, is++ This command displays an income statement, showing revenues and+ expenses during one or more periods. Amounts are shown with normal+ positive sign, as in conventional financial statements.++ The revenue and expense accounts shown are those accounts declared with+ the Revenue or Expense type, or otherwise all accounts under a top-+ level revenue or income or expense account (case insensitive, plurals+ allowed).++ Example:++ $ hledger incomestatement+ Income Statement++ Revenues:+ $-2 income+ $-1 gifts+ $-1 salary+ --------------------+ $-2++ Expenses:+ $2 expenses+ $1 food+ $1 supplies+ --------------------+ $2++ Total:+ --------------------+ 0++ This command is a higher-level variant of the balance command, and sup-+ ports many of that command's features, such as multi-period reports.+ It is similar to hledger balance '(revenues|income)' expenses, but with+ smarter account detection, and revenues/income displayed with their+ sign flipped.++ This command also supports the output destination and output format+ options The output formats supported are txt, csv, html, and (experi-+ mental) json.++ notes+ notes+ List the unique notes that appear in transactions.++ This command lists the unique notes that appear in transactions, in+ alphabetic order. You can add a query to select a subset of transac-+ tions. The note is the part of the transaction description after a |+ character (or if there is no |, the whole description).++ Example:++ $ hledger notes+ Petrol+ Snacks++ payees+ payees+ List the unique payee/payer names that appear in transactions.++ This command lists unique payee/payer names which have been declared+ with payee directives (--declared), used in transaction descriptions+ (--used), or both (the default).++ The payee/payer is the part of the transaction description before a |+ character (or if there is no |, the whole description).++ You can add query arguments to select a subset of transactions. This+ implies --used.++ Example:++ $ hledger payees+ Store Name+ Gas Station+ Person A++ prices+ prices+ Print market price directives from the journal. With --costs, also+ print synthetic market prices based on transaction prices. With+ --inverted-costs, also print inverse prices based on transaction+ prices. Prices (and postings providing prices) can be filtered by a+ query. Price amounts are always displayed with their full precision.++ print+ print+ Show transaction journal entries, sorted by date.++ The print command displays full journal entries (transactions) from the+ journal file, sorted by date (or with --date2, by secondary date).++ Amounts are shown mostly normalised to commodity display style, eg the+ placement of commodity symbols will be consistent. All of their deci-+ mal places are shown, as in the original journal entry (with one alter-+ ation: in some cases trailing zeroes are added.)++ Amounts are shown right-aligned within each transaction (but not across+ all transactions).++ Directives and inter-transaction comments are not shown, currently.+ This means the print command is somewhat lossy, and if you are using it+ to reformat your journal you should take care to also copy over the+ directives and file-level comments.++ Eg:++ $ hledger print+ 2008/01/01 income+ assets:bank:checking $1+ income:salary $-1++ 2008/06/01 gift+ assets:bank:checking $1+ income:gifts $-1++ 2008/06/02 save+ assets:bank:saving $1+ assets:bank:checking $-1++ 2008/06/03 * eat & shop+ expenses:food $1+ expenses:supplies $1+ assets:cash $-2++ 2008/12/31 * pay off+ liabilities:debts $1+ assets:bank:checking $-1++ print's output is usually a valid hledger journal, and you can process+ it again with a second hledger command. This can be useful for certain+ kinds of search, eg:++ # Show running total of food expenses paid from cash.+ # -f- reads from stdin. -I/--ignore-assertions is sometimes needed.+ $ hledger print assets:cash | hledger -f- -I reg expenses:food++ There are some situations where print's output can become unparseable:++ o Valuation affects posting amounts but not balance assertion or bal-+ ance assignment amounts, potentially causing those to fail.++ o Auto postings can generate postings with too many missing amounts.++ Normally, the journal entry's explicit or implicit amount style is pre-+ served. For example, when an amount is omitted in the journal, it will+ not appear in the output. Similarly, when a transaction price is+ implied but not written, it will not appear in the output. You can use+ the -x/--explicit flag to make all amounts and transaction prices+ explicit, which can be useful for troubleshooting or for making your+ journal more readable and robust against data entry errors. -x is also+ implied by using any of -B,-V,-X,--value.++ Note, -x/--explicit will cause postings with a multi-commodity amount+ (these can arise when a multi-commodity transaction has an implicit+ amount) to be split into multiple single-commodity postings, keeping+ the output parseable.++ With -B/--cost, amounts with transaction prices are converted to cost+ using that price. This can be used for troubleshooting.++ With -m/--match and a STR argument, print will show at most one trans-+ action: the one one whose description is most similar to STR, and is+ most recent. STR should contain at least two characters. If there is+ no similar-enough match, no transaction will be shown.++ With --new, hledger prints only transactions it has not seen on a pre-+ vious run. This uses the same deduplication system as the import com-+ mand. (See import's docs for details.)++ This command also supports the output destination and output format+ options The output formats supported are txt, csv, and (experimental)+ json and sql.++ Here's an example of print's CSV output:++ $ hledger print -Ocsv+ "txnidx","date","date2","status","code","description","comment","account","amount","commodity","credit","debit","posting-status","posting-comment"+ "1","2008/01/01","","","","income","","assets:bank:checking","1","$","","1","",""+ "1","2008/01/01","","","","income","","income:salary","-1","$","1","","",""+ "2","2008/06/01","","","","gift","","assets:bank:checking","1","$","","1","",""+ "2","2008/06/01","","","","gift","","income:gifts","-1","$","1","","",""+ "3","2008/06/02","","","","save","","assets:bank:saving","1","$","","1","",""+ "3","2008/06/02","","","","save","","assets:bank:checking","-1","$","1","","",""+ "4","2008/06/03","","*","","eat & shop","","expenses:food","1","$","","1","",""+ "4","2008/06/03","","*","","eat & shop","","expenses:supplies","1","$","","1","",""+ "4","2008/06/03","","*","","eat & shop","","assets:cash","-2","$","2","","",""+ "5","2008/12/31","","*","","pay off","","liabilities:debts","1","$","","1","",""+ "5","2008/12/31","","*","","pay off","","assets:bank:checking","-1","$","1","","",""++ o There is one CSV record per posting, with the parent transaction's+ fields repeated.++ o The "txnidx" (transaction index) field shows which postings belong to+ the same transaction. (This number might change if transactions are+ reordered within the file, files are parsed/included in a different+ order, etc.)++ o The amount is separated into "commodity" (the symbol) and "amount"+ (numeric quantity) fields.++ o The numeric amount is repeated in either the "credit" or "debit" col-+ umn, for convenience. (Those names are not accurate in the account-+ ing sense; it just puts negative amounts under credit and zero or+ greater amounts under debit.)++ print-unique+ print-unique+ Print transactions which do not reuse an already-seen description.++ Example:++ $ cat unique.journal+ 1/1 test+ (acct:one) 1+ 2/2 test+ (acct:two) 2+ $ LEDGER_FILE=unique.journal hledger print-unique+ (-f option not supported)+ 2015/01/01 test+ (acct:one) 1++ register+ register, reg+ Show postings and their running total.++ The register command displays matched postings, across all accounts, in+ date order, with their running total or running historical balance.+ (See also the aregister command, which shows matched transactions in a+ specific account.)++ register normally shows line per posting, but note that multi-commodity+ amounts will occupy multiple lines (one line per commodity).++ It is typically used with a query selecting a particular account, to+ see that account's activity:++ $ hledger register checking+ 2008/01/01 income assets:bank:checking $1 $1+ 2008/06/01 gift assets:bank:checking $1 $2+ 2008/06/02 save assets:bank:checking $-1 $1+ 2008/12/31 pay off assets:bank:checking $-1 0++ With --date2, it shows and sorts by secondary date instead.++ The --historical/-H flag adds the balance from any undisplayed prior+ postings to the running total. This is useful when you want to see+ only recent activity, with a historically accurate running balance:++ $ hledger register checking -b 2008/6 --historical+ 2008/06/01 gift assets:bank:checking $1 $2+ 2008/06/02 save assets:bank:checking $-1 $1+ 2008/12/31 pay off assets:bank:checking $-1 0++ The --depth option limits the amount of sub-account detail displayed.++ The --average/-A flag shows the running average posting amount instead+ of the running total (so, the final number displayed is the average for+ the whole report period). This flag implies --empty (see below). It+ is affected by --historical. It works best when showing just one+ account and one commodity.++ The --related/-r flag shows the other postings in the transactions of+ the postings which would normally be shown.++ The --invert flag negates all amounts. For example, it can be used on+ an income account where amounts are normally displayed as negative num-+ bers. It's also useful to show postings on the checking account+ together with the related account:++ $ hledger register --related --invert assets:checking++ With a reporting interval, register shows summary postings, one per+ interval, aggregating the postings to each account:++ $ hledger register --monthly income+ 2008/01 income:salary $-1 $-1+ 2008/06 income:gifts $-1 $-2++ Periods with no activity, and summary postings with a zero amount, are+ not shown by default; use the --empty/-E flag to see them:++ $ hledger register --monthly income -E+ 2008/01 income:salary $-1 $-1+ 2008/02 0 $-1+ 2008/03 0 $-1+ 2008/04 0 $-1+ 2008/05 0 $-1+ 2008/06 income:gifts $-1 $-2+ 2008/07 0 $-2+ 2008/08 0 $-2+ 2008/09 0 $-2+ 2008/10 0 $-2+ 2008/11 0 $-2+ 2008/12 0 $-2++ Often, you'll want to see just one line per interval. The --depth+ option helps with this, causing subaccounts to be aggregated:++ $ hledger register --monthly assets --depth 1h+ 2008/01 assets $1 $1+ 2008/06 assets $-1 0+ 2008/12 assets $-1 $-1++ Note when using report intervals, if you specify start/end dates these+ will be adjusted outward if necessary to contain a whole number of+ intervals. This ensures that the first and last intervals are full+ length and comparable to the others in the report.++ Custom register output+ register uses the full terminal width by default, except on windows.+ You can override this by setting the COLUMNS environment variable (not+ a bash shell variable) or by using the --width/-w option.++ The description and account columns normally share the space equally+ (about half of (width - 40) each). You can adjust this by adding a+ description width as part of --width's argument, comma-separated:+ --width W,D . Here's a diagram (won't display correctly in --help):++ <--------------------------------- width (W) ---------------------------------->+ date (10) description (D) account (W-41-D) amount (12) balance (12)+ DDDDDDDDDD dddddddddddddddddddd aaaaaaaaaaaaaaaaaaa AAAAAAAAAAAA AAAAAAAAAAAA++ and some examples:++ $ hledger reg # use terminal width (or 80 on windows)+ $ hledger reg -w 100 # use width 100+ $ COLUMNS=100 hledger reg # set with one-time environment variable+ $ export COLUMNS=100; hledger reg # set till session end (or window resize)+ $ hledger reg -w 100,40 # set overall width 100, description width 40+ $ hledger reg -w $COLUMNS,40 # use terminal width, & description width 40++ This command also supports the output destination and output format+ options The output formats supported are txt, csv, and (experimental)+ json.++ register-match+ register-match+ Print the one posting whose transaction description is closest to DESC,+ in the style of the register command. If there are multiple equally+ good matches, it shows the most recent. Query options (options, not+ arguments) can be used to restrict the search space. Helps ledger-+ autosync detect already-seen transactions when importing.++ rewrite+ rewrite+ Print all transactions, rewriting the postings of matched transactions.+ For now the only rewrite available is adding new postings, like print+ --auto.++ This is a start at a generic rewriter of transaction entries. It reads+ the default journal and prints the transactions, like print, but adds+ one or more specified postings to any transactions matching QUERY. The+ posting amounts can be fixed, or a multiplier of the existing transac-+ tion's first posting amount.++ Examples:++ $ hledger-rewrite.hs ^income --add-posting '(liabilities:tax) *.33 ; income tax' --add-posting '(reserve:gifts) $100'+ $ hledger-rewrite.hs expenses:gifts --add-posting '(reserve:gifts) *-1"'+ $ hledger-rewrite.hs -f rewrites.hledger++ rewrites.hledger may consist of entries like:++ = ^income amt:<0 date:2017+ (liabilities:tax) *0.33 ; tax on income+ (reserve:grocery) *0.25 ; reserve 25% for grocery+ (reserve:) *0.25 ; reserve 25% for grocery++ Note the single quotes to protect the dollar sign from bash, and the+ two spaces between account and amount.++ More:++ $ hledger rewrite -- [QUERY] --add-posting "ACCT AMTEXPR" ...+ $ hledger rewrite -- ^income --add-posting '(liabilities:tax) *.33'+ $ hledger rewrite -- expenses:gifts --add-posting '(budget:gifts) *-1"'+ $ hledger rewrite -- ^income --add-posting '(budget:foreign currency) *0.25 JPY; diversify'++ Argument for --add-posting option is a usual posting of transaction+ with an exception for amount specification. More precisely, you can+ use '*' (star symbol) before the amount to indicate that that this is a+ factor for an amount of original matched posting. If the amount+ includes a commodity name, the new posting amount will be in the new+ commodity; otherwise, it will be in the matched posting amount's com-+ modity.++ Re-write rules in a file+ During the run this tool will execute so called "Automated Transac-+ tions" found in any journal it process. I.e instead of specifying this+ operations in command line you can put them in a journal file.++ $ rewrite-rules.journal++ Make contents look like this:++ = ^income+ (liabilities:tax) *.33++ = expenses:gifts+ budget:gifts *-1+ assets:budget *1++ Note that '=' (equality symbol) that is used instead of date in trans-+ actions you usually write. It indicates the query by which you want to+ match the posting to add new ones.++ $ hledger rewrite -- -f input.journal -f rewrite-rules.journal > rewritten-tidy-output.journal++ This is something similar to the commands pipeline:++ $ hledger rewrite -- -f input.journal '^income' --add-posting '(liabilities:tax) *.33' \+ | hledger rewrite -- -f - expenses:gifts --add-posting 'budget:gifts *-1' \+ --add-posting 'assets:budget *1' \+ > rewritten-tidy-output.journal++ It is important to understand that relative order of such entries in+ journal is important. You can re-use result of previously added post-+ ings.++ Diff output format+ To use this tool for batch modification of your journal files you may+ find useful output in form of unified diff.++ $ hledger rewrite -- --diff -f examples/sample.journal '^income' --add-posting '(liabilities:tax) *.33'++ Output might look like:++ --- /tmp/examples/sample.journal+ +++ /tmp/examples/sample.journal+ @@ -18,3 +18,4 @@+ 2008/01/01 income+ - assets:bank:checking $1+ + assets:bank:checking $1+ income:salary+ + (liabilities:tax) 0+ @@ -22,3 +23,4 @@+ 2008/06/01 gift+ - assets:bank:checking $1+ + assets:bank:checking $1+ income:gifts+ + (liabilities:tax) 0++ If you'll pass this through patch tool you'll get transactions contain-+ ing the posting that matches your query be updated. Note that multiple+ files might be update according to list of input files specified via+ --file options and include directives inside of these files.++ Be careful. Whole transaction being re-formatted in a style of output+ from hledger print.++ See also:++ https://github.com/simonmichael/hledger/issues/99++ rewrite vs. print --auto+ This command predates print --auto, and currently does much the same+ thing, but with these differences:++ o with multiple files, rewrite lets rules in any file affect all other+ files. print --auto uses standard directive scoping; rules affect+ only child files.++ o rewrite's query limits which transactions can be rewritten; all are+ printed. print --auto's query limits which transactions are printed.++ o rewrite applies rules specified on command line or in the journal.+ print --auto applies rules specified in the journal.++ roi+ roi+ Shows the time-weighted (TWR) and money-weighted (IRR) rate of return+ on your investments.++ At a minimum, you need to supply a query (which could be just an+ account name) to select your investment(s) with --inv, and another+ query to identify your profit and loss transactions with --pnl.++ If you do not record changes in the value of your investment manually,+ or do not require computation of time-weighted return (TWR), --pnl+ could be an empty query (--pnl "" or --pnl STR where STR does not match+ any of your accounts).++ This command will compute and display the internalized rate of return+ (IRR) and time-weighted rate of return (TWR) for your investments for+ the time period requested. Both rates of return are annualized before+ display, regardless of the length of reporting interval.++ Price directives will be taken into account if you supply appropriate+ --cost or --value flags (see VALUATION).++ Note, in some cases this report can fail, for these reasons:++ o Error (NotBracketed): No solution for Internal Rate of Return (IRR).+ Possible causes: IRR is huge (>1000000%), balance of investment+ becomes negative at some point in time.++ o Error (SearchFailed): Failed to find solution for Internal Rate of+ Return (IRR). Either search does not converge to a solution, or con-+ verges too slowly.++ Examples:++ o Using roi to compute total return of investment in stocks:+ https://github.com/simonmichael/hledger/blob/master/examples/roi-+ unrealised.ledger++ o Cookbook -> Return on Investment++ Semantics of --inv and --pnl+ Query supplied to --inv has to match all transactions that are related+ to your investment. Transactions not matching --inv will be ignored.++ In these transactions, ROI will conside postings that match --inv to be+ "investment postings" and other postings (not matching --inv) will be+ sorted into two categories: "cash flow" and "profit and loss", as ROI+ needs to know which part of the investment value is your contributions+ and which is due to the return on investment.++ o "Cash flow" is depositing or withdrawing money, buying or selling+ assets, or otherwise converting between your investment commodity and+ any other commodity. Example:++ 2019-01-01 Investing in Snake Oil+ assets:cash -$100+ investment:snake oil++ 2020-01-01 Selling my Snake Oil+ assets:cash $10+ investment:snake oil = 0++ o "Profit and loss" is change in the value of your investment:++ 2019-06-01 Snake Oil falls in value+ investment:snake oil = $57+ equity:unrealized profit or loss++ All non-investment postings are assumed to be "cash flow", unless they+ match --pnl query. Changes in value of your investment due to "profit+ and loss" postings will be considered as part of your investment+ return.++ Example: if you use --inv snake --pnl equity:unrealized, then postings+ in the example below would be classifed as:++ 2019-01-01 Snake Oil #1+ assets:cash -$100 ; cash flow posting+ investment:snake oil ; investment posting++ 2019-03-01 Snake Oil #2+ equity:unrealized pnl -$100 ; profit and loss posting+ snake oil ; investment posting++ 2019-07-01 Snake Oil #3+ equity:unrealized pnl ; profit and loss posting+ cash -$100 ; cash flow posting+ snake oil $50 ; investment posting++ IRR and TWR explained+ "ROI" stands for "return on investment". Traditionally this was com-+ puted as a difference between current value of investment and its ini-+ tial value, expressed in percentage of the initial value.++ However, this approach is only practical in simple cases, where invest-+ ments receives no in-flows or out-flows of money, and where rate of+ growth is fixed over time. For more complex scenarios you need differ-+ ent ways to compute rate of return, and this command implements two of+ them: IRR and TWR.++ Internal rate of return, or "IRR" (also called "money-weighted rate of+ return") takes into account effects of in-flows and out-flows.+ Naively, if you are withdrawing from your investment, your future gains+ would be smaller (in absolute numbers), and will be a smaller percent-+ age of your initial investment, and if you are adding to your invest-+ ment, you will receive bigger absolute gains (but probably at the same+ rate of return). IRR is a way to compute rate of return for each+ period between in-flow or out-flow of money, and then combine them in a+ way that gives you a compound annual rate of return that investment is+ expected to generate.++ As mentioned before, in-flows and out-flows would be any cash that you+ personally put in or withdraw, and for the "roi" command, these are the+ postings that match the query in the--inv argument and NOT match the+ query in the--pnl argument.++ If you manually record changes in the value of your investment as+ transactions that balance them against "profit and loss" (or "unreal-+ ized gains") account or use price directives, then in order for IRR to+ compute the precise effect of your in-flows and out-flows on the rate+ of return, you will need to record the value of your investement on or+ close to the days when in- or out-flows occur.++ In technical terms, IRR uses the same approach as computation of net+ present value, and tries to find a discount rate that makes net present+ value of all the cash flows of your investment to add up to zero. This+ could be hard to wrap your head around, especially if you haven't done+ discounted cash flow analysis before. Implementation of IRR in hledger+ should produce results that match the XIRR formula in Excel.++ Second way to compute rate of return that roi command implements is+ called "time-weighted rate of return" or "TWR". Like IRR, it will also+ break the history of your investment into periods between in-flows,+ out-flows and value changes, to compute rate of return per each period+ and then a compound rate of return. However, internal workings of TWR+ are quite different.++ TWR represents your investment as an imaginary "unit fund" where in-+ flows/ out-flows lead to buying or selling "units" of your investment+ and changes in its value change the value of "investment unit". Change+ in "unit price" over the reporting period gives you rate of return of+ your investment.++ References: * Explanation of rate of return * Explanation of IRR *+ Explanation of TWR * Examples of computing IRR and TWR and discussion+ of the limitations of both metrics++ stats+ stats+ Show some journal statistics.++ The stats command displays summary information for the whole journal,+ or a matched part of it. With a reporting interval, it shows a report+ for each report period.++ Example:++ $ hledger stats+ Main journal file : /src/hledger/examples/sample.journal+ Included journal files :+ Transactions span : 2008-01-01 to 2009-01-01 (366 days)+ Last transaction : 2008-12-31 (2333 days ago)+ Transactions : 5 (0.0 per day)+ Transactions last 30 days: 0 (0.0 per day)+ Transactions last 7 days : 0 (0.0 per day)+ Payees/descriptions : 5+ Accounts : 8 (depth 3)+ Commodities : 1 ($)+ Market prices : 12 ($)++ This command also supports output destination and output format selec-+ tion.++ tags+ tags+ List the unique tag names used in the journal. With a TAGREGEX argu-+ ment, only tag names matching the regular expression (case insensitive)+ are shown. With QUERY arguments, only transactions matching the query+ are considered.++ With the --values flag, the tags' unique values are listed instead.++ With --parsed flag, all tags or values are shown in the order they are+ parsed from the input data, including duplicates.++ With -E/--empty, any blank/empty values will also be shown, otherwise+ they are omitted.++ test+ test+ Run built-in unit tests.++ This command runs the unit tests built in to hledger and hledger-lib,+ printing the results on stdout. If any test fails, the exit code will+ be non-zero.++ This is mainly used by hledger developers, but you can also use it to+ sanity-check the installed hledger executable on your platform. All+ tests are expected to pass - if you ever see a failure, please report+ as a bug!++ This command also accepts tasty test runner options, written after a --+ (double hyphen). Eg to run only the tests in Hledger.Data.Amount, with+ ANSI colour codes disabled:++ $ hledger test -- -pData.Amount --color=never++ For help on these, see https://github.com/feuerbach/tasty#options (--+ --help currently doesn't show them).++ About add-on commands+ Add-on commands are programs or scripts in your PATH++ o whose name starts with hledger-++ o whose name ends with a recognised file extension: .bat,.com,.exe,+ .hs,.lhs,.pl,.py,.rb,.rkt,.sh or none++ o and (on unix, mac) which are executable by the current user.++ Add-ons are a relatively easy way to add local features or experiment+ with new ideas. They can be written in any language, but haskell+ scripts have a big advantage: they can use the same hledger library+ functions that built-in commands use for command-line options, parsing+ and reporting. Some experimental/example add-on scripts can be found+ in the hledger repo's bin/ directory.++ Note in a hledger command line, add-on command flags must have a double+ dash (--) preceding them. Eg you must write:++ $ hledger web -- --serve++ and not:++ $ hledger web --serve++ (because the --serve flag belongs to hledger-web, not hledger).++ The -h/--help and --version flags don't require --.++ If you have any trouble with this, remember you can always run the add-+ on program directly, eg:++ $ hledger-web --serve++JOURNAL FORMAT+ hledger's default file format, representing a General Journal.++ hledger's usual data source is a plain text file containing journal+ entries in hledger journal format. This file represents a standard+ accounting general journal. I use file names ending in .journal, but+ that's not required. 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.++ hledger's journal format is a compatible subset, mostly, of ledger's+ journal format, so hledger can work with compatible ledger journal+ files as well. It's safe, and encouraged, to run both hledger and+ ledger on the same journal file, eg to validate the results you're get-+ ting.++ You can use hledger without learning any more about this file; just use+ the add or web or import commands to create and update it.++ Many users, though, edit the journal file with a text editor, and track+ changes with a version control system such as git. Editor addons such+ as ledger-mode or hledger-mode for Emacs, vim-ledger for Vim, and+ hledger-vscode for Visual Studio Code, make this easier, adding colour,+ formatting, tab completion, and useful commands. See Editor configura-+ tion at hledger.org for the full list.++ Here's a description of each part of the file format (and hledger's+ data model). These are mostly in the order you'll use them, but in+ some cases related concepts have been grouped together for easy refer-+ ence, or linked before they are introduced, so feel free to skip over+ anything that looks unnecessary right now.++ Transactions+ Transactions are the main unit of information in a journal file. They+ represent events, typically a movement of some quantity of commodities+ between two or more named accounts.++ Each transaction is recorded as a journal entry, beginning with a sim-+ ple date in column 0. This can be followed by any of the following+ optional fields, separated by spaces:++ o a status character (empty, !, or *)++ o a code (any short number or text, enclosed in parentheses)++ o a description (any remaining text until end of line or a semicolon)++ o a comment (any remaining text following a semicolon until end of+ line, and any following indented lines beginning with a semicolon)++ o 0 or more indented posting lines, describing what was transferred and+ the accounts involved (indented comment lines are also allowed, but+ not blank lines or non-indented lines).++ Here's a simple journal file containing one transaction:++ 2008/01/01 income+ assets:bank:checking $1+ income:salary $-1++ Dates+ Simple dates+ Dates in the journal file use simple dates format: YYYY-MM-DD or+ YYYY/MM/DD or YYYY.MM.DD, with leading zeros optional. The year may be+ omitted, in which case it will be inferred from the context: the cur-+ rent transaction, the default year set with a default year directive,+ or the current date when the command is run. Some examples:+ 2010-01-31, 2010/01/31, 2010.1.31, 1/31.++ (The UI also accepts simple dates, as well as the more flexible smart+ dates documented in the hledger manual.)++ Secondary dates+ Real-life transactions sometimes involve more than one date - eg the+ date you write a cheque, and the date it clears in your bank. When you+ want to model this, for more accurate daily balances, you can specify+ individual posting dates.++ Or, you can use the older secondary date feature (Ledger calls it aux-+ iliary date or effective date). Note: we support this for compatibil-+ ity, but I usually recommend avoiding this feature; posting dates are+ almost always clearer and simpler.++ A secondary date is written after the primary date, following an equals+ sign. If the year is omitted, the primary date's year is assumed.+ When running reports, the primary (left) date is used by default, but+ with the --date2 flag (or --aux-date or --effective), the secondary+ (right) date will be used instead.++ The meaning of secondary dates is up to you, but it's best to follow a+ consistent rule. Eg "primary = the bank's clearing date, secondary =+ date the transaction was initiated, if different", as shown here:++ 2010/2/23=2/19 movie ticket+ expenses:cinema $10+ assets:checking++ $ hledger register checking+ 2010-02-23 movie ticket assets:checking $-10 $-10++ $ hledger register checking --date2+ 2010-02-19 movie ticket assets:checking $-10 $-10++ Posting dates+ You can give individual postings a different date from their parent+ transaction, by adding a posting comment containing a tag (see below)+ like date:DATE. 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:++ 2015/5/30+ expenses:food $10 ; food purchased on saturday 5/30+ assets:checking ; bank cleared it on monday, date:6/1++ $ hledger -f t.j register food+ 2015-05-30 expenses:food $10 $10++ $ hledger -f t.j register checking+ 2015-06-01 assets:checking $-10 $-10++ DATE should be a simple date; if the year is not specified it will use+ the year of the transaction's date. You can set the secondary date+ similarly, with date2:DATE2. The date: or date2: tags must have a+ valid simple date value if they are present, eg a date: tag with no+ value is not allowed.++ Ledger's earlier, more compact bracketed date syntax is also supported:+ [DATE], [DATE=DATE2] or [=DATE2]. hledger will attempt to parse any+ square-bracketed sequence of the 0123456789/-.= characters in this way.+ With this syntax, DATE infers its year from the transaction and DATE2+ infers its year from DATE.++ Status+ 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:+++ mark status+ ------------------+ unmarked+ ! pending+ * cleared++ When reporting, you can filter by status with the -U/--unmarked,+ -P/--pending, and -C/--cleared flags; or the status:, status:!, and+ status:* queries; or the U, P, C keys in hledger-ui.++ Note, in Ledger and in older versions of hledger, the "unmarked" state+ is called "uncleared". As of hledger 1.3 we have renamed it to+ unmarked for clarity.++ To replicate Ledger and old hledger's behaviour of also matching pend-+ ing, combine -U and -P.++ Status marks are optional, but can be helpful eg for reconciling with+ real-world accounts. Some editor modes provide highlighting and short-+ cuts for working with status. Eg in Emacs ledger-mode, you can toggle+ transaction status with C-c C-e, or posting status with C-c C-c.++ What "uncleared", "pending", and "cleared" actually mean is up to you.+ Here's one suggestion:+++ status meaning+ --------------------------------------------------------------------------+ uncleared recorded but not yet reconciled; needs review+ pending tentatively reconciled (if needed, eg during a big reconcil-+ iation)+ cleared complete, reconciled as far as possible, and considered cor-+ rect++ With this scheme, you would use -PC to see the current balance at your+ bank, -U to see things which will probably hit your bank soon (like+ uncashed checks), and no flags to see the most up-to-date state of your+ finances.++ Description+ A transaction's description is the rest of the line following the date+ and status mark (or until a comment begins). Sometimes called the+ "narration" in traditional bookkeeping, it can be used for whatever you+ wish, or left blank. Transaction descriptions can be queried, unlike+ comments.++ Payee and note+ You can optionally include a | (pipe) character in descriptions to sub-+ divide the description into separate fields for payee/payer name on the+ left (up to the first |) and an additional note field on the right+ (after the first |). This may be worthwhile if you need to do more+ precise querying and pivoting by payee or by note.++ Comments+ Lines in the journal beginning with a semicolon (;) or hash (#) or star+ (*) 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.)++ You can attach comments to a transaction by writing them after the+ description and/or indented on the following lines (before the post-+ ings). Similarly, you can attach comments to an individual posting by+ writing them after the amount and/or indented on the following lines.+ Transaction and posting comments must begin with a semicolon (;).++ Some examples:++ # a file comment+ ; another file comment+ * also a file comment, useful in org/orgstruct mode++ comment+ A multiline file comment, which continues+ until a line containing just "end comment"+ (or end of file).+ end comment++ 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)++ You can also comment larger regions of a file using comment and end+ comment directives.++ Tags+ Tags are a way to add extra labels or labelled data to postings and+ transactions, which you can then search or pivot on.++ A simple tag is a word (which may contain hyphens) followed by a full+ colon, written inside a transaction or posting comment line:++ 2017/1/16 bought groceries ; sometag:++ 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:++ expenses:food $10 ; a-posting-tag: the tag value++ Note this means hledger's tag values can not contain commas or new-+ lines. Ending at commas means you can write multiple short tags on one+ line, comma separated:++ assets:checking ; a comment containing tag1:, tag2: some value ...++ Here,++ o "a comment containing" is just comment text, not a tag++ o "tag1" is a tag with no value++ o "tag2" is another tag, whose value is "some value ..."++ Tags in a transaction comment affect the transaction and all of its+ postings, while tags in a posting comment affect only that posting.+ For example, the following transaction has three tags (A, TAG2, third-+ tag) and the posting has four (those plus posting-tag):++ 1/1 a transaction ; A:, TAG2:+ ; third-tag: a third transaction tag, <- with a value+ (a) $1 ; posting-tag:++ Tags are like Ledger's metadata feature, except hledger's tag values+ are simple strings.++ Postings+ 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:++ o (optional) a status character (empty, !, or *), followed by a space++ o (required) an account name (any text, optionally containing single+ spaces, until end of line or a double space)++ o (optional) two or more spaces or tabs followed by an amount.++ Positive amounts are being added to the account, negative amounts are+ being removed.++ The amounts within a transaction must always sum up to zero. As a con-+ venience, one amount may be left blank; it will be inferred so as to+ balance the transaction.++ Be sure to note the unusual two-space delimiter between account name+ and amount. This makes it easy to write account names containing spa-+ ces. But if you accidentally leave only one space (or tab) before the+ amount, the amount will be considered part of the account name.++ Virtual postings+ A posting with a parenthesised account name is called a virtual posting+ or unbalanced posting, which means it is exempt from the usual rule+ that a transaction's postings must balance add up to zero.++ This is not part of double entry accounting, so you might choose to+ avoid this feature. Or you can use it sparingly for certain special+ cases where it can be convenient. Eg, you could set opening balances+ without using a balancing equity account:++ 1/1 opening balances+ (assets:checking) $1000+ (assets:savings) $2000++ A posting with a bracketed account name is called a balanced virtual+ posting. The balanced virtual postings in a transaction must add up to+ zero (separately from other postings). Eg:++ 1/1 buy food with cash, update budget envelope subaccounts, & something else+ assets:cash $-10 ; <- these balance+ expenses:food $7 ; <-+ expenses:food $3 ; <-+ [assets:checking:budget:food] $-10 ; <- and these balance+ [assets:checking:available] $10 ; <-+ (something:else) $5 ; <- not required to balance++ Ordinary non-parenthesised, non-bracketed postings are called real+ postings. You can exclude virtual postings from reports with the+ -R/--real flag or real:1 query.++ Account names+ 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 five top-+ level accounts: assets, liabilities, revenue, expenses, and equity.++ Account names may contain single spaces, eg: assets:accounts receiv-+ able. Because of this, they must always be followed by two or more+ spaces (or newline).++ Account names can be aliased.++ Amounts+ After the account name, there is usually an amount. (Important:+ between account name and amount, there must be two or more spaces.)++ hledger's amount format is flexible, supporting several international+ formats. Here are some examples. Amounts have a number (the "quan-+ tity"):++ 1++ ..and usually a currency or commodity name (the "commodity"). This is+ a symbol, word, or phrase, to the left or right of the quantity, with+ or without a separating space:++ $1+ 4000 AAPL++ If the commodity name contains spaces, numbers, or punctuation, it must+ be enclosed in double quotes:++ 3 "no. 42 green apples"++ Amounts can be preceded by a minus sign (or a plus sign, though plus is+ the default), The sign can be written before or after a left-side com-+ modity symbol:++ -$1+ $-1++ One or more spaces between the sign and the number are acceptable when+ parsing (but they won't be displayed in output):++ + $1+ $- 1++ Scientific E notation is allowed:++ 1E-6+ EUR 1E3++ Decimal marks, digit group marks+ A decimal mark can be written as a period or a comma:++ 1.23+ 1,23456780000009++ In the integer part of the quantity (left of the decimal mark), groups+ of digits can optionally be separated by a "digit group mark" - a+ space, comma, or period (different from the decimal mark):++ $1,000,000.00+ EUR 2.000.000,00+ INR 9,99,99,999.00+ 1 000 000.9455++ Note, a number containing a single digit group mark and no decimal mark+ is ambiguous. Are these digit group marks or decimal marks ?++ 1,000+ 1.000++ If you don't tell it otherwise, hledger will assume both of the above+ are decimal marks, parsing both numbers as 1. To prevent confusion and+ undetected typos, especially if your data contains digit group marks,+ we recommend you explicitly declare the decimal mark (and optionally a+ digit group mark), for each commodity, using commodity directives+ (described below):++ # number formats for $, EUR, INR and the no-symbol commodity:+ commodity $1,000.00+ commodity EUR 1.000,00+ commodity INR 9,99,99,999.00+ commodity 1 000 000.9455++ Note, commodity directives declare both the number format for parsing+ input, and the display style for showing output. For the former, they+ are position-sensitive, affecting only following amounts, so commodity+ directives should be at the top of your journal file. This is dis-+ cussed more on #793.+++ Commodity display style+ For the amounts in each commodity, hledger chooses a consistent display+ style to use in most reports. (Except for price amounts, which are+ always displayed as written). The display style is inferred as fol-+ lows.++ First, if a default commodity is declared with D, this commodity and+ its style is applied to any no-symbol amounts in the journal.++ Then each commodity's style is inferred from one of the following, in+ order of preference:++ o The commodity directive for that commodity (including the no-symbol+ commodity), if any.++ o The amounts in that commodity seen in the journal's transactions.+ (Posting amounts only; prices and periodic or auto rules are ignored,+ currently.)++ o The built-in fallback style, which looks like this: $1000.00. (Sym-+ bol on the left, period decimal mark, two decimal places.)++ A style is inferred from journal amounts as follows:++ o Use the general style (decimal mark, symbol placement) of the first+ amount++ o Use the first-seen digit group style (digit group mark, digit group+ sizes), if any++ o Use the maximum number of decimal places of all.++ Transaction price amounts don't affect the commodity display style+ directly, but occasionally they can do so indirectly (eg when a post-+ ing's amount is inferred using a transaction price). If you find this+ causing problems, use a commodity directive to fix the display style.++ To summarise: each commodity's amounts will be normalised to (a) the+ style declared by a commodity directive, or (b) the style of the first+ posting amount in the journal, with the first-seen digit group style+ and the maximum-seen number of decimal places. So if your reports are+ showing amounts in a way you don't like, eg with too many decimal+ places, use a commodity directive. Some examples:++ # declare euro, dollar, bitcoin and no-symbol commodities and set their+ # input number formats and output display styles:+ commodity EUR 1.000,+ commodity $1000.00+ commodity 1000.00000000 BTC+ commodity 1 000.++ Rounding+ Amounts are stored internally as decimal numbers with up to 255 decimal+ places, and displayed with the number of decimal places specified by+ the commodity display style. Note, hledger uses banker's rounding: it+ rounds to the nearest even number, eg 0.5 displayed with zero decimal+ places is "0"). (Guaranteed since hledger 1.17.1; in older versions+ this could vary if hledger was built with Decimal < 0.5.1.)++ Transaction prices+ Within a transaction, you can note an amount's price in another commod-+ ity. 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. 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 cer-+ tain date.++ There are several ways to record a transaction price:++ 1. Write the price per unit, as @ UNITPRICE after the amount:++ 2009/1/1+ assets:euros EUR100 @ $1.35 ; one hundred euros purchased at $1.35 each+ assets:dollars ; balancing amount is -$135.00++ 2. Write the total price, as @@ TOTALPRICE after the amount:++ 2009/1/1+ assets:euros EUR100 @@ $135 ; one hundred euros purchased at $135 for the lot+ assets:dollars++ 3. Specify amounts for all postings, using exactly two commodities, and+ let hledger infer the price that balances the transaction:++ 2009/1/1+ assets:euros EUR100 ; one hundred euros purchased+ assets:dollars $-135 ; for $135++ 4. Like 1, but the @ is parenthesised, i.e. (@); this is for compati-+ bility with Ledger journals (Virtual posting costs), and is equiva-+ lent to 1 in hledger.++ 5. Like 2, but as in 4 the @@ is parenthesised, i.e. (@@); in hledger,+ this is equivalent to 2.++ Use the -B/--cost flag to convert amounts to their transaction price's+ commodity, if any. (mnemonic: "B" is from "cost Basis", as in Ledger).+ Eg here is how -B affects the balance report for the example above:++ $ hledger bal -N --flat+ $-135 assets:dollars+ EUR100 assets:euros+ $ hledger bal -N --flat -B+ $-135 assets:dollars+ $135 assets:euros # <- the euros' cost++ Note -B is sensitive to the order of postings when a transaction price+ is inferred: the inferred price will be in the commodity of the last+ amount. So if example 3's postings are reversed, while the transaction+ is equivalent, -B shows something different:++ 2009/1/1+ assets:dollars $-135 ; 135 dollars sold+ assets:euros EUR100 ; for 100 euros++ $ hledger bal -N --flat -B+ EUR-100 assets:dollars # <- the dollars' selling price+ EUR100 assets:euros++ Lot prices, lot dates+ Ledger allows another kind of price, lot price (four variants: {UNIT-+ PRICE}, {{TOTALPRICE}}, {=FIXEDUNITPRICE}, {{=FIXEDTOTALPRICE}}),+ and/or a lot date ([DATE]) to be specified. These are normally used to+ select a lot when selling investments. hledger will parse these, for+ compatibility with Ledger journals, but currently ignores them. A+ transaction price, lot price and/or lot date may appear in any order,+ after the posting amount and before the balance assertion if any.++ Balance assertions+ hledger supports Ledger-style balance assertions in journal files.+ These look like, for example, = EXPECTEDBALANCE following a posting's+ amount. Eg here we assert the expected dollar balance in accounts a+ and b after each posting:++ 2013/1/1+ a $1 =$1+ b =$-1++ 2013/1/2+ a $1 =$2+ b $-1 =$-2++ After reading a journal file, hledger will check all balance assertions+ and report an error if any of them fail. Balance assertions can pro-+ tect you from, eg, inadvertently disrupting reconciled balances while+ cleaning up old entries. You can disable them temporarily with the+ -I/--ignore-assertions flag, which can be useful for troubleshooting or+ for reading Ledger files. (Note: this flag currently does not disable+ balance assignments, below).++ Assertions and ordering+ hledger sorts an account's postings and assertions first by date and+ then (for postings on the same day) by parse order. Note this is dif-+ ferent from Ledger, which sorts assertions only by parse order. (Also,+ Ledger assertions do not see the accumulated effect of repeated post-+ ings to the same account within a transaction.)++ So, hledger balance assertions keep working if you reorder differently-+ dated transactions within the journal. But if you reorder same-dated+ transactions or postings, assertions might break and require updating.+ This order dependence does bring an advantage: precise control over the+ order of postings and assertions within a day, so you can assert intra-+ day balances.++ Assertions and included files+ With included files, things are a little more complicated. Including+ preserves the ordering of postings and assertions. If you have multi-+ ple postings to an account on the same day, split across different+ files, and you also want to assert the account's balance on the same+ day, you'll have to put the assertion in the right file.++ Assertions and multiple -f options+ Balance assertions don't work well across files specified with multiple+ -f options. Use include or concatenate the files instead.++ Assertions and commodities+ The asserted balance must be a simple single-commodity amount, and in+ fact the assertion checks only this commodity's balance within the+ (possibly multi-commodity) account balance. This is how assertions+ work in Ledger also. We could call this a "partial" balance assertion.++ To assert the balance of more than one commodity in an account, you can+ write multiple postings, each asserting one commodity's balance.++ You can make a stronger "total" balance assertion by writing a double+ equals sign (== EXPECTEDBALANCE). This asserts that there are no other+ unasserted commodities in the account (or, that their balance is 0).++ 2013/1/1+ a $1+ a 1EUR+ b $-1+ c -1EUR++ 2013/1/2 ; These assertions succeed+ a 0 = $1+ a 0 = 1EUR+ b 0 == $-1+ c 0 == -1EUR++ 2013/1/3 ; This assertion fails as 'a' also contains 1EUR+ a 0 == $1++ It's not yet possible to make a complete assertion about a balance that+ has multiple commodities. One workaround is to isolate each commodity+ into its own subaccount:++ 2013/1/1+ a:usd $1+ a:euro 1EUR+ b++ 2013/1/2+ a 0 == 0+ a:usd 0 == $1+ a:euro 0 == 1EUR++ Assertions and prices+ Balance assertions ignore transaction prices, and should normally be+ written without one:++ 2019/1/1+ (a) $1 @ EUR1 = $1++ We do allow prices to be written there, however, and print shows them,+ even though they don't affect whether the assertion passes or fails.+ This is for backward compatibility (hledger's close command used to+ generate balance assertions with prices), and because balance assign-+ ments do use them (see below).++ Assertions and subaccounts+ The balance assertions above (= and ==) do not count the balance from+ subaccounts; they check the account's exclusive balance only. You can+ assert the balance including subaccounts by writing =* or ==*, eg:++ 2019/1/1+ equity:opening balances+ checking:a 5+ checking:b 5+ checking 1 ==* 11++ Assertions and virtual postings+ Balance assertions are checked against all postings, both real and vir-+ tual. They are not affected by the --real/-R flag or real: query.++ Assertions and precision+ 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 asser-+ tions. Balance assertion failure messages show exact amounts.++ Balance assignments+ Ledger-style balance assignments are also supported. 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:++ ; 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++ or when adjusting a balance to reality:++ ; no cash left; update balance, record any untracked spending as a generic expense+ 2016/1/15+ assets:cash = $0+ expenses:misc++ The calculated amount depends on the account's balance in the commodity+ at that point (which depends on the previously-dated postings of the+ commodity to that account since the last balance assertion or assign-+ ment). 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.++ Balance assignments and prices+ A transaction price in a balance assignment will cause the calculated+ amount to have that price attached:++ 2019/1/1+ (a) = $1 @ EUR2++ $ hledger print --explicit+ 2019-01-01+ (a) $1 @ EUR2 = $1 @ EUR2++ Directives+ A directive is a line in the journal beginning with a special keyword,+ that influences how the journal is processed. hledger's directives are+ based on a subset of Ledger's, but there are many differences (and also+ some differences between hledger versions).++ Directives' 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. Note part of this table is hidden when+ viewed in a web browser - scroll it sideways to see more.+++ direc- end subdi- purpose can affect (as of+ tive directive rec- 2018/06)+ tives+ ------------------------------------------------------------------------------------+ account any document account names, all entries in all+ text declare account types & dis- files, before or+ play order after+ alias end rewrite account names following entries+ aliases until end of cur-+ rent file or end+ directive+ apply end apply prepend a common parent to following entries+ account account account names until end of cur-+ rent file or end+ directive+ comment end com- ignore part of journal following entries+ ment until end of cur-+ rent file or end+ directive+ commod- format declare a commodity and its number notation:+ ity number notation & display following entries+ style in that commodity+ in all files ; dis-+ play style: amounts+ of that commodity+ in reports+ D declare a commodity to be default commodity:+ used for commodityless following commod-+ amounts, and its number ityless entries+ notation & display style until end of cur-+ rent file; number+ notation: following+ entries in that+ commodity until end+ of current file;+ display style:+ amounts of that+ commodity in+ reports+ include include entries/directives what the included+ from another file directives affect++ [payee] declare a payee name following entries+ until end of cur-+ rent file+ P declare a market price for a amounts of that+ commodity commodity in+ reports, when -V is+ used+ Y declare a year for yearless following entries+ dates until end of cur-+ rent file+ = declare an auto posting all entries in par-+ rule, adding postings to ent/current/child+ other transactions files (but not sib-+ ling files, see+ #1212)++ And some definitions:+++ subdi- optional indented directive line immediately following a parent+ rec- directive+ tive+ number how to interpret numbers when parsing journal entries (the iden-+ nota- tity of the decimal separator character). (Currently each com-+ tion modity can have its own notation, even in the same file.)+ dis- how to display amounts of a commodity in reports (symbol side+ play and spacing, digit groups, decimal separator, decimal places)+ style+ direc- which entries and (when there are multiple files) which files+ tive are affected by a directive+ scope++ 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.++ Directives and multiple files+ If you use multiple -f/--file options, or the include directive,+ hledger will process multiple input files. But note that directives+ which affect input (see above) typically last only until the end of the+ file in which they occur.++ This may seem inconvenient, but it's intentional; it makes reports sta-+ ble and deterministic, independent of the order of input. Otherwise+ you could see different numbers if you happened to write -f options in+ a different order, or if you moved includes around while cleaning up+ your files.++ It can be surprising though; for example, it means that alias direc-+ tives do not affect parent or sibling files (see below).++ Comment blocks+ A line containing just comment starts a commented region of the file,+ and a line containing just end comment (or the end of the current file)+ ends it. See also comments.++ Including other files+ You can pull in the content of additional files by writing an include+ directive, like this:++ include FILEPATH++ Only journal files can include, and only journal, timeclock or timedot+ files can be included (not CSV files, currently).++ If the file path does not begin with a slash, it is relative to the+ current file's folder.++ A tilde means home directory, eg: include ~/main.journal.++ The path may contain glob patterns to match multiple files, eg: include+ *.journal.++ There is limited support for recursive wildcards: **/ (the slash is+ required) matches 0 or more subdirectories. It's not super convenient+ since you have to avoid include cycles and including directories, but+ this can be done, eg: include */**/*.journal.++ The path may also be prefixed to force a specific file format, overrid-+ ing the file extension (as described in hledger.1 -> Input files):+ include timedot:~/notes/2020*.md.++ Default year+ You can set a default year to be used for subsequent dates which don't+ specify a year. This is a line beginning with Y followed by the year.+ Eg:++ Y2009 ; set default year to 2009++ 12/15 ; equivalent to 2009/12/15+ expenses 1+ assets++ Y2010 ; change default year to 2010++ 2009/1/30 ; specifies the year, not affected+ expenses 1+ assets++ 1/31 ; equivalent to 2010/1/31+ expenses 1+ assets++ Declaring payees+ The payee directive can be used to declare a limited set of payees+ which may appear in transaction descriptions. The "payees" check will+ report an error if any transaction refers to a payee that has not been+ declared. Eg:++ payee Whole Foods++ Declaring commodities+ The commodity directive has several functions:++ 1. It declares commodities which may be used in the journal. This is+ currently not enforced, but can serve as documentation.++ 2. It declares what decimal mark character (period or comma) to expect+ when parsing input - useful to disambiguate international number+ formats in your data. (Without this, hledger will parse both 1,000+ and 1.000 as 1).++ 3. It declares a commodity's display style in output - decimal and+ digit group marks, number of decimal places, symbol placement etc.++ You are likely to run into one of the problems solved by commodity+ directives, sooner or later, so it's a good idea to just always use+ them to declare your commodities.++ A commodity directive is just the word commodity followed by an amount.+ It may be written on a single line, like this:++ ; commodity EXAMPLEAMOUNT++ ; 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++ or on multiple lines, using the "format" subdirective. (In this case+ the commodity symbol appears twice and should be the same in both+ places.):++ ; commodity SYMBOL+ ; format EXAMPLEAMOUNT++ ; 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+ format INR 1,00,00,000.00++ The quantity of the amount does not matter; only the format is signifi-+ cant. The number must include a decimal mark: either a period or a+ comma, followed by 0 or more decimal digits.++ Note hledger normally uses banker's rounding, so 0.5 displayed with+ zero decimal digits is "0". (More at Commodity display style.)++ Commodity error checking+ In strict mode, enabled with the -s/--strict flag, hledger will report+ an error if a commodity symbol is used that has not been declared by a+ commodity directive. This works similarly to account error checking,+ see the notes there for more details.++ Default commodity+ The D directive sets a default commodity, to be used for amounts with-+ out a commodity symbol (ie, plain numbers). This commodity will be+ applied to all subsequent commodity-less amounts, or until the next D+ directive. (Note, this is different from Ledger's D.)++ For compatibility/historical reasons, D also acts like a commodity+ directive, setting the commodity's display style (for output) and deci-+ mal mark (for parsing input). As with commodity, the amount must+ always be written with a decimal mark (period or comma). If both+ directives are used, commodity's style takes precedence.++ The syntax is D AMOUNT. Eg:++ ; commodity-less amounts should be treated as dollars+ ; (and displayed with the dollar sign on the left, thousands separators and two decimal places)+ D $1,000.00++ 1/1+ a 5 ; <- commodity-less amount, parsed as $5 and displayed as $5.00+ b++ Declaring market prices+ The P directive declares a market price, which is an exchange rate+ between two commodities on a certain date. (In Ledger, they are called+ "historical prices".) These are often obtained from a stock exchange,+ cryptocurrency exchange, or the foreign exchange market.++ Here is the format:++ P DATE COMMODITYA COMMODITYBAMOUNT++ o DATE is a simple date++ o COMMODITYA is the symbol of the commodity being priced++ o COMMODITYBAMOUNT is an amount (symbol and quantity) in a second com-+ modity, giving the price in commodity B of one unit of commodity A.++ These two market price directives say that one euro was worth 1.35 US+ dollars during 2009, and $1.40 from 2010 onward:++ P 2009/1/1 EUR $1.35+ P 2010/1/1 EUR $1.40++ The -V, -X and --value flags use these market prices to show amount+ values in another commodity. See Valuation.++ Declaring accounts+ account directives can be used to declare accounts (ie, the places that+ amounts are transferred from and to). Though not required, these dec-+ larations can provide several benefits:++ o They can document your intended chart of accounts, providing a refer-+ ence.++ o They can help hledger know your accounts' types (asset, liability,+ equity, revenue, expense), useful for reports like balancesheet and+ incomestatement.++ o They control account display order in reports, allowing non-alpha-+ betic sorting (eg Revenues to appear above Expenses).++ o They can store extra information about accounts (account numbers,+ notes, etc.)++ o They help with account name completion in the add command, hledger-+ iadd, hledger-web, ledger-mode etc.++ o In strict mode, they restrict which accounts may be posted to by+ transactions, which helps detect typos.++ The simplest form is just the word account followed by a hledger-style+ account name, eg this account directive declares the assets:bank:check-+ ing account:++ account assets:bank:checking++ Account error checking+ By default, accounts come into existence when a transaction references+ them by name. This is convenient, but it means hledger can't warn you+ when you mis-spell an account name in the journal. Usually you'll find+ the error later, as an extra account in balance reports, or an incor-+ rect balance when reconciling.++ In strict mode, enabled with the -s/--strict flag, hledger will report+ an error if any transaction uses an account name that has not been+ declared by an account directive. Some notes:++ o The declaration is case-sensitive; transactions must use the correct+ account name capitalisation.++ o The account directive's scope is "whole file and below" (see direc-+ tives). This means it affects all of the current file, and any files+ it includes, but not parent or sibling files. The position of+ account directives within the file does not matter, though it's usual+ to put them at the top.++ o Accounts can only be declared in journal files (but will affect+ included files in other formats).++ o It's currently not possible to declare "all possible subaccounts"+ with a wildcard; every account posted to must be declared.++ Account comments+ Comments, beginning with a semicolon, can be added:++ o on the same line, after two or more spaces (because ; is allowed in+ account names)++ o on the next lines, indented++ An example of both:++ account assets:bank:checking ; same-line comment, note 2+ spaces before ;+ ; next-line comment+ ; another with tag, acctno:12345 (not used yet)++ Same-line comments are not supported by Ledger, or hledger <1.13.++ Account subdirectives+ We also allow (and ignore) Ledger-style indented subdirectives, just+ for compatibility.:++ account assets:bank:checking+ format blah blah ; <- subdirective, ignored++ Here is the full syntax of account directives:++ account ACCTNAME [ACCTTYPE] [;COMMENT]+ [;COMMENTS]+ [LEDGER-STYLE SUBDIRECTIVES, IGNORED]++ Account types+ hledger recognises five main types of account, corresponding to the+ account classes in the accounting equation:++ Asset, Liability, Equity, Revenue, Expense.++ These account types are important for controlling which accounts appear+ in the balancesheet, balancesheetequity, incomestatement reports (and+ probably for other things in future).++ Additionally, we recognise the Cash type, which is also an Asset, and+ which causes accounts to appear in the cashflow report. ("Cash" here+ means liquid assets, eg bank balances but typically not investments or+ receivables.)++ Declaring account types+ Generally, to make these reports work you should declare your top-level+ accounts and their types, using account directives with type: tags.++ The tag's value should be one of: Asset, Liability, Equity, Revenue,+ Expense, Cash, A, L, E, R, X, C (all case insensitive). The type is+ inherited by all subaccounts except where they override it. Here's a+ complete example:++ account assets ; type: Asset+ account assets:bank ; type: Cash+ account assets:cash ; type: Cash+ account liabilities ; type: Liability+ account equity ; type: Equity+ account revenues ; type: Revenue+ account expenses ; type: Expense++ Auto-detected account types+ If you happen to use common english top-level account names, you may+ not need to declare account types, as they will be detected automati-+ cally using the following rules:+++ If name matches regular account type is:+ expression:+ ----------------------------------------------+ ^assets?(:|$) Asset+ ^(debts?|lia- Liability+ bilit(y|ies))(:|$)+ ^equity(:|$) Equity+ ^(income|revenue)s?(:|$) Revenue+ ^expenses?(:|$) Expense+++ If account type is Asset and name does not contain regu- account type+ lar expression: is:+ --------------------------------------------------------------------------+ (investment|receivable|:A/R|:fixed) Cash++ Even so, explicit declarations may be a good idea, for clarity and pre-+ dictability.++ Interference from auto-detected account types+ If you assign any account type, it's a good idea to assign all of them,+ to prevent any confusion from mixing declared and auto-detected types.+ Although it's unlikely to happen in real life, here's an example: with+ the following journal, balancesheetequity shows "liabilities" in both+ Liabilities and Equity sections. Declaring another account as+ type:Liability would fix it:++ account liabilities ; type:Equity++ 2020-01-01+ assets 1+ liabilities 1+ equity -2++ Old account type syntax+ In some hledger journals you might instead see this old syntax (the+ letters ALERX, separated from the account name by two or more spaces);+ this is deprecated and may be removed soon:++ account assets A+ account liabilities L+ account equity E+ account revenues R+ account expenses X++ Account display order+ Account directives also set the order in which accounts are displayed,+ eg in reports, the hledger-ui accounts screen, and the hledger-web+ sidebar. By default accounts are listed in alphabetical order. But if+ you have these account directives in the journal:++ account assets+ account liabilities+ account equity+ account revenues+ account expenses++ you'll see those accounts displayed in declaration order, not alphabet-+ ically:++ $ hledger accounts -1+ assets+ liabilities+ equity+ revenues+ expenses++ Undeclared accounts, if any, are displayed last, in alphabetical order.++ Note that sorting is done at each level of the account tree (within+ each group of sibling accounts under the same parent). And currently,+ this directive:++ account other:zoo++ would influence the position of zoo among other's subaccounts, but not+ the position of other among the top-level accounts. This means:++ o you will sometimes declare parent accounts (eg account other above)+ that you don't intend to post to, just to customize their display+ order++ o sibling accounts stay together (you couldn't display x:y in between+ a:b and a:c).++ Rewriting accounts+ You can define account alias rules which rewrite your account names, or+ parts of them, before generating reports. This can be useful for:++ o expanding shorthand account names to their full form, allowing easier+ data entry and a less verbose journal++ o adapting old journals to your current chart of accounts++ o experimenting with new account organisations, like a new hierarchy or+ combining two accounts into one++ o customising reports++ Account aliases also rewrite account names in account directives. They+ do not affect account names being entered via hledger add or hledger-+ web.++ See also Rewrite account names.++ Basic aliases+ To set an account alias, use the alias directive in your journal file.+ This affects all subsequent journal entries in the current file or its+ included files. The spaces around the = are optional:++ alias OLD = NEW++ Or, you can use the --alias 'OLD=NEW' option on the command line. This+ affects all entries. It's useful for trying out aliases interactively.++ OLD and NEW are case sensitive full account names. hledger will+ replace any occurrence of the old account name with the new one. Sub-+ accounts are also affected. Eg:++ alias checking = assets:bank:wells fargo:checking+ ; rewrites "checking" to "assets:bank:wells fargo:checking", or "checking:a" to "assets:bank:wells fargo:checking:a"++ Regex aliases+ There is also a more powerful variant that uses a regular expression,+ indicated by the forward slashes:++ alias /REGEX/ = REPLACEMENT++ or --alias '/REGEX/=REPLACEMENT'.++ REGEX is a case-insensitive regular expression. Anywhere it matches+ inside an account name, the matched part will be replaced by REPLACE-+ MENT. If REGEX contains parenthesised match groups, these can be ref-+ erenced by the usual numeric backreferences in REPLACEMENT. Eg:++ alias /^(.+):bank:([^:]+):(.*)/ = \1:\2 \3+ ; rewrites "assets:bank:wells fargo:checking" to "assets:wells fargo checking"++ Also note that REPLACEMENT continues to the end of line (or on command+ line, to end of option argument), so it can contain trailing white-+ space.++ Combining aliases+ You can define as many aliases as you like, using journal directives+ and/or command line options.++ 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.++ 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:++ 1. alias directives preceding the journal entry, most recently parsed+ first (ie, reading upward from the journal entry, bottom to top)++ 2. --alias options, in the order they appeared on the command line+ (left to right).++ In other words, for (an account name in) a given journal entry:++ o the nearest alias declaration before/above the entry is applied first++ o the next alias before/above that will be be applied next, and so on++ o aliases defined after/below the entry do not affect it.++ This gives nearby aliases precedence over distant ones, and helps pro-+ vide semantic stability - aliases will keep working the same way inde-+ pendent of which files are being read and in which order.++ In case of trouble, adding --debug=6 to the command line will show+ which aliases are being applied when.++ Aliases and multiple files+ As explained at Directives and multiple files, alias directives do not+ affect parent or sibling files. Eg in this command,++ hledger -f a.aliases -f b.journal++ account aliases defined in a.aliases will not affect b.journal.+ Including the aliases doesn't work either:++ include a.aliases++ 2020-01-01 ; not affected by a.aliases+ foo 1+ bar++ This means that account aliases should usually be declared at the start+ of your top-most file, like this:++ alias foo=Foo+ alias bar=Bar++ 2020-01-01 ; affected by aliases above+ foo 1+ bar++ include c.journal ; also affected++ end aliases+ You can clear (forget) all currently defined aliases with the end+ aliases directive:++ end aliases++ Default parent account+ You can specify a parent account which will be prepended to all+ accounts within a section of the journal. Use the apply account and+ end apply account directives like so:++ apply account home++ 2010/1/1+ food $10+ cash++ end apply account++ which is equivalent to:++ 2010/01/01+ home:food $10+ home:cash $-10++ If end apply account is omitted, the effect lasts to the end of the+ file. Included files are also affected, eg:++ apply account business+ include biz.journal+ end apply account+ apply account personal+ include personal.journal++ Prior to hledger 1.0, legacy account and end spellings were also sup-+ ported.++ A default parent account also affects account directives. It does not+ affect account names being entered via hledger add or hledger-web. If+ account aliases are present, they are applied after the default parent+ account.++ Periodic transactions+ Periodic transaction rules describe transactions that recur. They+ allow hledger to generate temporary future transactions to help with+ forecasting, so you don't have to write out each one in the journal,+ and it's easy to try out different forecasts.++ Periodic transactions can be a little tricky, so before you use them,+ read this whole section - or at least these tips:++ 1. Two spaces accidentally added or omitted will cause you trouble -+ read about this below.++ 2. For troubleshooting, show the generated transactions with hledger+ print --forecast tag:generated or hledger register --forecast+ tag:generated.++ 3. Forecasted transactions will begin only after the last non-fore-+ casted transaction's date.++ 4. Forecasted transactions will end 6 months from today, by default.+ See below for the exact start/end rules.++ 5. period expressions can be tricky. Their documentation needs+ improvement, but is worth studying.++ 6. Some period expressions with a repeating interval must begin on a+ natural boundary of that interval. Eg in weekly from DATE, DATE+ must be a monday. ~ weekly from 2019/10/1 (a tuesday) will give an+ error.++ 7. 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's a bit+ inconsistent with the above.) Eg: ~ every 10th day of month from+ 2020/01, which is equivalent to ~ every 10th day of month from+ 2020/01/01, will be adjusted to start on 2019/12/10.++ Periodic transaction rules also have a second meaning: they are used to+ define budget goals, shown in budget reports.++ Periodic rule syntax+ A periodic transaction rule looks like a normal journal entry, with the+ date replaced by a tilde (~) followed by a period expression (mnemonic:+ ~ looks like a recurring sine wave.):++ ~ monthly+ expenses:rent $2000+ assets:bank:checking++ There is an additional constraint on the period expression: the start+ date must fall on a natural boundary of the interval. Eg monthly from+ 2018/1/1 is valid, but monthly from 2018/1/15 is not.++ Partial or relative dates (M/D, D, tomorrow, last week) in the period+ expression can work (useful or not). They will be relative to today's+ date, unless a Y default year directive is in effect, in which case+ they will be relative to Y/1/1.++ Two spaces between period expression and description!+ If the period expression is followed by a transaction description,+ these must be separated by two or more spaces. This helps hledger know+ where the period expression ends, so that descriptions can not acciden-+ tally alter their meaning, as in this example:++ ; 2 or more spaces needed here, so the period is not understood as "every 2 months in 2020"+ ; ||+ ; vv+ ~ every 2 months in 2020, we will review+ assets:bank:checking $1500+ income:acme inc++ So,++ o Do write two spaces between your period expression and your transac-+ tion description, if any.++ o Don't accidentally write two spaces in the middle of your period+ expression.++ Forecasting with periodic transactions+ The --forecast flag activates any periodic transaction rules in the+ journal. They will generate temporary recurring transactions, which+ are not saved in the journal, but will appear in all reports (eg+ print). This can be useful for estimating balances into the future, or+ experimenting with different scenarios. Or, it can be used as a data+ entry aid: describe recurring transactions, and every so often copy the+ output of print --forecast into the journal.++ These transactions will have an extra tag indicating which periodic+ rule generated them: generated-transaction:~ PERIODICEXPR. And a simi-+ lar, hidden tag (beginning with an underscore) which, because it's+ never displayed by print, can be used to match transactions generated+ "just now": _generated-transaction:~ PERIODICEXPR.++ Periodic transactions are generated within some forecast period. By+ default, this++ o begins on the later of++ o the report start date if specified with -b/-p/date:++ o the day after the latest normal (non-periodic) transaction in the+ journal, or today if there are no normal transactions.++ o ends on the report end date if specified with -e/-p/date:, or 6+ months (180 days) from today.++ This means that periodic transactions will begin only after the latest+ recorded transaction. And a recorded transaction dated in the future+ can prevent generation of periodic transactions. (You can avoid that+ by writing the future transaction as a one-time periodic rule instead -+ put tilde before the date, eg ~ YYYY-MM-DD ...).++ Or, you can set your own arbitrary "forecast period", which can overlap+ recorded transactions, and need not be in the future, by providing an+ option argument, like --forecast=PERIODEXPR. Note the equals sign is+ required, a space won't work. PERIODEXPR is a period expression, which+ can specify the start date, end date, or both, like in a date: query.+ (See also hledger.1 -> Report start & end date). Some examples:+ --forecast=202001-202004, --forecast=jan-, --forecast=2020.++ Budgeting with periodic transactions+ With the --budget flag, currently supported by the balance 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 com-+ pared in budget reports.++ See also: Budgeting and Forecasting.+++ Auto postings+ "Automated postings" or "auto postings" are extra postings which get+ added automatically to transactions which match certain queries,+ defined by "auto posting rules", when you use the --auto flag.++ An auto posting rule looks a bit like a transaction:++ = QUERY+ ACCOUNT AMOUNT+ ...+ ACCOUNT [AMOUNT]++ except the first line is an equals sign (mnemonic: = suggests match-+ ing), followed by a query (which matches existing postings), and each+ "posting" line describes a posting to be generated, and the posting+ amounts can be:++ o a normal amount with a commodity symbol, eg $2. This will be used+ as-is.++ o a number, eg 2. The commodity symbol (if any) from the matched post-+ ing will be added to this.++ o a numeric multiplier, eg *2 (a star followed by a number N). The+ matched posting's amount (and total price, if any) will be multiplied+ by N.++ o a multiplier with a commodity symbol, eg *$2 (a star, number N, and+ symbol S). The matched posting's amount will be multiplied by N, and+ its commodity symbol will be replaced with S.++ Any query term containing spaces must be enclosed in single or double+ quotes, as on the command line. Eg, note the quotes around the second+ query term below:++ = expenses:groceries 'expenses:dining out'+ (budget:funds:dining out) *-1++ Some examples:++ ; every time I buy food, schedule a dollar donation+ = expenses:food+ (liabilities:charity) $-1++ ; when I buy a gift, also deduct that amount from a budget envelope subaccount+ = expenses:gifts+ assets:checking:gifts *-1+ assets:checking *1++ 2017/12/1+ expenses:food $10+ assets:checking++ 2017/12/14+ expenses:gifts $20+ assets:checking++ $ hledger print --auto+ 2017-12-01+ expenses:food $10+ assets:checking+ (liabilities:charity) $-1++ 2017-12-14+ expenses:gifts $20+ assets:checking+ assets:checking:gifts -$20+ assets:checking $20++ Auto postings and multiple files+ An auto posting rule can affect any transaction in the current file, or+ in any parent file or child file. Note, currently it will not affect+ sibling files (when multiple -f/--file are used - see #1212).++ Auto postings and dates+ 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.++ Auto postings and transaction balancing / inferred amounts / balance asser-+ tions+ Currently, auto postings are added:++ o after missing amounts are inferred, and transactions are checked for+ balancedness,++ o but before balance assertions are checked.++ 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.++ Auto posting tags+ Automated postings will have some extra tags:++ o generated-posting:= QUERY - shows this was generated by an auto post-+ ing rule, and the query++ o _generated-posting:= QUERY - a hidden tag, which does not appear in+ hledger's output. This can be used to match postings generated "just+ now", rather than generated in the past and saved to the journal.++ Also, any transaction that has been changed by auto posting rules will+ have these tags added:++ o modified: - this transaction was modified++ o _modified: - a hidden tag not appearing in the comment; this transac-+ tion was modified "just now".++CSV FORMAT+ How hledger reads CSV data, and the CSV rules file format.++ hledger can read CSV files (Character Separated Value - usually comma,+ semicolon, or tab) containing dated records as if they were journal+ files, automatically converting each CSV record into a transaction.++ (To learn about writing CSV, see CSV output.)++ We describe each CSV file's format with a corresponding rules file. By+ default this is named like the CSV file with a .rules extension added.+ Eg when reading FILE.csv, hledger also looks for FILE.csv.rules in the+ same directory as FILE.csv. You can specify a different rules file+ with the --rules-file option. If a rules file is not found, hledger+ will create a sample rules file, which you'll need to adjust.++ This file contains rules describing the CSV data (header line, fields+ layout, date format etc.), and how to construct hledger journal entries+ (transactions) from it. Often there will also be a list of conditional+ rules for categorising transactions based on their descriptions.+ Here's an overview of the CSV rules; these are described more fully+ below, after the examples:+++ skip skip one or more header lines or matched+ CSV records+ fields name CSV fields, assign them to hledger+ fields+ field assignment assign a value to one hledger field,+ with interpolation+ separator a custom field separator+ if block apply some rules to CSV records matched+ by patterns+ if table apply some rules to CSV records matched+ by patterns, alternate syntax+ end skip the remaining CSV records+ date-format how to parse dates in CSV records+ decimal-mark the decimal mark used in CSV amounts, if+ ambiguous+ newest-first disambiguate record order when there's+ only one date+ include inline another CSV rules file+ balance-type choose which type of balance assignments+ to use++ Note, for best error messages when reading CSV files, use a .csv, .tsv+ or .ssv file extension or file prefix - see File Extension below.++ There's an introductory Convert CSV files tutorial on hledger.org.++ Examples+ Here are some sample hledger CSV rules files. See also the full col-+ lection at:+ https://github.com/simonmichael/hledger/tree/master/examples/csv++ Basic+ At minimum, the rules file must identify the date and amount fields,+ and often it also specifies the date format and how many header lines+ there are. Here's a simple CSV file and a rules file for it:++ Date, Description, Id, Amount+ 12/11/2019, Foo, 123, 10.23++ # basic.csv.rules+ skip 1+ fields date, description, _, amount+ date-format %d/%m/%Y++ $ hledger print -f basic.csv+ 2019-11-12 Foo+ expenses:unknown 10.23+ income:unknown -10.23++ Default account names are chosen, since we didn't set them.++ Bank of Ireland+ Here's a CSV with two amount fields (Debit and Credit), and a balance+ field, which we can use to add balance assertions, which is not neces-+ sary but provides extra error checking:++ Date,Details,Debit,Credit,Balance+ 07/12/2012,LODGMENT 529898,,10.0,131.21+ 07/12/2012,PAYMENT,5,,126++ # bankofireland-checking.csv.rules++ # skip the header line+ skip++ # name the csv fields, and assign some of them as journal entry fields+ fields date, description, amount-out, amount-in, balance++ # We generate balance assertions by assigning to "balance"+ # above, but you may sometimes need to remove these because:+ #+ # - the CSV balance differs from the true balance,+ # by up to 0.0000000000005 in my experience+ #+ # - it is sometimes calculated based on non-chronological ordering,+ # eg when multiple transactions clear on the same day++ # date is in UK/Ireland format+ date-format %d/%m/%Y++ # set the currency+ currency EUR++ # set the base account for all txns+ account1 assets:bank:boi:checking++ $ hledger -f bankofireland-checking.csv print+ 2012-12-07 LODGMENT 529898+ assets:bank:boi:checking EUR10.0 = EUR131.2+ income:unknown EUR-10.0++ 2012-12-07 PAYMENT+ assets:bank:boi:checking EUR-5.0 = EUR126.0+ expenses:unknown EUR5.0++ The balance assertions don't raise an error above, because we're read-+ ing directly from CSV, but they will be checked if these entries are+ imported into a journal file.++ Amazon+ Here we convert amazon.com order history, and use an if block to gener-+ ate a third posting if there's a fee. (In practice you'd probably get+ this data from your bank instead, but it's an example.)++ "Date","Type","To/From","Name","Status","Amount","Fees","Transaction ID"+ "Jul 29, 2012","Payment","To","Foo.","Completed","$20.00","$0.00","16000000000000DGLNJPI1P9B8DKPVHL"+ "Jul 30, 2012","Payment","To","Adapteva, Inc.","Completed","$25.00","$1.00","17LA58JSKRD4HDGLNJPI1P9B8DKPVHL"++ # amazon-orders.csv.rules++ # skip one header line+ skip 1++ # name the csv fields, and assign the transaction's date, amount and code.+ # Avoided the "status" and "amount" hledger field names to prevent confusion.+ fields date, _, toorfrom, name, amzstatus, amzamount, fees, code++ # how to parse the date+ date-format %b %-d, %Y++ # combine two fields to make the description+ description %toorfrom %name++ # save the status as a tag+ comment status:%amzstatus++ # set the base account for all transactions+ account1 assets:amazon+ # leave amount1 blank so it can balance the other(s).+ # I'm assuming amzamount excludes the fees, don't remember++ # set a generic account2+ account2 expenses:misc+ amount2 %amzamount+ # and maybe refine it further:+ #include categorisation.rules++ # add a third posting for fees, but only if they are non-zero.+ if %fees [1-9]+ account3 expenses:fees+ amount3 %fees++ $ hledger -f amazon-orders.csv print+ 2012-07-29 (16000000000000DGLNJPI1P9B8DKPVHL) To Foo. ; status:Completed+ assets:amazon+ expenses:misc $20.00++ 2012-07-30 (17LA58JSKRD4HDGLNJPI1P9B8DKPVHL) To Adapteva, Inc. ; status:Completed+ assets:amazon+ expenses:misc $25.00+ expenses:fees $1.00++ Paypal+ Here's a real-world rules file for (customised) Paypal CSV, with some+ Paypal-specific rules, and a second rules file included:++ "Date","Time","TimeZone","Name","Type","Status","Currency","Gross","Fee","Net","From Email Address","To Email Address","Transaction ID","Item Title","Item ID","Reference Txn ID","Receipt ID","Balance","Note"+ "10/01/2019","03:46:20","PDT","Calm Radio","Subscription Payment","Completed","USD","-6.99","0.00","-6.99","simon@joyful.com","memberships@calmradio.com","60P57143A8206782E","MONTHLY - $1 for the first 2 Months: Me - Order 99309. Item total: $1.00 USD first 2 months, then $6.99 / Month","","I-R8YLY094FJYR","","-6.99",""+ "10/01/2019","03:46:20","PDT","","Bank Deposit to PP Account ","Pending","USD","6.99","0.00","6.99","","simon@joyful.com","0TU1544T080463733","","","60P57143A8206782E","","0.00",""+ "10/01/2019","08:57:01","PDT","Patreon","PreApproved Payment Bill User Payment","Completed","USD","-7.00","0.00","-7.00","simon@joyful.com","support@patreon.com","2722394R5F586712G","Patreon* Membership","","B-0PG93074E7M86381M","","-7.00",""+ "10/01/2019","08:57:01","PDT","","Bank Deposit to PP Account ","Pending","USD","7.00","0.00","7.00","","simon@joyful.com","71854087RG994194F","Patreon* Membership","","2722394R5F586712G","","0.00",""+ "10/19/2019","03:02:12","PDT","Wikimedia Foundation, Inc.","Subscription Payment","Completed","USD","-2.00","0.00","-2.00","simon@joyful.com","tle@wikimedia.org","K9U43044RY432050M","Monthly donation to the Wikimedia Foundation","","I-R5C3YUS3285L","","-2.00",""+ "10/19/2019","03:02:12","PDT","","Bank Deposit to PP Account ","Pending","USD","2.00","0.00","2.00","","simon@joyful.com","3XJ107139A851061F","","","K9U43044RY432050M","","0.00",""+ "10/22/2019","05:07:06","PDT","Noble Benefactor","Subscription Payment","Completed","USD","10.00","-0.59","9.41","noble@bene.fac.tor","simon@joyful.com","6L8L1662YP1334033","Joyful Systems","","I-KC9VBGY2GWDB","","9.41",""++ # paypal-custom.csv.rules++ # Tips:+ # Export from Activity -> Statements -> Custom -> Activity download+ # Suggested transaction type: "Balance affecting"+ # Paypal's default fields in 2018 were:+ # "Date","Time","TimeZone","Name","Type","Status","Currency","Gross","Fee","Net","From Email Address","To Email Address","Transaction ID","Shipping Address","Address Status","Item Title","Item ID","Shipping and Handling Amount","Insurance Amount","Sales Tax","Option 1 Name","Option 1 Value","Option 2 Name","Option 2 Value","Reference Txn ID","Invoice Number","Custom Number","Quantity","Receipt ID","Balance","Address Line 1","Address Line 2/District/Neighborhood","Town/City","State/Province/Region/County/Territory/Prefecture/Republic","Zip/Postal Code","Country","Contact Phone Number","Subject","Note","Country Code","Balance Impact"+ # This rules file assumes the following more detailed fields, configured in "Customize report fields":+ # "Date","Time","TimeZone","Name","Type","Status","Currency","Gross","Fee","Net","From Email Address","To Email Address","Transaction ID","Item Title","Item ID","Reference Txn ID","Receipt ID","Balance","Note"++ fields date, time, timezone, description_, type, status_, currency, grossamount, feeamount, netamount, fromemail, toemail, code, itemtitle, itemid, referencetxnid, receiptid, balance, note++ skip 1++ date-format %-m/%-d/%Y++ # ignore some paypal events+ if+ In Progress+ Temporary Hold+ Update to+ skip++ # add more fields to the description+ description %description_ %itemtitle++ # save some other fields as tags+ comment itemid:%itemid, fromemail:%fromemail, toemail:%toemail, time:%time, type:%type, status:%status_++ # convert to short currency symbols+ if %currency USD+ currency $+ if %currency EUR+ currency E+ if %currency GBP+ currency P++ # generate postings++ # the first posting will be the money leaving/entering my paypal account+ # (negative means leaving my account, in all amount fields)+ account1 assets:online:paypal+ amount1 %netamount++ # the second posting will be money sent to/received from other party+ # (account2 is set below)+ amount2 -%grossamount++ # if there's a fee, add a third posting for the money taken by paypal.+ if %feeamount [1-9]+ account3 expenses:banking:paypal+ amount3 -%feeamount+ comment3 business:++ # choose an account for the second posting++ # override the default account names:+ # if the amount is positive, it's income (a debit)+ if %grossamount ^[^-]+ account2 income:unknown+ # if negative, it's an expense (a credit)+ if %grossamount ^-+ account2 expenses:unknown++ # apply common rules for setting account2 & other tweaks+ include common.rules++ # apply some overrides specific to this csv++ # Transfers from/to bank. These are usually marked Pending,+ # which can be disregarded in this case.+ if+ Bank Account+ Bank Deposit to PP Account+ description %type for %referencetxnid %itemtitle+ account2 assets:bank:wf:pchecking+ account1 assets:online:paypal++ # Currency conversions+ if Currency Conversion+ account2 equity:currency conversion++ # common.rules++ if+ darcs+ noble benefactor+ account2 revenues:foss donations:darcshub+ comment2 business:++ if+ Calm Radio+ account2 expenses:online:apps++ if+ electronic frontier foundation+ Patreon+ wikimedia+ Advent of Code+ account2 expenses:dues++ if Google+ account2 expenses:online:apps+ description google | music++ $ hledger -f paypal-custom.csv print+ 2019-10-01 (60P57143A8206782E) Calm Radio MONTHLY - $1 for the first 2 Months: Me - Order 99309. Item total: $1.00 USD first 2 months, then $6.99 / Month ; itemid:, fromemail:simon@joyful.com, toemail:memberships@calmradio.com, time:03:46:20, type:Subscription Payment, status:Completed+ assets:online:paypal $-6.99 = $-6.99+ expenses:online:apps $6.99++ 2019-10-01 (0TU1544T080463733) Bank Deposit to PP Account for 60P57143A8206782E ; itemid:, fromemail:, toemail:simon@joyful.com, time:03:46:20, type:Bank Deposit to PP Account, status:Pending+ assets:online:paypal $6.99 = $0.00+ assets:bank:wf:pchecking $-6.99++ 2019-10-01 (2722394R5F586712G) Patreon Patreon* Membership ; itemid:, fromemail:simon@joyful.com, toemail:support@patreon.com, time:08:57:01, type:PreApproved Payment Bill User Payment, status:Completed+ assets:online:paypal $-7.00 = $-7.00+ expenses:dues $7.00++ 2019-10-01 (71854087RG994194F) Bank Deposit to PP Account for 2722394R5F586712G Patreon* Membership ; itemid:, fromemail:, toemail:simon@joyful.com, time:08:57:01, type:Bank Deposit to PP Account, status:Pending+ assets:online:paypal $7.00 = $0.00+ assets:bank:wf:pchecking $-7.00++ 2019-10-19 (K9U43044RY432050M) Wikimedia Foundation, Inc. Monthly donation to the Wikimedia Foundation ; itemid:, fromemail:simon@joyful.com, toemail:tle@wikimedia.org, time:03:02:12, type:Subscription Payment, status:Completed+ assets:online:paypal $-2.00 = $-2.00+ expenses:dues $2.00+ expenses:banking:paypal ; business:++ 2019-10-19 (3XJ107139A851061F) Bank Deposit to PP Account for K9U43044RY432050M ; itemid:, fromemail:, toemail:simon@joyful.com, time:03:02:12, type:Bank Deposit to PP Account, status:Pending+ assets:online:paypal $2.00 = $0.00+ assets:bank:wf:pchecking $-2.00++ 2019-10-22 (6L8L1662YP1334033) Noble Benefactor Joyful Systems ; itemid:, fromemail:noble@bene.fac.tor, toemail:simon@joyful.com, time:05:07:06, type:Subscription Payment, status:Completed+ assets:online:paypal $9.41 = $9.41+ revenues:foss donations:darcshub $-10.00 ; business:+ expenses:banking:paypal $0.59 ; business:++ CSV rules+ The following kinds of rule can appear in the rules file, in any order.+ Blank lines and lines beginning with # or ; are ignored.++ skip+ skip N++ The word "skip" followed by a number (or no number, meaning 1) tells+ hledger to ignore this many non-empty lines preceding the CSV data.+ (Empty/blank lines are skipped automatically.) You'll need this when-+ ever your CSV data contains header lines.++ It also has a second purpose: it can be used inside if blocks to ignore+ certain CSV records (described below).++ fields+ fields FIELDNAME1, FIELDNAME2, ...++ A fields list (the word "fields" followed by comma-separated field+ names) is the quick way to assign CSV field values to hledger fields.+ It does two things:++ 1. it names the CSV fields. This is optional, but can be convenient+ later for interpolating them.++ 2. when you use a standard hledger field name, it assigns the CSV value+ to that part of the hledger transaction.++ Here's an example that says "use the 1st, 2nd and 4th fields as the+ transaction's date, description and amount; name the last two fields+ for later reference; and ignore the others":++ fields date, description, , amount, , , somefield, anotherfield++ Field names may not contain whitespace. Fields you don't care about+ can be left unnamed. Currently there must be least two items (there+ must be at least one comma).++ Note, always use comma in the fields list, even if your CSV uses+ another separator character.++ Here are the standard hledger field/pseudo-field names. For more about+ the transaction parts they refer to, see the manual for hledger's jour-+ nal format.++ Transaction field names+ date, date2, status, code, description, comment can be used to form the+ transaction's first line.++ Posting field names+ account+ accountN, where N is 1 to 99, causes a posting to be generated, with+ that account name.++ Most often there are two postings, so you'll want to set account1 and+ account2. Typically account1 is associated with the CSV file, and is+ set once with a top-level assignment, while account2 is set based on+ each transaction's description, and in conditional blocks.++ If a posting's account name is left unset but its amount is set (see+ below), a default account name will be chosen (like "expenses:unknown"+ or "income:unknown").++ amount+ amountN sets posting N's amount. If the CSV uses separate fields for+ inflows and outflows, you can use amountN-in and amountN-out instead.+ By assigning to amount1, amount2, ... etc. you can generate anywhere+ from 0 to 99 postings.++ There is also an older, unnumbered form of these names, suitable for+ 2-posting transactions, which sets both posting 1's and (negated) post-+ ing 2's amount: amount, or amount-in and amount-out. This is still+ supported because it keeps pre-hledger-1.17 csv rules files working,+ and because it can be more succinct, and because it converts posting+ 2's amount to cost if there's a transaction price, which can be useful.++ If you have an existing rules file using the unnumbered form, you might+ want to use the numbered form in certain conditional blocks, without+ having to update and retest all the old rules. To facilitate this,+ posting 1 ignores amount/amount-in/amount-out if any of+ amount1/amount1-in/amount1-out are assigned, and posting 2 ignores them+ if any of amount2/amount2-in/amount2-out are assigned, avoiding con-+ flicts.++ currency+ If the CSV has the currency symbol in a separate field (ie, not part of+ the amount field), you can use currencyN to prepend it to posting N's+ amount. Or, currency with no number affects all postings.++ balance+ balanceN sets a balance assertion amount (or if the posting amount is+ left empty, a balance assignment) on posting N.++ Also, for compatibility with hledger <1.17: balance with no number is+ equivalent to balance1.++ You can adjust the type of assertion/assignment with the balance-type+ rule (see below).++ comment+ Finally, commentN sets a comment on the Nth posting. Comments can also+ contain tags, as usual.++ See TIPS below for more about setting amounts and currency.++ field assignment+ HLEDGERFIELDNAME FIELDVALUE++ Instead of or in addition to a fields list, you can use a "field+ assignment" rule to set the value of a single hledger field, by writing+ its name (any of the standard hledger field names above) followed by a+ text value. The value may contain interpolated CSV fields, referenced+ by their 1-based position in the CSV record (%N), or by the name they+ were given in the fields list (%CSVFIELDNAME). Some examples:++ # set the amount to the 4th CSV field, with " USD" appended+ amount %4 USD++ # combine three fields to make a comment, containing note: and date: tags+ comment note: %somefield - %anotherfield, date: %1++ Interpolation strips outer whitespace (so a CSV value like " 1 "+ becomes 1 when interpolated) (#1051). See TIPS below for more about+ referencing other fields.++ separator+ You can use the separator rule to read other kinds of character-sepa-+ rated data. The argument is any single separator character, or the+ words tab or space (case insensitive). Eg, for comma-separated values+ (CSV):++ separator ,++ or for semicolon-separated values (SSV):++ separator ;++ or for tab-separated values (TSV):++ separator TAB++ If the input file has a .csv, .ssv or .tsv file extension (or a csv:,+ ssv:, tsv: prefix), the appropriate separator will be inferred automat-+ ically, and you won't need this rule.++ if block+ if MATCHER+ RULE++ if+ MATCHER+ MATCHER+ MATCHER+ RULE+ RULE++ Conditional blocks ("if blocks") are a block of rules that are applied+ only to CSV records which match certain patterns. They are often used+ for customising account names based on transaction descriptions.++ Matching the whole record+ Each MATCHER can be a record matcher, which looks like this:++ REGEX++ REGEX is a case-insensitive regular expression which tries to match+ anywhere within the CSV record. It is a POSIX ERE (extended regular+ expression) that also supports GNU word boundaries (\b, \B, \<, \>),+ and nothing else. If you have trouble, be sure to check our+ https://hledger.org/hledger.html#regular-expressions doc.++ Important note: the record that is matched is not the original record,+ but a synthetic one, with any enclosing double quotes (but not enclos-+ ing whitespace) removed, and always comma-separated (which means that a+ field containing a comma will appear like two fields). Eg, if the+ original record is 2020-01-01; "Acme, Inc."; 1,000, the REGEX will+ actually see 2020-01-01,Acme, Inc., 1,000).++ Matching individual fields+ Or, MATCHER can be a field matcher, like this:++ %CSVFIELD REGEX++ which matches just the content of a particular CSV field. CSVFIELD is+ a percent sign followed by the field's name or column number, like+ %date or %1.++ Combining matchers+ A single matcher can be written on the same line as the "if"; or multi-+ ple matchers can be written on the following lines, non-indented. Mul-+ tiple matchers are OR'd (any one of them can match), unless one begins+ with an & symbol, in which case it is AND'ed with the previous matcher.++ if+ MATCHER+ & MATCHER+ RULE++ Rules applied on successful match+ After the patterns there should be one or more rules to apply, all+ indented by at least one space. Three kinds of rule are allowed in+ conditional blocks:++ o field assignments (to set a hledger field)++ o skip (to skip the matched CSV record)++ o end (to skip all remaining CSV records).++ Examples:++ # if the CSV record contains "groceries", set account2 to "expenses:groceries"+ if groceries+ account2 expenses:groceries++ # if the CSV record contains any of these patterns, set account2 and comment as shown+ if+ monthly service fee+ atm transaction fee+ banking thru software+ account2 expenses:business:banking+ comment XXX deductible ? check it++ if table+ if,CSVFIELDNAME1,CSVFIELDNAME2,...,CSVFIELDNAMEn+ MATCHER1,VALUE11,VALUE12,...,VALUE1n+ MATCHER2,VALUE21,VALUE22,...,VALUE2n+ MATCHER3,VALUE31,VALUE32,...,VALUE3n+ <empty line>++ Conditional tables ("if tables") are a different syntax to specify+ field assignments that will be applied only to CSV records which match+ certain patterns.++ MATCHER could be either field or record matcher, as described above.+ When MATCHER matches, values from that row would be assigned to the CSV+ fields named on the if line, in the same order.++ Therefore if table is exactly equivalent to a sequence of of if blocks:++ if MATCHER1+ CSVFIELDNAME1 VALUE11+ CSVFIELDNAME2 VALUE12+ ...+ CSVFIELDNAMEn VALUE1n++ if MATCHER2+ CSVFIELDNAME1 VALUE21+ CSVFIELDNAME2 VALUE22+ ...+ CSVFIELDNAMEn VALUE2n++ if MATCHER3+ CSVFIELDNAME1 VALUE31+ CSVFIELDNAME2 VALUE32+ ...+ CSVFIELDNAMEn VALUE3n++ Each line starting with MATCHER should contain enough (possibly empty)+ values for all the listed fields.++ Rules would be checked and applied in the order they are listed in the+ table and, like with if blocks, later rules (in the same or another ta-+ ble) or if blocks could override the effect of any rule.++ Instead of ',' you can use a variety of other non-alphanumeric charac-+ ters as a separator. First character after if is taken to be the sepa-+ rator for the rest of the table. It is the responsibility of the user+ to ensure that separator does not occur inside MATCHERs and values -+ there is no way to escape separator.++ Example:++ if,account2,comment+ atm transaction fee,expenses:business:banking,deductible? check it+ %description groceries,expenses:groceries,+ 2020/01/12.*Plumbing LLC,expenses:house:upkeep,emergency plumbing call-out++ end+ This rule can be used inside if blocks (only), to make hledger stop+ reading this CSV file and move on to the next input file, or to command+ execution. Eg:++ # ignore everything following the first empty record+ if ,,,,+ end++ date-format+ date-format DATEFMT++ This is a helper for the date (and date2) fields. If your CSV dates+ are not formatted like YYYY-MM-DD, YYYY/MM/DD or YYYY.MM.DD, you'll+ need to add a date-format rule describing them with a strptime date+ parsing pattern, which must parse the CSV date value completely. Some+ examples:++ # MM/DD/YY+ date-format %m/%d/%y++ # D/M/YYYY+ # The - makes leading zeros optional.+ date-format %-d/%-m/%Y++ # YYYY-Mmm-DD+ date-format %Y-%h-%d++ # M/D/YYYY HH:MM AM some other junk+ # Note the time and junk must be fully parsed, though only the date is used.+ date-format %-m/%-d/%Y %l:%M %p some other junk++ For the supported strptime syntax, see:+ https://hackage.haskell.org/package/time/docs/Data-Time-For-+ mat.html#v:formatTime++ decimal-mark+ decimal-mark .++ or:++ decimal-mark ,++ hledger automatically accepts either period or comma as a decimal mark+ when parsing numbers (cf Amounts). However if any numbers in the CSV+ contain digit group marks, such as thousand-separating commas, you+ should declare the decimal mark explicitly with this rule, to avoid+ misparsed numbers.++ newest-first+ hledger always sorts the generated transactions by date. Transactions+ on the same date should appear in the same order as their CSV records,+ as hledger can usually auto-detect whether the CSV's normal order is+ oldest first or newest first. But if all of the following are true:++ o the CSV might sometimes contain just one day of data (all records+ having the same date)++ o the CSV records are normally in reverse chronological order (newest+ at the top)++ o and you care about preserving the order of same-day transactions++ then, you should add the newest-first rule as a hint. Eg:++ # tell hledger explicitly that the CSV is normally newest first+ newest-first++ include+ include RULESFILE++ This includes the contents of another CSV rules file at this point.+ RULESFILE is an absolute file path or a path relative to the current+ file's directory. This can be useful for sharing common rules between+ several rules files, eg:++ # someaccount.csv.rules++ ## someaccount-specific rules+ fields date,description,amount+ account1 assets:someaccount+ account2 expenses:misc++ ## common rules+ include categorisation.rules++ balance-type+ Balance assertions generated by assigning to balanceN are of the simple+ = type by default, which is a single-commodity, subaccount-excluding+ assertion. You may find the subaccount-including variants more useful,+ eg if you have created some virtual subaccounts of checking to help+ with budgeting. You can select a different type of assertion with the+ balance-type rule:++ # balance assertions will consider all commodities and all subaccounts+ balance-type ==*++ Here are the balance assertion types for quick reference:++ = single commodity, exclude subaccounts+ =* single commodity, include subaccounts+ == multi commodity, exclude subaccounts+ ==* multi commodity, include subaccounts++ Tips+ Rapid feedback+ It's a good idea to get rapid feedback while creating/troubleshooting+ CSV rules. Here's a good way, using entr from http://eradman.com/entr-+ project :++ $ ls foo.csv* | entr bash -c 'echo ----; hledger -f foo.csv print desc:SOMEDESC'++ A desc: query (eg) is used to select just one, or a few, transactions+ of interest. "bash -c" is used to run multiple commands, so we can+ echo a separator each time the command re-runs, making it easier to+ read the output.++ Valid CSV+ hledger accepts CSV conforming to RFC 4180. When CSV values are+ enclosed in quotes, note:++ o they must be double quotes (not single quotes)++ o spaces outside the quotes are not allowed++ File Extension+ To help hledger identify the format and show the right error messages,+ CSV/SSV/TSV files should normally be named with a .csv, .ssv or .tsv+ filename extension. Or, the file path should be prefixed with csv:,+ ssv: or tsv:. Eg:++ $ hledger -f foo.ssv print++ or:++ $ cat foo | hledger -f ssv:- foo++ You can override the file extension with a separator rule if needed.+ See also: Input files in the hledger manual.++ Reading multiple CSV files+ If you use multiple -f options to read multiple CSV files at once,+ hledger will look for a correspondingly-named rules file for each CSV+ file. But if you use the --rules-file option, that rules file will be+ used for all the CSV files.++ Valid transactions+ After reading a CSV file, hledger post-processes and validates the gen-+ erated journal entries as it would for a journal file - balancing them,+ applying balance assignments, and canonicalising amount styles. Any+ errors at this stage will be reported in the usual way, displaying the+ problem entry.++ There is one exception: balance assertions, if you have generated them,+ will not be checked, since normally these will work only when the CSV+ data is part of the main journal. If you do need to check balance+ assertions generated from CSV right away, pipe into another hledger:++ $ hledger -f file.csv print | hledger -f- print++ Deduplicating, importing+ When you download a CSV file periodically, eg to get your latest bank+ transactions, the new file may overlap with the old one, containing+ some of the same records.++ The import command will (a) detect the new transactions, and (b) append+ just those transactions to your main journal. It is idempotent, so you+ don't have to remember how many times you ran it or with which version+ of the CSV. (It keeps state in a hidden .latest.FILE.csv file.) This+ is the easiest way to import CSV data. Eg:++ # download the latest CSV files, then run this command.+ # Note, no -f flags needed here.+ $ hledger import *.csv [--dry]++ This method works for most CSV files. (Where records have a stable+ chronological order, and new records appear only at the new end.)++ A number of other tools and workflows, hledger-specific and otherwise,+ exist for converting, deduplicating, classifying and managing CSV data.+ See:++ o https://hledger.org -> sidebar -> real world setups++ o https://plaintextaccounting.org -> data import/conversion++ Setting amounts+ Some tips on using the amount-setting rules discussed above.++ Here are the ways to set a posting's amount:++ 1. If the CSV has a single amount field:+ Assign (via a fields list or a field assignment) to amountN. This sets+ the Nth posting's amount. N is usually 1 or 2 but can go up to 99.++ 2. If the CSV has separate Debit and Credit amount fields:+ Assign to amountN-in and amountN-out. This sets posting N's amount to+ whichever of these has a non-zero value, guessing an appropriate sign.++ o If hledger guesses the wrong sign:+ Prepend a minus sign to flip it. Eg:++ fields date, description, amount-in, amount-out+ amount-out -%amount-out++ o If both fields contain a non-zero value:+ The amountN-in/amountN-out rules require that each CSV record has a+ non-zero value in exactly one of the two fields, so that hledger+ knows which to choose. So these would all be rejected:++ "", ""+ "0", "0"+ "1", "none"++ If your CSV has amount values like this, use conditional rules+ instead. For example, to make hledger to choose the value con-+ taining non-zero digits:++ fields date, description, in, out+ if %in [1-9]+ amount1 %in+ if %out [1-9]+ amount1 %out++ 3. Using the old numberless syntax:+ Assign to amount (or to amount-in and amount-out). This sets posting+ 1's and posting 2's amounts (and converts posting 2's amount to cost).+ This is supported for backwards compatibility (and occasional conve-+ nience).++ 4. If the CSV has the balance instead of the transaction amount:+ Assign to balanceN, which sets posting N's amount indirectly via a bal-+ ance assignment. (Old syntax: balance, equivalent to balance1.)++ o If hledger guesses the wrong default account name:+ When setting the amount via balance assertion, hledger may guess+ the wrong default account name. So, set the account name explic-+ itly, eg:++ fields date, description, balance1+ account1 assets:checking++ Amount signs+ There is some special handling for amount signs, to simplify parsing+ and sign-flipping:++ o If an amount value begins with a plus sign:+ that will be removed: +AMT becomes AMT++ o If an amount value is parenthesised:+ it will be de-parenthesised and sign-flipped: (AMT) becomes -AMT++ o If an amount value has two minus signs (or two sets of parentheses,+ or a minus sign and parentheses):+ they cancel out and will be removed: --AMT or -(AMT) becomes AMT++ o If an amount value contains just a sign (or just a set of parenthe-+ ses):+ that is removed, making it an empty value. "+" or "-" or "()" becomes+ "".++ Setting currency/commodity+ If the currency/commodity symbol is included in the CSV's amount+ field(s):++ 2020-01-01,foo,$123.00++ you don't have to do anything special for the commodity symbol, it will+ be assigned as part of the amount. Eg:++ fields date,description,amount++ 2020-01-01 foo+ expenses:unknown $123.00+ income:unknown $-123.00++ If the currency is provided as a separate CSV field:++ 2020-01-01,foo,USD,123.00++ You can assign that to the currency pseudo-field, which has the special+ effect of prepending itself to every amount in the transaction (on the+ left, with no separating space):++ fields date,description,currency,amount++ 2020-01-01 foo+ expenses:unknown USD123.00+ income:unknown USD-123.00++ Or, you can use a field assignment to construct the amount yourself,+ with more control. Eg to put the symbol on the right, and separated by+ a space:++ fields date,description,cur,amt+ amount %amt %cur++ 2020-01-01 foo+ expenses:unknown 123.00 USD+ income:unknown -123.00 USD++ Note we used a temporary field name (cur) that is not currency - that+ would trigger the prepending effect, which we don't want here.++ Amount decimal places+ Like amounts in a journal file, the amounts generated by CSV rules like+ amount1 influence commodity display styles, such as the number of deci-+ mal places displayed in reports.++ The original amounts as written in the CSV file do not affect display+ style (because we don't yet reliably know their commodity).++ Referencing other fields+ In field assignments, you can interpolate only CSV fields, not hledger+ fields. In the example below, there's both a CSV field and a hledger+ field named amount1, but %amount1 always means the CSV field, not the+ hledger field:++ # Name the third CSV field "amount1"+ fields date,description,amount1++ # Set hledger's amount1 to the CSV amount1 field followed by USD+ amount1 %amount1 USD++ # Set comment to the CSV amount1 (not the amount1 assigned above)+ comment %amount1++ Here, since there's no CSV amount1 field, %amount1 will produce a lit-+ eral "amount1":++ fields date,description,csvamount+ amount1 %csvamount USD+ # Can't interpolate amount1 here+ comment %amount1++ When there are multiple field assignments to the same hledger field,+ only the last one takes effect. Here, comment's value will be be B, or+ C if "something" is matched, but never A:++ comment A+ comment B+ if something+ comment C++ How CSV rules are evaluated+ Here's how to think of CSV rules being evaluated (if you really need+ to). First,++ o include - all includes are inlined, from top to bottom, depth first.+ (At each include point the file is inlined and scanned for further+ includes, recursively, before proceeding.)++ Then "global" rules are evaluated, top to bottom. If a rule is+ repeated, the last one wins:++ o skip (at top level)++ o date-format++ o newest-first++ o fields - names the CSV fields, optionally sets up initial assignments+ to hledger fields++ Then for each CSV record in turn:++ o test all if blocks. If any of them contain a end rule, skip all+ remaining CSV records. Otherwise if any of them contain a skip rule,+ skip that many CSV records. If there are multiple matched skip+ rules, the first one wins.++ o collect all field assignments at top level and in matched if blocks.+ When there are multiple assignments for a field, keep only the last+ one.++ o compute a value for each hledger field - either the one that was+ assigned to it (and interpolate the %CSVFIELDNAME references), or a+ default++ o generate a synthetic hledger transaction from these values.++ This is all part of the CSV reader, one of several readers hledger can+ use to parse input files. When all files have been read successfully,+ the transactions are passed as input to whichever hledger command the+ user specified.++TIMECLOCK FORMAT+ The time logging format of timeclock.el, as read by hledger.++ hledger can read time logs in timeclock format. As with Ledger, these+ are (a subset of) timeclock.el's format, containing clock-in and clock-+ out entries as in the example below. The date is a simple date. The+ time format is HH:MM[:SS][+-ZZZZ]. Seconds and timezone are optional.+ The timezone, if present, must be four digits and is ignored (currently+ the time is always interpreted as a local time).++ i 2015/03/30 09:00:00 some:account name optional description after two spaces+ o 2015/03/30 09:20:00+ i 2015/03/31 22:21:45 another account+ o 2015/04/01 02:00:34++ hledger treats each clock-in/clock-out pair as a transaction posting+ some number of hours to an account. Or if the session spans more than+ one day, it is split into several transactions, one for each day. For+ the above time log, hledger print generates these journal entries:++ $ hledger -f t.timeclock print+ 2015-03-30 * optional description after two spaces+ (some:account name) 0.33h++ 2015-03-31 * 22:21-23:59+ (another account) 1.64h++ 2015-04-01 * 00:00-02:00+ (another account) 2.01h++ Here is a sample.timeclock to download and some queries to try:++ $ hledger -f sample.timeclock balance # current time balances+ $ hledger -f sample.timeclock register -p 2009/3 # sessions in march 2009+ $ hledger -f sample.timeclock register -p weekly --depth 1 --empty # time summary by week++ To generate time logs, ie to clock in and clock out, you could:++ o use emacs and the built-in timeclock.el, or the extended timeclock-+ x.el and perhaps the extras in ledgerutils.el++ o at the command line, use these bash aliases: shell alias ti="echo+ i `date '+%Y-%m-%d %H:%M:%S'` \$* >>$TIMELOG" alias to="echo o+ `date '+%Y-%m-%d %H:%M:%S'` >>$TIMELOG"++ o or use the old ti and to scripts in the ledger 2.x repository. These+ rely on a "timeclock" executable which I think is just the ledger 2+ executable renamed.++TIMEDOT FORMAT+ hledger's human-friendly time logging format.++ Timedot is a plain text format for logging dated, categorised quanti-+ ties (of time, usually), supported by hledger. It is convenient for+ approximate and retroactive time logging, eg when the real-time clock-+ in/out required with a timeclock file is too precise or too interrup-+ tive. It can be formatted like a bar chart, making clear at a glance+ where time was spent.++ Though called "timedot", this format is read by hledger as commodity-+ less quantities, so it could be used to represent dated quantities+ other than time. In the docs below we'll assume it's time.++ A timedot file contains a series of day entries. A day entry begins+ with a non-indented hledger-style simple date (Y-M-D, Y/M/D, Y.M.D..)+ Any additional text on the same line is used as a transaction descrip-+ tion for this day.++ This is followed by optionally-indented timelog items for that day, one+ per line. Each timelog item is a note, usually a+ hledger:style:account:name representing a time category, followed by+ two or more spaces, and a quantity. Each timelog item generates a+ hledger transaction.++ Quantities can be written as:++ o dots: a sequence of dots (.) representing quarter hours. Spaces may+ optionally be used for grouping. Eg: .... ..++ o an integral or decimal number, representing hours. Eg: 1.5++ o an integral or decimal number immediately followed by a unit symbol+ s, m, h, d, w, mo, or y, representing seconds, minutes, hours, days+ weeks, months or years respectively. Eg: 90m. The following equiva-+ lencies are assumed, currently: 1m = 60s, 1h = 60m, 1d = 24h, 1w =+ 7d, 1mo = 30d, 1y=365d.++ There is some flexibility allowing notes and todo lists to be kept+ right in the time log, if needed:++ o Blank lines and lines beginning with # or ; are ignored.++ o Lines not ending with a double-space and quantity are parsed as items+ taking no time, which will not appear in balance reports by default.+ (Add -E to see them.)++ o Org mode headlines (lines beginning with one or more * followed by a+ space) can be used as date lines or timelog items (the stars are+ ignored). Also all org headlines before the first date line are+ ignored. This means org users can manage their timelog as an org+ outline (eg using org-mode/orgstruct-mode in Emacs), for organisa-+ tion, faster navigation, controlling visibility etc.++ Examples:++ # on this day, 6h was spent on client work, 1.5h on haskell FOSS work, etc.+ 2016/2/1+ inc:client1 .... .... .... .... .... ....+ fos:haskell .... ..+ biz:research .++ 2016/2/2+ inc:client1 .... ....+ biz:research .++ 2016/2/3+ inc:client1 4+ fos:hledger 3+ biz:research 1++ * Time log+ ** 2020-01-01+ *** adm:time .+ *** adm:finance .++ * 2020 Work Diary+ ** Q1+ *** 2020-02-29+ **** DONE+ 0700 yoga+ **** UNPLANNED+ **** BEGUN+ hom:chores+ cleaning ...+ water plants+ outdoor - one full watering can+ indoor - light watering+ **** TODO+ adm:planning: trip+ *** LATER++ Reporting:++ $ hledger -f t.timedot print date:2016/2/2+ 2016-02-02 *+ (inc:client1) 2.00++ 2016-02-02 *+ (biz:research) 0.25++ $ hledger -f t.timedot bal --daily --tree+ Balance changes in 2016-02-01-2016-02-03:++ || 2016-02-01d 2016-02-02d 2016-02-03d+ ============++========================================+ biz || 0.25 0.25 1.00+ research || 0.25 0.25 1.00+ fos || 1.50 0 3.00+ haskell || 1.50 0 0+ hledger || 0 0 3.00+ inc || 6.00 2.00 4.00+ client1 || 6.00 2.00 4.00+ ------------++----------------------------------------+ || 7.75 2.25 8.00++ I prefer to use period for separating account components. We can make+ this work with an account alias:++ 2016/2/4+ fos.hledger.timedot 4+ fos.ledger ..++ $ hledger -f t.timedot --alias /\\./=: bal date:2016/2/4 --tree+ 4.50 fos+ 4.00 hledger:timedot+ 0.50 ledger+ --------------------+ 4.50++ Here is a sample.timedot.++COMMON TASKS+ Here are some quick examples of how to do some basic tasks with+ hledger. For more details, see the reference section below, the+ hledger_journal(5) manual, or the more extensive docs at+ https://hledger.org.++ Getting help+ $ hledger # show available commands+ $ hledger --help # show common options+ $ hledger CMD --help # show common and command options, and command help+ $ hledger help # show available manuals/topics+ $ hledger help hledger # show hledger manual as info/man/text (auto-chosen)+ $ hledger help journal --man # show the journal manual as a man page+ $ hledger help --help # show more detailed help for the help command++ Find more docs, chat, mail list, reddit, issue tracker:+ https://hledger.org#help-feedback++ Constructing command lines+ hledger has an extensive and powerful command line interface. We+ strive to keep it simple and ergonomic, but you may run into one of the+ confusing real world details described in OPTIONS, below. If that hap-+ pens, here are some tips that may help:++ o command-specific options must go after the command (it's fine to put+ all options there) (hledger CMD OPTS ARGS)++ o running add-on executables directly simplifies command line parsing+ (hledger-ui OPTS ARGS)++ o enclose "problematic" args in single quotes++ o if needed, also add a backslash to hide regular expression metachar-+ acters from the shell++ o to see how a misbehaving command is being parsed, add --debug=2.++ Starting a journal file+ hledger looks for your accounting data in a journal file,+ $HOME/.hledger.journal by default:++ $ hledger stats+ The hledger journal file "/Users/simon/.hledger.journal" was not found.+ Please create it first, eg with "hledger add" or a text editor.+ Or, specify an existing journal file with -f or LEDGER_FILE.++ You can override this by setting the LEDGER_FILE environment variable.+ It's a good practice to keep this important file under version control,+ and to start a new file each year. So you could do something like+ this:++ $ mkdir ~/finance+ $ cd ~/finance+ $ git init+ Initialized empty Git repository in /Users/simon/finance/.git/+ $ touch 2020.journal+ $ echo "export LEDGER_FILE=$HOME/finance/2020.journal" >> ~/.bashrc+ $ source ~/.bashrc+ $ hledger stats+ Main file : /Users/simon/finance/2020.journal+ Included files :+ Transactions span : to (0 days)+ Last transaction : none+ Transactions : 0 (0.0 per day)+ Transactions last 30 days: 0 (0.0 per day)+ Transactions last 7 days : 0 (0.0 per day)+ Payees/descriptions : 0+ Accounts : 0 (depth 0)+ Commodities : 0 ()+ Market prices : 0 ()++ Setting opening balances+ Pick a starting date for which you can look up the balances of some+ real-world assets (bank accounts, wallet..) and liabilities (credit+ cards..).++ To avoid a lot of data entry, you may want to start with just one or+ two accounts, like your checking account or cash wallet; and pick a+ recent starting date, like today or the start of the week. You can+ always come back later and add more accounts and older transactions, eg+ going back to january 1st.++ Add an opening balances transaction to the journal, declaring the bal-+ ances on this date. Here are two ways to do it:++ o The first way: open the journal in any text editor and save an entry+ like this:++ 2020-01-01 * opening balances+ assets:bank:checking $1000 = $1000+ assets:bank:savings $2000 = $2000+ assets:cash $100 = $100+ liabilities:creditcard $-50 = $-50+ equity:opening/closing balances++ These are start-of-day balances, ie whatever was in the account at+ the end of the previous day.++ The * after the date is an optional status flag. Here it means+ "cleared & confirmed".++ The currency symbols are optional, but usually a good idea as you'll+ be dealing with multiple currencies sooner or later.++ The = amounts are optional balance assertions, providing extra error+ checking.++ o The second way: run hledger add and follow the prompts to record a+ similar transaction:++ $ hledger add+ Adding transactions to journal file /Users/simon/finance/2020.journal+ Any command line arguments will be used as defaults.+ Use tab key to complete, readline keys to edit, enter to accept defaults.+ An optional (CODE) may follow transaction dates.+ An optional ; COMMENT may follow descriptions or amounts.+ If you make a mistake, enter < at any prompt to go one step backward.+ To end a transaction, enter . when prompted.+ To quit, enter . at a date prompt or press control-d or control-c.+ Date [2020-02-07]: 2020-01-01+ Description: * opening balances+ Account 1: assets:bank:checking+ Amount 1: $1000+ Account 2: assets:bank:savings+ Amount 2 [$-1000]: $2000+ Account 3: assets:cash+ Amount 3 [$-3000]: $100+ Account 4: liabilities:creditcard+ Amount 4 [$-3100]: $-50+ Account 5: equity:opening/closing balances+ Amount 5 [$-3050]:+ Account 6 (or . or enter to finish this transaction): .+ 2020-01-01 * opening balances+ assets:bank:checking $1000+ assets:bank:savings $2000+ assets:cash $100+ liabilities:creditcard $-50+ equity:opening/closing balances $-3050++ Save this transaction to the journal ? [y]:+ Saved.+ Starting the next transaction (. or ctrl-D/ctrl-C to quit)+ Date [2020-01-01]: .++ If you're using version control, this could be a good time to commit+ the journal. Eg:++ $ git commit -m 'initial balances' 2020.journal++ Recording transactions+ As you spend or receive money, you can record these transactions using+ one of the methods above (text editor, hledger add) or by using the+ hledger-iadd or hledger-web add-ons, or by using the import command to+ convert CSV data downloaded from your bank.++ Here are some simple transactions, see the hledger_journal(5) manual+ and hledger.org for more ideas:++ 2020/1/10 * gift received+ assets:cash $20+ income:gifts++ 2020.1.12 * farmers market+ expenses:food $13+ assets:cash++ 2020-01-15 paycheck+ income:salary+ assets:bank:checking $1000++ Reconciling+ Periodically you should reconcile - compare your hledger-reported bal-+ ances against external sources of truth, like bank statements or your+ bank's website - to be sure that your ledger accurately represents the+ real-world balances (and, that the real-world institutions have not+ made a mistake!). This gets easy and fast with (1) practice and (2)+ frequency. If you do it daily, it can take 2-10 minutes. If you let+ it pile up, expect it to take longer as you hunt down errors and dis-+ crepancies.++ A typical workflow:++ 1. Reconcile cash. Count what's in your wallet. Compare with what+ hledger reports (hledger bal cash). If they are different, try to+ remember the missing transaction, or look for the error in the+ already-recorded transactions. A register report can be helpful+ (hledger reg cash). If you can't find the error, add an adjustment+ transaction. Eg if you have $105 after the above, and can't explain+ the missing $2, it could be:++ 2020-01-16 * adjust cash+ assets:cash $-2 = $105+ expenses:misc++ 2. Reconcile checking. Log in to your bank's website. Compare today's+ (cleared) balance with hledger's cleared balance (hledger bal check-+ ing -C). If they are different, track down the error or record the+ missing transaction(s) or add an adjustment transaction, similar to+ the above. Unlike the cash case, you can usually compare the trans-+ action history and running balance from your bank with the one+ reported by hledger reg checking -C. This will be easier if you+ generally record transaction dates quite similar to your bank's+ clearing dates.++ 3. Repeat for other asset/liability accounts.++ Tip: instead of the register command, use hledger-ui to see a live-+ updating register while you edit the journal: hledger-ui --watch --reg-+ ister checking -C++ After reconciling, it could be a good time to mark the reconciled+ transactions' status as "cleared and confirmed", if you want to track+ that, by adding the * marker. Eg in the paycheck transaction above,+ insert * between 2020-01-15 and paycheck++ If you're using version control, this can be another good time to com-+ mit:++ $ git commit -m 'txns' 2020.journal++ Reporting+ Here are some basic reports.++ Show all transactions:++ $ hledger print+ 2020-01-01 * opening balances+ assets:bank:checking $1000+ assets:bank:savings $2000+ assets:cash $100+ liabilities:creditcard $-50+ equity:opening/closing balances $-3050++ 2020-01-10 * gift received+ assets:cash $20+ income:gifts++ 2020-01-12 * farmers market+ expenses:food $13+ assets:cash++ 2020-01-15 * paycheck+ income:salary+ assets:bank:checking $1000++ 2020-01-16 * adjust cash+ assets:cash $-2 = $105+ expenses:misc++ Show account names, and their hierarchy:++ $ hledger accounts --tree+ assets+ bank+ checking+ savings+ cash+ equity+ opening/closing balances+ expenses+ food+ misc+ income+ gifts+ salary+ liabilities+ creditcard++ Show all account totals:++ $ hledger balance+ $4105 assets+ $4000 bank+ $2000 checking+ $2000 savings+ $105 cash+ $-3050 equity:opening/closing balances+ $15 expenses+ $13 food+ $2 misc+ $-1020 income+ $-20 gifts+ $-1000 salary+ $-50 liabilities:creditcard+ --------------------+ 0++ Show only asset and liability balances, as a flat list, limited to+ depth 2:++ $ hledger bal assets liabilities --flat -2+ $4000 assets:bank+ $105 assets:cash+ $-50 liabilities:creditcard+ --------------------+ $4055++ Show the same thing without negative numbers, formatted as a simple+ balance sheet:++ $ hledger bs --flat -2+ Balance Sheet 2020-01-16++ || 2020-01-16+ ========================++============+ Assets ||+ ------------------------++------------+ assets:bank || $4000+ assets:cash || $105+ ------------------------++------------+ || $4105+ ========================++============+ Liabilities ||+ ------------------------++------------+ liabilities:creditcard || $50+ ------------------------++------------+ || $50+ ========================++============+ Net: || $4055++ The final total is your "net worth" on the end date. (Or use bse for a+ full balance sheet with equity.)++ Show income and expense totals, formatted as an income statement:++ hledger is+ Income Statement 2020-01-01-2020-01-16++ || 2020-01-01-2020-01-16+ ===============++=======================+ Revenues ||+ ---------------++-----------------------+ income:gifts || $20+ income:salary || $1000+ ---------------++-----------------------+ || $1020+ ===============++=======================+ Expenses ||+ ---------------++-----------------------+ expenses:food || $13+ expenses:misc || $2+ ---------------++-----------------------+ || $15+ ===============++=======================+ Net: || $1005++ The final total is your net income during this period.++ Show transactions affecting your wallet, with running total:++ $ hledger register cash+ 2020-01-01 opening balances assets:cash $100 $100+ 2020-01-10 gift received assets:cash $20 $120+ 2020-01-12 farmers market assets:cash $-13 $107+ 2020-01-16 adjust cash assets:cash $-2 $105++ Show weekly posting counts as a bar chart:++ $ hledger activity -W+ 2019-12-30 *****+ 2020-01-06 ****+ 2020-01-13 ****++ Migrating to a new file+ At the end of the year, you may want to continue your journal in a new+ file, so that old transactions don't slow down or clutter your reports,+ and to help ensure the integrity of your accounting history. See the+ close command.++ If using version control, don't forget to git add the new file.++LIMITATIONS+ The need to precede add-on command options with -- when invoked from+ hledger is awkward.++ When input data contains non-ascii characters, a suitable system locale+ must be configured (or there will be an unhelpful error). Eg on POSIX,+ set LANG to something other than C.++ In a Microsoft Windows CMD window, non-ascii characters and colours are+ not supported.++ On Windows, non-ascii characters may not display correctly when running+ a hledger built in CMD in MSYS/CYGWIN, or vice-versa.++ In a Cygwin/MSYS/Mintty window, the tab key is not supported in hledger+ add.++ Not all of Ledger's journal file syntax is supported. See file format+ differences.++ On large data files, hledger is slower and uses more memory than+ Ledger.++TROUBLESHOOTING+ Here are some issues you might encounter when you run hledger (and+ remember you can also seek help from the IRC channel, mail list or bug+ tracker):++ Successfully installed, but "No command 'hledger' found"+ stack and cabal install binaries into a special directory, which should+ be added to your PATH environment variable. Eg on unix-like systems,+ that is ~/.local/bin and ~/.cabal/bin respectively.++ I set a custom LEDGER_FILE, but hledger is still using the default file+ LEDGER_FILE should be a real environment variable, not just a shell+ variable. The command env | grep LEDGER_FILE should show it. You may+ need to use export. Here's an explanation.++ Getting errors like "Illegal byte sequence" or "Invalid or incomplete+ multibyte or wide character" or "commitAndReleaseBuffer: invalid argu-+ ment (invalid character)"+ Programs compiled with GHC (hledger, haskell build tools, etc.) need to+ have a UTF-8-aware locale configured in the environment, otherwise they+ will fail with these kinds of errors when they encounter non-ascii+ characters.++ To fix it, set the LANG environment variable to some locale which sup-+ ports UTF-8. The locale you choose must be installed on your system.++ Here's an example of setting LANG temporarily, on Ubuntu GNU/Linux:++ $ file my.journal+ my.journal: UTF-8 Unicode text # the file is UTF8-encoded+ $ echo $LANG+ C # LANG is set to the default locale, which does not support UTF8+ $ locale -a # which locales are installed ?+ C+ en_US.utf8 # here's a UTF8-aware one we can use+ POSIX+ $ LANG=en_US.utf8 hledger -f my.journal print # ensure it is used for this command++ If available, C.UTF-8 will also work. If your preferred locale isn't+ listed by locale -a, you might need to install it. Eg on+ Ubuntu/Debian:++ $ apt-get install language-pack-fr+ $ locale -a+ C+ en_US.utf8+ fr_BE.utf8+ fr_CA.utf8+ fr_CH.utf8+ fr_FR.utf8+ fr_LU.utf8+ POSIX+ $ LANG=fr_FR.utf8 hledger -f my.journal print++ Here's how you could set it permanently, if you use a bash shell:++ $ echo "export LANG=en_US.utf8" >>~/.bash_profile+ $ bash --login++ Exact spelling and capitalisation may be important. Note the differ-+ ence on MacOS (UTF-8, not utf8). Some platforms (eg ubuntu) allow+ variant spellings, but others (eg macos) require it to be exact:++ $ locale -a | grep -iE en_us.*utf+ en_US.UTF-8+ $ LANG=en_US.UTF-8 hledger -f my.journal print++++REPORTING BUGS+ Report bugs at http://bugs.hledger.org (or on the #hledger IRC channel+ or hledger mail list)+++AUTHORS+ Simon Michael <simon@joyful.com> and contributors+++COPYRIGHT+ Copyright (C) 2007-2020 Simon Michael.+ Released under GNU GPL v3 or later.+++SEE ALSO+ hledger(1), hledger-ui(1), hledger-web(1), ledger(1)++++hledger-1.21 December 2020 HLEDGER(1)