The option directive sets file-wide Beancount configuration.
See Options.
Beancount syntax
option "title" "My Ledger"
option "operating_currency" "USD"
option "infer_tolerance_from_cost" TRUEGeneral form: option "Name" Value
This directive has no date.
Elixir struct
%Beancount.Directives.Option{
name: "operating_currency",
value: "USD"
}
%Beancount.Directives.Option{
name: "infer_tolerance_from_cost",
value: true
}Or use Beancount.option/2:
Beancount.option("operating_currency", "USD")
Beancount.option("infer_tolerance_from_cost", true)