-
Notifications
You must be signed in to change notification settings - Fork 206
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Chore/auto formatting workflow #109
Conversation
4926ce4
to
92ca47c
Compare
917b140
to
9d9276b
Compare
cccbfcf
to
3ca21a8
Compare
4fb7289
to
33e761b
Compare
The Value at Risk (VaR) is a way to evaluate the risk of a portfolio. It measures the potential loss that a portfolio can have over a certain period with a specified confidence level. With respect to the beta parameter, variance, etc., VaR uses a probability distribution, and it assumes that returns are normally distributed. Using the variance-covariance method, we want to compute the portfolio's value at risk (VaR) over the selected period (the 'freq' variable). The Monte Carlo approach is left for further development. --------- Co-authored-by: Frank Milthaler <fmilthaler@users.noreply.github.com>
3bb4889
to
101ee7f
Compare
ab2b28f
to
6cd0566
Compare
db8b993
to
a4dc9ee
Compare
@PietropaoloFrisoni
Good news for you and any other contributor to FinQuant: There is no need to use black, isort etc locally. You just commit your changes, and code formatting is taken care of for you automatically. You can see the last commit in this PR is an automated commit that applies code formatting with black on some of the files we have neglected and or not applied black on lately. This has been thoroughly tested. |
That's very nice. Thank you, Frank! I can't wait to test it : ) |
This PR adds a new GitHub workflow. Purpose of that is, for every commit to either of the branches master or develop as well as any commit pushed to a branch that is in a PR with a base branch of either master or develop the new workflow should run and automatically apply code formatting with black, import sorting with isort as well as update the README.tex.md (porting changes over from README.md).