Dave Landry PullBack Scan.afl
上传用户:shiqiang
上传日期:2009-06-12
资源大小:1289k
文件大小:8k
源码类别:

金融证券系统

开发平台:

Others

  1. //------------------------------------------------------------------------------
  2. //
  3. //  Formula Name:    Dave Landry PullBack Scan
  4. //  Author/Uploader: Dennis Skoblar 
  5. //  E-mail:          DennisAndLisa@sbcglobal.net
  6. //  Date/Time Added: 2005-06-18 06:44:42
  7. //  Origin:          "Dave Landry On Swing Trading" and "Dave Landry's 10 Best Swing Trading Patterns And Strategies"
  8. //  Keywords:        Dave Landry,Landry,pullback scan,pullback
  9. //  Level:           basic
  10. //  Flags:           system,exploration
  11. //  Formula URL:     http://www.amibroker.com/library/formula.php?id=477
  12. //  Details URL:     http://www.amibroker.com/library/detail.php?id=477
  13. //
  14. //------------------------------------------------------------------------------
  15. //
  16. //  This is the Dave Landry PullBack Scan as developed by him and taken from
  17. //  his two books, "Dave Landry On Swing Trading" and "Dave Landry's 10 Best
  18. //  Swing Trading Patterns And Strategies". The scan searches for stocks making
  19. //  a pullback from their most recent 20 day highs or 20 day lows. This is best
  20. //  used as an Exploration, all the ColumnNames can be seen and used as
  21. //  filters. Drop the "Tools" drop down menu in the Formula Editor containing
  22. //  this code and toggle the "Apply Indicator" to get the chart layout
  23. //  displayed.
  24. //
  25. //------------------------------------------------------------------------------
  26. // Dave Landry Pullback Scan.
  27. // Coded by Dennis Skoblar 6/8/2005.
  28. // As adapted by "Dave Landry On Swing Trading" and "Dave Landry's 10 Best Swing Trading Patterns And Strategies".
  29. // Special "Thank You" to Dave Landry, the Yahoo Groups Amibroker Club and the Amibroker Support Staff for thier help.
  30. //
  31. // This is best used as an Exploration, all the ColumnNames can be seen and used as filters.
  32. // Drop the "Tools" drop down menu in the Formula Editor containing this code and toggle the "Apply Indicator" to get the chart layout displayed.
  33. // Best used against a black background.
  34. //======================= Variables ==================================================================================================================
  35. // PULLBACK SCAN
  36. DLL1 = Ref(H,-1) > Ref(HHV(H,20),-2) AND H < Ref(H,-1);
  37. DLL2 = Ref(H,-2) > Ref(HHV(H,20),-3) AND H < Ref(H,-2);
  38. DLL3 = Ref(H,-3) > Ref(HHV(H,20),-4) AND H < Ref(H,-3);
  39. DLL4 = Ref(H,-4) > Ref(HHV(H,20),-5) AND H < Ref(H,-4);
  40. DLL5 = Ref(H,-5) > Ref(HHV(H,20),-6) AND H < Ref(H,-5);
  41. DLL6 = Ref(H,-6) > Ref(HHV(H,20),-7) AND H < Ref(H,-6);
  42. DLL7 = Ref(H,-7) > Ref(HHV(H,20),-8) AND H < Ref(H,-7);
  43. DLL8 = Ref(H,-8) > Ref(HHV(H,20),-9) AND H < Ref(H,-8);  
  44. DLL= H < Ref(HHV(H,20),-1);
  45. DLS1 = Ref(L,-1) < Ref(LLV(L,20),-2) AND L > Ref(L,-1);
  46. DLS2 = Ref(L,-2) < Ref(LLV(L,20),-3) AND L > Ref(L,-2);
  47. DLS3 = Ref(L,-3) < Ref(LLV(L,20),-4) AND L > Ref(L,-3);
  48. DLS4 = Ref(L,-4) < Ref(LLV(L,20),-5) AND L > Ref(L,-4);
  49. DLS5 = Ref(L,-5) < Ref(LLV(L,20),-6) AND L > Ref(L,-5);
  50. DLS6 = Ref(L,-6) < Ref(LLV(L,20),-7) AND L > Ref(L,-6);
  51. DLS7 = Ref(L,-7) < Ref(LLV(L,20),-8) AND L > Ref(L,-7);
  52. DLS8 = Ref(L,-8) < Ref(LLV(L,20),-9) AND L > Ref(L,-8);
  53. DLS = L > Ref(LLV(L,20),-1);
  54. // Price and Volume 
  55. PVFilter = ((C>=15) AND MA( Volume, 50 )>100000);
  56. // Moving Average proper order
  57. BullishMAs = IIf(MA(C,10) >= EMA(C,20) AND EMA(C,20) >= EMA(C,30), 1, 0);
  58. BearishMAs = IIf(MA(C,10) <= EMA(C,20) AND EMA(C,20) <= EMA(C,30), 1, 0);
  59. // How far the stock has moved in the past month (preferable at least 10 pts in the past 20 days)
  60. TenTwentyFilter = HHV(H,20)-LLV(L,20);
  61. // 50 Day Historical Volatility
  62. FiftyDayHVFilter = round(StDev(log(C/Ref(C,-1)),50)*100*sqrt(256));
  63. // Dave Landry Pull Back Scan
  64. DLPBS = (IIf((DLL AND (DLL1 OR DLL2 OR DLL3 OR DLL4 OR DLL5 OR DLL6 OR DLL7 OR DLL8)) AND PVFilter AND BullishMAs, 1, 0)) OR 
  65.         (IIf((DLS AND (DLS1 OR DLS2 OR DLS3 OR DLS4 OR DLS5 OR DLS6 OR DLS7 OR DLS8)) AND PVFilter AND BearishMAs, 1, 0));
  66. //=================== End Variables =================================================================================================================
  67. //=================== Columns =======================================================================================================================
  68. NumColumns = 5;
  69. Column0 = FullName();     
  70. Column0Name = "Ticker name";
  71.            
  72. Column1   = IIf((DLL AND (DLL1 OR DLL2 OR DLL3 OR DLL4 OR DLL5 OR DLL6 OR DLL7 OR DLL8)) AND PVFilter AND BullishMAs, 1, 0);
  73. Column1Name = "Buy Signal";
  74. Column2     = IIf((DLS AND (DLS1 OR DLS2 OR DLS3 OR DLS4 OR DLS5 OR DLS6 OR DLS7 OR DLS8)) AND PVFilter AND BearishMAs, 1, 0);
  75. Column2Name = "Sell Signal"; 
  76. Column3     = TenTwentyFilter;
  77. Column3Name = "10/20 Value";
  78. Column4 = FiftyDayHVFilter;
  79. Column4Name ="HV50 Value";
  80. AddTextColumn( IndustryID(1), "Industry" );
  81. AddTextColumn( MarketID(1), "Market" );
  82. //==================== End Columns ===================================================================================================================
  83. //==================== Filter and Buy/Sell criteria ==================================================================================================
  84. // Filter based on 20 day hi/lo and pullback, moving averages lined up correctly, price and volume criteria, and stocks matching their respective industries and markets.
  85. Filter = DLPBS; 
  86. Buy  = Column1;
  87. Sell = Column2;
  88. //====================  End Filter and Buy/Sell criteria =============================================================================================
  89. //======================= Chart Layout  ==============================================================================================================
  90. // OHLC bar graph with headings
  91. _SECTION_BEGIN("Price"); 
  92. SetChartOptions(0,chartShowArrows|chartShowDates);
  93. _N(Title = StrFormat("{{NAME}} - {{INTERVAL}} {{DATE}} Open %g, Hi %g, Lo %g, Close %g (%.1f%%) {{VALUES}}", O, H, L, C, SelectedValue( ROC( C, 1 ) ) ));
  94. Plot( C, "Close", ParamColor("Color", colorYellow ), styleBar | ParamStyle("Style") | GetPriceStyle() ); 
  95. _SECTION_END();
  96. // 20 period linear regression line
  97. x = Cum(1); //
  98. lastx = LastValue( x ); Daysback = 20; aa = LastValue( LinRegIntercept( Close, Daysback) );
  99. bb = LastValue( LinRegSlope( Close, Daysback ) );
  100. y = Aa + bb * ( x - (Lastx - DaysBack) ); 
  101. Plot( IIf( x >= (lastx - Daysback), y, -1e10 ), "LinReg", colorCustom11 );
  102. // 10 period SMA
  103. _SECTION_BEGIN("MA");
  104. P = ParamField("Price field",-1);
  105. Periods = Param("Periods",10 );
  106. Plot( MA( P, Periods ), _DEFAULT_NAME(), ParamColor( "Color", colorBlue ), ParamStyle("Style") ); 
  107. _SECTION_END();
  108. // 20 period EMA
  109. _SECTION_BEGIN("EMA");
  110. P = ParamField("Price field",-1);
  111. Periods = Param("Periods", 20 );
  112. Plot( EMA( P, Periods ), _DEFAULT_NAME(), ParamColor( "Color", colorRed ), ParamStyle("Style") ); 
  113. _SECTION_END();
  114. // 30 period EMA
  115. _SECTION_BEGIN("EMA1");
  116. P = ParamField("Price field",-1);
  117. Periods = Param("Periods", 30);
  118. Plot( EMA( P, Periods ), _DEFAULT_NAME(), ParamColor( "Color", colorCustom12 ), ParamStyle("Style") ); 
  119. _SECTION_END();
  120. // Add 50 Day Historical Volotility and 10/20 filter as a different screen, just cut and paste each one to a separate Formula Editor Sceen and save them under
  121. // Custom Indicators...then drop them into the main screen.
  122. // 50 day historical volotility
  123. // _SECTION_BEGIN("HV50");
  124. // HV50 = round(StDev(log(C/Ref(C,-1)),50)*100*sqrt(256));
  125. // Plot(HV50,"HV50",colorYellow,styleLine);
  126. // _SECTION_END();
  127. // 10/20 filter
  128. // _SECTION_BEGIN("TenTwentyValue");
  129. // TenTwentyValue = HHV(H,20)-LLV(L,20);
  130. // Plot(TenTwentyValue,"10/20 Value",colorRed,styleLine);
  131. // _SECTION_END();
  132. //======================= End Chart Layout  ===========================================================================================================