Stock Portfolio Organizer
The ultimate porfolio management solution.
WiseTrader Toolbox
#1 Selling Amibroker Plugin featuring:
CANDLE MASTER for Amibroker (AFL)
I have reworked on the Candles to make it look and understand better.
The arrows indicate the candle formation.
Take labels are in short form albeit you get a full description of the candles when the cursor is pointed on that candle formation.
Right click and you will get the parameters to on and off labels and arrows.
This took me a lot of time and efforts.
I would add on more candles to it.
Kindly let me know if there are any flaws or ur suggestions to improve it.
Works with Amibroker 5.3. I haven’t tested on lower versions.
Screenshots
Similar Indicators / Formulas
Indicator / Formula
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 | _SECTION_BEGIN ( "CANDLE REWORKING combination of Meta TC TS" ); O1 = Ref ( O ,-1);O2 = Ref ( O ,-2);O3 = Ref ( O ,-3);O4 = Ref ( O ,-4); H1 = Ref ( H ,-1);H2 = Ref ( H ,-2);H3 = Ref ( H ,-3);H4 = Ref ( H ,-4); C1 = Ref ( C ,-1);C2 = Ref ( C ,-2);C3 = Ref ( C ,-3);C4 = Ref ( C ,-4); L1 = Ref ( L ,-1);L2 = Ref ( L ,-2);L3 = Ref ( L ,-3);L4 = Ref ( L ,-4); GraphXSpace = 5; /*UP and Down Trend of last 4 days*/ dtrend = (L1 < L2) AND (L2 < L3) AND (L3 < L4); utrend = (H1 > H2) AND (H2 > H3) AND (H3 > H4); /*Maximum High Today - (MHT) Today is the maximum High in the last 5 days*/ MHT= HHV ( H ,5)== H ; /*Maximum High Yesterday - (MHY) Yesterday is the maximum High in the last 5 days*/ MHY= HHV ( H ,5)== Ref ( H , -1); /*Minimum Low Today - (MLT) Today is the minimum Low in the last 5 days*/ MLT= LLV ( L ,5)== L ; /*Minimum Low Yesterday - (MLY) Yesterday is the minimum Low in the last 5 days*/ MLY= LLV ( L ,5)== Ref ( L ,-1); /*Peircing Percent*/ PiercingPercent = (( C - C1)/C1) * 100; Doji = ( abs ( O - C )<= (( H - L )*0.1)); BlackCandle = ( O > C ); LongBlackCandle = ( O > C AND ( O - C )/(.001+ H - L )>.6); SmallBlackCandle = (( O > C ) AND (( H - L )>(3*( O - C )))); WhiteCandle = ( C > O ); LongWhiteCandle = (( C > O ) AND (( C - O )/(.001+ H - L )>.6)); SmallWhiteCandle = (( C > O ) AND (( H - L )>(3*( C - O )))); BlackMaubozu = ( O > C AND H == O AND C == L ); WhiteMaubozu = ( C > O AND H == C AND O == L ); BlackClosingMarubozu = ( O > C AND C == L ); WhiteClosingMarubozu = ( C > O AND C == H ); BlackOpeningMarubozu = ( O > C AND O == H ); WhiteOpeningMarubozu = ( C > O AND O == L ); OpenGap = ((C1 - O )/ O ) * 100; CloseGap = (( O - C1)/C1) * 100; ///////************************************** Engulfings ********************************************////////////// BullishEngulfing = (LongWhiteCandle AND dtrend AND (O1>C1) AND ( C > O ) AND ( C >= O1) AND (C1>= O ) AND (( C - O )>(O1-C1))); _SECTION_BEGIN ( "" ); BI = BarIndex (); BV = BeginValue ( BarIndex ()); EV = EndValue ( BarIndex ()); SV = SelectedValue ( BarIndex ()); BuWholeEngulf = 0; CurrentBar = SelectedValue ( BarIndex () ); FirstBullBar = CurrentBar - 30; Bar = CurrentBar; do { if ( SelectedValue ( Close ) >= ( Open [Bar-1]) AND SelectedValue ( Close ) >= ( Close [Bar-1]) AND SelectedValue ( Open ) <= ( Open [Bar-1]) AND SelectedValue ( Open ) <= ( Close [Bar-1]) ) { BuWholeEngulf = BuWholeEngulf + 1; Bar--; } } while ( Bar> FirstBullBar AND SelectedValue ( Close ) >= ( Open [Bar-1]) AND SelectedValue ( Close ) >= ( Close [Bar-1]) AND SelectedValue ( Open ) <= ( Open [Bar-1]) AND SelectedValue ( Open ) <= ( Close [Bar-1])); _SECTION_END (); _SECTION_BEGIN ( "" ); BearishEngulfing = (MHT AND utrend AND LongBlackCandle AND (C1>O1) AND ( O > C ) AND ( O >= C1) AND (O1>= C ) AND (( O - C )>(C1-O1))); _SECTION_BEGIN ( "" ); BI = BarIndex (); BV = BeginValue ( BarIndex ()); EV = EndValue ( BarIndex ()); SV = SelectedValue ( BarIndex ()); BeWholeEngulf = 0; CurrentBar = SelectedValue ( BarIndex () ); FirstBearBar = CurrentBar - 30; Bar = CurrentBar; do { if ( SelectedValue ( Close ) <= ( Open [Bar-1]) AND SelectedValue ( Close ) <= ( Close [Bar-1]) AND SelectedValue ( Open ) >= ( Open [Bar-1]) AND SelectedValue ( Open ) >= ( Close [Bar-1]) ) { BeWholeEngulf = BeWholeEngulf + 1; Bar--; } } while ( Bar> FirstBearBar AND SelectedValue ( Close ) <= ( Open [Bar-1]) AND SelectedValue ( Close ) <= ( Close [Bar-1]) AND SelectedValue ( Open ) >= ( Open [Bar-1]) AND SelectedValue ( Open ) >= ( Close [Bar-1])); _SECTION_END (); //////****************************************** Piercings ********************************************//////// PiercingLine = ( Ref (LongBlackCandle,-1) AND dtrend AND (C1<O1) AND (((O1+C1)/2)< C ) AND ( O < C ) AND ( O <C1) AND ( C <O1) AND (( C - O )/(.001+( H - L ))>0.6)); DarkCloudCover = (MHT AND Ref (LongWhiteCandle,-1) AND utrend AND C1>O1 AND ((C1+O1)/2)> C AND O > C AND O >C1 AND C >O1 AND ( O - C )/(.001+( H - L )>0.6) ); ///////////////**********************************Hammers *****************************************////////////////// dhammertrend = ( L < L1) AND (L1 < L2) AND (L2 < L3) AND (L3 < L4); uhangingmantrend = ( H > H1) AND (H1 > H2) AND (H2 > H3) AND (H3 > H4); Hammer = ((( H - L )>3*( O - C )) AND (( C - L )/(.001+ H - L )>0.6) AND (( O - L )/(.001+ H - L )>0.6) AND dhammertrend AND NOT Doji); /*Hammer Tails*/ BlackHammerTail = ( C - L ) / ( O - C ); WhiteHammerTail = ( O - L ) / ( C - O ); HangingMan = ((( H - L )>4*( O - C )) AND (( C - L )/(.001+ H - L )>= 0.75) AND (( O - L )/(.001+ H - L )>= 0.75) AND uhangingmantrend AND NOT Doji); /*HangingMan Tails*/ BlackHangingManTail = ( C - L ) / ( O - C ); WhiteHangingManTail = ( O - L ) / ( C - O ); Harami= IIf ( O > C AND O1>C1 AND O <O1 AND C >C1,1, IIf ( O > C AND C1>O1 AND C >O1 AND O <C1,1, IIf ( C > O AND C1>O1 AND C <C1 AND O >O1,1, IIf ( C > O AND O1>C1 AND O >C1 AND C <O1,1,0)))); BullishHarami = (Harami AND (O1>C1) AND Ref (LongBlackCandle,-1) AND NOT LongWhiteCandle); InvertedHammer = ((( H - L )>3*( O - C )) AND (( H - C )/(.001+ H - L )>0.6) AND (( H - O )/(.001+ H - L )>0.6)); ShootingStar = ((( H - L )>4*( O - C )) AND (( H - C )/(.001+ H - L )>= 0.75) AND (( H - O )/(.001+ H - L )>= 0.75)); BlackSpinningTop= (( O > C ) AND (( H - L )>(3*( O - C ))) AND ((( H - O )/(.001+ H - L ))<.4) AND ((( C - L )/(.001+ H - L ))<.4)); WhiteSpinningTop = (( C > O ) AND (( H - L )>(3*( C - O ))) AND ((( H - C )/(.001+ H - L ))<.4) AND ((( O - L )/(.001+ H - L ))<.4)); BearishAbandonedBaby = ((C1 == O1) AND (C2>O2) AND ( O > C ) AND (L1>H2) AND (L1> H )); BearishEveningDojiStar = ((C2>O2) AND ((C2-O2)/(.001+H2-L2)>.6) AND (C2<O1) AND (C1>O1) AND ((H1-L1)>(3*(C1-O1))) AND ( O > C ) AND ( O <O1)); ThreeOutsideDownPattern = ((C2>O2) AND (O1>C1) AND (O1>= C2) AND (O2>= C1) AND ((O1-C1)>(C2-O2)) AND ( O > C ) AND ( C <C1)); BullishAbandonedBaby = ((C1 == O1) AND (O2>C2) AND ( C > O ) AND (L2>H1) AND ( L >H1)); BullishMorningDojiStar = ((O2>C2) AND ((O2-C2)/(.001+H2-L2)>.6) AND (C2>O1) AND (O1>C1) AND ((H1-L1)>(3*(C1-O1))) AND ( C > O ) AND ( O >O1)); ThreeOutsideUpPattern = ((O2>C2) AND (C1>O1) AND (C1>= O2) AND (C2>= O1) AND ((C1-O1)>(O2-C2)) AND ( C > O ) AND ( C >C1)); ThreeInsideUpPattern = ((O2>C2) AND (C1>O1) AND (C1<= O2) AND (C2<= O1) AND ((C1-O1)<(O2-C2)) AND ( C > O ) AND ( C >C1) AND ( O >O1)); BearishHarami = ((C1>O1) AND ( O > C ) AND ( O <= C1) AND (O1<= C ) AND (( O - C )<(C1-O1))); ThreeInsideDownPattern = ((C2>O2) AND (O1>C1) AND (O1<= C2) AND (O2<= C1) AND ((O1-C1)<(C2-O2)) AND ( O > C ) AND ( C <C1) AND ( O <O1)); ThreeWhiteSoldiers = ( C > O *1.01) AND (C1>O1*1.01) AND (C2>O2*1.01) AND ( C >C1) AND (C1>C2) AND ( O <C1) AND ( O >O1) AND (O1<C2) AND (O1>O2) AND ((( H - C )/( H - L ))<.2) AND (((H1-C1)/(H1-L1))<.2) AND (((H2-C2)/(H2-L2))<.2); ThreeBlackCrows = ( O > C *1.01) AND (O1>C1*1.01) AND (O2>C2*1.01) AND ( C <C1) AND (C1<C2) AND ( O >C1) AND ( O <O1) AND (O1>C2) AND (O1<O2) AND ((( C - L )/( H - L ))<.2) AND (((C1-L1)/(H1-L1))<.2) AND (((C2-L2)/(H2-L2))<.2); doji= ( O == C ); Gap_Up = GapUp (); Gap_Down = GapDown (); BigGapUp = L >1.01*H1; BigGapDown = H <0.99*L1; HugeGapUp = L >1.02*H1; HugeGapDown = H <0.98*L1; DoubleGapUp = GapUp () AND Ref ( GapUp (),-1); DoubleGapDown = GapDown () AND Ref ( GapDown (),-1); /*********************************************************************************** LABELS ***********************************************************************************/ _SECTION_BEGIN ( "PRASAD SYSTEMS" ); Param ( "DEDICATED TO MY FATHER" ,5); _SECTION_END (); _SECTION_BEGIN ( "" ); CANDLE_LABELS_TOGGLE = ParamToggle ( "Labels" , "Off|On" ,1); if (CANDLE_LABELS_TOGGLE==1) { for ( a = 0; a < BarCount ; a++ ) { if (BullishEngulfing[a]) ( PlotText ( " BuE" ,a, H [a]+2, colorPaleGreen )); if (PiercingLine[a]) ( PlotText ( "PL" ,a, H [a]+2, colorPaleGreen )); if (Hammer[a]) ( PlotText ( "Hr" ,a, H [a]+2, colorPaleGreen )); /*if (BullishHarami[a]) (PlotText("BH",a,H[a]+2,colorPaleGreen));*/ if (BearishEngulfing[a]) ( PlotText ( "BeE" ,a, H [a]+2, colorRed )); if (DarkCloudCover[a]) ( PlotText ( "Dc" ,a, H [a]+2, colorRed )); if (HangingMan[a]) ( PlotText ( "Hm" ,a, H [a]+2, colorRed )); } } CANDLE_ARROWS_TOGGLE = ParamToggle ( "CANDLE ARROWS" , "Off|On" ,1); if (CANDLE_ARROWS_TOGGLE==1) { ( PlotShapes (BullishEngulfing * shapeSmallUpTriangle , colorPaleGreen ,0, H ,10)); ( PlotShapes (PiercingLine * shapeSmallUpTriangle , colorPaleGreen ,0, H ,10)); ( PlotShapes (Hammer * shapeSmallUpTriangle , colorPaleGreen ,0, H ,10)); /*(PlotShapes(BullishHarami * shapeSmallUpTriangle,colorPaleGreen,0,H,10));*/ ( PlotShapes (BearishEngulfing * shapeSmallDownTriangle , colorLightOrange ,0, H ,-20)); ( PlotShapes (DarkCloudCover * shapeSmallDownTriangle , colorRed ,0, H ,-20)); ( PlotShapes (HangingMan * shapeSmallDownTriangle , colorLightOrange ,0, H ,-20)); } _SECTION_END (); BULL_ENG = LastValue ( Cum (BullishEngulfing)); printf ( "Bull Eng %g\n" ,BULL_ENG); PlotText ( "*" ,BULL_ENG, H [BULL_ENG]+4, colorYellow ); CURRENT_BULL_ENG = Ref (BullishEngulfing,0); PRI_CANDLE_BULLISH = WriteIf (BullishEngulfing, "Bullish Engulfing" , "" )+ WriteIf (PiercingLine, "Piercing Line" , "" ) + WriteIf (Hammer, "Hammer" , "" )+ WriteIf (BullishHarami, "Bullish Harami" , "" ); //+ WriteIf(dojiStarBullish,"Bullish Doji Star","") + WriteIf(breakAwayBullish,"Break Away","") //+ WriteIf(hammerBullish,"Hammer","") + WriteIf(dragonflyDoji,"DrangonFly Doji","") //+ WriteIf(HaramiCross,"Harami Cross","") + WriteIf(invertedHammer,"Inverted Hammer","") //+ WriteIf(meetingLinesBullish,"Meeting Lines","") + WriteIf(morningStar,"Morning Star","") //+ WriteIf(morningDojiStar,"Morning Doji Star","") + WriteIf(MatHoldBullish,"Mat Hold","") //+ WriteIf(separatingLinesBullish,"Seperating Lines",""); PRI_CANDLE_BEARISH = WriteIf (BearishEngulfing, "Bearish Engulfing" , "" ) + WriteIf (DarkCloudCover, "Dark Cloud" , "" ) + WriteIf (HangingMan, "Hanging Man" , "" ); //+ WriteIf(haramiBearish, "Bearish Harami","") + WriteIf(abandonedBabybearish,"Aband Baby","") //+ WriteIf(dojiStarBearish,"Bearish Doji Star","") + WriteIf(breakAwayBearish,"Break Away","") //+ WriteIf(HangingMan,"Hanging Man","") + WriteIf(dragonflyDojiBearish,"DrangonFly Doji","") //+ WriteIf(HaramiCrossBearish,"Harami Cross","") + WriteIf(shootingStarGap,"Shooting Star","") //+ WriteIf(MeetingLinesBearish,"Meeting Lines","") + WriteIf(eveningStar,"Evening Star","") //+ WriteIf(eveningDojiStar,"Evening Doji Star","") + WriteIf(separatingLinesBearish,"Seperating Lines","") //+ WriteIf(gravestoneDoji,"GraveStone Doji",""); /****************************************************************************************** CHART TITLES ***********************************************************************************************/ _SECTION_BEGIN ( "BACK COLR" ); GfxSetOverlayMode (1); SetChartBkColor ( ParamColor ( "Chart Color" , colorBlack )); GfxSetOverlayMode (1); GfxSelectFont ( "Tahoma" , Status ( "pxheight" )/20 ); /* Up down name*/ GfxSetTextAlign ( 6 ); // center alignment GfxSetTextColor ( ParamColor ( "Text Color" , ColorHSB ( 42, 42, 42 ) )); GfxSetBkMode (0); // transparent GfxTextOut ( Name (), Status ( "pxwidth" )/2, Status ( "pxheight" )/7); GfxSelectFont ( "Tahoma" , Status ( "pxheight" )/30 ); GfxTextOut ( IndustryID (1), Status ( "pxwidth" )/2, Status ( "pxheight" )/5 ); /* Up Down Sector*/ GfxSelectFont ( "Tahoma" , Status ( "pxheight" )/40 ); GfxTextOut ( "Feedback prasad9rao@gmail.com" , Status ( "pxwidth" )/2, Status ( "pxheight" )/4); GfxSelectFont ( "Tahoma" , Status ( "pxheight" )/20 ); GfxTextOut ( " BALKRISHNA CANDLE CHARTS " , Status ( "pxwidth" )/2, Status ( "pxheight" )/15 ); k = ( GetPerformanceCounter ()/100)%256; printf ( "GetPerformance Counter %g" ,k); GfxSelectFont ( "Arial Narrow" , 10, 700 ); GfxSetBkMode (1); GfxSetTextColor ( colorYellow ); GfxTextOut ( "Dedicated to the loving memory of MY FATHER on his 75th Birth Anniversay - LATE BALKRISHNA RAMCHANDRA RAO 13.10.1935" ,100+k ,12); GfxSelectFont ( "Century Goliath" ,12,500); GfxSetBkMode (1); GfxSetTextColor ( colorLime ); GfxTextOut ( "Prasad Inspirations" ,80 ,25); RequestTimedRefresh (1); _SECTION_END (); SetBarFillColor ( IIf ( O > C , colorOrange , colorDarkGreen ) ); Plot ( C , "Price" , IIf ( O > C , colorRed , colorGreen ), styleCandle ); Plot ( C , "Close" , colorWhite ,64); Chg= Ref ( C ,-1); Title = EncodeColor ( colorYellow )+ Title = Name () + " " + EncodeColor (2) + Date () + EncodeColor (11) + EncodeColor ( colorWhite ) + "{{INTERVAL}} " + EncodeColor (55)+ " Open: " + EncodeColor ( colorWhite )+ WriteVal ( O ,format=1.2) + EncodeColor (55)+ " High: " + EncodeColor ( colorWhite ) + WriteVal ( H ,format=1.2) + EncodeColor (55)+ " Low: " + EncodeColor ( colorWhite )+ WriteVal ( L ,format=1.2) + EncodeColor (55)+ " Close: " + WriteIf ( C > Chg, EncodeColor ( colorBrightGreen ), EncodeColor ( colorRed ))+ WriteVal ( C ,format=1.2)+ EncodeColor (55)+ " Change: " + WriteIf ( C > Chg, EncodeColor ( colorBrightGreen ), EncodeColor ( colorRed ))+ WriteVal ( ROC ( C ,1),format=1.2)+ "%" + EncodeColor (55)+ " Volume: " + EncodeColor ( colorWhite )+ WriteVal ( V ,1) + "\n" + "\n" + "\n" + EncodeColor ( colorWhite )+ "> Candle : " + EncodeColor ( colorBrightGreen )+PRI_CANDLE_BULLISH + EncodeColor ( colorRed )+PRI_CANDLE_BEARISH + EncodeColor ( colorRed )+ "." + "\n" + /*********************************************************************************************** Standards of Cover (Moderate and low Reliability) /****************************************************************************************************/ EncodeColor ( colorOrange )+ WriteIf (BullishEngulfing, "> Prior Trend " + EncodeColor ( colorWhite ) + ": Bearish.\n" + EncodeColor ( colorOrange )+ "> Type " + EncodeColor ( colorWhite ) + ": Reversal.\n" + EncodeColor ( colorOrange )+ "> Confirmation " + EncodeColor ( colorWhite ) + ": Required.\n" + "\n" + EncodeColor ( colorLightBlue )+ "> IMPORTANT FACTORS " + EncodeColor ( colorWhite ) + "\n" + EncodeColor ( colorYellow )+ "1) Disparity of white vs black body is indicative of the\n emerging bull power.\n" + "2) Higher probability of reversal if there is heavy\n volume on the day of second real body.\n" + "3) Higher probability of reversal if the second day\n body engulfs more than one real body. \n" + "4) Greater the open gaps down from previous close\n greater the probability of strong reversal. \n" + "5) If engulfing body engulfs body and shadow of the\n previous day may be probability of strong reversal. \n \n" + EncodeColor ( colorPink )+ " > CONFIRMATION :\n Third Day Confirmation needed in form of a \na) white candle ,\nb) large gap up or \nc) higher close.\n\n" + EncodeColor ( colorRed )+ " > CURRENT CANDLE\n" + EncodeColor ( colorAqua )+ " * The gap down opening of the current candle is\n " + Prec (OpenGap,1)+ " % from previous Day.\n" + "* The current white body is engulfing the\n preceeding " +BuWholeEngulf+ " bodies" , "" )+ EncodeColor ( colorOrange )+ WriteIf (BearishEngulfing, "> Prior Trend " + EncodeColor ( colorWhite ) + ": Bullish.\n" + EncodeColor ( colorOrange )+ "> Type " + EncodeColor ( colorWhite ) + ": Reversal.\n" + EncodeColor ( colorOrange )+ "> Confirmation " + EncodeColor ( colorWhite ) + ": Required.\n" + "\n" + EncodeColor ( colorLightBlue )+ "> IMPORTANT FACTORS " + EncodeColor ( colorWhite ) + "\n" + EncodeColor ( colorYellow )+ "1) Disparity of black vs white body is indicative of the\n emerging bear power.\n" + "2) Higher probability of reversal if there is heavy\n volume on the day of second real body.\n" + "3) Higher probability of reversal if the second day\n body engulfs more than one real body. \n" + "4) Greater the open gaps up from previous close\n greater the probability of strong reversal. \n" + "5) If engulfing body engulfs body and shadow of the\n previous day may be probability of strong reversal. \n \n" + EncodeColor ( colorPink )+ " > CONFIRMATION :\n Third Day Confirmation needed in form of a \na) black candle ,\nb) large gap down or \nc) lower close.\n\n" + EncodeColor ( colorRed )+ " > CURRENT CANDLE\n" + EncodeColor ( colorAqua )+ " * The gap up opening of the current candle is\n " + Prec (CloseGap,1)+ " % from previous Day.\n" + "* The current black body is engulfing the\n preceeding " +BeWholeEngulf+ " bodies" , "" ) + EncodeColor ( colorOrange )+ WriteIf (PiercingLine, "> Prior Trend " + EncodeColor ( colorWhite ) + ": Bearish.\n" + EncodeColor ( colorOrange )+ "> Type " + EncodeColor ( colorWhite ) + ": Reversal.\n" + EncodeColor ( colorOrange )+ "> Confirmation " + EncodeColor ( colorWhite ) + ": Required.\n" + "\n" + EncodeColor ( colorLightBlue )+ "> IMPORTANT FACTORS " + EncodeColor ( colorWhite ) + "\n" + EncodeColor ( colorYellow )+ "1) Higher the white candle closes into the\n black candle stronger the reversal.\n" + "2) Higher probability of reversal if there is heavy\n volume during first and second real body days.\n" + "3) Greater the gap down from previous day close\n more pronounced the signal. \n \n" + EncodeColor ( colorPink )+ " > CONFIRMATION :\n Third Day Confirmation needed in form of a \na) white candle ,\nb) large gap up or \nc) higher close.\n\n" + EncodeColor ( colorRed )+ " > CURRENT CANDLE\n" + EncodeColor ( colorAqua )+ " * The gap down opening of the current candle is\n " +OpenGap+ " % from previous Day.\n" + "* The current white body penetrates\n " + Prec (PiercingPercent,1)+ " above the preceding day candle" , "" ) + EncodeColor ( colorOrange )+ WriteIf (DarkCloudCover, "> Prior Trend " + EncodeColor ( colorWhite ) + ": Bullish.\n" + EncodeColor ( colorOrange )+ "> Type " + EncodeColor ( colorWhite ) + ": Reversal.\n" + EncodeColor ( colorOrange )+ "> Confirmation " + EncodeColor ( colorWhite ) + ": Required.\n" + "\n" + EncodeColor ( colorLightBlue )+ "> IMPORTANT FACTORS " + EncodeColor ( colorWhite ) + "\n" + EncodeColor ( colorYellow )+ "1) Black candle penetrates deeper into\n previous day white candle.\n" + "2) More than 50% penetration of black \n candle close into prior white candle.\n" + "3) If both candles are morabozu then\n black candle acts as a resistance. \n \n" + EncodeColor ( colorPink )+ " > CONFIRMATION :\n Third Day Confirmation needed in form of a \na) black candle ,\nb) large gap down or \nc) lower close." , "" )+ EncodeColor ( colorOrange )+ WriteIf (Hammer AND BlackCandle, "> Prior Trend " + EncodeColor ( colorWhite ) + ": Bearish.\n" + EncodeColor ( colorOrange )+ "> Type " + EncodeColor ( colorWhite ) + ": Reversal.\n" + EncodeColor ( colorOrange )+ "> Confirmation " + EncodeColor ( colorWhite ) + ": Definitely Required.\n" + "\n" + EncodeColor ( colorLightBlue )+ "> IMPORTANT FACTORS " + EncodeColor ( colorWhite ) + "\n" + EncodeColor ( colorYellow )+ "1) The longer the lower shadow the\n higher the potential of reversal.\n" + "2) A gap down from the previous days close\n sets up for a strong reversal.\n" + "3) Bullish Dragonfly Doji is considered\n is considered more bullish.\n\n" + EncodeColor ( colorPink )+ " > CONFIRMATION :\n Next Day Confirmation needed in form of a \na) white candle ,\nb) large gap up or \nc) higher close.\n \n" + EncodeColor ( colorRed )+ " > CURRENT CANDLE\n" + EncodeColor ( colorAqua )+ " * The tail of the Bullish Hammer\n is " + Prec (BlackHammerTail,1)+ " times the its body." , "" )+ EncodeColor ( colorOrange )+ WriteIf (Hammer AND WhiteCandle, "> Prior Trend " + EncodeColor ( colorWhite ) + ": Bearish.\n" + EncodeColor ( colorOrange )+ "> Type " + EncodeColor ( colorWhite ) + ": Reversal.\n" + EncodeColor ( colorOrange )+ "> Confirmation " + EncodeColor ( colorWhite ) + ": Definitely Required.\n" + "\n" + EncodeColor ( colorLightBlue )+ "> IMPORTANT FACTORS " + EncodeColor ( colorWhite ) + "\n" + EncodeColor ( colorYellow )+ "1) The longer the lower shadow the\n higher the potential of reversal.\n" + "2) A gap down from the previous days close\n sets up for a strong reversal.\n" + "3) Bullish Dragonfly Doji is considered\n is considered more bullish.\n\n" + EncodeColor ( colorPink )+ " > CONFIRMATION :\n Next Day Confirmation needed in form of a \na) white candle ,\nb) large gap up or \nc) higher close.\n \n" + EncodeColor ( colorRed )+ " > CURRENT CANDLE\n" + EncodeColor ( colorAqua )+ " * The tail of the Bullish Hammer\n is " + Prec (WhiteHammerTail,1)+ " times the its body." , "" ) + EncodeColor ( colorOrange )+ WriteIf (HangingMan AND BlackCandle, "> Prior Trend " + EncodeColor ( colorWhite ) + ": Bullish.\n" + EncodeColor ( colorOrange )+ "> Type " + EncodeColor ( colorWhite ) + ": Reversal.\n" + EncodeColor ( colorOrange )+ "> Confirmation " + EncodeColor ( colorWhite ) + ": Definitely Required.\n" + "\n" + EncodeColor ( colorLightBlue )+ "> IMPORTANT FACTORS " + EncodeColor ( colorWhite ) + "\n" + EncodeColor ( colorYellow )+ "1) The higher the lower shadow the\n higher the potential of reversal.\n" + "2) A gap up from the previous days close\n sets up for a strong reversal.\n" + "3) Bearish Dragonfly Doji is considered\n is considered more bullish.\n\n" + EncodeColor ( colorPink )+ " > CONFIRMATION :\n Next Day Confirmation needed in form of a \na) black candle ,\nb) large gap down or \nc) lower close.\n \n" + EncodeColor ( colorRed )+ " > CURRENT CANDLE\n" + EncodeColor ( colorAqua )+ " * The tail of the Hanging Man\n is " + Prec (BlackHangingManTail,1)+ " times the its body." , "" )+ EncodeColor ( colorOrange )+ WriteIf (HangingMan AND WhiteCandle, "> Prior Trend " + EncodeColor ( colorWhite ) + ": Bullish.\n" + EncodeColor ( colorOrange )+ "> Type " + EncodeColor ( colorWhite ) + ": Reversal.\n" + EncodeColor ( colorOrange )+ "> Confirmation " + EncodeColor ( colorWhite ) + ": Definitely Required.\n" + "\n" + EncodeColor ( colorLightBlue )+ "> IMPORTANT FACTORS " + EncodeColor ( colorWhite ) + "\n" + EncodeColor ( colorYellow )+ "1) The higher the lower shadow the\n higher the potential of reversal.\n" + "2) A gap up from the previous days close\n sets up for a strong reversal.\n" + "3) Bearish Dragonfly Doji is considered\n is considered more bullish.\n\n" + EncodeColor ( colorPink )+ " > CONFIRMATION :\n Next Day Confirmation needed in form of a \na) black candle ,\nb) large gap down or \nc) lower close.\n \n" + EncodeColor ( colorRed )+ " > CURRENT CANDLE\n" + EncodeColor ( colorAqua )+ " * The tail of the Hanging Man\n is " + Prec (WhiteHangingManTail,1)+ " times the its body." , "" ); /* EncodeColor(colorOrange)+ WriteIf(BullishHarami,"> Prior Trend " + EncodeColor(colorWhite) + ": Bearish.\n"+ EncodeColor(colorOrange)+"> Type " + EncodeColor(colorWhite) + ": Reversal.\n"+ EncodeColor(colorOrange)+"> Confirmation " + EncodeColor(colorWhite) + ": Strongly Suggested.\n"+"\n"+ EncodeColor(colorLightBlue)+"> IMPORTANT FACTORS " + EncodeColor(colorWhite) + "\n"+ EncodeColor(colorYellow)+"1) The location and size of second candle\n influences magnitude of reversal.\n" + "2) The higher the white candle closes up on\n black candle more convincing a reversal.\n" + "3) Markets usually enter a congestion phase\n following the Bullish Harami.\n" + "3) The most bullish are those that form with\n a white/black or white/white combination.\n\n"+ EncodeColor(colorPink)+" > CONFIRMATION :\n Third Day Confirmation needed in form of a \na) White candle ,\nb) large gap up or \nc) higher close.\n \n" + EncodeColor(colorRed)+" > CURRENT CANDLE\n" + EncodeColor(colorAqua)+" * The tail of the Hanging Man\n is "+BlackHangingManTail+" times the its body.","");*/ |
12 comments
Leave Comment
Please login here to leave a comment.
Back
Sir
can u make this compatible with lower version of Ami ?
I am using 4.8
It’s nice afl
Is it possible to recognize each and every candle.
If possible then pls. do it.
in amibroker 5.00 it shown syntax error.modify for amibroker5.00
I have not yet like your chart, because no explain in my chart especially type candle etc. I have run amibroker v.5.30.4. Please your help. Thank’s.
The chart is very good. But unfortunately candle description is not showing. Would you please rectify the code?
Regards
Nahid
very nice formula, to get candle description click on the arrow formed you will get entire description
Thanks a lot
Nice AFL Thanks
Hi, The information does not appear . I am using AB 6.35 Version
Comment hidden - Show
Comment hidden - Show
Comment hidden - Show