Skip to content

Latest commit

 

History

History
44 lines (26 loc) · 3.32 KB

CONTRIBUTING.md

File metadata and controls

44 lines (26 loc) · 3.32 KB

Contributing to PyPortfolioOpt

Some of the things that I'd love for people to help with:

  • Improve performance of existing code (but not at the cost of readability) – I realise that most optimisation projects in python use cvxopt rather than scipy.optimize, but the latter is far cleaner and much more readable. If it transpires that performance differs by orders of magnitude, I will definitely consider switching.
  • Add new optimisation objectives. For example, if you think that the best performance metric has not been included, write an optimiser! (or suggest it in Issues and I will have a go).
  • Help me write more tests! If you are someone learning about quant finance and/or unit testing in python, what better way to practice than to write some tests on an open-source project! Feel free to check for edge cases, or test performance on a dataset with more stocks.

Guidelines

Seek early feedback

Before you start coding your contribution, it may be wise to raise an issue on GitHub to discuss whether the contribution is appropriate for the project.

Code style

For this project I have used Black as the formatting standard, with all of the default arguments. It would be much appreciated if any PRs follow this standard, because if not I will have to format before merging.

Testing

Any contributions must be accompanied by unit tests (written with pytest). These are incredibly simple to write, just find the relevant test file (or create a new one), and write a bunch of assert statements. The test should be applied to the dummy dataset I have provided in tests/stock_prices.csv, and should cover core functionality, warnings/errors (check that they are raised as expected), and limiting behaviour or edge cases.

Documentation

Inline comments (and docstrings!) are great when needed, but don't go overboard. A lot of the explanation can and should be offloaded to ReadTheDocs. Docstrings should follow PEP257 semantically and sphinx syntactically.

I would appreciate if changes are accompanied by relevant documentation – it doesn't have to be pretty, because I will probably try to tidy it up before it goes onto ReadTheDocs, but it'd make things a lot simpler to have the person who wrote the code explain it in their own words.

Questions

If you have any questions related to the project, it is probably easiest to raise an issue, and I will tag it as a question.

If you have questions unrelated to the project, drop me an email – contact details can be found on my website

Bugs/issues

If you find any bugs or the portfolio optimisation is not working as expected, feel free to raise an issue. I would ask that you provide the following information in the issue:

  • Descriptive title so that other users can see the existing issues
  • Operating system, python version, and python distribution (optional).
  • Minimal example for reproducing the issue.
  • What you expected to happen
  • What actually happened
  • A full traceback of the error message (omit personal details as you see fit).