PureBytes Links
Trading Reference Links
|
You ahve to match the expand to the compressed timeframe
Plot(
TimeFrameExpand(ATRh,
inHourly),"ATRHourly"
,colorBlue,512
);
Plot(
TimeFrameExpand(ATRd,
inDaily),"ATRDaily"
,colorViolet,512
); -- Cheers Graham AB-Write >< Professional AFL Writing Service Yes, I write AFL code to your requirements
http://e-wire.net.au/~eb_kavan/ab_write.htm
On 4/2/06, Michael Mann <m3m@xxxxxxxxxxxxx> wrote:
Graham, Thanks, I tried it, but no change, I must still not be seeing something.
Mike
_SECTION_BEGIN(
"MultipleTimeFrameATR"
);
TimeFrameSet(
in1Minute);
ATRM=ATR
(5
);
TimeFrameRestore();
TimeFrameSet(
inHourly);
ATRH=ATR
(5
);
TimeFrameRestore();
TimeFrameSet(
inDaily);
ATRD=ATR
(5
);
TimeFrameRestore();
Plot(
TimeFrameExpand(ATRM,in1Minute
),"ATRMinute"
,colorBrightGreen,512
);
Plot(
TimeFrameExpand(ATRh,in1Minute
),"ATRHourly"
,colorBlue,512
);
Plot(
TimeFrameExpand(ATRd,in1Minute
),"ATRHourly"
,colorViolet,512
);
_SECTION_END();
Mike, you need to expand the compressed data out to match the chart bar times
eg Plot(timeframeexpand(ATRM,in1Minute),"ATRMinute",colorBrightGreen,512);
-- Cheers Graham AB-Write >< Professional AFL Writing Service
Yes, I write AFL code to your requirements
http://e-wire.net.au/~eb_kavan/ab_write.htm
On 4/2/06, Mike Mann <
m3m@xxxxxxxxxxxxx> wrote: > I was trying to calculate ATR for multiple time frames. I expected > the code to produce ATR's of different magnitudes across the chart
> history (I am using IB plugin to generate futures data history). > The minute time frame worked as expected. The hour and day ATR's
> were varying a great deal minute to minute and only being calculated > on the last day of the history. An unexpected result and I can't
> see what I don't see. > > Thank you for your time, interest and help. There is a screen shot
> of what my computer generates in Photos, MikeMann Album, MTFATR. > > Thanks again,
> > Mike > >
> _SECTION_BEGIN("MultipleTimeFrameATR"); > > TimeFrameSet(in1Minute);
> ATRM=ATR(5); > TimeFrameRestore(); > > TimeFrameSet(inHourly);
> ATRH=ATR(5); > TimeFrameRestore(); >
> TimeFrameSet(inDaily); > ATRD=ATR(5); > TimeFrameRestore(); >
> Plot(ATRM,"ATRMinute",colorBrightGreen,512); > Plot(ATRH,"ATRMinute",colorBlue,512);
> Plot(ATRD,"ATRDaily",colorViolet,512); > > _SECTION_END(); >
> > > >
>
> Please note that this group is for discussion between users only. >
> To get support from AmiBroker please send an e-mail directly to > SUPPORT {at}
amibroker.com > > For other support material please check also: >
http://www.amibroker.com/support.html > > > Yahoo! Groups Links
> > > >
> > >
SPONSORED LINKS
YAHOO! GROUPS LINKS
Please note that this group is for discussion between users only.
To get support from AmiBroker please send an e-mail directly to
SUPPORT {at} amibroker.com
For other support material please check also:
http://www.amibroker.com/support.html
YAHOO! GROUPS LINKS
|