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
Not working 👎🏽
const adx = new ADX(1); adx.update({ close: 10, high: 11, low: 9}); NotEnoughDataError: Not enough data
Working 👍🏽
onst adx = new ADX(1); adx.update({ close: 10, high: 11, low: 9}); adx.update({ close: 11, high: 12, low: 5});
const adx = new ADX(3); adx.update({ close: 10, high: 11, low: 9}); adx.update({ close: 11, high: 12, low: 5}); adx.update({ close: 12, high: 13, low: 2}); NotEnoughDataError: Not enough data
Working when I pass 5 values 👍🏽
const adx = new ADX(3); adx.update({ close: 10, high: 11, low: 9}); adx.update({ close: 11, high: 12, low: 5}); adx.update({ close: 12, high: 13, low: 2}); adx.update({ close: 14, high: 15, low: 1}); adx.update({ close: 15, high: 16, low: 1});
My understanding must be wrong, please explain.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
With 1 internal
Not working 👎🏽
Working 👍🏽
With 3 internal
Not working 👎🏽
Working when I pass 5 values 👍🏽
My understanding must be wrong, please explain.
The text was updated successfully, but these errors were encountered: