Re: Thank you Fava

2017-01-22 Thread Red S
Wow, that is an incredible story! I had no clue. So glad you're fine now :). If you ever visit the US, I owe you a beer or ten. On Sun, Jan 15, 2017 at 1:06 AM, Dominik Aumayr wrote: > A little backstory: > > In fall 2015 I was in a hospital bed, getting chemotherapy. I

Re: [Bitbucket] Issue #392: Booking method not applied when used in included file (blais/beancount)

2019-05-13 Thread Red S
Related, I'm guessing: I'm unable to use the plugin directive from an included file. +1 for Stefano's comment earlier about include being transparent, so refactoring the source files has no effect. -- You received this message because you are subscribed to the Google Groups "Beancount" group.

Zerosum plugin, now 5x faster

2019-05-19 Thread Red S
Performance improvements in Beancount and Fava exposed performance issues with the Zerosum plugin. It's now fixed. I get a 5.5x improvement (4s -> 0.7s for matching ~5k postings). https://github.com/redstreet/beancount_plugins_redstreet/tree/master/zerosum Tests and features most welcome. --

Re: Portfolio returns calculator

2019-05-20 Thread Red S
Nicely done. It's simple, works for all my use cases, and compares correctly to what I see at my institutions. Thank you for sharing this! These are some of the things I'd love to see, and will start coding them up soon. Are you open to PRs? - accounts specifiable via a regex (I use top-level

Re: Retaining cost bases through conversions

2019-07-05 Thread Red S
what's done frequently IMHO. > For now: > - Use bean-doctor context to get the contents of the account before the > transaction > - Copy paste a few numbers > > > On Thu, Jul 4, 2019 at 12:39 AM Red S > > wrote: > >> Right, but that's going to be the laborious b

Asset allocation analysis tool

2019-07-13 Thread Red S
An asset allocation analysis tool that uses Beancount is here: https://github.com/redstreet/beancount_asset_allocation Contributions welcome. Understanding the asset allocation of a portfolio is important. This script reports your current portfolio's asset allocation. Configuration You specify

Retaining cost bases through conversions

2019-07-01 Thread Red S
Existing mutual fund shares occasionally get converted to a different class of shares. The resulting class typically has a different NAV, so the transaction ends up looking like: 2011-01-01 * "Mutual fund exchange: upgrade share class" Assets:Investments:Taxable:Vanguard-Pre-75305462

Re: Asset allocation analysis tool

2019-08-03 Thread Red S
ing to a spreadsheet that is updated with live market > data. > > > > > > On Sun, Jul 14, 2019 at 1:06 AM Red S > > wrote: > >> An asset allocation analysis tool that uses Beancount is here: >> https://github.com/redstreet/beancount_asset_allocation >> &g

Re: Documentation is now read-only

2019-08-03 Thread Red S
This is terrific. It loads so much faster than google docs, doesn't need an app/sign in. Thank you for doing this. May I know what you had in mind for the update policy? How up-to-date with the originals will this be? Thanks again! On Friday, August 2, 2019 at 2:18:20 AM UTC-7, Kirill

Re: Asset allocation analysis tool

2019-08-03 Thread Red S
7 BNCT |-- Brokerage 1 BNCT `-- XTrade 2 BNCT 10 COFE On Saturday, July 13, 2019 at 10:06:30 PM UTC-7, Red S wrote: > > An asset allocation analysis tool that uses Beancount is here: > https://github.com/redstreet/beancount_a

Re: Asset allocation analysis tool

2019-08-31 Thread Red S
That's great. It would be very helpful if you posted your fava plugin. It's fine if it's rough around the edges. Thank you! -- You received this message because you are subscribed to the Google Groups "Beancount" group. To unsubscribe from this group and stop receiving emails from it, send an

Re: Retaining cost bases through conversions

2019-07-03 Thread Red S
ionship, I was wondering if there was any easier way I'm misisng. On Monday, July 1, 2019 at 10:48:30 PM UTC-7, Martin Blais wrote: > > Use cost syntax on both legs: {...} not @@ > > > On Tue, Jul 2, 2019 at 1:35 AM Red S > > wrote: > >> Existing mutual fund shares occasionall

Re: How to manage transactions, which are split across several files

2019-07-06 Thread Red S
This is something the Zerosum plugin automates: https://github.com/redstreet/beancount_plugins_redstreet/tree/master/zerosum -- You received this message because you are subscribed to the Google Groups "Beancount" group. To unsubscribe from this group and stop receiving emails from it, send an

Re: Tracking expenses that are really transfers

2019-12-07 Thread Red S
I meant to include a link but forgot! Here it is: https://github.com/redstreet/beancount_plugins_redstreet/tree/master/rename_accounts -- You received this message because you are subscribed to the Google Groups "Beancount" group. To unsubscribe from this group and stop receiving emails from

Re: Active currency holdings and average cost booking

2019-12-07 Thread Red S
ou're selling the entire position (all of the 10 units) > Beancount is able to match it against the full set of positions and > reduce that, so this would run without errors: > > 2016-01-07 * "sell" > Assets:Inv -10 XYZ {} @ 8 USD > Assets:Bank

Re: Tracking expenses that are really transfers

2019-12-07 Thread Red S
You are wanting two different views (reports) into the same set of transactions. I ran into similar needs, and wrote a plugin to rename accounts, that I turn on or off depending on what kind of reporting I want. In your first and second examples, you'd turn on (or off) the following renames

Active currency holdings and average cost booking

2019-11-25 Thread Red S
I'm trying to get a list of currencies active as of a given date in order to download prices. However, I get way more currencies than are truly active because I have accounts that need average cost booking, which I've so far booked this way until that feature is available: 2016-01-06 * "buy"

Re: Active currency holdings and average cost booking

2019-11-29 Thread Red S
, but that shouldn't matter much. Do others have this issue at all? Thanks! On Tuesday, November 26, 2019 at 10:14:34 AM UTC-8, Martin Michlmayr wrote: > > * Red S > [2019-11-25 02:18]: > > 2016-01-07 * "sell" > > Assets:Inv -10 XYZ @ 8 USD > > Assets:Bank

Per posting effective dates plugin

2020-02-29 Thread Red S
I find being able to specify different dates for different legs (aka postings) of a transaction to be valuable. I was using a plugin I'd hacked up for a long while, and I finally got around to rewriting it to allow for per-posting dates with configurable holding accounts. Sharing it. Feedback

Re: Per posting effective dates plugin

2020-03-01 Thread Red S
Thanks for the feedback! Responses inline: On Sunday, March 1, 2020 at 7:13:58 AM UTC-8, Justus Pendleton wrote: > > On Sunday, March 1, 2020 at 4:09:52 AM UTC+7, Red S wrote: >> >> I find being able to specify different dates for different legs (aka >> postings) of a tr

Re: Per posting effective dates plugin

2020-03-01 Thread Red S
t 3:57:23 PM UTC-8, Red S wrote: > > Thanks for the feedback! Responses inline: > > On Sunday, March 1, 2020 at 7:13:58 AM UTC-8, Justus Pendleton wrote: >> >> On Sunday, March 1, 2020 at 4:09:52 AM UTC+7, Red S wrote: >>> >>> I find being able to

Re: Per posting effective dates plugin

2020-03-04 Thread Red S
> All of my transactions are manually entered since cash payments make up > >50% my transactions and my primary bank account & credit card don't have > any kind of export, so zerosum doesn't fit my use case, unfortunately. But > I can how it would work with importers. effective_date looks

Re: Per posting effective dates plugin

2020-03-03 Thread Red S
To clarify: the links now look like: ^edate-141215-xlu, to refer to an original transaction date of 2014-12-15. -- You received this message because you are subscribed to the Google Groups "Beancount" group. To unsubscribe from this group and stop receiving emails from it, send an email to

debugging importer

2020-03-03 Thread Red S
Search for 'def extract' in siddhanth's importer, and insert a few print statements there to get started. -- You received this message because you are subscribed to the Google Groups "Beancount" group. To unsubscribe from this group and stop receiving emails from it, send an email to

Re: BQL query for transfers between assets?

2019-12-29 Thread Red S
Could you replace "X in other_accounts" with "number > 0"? -- You received this message because you are subscribed to the Google Groups "Beancount" group. To unsubscribe from this group and stop receiving emails from it, send an email to beancount+unsubscr...@googlegroups.com. To view this

Re: New tool: Tax loss harvester for beancount

2020-03-09 Thread Red S
this in fava? On Monday, March 9, 2020 at 5:54:55 PM UTC-7, Justus Pendleton wrote: > > On Sunday, March 8, 2020 at 7:54:03 AM UTC+7, Red S wrote: >> >> I cleaned up a tool I've been using to find opportunities to do tax loss >> harvesting from my beancount file, and am sh

Re: New tool: Tax loss harvester for beancount

2020-03-11 Thread Red S
, in addition. On Saturday, March 7, 2020 at 6:37:13 PM UTC-8, Martin Blais wrote: > > Thank you for sharing RedS! I've added a link to the contributions doc. > > On Sat, Mar 7, 2020 at 7:54 PM Red S > > wrote: > >> I cleaned up a tool I've been using to find opportunities to do t

Re: New tool: Tax loss harvester for beancount

2020-03-09 Thread Red S
r. Thanks a bunch for the feedback! On Monday, March 9, 2020 at 6:30:06 PM UTC-7, Red S wrote: > > Great feedback, thanks! Fixes for all your points coming very soon. > > Meanwhile, I'm working on a fava plugin version. I'm considering > continuing further development only on

New Fava extension: Tax loss harvester

2020-03-09 Thread Red S
I recently shared a beancount tool for identifying tax loss harvesting opportunities. This is the fava plugin version. Starting a new thread for this because these these are different code bases, and I intend primarily to develop

Re: New Fava extension: Tax loss harvester

2020-03-11 Thread Red S
On Wednesday, March 11, 2020 at 2:43:55 AM UTC-7, Justus Pendleton wrote: > > It looks like if account_field is set to LEAF(account) then the URLs for > the accounts are broken -- they take you to my-personal-ledger/account/LEAF > instead of my-personal-ledger/account/Assets:Tree:Leaf > I

Holdings query output in fava

2020-03-07 Thread Red S
When I go to the Holdings page in fava and click "Query", it drops me into the query page with what's presumably the query run for the Holdings page. 1) However, when I run that query, the output is different from what I get on the output page. I see one difference is, sold lots appear on the

Re: Holdings query output in fava

2020-03-09 Thread Red S
Found the answer for (2) as well: query.run_query(numberify=True) On Saturday, March 7, 2020 at 2:48:11 AM UTC-8, Red S wrote: > > When I go to the Holdings page in fava and click "Query", it drops me into > the query page with what's presumably the query run for the Ho

Re: Investment tools for fava

2020-04-11 Thread Red S
The fava_investor project now has a few basic modules: asset allocation by class, asset allocation by accounts, TLH, and a basic cash drag analysis. A performance module is in development, and several more

Re: New Fava extension: Tax loss harvester

2020-03-13 Thread Red S
Summary on top grouped by commodity (thanks Justus Pendleton for the idea). Also, washes have been merged into a single table. -- You received this message because you are subscribed to the Google Groups "Beancount" group. To unsubscribe from this group and stop receiving emails from it, send

Re: Split yearly bill to monthly: scheduled transactions? chronjob?

2020-04-03 Thread Red S
This plugin lets you create a single transaction spread across multiple dates: https://github.com/redstreet/beancount_plugins_redstreet/tree/master/effective_date See the car insurance example here

Re: Stuck on non-descriptive error message 'No position matches'

2020-03-28 Thread Red S
Makdisse, 1) Include this line in your earlier source: 2000-01-01 open Assets:Coinbase:ETH "NONE" and everything would work fine. However, you won't get strict lot reduction, but rather, a mix of positive and negative lots. The point here is to help you build your mental model of how beancount

Re: Investment tools for fava

2020-03-28 Thread Red S
On Monday, March 23, 2020 at 4:13:57 PM UTC-7, Dave The Happy Singer wrote: > > > If you're interested in contributing code to do this, please do, by all > means. An irr directory within fava-investor on a dev branch would be a > great if you already have working code and tests. If not, feel

Web programming help required for fava (flask/jinja)

2020-03-28 Thread Red S
https://github.com/redstreet/fava-investor/issues/10 We will likely need to display a page with "tabs," with tabs for asset allocation, TLH, rebalancing, etc. See the holdings page in fava for an example. The holdings page uses def holdings_by() in fava/applications.py. Static pages

Re: Beancount issues

2020-04-25 Thread Red S
re's a bunch of easier > solutions are coming around (converters to github that will also import > issues, heptapod to stick with mercurial, etc.). > Atlassian also delayed the deadline. > I'm waiting until the very last moment, just got too much going on > > > > On Sat, Apr

Re: OFX Importer for Investment Accounts

2020-04-26 Thread Red S
Does the built-in ofx importer handle investment transactions (eg: buy/sell stocks/funds)? I built my own generic investment ofx importer on top of ofxparse, and I've been using it for years. It works for a number of brokerages including the case you describe, vanguard with multiple real

Re: No position matches error

2020-04-30 Thread Red S
This section of the documentation might help. Specifically: Reductions Augmentations vs. Reductions Homogeneous and Mixed Inventories Also, read this thread

Re: Question on query output on per transaction basis.

2020-04-30 Thread Red S
Did you try: `journal` ? -- You received this message because you are subscribed to the Google Groups "Beancount" group. To unsubscribe from this group and stop receiving emails from it, send an email to beancount+unsubscr...@googlegroups.com. To view this discussion on the web visit

Re: No position matches error

2020-04-30 Thread Red S
You're on the right track with your questions. Responses inline: On Thursday, April 30, 2020 at 12:03:55 PM UTC-7, salmi...@gmail.com wrote: > > Thanks. Didn't get it yet but I have few questions. > > 1) After reading the doc it seems to me that I should specify which lots I > sold by using {}

Re: Question on query output on per transaction basis.

2020-04-30 Thread Red S
Right, but it groups postings together by transaction, which is exactly what transactions are: groups of postings. If this is not what you want, what exactly do you want? Send us a sample format. -- You received this message because you are subscribed to the Google Groups "Beancount" group.

Re: OFX Importer for Investment Accounts

2020-04-29 Thread Red S
python programmer, so I'm mainly working from > examples. > > Thanks! > > -JH > > On Sun, Apr 26, 2020 at 12:32 PM Red S > > wrote: > >> Does the built-in ofx importer handle investment transactions (eg: >> buy/sell stocks/funds)? >> >> I b

Re: OFX Importer for Investment Accounts

2020-04-30 Thread Red S
It's now on PyPI: *pip install beancount-reds-importers* See the examples directory in the installed files, or on github (eg: /usr/lib/python3.6/site-packages/beancount_reds_importers/example/my.import) On Wednesday, April 29, 2020 at 4:15:08 PM UTC-7, Red S wrote: > > I've cleaned

Re: Beancount issues

2020-04-25 Thread Red S
Just curious: is https://bitbucket.org/blais/beancount/src/default/ still the official repo? I can still seem to check out from it. Is mercurial on bitbucket going to remain alive? -- You received this message because you are subscribed to the Google Groups "Beancount" group. To unsubscribe

Airline miles: expiry and value reporter for Fava, Beancount [fava_miler]

2020-05-06 Thread Red S
This is a simple but useful extension I've used for a while, and would like to share. Github pip install fava-miler Airline miles and rewards points: expiration and value reporting for Fava/Beancount

Stock splits / share class change

2020-03-19 Thread Red S
When stock split or share class changes occur, the cost of many (tens, hundreds) of dated lots may need to be scaled, while retaining the dates, as mentioned here: https://xuhcc.github.io/beancount-docs/19_trading_with_beancount.html#stock-splits

Investment tools for fava

2020-03-22 Thread Red S
One area that is missing in fava today is investment tools. I've found Beancount to be very well designed to capture and represent almost anything necessary for handling investments in the realm of personal finance (thanks, Martin!), and Fava to be a terrific front end (thanks, Fava authors)!

Re: Investment tools for fava

2020-03-23 Thread Red S
Great! Reg. IRR, here are the ones I've looked at: 1) https://github.com/hoostus/portfolio-returns - simple, money-weighted 2) https://github.com/beancount/beancount/tree/master/experiments/returns and

Re: Investment tools for fava

2020-03-23 Thread Red S
> > It would also be good if this could be built in modular fashion so we can > use it as a library for beancount scripting, a cli and as a fava plugin > (should fava-investor be beancount-investor, with a fava plugin?) > I very much agree with the philosophy of library/cli/fava. That's

Re: Investment tools for fava

2020-03-23 Thread Red S
> Let us know if you want to continue the conversation here, on fava or on > fava-investor! > > Continuing the conversation here would be great and get more eyes on it. Of course, for specific issues affecting code and lower-level design, feel free to open issues in fava-investor. Thanks for

Re: Tab Completion for Vim?

2020-03-07 Thread Red S
Yes. https://github.com/nathangrigg/vim-beancount What does company do? On Saturday, March 7, 2020 at 9:34:08 AM UTC-8, Toby wrote: > > Hi, > > I am just curious to know if there is a tab completion for Vim as there is > for Emacs. > Also curious to know if there is a functionality like >

New tool: Tax loss harvester for beancount

2020-03-07 Thread Red S
I cleaned up a tool I've been using to find opportunities to do tax loss harvesting from my beancount file, and am sharing it here . A well crafted query may get you a rough list, but I find a few bells and whistles to be far more

Re: Holdings query output in fava

2020-03-08 Thread Red S
Found the filter in fava/templates/holdings.html {{ querytable.querytable(contents, result_types, result_rows, filter_empty=units_column.get(aggregation_key, 1)) }} aggregation_key is one of the "tabs" ("holdings by [all, account, currency, cost_currency")). -- You received this message

Re: Holdings query output in fava

2020-03-08 Thread Red S
If someone has pointers on how the syntax works in fava/templates/*.html files, I'd most appreciate it. I'd love to write a few fava plugins, and not having to reverse engineer the syntax would be awesome and much faster :). Thank you! -- You received this message because you are subscribed

Re: New Fava extension: Tax loss harvester

2020-03-17 Thread Red S
now included On Friday, March 13, 2020 at 1:16:46 AM UTC-7, Red S wrote: > > Summary on top grouped by commodity (thanks Justus Pendleton for the idea). > > Also, washes have been merged into a single table. > > -- You received this message because you are subscribed to

Re: New tool: Tax loss harvester for beancount

2020-03-17 Thread Red S
Hello Martin, I've combined both the beancount command line client and fava extension into https://github.com/redstreet/fava_tax_loss_harvester. It'd be great if you could point to that repo in the contributions doc. Thanks! On Tuesday, March 10, 2020 at 11:35:44 PM UTC-7, Red S wrote

Re: Envelope Plugin for Fava

2020-05-23 Thread Red S
FWIW, what I've learned working with Fava extensions: 1. Understand failure to load the module by importing the module in an interactive python shell 2. If the module loads, error reporting on the console is easy and works well (print statements, logging) -- You received this message because

Re: Envelope Plugin for Fava

2020-05-23 Thread Red S
In case this helps debug: If you see this in the Fava error page: "Importing module "mymodule" failed." That usually means the module was not able to be loaded. Try running python3 interactively and typing: import mymodule That should succeed, or tell you what the failure was. -- You

Re: Importing Python dicts?

2020-10-09 Thread Red S
You have the steps right. I'm trying to understand where you are stuck. You would simply write a new importer that didn't read from a file, but instead called your library, and converted the list of dicts into transactions. Have you looked at:

Re: OFX Importer for Investment Accounts

2020-06-02 Thread Red S
1. Rename your file to OfxDownload.qfx. I'll fix it later so this is not a requirement. 2. Set the account number in your import file you posted: see the default of '123456'. 3. Then, first run bean-identify and ensure it works before running bean-extract Let me know if that worked. -- You

Re: Airline miles: expiry and value reporter for Fava, Beancount [fava_miler]

2020-09-16 Thread Red S
On Wednesday, May 6, 2020 at 2:40:09 AM UTC-7, Martin Michlmayr wrote: > > * Red S > [2020-05-05 23:08]: > > Github <https://github.com/redstreet/fava_miler> > > > > Airline miles and rewards points: expiration and value reporting for > > Fava/Beanco

Re: How to filter journal queries by amount ?

2020-10-22 Thread Red S
FROM applies to a transaction, WHERE applies to postings. I may be mistaken, but WHERE cannot be used with JOURNAL for this reason, in my understanding. This might possibly be what you want: SELECT date,description,account,position,balance WHERE account ~ "^Expenses" AND number > 800

Re: ofx max_date correct?

2020-10-22 Thread Red S
Ditto, banks don't seem to be fully consistent on these. FWIW, for my importers , I use the following dates via ofxparse : - date of last transaction, used for filing via bean-file: I use

Re: How to filter journal queries by amount ?

2020-10-23 Thread Red S
M UTC-7, Martin Blais wrote: > > Both can be used, but FROM can be used only with transaction columns and > WHERE can be used only with posting columns. > > On Thu, Oct 22, 2020, 04:11 Red S > > wrote: > >> FROM applies to a transaction, WHERE applies to postings. I

Re: Importing ADP payroll extracts to Beancount

2020-10-23 Thread Red S
Long ago, I had to download data from ADP. Now, it's a different provider. Both had/have the same problem: no obvious way to export data to csv/ofx or anything other than pdf. PDFs are a mess with automation. I use pdftotext, followed by a simple python parser/importer to get payroll data into

Re: How to filter journal queries by amount ?

2020-10-23 Thread Red S
t 11:13:53 PM UTC-7, Red S wrote: > > beancount> JOURNAL WHERE number > 5 > ERROR: Syntax error near 'WHERE' (at 8) > JOURNAL WHERE number > 5 > ^ > beancount> help journal > Select a journal of some subset of postings. This command is a > conv

Re: Per posting effective dates plugin

2020-08-03 Thread Red S
That's what I'd ask too. Could you please post a minimal example that fails, including the config with which you're invoking the plugin? Also, have you taken a look at the example?

Re: Per posting effective dates plugin

2020-08-04 Thread Red S
See installation and usage: https://github.com/redstreet/beancount_reds_plugins https://github.com/redstreet/beancount_reds_plugins/blob/master/beancount_reds_plugins/effective_date/examples.beancount Please post in this thread if that doesn't work for you. -- You received this message because

How to run this two plugin (zerosum and oneliner)

2020-08-04 Thread Red S
Zerosum: install via pip. Then do: plugin "beancount_reds_plugins.zerosum.zerosum" "{ # your config here }" I just fixed the README and example. Check them out on GitHub. https://github.com/redstreet/beancount_reds_plugins/blob/master/beancount_reds_plugins/zerosum/README.md Invoking the

Re: Visidata

2020-07-31 Thread Red S
That is indeed a killer feature, as as the diff; and the -f fixed for processing command output. This really fills a hole in terminal processing, thanks for sharing, Martin. Speaking of awesome terminal clients, I hope most folks are familiar with tig (git ncurses client)? If not, let me say I

Re: importers and get going

2020-06-26 Thread Red S
FYI, I have importers for banks and credit cards that support ofx, based on my beancount_reds_importers library. I'm happy to add that to my python package that you're using if there's interest. I wrap it with smart importer, which is very well designed and written, and gets it right well over

Re: OFX Importer for Investment Accounts

2020-06-06 Thread Red S
Also: are you importing the correct file with your maps? Or are you importing the example file that ships with the package by accident? -- You received this message because you are subscribed to the Google Groups "Beancount" group. To unsubscribe from this group and stop receiving emails from

Re: OFX Importer for Investment Accounts

2020-06-06 Thread Red S
Looks like your fund info is not being imported. I'm unable to tell what the problem is without looking at your entire output. If you can anonymize and send the output, I can help. If you want to find the problem by yourself, add this after line 15 here:

Expenses paid with external account

2020-06-10 Thread Red S
An example ledger would help. -- You received this message because you are subscribed to the Google Groups "Beancount" group. To unsubscribe from this group and stop receiving emails from it, send an email to beancount+unsubscr...@googlegroups.com. To view this discussion on the web visit

Re: OFX Importer for Investment Accounts

2020-06-13 Thread Red S
meworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/beancount_reds_importers/vanguard/__init__.py) > Can you copy/paste the output? > > I don't see how it would pick up our fund_info.py in the example file but > I haven't looked fully at the code. > >From the f

Re: OFX Importer for Investment Accounts

2020-06-14 Thread Red S
I've added: 1) more specific error checking. 2) A Vanguard test case in the examples directory This might help you get up and running. To try it out: *pip install --upgrade beancount-reds-importers* On Saturday, June 13, 2020 at 2:46:08 AM UTC-7, Red S wrote: > > I can't see anything

Re: OFX Importer for Investment Accounts

2020-06-14 Thread Red S
at 3:53:21 AM UTC-7, Jonathan Goldman wrote: > > Thanks for the update. Now everything worked fine! Extraction ran > perfectly. > > On Sun, Jun 14, 2020 at 8:47 PM Red S > > wrote: > >> I've added: >> 1) more specific error checking. >> 2) A Va

Re: FIFO mode for Stock Sell

2020-07-27 Thread Red S
You might find it much faster to do a quick search in the docs, which are very well written and have a great UI. Eg: https://beancount.github.io/docs/search.html?q=Fifo -- You received this message because you are subscribed to the Google Groups "Beancount" group. To unsubscribe from this

Re: bean-query get last balance assertion

2023-08-31 Thread Red S
there! On Monday, August 28, 2023 at 9:17:44 PM UTC-4 Red S wrote: Actually, I’d been wanting this for a long time, so I just wrote it up. It’s here <https://github.com/redstreet/beancount_reds_importers>. Install via pip: pip3 install beancount-reds-importers, and then run bean-download

Re: Portfolio Returns in Fava (based on beangrow)

2023-08-31 Thread Red S
This is more of a beangrow question, but is there a calculation of IRR or annualized yield we can surface? As far as I understand it, the "Yield" that is shown in the overview is simply (gain / investment amount), which doesn't account for time invested. Would it be possible to surface an IRR

Re: Per-asset-class asset net worth split over time

2023-09-01 Thread Red S
You probably know this already, but a query similar to this will give you the market value for a single point in time: SELECT root(account, 3), convert(sum(position), "EUR", 2019-12-31) where date <= 2019-12-31 and account ~ "^Assets:Invest" You might need slightly different queries for your

Re: Reconciling credit card statements

2023-09-09 Thread Red S
On Sunday, May 8, 2016 at 9:01:03 PM UTC-7 xen…@gmail.com wrote: *The problem is that postings are inserted before the statement end in the next billing cycle (because of random delays in the charge processing systems) so the balance assertion can't be against any given date.* Necroing this

Re: Issue #422: Allow importers to specify formatting of postings (blais/beancount)

2023-09-21 Thread Red S
May not be what you’re looking for, but I find autobean-format to excel at at this. It’s now a part of my importer scripts, and is also a part of my editor. Here’s everything except precision: bean-extract | autobean-format - --indent " "

Re: New, small utility: find out how recently each account was updated

2023-10-16 Thread Red S
o you use another version of bean-query? > > On Tuesday, August 29, 2023 at 7:39:21 AM UTC+3 Red S wrote: > >> It is helpful to know what accounts you haven’t updated in a while in >> your journal. bean-download is a downloader >> <https://reds-rants.netlify.a

Re: Portfolio Returns in Fava (based on beangrow)

2023-08-14 Thread Red S
Same here: this is the one important missing piece I've wanted to add to Fava Investor for a while. Very glad to see it here, thank you Andreas! Couple of questions: is it possible to supply and display multiple configs? Is it easy to display custom charts? On Saturday, August 12, 2023 at

Re: bean-query get last balance assertion

2023-08-26 Thread Red S
PM UTC-7 Tim Legg wrote: > Ah, I was hoping to find a way to do it through bean-query when I'm on my > hp stream which struggles with fava sometimes. But this works, thanks! > > On Thursday, August 24, 2023 at 5:59:33 PM UTC-4 Red S wrote: > >> There is also a "copy bala

Re: bean-query get last balance assertion

2023-08-24 Thread Red S
at 2:57:56 PM UTC-7 Red S wrote: > I don't know if there's a way to get it through bean-query. If you use > Fava, it does precisely this in the feature below. > > Up-to-date indicators > > Fava offers colored indicators that can help you keep your accounts > up-to-date.

Re: bean-query get last balance assertion

2023-08-24 Thread Red S
I don't know if there's a way to get it through bean-query. If you use Fava, it does precisely this in the feature below. Up-to-date indicators Fava offers colored indicators that can help you keep your accounts up-to-date. They are shown next to accounts that have the metadata

Re: bean-query get last balance assertion

2023-08-28 Thread Red S
e file <https://github.com/redstreet/beancount_reds_importers/blob/main/beancount_reds_importers/util/needs_update.py> and run it, though I’m not sure if I’ll support that in the future. I'll write more about it in a separate post soon. ​ On Saturday, August 26, 2023 at 7:05:46 PM UTC-7

New, small utility: find out how recently each account was updated

2023-08-28 Thread Red S
bean-download is a downloader that ships with beancount-reds-importers

New, small utility: find out how recently each account was updated

2023-08-28 Thread Red S
It is helpful to know what accounts you haven’t updated in a while in your journal. bean-download is a downloader that ships with beancount-reds-importers . It now has a

Re: Handling File Paths for Beancount Document Directives Across Different Devices

2023-08-21 Thread Red S
Welcome! Might I suggest you're overthinking it? Symlinks would be fine. On Sunday, August 20, 2023 at 10:31:10 PM UTC-7 kdd39...@gmail.com wrote: > I’m relatively new to Beancount and I’m working on setting up my ledgers. > I’ve encountered an issue related to document directives when dealing

Re: Questions on cost tracking

2023-08-21 Thread Red S
Your example doesn't involve transferring. You're buying a brand new lot of 9 units (short) in A, and buying a brand new lot of 9 units (long) in B. Specify the lot to transfer. Use `balances` inside bean-query to confirm. On Tuesday, August 15, 2023 at 5:35:44 PM UTC-7 erical...@gmail.com

Re: US taxes in python and beancount

2022-04-20 Thread Red S
t) and LT vs . ST would > be interesting to see how you've approached. > > On Monday, April 4, 2022 at 9:49:06 PM UTC-5 Red S wrote: > >> Just wanted to share, for users in the US: >> >> I've used this python-taxes code >> <https://github.com/davidcmoore/python

Re: ANN: PTA wiki

2022-04-18 Thread Red S
> > > Question for you: there are several posts and FAQs that appear in this > > mailing list that would be good candidates for the wiki. Some are > > specific to beancount (though they may apply to other PTA software) > > while others aren't. An example of the former is how to write a > >

Re: US taxes in python and beancount

2022-04-23 Thread Red S
PS: my code is also linked to from the article below. Hope it helps. On Saturday, April 23, 2022 at 6:10:57 PM UTC-7 Red S wrote: > Here is the write-up. > <https://reds-rants.netlify.app/personal-finance/computing-taxes-with-beancount/> > > I hope this is useful. Con

Re: US taxes in python and beancount

2022-04-23 Thread Red S
. Feel free to leave questions and comments on that page (github account required), or post here in this thread. On Wednesday, April 20, 2022 at 12:41:28 AM UTC-7 Red S wrote: > Great questions. It's all fundamentally very straightforward, but there > are plenty of ideas and gotchas that wou

  1   2   3   >