Stochastic Divergences, PDI, NDI.afl
上传用户:shiqiang
上传日期:2009-06-12
资源大小:1289k
文件大小:2k
源码类别:

金融证券系统

开发平台:

Others

  1. //------------------------------------------------------------------------------
  2. //
  3. //  Formula Name:    Stochastic Divergences, PDI, NDI
  4. //  Author/Uploader: Dimitris Tsokakis 
  5. //  E-mail:          
  6. //  Date/Time Added: 2002-03-25 04:12:25
  7. //  Origin:          
  8. //  Keywords:        
  9. //  Level:           advanced
  10. //  Flags:           indicator
  11. //  Formula URL:     http://www.amibroker.com/library/formula.php?id=180
  12. //  Details URL:     http://www.amibroker.com/library/detail.php?id=180
  13. //
  14. //------------------------------------------------------------------------------
  15. //
  16. //  Definitions.
  17. //
  18. //  1. Positive Stochastic Divergence Issues (PDI) is the population of stocks
  19. //  that
  20. //
  21. //  presented a positive stochastic divergence, calculated on daily basis.
  22. //
  23. //  2. Negative Stochastic Divergence Issues (NDI) is the population of stocks
  24. //  that
  25. //
  26. //  presented a negative stochastic divergence, calculated on daily basis.
  27. //
  28. //------------------------------------------------------------------------------
  29. /*STOCHDIV*/
  30. ST33=StochD(14);
  31. TR1=LLVBars(ST33,4);
  32. TR2=IIf(ST33<30 AND TR1>0 AND Ref(TR1,-1)==0,Ref(ST33,-1),0);
  33. TRC=IIf(TR2>0,C,0);
  34. vs=ValueWhen(tr2, Ref(st33,-1), 1);
  35. dvs=vs-Ref(vs,-1);
  36. vc=ValueWhen(trc, LLV(C,3), 1);
  37. dvc=vc-Ref(vc,-1);
  38. diver=IIf(dvs>0 AND dvc<0,30,0);
  39. DAS=BarsSince(Ref(TR2,-1)>0);
  40. dd=IIf(DAS<20 AND C>=Ref(C,-1),DIVER,0);
  41. HTR1=HHVBars(ST33,4);
  42. HTR2=IIf(ST33>70 AND HTR1>0 AND Ref(HTR1,-1)==0,Ref(ST33,-1),0);
  43. HTRC=IIf(HTR2>0,C,0);
  44. Hvs=ValueWhen(Htr2, Ref(st33,-1), 1);
  45. Hdvs=Hvs-Ref(Hvs,-1);
  46. Hvc=ValueWhen(Htrc, HHV(H,3), 1);
  47. Hdvc=Hvc-Ref(Hvc,-1);
  48. Hdiver=IIf(Hdvs<0 AND Hdvc>0,90,0);
  49. HDAS=BarsSince(Ref(HTR2,-1)>0);
  50. hdd=IIf(HDAS<20 AND C<Ref(C,-1),HDIVER,0);
  51. values3 = dd>0;
  52. values4=hdd>0;
  53. AddToComposite(Values3,"~posstochdiv","V");
  54. AddToComposite(Values4,"~negstochdiv","V");
  55. Buy=0;