-
Updated
Jul 3, 2022 - Python
investment
Here are 464 public repositories matching this topic...
-
Updated
Jul 4, 2022 - Python
-
Updated
Apr 29, 2022 - Jupyter Notebook
-
Updated
Jun 18, 2022 - Jupyter Notebook
-
Updated
Jul 4, 2022 - Python
this is how Buy & Hold Return is calculated:
c = data.Close.values
s.loc['Buy & Hold Return [%]'] = (c[-1] - c[0]) / c[0] * 100 # long-only return
so it's calced use day one and the day last.
Expected Behavior
Buy & Hold Return is used for compare with strategy gain. Therefore, I guess they should started at same time, since the strategy get enough data to w
-
Updated
Aug 13, 2021 - Python
-
Updated
Jun 18, 2022 - Python
-
Updated
Feb 14, 2017 - Jupyter Notebook
-
Updated
Jun 30, 2022 - Python
Is there a way to calibrate a discount curve from traded fx forwards?
Taking USDJPY as an example. As an input I have the fx spot, 1M, 3M and 6M forwards , I have also built a USD OIS discount curve. I want to create a JPY discount curve such that I can reprice correctly all of the fx forwards I observe in the market. Is that possible with the current library?
As an extension to the above,
-
Updated
Apr 5, 2021 - Python
-
Updated
Dec 28, 2021 - Java
-
Updated
Dec 13, 2021 - Python
-
Updated
May 22, 2022 - Python
-
Updated
Jul 1, 2022 - Elixir
-
Updated
Feb 11, 2022 - Python
-
Updated
Sep 6, 2021 - CSS
-
Updated
May 20, 2022 - Python
-
Updated
Jul 4, 2022 - Python
-
Updated
Jun 25, 2020 - C#
Юнит тесты
Рамочная задача для Pull Request-ов с юнит-тестами.
-
Updated
Jan 12, 2022 - Jupyter Notebook
-
Updated
May 26, 2021
-
Updated
Mar 11, 2022 - PHP
Improve this page
Add a description, image, and links to the investment topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the investment topic, visit your repo's landing page and select "manage topics."


Under MLP implementation there are several variables that need to be initialized. Such as
loss,lr,lr_decay,lr_decay_steps,optimizer. However, it seems that the variableslr_decayandlr_decay_stepsare indeed being initialized but are not being used at any point in the code.