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

RE: afl djor



PureBytes Links

Trading Reference Links

Hello David and all,

>here's another one for candle stick followers The Doji
>whilst it doesnt show all djors as they can have a small devation in the open close I >couldn't find a way to make it show a
percentage move from open close...any idea's ?
>
>djor = (open==close);
>tail=djor and h>o and l
>buy=tail;

Well, you can check for a small deviation between open and close this way:

perc_threshold = 0.5;
// this defines percentage threshold
// in this example 0.5% deviation allowed for valid doji
doji = 100* abs( (open - close)/close ) < perc_threshold;



>And this is ment to show a Dragonfly djor, but some times it seem to ignore the low ?>less than close (l>c) ?
Well you should check for (low < close) ("less then sign")

BTW: The support for Candlestick recognition functions is coming up!

Hope it helps,
Tomasz Janeczko
amibroker.com