PureBytes Links
Trading Reference Links
|
------------------------------------------------------------------------
You cannot reply to this message via email because you have chosen not
to disclose your email address to the group.
To reply: http://groups.yahoo.com/group/equismetastock/post?act=reply&messageNum=5011
------------------------------------------------------------------------
nec,
Looks good. As a system it will need some work. Factor in the delay
in getting in your trades and the system is not the best but still
good. Using the Hour() function is a good idea. Not everyone will
have intraday charts. Another alternative for daily charts would be
to use cum(1) since it adds a count of one for everday since the
beginning of the chart. So the first 2 lines of code for a daily
would look like this:
a:= Sum(Cum(1),30);
Dm:=If(a > Ref(a,-1),1,0);
P
--- In equismetastock@xxxx, nec el <elnec37@xxxx> wrote:
> I forgot to write , that you have to name the formula
> "COMPAS INTRA PPM".
> Preston, it's simple and effective.Tell us your
> result.
> :-)
>
>
>
> --- Preston Umrysh <pumrysh@xxxx> wrote:
> > Elnec,
> >
> > Looks spectacular! I'll give it a try when I'm on my
> >
> > trading computer.
> >
> > P
> >
> > --- In equismetastock@xxxx, "elnec37" <elnec37@xxxx>
> > wrote:
> > > This is for intraday charts in 60minutes
> > >
> > >
> > >
> > > This is for Indicator Builder
> > >
> > > Dm:=If(Hour()<=Ref(Hour(),-1),1,0);
> > >
> > > PP3:=If(Dm=1,(Ref(HighestSince(1,Dm=1,H),-1)+
> > >
> > > Ref(LowestSince(1,Dm=1,L),-1) +
> > >
> > > Ref(C,-1))/3,0);
> > >
> > > Mh1:=If(Dm=1,Ref(HighestSince(1,Dm=1,H),-1),0);
> > >
> > > Ml1:=If(Dm=1,Ref(LowestSince(1,Dm=1,L),-1),0);
> > >
> > > Mh:=ValueWhen(1,Mh1>0,Mh1);
> > >
> > > Ml:=ValueWhen(1,Ml1>0,Ml1);
> > >
> > > PPM:=ValueWhen(1,PP3>0,PP3);
> > >
> > > R1:=(2*PPM)-Ml;
> > >
> > > S1:=(2*PPM)-Mh;
> > >
> > > S3:=ppm-(Mh-Ml);
> > >
> > > S2:=S1-(R1-S1);
> > >
> > > R2:=R1+(R1-S1);
> > >
> > > R3:=ppm+(Mh-Ml);
> > >
> > > evm:=(mh-PPm)+ml;
> > >
> > > ppm;
> > >
> > >
> > >
> > > ...and this is for the System
> > >
> > > System notes
> > >
> > >
> > >
> > > Enter long C> FmlVar("COMPAS INTRA
> > PPM","r1")
> > >
> > > Enter short C< FmlVar("COMPAS INTRA
> > PPM","s1")
> >
> >
>
>
> __________________________________________________
> Do you Yahoo!?
> New DSL Internet Access from SBC & Yahoo!
> http://sbc.yahoo.com
------------------------ Yahoo! Groups Sponsor ---------------------~-->
Sell a Home with Ease!
http://us.click.yahoo.com/SrPZMC/kTmEAA/MVfIAA/BefplB/TM
---------------------------------------------------------------------~->
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/
|