Hello guys,
I am trying to understand how to use different time frames.
Basically I have 5 sec chart, but I want to use signals from 1 minute.
I've started small and tried to plot 1 minute price with this code:
TimeFrameSet(in1Minute);
MinuteClose = Close;
TimeFrameRestore();
Plot( TimeFrameExpand(MinuteClose, in1Minute), "Close", colorDefault, styleNoLabel | styleNoTitle );
As a result I've got chart like on the image:
For some reason before 10:00 chart looks as I'd expect it. But after 10:00 it's "squeezed" 1 min price.
What am I doing wrong?
Thank you.