Thanks gjol!
Has anyone else seen websites with more examples and explanations?
Thanks!
what is it you want to know about them that isnt explained in the docs ?
int ixTF = iBarShift(NULL, otherTF, Time[ix], false); double otherHigh = iHigh(NULL, otherTF, ixTF);
gets High from other timeframe (or symbol even).
As another example, note that
myHigh = High[ix];
is same as
myHigh = iHigh(NULL, 0, ix);
NB code just typed; not compiled or tested.

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
I have been looking for some info about iHigh, iLow, iOpen & iClose, but i can't find anything other than samples.
Can someone tell me or point me to some information on how it works?
Thanks!