PureBytes Links
Trading Reference Links
|
Thank you Graham, right to the point as usual
Dimitris Tsokakis
--- In amibroker@xxxxxxxxxxxxxxx, "Graham" <gkavanagh@xxxx> wrote:
> I will give it a go and see if my interpretation holds water
> It is actually just adding ones and zeros
> C<Ref(C,-3) is either 1 for true, and 0 for false
> So S2=Sum(C<Ref(C,-3),10)==10 becomes true when you have 10
consecutive days
> of C<Ref(C,-3)
>
> Cheers,
> Graham
> http://groups.msn.com/ASXShareTrading
> http://groups.msn.com/FMSAustralia
>
>
> -----Original Message-----
> From: dom1_1998 [mailto:Dom2000@x...]
> Sent: Friday, 29 August 2003 8:41 PM
> To: amibroker@xxxxxxxxxxxxxxx
> Subject: [amibroker] Re: An interesting Buy signal
>
>
> Hi Dimitris:
>
> Could you please paraphrase the following so I could understand it.
>
> S2=Sum(C<Ref(C,-3),10)==10
>
> I'm reading it as: Lookback 10 bars and total all closes today
that are
> less than the closes 3 days ago that are = to 10???
>
> TIA,
>
> Dominick
>
>
>
>
> --- In amibroker@xxxxxxxxxxxxxxx, "Dimitris Tsokakis"
<TSOKAKIS@xxxx>
> wrote:
> > Here is a variation of
> > http://www.linnsoft.com/scans/tdSequentialSetup.htm
> > method.
> > The small hollow circles are used as warnings of the upcoming Buy
> signal, which comes as soon as the sequence is interrupted.
> > It seems interesting.
> >
> >
> > Plot(C,"C",colorBlack,64);Title=Name();
> > for(x=5;x<20;x++)
> > {
> > S2=Sum(C<Ref(C,-3),x)==x;
> > Buy=s2==0 AND Ref(s2,-1);
> > PlotShapes((shapeHollowSmallCircle+shapePositionAbove)*s2,x);
> > PlotShapes(shapeUpArrow*Buy,colorBrightGreen);
> > Title=Title+WriteIf(s2,"["+WriteVal(x,1.0)+"]","");
> > }
>
>
>
> Send BUG REPORTS to bugs@xxxx
> Send SUGGESTIONS to suggest@xxxx
> -----------------------------------------
> Post AmiQuote-related messages ONLY to: amiquote@xxxxxxxxxxxxxxx
> (Web page: http://groups.yahoo.com/group/amiquote/messages/)
> --------------------------------------------
> Check group FAQ at:
> http://groups.yahoo.com/group/amibroker/files/groupfaq.html
>
> Your use of Yahoo! Groups is subject to
http://docs.yahoo.com/info/terms/
------------------------ Yahoo! Groups Sponsor ---------------------~-->
Buy Ink Cartridges or Refill Kits for Your HP, Epson, Canon or Lexmark
Printer at Myinks.com. Free s/h on orders $50 or more to the US & Canada. http://www.c1tracking.com/l.asp?cid=5511
http://us.click.yahoo.com/l.m7sD/LIdGAA/qnsNAA/GHeqlB/TM
---------------------------------------------------------------------~->
Send BUG REPORTS to bugs@xxxxxxxxxxxxx
Send SUGGESTIONS to suggest@xxxxxxxxxxxxx
-----------------------------------------
Post AmiQuote-related messages ONLY to: amiquote@xxxxxxxxxxxxxxx
(Web page: http://groups.yahoo.com/group/amiquote/messages/)
--------------------------------------------
Check group FAQ at: http://groups.yahoo.com/group/amibroker/files/groupfaq.html
Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
|