Candlestick Commentary.afl
上传用户:shiqiang
上传日期:2009-06-12
资源大小:1289k
文件大小:31k
源码类别:

金融证券系统

开发平台:

Others

  1. //------------------------------------------------------------------------------
  2. //
  3. //  Formula Name:    Candlestick Commentary
  4. //  Author/Uploader: Dale Butkowski 
  5. //  E-mail:          msc626@yahoo.com
  6. //  Date/Time Added: 2002-01-12 09:46:54
  7. //  Origin:          I developed this with code from others on this site and from Steve Nison's "Japanese Candlestick Charting Techniques" and the LitWick website. Thanks to all.
  8. //  Keywords:        Candlestick candle
  9. //  Level:           basic
  10. //  Flags:           commentary
  11. //  Formula URL:     http://www.amibroker.com/library/formula.php?id=149
  12. //  Details URL:     http://www.amibroker.com/library/detail.php?id=149
  13. //
  14. //------------------------------------------------------------------------------
  15. //
  16. //  Strickly a commentary file I developed to help me locate candlestick
  17. //  patterns. Load file into the Commentary window. Red arrows indicate bearish
  18. //  candles, green arrows indicate bullish candles. Scroll down commentary to
  19. //  find comments.
  20. //
  21. //------------------------------------------------------------------------------
  22. /*******************************************************
  23. Candlestick Commentary
  24. Load this file into the Commentary Option of the Analysis tab. Green arrows indicate bullish candles.
  25. Red arrows indicate bearish candles. Scroll down the commentary for comments. 
  26. This is a work in progress. Thanks to all on this forum whose code I may have incorporated into this file. Comments are from Steve Nison "Japanese Candlestick Charting Techniques" and the LitWick web site.
  27. **********************************************************/
  28. /*Body Colors*/
  29. whiteBody=C>=O;
  30. blackBody=O>C;
  31. /*Body Size*/
  32. smallBodyMaximum=0.0025;//less than 0.25%
  33. LargeBodyMinimum=0.01;//greater than 1.0%
  34. smallBody=(O>=C*(1-smallBodyMaximum) AND whiteBody) 
  35.          OR (C>=O*(1-smallBodyMaximum) AND blackBody);
  36. largeBody=(C>=O*(1+largeBodyMinimum) AND whiteBody) 
  37.          OR C<=O*(1-largeBodyMinimum) AND blackBody;
  38. mediumBody=NOT LargeBody AND NOT smallBody;
  39. identicalBodies=abs(abs(Ref(O,-1)-Ref(C,-1))-abs(O-C)) < 
  40.           abs(O-C)*smallBodyMaximum;
  41. realBodySize=abs(O-C);
  42. /*Shadows*/
  43. smallUpperShadow=(whiteBody AND H<=C*(1+smallBodyMaximum))
  44.                OR (blackBody AND H<=O*(1+smallBodyMaximum));
  45. smallLowerShadow=(whiteBody AND L>=O*(1-smallBodyMaximum)) 
  46.                OR (blackBody AND L>=C*(1-smallBodyMaximum));
  47. largeUpperShadow=(whiteBody AND H>=C*(1+largeBodyMinimum)) 
  48.                OR (blackBody AND H>=O*(1+largeBodyMinimum));
  49. largeLowerShadow=(whiteBody AND L<=O*(1-largeBodyMinimum)) 
  50.               OR (blackBody AND L<=C*(1-largeBodyMinimum));
  51. /*Gaps*/
  52. upGap=  IIf(Ref(blackBody,-1)AND whiteBody AND O>Ref(O,-1),1,
  53.         IIf(Ref(blackbody,-1) AND blackBody AND C>Ref(O,-1),1,
  54.         IIf(Ref(whiteBody,-1) AND whiteBody AND O>Ref(C,-1),1,
  55.         IIf(Ref(whiteBody,-1) AND blackBody AND C>Ref(C,-1),1,0))));
  56. downGap=IIf(Ref(blackBody,-1)AND whiteBody AND C<Ref(C,-1),1,
  57.         IIf(Ref(blackbody,-1) AND blackBody AND O<Ref(C,-1),1,
  58.         IIf(Ref(whiteBody,-1) AND whiteBody AND C<Ref(O,-1),1,
  59.         IIf(Ref(whiteBody,-1) AND blackBody AND O<Ref(O,-1),1,0))));
  60. /*Candle Definitions*/
  61. spinningTop=mediumBody;
  62. doji=CdDoji(threshold=0.05);/*abs(C-O) <= (C*smallBodyMaximum) OR
  63. (abs(O-C)<=((H-L)*0.1));*/
  64. dojiStar=doji AND (upgap OR downgap)AND Ref(LargeBody,-1);
  65. marabuzu=LargeBody AND smallUpperShadow AND smallLowerShadow;
  66. shootingStar=/*(NOT largeBody AND smallLowerShadow AND LargeUpperShadow) OR*/
  67.     smallLowerShadow AND NOT doji AND
  68.    ((blackBody AND abs(O-H)>2*realBodySize) OR
  69.    (whiteBody AND abs(H-C)>2*realBodySize));
  70. Hammer=smallUpperShadow AND NOT doji AND
  71.    ((blackBody AND abs(C-L)>2*realBodySize) OR
  72.    (whiteBody AND abs(L-O)>2*realBodySize));
  73. tweezerTop=abs(H-Ref(H,-1))<=H*0.0025;
  74. tweezerBottom=abs(L-Ref(L,-1))<=L*0.0025;
  75. engulfing=
  76.    IIf(blackBody AND Ref(blackbody,-1) AND C<Ref(C,-1) AND O>Ref(O,-1),1,
  77.    IIf(blackBody AND Ref(whiteBody,-1) AND O>Ref(C,-1) AND C<Ref(O,-1),1,
  78.    IIf(whitebody AND Ref(whitebody,-1) AND C>Ref(C,-1) AND O<Ref(O,-1),1,
  79.    IIf(whiteBody AND Ref(blackBody,-1) AND C>Ref(O,-1)AND O<Ref(C,-1),1,0))));
  80. Harami=
  81.    IIf(blackbody AND Ref(blackBody,-1) AND O<Ref(O,-1) AND C>Ref(C,-1),1,
  82.    IIf(blackBody AND Ref(whiteBody,-1) AND C>Ref(O,-1) AND O<Ref(C,-1),1,
  83.    IIf(whiteBody AND Ref(whiteBody,-1) AND C<Ref(C,-1) AND O>Ref(O,-1),1,
  84.    IIf(whiteBody AND Ref(blackBody,-1) AND O>Ref(C,-1) AND C<Ref(O,-1),1,0))));
  85. /*Maximum High Today - (MHT)
  86. Today is the maximum High in the last 5 days*/
  87. MHT=  HHV(H,5)==H;
  88. /*Maximum High Yesterday - (MHY)
  89. Yesterday is the maximum High in the last 5 days*/
  90. MHY=   HHV(H,5)==Ref ( H, -1);
  91. /*Minimum Low Today - (MLT)
  92. Today is the minimum Low in the last 5 days*/
  93. MLT=   LLV(L,5)==L;
  94. /*Minimum Low Yesterday - (MLY)
  95. Yesterday is the minimum Low in the last 5 days*/
  96. MLY=   LLV(L,5)==Ref(L,-1);
  97. /*DOJI definitions*/
  98. /*Doji Today - (DT)*/
  99. DT = abs(C-O) <= (C*smallBodyMaximum) OR
  100. (abs(O-C)<=((H-L)*0.1));
  101. /* Doji Yesterday - (DY)*/
  102. DY = abs(Ref ( C, -1)-Ref(O,-1)) <= Ref ( C, -1) *smallBodyMaximum OR
  103. abs (Ref ( O, -1)-Ref(C,-1)) <= (Ref ( H, -1 ) - Ref ( L, -1 ) )*0.1;
  104. /**************************************************
  105.              BULLISH CANDLESTICKS
  106. *************************************************** */
  107. /* Abandoned Baby Bullish*/
  108. abandonedBabybullish =Ref(largeBody,-2) AND Ref(blackBody,-2)//Large black candle
  109.              AND Ref(GapDown(),-1)  
  110.              AND whiteBody AND LargeBody AND GapUp();//Large white candle
  111. /* Belt Hold*///Bad formula
  112. beltHoldBullish = largeBody AND smallLowerShadow AND whiteBody AND MLT;
  113. /*BreakAway Bullish*/
  114. breakAwayBullish=Ref(Largebody,-4) AND Ref(blackBody,-4)
  115.               AND Ref(blackBody,-3) AND Ref(O,-3)<Ref(C,-4)
  116.               AND Ref(smallbody,-2) AND Ref(C,-2)<Ref(C,-3)
  117.               AND Ref(C,-1)<Ref(C,-2)
  118.               AND LargeBody AND whiteBody AND C>Ref(O, -3) 
  119.               AND C<Ref(C,-4);
  120. /*Concealing Baby Swallow only one trade */
  121. ConcealingBabySwallow=Ref(marabuzu,-3) AND Ref(blackbody,-3) AND
  122.                       Ref(MArabuzu,-2) AND Ref(blackBody,-2) AND
  123.                       Ref(blackBody,-1) AND Ref(downGap,-1) AND 
  124.                       Ref(H,-1)>Ref(C,-2)AND Ref(blackbody,-1)AND 
  125.                       blackBody AND engulfing;
  126. /*Doji Star Bullish*/
  127. dojiStarBullish=(dojiStar AND (MLT OR MLY))OR 
  128.    (doji AND (C<Ref(C,-1) OR O<Ref(C,-1))AND Ref(blackBody,-1)
  129.     AND Ref(LargeBody,-1));
  130. /*Engulfing Bullish*/   
  131. engulfingBullish =
  132.     engulfing AND largeBody AND whiteBody AND 
  133.     (Ref(blackbody,-1) OR Ref(Doji,-1)) AND MLT;
  134. /*Hammer Bullish*/
  135. hammerBullish=Hammer AND (MLT OR MLY);
  136. /*Dragonfly Doji Bullish*/
  137. dragonflyDoji=smallBody AND LargeLowerShadow AND smallUpperShadow AND MLT;
  138. /* Harami Bullish*/
  139. haramiBullish = harami AND Ref (LargeBody,-1) AND Ref(blackBody,-1) AND
  140.                 NOT LargeBody AND whiteBody;
  141. /*Harami Cross*/
  142. HaramiCross=harami AND Ref(LargeBody,-1) AND Ref(blackBody,-1) AND doji; 
  143.        
  144. /* Homing Pigeon*/
  145. homingPigeon =  Ref(largeBody,-1) AND Ref(blackBody,-1) AND
  146.                 H<= Ref ( O, -1 ) AND L>=Ref( C, -1) AND C<O AND MLY;
  147. /*Inverted Hammer*/
  148. invertedHammer=shootingStar AND (MLT OR MLY);
  149. /* Meeting LinesBullish*/
  150. meetingLinesbullish= Ref(LargeBody,-1) AND Ref(blackBody,-1) AND
  151.                      LargeBody AND whiteBody AND
  152.                      C>Ref(C,-1)*0.9975 AND C< Ref(C,-1)*1.0025;
  153. /*Morning Doji Star*/
  154. morningDojiStar= Ref(LargeBody,-2) AND Ref(blackBody,-2) AND
  155.                  Ref(doji,-1) AND Ref(O,-1)<Ref(C,-2) AND
  156.                  whiteBody AND C>Ref(C,-2) AND MLY;
  157. /* Morning Star*/
  158. morningStar =Ref(largeBody,-2) AND Ref(blackBody,-2)//Large black candle 
  159.              AND Ref(downGap,-1)//Gap down yesterday
  160.              AND whiteBody AND LargeBody AND C>Ref(C,-2)//Large white candle today
  161.              AND MLY; //Yesterday was the low
  162. /* Piercing Line*/
  163. piercingLine= Ref(largeBody,-1) AND Ref(blackBody,-1)AND
  164.                O<Ref(L,-1) AND C>=(Ref(O,-1)+Ref(C,-1))/2 AND C<Ref(O,-1) AND MLT;
  165. /* Stick Sandwich*/
  166. stickSandwich=Ref(largeBody,-2) AND Ref(blackbody,-2) AND 
  167.               Ref(largeBody,-1) AND Ref(whiteBody,-1) AND
  168.               Ref(O,-1)>=Ref(C,-2) AND O>=Ref(C,-1) AND
  169.               abs(C-Ref(C,-2))<=C*0.0025;
  170. /*Three Inside Up harami confirming*/
  171. threeInsideUp =Ref(Haramibullish,-1) AND whiteBody AND 
  172.     largeBody AND C>Ref(C,-1);
  173. /* Three Outside Up Engulfing confirmation*/
  174. threeOutsideUp =Ref(engulfingBullish,-1) AND whiteBody AND C>Ref(C,-1);
  175. /* Three Stars in the South*///Rewrite???
  176. threeStarsInTheSouth=
  177.    Ref(LargeBody,-2) AND Ref(blackBody,-2) AND Ref(largelowerShadow,-2)
  178.    AND Ref(blackBody,-1) AND Ref(largeLowerShadow,-1) AND 
  179.    Ref(L,-1)>Ref(L,-2) AND blackBody AND smallUpperShadow AND
  180.    smallLowerShadow AND L>Ref(L,-1) AND H<Ref(H,-1);
  181. /* Tri-Star Bullish*/
  182. triStarBullish=Ref(doji,-2) AND Ref(doji,-1) AND doji AND MLY AND
  183.    Ref(downgap,-1) AND upGap;
  184. /* Three River Bottom Bad formula*/
  185. threeriverBottom=Ref(largeBody,-2) AND Ref(blackBody,-2) AND
  186.                  Ref(blackbody,-1) AND Ref(Largelowershadow,-1) AND
  187.                  Ref(O,-1)<Ref(O,-2) AND Ref(C,-1)>Ref(C,-2) AND
  188.                  whiteBody AND C<Ref(C,-1) AND MLY;   
  189.                   
  190. /* Mat Hold Bullish*/
  191. MAtHoldBullish=Ref(LargeBody,-4) AND Ref(whiteBody,-4)//1st day
  192.    AND Ref(blackBody,-3) AND Ref(upGap,-3) AND NOT Ref(LargeBody,-3)
  193.    AND NOT Ref(LargeBody,-2) AND Ref(C,-2)<Ref(C,-3) AND Ref (O,-2)<Ref(O,-3) AND 
  194.    Ref(C,-2)>Ref(O,-4) AND NOT Ref(LargeBody,-1) AND Ref(C,-1)<Ref(C,-2)
  195.    AND LargeBody AND whiteBody AND C>Ref(C,-4); 
  196. /*RisingThreeMethods*/
  197. risingThreeMethods=Ref(LargeBody,-4) AND Ref(whiteBody,-4) AND NOT
  198.   Ref(LargeBody,-3) AND NOT Ref(LargeBody,-2)AND NOT Ref(LargeBody,-1) AND
  199.   Ref(C,-3)<Ref(C,-4) AND Ref(C,-2)<Ref(C,-3) AND Ref(C,-1)<Ref(C,-2) AND
  200.   LargeBody AND whitebody AND C>Ref(C,-4);
  201. /* Seperating Lines Bullish*/
  202. separatingLinesBullish=Ref(blackBody,-1) AND whiteBody AND LargeBody AND
  203. smallLowerShadow AND MHT AND abs(O-Ref(O,-1))<=O*0.0025;
  204. /*Side by Side White Lines*/
  205. sideBySideWhiteLines=NOT Ref(smallBody,-2) AND Ref(whiteBody,-2) 
  206.    AND Ref(upGap,-1) AND Ref(whitebody,-1)AND whiteBody AND
  207.    identicalBodies AND abs(O-Ref(O,-1))<O*0.0025;
  208. /*Three White Soldiers*/
  209. threeWhiteSoldiers=NOT Ref(smallbody,-2) AND Ref(whiteBody,-2) AND NOT
  210.    Ref(smallBody,-1) AND Ref(whiteBody,-1) AND NOT
  211.    smallBody AND whiteBody AND C>Ref(C,-1) AND Ref(C,-1)>Ref(C,-2) AND
  212.    Ref(O,-1)>Ref(O,-2) AND Ref(O,-1)<Ref(C,-2) AND O<Ref(C,-1) AND
  213.    O>Ref(O,-1) AND Ref(smallUpperShadow,-2) AND
  214.    Ref(smallUpperShadow,-1) AND smallUppershadow AND LLV(L,12)==Ref(L,-2);
  215. /*Upside Gap Three Methods not very good*/
  216. upsideGapThreeMethods=Ref(Largebody,-2) AND Ref(whiteBody,-2) AND
  217.    Ref(LargeBody,-1) AND Ref(whiteBody,-1) AND Ref(upGap,-1) AND
  218.    blackBody AND O>Ref(O,-1) AND C<Ref(C,-2)AND C>Ref(O,-2) AND 
  219.   MHY;
  220. /*Three Line Strike not good signals*/
  221. threeLineStrike=NOT Ref(smallBody,-3) AND NOT Ref(smallBody,-2) AND 
  222.    NOT Ref(smallBody,-1) AND Ref(whiteBody,-3) AND Ref(whiteBody,-2) AND
  223.    Ref(whiteBody,-1) AND Ref(C,-1)>Ref(C,-2) AND Ref(C,-2)>Ref(C,-3) AND
  224.    blackBody AND O>Ref(C,-1) AND C<Ref(O,-3);
  225. /*Tweezer Bottom*/
  226. tweezerBottom= (abs(L-Ref(L,-1))/L<0.0025 OR
  227.                abs(L-Ref(L,-2))/L<0.0025)
  228.                AND (MLT OR MLY); 
  229. /*Upside Tasuki Gap*/
  230. upsideTasukiGap=Ref(largeBody,-2) AND Ref(largeBody,1) AND
  231.    Ref(whiteBody,-2) AND Ref(whiteBody,-1) AND Ref(upGap,-1) AND
  232.    blackBody AND O>Ref(O,-1) AND C<Ref(O,-1) AND C>Ref(C,-2) AND
  233.    identicalBodies AND O<Ref(C,-1);
  234.    //AND HHV(H,5)==Ref(H,-1); Do not use this line
  235. /*****************************************
  236.             BEARISH CANDLESTICKS
  237. ******************************************/
  238. /*Abandoned Baby Bearish*/
  239. AbandonedBabyBearish=Ref(LargeBody,-2) AND Ref(whiteBody,-2) AND
  240.    Ref(smallBody,-1) AND Ref(GapUp(),-1) AND GapDown() AND 
  241.    NOT smallBody AND blackBody AND MHY;
  242. /*Advance Block Bearish*/
  243. AdvanceBlockBearish=Ref(LargeBody,-2) AND Ref(whiteBody,-2) 
  244.     AND Ref(whiteBody,-1) AND
  245.    whiteBody AND Ref(O,-1)>Ref(O,-2) AND Ref(O,-1)<Ref(C,-2) AND
  246.    Ref(C,-1)>Ref(C,-2) AND C>Ref(C,-1) AND
  247.    O<Ref(C,-1) AND O>Ref(O,-1) AND Ref(LargeUpperShadow,-1) AND LargeUpperShadow
  248.    AND C-O<Ref(C,-1)-Ref(O,-1) AND Ref(C,-1)-Ref(O,-1) < Ref(C,-2)-Ref(O,-2);
  249. /*Belt Hold Bearish*/
  250. beltHoldBearish=LargeBody AND BlackBody AND smalluppershadow AND MHT;
  251. /*Breakaway Bearish*/
  252. breakAwayBearish=Ref(LargeBody,-4) AND Ref(whiteBody,-4) AND
  253.    Ref(GapUp(),-3) AND Ref(whiteBody,-3) AND 
  254.    Ref(smallbody,-2) AND Ref(smallBody,-1) AND
  255.    blackBody AND O>Ref(O,-3) AND C<Ref(C,-4);
  256. /*Dark Cloud Cover*/
  257. darkCloudCover=Ref(LargeBody,-1) AND Ref(whiteBody,-1) AND
  258.    blackBody AND O>Ref(H,-1) AND C>Ref(O,-1) AND C<(Ref(O,-1)+Ref(C,-1))/2
  259.    AND MHT;
  260. /*Deliberation Bearish: needs confirmation*/
  261. deliberationBearish=Ref(LargeBody,-2) AND Ref(whiteBody,-2) AND
  262.    Ref(LargeBody,-1) AND Ref(whiteBody,-1) AND Ref(C,-1)>Ref(C,-2) AND
  263.    smallbody AND upGap;
  264. /*CounterAttackBearish*/
  265. CounterAttackBearish=MHT AND LargeBody AND blackbody AND
  266.    Ref(largeBody,-1) AND Ref(whiteBody,-1) AND
  267.    C<Ref(C,-1)*1.0025 AND C>Ref(C,-1)*0.9975;;
  268. /*Doji Star Bearish*/
  269. dojiStarBearish=(dojiStar AND (MHT OR MHY))OR 
  270.    (doji AND (C>Ref(C,-1) OR O>Ref(C,-1))AND Ref(whiteBody,-1)
  271.     AND Ref(LargeBody,-1));
  272. /*Engulfing Bearish*/
  273. engulfingBearish=engulfing AND largeBody AND blackBody AND 
  274.     (Ref(whitebody,-1) OR Ref(Doji,-1))AND (MHT OR MHY);
  275. /*Evening Doji Star check formula???*/
  276. eveningDojiStar=Ref(LargeBody,-2) AND Ref(whiteBody,-2) AND
  277.    Ref(dojiStar,-1) AND Ref(GapUp(),-1) AND (MHY OR MHT);
  278. /*Evening Star*/
  279. eveningStar=Ref(LargeBody,-2) AND Ref(whiteBody,-2) AND
  280.    Ref(upGap,-1) AND NOT Ref(largeBody,-1) AND blackBody AND NOT smallBody AND
  281.    (MHT OR MHY);
  282. /*Hammer Bearish*/
  283. HammerBearish=Hammer AND HHV(H,8)==H;
  284. /*hangingMan*/
  285. HangingMan=NOT largeBody AND smallUpperShadow AND LargeLowerShadow AND MHT;
  286. /*dragonfly Doji Bearish*/
  287. dragonflyDojiBearish=doji AND smallUpperShadow AND LargeLowerShadow AND MHT;
  288.    
  289. /*Harami Bearish-*/
  290. HaramiBearish=harami AND Ref(Largebody,-1) AND Ref(whiteBody,-1)AND blackBody 
  291. AND (MHY OR MHT);
  292. /*HaramiCross Bearish*/
  293. HaramiCrossBearish=harami AND doji AND Ref(whiteBody,-1) AND Ref(Largebody,-1);
  294. /*Identical three black crows*/
  295. idendicalThreeBlackCrows=Ref(blackBody,-2) AND Ref(blackBody,-1) AND blackBody AND
  296.    abs(Ref(C,-2)-Ref(O,-1))<Ref(C,-1)*0.0025 AND abs(Ref(C,-1)-O)<O*0.0025 AND
  297.    HHV(H,20)==Ref(H,-2) AND NOT Ref(doji,-2) AND NOT Ref(doji,-1) AND NOT doji AND
  298.    Ref(smallLowerShadow,-2) AND Ref(smallLowerShadow,-1) AND smallLowerShadow;
  299. /*Kicking Bearish No trades*/
  300. kickingBearish=Ref(whiteBody,-1) AND Ref(MArabuzu,-1) AND blackBody AND MArabuzu    AND GapDown();
  301. /*Meeting Lines Bearish*/
  302. MeetingLinesBearish=Ref(LargeBody,-1) AND Ref(whiteBody,-1) AND
  303.   HHV(C,8)==Ref(C,-1) AND LargeBody AND blackBody AND 
  304.   abs(C-Ref(C,-1))<C*0.0025;
  305. /*ShootingStar*/
  306. shootingStarGap=shootingStar AND GapUp() AND MHT;
  307. /*Gravestone Doji*/
  308. gravestoneDoji=doji AND largeUpperShadow AND smallLowerShadow AND GapUp()AND MHT;
  309. /*Three Inside Down Bearish*/
  310. threeInsideDownBearish=Ref(HaramiBearish,-1) AND blackBody AND C<Ref(C,-1)AND    smallUpperShadow;
  311. /*Three Outside Down Bearish*/
  312. threeoutsideDownBearish=Ref(engulfingBearish,-1) AND blackBody AND C<Ref(C,-1)AND
  313.    NOT LargeUpperShadow;
  314. /*Tri Star Bearish*/
  315. triStarBearish=Ref(doji,-2) AND Ref(doji,-1) AND doji AND MHY AND Ref(upGap,-1)AND    downGap;
  316. /*Two Crows Bearish*/
  317. twoCrows=Ref(whiteBody,-2) AND Ref(LargeBody,-2) //first day
  318.    AND Ref(blackBody,-1) AND Ref(upGap,-1)//Second Day
  319.    AND blackBody AND O<Ref(O,-1) AND O>Ref(C,-1)AND C<Ref(C,-2) AND 
  320.    C>Ref(O,-2) AND MHY;//Third day
  321. /*Upside Gap Two Crows*/
  322. upsideGapTwoCrows= Ref(whiteBody,-2) AND Ref(LargeBody,-2)// first day
  323.    AND Ref(upGap,-1) AND Ref(blackBody,-1) // 2nd day
  324.    AND blackbody AND O>Ref(O,-1) AND C<Ref(C,-1) AND C>Ref(C,-2);
  325. /*Doji Star Bearish needs confirmation
  326. dojiStarBearish=Ref(LargeBody,-1) AND Ref(whiteBody,-1) // first day
  327.    AND doji AND upGap AND MHT;*/
  328. /* Downside Gap Three Methods*/
  329. downsideGapThreeMethods=
  330.      Ref(LargeBody,-2) AND Ref(blackBody,-2) AND Ref(downGap,-2) //first day
  331.      AND Ref(LargeBody,-1) AND Ref(blackBody,-1)//2nd day
  332.      AND whitebody AND O<Ref(O,-1) AND C>Ref(C,-2)
  333.      AND LLV(L,8)==Ref(L,-1);
  334. /*Downside Tasuki Gap*/
  335. downsideTasukiGap=
  336.    Ref(blackBody,-2)//first day
  337.    AND Ref(blackbody,-1) AND Ref(downgap,-1) //2nd day
  338.    AND whiteBody AND O<Ref(O,-1) AND O>Ref(C,-1) AND C>Ref(O,-1) AND C<Ref(C,-2)
  339.    AND Ref(identicalBodies,-1)                                                                                                                   
  340.    AND LLV(L,15)==Ref(L,-1);
  341. /*Falling Three Meothods*/
  342. fallingThreeMethods=Ref(LargeBody,-4) AND Ref(blackBody,-4) AND
  343.   /*Ref(doji,-3) AND Ref(doji,-2) AND Ref(doji,-1) AND*/ Ref(C,-1)>Ref(C,-2) 
  344.   AND Ref(C,-2)>Ref(C,-3) AND LargeBody AND blackBody AND O>Ref(C,-4) AND
  345.   O<Ref(O,-4) AND C<Ref(O,-4)AND C<Ref(C,-4);
  346. /*In Neck Bearish not good*/
  347. inNeckBearish=Ref(LargeBody,-1) AND Ref(blackBody,-1) AND
  348.    whiteBody AND O<Ref(L,-1) AND C<Ref(C,-1)*1.0005 AND C>=Ref(C,-1);
  349. /*On Neck Bearish not good*/
  350. OnNeckBearish=Ref(LargeBody,-1) AND Ref(blackBody,-1) AND
  351.    whiteBody AND O<Ref(L,-1) AND C<Ref(L,-1)*1.0025 AND C>=Ref(L,-1)*0.9975;
  352. /*separating Lines Bearish*/
  353. separatingLinesBearish=Ref(LargeBody,-1) AND Ref(whiteBody,-1) AND
  354.    blackBody AND O>Ref(O,-1)*0.9975 AND O<=Ref(O,-1)*1.0025;
  355. /*Side By Side White Lines Bearish*/
  356. sideBySideWhiteLinesBearish=NOT Ref(smallBody,-2) AND Ref(blackBody,-2) AND  
  357.    Ref(whiteBody,-1) AND whiteBody AND Ref(downGap,-1) AND identicalBodies
  358.   AND abs(C-Ref(C,-1)<C*0.0025);
  359. /*Three Black Crows*/
  360. threeBlackCrows=Ref(blackBody,-2) AND Ref(blackBody,-1) AND blackBody  AND Ref(C,-1)<Ref(C,-2) AND C<Ref(C,-1) AND HHV(H,8)==Ref(H,-2) AND NOT Ref(doji,-2) AND NOT Ref(doji,-1) AND NOT doji;;
  361.    
  362. /*Three Line Strike no trades*/
  363. threeLineStrike=threeBlackCrows AND whiteBody AND O<Ref(C,-1) AND C>Ref(O,-3);
  364. /*Thrusting Bearish*/
  365. thrustingBearish=Ref(blackBody,-1) AND Ref(LargeBody,-1) AND LargeBody AND
  366.    whitebody AND O<Ref(L,-1) AND C<(Ref(O,-1)+Ref(C,-1))/2 AND C>Ref(C,-1);
  367. /*Tweezer Top*/
  368. tweezerTop= (abs(H-Ref(H,-1))/H<0.0025 OR
  369.                abs(H-Ref(H,-2))/H<0.0025)
  370.                AND (MHT OR MHY); 
  371. /* ***********************************************
  372.                   Buy Rules
  373. **************************************************/
  374. Buy=
  375. abandonedBabybullish OR
  376. beltHoldBullish OR
  377. breakAwayBullish OR
  378. ConcealingBabySwallow OR 
  379. engulfingBullish OR
  380. hammerBullish OR
  381. dragonflyDoji OR
  382. dojiStarBullish OR
  383. haramiBullish OR
  384. HaramiCross OR
  385. homingPigeon OR
  386. invertedHammer OR
  387. meetingLinesbullish OR
  388. morningDojiStar OR
  389. morningStar OR
  390. piercingLine OR
  391. stickSandwich OR
  392. threeInsideUp OR
  393. threeOutsideUp OR
  394. threeStarsInTheSouth OR   
  395. triStarBullish OR
  396. threeriverBottom OR
  397. MAtHoldBullish OR
  398. risingThreeMethods OR
  399. separatingLinesBullish OR
  400. sideBySideWhiteLines OR
  401. threeWhiteSoldiers OR
  402. upsideGapThreeMethods OR
  403. threeLineStrike OR
  404. tweezerBottom OR
  405. upsideTasukiGap;
  406. /************************************
  407.                     Sell Rules
  408. *************************************/
  409. Sell=
  410. AbandonedBabyBearish OR
  411. advanceBlockBearish OR
  412. beltHoldBearish OR
  413. breakAwayBearish OR
  414. darkCloudCover OR
  415. deliberationBearish OR
  416. CounterAttackBearish OR
  417. engulfingBearish OR
  418. eveningDojiStar OR
  419. eveningStar OR
  420. HangingMan OR
  421. dragonflyDojiBearish OR
  422. HammerBearish OR
  423. HaramiBearish OR
  424. HaramiCrossBearish OR
  425. idendicalThreeBlackCrows OR
  426. kickingBearish OR
  427. MeetingLinesBearish OR
  428. shootingStarGap OR
  429. gravestoneDoji OR
  430. threeInsideDownBearish OR
  431. threeoutsideDownBearish OR
  432. triStarBearish OR
  433. twoCrows OR
  434. upsideGapTwoCrows OR
  435. dojiStarBearish OR
  436. downsideGapThreeMethods OR
  437. downsideTasukiGap OR
  438. fallingThreeMethods OR
  439. inNeckBearish OR
  440. OnNeckBearish OR
  441. separatingLinesBearish OR
  442. sideBySideWhiteLinesBearish OR
  443. threeBlackCrows OR
  444. threeLineStrike OR
  445. thrustingBearish OR
  446. tweezerTop;
  447. /***************************************
  448.               Commentary
  449. ***************************************
  450.             Bullish Candles
  451. ****************************************/
  452. WriteIf(abandonedBabybullish,"Abandoned Baby Bullish. A reversal pattern.nLiWick reliability : High.","");
  453. WriteIf(beltHoldBullish,"Belt Hold Bullish. A reversal pattern.nNison:The larger the candlestick, the more significant it is.nLitWick Reliability: Low.","");
  454. WriteIf(breakAwayBullish,"Break Away Bullish. A reversal pattern.nLitWick reliability: moderate.","");
  455. WriteIf(ConcealingBabySwallow,"Concealing Baby Swallow. A reversal pattern.n LitWick reliability: high.","");
  456. WriteIf(dojiStarBullish,"Bullish doji Star. A reversal pattern.nNison: Needs confirmation. Better at calling tops.nLitWick reliability: moderate.","");
  457. WriteIf(engulfingBullish,"Bullish Engulfing. a reversal pattern.nNison: Factors increasing the pattern's effectiveness aren1) The first day has a small real body and the second day has a large real body.n2) Pattern appears after protracted or very fast move.n3) Heavy volume on second real body.n4) The second day engulfs more than one real body.nLitWick reliability: moderate","");
  458. WriteIf(hammerBullish,"Bullish Hammer. A reversal pattern.nNison: The longer the lower shadow, the smaller the upper shadow, and the smaller the real body, the more significant the pattern.White real body more bullish than black body.nLitWick reliability: low.","");
  459. WriteIf(dragonflyDoji,"Dragonfly Doji. LitWick reliability: moderate.","");
  460. WriteIf(haramiBullish, "Harami Bullish. A reversal pattern.nNison: Less significant. Pattern needs confirmation.nLitWick reliability: low.","");
  461. WriteIf(HaramiCross,"Harami Cross. A reversal pattern.nNison: Better indicator than Harami. Better at calling tops than bottoms.nLitWick reliability: low.","");
  462. WriteIf(homingPigeon,"Homing Pigeon. A reversal pattern.nLitWick reliability: moderate.","");
  463. WriteIf(invertedHammer,"Inverted Hammer. A reversal pattern.nNison:Needs bullish verification.nLitWick reliability: low.","");
  464. WriteIf(meetingLinesbullish,"Meeting Lines bullish. A reversal pattern.nLitWick reliability: moderate.","");
  465. WriteIf(morningDojiStar,"Morning Doji Star. A reversal pattern.nImportant reversal signal.nLitWick reliability: high.","");
  466. WriteIf(morningStar,"Morning Star. A reversal pattern.nNison: The stronger the white third body the better.nLitWick reliability: high.","");
  467. WriteIf(piercingLine,"Piercing Line. A reversal pattern.nNison: A stron reversal pattern.nLitWick reliability: moderate.","");
  468. WriteIf(stickSandwich,"Stick Sandwich. A reversal pattern.nLitWick reliability: moderate.","");
  469. WriteIf(threeInsideUp,"3 Inside Up. A reversal pattern.nLitWick reliability: high.","");
  470. WriteIf(threeOutsideUp,"3 Outside Up. A reversal pattern.nLitWick reliability: high.","");
  471. WriteIf(threeStarsInTheSouth,"3 Stars in the South. A reversal pattern.nLitWick reliability: moderate.","");
  472. WriteIf(triStarBullish,"Tri-Star Bullish. A reversal pattern.nNison: Significant reversal pattern.nLitWick reliability: moderate.","");
  473. WriteIf(threeriverBottom,"3 River Bottom. A reversal pattern.nNison: Selling pressure drying up.nLit Wick reliability: moderate.","");
  474. WriteIf(MAtHoldBullish,"Mat Hold Bullish. A continuation pattern.nNison: May have 2-4 black candles.nLitWick reliability: high. ","");
  475. WriteIf(risingThreeMethods,"Rising Three Methods. A continuation pattern>nNison: Has more significance if volume of white candle sticks is greater than on black candlesticks.nLitWick reliability: high.","");
  476. WriteIf(separatingLinesBullish,"Separating Lines Bullish. A continuation pattern.nNison:    nLitWick reliability: low.","");
  477. WriteIf(sideBySideWhiteLines,"Side by Side White Lines. A continuation pattern.nNison: If occurring during a downtrend may only be short covering.nLitWick reliability: high.","");
  478. WriteIf(threeWhiteSoldiers,"3 White Soldiers. A continuation pattern.nNison: Positive, but be aware of negative similar stalled pattern and advance block pattern.nLitWick reliability: high.","");
  479. WriteIf(upsideGapThreeMethods,"Upside Gap 3 Methods. A continuation pattern.nLitWick reliability: moderate.","");
  480. WriteIf(threeLineStrike,"3 Line Strike. A continuation pattern.nLitWick reliability: low.","");
  481. WriteIf(tweezerBottom,"Tweezer Bottom.a reversal pattern. With other reversal candles it could indicate a support level.nNison: Needs confirmation.","");
  482. WriteIf(upsideTasukiGap,"Upside Tasuki Gap. A continuation pattern.nNison: the real bodies of the two candlesticks in the gap should be about the same size.nLitWick reliability: moderate.","");
  483. /***************************************
  484.                  Bearish Candles
  485. ********************************************/
  486. WriteIf(AbandonedBabyBearish,"Abandoned Baby Bearish. A reversal pattern.nNison: Extremely rare.nLitWick reliability: high.","");
  487. WriteIf(advanceBlockBearish,"Advancing Block Bearish. A reversal pattern.nNison: Rally is in trouble. Signs of weakening could be progressively smaller white read bodies or relatibvely long upper shadows on the last two white candlesticks.Not necessarily a reversal pattern.nLitWick Reliability: moderate.","");
  488. WriteIf(beltHoldBearish,"Belt Hold Bearish. A reversal pattern.nNison: The longer the height of the belt-hold candle the more significant the pattern.nLitWick reliability: low.","");
  489. WriteIf(breakAwayBearish,"Break Away Bearish. A reversal pattern.nLitWick reliability: moderate.","");
  490. WriteIf(darkCloudCover,"Dark Cloud Cover. A reversal pattern.nNison: Factors indicating the importance of this signal are/n1)The greater the penetration of the first candle by the second.n2)Both candles are marabozus.n3)The second body opens above a major resistance level.n4)High volume on the second day.nLitWick Reliability: high.","");
  491. WriteIf(deliberationBearish,"Deliberation Bearish. A reversal pattern.nNison: Not a reversal pattern, but a sign the rally is weakening.nLitWick reliability: moderate.","");
  492. WriteIf(CounterAttackBearish,"Counter Attack Bearish.nNison: A potential stalling of the rally.","");
  493. WriteIf(engulfingBearish,"Engulfing Bearish. A reversal pattern.nNison: Major reversal signal. Factors increasing patterns importance aren1) The first day has a very small real body and the second day a very large real body.n2) The pattern apears after a protracted or very fast move.n3) Heavy volume on the second day.n4) The second day engulfs more than one real body.nLitWick reliability: moderate.","");
  494. WriteIf(eveningDojiStar,"Evening Doji Star A reversal pattern.nNison: Must be confirmed by long black candle.nLit Wick reliability: high","");
  495. WriteIf(eveningStar,"Evening Star. a reversal pattern.nNison: Gap between second and third bodies does not always occur.nLitWick reliability: high.","");
  496. WriteIf(HammerBearish,"Bearish Hammer. a reversal pattern.nNison: More bearish if hammer is black. Needs bearish confirmation. A large gap down on the following day would be a good confirmation.","");
  497. WriteIf(HangingMan,"Hanging Man. A reversal pattern.nNison: Same as bearish hammer with a large gap down the following day.nLitWick reliability: low.","");
  498. WriteIf(dragonflyDojiBearish,"Dragonfly Bearish. A reversal pattern.nNison: Same as Hanging Man.nLitWick reliability: moderate.","");
  499. WriteIf(HaramiBearish,"Harami Bearish. A reversal pattern.nNison: Not as significant a reversal pattern as hanging man or engulfing.nLitWick reliability: low.","");
  500. WriteIf(HaramiCrossBearish,"Harami Cross Bearish. A reversal pattern.nNison: More significant reversal pattern than Harami. Second day can be white or black.nLitWick reliability: moderate.","");
  501. WriteIf(idendicalThreeBlackCrows,"Identical 3 Black Crows. A reversal pattern in an uptrend.nNison:Very bearish.nLitWick reliability: high. ","");
  502. WriteIf(kickingBearish,"Kicking Bearish. A reversal pattern.nLitWick reliability: high.","");
  503. WriteIf(MeetingLinesBearish,"Meeting Lines Bearish. A reversal pattern.nNison:  nLitWick reliability: moderate, but not as strong as Dark cloud Cover.","");
  504. WriteIf(shootingStarGap,"Shooting Star. a reversal pattern.nNison:Not major reversal signal as evening star. Ideally real body would gap away from previous body. Needs to appear after an uptrend.nLitWick reliability: low.","");
  505. WriteIf(gravestoneDoji,"Gravestone Doji A reversal pattern.nNison: more significant if it hits new high.nLitWick reliability: moderate.","");
  506. WriteIf(threeInsideDownBearish,"3 Inside Down. A reversal pattern.nNison:  nLitWick reliability: high.","");
  507. WriteIf(threeoutsideDownBearish,"3 Outside Down. A reversal pattern.nLitWick reliability: high.","");
  508. WriteIf(triStarBearish,"Tri-Star Bearish. A reversal pattern.nNison: Very significant reversal pattern.nLitWick reliability: moderate.","");
  509. WriteIf(twoCrows,"2 Crows A reversal pattern.nLitWick reliability: moderate.","");
  510. WriteIf(upsideGapTwoCrows,"Upside Gap 2 Crows. A reversal pattern.nNison:Needs confirmation of a continued reversal on third day.nLitWick reliability: high.","");
  511. WriteIf(dojiStarBearish,"Doji Star Bearish. A reversal pattern.nNison: needs confirmation.nLitWick reliability: moderate.","");
  512. WriteIf(downsideGapThreeMethods,"Downside Gap 3 Methods. A continuation pattern.nNison: nLitWick reliability: moderate.","");
  513. WriteIf(downsideTasukiGap,"Downside Tasuki Gap. A continuation method.NNison: If last day closes window, continuation pattern is negated.nLitWick reliability: moderate.","");
  514. WriteIf(fallingThreeMethods,"Falling 3 Methods. A continuation pattern.nNison:  nLitWick reliability: high.","");
  515. WriteIf(inNeckBearish,"In Neck Bearish. A continuatin pattern.nNison: Similar to piercing pattern but bearish because there is no penetration of second day.nLitWick reliability: moderate.","");
  516. WriteIf(OnNeckBearish,"On Neck Bearish. A continuation pattern. Similar to piercing pattern but bearish beccause there is no penetration of the second day.nLitWick reliability: moderate.","");
  517. WriteIf(separatingLinesBearish,"Separating Lines Bearish","");
  518. WriteIf(sideBySideWhiteLinesBearish,"Side by Side White Lines Bearish. A continuation pattern.nNison: very rare.nLitWick reliability: moderate.","");
  519. WriteIf(threeBlackCrows,"3 Black Crows. A reversal pattern.nNison: Need to appear after a mature advance.nLitWick reliability: high.","");
  520. WriteIf(threeLineStrike,"3 Line Strike. A continuation pattern.nLitWick reliability: low.","");
  521. WriteIf(thrustingBearish,"Thrusting. A continuation pattern.nNison: Not a reversal day because second day does not pierce midpoint of first day.nLitWick reliability: low.","");
  522. WriteIf(tweezerTop,"Tweezer Top. A reversal pattern.nNison: Needs confirmation.","");
  523. /***********************************************
  524.                End Commentary
  525. ************************************************/