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

金融证券系统

开发平台:

Others

  1. //------------------------------------------------------------------------------
  2. //
  3. //  Formula Name:    30 Week Hi Indicator - Display
  4. //  Author/Uploader: Geoff Mulhall 
  5. //  E-mail:          geoffmulhall@optusnet.com.au
  6. //  Date/Time Added: 2003-05-03 22:17:05
  7. //  Origin:          
  8. //  Keywords:        
  9. //  Level:           semi-advanced
  10. //  Flags:           indicator
  11. //  Formula URL:     http://www.amibroker.com/library/formula.php?id=277
  12. //  Details URL:     http://www.amibroker.com/library/detail.php?id=277
  13. //
  14. //------------------------------------------------------------------------------
  15. //
  16. //  Refer 30 Week High Indicator - Calculate
  17. //
  18. //  The attached indicator builder afl ( _i.afl file ) plots the indicator
  19. //  calculated by the ( _s.afl file ).
  20. //
  21. //------------------------------------------------------------------------------
  22. // 300 Week Highs Indicator
  23. // Set Scaling to automatic
  24. // Set Gridlines - Level 0, Show dates, Middle
  25. // Plot on a weekly chart only
  26. GraphXSpace = 10;
  27. Plot(Foreign("~Idx30Wk_Close_HL","C",1),"Close_HL",colorRed,styleLine);    
  28. Plot(Foreign("~Idx30Wk_Abs_HL","C",1),"Abs_HL",colorBlue,styleLine); 
  29.    
  30.