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

金融证券系统

开发平台:

Others

  1. //------------------------------------------------------------------------------
  2. //
  3. //  Formula Name:    Fishnet Rainbow
  4. //  Author/Uploader: Thomas Youssef 
  5. //  E-mail:          thomasmejl@hotmail.com
  6. //  Date/Time Added: 2005-03-03 16:44:36
  7. //  Origin:          
  8. //  Keywords:        Fisnhet rainbow
  9. //  Level:           basic
  10. //  Flags:           showemail,function
  11. //  Formula URL:     http://www.amibroker.com/library/formula.php?id=435
  12. //  Details URL:     http://www.amibroker.com/library/detail.php?id=435
  13. //
  14. //------------------------------------------------------------------------------
  15. //
  16. //  /* Created by Thomas Youssef, sweden 2005-03-01. With this code you can see
  17. //  fishnet in rainbow colors. I use 30 MA per color.
  18. //
  19. //  */
  20. //
  21. //------------------------------------------------------------------------------
  22. /* Created by Thomas Youssef, sweden 2005-03-01. This code plot fishnet with rainbow colors. I use 30 MA per color.
  23. */
  24. _SECTION_BEGIN("");
  25. Plot( C, "Close", ParamColor("Color", colorBlack ), styleNoTitle | ParamStyle("Style", styleCandle, maskPrice ) );
  26. net= 30; // This value can be changed. It`s how many MA:s every color have.
  27. for (i=1; i<net;i++) {
  28. Plot(MA(Close,i),"",colorDarkRed,styleLine);
  29. }
  30. for (i=net; i<2*net;i++) {
  31. Plot(MA(Close,i),"",colorOrange,styleLine);
  32. }
  33. for (i=2*net; i<3*net;i++) {
  34. Plot(MA(Close,i),"",colorGold,styleLine);
  35. }
  36. for (i=3*net; i<4*net;i++) {
  37. Plot(MA(Close,i),"",colorLime,styleLine);
  38. }
  39. for (i=4*net; i<5*net;i++) {
  40. Plot(MA(Close,i),"",colorBlue,styleLine);
  41. }
  42. for (i=5*net; i<6*net;i++) {
  43. Plot(MA(Close,i),"",colorIndigo,styleLine);
  44. }
  45. for (i=6*net; i<7*net;i++) {
  46. Plot(MA(Close,i),"",colorViolet,styleLine);
  47. }
  48. _SECTION_END();