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

金融证券系统

开发平台:

Others

  1. //------------------------------------------------------------------------------
  2. //
  3. //  Formula Name:    SWIM INDEX
  4. //  Author/Uploader: Kailash K Pareek ( Johnny ) 
  5. //  E-mail:          
  6. //  Date/Time Added: 2001-10-11 09:31:20
  7. //  Origin:          --------
  8. //  Keywords:        SWIM INDEX
  9. //  Level:           semi-advanced
  10. //  Flags:           indicator
  11. //  Formula URL:     http://www.amibroker.com/library/formula.php?id=122
  12. //  Details URL:     http://www.amibroker.com/library/detail.php?id=122
  13. //
  14. //------------------------------------------------------------------------------
  15. //
  16. //  SWIM INDEX coded by KAILASH K PAREEK - INDIA .
  17. //
  18. //  As the name of indicator explains it self, It measures the
  19. //
  20. //  swim of Price. Day Trader may find it very useful as it gives
  21. //
  22. //  trend reversal in next 2-3 trading.
  23. //
  24. //  INTERPATION:
  25. //
  26. //  Expect trend reversal or at least consolidation when SI
  27. //
  28. //  Spikes higher, (for Peak) OR lower, (for bottom), than
  29. //
  30. //  Relative spikes and turns back. I have found couple of times
  31. //
  32. //  The thing called "HING" which appears 1-2 day before the
  33. //
  34. //  Price reversal and common in Stochastic Oscillator.
  35. //
  36. //------------------------------------------------------------------------------
  37. /* SWIM INDEX 
  38.  coded by KAILASH K PAREEK - INDIA .
  39. As the name of indicator explains it self, It measures the
  40. swim of Price. Day Trader may find it very useful as it gives
  41. trend reversal in next 2-3 trading.
  42. INTERPATION: 
  43. Expect trend reversal or at least consolidation when SI 
  44. Spikes higher, (for Peak) OR lower, (for bottom), than 
  45. Relative spikes and turns back. I have found couple of times
  46. The thing called "HING" which appears 1-2 day before the
  47. Price reversal and common in Stochastic Oscillator.
  48. */
  49. C1 = Ref ( C , -1 ) ;
  50. O1 = Ref ( O, -1 ) ;
  51. K   = HHV ( ( H - C1 ) OR ( L - C1 ) , 1 ) ;
  52. L   =  C1 * 0.20;
  53. R  =  ATR ( 1 );
  54. SI  =  ( ( C-C1+0.5*(C-O)+0.25*(C1-O1))/R)*(K/L);
  55. Graph0 = SI;