BMTRIX Intermediate Term Market Trend Indicator.afl
上传用户:shiqiang
上传日期:2009-06-12
资源大小:1289k
文件大小:1k
源码类别:

金融证券系统

开发平台:

Others

  1. //------------------------------------------------------------------------------
  2. //
  3. //  Formula Name:    BMTRIX Intermediate Term Market Trend Indicator
  4. //  Author/Uploader: Brian Mitchell 
  5. //  E-mail:          bmitchell@bellsouth.net
  6. //  Date/Time Added: 2003-09-24 08:48:40
  7. //  Origin:          
  8. //  Keywords:        
  9. //  Level:           basic
  10. //  Flags:           indicator,commentary
  11. //  Formula URL:     http://www.amibroker.com/library/formula.php?id=299
  12. //  Details URL:     http://www.amibroker.com/library/detail.php?id=299
  13. //
  14. //------------------------------------------------------------------------------
  15. //
  16. //  This is a variation of the trix. I'm using a TEMA instead of an EMA like in
  17. //  the original formula. I use a 45 day version, as it tends to call the
  18. //  intermediate term trends fairly well. Above 0 is a bull trend, below 0 is a
  19. //  bear trend.
  20. //
  21. //------------------------------------------------------------------------------
  22. period = 45;
  23. C = Foreign("COMPQX", "C");
  24. Trixline=TEMA(TEMA(TEMA(ROC(C, 1), period), period), period);
  25. Plot(Trixline, "TRIX", colorBlue, styleHistogram);
  26. "The bmTRIX is indicating a " +
  27. WriteIf(Trixline > 0, "bullish", "bearish") +
  28. " market environment because it is " +
  29. WriteIf(TrixLine > 0, "above", "below") +
  30. " the zero line.n";