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

金融证券系统

开发平台:

Others

  1. //------------------------------------------------------------------------------
  2. //
  3. //  Formula Name:    Vic Huebner
  4. //  Author/Uploader: Vic Huebner 
  5. //  E-mail:          atlantic@engineer.com
  6. //  Date/Time Added: 2002-02-23 10:57:10
  7. //  Origin:          Martin Pring in Active Trader, June 2001
  8. //  Keywords:        Inside, Outside, Reversal
  9. //  Level:           basic
  10. //  Flags:           indicator
  11. //  Formula URL:     http://www.amibroker.com/library/formula.php?id=160
  12. //  Details URL:     http://www.amibroker.com/library/detail.php?id=160
  13. //
  14. //------------------------------------------------------------------------------
  15. //
  16. //  This is an elementary display of Inside, Outside, and Key reversal bars.
  17. //  These sometimes are used to signal short term reversals.
  18. //
  19. //------------------------------------------------------------------------------
  20. //One bar reversal patterns
  21. //Inside, Outside, and Key reversal candle stick patterns are believed to be indicators of a short term reversal, especially after a strong uptrend or downtrend.
  22. Title="One bar reversal patterns. Inside = Red, Outside = Yellow, Key reversal = Green";
  23. Graph0=Close;
  24. Graph0Style=128; //Candlesticks
  25. //Outside patterns require a volume boost (40% above the past 10 days here). We're also requiring the current range to encompass the previous 2 days here.
  26. Graph0BarColor=IIf(Outside() AND H>Ref(H,-2) AND L<Ref(L,-2) AND V>1.4*(MA(V,10)),7,1);
  27. //Inside patterns require much smaller range (less than 40% here). We also require the range to be smaller than 2 days ago (60% here).
  28. Graph0BarColor=IIf(Inside() AND ((H-L)<0.4*Ref(H-L,-1)) AND Ref(H-L,-2)<0.6*Ref(H-L,-1) ,4,Graph0BarColor);
  29. //Key reversals require a gap up or down, a bigger range (2 times 2 days ago here), and a volume boost (40% above the 10 day average here).
  30. Graph0BarColor=IIf((L>Ref(H,-1)) AND (H-L)>2*(Ref(H-L,-2)) AND V>1.4*(MA(V,10)),8,Graph0BarColor);
  31. Graph0BarColor=IIf((H<Ref(L,-1)) AND (H-L)>2*(Ref(H-L,-2)) AND V>1.4*(MA(V,10)),8,Graph0BarColor);
  32. //Graph0BarColor=IIf((abs((H-L)-(Ref(H-L,-1)))<(H-L)*.05),7,1);