PureBytes Links
Trading Reference Links
|
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 amibroker@xxxxxxxxxxxxxxx, Graham <kavemanperth@xxx> 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@xxx> 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
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/amibroker/
<*> Your email settings:
Individual Email | Traditional
<*> To change settings online go to:
http://groups.yahoo.com/group/amibroker/join
(Yahoo! ID required)
<*> To change settings via email:
mailto:amibroker-digest@xxxxxxxxxxxxxxx
mailto:amibroker-fullfeatured@xxxxxxxxxxxxxxx
<*> To unsubscribe from this group, send an email to:
amibroker-unsubscribe@xxxxxxxxxxxxxxx
<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
|