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

金融证券系统

开发平台:

Others

  1. //------------------------------------------------------------------------------
  2. //
  3. //  Formula Name:    a
  4. //  Author/Uploader: ali 
  5. //  E-mail:          abosliman2005m@hotmail.com
  6. //  Date/Time Added: 2006-09-21 18:37:12
  7. //  Origin:          a
  8. //  Keywords:        a
  9. //  Level:           advanced
  10. //  Flags:           indicator
  11. //  Formula URL:     http://www.amibroker.com/library/formula.php?id=713
  12. //  Details URL:     http://www.amibroker.com/library/detail.php?id=713
  13. //
  14. //------------------------------------------------------------------------------
  15. //
  16. //  a
  17. //
  18. //------------------------------------------------------------------------------
  19. /* Bernstein Momentum Indicator */
  20. /* Set Scaling to Automatic, Show dates On, Percent On, Middle On */
  21. Title = "Bernstein MOM Close - Ref(Close,-7)"; 
  22. GraphXSpace = 5;
  23. Graph0 = MA(Close - Ref(Close,-7),1); 
  24. Graph0Style = 8; 
  25. Graph0Color = 5;
  26. Graph1 = MA(Graph0,5);
  27. Graph1Style = 1;  
  28. Graph1Color = 32;