├── .bowerrc ├── .eslintignore ├── .eslintrc.json ├── .gitignore ├── .travis.yml ├── CONTRIBUTING.md ├── DEVELOPING.md ├── LICENSE ├── MAINTAINERS.md ├── README-ja.md ├── README.md ├── app ├── data │ ├── NASDAQ_mapping.txt │ └── NYSE_mapping.txt ├── jobs │ └── update.js ├── models │ └── error.js ├── routes.js ├── services │ ├── alphaVantage.js │ ├── discovery.js │ ├── stockService.js │ └── stockUpdate.js └── util │ ├── cloudantDb.js │ └── utils.js ├── bower.json ├── config.js ├── doc └── source │ └── images │ ├── CloudantCreds.png │ ├── DiscoCreds.png │ ├── SampleBottom.png │ ├── SampleTop.png │ ├── architecture.png │ ├── toolchain-pipeline.png │ └── useCollectionAPI.png ├── env.sample ├── manifest.yml ├── package.json ├── public ├── css │ └── style.css ├── index.html └── js │ ├── app.js │ ├── appRoutes.js │ ├── charts.js │ ├── controllers │ └── MainCtrl.js │ ├── main.js │ └── services │ └── StockService.js └── server.js /.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "public/libs" 3 | } -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | public/libs 2 | -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-stock-advisor/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | .env 3 | public/libs 4 | node_modules 5 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-stock-advisor/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-stock-advisor/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /DEVELOPING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-stock-advisor/HEAD/DEVELOPING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-stock-advisor/HEAD/LICENSE -------------------------------------------------------------------------------- /MAINTAINERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-stock-advisor/HEAD/MAINTAINERS.md -------------------------------------------------------------------------------- /README-ja.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-stock-advisor/HEAD/README-ja.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-stock-advisor/HEAD/README.md -------------------------------------------------------------------------------- /app/data/NASDAQ_mapping.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-stock-advisor/HEAD/app/data/NASDAQ_mapping.txt -------------------------------------------------------------------------------- /app/data/NYSE_mapping.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-stock-advisor/HEAD/app/data/NYSE_mapping.txt -------------------------------------------------------------------------------- /app/jobs/update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-stock-advisor/HEAD/app/jobs/update.js -------------------------------------------------------------------------------- /app/models/error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-stock-advisor/HEAD/app/models/error.js -------------------------------------------------------------------------------- /app/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-stock-advisor/HEAD/app/routes.js -------------------------------------------------------------------------------- /app/services/alphaVantage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-stock-advisor/HEAD/app/services/alphaVantage.js -------------------------------------------------------------------------------- /app/services/discovery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-stock-advisor/HEAD/app/services/discovery.js -------------------------------------------------------------------------------- /app/services/stockService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-stock-advisor/HEAD/app/services/stockService.js -------------------------------------------------------------------------------- /app/services/stockUpdate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-stock-advisor/HEAD/app/services/stockUpdate.js -------------------------------------------------------------------------------- /app/util/cloudantDb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-stock-advisor/HEAD/app/util/cloudantDb.js -------------------------------------------------------------------------------- /app/util/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-stock-advisor/HEAD/app/util/utils.js -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-stock-advisor/HEAD/bower.json -------------------------------------------------------------------------------- /config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-stock-advisor/HEAD/config.js -------------------------------------------------------------------------------- /doc/source/images/CloudantCreds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-stock-advisor/HEAD/doc/source/images/CloudantCreds.png -------------------------------------------------------------------------------- /doc/source/images/DiscoCreds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-stock-advisor/HEAD/doc/source/images/DiscoCreds.png -------------------------------------------------------------------------------- /doc/source/images/SampleBottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-stock-advisor/HEAD/doc/source/images/SampleBottom.png -------------------------------------------------------------------------------- /doc/source/images/SampleTop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-stock-advisor/HEAD/doc/source/images/SampleTop.png -------------------------------------------------------------------------------- /doc/source/images/architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-stock-advisor/HEAD/doc/source/images/architecture.png -------------------------------------------------------------------------------- /doc/source/images/toolchain-pipeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-stock-advisor/HEAD/doc/source/images/toolchain-pipeline.png -------------------------------------------------------------------------------- /doc/source/images/useCollectionAPI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-stock-advisor/HEAD/doc/source/images/useCollectionAPI.png -------------------------------------------------------------------------------- /env.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-stock-advisor/HEAD/env.sample -------------------------------------------------------------------------------- /manifest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-stock-advisor/HEAD/manifest.yml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-stock-advisor/HEAD/package.json -------------------------------------------------------------------------------- /public/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-stock-advisor/HEAD/public/css/style.css -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-stock-advisor/HEAD/public/index.html -------------------------------------------------------------------------------- /public/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-stock-advisor/HEAD/public/js/app.js -------------------------------------------------------------------------------- /public/js/appRoutes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-stock-advisor/HEAD/public/js/appRoutes.js -------------------------------------------------------------------------------- /public/js/charts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-stock-advisor/HEAD/public/js/charts.js -------------------------------------------------------------------------------- /public/js/controllers/MainCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-stock-advisor/HEAD/public/js/controllers/MainCtrl.js -------------------------------------------------------------------------------- /public/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-stock-advisor/HEAD/public/js/main.js -------------------------------------------------------------------------------- /public/js/services/StockService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-stock-advisor/HEAD/public/js/services/StockService.js -------------------------------------------------------------------------------- /server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-stock-advisor/HEAD/server.js --------------------------------------------------------------------------------