All Projects → GoPlan-Finance → GoPlan-app

GoPlan-Finance / GoPlan-app

Licence: GPL-3.0 License
An intuitive portfolio mangaer !

Programming Languages

Vue
7211 projects
typescript
32286 projects
javascript
184084 projects - #8 most used programming language
Dockerfile
14818 projects
shell
77523 projects
HTML
75241 projects
CSS
56736 projects

Projects that are alternatives of or similar to GoPlan-app

stock-market-scraper
Scraps historical stock market data from Yahoo Finance (https://finance.yahoo.com/)
Stars: ✭ 110 (+307.41%)
Mutual labels:  finance, stock-market, stock-data, stock-analysis
investbook
Оценка эффективности инвестиций с учетом комиссий, налогов (удержанных и ожидающихся), дивидендов и купонов.
Stars: ✭ 83 (+207.41%)
Mutual labels:  finance, stock-market, portfolio-management
Beibo
🤖 Predict the stock market with AI 用AI预测股票市场
Stars: ✭ 46 (+70.37%)
Mutual labels:  finance, stock-market, portfolio-management
Pyex
Python interface to IEX and IEX cloud APIs
Stars: ✭ 311 (+1051.85%)
Mutual labels:  finance, stock-market, stock-data
robinhood.tools
📈🤑💰 Advanced trading tools and resources for Robinhood Web.
Stars: ✭ 27 (+0%)
Mutual labels:  stock-market, stock-data, stock-analysis
stocktwits-sentiment
Stocktwits market sentiment analysis in Python with Keras and TensorFlow.
Stars: ✭ 23 (-14.81%)
Mutual labels:  stock-market, stock-data, stock-analysis
Yahooquery
Python wrapper for an unofficial Yahoo Finance API
Stars: ✭ 288 (+966.67%)
Mutual labels:  finance, stock-market, stock-data
qtrn
⚠️ Deprecated, see https://github.com/piquette/qtrn ⚠️
Stars: ✭ 20 (-25.93%)
Mutual labels:  finance, stock-market, stock-data
Intrinio Realtime Node Sdk
Intrinio NodeJS SDK for Real-Time Stock & Crypto Prices
Stars: ✭ 30 (+11.11%)
Mutual labels:  finance, stock-market, stock-data
Financedatabase
This is a database of 180.000+ symbols containing Equities, ETFs, Funds, Indices, Futures, Options, Currencies, Cryptocurrencies and Money Markets.
Stars: ✭ 554 (+1951.85%)
Mutual labels:  finance, stock-market, stock-data
Finance Go
📊 Financial markets data library implemented in go.
Stars: ✭ 392 (+1351.85%)
Mutual labels:  finance, stock-market, stock-data
Tushare
TuShare is a utility for crawling historical data of China stocks
Stars: ✭ 11,288 (+41707.41%)
Mutual labels:  finance, stock-market, stock-data
Algobot
A C++ stock market algorithmic trading bot
Stars: ✭ 78 (+188.89%)
Mutual labels:  finance, stock-market, stock-data
pyEX
Python interface to IEX and IEX cloud APIs
Stars: ✭ 407 (+1407.41%)
Mutual labels:  finance, stock-market, stock-data
alpha-vantage-cookbook
JavaScript examples to help you with accessing market data from https://www.alphavantage.co/
Stars: ✭ 97 (+259.26%)
Mutual labels:  stock-market, stock-analysis
TerminalStocks
Pure terminal stock ticker for Windows.
Stars: ✭ 88 (+225.93%)
Mutual labels:  stock-market, stock-data
financial-asset-comparison-tool
R Shiny app to compare the relative performance of cryptos and equities.
Stars: ✭ 97 (+259.26%)
Mutual labels:  stock-market, stock-analysis
open-climate-investing
Application and data for analyzing and structuring portfolios for climate investing.
Stars: ✭ 20 (-25.93%)
Mutual labels:  finance, stock-market
intrinio-realtime-python-sdk
Intrinio Python SDK for Real-Time Stock Prices
Stars: ✭ 79 (+192.59%)
Mutual labels:  stock-market, stock-data
IEX CPP API
Unofficial C++ Lib for the IEXtrading API
Stars: ✭ 34 (+25.93%)
Mutual labels:  finance, stock-data

Markdownify
GoPlan Finance

An intuitive portfolio manager!

Discord

Star us on GitHub — it helps!

RoadmapHow To UseNotes & disclamersLicense

screenshot

Roadmap

We seek to create a financial planning platform for the general public. Allocation dashboards, investment management tools, portfolio allocation, optimization, risk assessment, simulation, and forecasting. The tools of quantitative analysts and financial planners in hands of the regular investor and general public.

Feel free to submit a PR if you want to add items to the Roadmap!

Version 1.0 (MVP)

  • LandingPage #9
  • Login #2
  • Onboarding #25
  • Search for securities
  • Watchlist #8
    • Actions: Add/Delete
  • Dashboard
    • Total value, gains, percentage gains
    • Performance chart
    • Asset Type overview (Stock, bonds, cash...)
  • Transactions #7
    • Show all buy/sell/split transactions
    • Actions: Add/Edit/Delete
  • Holdings
    • shares, purchase date, average price, initial value, current price, current value, increase value, increase percentage, percentage of portfolio
    • actions: Buy/Sell/View
  • Stock Detail Page
  • Fund Detail Page
  • Settings
    • Default Currency
    • Download/Backup personal Data
    • Delete Account
  • Dockerize the application, and simplify initial setup
  • CSV import/export of transactions
  • Multiple Accounts #6
    • Show all accounts by this user
    • Actions: Add/Edit/Delete

Planned Features

  • Non-financial/custom assets #3
  • Allocations
    • Type (stock, bond, cash ...)
    • Industry (Tech, Consumer goods ...)
    • Region (US, Europe, Asia ...)
  • Analytics
    • Volatility
    • Diversity #51
    • Performance
  • Notifications #47
  • Stock bundles #45
  • Compare Assets #44
  • Social features #46
    • Comments for financial assets
    • Share watchlists/bundles
    • Follow watchlists/bundles
  • Multiple portfolios
  • Customizable widgets
  • Market research
  • Advanced analytics
  • Integrations with brokers

How To Use

git clone https://github.com/GoPlan-Finance/GoPlan-app.git
cd goplan-app

Prerequisites

  • Node 14 or newer
  • MongoDB version 3.6

Install MongoDB

If you haven't already installed MongoDB, head over to https://docs.mongodb.com/manual/installation/ for instructions

Build project

This project uses yarn workspaces. So running the following command will install the dependencies for all workspaces (backend, frontend and common).

yarn install

Run the backend

  • Copy backend/config/config.defaults.ts to backend/config/config.ts and Edit the configuration file:
    • Database URL:
    • Master Key: Can be any arbitrary string
    • Data provider(s) API Keys: We currently only support https://eodhistoricaldata.com, further API providers are planned in the future.
cd backend
yarn run backend-serve

Run the Frontend

cd frontend
yarn run frontend-serve

visit https://local.goplan.finance:3000

Testing and debugging

Backend

cd backend
yarn install

# This will rebuild the backend, and restart it when you make change in the code
yarn run watch-debug

If you find anoying watch-debug restarts the server on every changes. You can do this

Open a separate terminal and run (and leave runnning) :

yarn run watch-ts

When you are ready to test your changes:

yarn run serve-debug

(Optionally) Parse Dashboard

Parse Dashboard is a standalone dashboard for managing the GoPlan Parse Server. (https://github.com/parse-community/parse-dashboard)

install dashboard locally

npm install -g parse-dashboard

Launch dashboard

parse-dashboard --dev --appId goplan-finance --masterKey yourMasterKey --serverURL "http://localhost:1337/parse"

How to contribute

Notes

A note on Warranty and Limitation of Liability.

We are not in any way professional traders, financials experts or financial advisors. This is an open source project created by passionate developers for free.

Considering that this application is related to the financial sector and stock market, there is a special attention that was drawn toward ensuring accuracy of the information displayed and how the handling of confidential information is made.

That said, the good faith and commitment of the team in this project shall not be in any case confused for a warranty of any sort.

Please refer to section 16 and 17 of the LICENSE for any details

A note on Security and data privacy

This project handle private financial informations, our goal is to protect to a maximum each users privacy and confidential informations.

That said, once again, the good faith and commitment of the team in this project shall not be in any case confused for a warranty of any sort.

The information exchanged between the client and server are on a need to know basis. That means, that we will use client-sie encryption on all the data we can in order to ensure that even in a case of a security issue, your personal data is protected.

Examples

Type of data Client side encryption Why?
# of shares bougth or sold Yes 🔐 No need to know for the server
Date of purchace order No Server need to filter and sort orders
Ticker symbol of order No Server need to process time-series and pre-fetch API data
Name of your private Watchlists Yes 🔐 No need to know
Name of your shared Watchlists No Name need to be stored in text to allow other users to see it
Name of your Accounts/Assets Yes 🔐 No need to know

A note on cryptography and data protection

This project has not been, for now, reviewed by an independent security firm. We are open to a partnership.

License

GPL v3

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].