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

金融证券系统

开发平台:

Others

  1. //------------------------------------------------------------------------------
  2. //
  3. //  Formula Name:    Overbought issues, Oversold issues
  4. //  Author/Uploader: Dimitris Tsokakis 
  5. //  E-mail:          
  6. //  Date/Time Added: 2002-03-24 14:42:36
  7. //  Origin:          
  8. //  Keywords:        
  9. //  Level:           advanced
  10. //  Flags:           indicator
  11. //  Formula URL:     http://www.amibroker.com/library/formula.php?id=179
  12. //  Details URL:     http://www.amibroker.com/library/detail.php?id=179
  13. //
  14. //------------------------------------------------------------------------------
  15. //
  16. //  Definitions
  17. //
  18. //  1. Overbought issues (OBI)
  19. //
  20. //  The population of overbought stocks, under any overbought criteria,
  21. //  calculated as a variable on daily basis.
  22. //
  23. //  Extension may be considered on weekly or monthly or yearly basis.
  24. //
  25. //  2. Oversold issues(OSI)
  26. //
  27. //  The population of oversold stocks, under any oversold criteria, calculated
  28. //  as a variable on daily basis.
  29. //
  30. //  Extension may be considered on weekly or monthly or yearly basis.
  31. //
  32. //  Calculation of OSI & OBI under RSI(14) follows.
  33. //
  34. //------------------------------------------------------------------------------
  35. /*RSI OBI-OSI*/
  36. s1=RSI(14);
  37. os=s1<=35;
  38. ob=s1>65;
  39. values7 = os>0;
  40. values8 = ob>0;
  41. AddToComposite(Values7,"~rsiosi","V");
  42. AddToComposite(Values8,"~rsiobi","V");
  43. Buy=0;