Dave Landry PullBack Scan (481).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-22 02:29:14
  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:           medium
  10. //  Flags:           system,exploration
  11. //  Formula URL:     http://www.amibroker.com/library/formula.php?id=481
  12. //  Details URL:     http://www.amibroker.com/library/detail.php?id=481
  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 Parameters
  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 Ref(MA(V,50),-1)>100000;
  56. // Dave Landry PullBack Scan
  57. DLPBS = ((DLL AND (DLL1 OR DLL2 OR DLL3 OR DLL4 OR DLL5 OR DLL6 OR DLL7 OR DLL8)) OR (DLS AND (DLS1 OR DLS2 OR DLS3 OR DLS4 OR DLS5 OR DLS6 OR DLS7 OR DLS8))) AND PVFilter;  
  58. // Moving Average Proper Order
  59. MAProperOrder = (MA(C,10) > EMA(C,20) AND EMA(C,20) > EMA(C,30)) OR (MA(C,10) < EMA(C,20) AND EMA(C,20) < EMA(C,30));
  60. // How far the stock has moved in the past month (preferable at least 10 pts in the past 20 days)
  61. TenTwentyFilter = HHV(H,20)-LLV(L,20);
  62. // 50 Day Historical Volatility
  63. FiftyDayHVFilter = round(StDev(log(C/Ref(C,-1)),50)*100*sqrt(256));
  64. //=================== End Variables =================================================================================================================
  65. //=================== Columns =======================================================================================================================
  66. NumColumns = 5;
  67. Column0 = FullName();     
  68. Column0Name = "Ticker name";
  69.            
  70. Column1   = DLL AND (DLL1 OR DLL2 OR DLL3 OR DLL4 OR DLL5 OR DLL6 OR DLL7 OR DLL8);
  71. Column1Name = "Buy Signal";
  72. Column2     = DLS AND (DLS1 OR DLS2 OR DLS3 OR DLS4 OR DLS5 OR DLS6 OR DLS7 OR DLS8);
  73. Column2Name = "Sell Signal"; 
  74. Column3     = TenTwentyFilter;
  75. Column3Name = "10/20 Value";
  76. Column4 = FiftyDayHVFilter;
  77. Column4Name ="HV50 Value";
  78. AddTextColumn( IndustryID(1), "Industry" );
  79. AddTextColumn( MarketID(1), "Market" );
  80. //==================== End Columns ===================================================================================================================
  81. //==================== Filter and Buy/Sell criteria ==================================================================================================
  82. // Filter based on 20 day hi/lo pullback, price and volume criteria.
  83. Filter = DLPBS; // Delete this line and use the next line if you desire the moving averages to be scanned in "proper order".
  84. //Filter = DLPBS AND MAProperOrder; 
  85. Buy  = Column1;
  86. Sell = Column2;
  87. //====================  End Filter and Buy/Sell criteria =============================================================================================
  88. //======================= Chart Layout  ==============================================================================================================
  89. // OHLC bar graph with headings
  90. _SECTION_BEGIN("Price"); 
  91. SetChartOptions(0,chartShowArrows|chartShowDates);
  92. _N(Title = StrFormat("{{NAME}} - {{INTERVAL}} {{DATE}} Open %g, Hi %g, Lo %g, Close %g (%.1f%%) {{VALUES}}", O, H, L, C, SelectedValue( ROC( C, 1 ) ) ));
  93. Plot( C, "Close", ParamColor("Color", colorYellow ), styleBar | ParamStyle("Style") | GetPriceStyle() ); 
  94. _SECTION_END();
  95. // 20 period linear regression line
  96. x = Cum(1); //
  97. lastx = LastValue( x ); Daysback = 20; aa = LastValue( LinRegIntercept( Close, Daysback) );
  98. bb = LastValue( LinRegSlope( Close, Daysback ) );
  99. y = Aa + bb * ( x - (Lastx - DaysBack) ); 
  100. Plot( IIf( x >= (lastx - Daysback), y, -1e10 ), "LinReg", colorCustom11 );
  101. // 10 period SMA
  102. _SECTION_BEGIN("MA");
  103. P = ParamField("Price field",-1);
  104. Periods = Param("Periods",10 );
  105. Plot( MA( P, Periods ), _DEFAULT_NAME(), ParamColor( "Color", colorBlue ), ParamStyle("Style") ); 
  106. _SECTION_END();
  107. // 20 period EMA
  108. _SECTION_BEGIN("EMA");
  109. P = ParamField("Price field",-1);
  110. Periods = Param("Periods", 20 );
  111. Plot( EMA( P, Periods ), _DEFAULT_NAME(), ParamColor( "Color", colorRed ), ParamStyle("Style") ); 
  112. _SECTION_END();
  113. // 30 period EMA
  114. _SECTION_BEGIN("EMA1");
  115. P = ParamField("Price field",-1);
  116. Periods = Param("Periods", 30);
  117. Plot( EMA( P, Periods ), _DEFAULT_NAME(), ParamColor( "Color", colorCustom12 ), ParamStyle("Style") ); 
  118. _SECTION_END();
  119. // 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
  120. // Custom Indicators...then drop them into the main screen.
  121. // 50 day historical volotility
  122. // _SECTION_BEGIN("HV50");
  123. // HV50 = round(StDev(log(C/Ref(C,-1)),50)*100*sqrt(256));
  124. // Plot(HV50,"HV50",colorYellow,styleLine);
  125. // _SECTION_END();
  126. // 10/20 filter
  127. // _SECTION_BEGIN("TenTwentyValue");
  128. // TenTwentyValue = HHV(H,20)-LLV(L,20);
  129. // Plot(TenTwentyValue,"10/20 Value",colorRed,styleLine);
  130. // _SECTION_END();
  131. //======================= End Chart Layout  ===========================================================================================================