We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
It would be great, if you could add the HMA (Hull Moving Average) indicator.
This is the formula in PineScript:
length = input(9, minval=1) src = input(close, title="Source") hma = wma(2*wma(src, length/2)-wma(src, length), round(sqrt(length)))
Here is the website from Alan Hull, explaining the indicator. It's a moving average that is smoother than EMA and less lagging.
The text was updated successfully, but these errors were encountered:
@xelra Thanks for the report. If you want it soon I'd recommend you implementing the indicator and opening a PR.
Sorry, something went wrong.
Checking in on this. Any progress here? Would love to contribute.
@pindaroso Go ahead. (even though, history of PRs stuck is a little bit discouraging). I'll try to find some time to handle issues/PRs for ta.
No branches or pull requests
It would be great, if you could add the HMA (Hull Moving Average) indicator.
This is the formula in PineScript:
Here is the website from Alan Hull, explaining the indicator. It's a moving average that is smoother than EMA and less lagging.
The text was updated successfully, but these errors were encountered: