Skip to main content

Big Candle Scanner for Amibroker (AFL)

pravatkumar107 over 9 years ago Amibroker (AFL)

  • Rating:
    2 / 5 (Votes 3)
  • Tags:
    exploration, ambroker

Big Candle Scanner

Indicator / Formula

Copy & Paste Friendly
_SECTION_BEGIN("BigCandle");
CandleL=(H-L);
BodyL=abs(O-C);
RatioL=BodyL/CandleL;
BigCandle=IIf(RatioL > 0.90 AND CandleL > (C*0.01), 1,0);
Filter = BigCandle AND TimeNum()> 093500 AND C>200 AND C<1500 AND StrMid( Name(), 0, 5 )!="NIFTY";
AddColumn(BigCandle,"BigCandle",1.2);
AddColumn(Close,"Price       ",1.2);
SetSortColumns(2);
_SECTION_END();

5 comments

over 9 years ago

hi
thanks for the scanner . pl write an scan in similar lines high=close or difference 0.5 is an buy and low =close or difference 0.5 is an sell. search such candles above ema 50 line .

thanks
ravi
ravinikl@yahoo.com

over 9 years ago

i need an afl to find a specified candle, can you do it for me,
if yes please reply to my mail id : suri9192@gmail.com

about 9 years ago
_SECTION_BEGIN("BigCandle");
CandleL=(H-L);
BodyL=abs(O-C);
RatioL=BodyL/CandleL;
BigCandle=IIf(RatioL > 0.90 AND CandleL > (C*0.01), 1,0);
Filter = BigCandle ;
AddColumn(BigCandle,"BigCandle",1.2);
AddColumn(Close,"Price       ",1.2);
SetSortColumns(2);
_SECTION_END();

Please use this suri9192 hope it will work for you
regds

over 8 years ago

Dear BhartiPrinters,
Above afl is short purpose ? or buy ? please share here or hiren.3116@gmail.com

Leave Comment

Please login here to leave a comment.