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

金融证券系统

开发平台:

Others

  1. //------------------------------------------------------------------------------
  2. //
  3. //  Formula Name:    STARC Bands
  4. //  Author/Uploader: Prakash Shenoi 
  5. //  E-mail:          
  6. //  Date/Time Added: 2006-08-11 07:18:13
  7. //  Origin:          
  8. //  Keywords:        Trading Bands
  9. //  Level:           basic
  10. //  Flags:           indicator
  11. //  Formula URL:     http://www.amibroker.com/library/formula.php?id=674
  12. //  Details URL:     http://www.amibroker.com/library/detail.php?id=674
  13. //
  14. //------------------------------------------------------------------------------
  15. //
  16. //  STARC Bands developed by Manning Stoller consist of a channel surrounding a
  17. //  Simple Moving Average of typical Price. The width of the channel created
  18. //  vary with the period of the average range. Like Bollinger Bands, STARC
  19. //  Bands tighten in steady or low volatility markets and widen as volatility
  20. //  goes up. The difference lies in that rather than being based on Closes,
  21. //  STARC Bands are based on the ATR, which reflect indepth picture of the
  22. //  market volatility. While the penetration of a Bollinger Band may indicate a
  23. //  continuation of a price move, STARC Bands define the upper and lower limits
  24. //  for normal price action.
  25. //
  26. //  The default for MA is 6 period and ATR average is 15 - can be user defined
  27. //  through Param settings.
  28. //
  29. //------------------------------------------------------------------------------
  30. /* S T A R C Bands */
  31. /* AFL code by Prakash Shenoi */
  32. x=Param("Average ",5,1,21);
  33. y=Param("ATR ",1,1,21);
  34. typ=(H+L+C)/3;
  35. s=MA(typ,x);
  36. Up=(s +(ATR(y)*1.33));
  37. Lo=(s-(ATR(y)*1.33));
  38. Plot (C,"STARC BANDS - Close",1,64);
  39. Plot (Up,"UB",27,4);
  40. Plot (s,"Mid",22,1);
  41. Plot (Lo,"LB",27,4);
  42. GraphXSpace=3;