Erik Hetzner

Results 179 comments of Erik Hetzner

Hi @emin-ec Honestly, I'm not sure the logic is great. There is no stored information, but probably the logic should be improved. The intended behavior should be that l-a will...

`days` is an iterator that gets increased as the code requests more and more days of data until it finds something it's aware of. At least, that is how it...

Probably we need to add something here: https://github.com/egh/ledger-autosync/blob/master/ledgerautosync/converter.py#L487 To be honest that kind of transaction is beyond me. What output would you expect to see for this kind of transaction?

Thanks for the example! Is the only information about the put available in the `SECINFO` part? Is there only the one sell transaction in the OFX file? I'm not sure...

Hm, this seems like an interesting case. l-a looks up the ticker symbol to use as the commodity, using the info provided in the `SECLIST` section of the ofx file....

I think we just need to escape `"` here as `\"`, the ledger expression parser seems like its blowing up on this.

Absolutely, that makes a lot of sense!

I myself use a transfer account to do that, but I think it makes sense to support that use case.

Thanks @kevinjfoley ! This seems a lot simpler. The global nature of the config doesn't bother me in a CLI app like this. In fact it would probably make it...

Seems completely reasonable. Another option would be to bundle up everything in a config object and pass it along to the methods called, so that the method signature would not...