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

金融证券系统

开发平台:

Others

  1. //------------------------------------------------------------------------------
  2. //
  3. //  Formula Name:    colored CCI
  4. //  Author/Uploader: Tom Supera 
  5. //  E-mail:          tom_supera@utanet.at
  6. //  Date/Time Added: 2001-07-20 15:46:27
  7. //  Origin:          
  8. //  Keywords:        
  9. //  Level:           basic
  10. //  Flags:           indicator
  11. //  Formula URL:     http://www.amibroker.com/library/formula.php?id=79
  12. //  Details URL:     http://www.amibroker.com/library/detail.php?id=79
  13. //
  14. //------------------------------------------------------------------------------
  15. //
  16. //  CCI is a trend-indicator.
  17. //
  18. //  In my formula i use the original, but with colored bars.
  19. //
  20. //  So you can faster see, if there's a uptrend, downtrend, or trading-range.
  21. //
  22. //  red bars : downtrend
  23. //
  24. //  green bars: uptrend
  25. //
  26. //  blue bars : trading-range
  27. //
  28. //------------------------------------------------------------------------------
  29. T = 20;
  30. title = "301-4  " + name () + "   "  + fullname() + "  " 
  31. + "CCI" + "   " + "periods:" + writeval(T);
  32. maxgraph = 5;
  33. graph2 = CCI (T);
  34. Uptrend = 100;  Downtrend =  -100; 
  35. graph2barcolor = IIF (graph2 > uptrend, 5, 
  36.                                    IIF (graph2 < downtrend,4,6));
  37. graph4 = graph2;
  38. buy = cross (graph2, 0) and (ref (graph2,-1) < 0) and (ref (graph2,-2) < 0)and (ref (graph2,-3) < 0) and (LLV (rsi(9),10) < 30) and cross (rsi (9),50);