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

金融证券系统

开发平台:

Others

  1. //------------------------------------------------------------------------------
  2. //
  3. //  Formula Name:    Guppy moving averages
  4. //  Author/Uploader: Tomasz Janeczko 
  5. //  E-mail:          tj@amibroker.com
  6. //  Date/Time Added: 2001-06-16 08:38:56
  7. //  Origin:          Originally developed by Darryl Guppy
  8. //  Keywords:        moving average
  9. //  Level:           basic
  10. //  Flags:           indicator
  11. //  Formula URL:     http://www.amibroker.com/library/formula.php?id=17
  12. //  Details URL:     http://www.amibroker.com/library/detail.php?id=17
  13. //
  14. //------------------------------------------------------------------------------
  15. //
  16. //  A set of moving averages of different periods. An example on using multiple
  17. //  graphs in single indicator window.
  18. //
  19. //------------------------------------------------------------------------------
  20. maxgraph = 10;
  21. /* blue lines */
  22. graph0= ma( close, 3 );
  23. graph1= ma( close, 5 );
  24. graph2= ma( close, 8 );
  25. graph3 = ma( close, 12 );
  26. graph4 = ma( close, 15 );
  27. graph0style = graph1style = graph2style = graph3style =graph4style = 1;
  28. graph0color = graph1color = graph2color = graph3color =graph4color = 7;
  29. /* red lines */
  30. graph5= ma( close, 30 );
  31. graph6= ma( close, 35 );
  32. graph7= ma( close, 40 );
  33. graph8 = ma( close, 45 );
  34. graph9 = ma( close, 50 );
  35. graph5style = graph6style = graph7style = graph8style =graph9style = 1;
  36. graph5color = graph6color = graph7color = graph8color =graph9color = 5;