Is it possible to view a higher time frame chart but calculate
indicators based on a lower level time frame?

E.g
View a 15 minute chart but have indicators on it that were created
from tick level data?

I'm fairly sure it says you can't do this in the Help but hope someone
can confirm or deny this for me. Hopefully deny :)

The following code run on a 30 minute chart only gives me the close
price from the 30 minute time frame, not the 15 minute time frame that
I want.


TimeFrameSet(in15Minute);
for (bar = 0; bar<30; bar++){
        _TRACE("C:\t" + C[bar]);
}
TimeFrameRestore();


Cheers,
Julian.

Reply via email to