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

金融证券系统

开发平台:

Others

  1. //------------------------------------------------------------------------------
  2. //
  3. //  Formula Name:    Ultimate plus
  4. //  Author/Uploader: D o j i  * ABU REHAB 
  5. //  E-mail:          d.o.j.i@hotmail.com
  6. //  Date/Time Added: 2006-04-11 13:39:56
  7. //  Origin:          
  8. //  Keywords:        
  9. //  Level:           basic
  10. //  Flags:           system
  11. //  Formula URL:     http://www.amibroker.com/library/formula.php?id=613
  12. //  Details URL:     http://www.amibroker.com/library/detail.php?id=613
  13. //
  14. //------------------------------------------------------------------------------
  15. //
  16. //  Ultimate plus wthe line to sell and buy
  17. //
  18. //  under 30 is buy
  19. //
  20. //  up 65 is sell
  21. //
  22. //------------------------------------------------------------------------------
  23. _SECTION_BEGIN("D o j i - Ultimate plus");
  24. r1 = Param("Fast avg", 7, 2, 200, 1 );
  25. r2 = Param("Med avg", 14, 2, 200, 1 );
  26. r3 = Param("Slow avg", 28, 2, 200, 1 );
  27. Plot( Ultimate( r1, r2, r3 ), _DEFAULT_NAME(), ParamColor("Color", colorCycle ), ParamStyle("Style"));
  28. Plot(30, "", colorGreen);
  29. Plot(50, "", colorRed);
  30. Plot(65, "", colorBlue);
  31. Plot(70, "", colorRed);
  32. if( Status("action") == actionCommentary )
  33. {
  34.   printf( "(Interpretation is not available yet)" );
  35. }
  36. _SECTION_END();