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

Re: Candlestick - Definition



PureBytes Links

Trading Reference Links

What is WD, BD ?
DT 
--- In amibroker@xxxx, "Tom Supera" <tom_supera@xxxx> wrote:
> Hi,
> 
> Has anyone of you the correct values for every candlestick
> example:
> /*******************************************************************
******/
> 
> DR = H - L; /*DR = DayRange*/ R1 = DR/100;
> 
> BH = Bodyhigh; BL = Bodylow;
> 
> Hammer = 
> 
> BH > (85 * R1 + L) and BL > (55 * R1 + L) and Body >(10*R1);
> 
> pH = Hammer and WD;
> 
> nH = Hammer and BD;
> 
> 
> 
> Tom Supera