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

金融证券系统

开发平台:

Others

  1. //------------------------------------------------------------------------------
  2. //
  3. //  Formula Name:    QStick
  4. //  Author/Uploader: Lee 
  5. //  E-mail:          lee@bcgfx.com
  6. //  Date/Time Added: 2005-01-23 14:18:13
  7. //  Origin:          Indicator by Tushar Chande
  8. //  Keywords:        Qstick, indicator, candles, momentum
  9. //  Level:           basic
  10. //  Flags:           indicator
  11. //  Formula URL:     http://www.amibroker.com/library/formula.php?id=419
  12. //  Details URL:     http://www.amibroker.com/library/detail.php?id=419
  13. //
  14. //------------------------------------------------------------------------------
  15. //
  16. //  QStick from Tushar Chande. This indicator measures intraday momentum by
  17. //
  18. //  using the distance between the open and close of price over "n periods".
  19. //
  20. //  It is set at the default ( 8 ) periods that Chande suggest.
  21. //
  22. //------------------------------------------------------------------------------
  23. /* QStick from Tushar Chande. This indicator measures intraday momentum by 
  24.    using the distance between the open and close of price over "n periods".
  25.    It is set at the default ( 8 ) periods that Chande suggest. */
  26. MaxGraph=3;
  27. Graph0=MA( C-O,8);
  28. // The '0' line.
  29. Graph1=0;
  30. Graph1Style=5;
  31. Graph1Style=styleNoLabel;