That is correct: I'm looking for the weekly relstrength of the base index to the sp-500 displayed on a daily bar chart, so that I can use this the values in scanning. My problem is that the chart displayed with relstrength does not match up with the values that amibroker is getting (via scan or exploration). This is because amibroker uses all bars in scans and explorations while the plotted indicator does not.
What I want is the values that correspond to the plotted indicator NOT the values that you get from scan or exploration. I've even gone so far as to try and create my own version of relative strength (c/sp500), but that didn't work either for the same reasons. I do greatly appreciate your help Graham! JH --- In [email protected], Graham <[EMAIL PROTECTED]> wrote: > > I am not sure what you want but what you are getting is the > relstrength of the baseindex to sp-500 symbol > > If all you want is the relstrength of the chosen symbol to sp-500 > symbol then, make sure you have the correct matching symbol name for > the sp-500 ticker. Also remember that the number of bars used is only > those of the symbol selected, not the foreign symbol. > > > TimeFrameSet(inWeekly); > xp=RelStrength("sp-500"); > MA10=EMA(xp,40); > TimeFrameRestore(); > > 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 28/10/2007, jeffro861 <[EMAIL PROTECTED]> wrote: > > Could somebody please help! I'm at a standstill right now. > > > > Thanks, > > JH > > > > > > --- In [email protected], "jeffro861" <jeffro861@> 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); > > > > > > > > > > > > > > > > > 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 NEW RELEASE ANNOUNCEMENTS and other news always check DEVLOG: > > http://www.amibroker.com/devlog/ > > > > For other support material please check also: > > http://www.amibroker.com/support.html > > > > Yahoo! Groups Links > > > > > > > > >
