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

金融证券系统

开发平台:

Others

  1. //------------------------------------------------------------------------------
  2. //
  3. //  Formula Name:    T3
  4. //  Author/Uploader: dale Butkowski 
  5. //  E-mail:          
  6. //  Date/Time Added: 2001-08-05 09:47:23
  7. //  Origin:          Steve Burns, Technical Analysis of Stocks & Commodities
  8. //  Keywords:        
  9. //  Level:           basic
  10. //  Flags:           system
  11. //  Formula URL:     http://www.amibroker.com/library/formula.php?id=82
  12. //  Details URL:     http://www.amibroker.com/library/detail.php?id=82
  13. //
  14. //------------------------------------------------------------------------------
  15. //
  16. //  Trading system based on cubing of function (1+a)-ax^2 where a is the
  17. //  amplification ( 0 < a < 1.0, I use 0.7) and en is the exponentially
  18. //  smoothed average of the closing price.
  19. //
  20. //------------------------------------------------------------------------------
  21. /* T3 trading system */
  22. a = 0.7;
  23. n = 2;
  24. alpha = 2/(n + 1);
  25. e1 =  ema(close, n);
  26. e2 = ema (e1, n);
  27. e3 = ema (e2, n);
  28. e4 = ema (e3,  n);
  29. e5 = ema (e4, n);
  30. e6 = ema (e5, n);
  31. T3 = -a^3 * e6 + (3 * a^2 +3 * a^3) * e5 + (-6 * a^2 - 3 *
  32.  a - 3 * a^3) * e4 + (1 + 3 * a + a^3 + 3 * a^2) * e3;
  33. graph0 = close;
  34. graph1 = T3;
  35. SELL = cross ( Close, T3 );
  36. BUY = cross (T3, Close );
  37. SHORT = cross ( Close, T3);
  38. COVER = cross (T3, Close );