PureBytes Links
Trading Reference Links
|
Usbana,
Your conditions need to be changed to:
"long entry"....... b > d AND b < -0.008
"long exit"........ d > b AND b > 0.008
b is the ROC and d is the trailing moving average. You could also
use cross(b,d) for the entry and cross(d,b) for the exit. Using
cross you will only get a single signal when the event occurs.
Also using the letters b and d may get confusing. Use b and bsig
instead, makes it easier to keep up with which is the trailing
moving average.
Hope this helps,
Preston
--- In equismetastock@xxxxxxxxxxxxxxx, "cocciasbano" <braincar@xxx>
wrote:
>
>
> Preston,
>
> I have inserted a detailed information on my last question on this
> link:
>
> http://xoomer.alice.it/usbana
>
> unfortunately I have not resolved the problem, thanks for any
> suggestion.
>
> Usbana
>
>
> --- In equismetastock@xxxxxxxxxxxxxxx, pumrysh <no_reply@> wrote:
> >
> > Usbana,
> >
> > The pics don't work.
> >
> >
> > Any reason why you can't use:
> >
> > a:=(((Mov(C,112,E)/Mov(C,810,E))-1));
> > b:=ROC(a,421,$);
> > d:=Mov(b,38,E);
> > entry:= d > b and b < -0.008;
> > exit:= (d > b and b > 0.008)*-1;
> >
> > Preston
>
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/
|