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

金融证券系统

开发平台:

Others

  1. //------------------------------------------------------------------------------
  2. //
  3. //  Formula Name:    Zig Explorer
  4. //  Author/Uploader: Michael.S.G. 
  5. //  E-mail:          OzFalcon@Bden.org
  6. //  Date/Time Added: 2003-08-05 15:21:45
  7. //  Origin:          
  8. //  Keywords:        ZigZag Historical Explore
  9. //  Level:           basic
  10. //  Flags:           indicator
  11. //  Formula URL:     http://www.amibroker.com/library/formula.php?id=291
  12. //  Details URL:     http://www.amibroker.com/library/detail.php?id=291
  13. //
  14. //------------------------------------------------------------------------------
  15. //
  16. //  /* Historical ZigZag Explorer.
  17. //
  18. //  *Use the Parameters Popup to "Look Back" in history
  19. //
  20. //  & watch the Zig adapt as you progress through.
  21. //
  22. //  (Hit "CTRL-R" to bring up the Parameters Dialog.)
  23. //
  24. //  OzFalcon.
  25. //
  26. //  */
  27. //
  28. //------------------------------------------------------------------------------
  29. /* Historical ZigZag Explorer.
  30.    *Use the Parameters Popup to "Look Back" in history
  31.     & watch the Zig adapt as you progress through.
  32.    (Hit "CTRL-R" to bring up the Parameters Dialog.)
  33. OzFalcon.
  34. */
  35. adjz = Param("Zig",10,0,15.0,.1);
  36. adjc = Param("Back",0,0,BarCount,1);
  37. CAdj = Ref(Close,-adjc);
  38. Graph1 = CAdj;
  39. Graph0 = Zig( CAdj, adjz );