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

金融证券系统

开发平台:

Others

  1. //------------------------------------------------------------------------------
  2. //
  3. //  Formula Name:    Varexlist
  4. //  Author/Uploader: Jaco Jonker 
  5. //  E-mail:          jjonker@shisas.com
  6. //  Date/Time Added: 2001-07-06 04:30:40
  7. //  Origin:          Own development.
  8. //  Keywords:        Exploration, RSI, Stochastics, Macd, ROC, Ultimate
  9. //  Level:           medium
  10. //  Flags:           system,indicator
  11. //  Formula URL:     http://www.amibroker.com/library/formula.php?id=69
  12. //  Details URL:     http://www.amibroker.com/library/detail.php?id=69
  13. //
  14. //------------------------------------------------------------------------------
  15. //
  16. //  This is a basic exploration list I developed for the US markets. It has no
  17. //  fancy script, just plain widely used indicators setup in a logical format,
  18. //  with some unconventional combinations. It is a medium term system with
  19. //  excellent results in the past 5 years on the Dow Jones and Nasdaq 100, but
  20. //  the major problem is the huge drawdowns on some shares. Works well as an
  21. //  indicator in the weekly format as well.
  22. //
  23. //------------------------------------------------------------------------------
  24. /* Commentary Name Varex
  25. **    Requirements : AmiBroker 3.0 + (AFL 1.1)
  26. **         Version : 0.03
  27. **    Version Date :June 25, 2001
  28. **          Author Jaco Jonker
  29. */
  30. ARSI = RSI(9);
  31. BRSI = RSI(14);
  32. AROC = ROC(10);
  33. AULT = ULTIMATE();
  34. AMAC = signal();
  35. stochKw = STOCH(14);
  36. stochDw = EMA( STOCH(14), 5);
  37. Buy = ARSI < 28 and BRSI < 33 and AROC < 0.4 and AULT < 40 and AMAC < 0 and stochKw < 40 and ARSI > ref(arsi,-1) and stochKw > ref(stochKw, -1);
  38. Sell = ARSI > 70 and BRSI > 65 and AULT > 60 and AMAC > 0 and stochKw > 70;