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

金融证券系统

开发平台:

Others

  1. //------------------------------------------------------------------------------
  2. //
  3. //  Formula Name:    fishnet
  4. //  Author/Uploader: wolfgang mrazek 
  5. //  E-mail:          wolfgangm@yahoo.com
  6. //  Date/Time Added: 2004-03-29 04:23:35
  7. //  Origin:          Sweden
  8. //  Keywords:        fishnet ma
  9. //  Level:           basic
  10. //  Flags:           indicator
  11. //  Formula URL:     http://www.amibroker.com/library/formula.php?id=346
  12. //  Details URL:     http://www.amibroker.com/library/detail.php?id=346
  13. //
  14. //------------------------------------------------------------------------------
  15. //
  16. //  This is a simle fishnet. I'm surprised that no one else has added this but
  17. //  maybe coz it's so simple... This one looks very "sticky" in chart. Maybe
  18. //  you can show a better one?
  19. //
  20. //------------------------------------------------------------------------------
  21. for (i=1; i<150;i++) {
  22. Plot(MA(Close,i),"",colorBrightGreen,styleLine);
  23. }