-
Updated
Dec 31, 2021 - Python
finance
Here are 3,824 public repositories matching this topic...
-
Updated
Oct 17, 2021 - Python
-
Updated
Dec 31, 2021 - Python
-
Updated
Dec 28, 2021 - Python
-
Updated
Dec 31, 2021 - Python
-
Updated
Dec 31, 2021 - PHP
-
Updated
Dec 14, 2021 - Cython
-
Updated
Dec 20, 2021 - Jupyter Notebook
-
Updated
Dec 29, 2021 - C#
-
Updated
Dec 31, 2021 - Python
Reading currencies, alphavantage returns a greeting note ("welcome") and this note raises an error in alphavantage.py line 363.
elif "Note" in json_response and self.treat_info_as_error:
raise ValueError(json_response["Note"])
For this reason, alphavantage does not work in home assistant.
-
Updated
Dec 31, 2021 - Jupyter Notebook
Heston model has accurate density approximations for European option prices, which are of interest.
The module implementing this method should live under tf_quant_finance/volatility/heston_approximation.py. It should support both European option puts and calls approximations. Tests should be in heston_approximation_test.py in the same folder.
-
Updated
Feb 17, 2021
-
Updated
Dec 25, 2021 - Jupyter Notebook
-
Updated
Dec 31, 2021 - Python
-
Updated
Dec 29, 2021 - Python
-
Updated
Dec 1, 2021 - PHP
Pivot points are used to notice importance levels during a trading session. I have used them successfully for day trading as they are solid inflection points.
Read more here - https://tradingsim.com/blog/pivot-points/
Pivot Point (PP) = (Prior Daily High + Low + Close) / 3
R1 = (2 x Pivot Point) – Prior Daily Low
R2 = Pivot Point + (Prior Daily High – Prior Daily Low)
S1 = (2
-
Updated
Dec 15, 2021 - Python
-
Updated
Dec 16, 2021 - TypeScript
-
Updated
Dec 13, 2021 - Jupyter Notebook
-
Updated
Jan 17, 2021 - Python
-
Updated
Dec 27, 2021 - Go
Improve this page
Add a description, image, and links to the finance topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the finance topic, visit your repo's landing page and select "manage topics."
In recent versions (can't say from exactly when), there seems to be an off-by-one error in dcc.DatePickerRange. I set
max_date_allowed = datetime.today().date(), but in the calendar, yesterday is the maximum date allowed. I see it in my apps, and it is also present in the first example on the DatePickerRange documentation page.E