├── README.md ├── _config.yml ├── docs ├── AHP algorithm.pdf ├── AHP paper.pdf ├── AHP tutorial.docx ├── AHP tutorial.pdf ├── Requirements List.xlsx ├── Sensitivity analysis overview.docx ├── Sensitivity analysis overview.pdf ├── TSEAT Algorithm.docx ├── TSEAT Algorithm.pdf ├── TSEAT intro.docx ├── TSEAT intro.pdf └── Test Cases.docx ├── images ├── HomePage.PNG ├── OptionsInfo.PNG ├── ParametersInfo.PNG ├── RawScoreMatrix.PNG └── TradeStudeInfo.PNG ├── nbproject ├── ant-deploy.xml ├── build-impl.xml ├── genfiles.properties ├── private │ ├── private.properties │ └── private.xml ├── project.properties └── project.xml ├── src ├── conf │ └── MANIFEST.MF └── java │ └── MyServlet.java └── web ├── WEB-INF └── web.xml ├── css └── style.css ├── img └── ngc.jpg ├── index.html ├── js ├── dynamicForm.js └── multiStep.js ├── loadTrade.html └── newTrade.html /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephengineer/Trade-Study-Execution-and-Analysis/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephengineer/Trade-Study-Execution-and-Analysis/HEAD/_config.yml -------------------------------------------------------------------------------- /docs/AHP algorithm.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephengineer/Trade-Study-Execution-and-Analysis/HEAD/docs/AHP algorithm.pdf -------------------------------------------------------------------------------- /docs/AHP paper.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephengineer/Trade-Study-Execution-and-Analysis/HEAD/docs/AHP paper.pdf -------------------------------------------------------------------------------- /docs/AHP tutorial.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephengineer/Trade-Study-Execution-and-Analysis/HEAD/docs/AHP tutorial.docx -------------------------------------------------------------------------------- /docs/AHP tutorial.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephengineer/Trade-Study-Execution-and-Analysis/HEAD/docs/AHP tutorial.pdf -------------------------------------------------------------------------------- /docs/Requirements List.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephengineer/Trade-Study-Execution-and-Analysis/HEAD/docs/Requirements List.xlsx -------------------------------------------------------------------------------- /docs/Sensitivity analysis overview.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephengineer/Trade-Study-Execution-and-Analysis/HEAD/docs/Sensitivity analysis overview.docx -------------------------------------------------------------------------------- /docs/Sensitivity analysis overview.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephengineer/Trade-Study-Execution-and-Analysis/HEAD/docs/Sensitivity analysis overview.pdf -------------------------------------------------------------------------------- /docs/TSEAT Algorithm.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephengineer/Trade-Study-Execution-and-Analysis/HEAD/docs/TSEAT Algorithm.docx -------------------------------------------------------------------------------- /docs/TSEAT Algorithm.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephengineer/Trade-Study-Execution-and-Analysis/HEAD/docs/TSEAT Algorithm.pdf -------------------------------------------------------------------------------- /docs/TSEAT intro.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephengineer/Trade-Study-Execution-and-Analysis/HEAD/docs/TSEAT intro.docx -------------------------------------------------------------------------------- /docs/TSEAT intro.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephengineer/Trade-Study-Execution-and-Analysis/HEAD/docs/TSEAT intro.pdf -------------------------------------------------------------------------------- /docs/Test Cases.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephengineer/Trade-Study-Execution-and-Analysis/HEAD/docs/Test Cases.docx -------------------------------------------------------------------------------- /images/HomePage.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephengineer/Trade-Study-Execution-and-Analysis/HEAD/images/HomePage.PNG -------------------------------------------------------------------------------- /images/OptionsInfo.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephengineer/Trade-Study-Execution-and-Analysis/HEAD/images/OptionsInfo.PNG -------------------------------------------------------------------------------- /images/ParametersInfo.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephengineer/Trade-Study-Execution-and-Analysis/HEAD/images/ParametersInfo.PNG -------------------------------------------------------------------------------- /images/RawScoreMatrix.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephengineer/Trade-Study-Execution-and-Analysis/HEAD/images/RawScoreMatrix.PNG -------------------------------------------------------------------------------- /images/TradeStudeInfo.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephengineer/Trade-Study-Execution-and-Analysis/HEAD/images/TradeStudeInfo.PNG -------------------------------------------------------------------------------- /nbproject/ant-deploy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephengineer/Trade-Study-Execution-and-Analysis/HEAD/nbproject/ant-deploy.xml -------------------------------------------------------------------------------- /nbproject/build-impl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephengineer/Trade-Study-Execution-and-Analysis/HEAD/nbproject/build-impl.xml -------------------------------------------------------------------------------- /nbproject/genfiles.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephengineer/Trade-Study-Execution-and-Analysis/HEAD/nbproject/genfiles.properties -------------------------------------------------------------------------------- /nbproject/private/private.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephengineer/Trade-Study-Execution-and-Analysis/HEAD/nbproject/private/private.properties -------------------------------------------------------------------------------- /nbproject/private/private.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephengineer/Trade-Study-Execution-and-Analysis/HEAD/nbproject/private/private.xml -------------------------------------------------------------------------------- /nbproject/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephengineer/Trade-Study-Execution-and-Analysis/HEAD/nbproject/project.properties -------------------------------------------------------------------------------- /nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephengineer/Trade-Study-Execution-and-Analysis/HEAD/nbproject/project.xml -------------------------------------------------------------------------------- /src/conf/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | 3 | -------------------------------------------------------------------------------- /src/java/MyServlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephengineer/Trade-Study-Execution-and-Analysis/HEAD/src/java/MyServlet.java -------------------------------------------------------------------------------- /web/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephengineer/Trade-Study-Execution-and-Analysis/HEAD/web/WEB-INF/web.xml -------------------------------------------------------------------------------- /web/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephengineer/Trade-Study-Execution-and-Analysis/HEAD/web/css/style.css -------------------------------------------------------------------------------- /web/img/ngc.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephengineer/Trade-Study-Execution-and-Analysis/HEAD/web/img/ngc.jpg -------------------------------------------------------------------------------- /web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephengineer/Trade-Study-Execution-and-Analysis/HEAD/web/index.html -------------------------------------------------------------------------------- /web/js/dynamicForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephengineer/Trade-Study-Execution-and-Analysis/HEAD/web/js/dynamicForm.js -------------------------------------------------------------------------------- /web/js/multiStep.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephengineer/Trade-Study-Execution-and-Analysis/HEAD/web/js/multiStep.js -------------------------------------------------------------------------------- /web/loadTrade.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephengineer/Trade-Study-Execution-and-Analysis/HEAD/web/loadTrade.html -------------------------------------------------------------------------------- /web/newTrade.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephengineer/Trade-Study-Execution-and-Analysis/HEAD/web/newTrade.html --------------------------------------------------------------------------------