Skip to content

Latest commit

 

History

History
57 lines (37 loc) · 1.76 KB

README.rst

File metadata and controls

57 lines (37 loc) · 1.76 KB
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

Documentation Status Updates

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.

Features

  • TODO

Credits

This package was created with Cookiecutter and the audreyr/cookiecutter-pypackage project template.