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

金融证券系统

开发平台:

Others

  1. //------------------------------------------------------------------------------
  2. //
  3. //  Formula Name:    Time segment value
  4. //  Author/Uploader: ntk98 
  5. //  E-mail:          ntk98_2000@yahoo.co.uk
  6. //  Date/Time Added: 2004-05-22 17:34:18
  7. //  Origin:          
  8. //  Keywords:        AFL
  9. //  Level:           basic
  10. //  Flags:           indicator
  11. //  Formula URL:     http://www.amibroker.com/library/formula.php?id=358
  12. //  Details URL:     http://www.amibroker.com/library/detail.php?id=358
  13. //
  14. //------------------------------------------------------------------------------
  15. //
  16. //  TJ has helped me translate the metastock formula of TSV(Time segment value)
  17. //  into AB language.
  18. //
  19. //  I thought I should share this formulas with other. This indicator uses
  20. //  volume and price, like OBV, but seems to be more reliable indicator then
  21. //  OBV.
  22. //
  23. //  In courtesy of The Wordens brothers I like to post the link for study on
  24. //  purpose and usage of this indicator.
  25. //
  26. //  http://www.tc2000.com/privuser2/ii12118p.htm
  27. //
  28. //------------------------------------------------------------------------------
  29. // Time segment value
  30. TSV=(Sum( IIf( C > Ref(C,-1), V * ( C-Ref(C,-1) ),
  31. IIf( C < Ref(C,-1),-V * ( C-Ref(C,-1) ), 0 ) ) ,18));
  32. Plot(TSV,"TSV",1,1);