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

金融证券系统

开发平台:

Others

  1. //------------------------------------------------------------------------------
  2. //
  3. //  Formula Name:    Trend Trigger Factor
  4. //  Author/Uploader: Kelly Griffiths 
  5. //  E-mail:          
  6. //  Date/Time Added: 2004-11-10 01:35:58
  7. //  Origin:          Stocks and Commodities (Dec04)
  8. //  Keywords:        trend buy power sell trigger factor
  9. //  Level:           basic
  10. //  Flags:           system,indicator,function
  11. //  Formula URL:     http://www.amibroker.com/library/formula.php?id=400
  12. //  Details URL:     http://www.amibroker.com/library/detail.php?id=400
  13. //
  14. //------------------------------------------------------------------------------
  15. //
  16. //  Allows you to follow the trend.
  17. //
  18. //------------------------------------------------------------------------------
  19. function TTF( periods )
  20. {
  21. BuyPower = HHV( High, periods ) - Ref( LLV( Low, periods ), -periods );
  22. SellPower = Ref( HHV( High, periods ), -periods ) - LLV( Low, periods );
  23. return 100 * (BuyPower - SellPower) / (0.5 * (BuyPower + SellPower));
  24. }
  25. ttf15 = TTF( 15 );
  26. Plot( ttf15, "TTF(15)", colorRed );
  27. bt = Optimize( "Buy Trigger", 125, 35, 150, 5 );
  28. st = Optimize( "Sell Trigger", -40, -100, 25, 5 );
  29. Buy = Cross( ttf15, bt );
  30. Sell = Cross( -st, ttf15 );
  31. Short = Sell;
  32. Cover = Buy;