-
Updated
Feb 6, 2022 - Python
finance
Here are 3,960 public repositories matching this topic...
-
Updated
Oct 17, 2021 - Python
-
Updated
Feb 5, 2022 - Python
-
Updated
Feb 4, 2022 - Python
-
Updated
Feb 5, 2022 - PHP
-
Updated
Jan 9, 2022 - Cython
Expected Behavior
The EmaCrossAlphaModel is not warming up its indicators.
Actual Behavior
All indicators are warmed up as soon as possible.
Potential Solution
Add
algorithm.WarmUpIndicator(added.Symbol, fast, _resolution);
algorithm.WarmUpIndicator(added.Symbol, slow, _resolution);at lines 107 and 108 of EmaCrossAlphaModel.cs and change to `EmaCross
-
Updated
Jan 29, 2022 - Jupyter Notebook
-
Updated
Jan 26, 2022 - C#
-
Updated
Feb 5, 2022 - 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.
Hi,
It was really nice to see a framework for DRL in trading, I was wondering if it is possible to provide more interpretability for the model output? For example, if we have some technical indicators and some company balance sheet data as input to our model, and each day the model produce some trading decisions based on these features and current portfolio positions, is there a way to generate
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
Jan 21, 2022 - Jupyter Notebook
-
Updated
Feb 17, 2021
-
Updated
Feb 6, 2022 - Python
-
Updated
Jan 7, 2022 - Python
Which version are you running? The lastest version is on Github. Pip is for major releases.
0.3.14b0
Describe the solution you'd like
I would like have following indicators on pandas_ta repository:
- Jurik's DMX
- Jurikäs CFB
DMX indicator is made for MT4 and the code for it can be found here (https://forex-station.com/viewtopic.php?p=1295447361#p1295447361)
CFB indicator
-
Updated
Dec 1, 2021 - PHP
-
Updated
Feb 1, 2022 - Python
-
Updated
Feb 4, 2022 - TypeScript
-
Updated
Jan 21, 2022 - Jupyter Notebook
-
Updated
Feb 4, 2022 - Python
-
Updated
Jan 17, 2021 - Python
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