All Projects → westonplatter → simple_portfolio

westonplatter / simple_portfolio

Licence: MIT license
Export trades from Robinhood and run basic reporting on portfolio performance

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to simple portfolio

okama
Investment portfolio and stocks analyzing tools for Python with free historical data
Stars: ✭ 87 (+411.76%)
Mutual labels:  portfolio, finance
FinanceKit
FinanceKit is a Framework for iOS and Mac to build apps working with financial data, like money, currencies, stocks, portfolio, transactions and other concepts.
Stars: ✭ 15 (-11.76%)
Mutual labels:  portfolio, finance
pytr
Use TradeRepublic in terminal and mass download all documents
Stars: ✭ 141 (+729.41%)
Mutual labels:  portfolio, finance
AIPortfolio
Use AI to generate a optimized stock portfolio
Stars: ✭ 28 (+64.71%)
Mutual labels:  portfolio, finance
Python Trading Robot
A trading robot, that can submit basic orders in an automated fashion using the TD API.
Stars: ✭ 235 (+1282.35%)
Mutual labels:  portfolio, finance
lakshmi
Investing library and command-line interface inspired by the Bogleheads philosophy
Stars: ✭ 107 (+529.41%)
Mutual labels:  portfolio, finance
crypto-portfolio
A CLI Cyrptocurrency Portfolio Tracker
Stars: ✭ 12 (-29.41%)
Mutual labels:  portfolio, finance
Node Finance
Module for portfolio optimization, prices and options
Stars: ✭ 101 (+494.12%)
Mutual labels:  portfolio, finance
Alpha Mind
quantitative security portfolio analysis. The analysis pipeline including data storage abstraction, alpha calculation, ML based alpha combining and portfolio calculation.
Stars: ✭ 171 (+905.88%)
Mutual labels:  portfolio, finance
robinhood-python
Robinhood module in Python
Stars: ✭ 103 (+505.88%)
Mutual labels:  robinhood-api, robinhood-python
SBTi-finance-tool
This toolkit helps companies and financial institutions to assess the temperature alignment of current targets, commitments, and investment and lending portfolios, and to use this information to develop targets for official validation by the SBTi. See the wiki for a change log.
Stars: ✭ 39 (+129.41%)
Mutual labels:  portfolio, finance
gatsby-theme-portfolio-minimal
A Gatsby Theme to create modern one-page portfolios with a clean yet expressive design.
Stars: ✭ 51 (+200%)
Mutual labels:  portfolio
kimlimjustin.com
My personal website
Stars: ✭ 16 (-5.88%)
Mutual labels:  portfolio
MLiFC
Course Material for the machine learning in financial context bootcamp
Stars: ✭ 102 (+500%)
Mutual labels:  finance
knut
knut is an efficient plain text accounting tool with support for multiple currencies and valuation.
Stars: ✭ 40 (+135.29%)
Mutual labels:  finance
CryptoCurrency
Page to keep track of value & profits of a portfolio of cryptocurrency (based on Coinmarketcap, Bitfinex and Binance)
Stars: ✭ 27 (+58.82%)
Mutual labels:  portfolio
portfolio-optimizer
A library for portfolio optimization algorithms with python interface.
Stars: ✭ 19 (+11.76%)
Mutual labels:  portfolio
priceR
Economics and Pricing in R
Stars: ✭ 32 (+88.24%)
Mutual labels:  finance
timer-hugo
Timer is a personal portfolio theme powered by Hugo. It also can be use as a landing page theme.
Stars: ✭ 123 (+623.53%)
Mutual labels:  portfolio
ledgeraccounting
Simple web-based accounting and budgeting tool built upon the popular accounting software, hledger
Stars: ✭ 28 (+64.71%)
Mutual labels:  finance

simple_metrics for Robinhood

Simple portfolio metrics applied to your Robinhood portfolio.

example 1

from simple_metrics import fetch, export

account = {
        'username': 'my username',
        'password': 'my password'}

#
# export stock trades to -> stock_orders.csv
#
stock_orders = fetch.stock_trades(account, {})
export.stock_orders(stock_orders, {})

#
# export -> option_orders.csv
#
option_orders = fetch.option_orders(account, {})
export.option_orders(option_orders, {})

example 2

Run the calculate_options.py script in the examples folder, it generates total and daily returns, as well as fetching greeks for open option positions.

Options Example

install

pip install simple_metrics

package api

Functionality includes:

  • Fetch Stock order history
  • Fetch Option order history
  • Export Stock order history
  • Export Option order history

local development

Git clone this repo and run,

pip install . --process-dependency-links --editable

Adding --editable allows you to pull in code changes without having to run pip install.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].