PureBytes Links
Trading Reference Links
|
You cannot reference into the future which is what you are asking
the program to do when you use ref(gu,3).
You can hold a signal for 3 days by using
gu:=GapUp();
Alert(gu,3);
Preston
--- In equismetastock@xxxxxxxxxxxxxxx, cc300mk <no_reply@xxx> wrote:
>
> Hi pumrysh,
>
> thanks for reply. But that doesn't solve.
> gu:=gapup();
> aa:=Ref(gu,3);
> aa;
>
> The above would show a line which shift the Gapup signal 3 bars
LEFT.
> But this would cause the line has NA plot on rightmost 3 bars of
the
> chart.
>
> What want to be achieve is to remove the NA plot and remain the
Gapup
> signal shift 3 bars LEFT.
> Can anyone help ? thanks a lot !
>
>
> --- In equismetastock@xxxxxxxxxxxxxxx, pumrysh <no_reply@> wrote:
> >
> > Try this:
> >
> > aa:=Ref(Hbar,-3);
> > aa;
> >
> >
> > --- In equismetastock@xxxxxxxxxxxxxxx, cc300mk <no_reply@> wrote:
> > >
> > > Hi,
> > >
> > > I've a signal line which show the gapup.
> > > gu:=gapup();
> > >
> > >
> > > Now, I shift the signal 3 bars to the left.
> > > aa:=Ref(Hbar,3);
> > > aa;
> > >
> > > But this would coz the right most side of the chart has NA
plot (3
> > bar
> > > without plot).
> > >
> > > Can anyone advise how to solve... thanks a lot !
> > >
> >
>
Yahoo! Groups Links
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/equismetastock/
<*> Your email settings:
Individual Email | Traditional
<*> To change settings online go to:
http://groups.yahoo.com/group/equismetastock/join
(Yahoo! ID required)
<*> To change settings via email:
mailto:equismetastock-digest@xxxxxxxxxxxxxxx
mailto:equismetastock-fullfeatured@xxxxxxxxxxxxxxx
<*> To unsubscribe from this group, send an email to:
equismetastock-unsubscribe@xxxxxxxxxxxxxxx
<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
|