Could somebody please help! I'm at a standstill right now. Thanks, JH
--- In [email protected], "jeffro861" <[EMAIL PROTECTED]> wrote: > > Thomasz, > > If I put this as an exploration, with the value for f and g set up in > columns, it's apparent that amibroker is using the setbarsrequired > (100000,100000) value. This is not the value that I want. > > Jeff > > --- In [email protected], Graham <kavemanperth@> wrote: > > > > Try this > > > > > > SetForeign(GetBaseIndex()); > > TimeFrameSet(inWeekly); > > xp=RelStrength("sp-500"); > > MA10=EMA(xp,40); > > TimeFrameRestore(); > > RestorePriceArrays(); > > > > f=TimeFrameExpand(xp,inWeekly); > > g=TimeFrameExpand(MA10,inWeekly); > > > > > > Plot(f,"relstrength",colorBlack,styleLine); > > Plot(g,"ema10",colorGreen,styleLine); > > > > > > -- > > Cheers > > Graham Kav > > AFL Writing Service > > http://www.aflwriting.com > > > > > > On 25/10/2007, jeffro861 <jeffro861@> wrote: > > > I'm wanting to use the data points as the indicator plotted from > the > > > following code. If I use setbarsrequired(100000,100000), it > gives me > > > different output than what I'm looking for and none of the > explorations > > > or scans are searching for the criteria that I want them to. How > do I > > > fix the code, so as to get the values associated without using > > > setbarsrequired()? > > > > > > SetBarsRequired(100000); > > > SetForeign(GetBaseIndex()); > > > TimeFrameSet(inWeekly); > > > xp=RelStrength("sp-500"); > > > MA10=EMA(xp,40); > > > > > > f=TimeFrameExpand(xp,inWeekly); > > > g=TimeFrameExpand(MA10,inWeekly); > > > TimeFrameRestore(); > > > RestorePriceArrays(); > > > > > > Plot(f,"relstrength",colorBlack,styleLine); > > > Plot(g,"ema10",colorGreen,styleLine); > > >
