-
Notifications
You must be signed in to change notification settings - Fork 123
New issue
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
CCI Indicator - Price Oscillator #5
Comments
Ok, here is a hack. I couldn't figure out all the snaking around in the base code, so I wrote a standalone cci indicator function: export function cci(window, data) {
}; I integrated as follows (excerpts only): render: cciData = cci(window, initialData); return: <LineSeries yAccessor={d => d.cci} stroke={"#8e8e8e"}/> <SingleValueTooltip Perhaps someone can do it properly. I did check the results via an MT4 CCI indicator and it shows correct. |
And an indicator for Standard deviation: `export function stddev(window, data) {
};` |
This is just a feeler to see if anyone has (or something hackable - though at this level a bit far for me) the CCI or a Price Oscillator. It is fairly standard on most packages and often requested. Seems with all the other fancy things here this would be one that perhaps has been over looked.
The text was updated successfully, but these errors were encountered: