Hello I would like to use the iHighest in my study and would like to know if this statement is valid please.
Thank you kindly.
Low[1] can never be higher then bMaxHigh if the period is the same
just because the documentation is vague and incomplete does not mean I did not read it several times before I asked.
check it
will do thanks.
just because the documentation is vague and incomplete does not mean I did not read it several times before I asked.
- RaptorUK:
Perhaps, but there can be no doubt that iHigh() is not used with square braces [ ] perhaps you meant High[ ] ?
double bMaxHigh = iHigh[iHighest(NULL, PERIOD_H1, MODE_HIGH, 10, 1)];
Most likely he is not running on a H1 chart (or he would have used iHighest(NULL, 0...)) - Break apart the code so you can see the differences
int iHH_H1 = iHighest(NULL, PERIOD_H1, MODE_HIGH, 10, 1); // Relative to the H1 chart double bMaxHigh = iHigh(NULL, PERIOD_H1, iHH_H1); // High on the H1 chart.
- RaptorUK:
Perhaps, but there can be no doubt that iHigh() is not used with square braces [ ] perhaps you meant High[ ] ?
Most likely he is not running on a H1 chart (or he would have used iHighest(NULL, 0...))
Sure, but then he would have done this . . . .
double bMaxHigh = iHigh ( NULL, PERIOD_H1, iHighest(NULL, PERIOD_H1, MODE_HIGH, 10, 1) );
Sure, but then he would have done this . . . .
We would do that but if you see to his other topics then this guy is learning by trieing something....
if it fails then trie with a little change..... First learning is the most difficult you have to go through it...
We would do that but if you see to his other topics then this guy is learning by trieing something....
if it fails then trie with a little change..... First learning is the most difficult you have to go through it...
Yes I agree, but I got this response in my suggestion to look at the documentation . . . .
"just because the documentation is vague and incomplete does not mean I did not read it several times before I asked."

- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
You agree to website policy and terms of use
Hello I would like to use the iHighest in my study and would like to know if this statement is valid please.
Thank you kindly.