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

金融证券系统

开发平台:

Others

  1. //------------------------------------------------------------------------------
  2. //
  3. //  Formula Name:    Pullback System No. 1
  4. //  Author/Uploader: Jerry Coopmans 
  5. //  E-mail:          
  6. //  Date/Time Added: 2001-06-16 22:58:37
  7. //  Origin:          Active Trader Magazine - November, 2000
  8. //  Keywords:        
  9. //  Level:           medium
  10. //  Flags:           system
  11. //  Formula URL:     http://www.amibroker.com/library/formula.php?id=24
  12. //  Details URL:     http://www.amibroker.com/library/detail.php?id=24
  13. //
  14. //------------------------------------------------------------------------------
  15. //
  16. //  This is a short term pullback system that in only long. It buys on the open
  17. //  following a higher high after two lower closes and when the close is above
  18. //  the 50 day simple average.
  19. //
  20. //  The sell is on the day after a profit at the open or stopped after breaking
  21. //  the two day low.
  22. //
  23. //------------------------------------------------------------------------------
  24. // Pullback System # 1
  25. condition1 = ref(c,-2) < ref(c,-3) and ref(c,-1) < ref(c,-2);
  26. condition2 = h > ref(h,-1);
  27. filter = c > ma(c,50);
  28. buy = condition1 and condition2 and filter;
  29. buyPrice = valuewhen( buy, open,1);
  30. sell = c > buyPrice or l < ref(llv(l,2),-1);
  31. buy = exRem(buy,sell);
  32. sell = exRem(sell,buy);
  33.