├── README.md ├── client ├── .gitignore ├── package-lock.json ├── package.json ├── public │ ├── favicon.ico │ ├── index.html │ ├── logo192.png │ ├── logo512.png │ ├── manifest.json │ └── robots.txt └── src │ ├── App.css │ ├── App.js │ ├── App.test.js │ ├── components │ ├── portfolioComponents │ │ ├── PortfolioSharesItem.js │ │ ├── PortfolioSharesList.css │ │ └── PortfolioSharesList.js │ ├── sharedComponents │ │ ├── ChartHoldingByCompany.css │ │ ├── ChartHoldingPriceHistroy.js │ │ ├── ChartHoldingsByCompany.js │ │ ├── ColumnChartPortfolioPerformance.js │ │ ├── Footer.css │ │ ├── Footer.js │ │ ├── Header.js │ │ ├── NavBar.css │ │ ├── NavBar.js │ │ ├── SideBar.js │ │ ├── TopBar.js │ │ └── topbar.css │ └── stockMarketComponents │ │ ├── FavouriteStock.js │ │ ├── StockItemDetails.js │ │ ├── StockMarket.css │ │ ├── StockMarketItem.js │ │ ├── StockMarketList.js │ │ ├── StockMarketSearch.js │ │ └── fetchedData.js │ ├── containers │ ├── MasterContainer.js │ ├── PortfolioContainer.css │ ├── PortfolioContainer.js │ ├── StockMarketContainer.css │ ├── StockMarketContainer.js │ └── master.css │ ├── index.js │ ├── reportWebVitals.js │ ├── services │ ├── ApiServices.js │ └── PortfolioServices.js │ └── setupTests.js ├── images ├── AddMore.png ├── Delete.png ├── DiscoverMain.png ├── PortfolioHomePage.png ├── Remove.png ├── Search.png └── ShareHistory.png └── server ├── .gitignore ├── db └── seeds.js ├── helpers └── create_router.js ├── package-lock.json ├── package.json └── server.js /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewmcfarlane/Shares-Portfolio-Tracker/HEAD/README.md -------------------------------------------------------------------------------- /client/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewmcfarlane/Shares-Portfolio-Tracker/HEAD/client/.gitignore -------------------------------------------------------------------------------- /client/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewmcfarlane/Shares-Portfolio-Tracker/HEAD/client/package-lock.json -------------------------------------------------------------------------------- /client/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewmcfarlane/Shares-Portfolio-Tracker/HEAD/client/package.json -------------------------------------------------------------------------------- /client/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewmcfarlane/Shares-Portfolio-Tracker/HEAD/client/public/favicon.ico -------------------------------------------------------------------------------- /client/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewmcfarlane/Shares-Portfolio-Tracker/HEAD/client/public/index.html -------------------------------------------------------------------------------- /client/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewmcfarlane/Shares-Portfolio-Tracker/HEAD/client/public/logo192.png -------------------------------------------------------------------------------- /client/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewmcfarlane/Shares-Portfolio-Tracker/HEAD/client/public/logo512.png -------------------------------------------------------------------------------- /client/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewmcfarlane/Shares-Portfolio-Tracker/HEAD/client/public/manifest.json -------------------------------------------------------------------------------- /client/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewmcfarlane/Shares-Portfolio-Tracker/HEAD/client/public/robots.txt -------------------------------------------------------------------------------- /client/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewmcfarlane/Shares-Portfolio-Tracker/HEAD/client/src/App.css -------------------------------------------------------------------------------- /client/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewmcfarlane/Shares-Portfolio-Tracker/HEAD/client/src/App.js -------------------------------------------------------------------------------- /client/src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewmcfarlane/Shares-Portfolio-Tracker/HEAD/client/src/App.test.js -------------------------------------------------------------------------------- /client/src/components/portfolioComponents/PortfolioSharesItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewmcfarlane/Shares-Portfolio-Tracker/HEAD/client/src/components/portfolioComponents/PortfolioSharesItem.js -------------------------------------------------------------------------------- /client/src/components/portfolioComponents/PortfolioSharesList.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewmcfarlane/Shares-Portfolio-Tracker/HEAD/client/src/components/portfolioComponents/PortfolioSharesList.css -------------------------------------------------------------------------------- /client/src/components/portfolioComponents/PortfolioSharesList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewmcfarlane/Shares-Portfolio-Tracker/HEAD/client/src/components/portfolioComponents/PortfolioSharesList.js -------------------------------------------------------------------------------- /client/src/components/sharedComponents/ChartHoldingByCompany.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewmcfarlane/Shares-Portfolio-Tracker/HEAD/client/src/components/sharedComponents/ChartHoldingByCompany.css -------------------------------------------------------------------------------- /client/src/components/sharedComponents/ChartHoldingPriceHistroy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewmcfarlane/Shares-Portfolio-Tracker/HEAD/client/src/components/sharedComponents/ChartHoldingPriceHistroy.js -------------------------------------------------------------------------------- /client/src/components/sharedComponents/ChartHoldingsByCompany.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewmcfarlane/Shares-Portfolio-Tracker/HEAD/client/src/components/sharedComponents/ChartHoldingsByCompany.js -------------------------------------------------------------------------------- /client/src/components/sharedComponents/ColumnChartPortfolioPerformance.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewmcfarlane/Shares-Portfolio-Tracker/HEAD/client/src/components/sharedComponents/ColumnChartPortfolioPerformance.js -------------------------------------------------------------------------------- /client/src/components/sharedComponents/Footer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewmcfarlane/Shares-Portfolio-Tracker/HEAD/client/src/components/sharedComponents/Footer.css -------------------------------------------------------------------------------- /client/src/components/sharedComponents/Footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewmcfarlane/Shares-Portfolio-Tracker/HEAD/client/src/components/sharedComponents/Footer.js -------------------------------------------------------------------------------- /client/src/components/sharedComponents/Header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewmcfarlane/Shares-Portfolio-Tracker/HEAD/client/src/components/sharedComponents/Header.js -------------------------------------------------------------------------------- /client/src/components/sharedComponents/NavBar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewmcfarlane/Shares-Portfolio-Tracker/HEAD/client/src/components/sharedComponents/NavBar.css -------------------------------------------------------------------------------- /client/src/components/sharedComponents/NavBar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewmcfarlane/Shares-Portfolio-Tracker/HEAD/client/src/components/sharedComponents/NavBar.js -------------------------------------------------------------------------------- /client/src/components/sharedComponents/SideBar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewmcfarlane/Shares-Portfolio-Tracker/HEAD/client/src/components/sharedComponents/SideBar.js -------------------------------------------------------------------------------- /client/src/components/sharedComponents/TopBar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewmcfarlane/Shares-Portfolio-Tracker/HEAD/client/src/components/sharedComponents/TopBar.js -------------------------------------------------------------------------------- /client/src/components/sharedComponents/topbar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewmcfarlane/Shares-Portfolio-Tracker/HEAD/client/src/components/sharedComponents/topbar.css -------------------------------------------------------------------------------- /client/src/components/stockMarketComponents/FavouriteStock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewmcfarlane/Shares-Portfolio-Tracker/HEAD/client/src/components/stockMarketComponents/FavouriteStock.js -------------------------------------------------------------------------------- /client/src/components/stockMarketComponents/StockItemDetails.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewmcfarlane/Shares-Portfolio-Tracker/HEAD/client/src/components/stockMarketComponents/StockItemDetails.js -------------------------------------------------------------------------------- /client/src/components/stockMarketComponents/StockMarket.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewmcfarlane/Shares-Portfolio-Tracker/HEAD/client/src/components/stockMarketComponents/StockMarket.css -------------------------------------------------------------------------------- /client/src/components/stockMarketComponents/StockMarketItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewmcfarlane/Shares-Portfolio-Tracker/HEAD/client/src/components/stockMarketComponents/StockMarketItem.js -------------------------------------------------------------------------------- /client/src/components/stockMarketComponents/StockMarketList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewmcfarlane/Shares-Portfolio-Tracker/HEAD/client/src/components/stockMarketComponents/StockMarketList.js -------------------------------------------------------------------------------- /client/src/components/stockMarketComponents/StockMarketSearch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewmcfarlane/Shares-Portfolio-Tracker/HEAD/client/src/components/stockMarketComponents/StockMarketSearch.js -------------------------------------------------------------------------------- /client/src/components/stockMarketComponents/fetchedData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewmcfarlane/Shares-Portfolio-Tracker/HEAD/client/src/components/stockMarketComponents/fetchedData.js -------------------------------------------------------------------------------- /client/src/containers/MasterContainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewmcfarlane/Shares-Portfolio-Tracker/HEAD/client/src/containers/MasterContainer.js -------------------------------------------------------------------------------- /client/src/containers/PortfolioContainer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewmcfarlane/Shares-Portfolio-Tracker/HEAD/client/src/containers/PortfolioContainer.css -------------------------------------------------------------------------------- /client/src/containers/PortfolioContainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewmcfarlane/Shares-Portfolio-Tracker/HEAD/client/src/containers/PortfolioContainer.js -------------------------------------------------------------------------------- /client/src/containers/StockMarketContainer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewmcfarlane/Shares-Portfolio-Tracker/HEAD/client/src/containers/StockMarketContainer.css -------------------------------------------------------------------------------- /client/src/containers/StockMarketContainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewmcfarlane/Shares-Portfolio-Tracker/HEAD/client/src/containers/StockMarketContainer.js -------------------------------------------------------------------------------- /client/src/containers/master.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewmcfarlane/Shares-Portfolio-Tracker/HEAD/client/src/containers/master.css -------------------------------------------------------------------------------- /client/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewmcfarlane/Shares-Portfolio-Tracker/HEAD/client/src/index.js -------------------------------------------------------------------------------- /client/src/reportWebVitals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewmcfarlane/Shares-Portfolio-Tracker/HEAD/client/src/reportWebVitals.js -------------------------------------------------------------------------------- /client/src/services/ApiServices.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewmcfarlane/Shares-Portfolio-Tracker/HEAD/client/src/services/ApiServices.js -------------------------------------------------------------------------------- /client/src/services/PortfolioServices.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewmcfarlane/Shares-Portfolio-Tracker/HEAD/client/src/services/PortfolioServices.js -------------------------------------------------------------------------------- /client/src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewmcfarlane/Shares-Portfolio-Tracker/HEAD/client/src/setupTests.js -------------------------------------------------------------------------------- /images/AddMore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewmcfarlane/Shares-Portfolio-Tracker/HEAD/images/AddMore.png -------------------------------------------------------------------------------- /images/Delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewmcfarlane/Shares-Portfolio-Tracker/HEAD/images/Delete.png -------------------------------------------------------------------------------- /images/DiscoverMain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewmcfarlane/Shares-Portfolio-Tracker/HEAD/images/DiscoverMain.png -------------------------------------------------------------------------------- /images/PortfolioHomePage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewmcfarlane/Shares-Portfolio-Tracker/HEAD/images/PortfolioHomePage.png -------------------------------------------------------------------------------- /images/Remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewmcfarlane/Shares-Portfolio-Tracker/HEAD/images/Remove.png -------------------------------------------------------------------------------- /images/Search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewmcfarlane/Shares-Portfolio-Tracker/HEAD/images/Search.png -------------------------------------------------------------------------------- /images/ShareHistory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewmcfarlane/Shares-Portfolio-Tracker/HEAD/images/ShareHistory.png -------------------------------------------------------------------------------- /server/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewmcfarlane/Shares-Portfolio-Tracker/HEAD/server/.gitignore -------------------------------------------------------------------------------- /server/db/seeds.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewmcfarlane/Shares-Portfolio-Tracker/HEAD/server/db/seeds.js -------------------------------------------------------------------------------- /server/helpers/create_router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewmcfarlane/Shares-Portfolio-Tracker/HEAD/server/helpers/create_router.js -------------------------------------------------------------------------------- /server/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewmcfarlane/Shares-Portfolio-Tracker/HEAD/server/package-lock.json -------------------------------------------------------------------------------- /server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewmcfarlane/Shares-Portfolio-Tracker/HEAD/server/package.json -------------------------------------------------------------------------------- /server/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewmcfarlane/Shares-Portfolio-Tracker/HEAD/server/server.js --------------------------------------------------------------------------------