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
For instance, given the existing data stream:
{81.59, 81.06, 82.87, 83.00, 83.61, 83.15, 82.84, 83.99, 84.55};
I calculated the MACD (Moving Average Convergence Divergence) values to be:
{0.618,0.351,0.111,0.416,0.578} {0.618,0.564,0.474,0.462,0.485} {0.000,-0.213,-0.363,-0.046,0.093}
Then, I appended two data point to the queue: {84.36,85.53}.
The expected result was:
{0.618,0.351,0.111,0.416,0.578 , 0.422,0.684 } {0.618,0.564,0.474,0.462,0.485, 0.473,0.515 } {0.000,-0.213,-0.363,-0.046,0.093, -0.050,0.169 }
However, the actual calculation did not yield these results. Could someone please help me understand what might be going wrong?
@yageek @codeplea @cschanaj
The text was updated successfully, but these errors were encountered:
Without seeing your code, its impossible to know where you're going wrong.
Sorry, something went wrong.
No branches or pull requests
For instance, given the existing data stream:
I calculated the MACD (Moving Average Convergence Divergence) values to be:
Then, I appended two data point to the queue: {84.36,85.53}.
The expected result was:
However, the actual calculation did not yield these results.
Could someone please help me understand what might be going wrong?
@yageek @codeplea @cschanaj
The text was updated successfully, but these errors were encountered: