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

金融证券系统

开发平台:

Others

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