[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Fw: abondoned baby



PureBytes Links

Trading Reference Links

----- Original Message -----
From: "David Holzgrefe" <dtholz@xxxx>
To: <kishor@xxxx>
Sent: Monday, June 18, 2001 8:04 PM
Subject: Re: abondoned baby


> Just cut and paste the whole afl into auto analysiser window and hit scan
..
> it only signals the candle pattern nothing else you will need to add you
own
> sell condition
> it you wish to experiment more with it ..
>
> this was the trade station code from the original post
> /*C2<=O2*.99 AND H1<L2 AND L>H1 AND C>=O*1.01
> (MLY) + ( Add DY for more weight )*/
>
>
> these are the basic building blocks for the candle code
> MHY=ref(hhv(close,5),-1) ;
> DY = ref( ABS(C-O) <= (C*.0025),-1);
>
> this is my AB interpretation of the tradesration code
> buy =
> ref(close,-2) <= ref(open,-2)*.99 //C2<=O2*.99
> And ref(high,-1) < ref(low,-2) // H1<L2
> And low > ref(high,-1) // L>H1
> And close > ref(open,-2) *1.01 // C>=O*1.01
> And MHY
> And DY;
>
> The // parts are comment statement indicating which piece of code was take
> from the original code for candles posted on this board by another user
> Note //C2<=O2*.99 this is the little piece of code from the original
>
> I try to write all of my codes in long hand with comments so that I and
> other users can gain a better understanding of what i was trying to
achieve
> .
>
>
> Regards David
>
>
> ----- Original Message -----
> From: "Nand Kishor PhD" <nkishor@xxxx>
> To: <dtholz@xxxx>
> Sent: Monday, June 18, 2001 12:34 PM
> Subject: abondoned baby
>
>
> >
> > It didn't work for me, andI couldn't fix it
> > because I am confused witht "//" entries.
> >
> > Nand Kishor
> >
>