Against all odds.afl
上传用户:shiqiang
上传日期:2009-06-12
资源大小:1289k
文件大小:10k
源码类别:

金融证券系统

开发平台:

Others

  1. //------------------------------------------------------------------------------
  2. //
  3. //  Formula Name:    Against all odds
  4. //  Author/Uploader: hostyle 
  5. //  E-mail:          hostyle@ifrance.com
  6. //  Date/Time Added: 2001-06-20 13:49:09
  7. //  Origin:          France
  8. //  Keywords:        
  9. //  Level:           medium
  10. //  Flags:           system,exploration,commentary
  11. //  Formula URL:     http://www.amibroker.com/library/formula.php?id=29
  12. //  Details URL:     http://www.amibroker.com/library/detail.php?id=29
  13. //
  14. //------------------------------------------------------------------------------
  15. //
  16. //  Against all odds. Written by Thierry HUITEL. Based on Jim Varney's work--
  17. //  CANDLESTOCHASTICS-- , and all the amibroker group :-).This Exploration is a
  18. //  scan for 24 different buy or sell signals that selects days when several
  19. //  bullish or bearish indicators are triggered at the same time.
  20. //
  21. //------------------------------------------------------------------------------
  22. /*Against all odds (draft). Written by Thierry HUITEL o-l---} */
  23. /* based on Jim Varney's work-- CANDLESTOCHASTICS-- */
  24. /*and all the amibroker group :-) */
  25. /*
  26. This Exploration is a scan for 24 different buy or sell signals.
  27. The odds are 1 of 6 to get a TWO with a dice. If you try 1000 times, the odds are more than 99%.
  28. The aim of the exploration is to find days when many bullish or bearish signs are triggered at the same time. If 5 indicators give a buy advice, it is more reliable than one.
  29. I invite everybody to add your own systems to these ones, to improve the reliability. And experimented technical analysts could give advices to avoid the trap of using several different indicators all working off the same input data.
  30. Vol Index: this column is the ratio of today's volume to the 14-day average volume.
  31. This column should be sorted Descending. The best signals are occur when VolIndex is at least 2 or higher.
  32. PCL[up]: Piercing Line, "up" signifies Bullish.
  33. MDS[up]: Morning Doji Star
  34. BLE[up]: Bullish Engulfing
  35. HAM[up]: Hammer
  36. BRE[dn]: Bearish Engulfing, "dn" signifies Bearish.
  37. DCC[dn]: Dark Cloud Cover
  38. EDS[dn]: Evening Doji Star
  39. TDREI[up] & [dn]: Tom DeMark's Range Expansion Index 
  40. KUP[up] & [dn]: Keltner Bands -DIMITRIS TSOKAKIS
  41. RSI[up] & [dn]: Relative Strength Index 14 periods
  42. MFI[up] & [dn]: Money Flow Index
  43. ST2[up] & [dn]: Stochastic Slow - Donald Dalley
  44. DIV[up] & [dn]: % R divergence  -DIMITRIS TSOKAKIS
  45. KST[up] & [dn]: MARTIN PRING'S KST MOMENTUM SYSTEM -TJ
  46. COP[up]: Coppock Curve TJ
  47. SMH[up] & [dn]: smash day pattern. DIMA
  48. CHK[up] & [dn]: Chaikin Money Flow. Thierry Huitel
  49. A "1" in the column signifies TRUE, a "0" indicates no signal.
  50. ------------------------------------------------------------------*/
  51. "Commentaires sur  " + name() +" pour le  "+date();
  52. /* Minimum Price and 14 day Avg Volume Values for Filter */
  53. minPrice = 3;     //change as needed
  54. minVol = 50000;   //change as needed
  55. VolAvg = ma( v, 14 );
  56. VolumeIdx = v / VolAvg;
  57. AvgRange = sum( abs(O-C),15 )/15;
  58. /* Candle Codes */
  59. White = iif((C>O) AND ((C-O)>=0.8*(H-L)),1,0) AND (C-O)>AvgRange;
  60. Black = iif((C<O) AND ((O-C)>=0.8*(H-L)),1,0) AND (O-C)>AvgRange;
  61. Doji  = iif(abs(O-C)<=0.1*(H-L),1,0);
  62. /* Dark Cloud Cover [Bear] */
  63. DCC = iif(ref(White, -1) AND Black AND C<=ref(((H+L)/2),-1)
  64. AND O>ref(C,-1), 1,0);
  65. /* Piercing Line [Bull] */
  66. PL = iif(ref(Black, -1) AND White AND C>=ref(((H+L)/2),-1)
  67. AND O<ref(C,-1), 1,0);
  68. /* Evening Doji Star [Bear] */
  69. EDS = iif(ref(White, -2) AND ref(Doji, -1) AND Black AND
  70. C<=ref(((H+L)/2),-2), 1,0);
  71. /* Morning Doji Star [Bull] */
  72. MDS = iif(ref(Black, -2) AND ref(Doji, -1) AND White AND
  73. C>=ref(((H+L)/2),-2), 1,0);
  74. /* Hammer [Bull] */
  75. HAM = iif( (H-L > 1.5*AvgRange) AND (C > (H+L)/2)  AND (O > C) AND 
  76. (VolumeIdx > 2), 1, 0);
  77. /* Bearish Engulfing */
  78. BRE = iif(Black AND ref(White, -1) AND (C < ref(O, -1))  AND (O > ref(C, -1)), 1,0);
  79. /* Bullish Engulfing */
  80. BLE = iif(White AND ref(Black, -1) AND (C > ref(O,-1))  AND (O < ref(C,-1)), 1,0);
  81. /* Stochastics 14-4 */
  82. ss = ma(stochk(14),4);
  83. StochBuy = iif(ss<=20, 1, 0);
  84. StochSell = iif(ss>=80, 1, 0);
  85. /* TDREI */
  86. HighMom = H - Ref( H, -2 );
  87. LowMom = L - Ref( L, -2 );
  88. Cond1 = ( H >= Ref( L,-5) OR H >= Ref( L, -6 ) ); 
  89. Cond2 = ( Ref( H, -2 ) >= Ref( C, -7 ) OR Ref( H, -2 ) >= Ref( C, -8 ) ); 
  90. Cond3 = ( L <= Ref( H, -5 ) OR L <= Ref( H, -6) ); 
  91. Cond4 = ( Ref( L, -2 ) <= Ref( C, -7 ) OR Ref( L, -2 ) <= Ref( C, -8 ) );
  92. Cond = ( Cond1 OR Cond2 ) AND ( Cond3 OR Cond4 );
  93. Num = IIf( Cond, HighMom + LowMom, 0 );
  94. Den = Abs(  HighMom ) + Abs( LowMom );
  95. TDREI = 100 * Sum( Num, 5 )/Sum( Den, 5 ) ;
  96. tdreiBuy = iif(TDREI<=-95, 1, 0);
  97. tdreiSell = iif(TDREI>=95, 1, 0);
  98. /* KUP */
  99. KUP=EMA((H+L+C)/3,10)+EMA(H-L,10);
  100. KDOWN=EMA((H+L+C)/3,10)-EMA(H-L,10);
  101. kupBuy = iif(CROSS(C,KDOWN), 1, 0);
  102. kupSell = iif(CROSS(KUP,C), 1, 0);
  103. /*RSI*/
  104. vrsi= rsi(14);
  105. rsiBuy = iif(CROSS(vrsi,30), 1, 0);
  106. rsiSell = iif(CROSS(70,vrsi), 1, 0);
  107. /*MFI*/
  108. mfiBuy = iif(CROSS(mfi(),30), 1, 0);
  109. mfiSell = iif(CROSS(70,mfi()), 1, 0);
  110. /*STO2*/
  111. lookback = 14;
  112. buyrange = 30;
  113. sellrange = 70;
  114. stochKworkaround = STOCH(14);
  115. stochDworkaround = EMA( STOCH(14), 5);
  116. sto2Buy = iif(STOCH(14) < buyrange AND CROSS(stochKworkaround, stochDworkaround), 1, 0);
  117. sto2Sell = iif(STOCH(14) > sellrange AND CROSS(stochDworkaround, stochKworkaround), 1, 0);
  118. /* %R, ema 9 and divergences */
  119. R=-100*((HHV(HIGH,14)-CLOSE))/(HHV(HIGH,14)-LLV(LOW,14));
  120. DIVR=(R-REF(R,-1))*(C-REF(C,-1));
  121. DIVB=IIF((DIVR<0) AND (R-ref(R,-1))>0 and (REF(R,-1)<-90),-100,0);
  122. DIVB1=IIF((DIVR<0) AND (R-ref(R,-1))>0 and (REF(R,-1)<-90),-80,0);
  123. DIVS=IIF((DIVR<0) AND (R-ref(R,-1))<0 and (REF(R,-1)>-10),-20,0);
  124. divBuy = iif(DIVB==-100, 1, 0);
  125. divSell = iif(DIVS==-20, 1, 0);
  126. /*KST*/
  127. KST =  (MA(ROC(CLOSE,10),10) * 1) +
  128.             (MA(ROC(CLOSE,15),10) * 2) +
  129.             (MA(ROC(CLOSE,20),10) * 3) +
  130.             (MA(ROC(CLOSE,30),15) * 4);
  131. kstBuy = iif(CROSS(KST ,  MA(KST, 109)), 1, 0);
  132. kstSell = iif(CROSS(MA(KST , 120), KST), 1, 0);
  133. /*COP*/
  134. copBuy = iif((EMA( ROC( MA( C, 22 ), 250 ), 150 ) / 100) < 0, 1, 0);
  135. /*SMASH*/
  136. numDays = 3; // Consider smash Day if closed above/below previous numDays highs/lows
  137. closeInDayRangePct = 0.25; // Smash day close should be in the high/low %% of the day range
  138. smashDayDown = close < LLV (ref (low, -1), numDays) AND close < open AND close < (low + closeInDayRangePct * (high - low));
  139. smashDayUp = close > HHV (ref (high, -1), numDays) AND close > open AND close > (high - closeInDayRangePct * (high - low));
  140. // Enter in the direction opposite to the smash day if the very next day price moves opposite the smash day.
  141. smashBuy = iif(ref (smashDayDown, -1) AND high > ref (high, -1), 1, 0);
  142. smashSell = iif(ref (smashDayUp, -1) AND low < ref (low, -1), 1, 0);
  143. /*CHAIKIN MONEY FLOW*/
  144. ICH = sum(((( C-L )-( H-C )) / ( H-L ))*V, 21 ) / sum(V,21); 
  145. LCH = llv( ICH, 255 );
  146. top = (LCH/2);
  147. chkBuy = cross (ICH, top);
  148. chkSell = cross (0, ICH);
  149. /*number of buy signals --- give weight to your favorite ones with a coefficient. */
  150. somme= PL + MDS + HAM + BLE + tdreiBuy + kupBuy + rsiBuy + (2*mfibuy) + sto2Buy + (2*divBuy) + kstBuy + copBuy + (2*smashBuy) + chkBuy;
  151. /*number of sell signals. */
  152. somme2 = BRE + DCC + EDS + tdreiSell + kupSell + rsiSell + mfiSell + sto2Sell + divSell + divSell + kstSell + smashSell + chkSell;
  153. /*Guru comment*/
  154. "number of buy indicators triggered: " + writeval (somme) ;
  155. "Aujourd'hui, les signaux haussiers suivants ont 閠