Volume - compared with Moving Avg (100%).afl
上传用户:shiqiang
上传日期:2009-06-12
资源大小:1289k
文件大小:2k
源码类别:

金融证券系统

开发平台:

Others

  1. //------------------------------------------------------------------------------
  2. //
  3. //  Formula Name:    Volume - compared with Moving Avg (100%)
  4. //  Author/Uploader: Thomas Zmuck 
  5. //  E-mail:          thomas.zm@aon.at
  6. //  Date/Time Added: 2002-07-15 17:12:30
  7. //  Origin:          
  8. //  Keywords:        
  9. //  Level:           basic
  10. //  Flags:           exploration,indicator
  11. //  Formula URL:     http://www.amibroker.com/library/formula.php?id=207
  12. //  Details URL:     http://www.amibroker.com/library/detail.php?id=207
  13. //
  14. //------------------------------------------------------------------------------
  15. //
  16. //  This is principle only another view of the volume.
  17. //
  18. //  It shows you the difference from the current volume to the moving Volume in
  19. //  percent.
  20. //
  21. //  I like it, because it is easier to analyze. you dont need to compare the
  22. //  volume with the moving, which has everyday another value.
  23. //
  24. //  In this formula you see, for example, that sometimes the volume is 300%
  25. //  higher than the AVG. This makes it also easier to use in the exploration.
  26. //
  27. //  Try it out! I think, you like it.
  28. //
  29. //  Set the scale to percent and automatic
  30. //
  31. //------------------------------------------------------------------------------
  32. //written by Thomas Zmuck
  33. //Date: 15-07-02
  34. //thomas.zm@aon.at
  35. pds = 10;
  36. V1 = V/MA(V,10); V2 = V/MA(V,20);
  37. V3 = V/MA(V,50);
  38. barcolor = IIf(V<MA(V,pds),4,6);
  39. /* Colourized price bars drawn here */
  40. Plot(100*Volume/MA(V,pds),"    V/ma(10)",barcolor,2+4);
  41. Plot(100,"    AVG(10)",1,1);
  42. unsure = V1<1 AND V2<1 AND V3<1;
  43. sure   = V1>1 AND V2>1 AND V3>1;
  44. Filter = unsure;
  45. AddColumn(100*V/MA(V,10),"V/ma(V,10)",1.0);
  46. AddColumn(100*V/MA(V,20),"V/ma(V,20)",1.0);
  47. AddColumn(100*V/MA(V,50),"V/ma(V,50)",1.0);
  48. AddColumn(ROC(C,1),"%today");