Simple Candle Exploration.afl
上传用户:shiqiang
上传日期:2009-06-12
资源大小:1289k
文件大小:1k
源码类别:

金融证券系统

开发平台:

Others

  1. //------------------------------------------------------------------------------
  2. //
  3. //  Formula Name:    Simple Candle Exploration
  4. //  Author/Uploader: Herman van den Bergen 
  5. //  E-mail:          psytek@magma.ca
  6. //  Date/Time Added: 2005-01-28 17:33:59
  7. //  Origin:          
  8. //  Keywords:        
  9. //  Level:           medium
  10. //  Flags:           exploration
  11. //  Formula URL:     http://www.amibroker.com/library/formula.php?id=425
  12. //  Details URL:     http://www.amibroker.com/library/detail.php?id=425
  13. //
  14. //------------------------------------------------------------------------------
  15. //
  16. //  Exploration to find and list Candle patterns. Requires
  17. //  CandleFunctionsInclude.afl (in this library) to be in your include folder.
  18. //  Modify to suit your needs.
  19. //
  20. //------------------------------------------------------------------------------
  21. #include <CandleFunctionsInclude.afl>
  22. SetOption("NoDefaultColumns",False);
  23. Filter = Status("LastbarInTest");
  24. for(CP=0; Cp<=44; CP++)
  25. {
  26. PV = CandlePattern(CP);
  27. AddColumn(PV,PatternName,1.0);
  28. }