Giter VIP home page Giter VIP logo

bankroll's People

Contributors

joshvera avatar jspahrsummers avatar kastiglione avatar shadoflamex avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

bankroll's Issues

Batch live data fetching

APIs like IB's will likely be faster to fetch data for a bunch of contracts at once, as opposed to one-by-one.

IB options' cost basis getting lost

Options aren't printing their cost basis even when the underlying is. Inspection of debug logging shows that IB is correctly returning an average price for the options, so not sure what's going on.

Make ibapi and ib_insync optional

This will require carefully conditionalizing all imports of ib_insync, as even just touching it will check that ibapi is installed.

This would make bankroll less useful today, but once we have alternative data sources (e.g., #32), it could make getting started much easier.

"Downloading report" spinner only spins with --verbose

e.g., with --verbose enabled:

Downloading Activity report |INFO:ib_insync.flexreport:still working...
Downloading Activity report /INFO:ib_insync.flexreport:still working...
Downloading Activity report -INFO:ib_insync.flexreport:still working...
Downloading Activity report \INFO:ib_insync.flexreport:still working...
Downloading Activity report |INFO:ib_insync.flexreport:still working...
Downloading Activity report /INFO:ib_insync.flexreport:still working...
Downloading Activity report -INFO:ib_insync.flexreport:still working...
Downloading Activity report \INFO:ib_insync.flexreport:still working...
Downloading Activity report |INFO:ib_insync.flexreport:still working...
Downloading Activity report /INFO:ib_insync.flexreport:still working...
Downloading Activity report -INFO:ib_insync.flexreport:still working...
Downloading Activity report \INFO:ib_insync.flexreport:still working...
Downloading Activity report |INFO:ib_insync.flexreport:still working...
Downloading Activity report /INFO:ib_insync.flexreport:still working...
Downloading Activity report -INFO:ib_insync.flexreport:still working...
Downloading Activity report \INFO:ib_insync.flexreport:still working...
Downloading Activity report |INFO:ib_insync.flexreport:still working...
Downloading Activity report /INFO:ib_insync.flexreport:still working...
Downloading Activity report -INFO:ib_insync.flexreport:still working...
Downloading Activity report \INFO:ib_insync.flexreport:still working...
Downloading Activity report |INFO:ib_insync.flexreport:still working...
Downloading Activity report /INFO:ib_insync.flexreport:still working...

If it's not enabled this way, the spinner hangs for quite a while.

Figure out underlying for futures contracts

e.g., ES might say something like SPX, while single-stock futures will naturally use the underlying stock. This may be relevant for calculating the realizedBasis of a security.

UnboundLocalError on clean install

Without any settings established or command-line arguments, this error occurs:

> python -m bankroll positions
  File "bankroll\brokers\ibkr.py", line 842, in fromSettings
    trades=trades,
UnboundLocalError: local variable 'trades' referenced before assignment

Calculate lots from transaction log

There should be enough information in a (complete) transaction log to reconstruct which lots were bought and sold when, which may be useful for tax or other purposes.

Automatically add CLI settings from defined Settings classes

If Settings enums could be defined with enough context to present meaningful CLI information, we could use Settings.__subclasses__() to get rid of the manual argument generation in __main__.py, which would simplify the code and make extension easier.

Generative tests for data received from IB API

IB's Python API is not well-typed or well-documented, so there will likely be tons of corner cases in our parsing code. We should have a set of fuzz tests that yield complete crap, just to make sure that our parsing will handle whatever gets thrown at it. (We can use hypothesis for this, like our property-based tests.)

EV calculations somehow?

It will be hard to calculate a "true" Expected Value because we don't know how often a particular strategy "should" win (simulations will not be accurate if some strategies are premised on news events or market psychology), but perhaps we could draw conclusions about how often a particular shape of strategy has worked for the user, then feed in the win/lose amounts to determine a sort of historical EV.

Record dividend payments

Not just trades. This should probably involve refactoring Trade into a hierarchy of classes, and getting rid of TradeFlags entirely.

Standardized, lazy brokerage data loading

It'd be nice to populate some kind of "broker loader" with the right settings to find whatever data it needs (an IB connection, for example, or file paths for other brokers), and then allow consumers to lazily consume information like positions, activity, etc.—effectively standardizing the read interface for all broker modules.

This might also decouple DataAggregator from some of the implementation details, which would be nice.

Plugin architecture?

I was thinking that it might be useful to support a concept of plugins, in the form of (at least) additional verbs for the command-line, similarly to other CLI tools.

A motivating example could be: a separate project which adds a bankroll command for offline storage and syncing of activity logs.

@dataclass all the things

We've implemented a bunch of really basic operations like __repr__ and __eq__ in our models. Let's use the @dataclass decorator as much as possible instead.

Support cash positions

Knowing how much "spare" cash is lying about would be handy for rebalancing, for example.

IB GBP positions multiplied incorrectly

Securities denominated in GBP (pound sterling) are often actually denominated in GBX (pence sterling), and the reporting of this through IB's API is unclear. Currently we're showing GBX values as GBP, grossly overinflating the actual value.

Country exposure

Calculate total exposure to countries (or maybe regions, generally) based on positions and cash held.

Split up project into separate components + responsibilities

In trying to build another project which wants to use pieces of bankroll, I'm finding the current structure kind of unwieldy, and don't want to risk this becoming a kitchen sink. At bare minimum, we should probably separate the model from the brokerage support from the analysis and tools.

Something like this, although not necessarily as finely-sliced:

component graph

digraph {
  rankdir = BT;
  { rank = min; model; }
  { rank = same; ibkr; schwab; fidelity; vanguard; }
  { rank = same; analysis, "plugin framework" }
  { rank = max; cli, notebooks }
  ibkr, schwab, fidelity, vanguard -> model
  ibkr, schwab, fidelity, vanguard -> "plugin framework" [style=dashed]
  analysis -> model
  notebooks -> analysis, "plugin framework"
  cli -> analysis, "plugin framework"
}

ValueError(f"Unexpected type of activity: {activity}")

I get this error when attempting to run bankroll (even simple --help) after install in a fresh conda virtual environment (python 3.6).

$ bankroll --help
Traceback (most recent call last):
File "c:\users\lee\anaconda3\envs\foliolyze\lib\runpy.py", line 193, in run_module_as_main
"main", mod_spec)
File "c:\users\lee\anaconda3\envs\foliolyze\lib\runpy.py", line 85, in run_code
exec(code, run_globals)
File "C:\Users\lee\Anaconda3\envs\foliolyze\Scripts\bankroll.exe_main
.py", line 5, in
File "c:\users\lee\anaconda3\envs\foliolyze\lib\site-packages\bankroll\interface_init
.py", line 1, in
from bankroll.analysis import *
File "c:\users\lee\anaconda3\envs\foliolyze\lib\site-packages\bankroll\analysis_init_.py", line 1, in
from .analysis import (
File "c:\users\lee\anaconda3\envs\foliolyze\lib\site-packages\bankroll\analysis\analysis.py", line 88
raise ValueError(f"Unexpected type of activity: {activity}")

Trade journal support

I think I've come up with a structured format that should work as a reusable trade journal, which could conveniently be joined/informed by bankroll activity logs. Assigning to myself to work out the details.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.