- public static String convertInputStreamToString(InputStream inputStream) throws IOException {
BufferedReader reader = new BufferedReader(new InputStreamReader(inputStream)); StringBuilder stringBuilder = new StringBuilder(); String line;
- while ((line = reader.readLine()) != null) {
- stringBuilder.append(line); stringBuilder.append(System.lineSeparator()); // Add line separator if needed
}
reader.close(); return stringBuilder.toString();
}
gogoportefollioopt
this project aim to ingest stock market data into a big data plateform then process the data and output best portefollio composition for given symbols.
- Free software: MIT license
- Documentation: https://gogoportefollioopt.readthedocs.io.
- TODO
This package was created with Cookiecutter and the audreyr/cookiecutter-pypackage project template.