Topic: Doji

Hi, can somone create me an indicator that only looks for "Long Legged Doji's". Something like

open=close
high - open < open - low

not sure if this is correct, but if you could put it in a .cs file for me please. I'm new and trying to get my head round the FSB and editing indicators.

Thankyou.

Re: Doji

Look in this thread -> http://forexsb.com/forum/topic/1799/doj … rn-in-fsb/

Re: Doji

double point = (Digits == 5 || Digits == 3) ? 10 * Point : Point;
            double maxOpenClose = 5 * point;
            double minHeight    = 1.2 * maxOpenClose;

            for (int iBar = 1; iBar < Bars; iBar++)
            {
                if (Math.Abs(Close[iBar - 1] - Open[iBar - 1]) < maxOpenClose && High[iBar - 1] - Low[iBar - 1] > minHeight)
                    doji[iBar] = 1;
            }

Can someone translate that into english, I kind of get it, but dont understand it fully.

thank you.

Re: Doji

V2 doesn't have that, it's percent based (user definable).