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

金融证券系统

开发平台:

Others

  1. //------------------------------------------------------------------------------
  2. //
  3. //  Formula Name:    AFL Example
  4. //  Author/Uploader: Graham Kavanagh 
  5. //  E-mail:          gkavanagh@e-wire.net.au
  6. //  Date/Time Added: 2005-08-12 03:45:59
  7. //  Origin:          
  8. //  Keywords:        AFL Example
  9. //  Level:           basic
  10. //  Flags:           exploration,indicator
  11. //  Formula URL:     http://www.amibroker.com/library/formula.php?id=545
  12. //  Details URL:     http://www.amibroker.com/library/detail.php?id=545
  13. //
  14. //------------------------------------------------------------------------------
  15. //
  16. //  There are many questions from beginners. I have tried to create a sample
  17. //  system that incorporates basic and useful items.
  18. //
  19. //  This is an AFL for Chart, Scan, Backtest and Explore
  20. //
  21. //  The system for Buy/Sell is just off the top of the head as an example only.
  22. //
  23. //------------------------------------------------------------------------------
  24. _SECTION_BEGIN("AFL Example");
  25. /*
  26. This is an attempt to provide a basic trading system AFL. The system is purely imaginary
  27.  AND NOT provided as one that would make money. This is just to provide a guide to learners
  28.  on the common components of writing AFL.
  29.  Prepared by Graham Kavanagh 12 Aug 2005
  30.  AB Write http://e-wire.net.au/~eb_kavan/ab_write.htm
  31. When you copy/paste ensure the existing continuous lines have not been wrapped. This wrapping
  32.  can create error signals when you try to use the code. Click on the check afl button in the
  33.  editor before trying to apply or scan.
  34.  I have used slash-asterisk /*  */ /* for my comments to get around the problem of wrapping,
  35.  which could happen if you used double slash //
  36. I hope this helps the beginners in creating AFL code
  37. */
  38. /*firstly some basics common*/
  39. SetBarsRequired(10000,10000); /* this ensures that the charts include all bars AND NOT just those on screen */
  40. SetFormulaName("Sample System"); /*name it for backtest report identification */
  41. SetTradeDelays( 1, 1, 1, 1 ); /* delay entry/exit by one bar */
  42. SetOption( "initialequity", 100000 ); /* starting capital */
  43. PositionSize = -10; /* trade size will be 10% of available equty */
  44. SetOption( "MaxOpenPositions", 6 ); /* I don't want to comit more than 60% of Equity at any one time */
  45. SetOption( "PriceBoundChecking", 1 ); /* trade only within the chart bar's price range */
  46. SetOption( "CommissionMode", 2 ); /* set commissions AND costs as $ per trade */
  47. SetOption( "CommissionAmount", 32.95 ); /* commissions AND cost */
  48. SetOption( "UsePrevBarEquityForPosSizing", 1 ); /*set the use of last bars equity for trade size*/
  49. PositionScore = 100/C; /*Set the order for which stock trades when get mulitple signals in one bar in backtesting */
  50. //Trade system
  51. /*
  52. Buy when exp mov avg crosses and the high is highest for 50 bars
  53. Sell when exp mov avg crosses back
  54. Cross is first variable moves to above the second variable
  55. */
  56. LongPer = Param("Long Period", 50, 30, 100, 5 ); /* select periods with parameter window */
  57. ShortPer = Param("Short Period", 5, 3, 10, 1 ); 
  58. LongMA = EMA( C, LongPer );
  59. ShortMA = EMA( C, ShortPer );
  60. LastHigh = HHV( H, LongPer );
  61. Buy = Cross( ShortMA, LongMA ) AND H > Ref( LastHigh, -1 );
  62. /* ref,-1 is used for the high to have todays high greater than the previous 50 bar high.
  63.    To just use H==LastHigh couold mean a previous high was equal to current high */
  64. Sell = Cross( LongMA, ShortMA );
  65. /* exrem is one method to remove surplus strade signals*/
  66. Buy = ExRem(Buy,Sell);
  67. Sell = ExRem(Sell,Buy);
  68. /* Now for exploration results. 
  69.    Will restrict results of exploration to when the Buy AND Sell signals occur 
  70.    You can use Filter=1; to display every bar result */
  71. Filter = Buy OR Sell;
  72. AddTextColumn( FullName(), "Company Name" );
  73. AddColumn( Buy, "Buy", 1 );
  74. AddColumn( Sell, "Sell", 1 );
  75. AddColumn( C, "Close", 1.3 );
  76. AddColumn( H, "High", 1.3 );
  77. AddColumn( LastHigh, "HHV", 1.3 );
  78. AddColumn( LongMA, "Long MA", 1,3 );
  79. AddColumn( ShortMA, "Short MA", 1,3 );
  80. /* Now to show this on a chart */
  81. /* I use WriteVal to limit the values to the wanted number of decimal places,
  82.    seeing a value of 5 decimal places can be frustrating.
  83.    I have included additional information in the plot title sections to add some
  84.    information to the title block */
  85. GraphXSpace = 10; /* create empty space of 10% top and bottom of chart */
  86. Plot( C, " Close Price", colorGrey50, styleBar );
  87. Plot( LongMA, " EMA(C,"+WriteVal(LongPer,1)+")", colorRed, styleLine|styleNoRescale );
  88. Plot( ShortMA, " EMA(C,"+WriteVal(ShortPer,1)+")", colorGreen, styleLine|styleNoRescale );
  89. Plot( Ref(Lasthigh,-1), " HHV(H,"+WriteVal(LongPer,1)+")", colorBlue, styleNoLine|styleDots|styleNoRescale );
  90. /* styleNoRescale in the plots stops the added plots from compressing the original bar chart to the middle of the pane */
  91. PlotShapes( shapeUpArrow*Buy, colorGreen, 0, L, -10 );
  92. PlotShapes( shapeDownArrow*Sell, colorRed, 0, H, -10 );
  93. Title = " {{NAME}} {{DATE}} {{INTERVAL}} "+_DEFAULT_NAME()+" Chart values : {{VALUES}} ";
  94. /* _DEFAULT_NAME() shows the section name or, if not present, the file name
  95. the items in {{}} are short cuts for the title block. It can be done long hand
  96. Title = Name() +" "+ Date() +" "+ "{{INTERVAL}}"+_DEFAULT_NAME()+" Chart values : " + 
  97. " Close Price = " + C + 
  98. " EMA(C,"+WriteVal(LongPer,1)+") = "+WriteVal(LongMA,1.3) + 
  99. " EMA(C,"+WriteVal(ShortPer,1)+") = "+WriteVal(ShortMA,1.3) + 
  100. " HHV(H,"+WriteVal(LongPer,1)+") = "+WriteVal(Ref(LastHigh,-1),1.3) ;
  101.  */
  102. _SECTION_END();