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

金融证券系统

开发平台:

Others

  1. //------------------------------------------------------------------------------
  2. //
  3. //  Formula Name:    RSI Pointer
  4. //  Author/Uploader: Duke Duncan 
  5. //  E-mail:          dukedunk15@aol.com
  6. //  Date/Time Added: 2002-01-20 13:50:21
  7. //  Origin:          
  8. //  Keywords:        stochastic rsi tsi moving average ma  stochastics
  9. //  Level:           semi-advanced
  10. //  Flags:           indicator
  11. //  Formula URL:     http://www.amibroker.com/library/formula.php?id=151
  12. //  Details URL:     http://www.amibroker.com/library/detail.php?id=151
  13. //
  14. //------------------------------------------------------------------------------
  15. //
  16. //  This is a nice indicator. It combines moving averages, Stochastic D, and
  17. //  RSI. It is inverted and a single peak into the 30/70 range indicates buy or
  18. //  sell. It leads the market and is easy to manipulate. An easy way to alter
  19. //  it for different time frames is just to change the "Period" variable.
  20. //
  21. //------------------------------------------------------------------------------
  22. /* RSI Pointer - Determines specific buy and sell points */
  23. //Determines the Time length to be calculated
  24. Period = 25;
  25. //Graphs the oscillator
  26. Graph0= -(10000*( ( RSI( period ) - LLV( RSI( period ) , period ) ) / ( ( HHV( RSI(period ) , period ) )
  27.  - LLV(RSI( period ), period ) ) )* (Ma(close, 20) - Ma(close, 25))/ ((ma(close, 20) *100)));