Dominik Egert:
Hello,
i have a simple question.
why is this working:
and this is not:
I was expecting the terms
and
to give the same result.
but they dont...
Any explanation I am missing?
For completness of code here is the whole struct:
The signs, lets substitute idx for -1
first
x - (-1 + 1)
x - 0
the second
v becomes positive
(x - -1) + 1
(x + 1) + 1
x+2

You are missing trading opportunities:
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
Registration
Log in
You agree to website policy and terms of use
If you do not have an account, please register
Hello,
i have a simple question.
why is this working:
and this is not:
I was expecting the terms
(_ptr - (idx + 1))
and
((_ptr - idx) + 1)
to give the same result.
but they dont...
Any explanation I am missing?
For completness of code here is the whole struct: