-
Hello!
Thank you for your exceptional work. I hope I am mistaken, but I observed that in your code (specifically in both streamlit-lightweight-charts and streamlit-lightweight-charts-ntf), the macd…
-
In the MACD.ts file, within the update(_price: BigSource, replace: boolean = false): void | MACDResult method, the replace argument is not being applied correctly. Specifically, the line:
```typesc…
-
When setting signalperiod = 1 in function MACD, the last two results of the bar value is not in a stable condition, and always approaching 0.
How the function calculates when signalperiod = 1?
Why…
-
Version 0.10.1
ta.trend.MACD(df.close, window_slow = 26, window_fast = 12, window_sign = 9) is outputing ****
ta.trend.macd(df.close, window_slow = 26, window_fast = 12, window_sign = 9) is …
-
### Checks
- [X] I have checked that this issue has not already been reported.
- [X] I have confirmed this bug exists on the [latest version](https://pypi.org/project/polars/) of Polars.
### Reprodu…
-
-
I keep getting error from macd:
def compute_macd(close):
macd = pandas_ta.macd(close=close, length=20).iloc[:,0]
return macd.sub(macd.mean()).div(macd.std())
df['macd'] = df.groupby(leve…
-
Some users have requested simple technical indicators for the chart. While this can be done using TradingView's lightweight charts, the longer term solution would simply be to use TradingView's full f…
-
If I want to calculate MACD with parameters 6, 13, and 5, how should the code be written? Currently, it seems that there is no support for the signalSmoothing parameter.
-
Howdy. I notice you have a MACD indicator here... is there instructions somewhere to manipulate this to become Wilders? I think by default this is simple or exponential. I was wondering if there was…