├── README.md ├── cluster.config.js ├── cluster.js ├── data.json.js ├── data ├── AAPL.csv └── AAPL.json ├── images ├── Logic100.PNG └── Logic1200.PNG ├── package.json ├── public ├── aapl.ejs ├── favicon.ico ├── logic.ejs ├── partials │ └── shared │ │ ├── footer.ejs │ │ ├── head.ejs │ │ ├── nav.ejs │ │ └── scripts.ejs ├── scripts │ ├── 0_logic.js │ ├── 1_stock.js │ ├── 2a_cnn.js │ ├── 2b_cnn.js │ └── vendor │ │ ├── gpu-core.min.js │ │ └── tf.js └── styles │ └── style.css └── server ├── api.js ├── cluster.js ├── express.js ├── http.js └── viewcontroller.js /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Financial_Forecasting_with_TensorflowJS/HEAD/README.md -------------------------------------------------------------------------------- /cluster.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Financial_Forecasting_with_TensorflowJS/HEAD/cluster.config.js -------------------------------------------------------------------------------- /cluster.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Financial_Forecasting_with_TensorflowJS/HEAD/cluster.js -------------------------------------------------------------------------------- /data.json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Financial_Forecasting_with_TensorflowJS/HEAD/data.json.js -------------------------------------------------------------------------------- /data/AAPL.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Financial_Forecasting_with_TensorflowJS/HEAD/data/AAPL.csv -------------------------------------------------------------------------------- /data/AAPL.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Financial_Forecasting_with_TensorflowJS/HEAD/data/AAPL.json -------------------------------------------------------------------------------- /images/Logic100.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Financial_Forecasting_with_TensorflowJS/HEAD/images/Logic100.PNG -------------------------------------------------------------------------------- /images/Logic1200.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Financial_Forecasting_with_TensorflowJS/HEAD/images/Logic1200.PNG -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Financial_Forecasting_with_TensorflowJS/HEAD/package.json -------------------------------------------------------------------------------- /public/aapl.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Financial_Forecasting_with_TensorflowJS/HEAD/public/aapl.ejs -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Financial_Forecasting_with_TensorflowJS/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/logic.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Financial_Forecasting_with_TensorflowJS/HEAD/public/logic.ejs -------------------------------------------------------------------------------- /public/partials/shared/footer.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Financial_Forecasting_with_TensorflowJS/HEAD/public/partials/shared/footer.ejs -------------------------------------------------------------------------------- /public/partials/shared/head.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Financial_Forecasting_with_TensorflowJS/HEAD/public/partials/shared/head.ejs -------------------------------------------------------------------------------- /public/partials/shared/nav.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Financial_Forecasting_with_TensorflowJS/HEAD/public/partials/shared/nav.ejs -------------------------------------------------------------------------------- /public/partials/shared/scripts.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Financial_Forecasting_with_TensorflowJS/HEAD/public/partials/shared/scripts.ejs -------------------------------------------------------------------------------- /public/scripts/0_logic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Financial_Forecasting_with_TensorflowJS/HEAD/public/scripts/0_logic.js -------------------------------------------------------------------------------- /public/scripts/1_stock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Financial_Forecasting_with_TensorflowJS/HEAD/public/scripts/1_stock.js -------------------------------------------------------------------------------- /public/scripts/2a_cnn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Financial_Forecasting_with_TensorflowJS/HEAD/public/scripts/2a_cnn.js -------------------------------------------------------------------------------- /public/scripts/2b_cnn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Financial_Forecasting_with_TensorflowJS/HEAD/public/scripts/2b_cnn.js -------------------------------------------------------------------------------- /public/scripts/vendor/gpu-core.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Financial_Forecasting_with_TensorflowJS/HEAD/public/scripts/vendor/gpu-core.min.js -------------------------------------------------------------------------------- /public/scripts/vendor/tf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Financial_Forecasting_with_TensorflowJS/HEAD/public/scripts/vendor/tf.js -------------------------------------------------------------------------------- /public/styles/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Financial_Forecasting_with_TensorflowJS/HEAD/public/styles/style.css -------------------------------------------------------------------------------- /server/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Financial_Forecasting_with_TensorflowJS/HEAD/server/api.js -------------------------------------------------------------------------------- /server/cluster.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Financial_Forecasting_with_TensorflowJS/HEAD/server/cluster.js -------------------------------------------------------------------------------- /server/express.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Financial_Forecasting_with_TensorflowJS/HEAD/server/express.js -------------------------------------------------------------------------------- /server/http.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Financial_Forecasting_with_TensorflowJS/HEAD/server/http.js -------------------------------------------------------------------------------- /server/viewcontroller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Financial_Forecasting_with_TensorflowJS/HEAD/server/viewcontroller.js --------------------------------------------------------------------------------