Pivot Point with SR Trendlines.afl
上传用户:shiqiang
上传日期:2009-06-12
资源大小:1289k
文件大小:3k
源码类别:

金融证券系统

开发平台:

Others

  1. //------------------------------------------------------------------------------
  2. //
  3. //  Formula Name:    Pivot Point with S/R Trendlines
  4. //  Author/Uploader: andrew kaufmann 
  5. //  E-mail:          sggin1@yahoo.com
  6. //  Date/Time Added: 2004-11-08 08:13:56
  7. //  Origin:          
  8. //  Keywords:        Pivot,TimeFrameSet,TimeFrameRestore
  9. //  Level:           basic
  10. //  Flags:           indicator,function
  11. //  Formula URL:     http://www.amibroker.com/library/formula.php?id=399
  12. //  Details URL:     http://www.amibroker.com/library/detail.php?id=399
  13. //
  14. //------------------------------------------------------------------------------
  15. //
  16. //  On charts less then an hour -e.g. 5 min chart, will plot the daily Pivot
  17. //  point and the hourly pivot point as a Line. In, addition, there are 3
  18. //  adjustable support and resistance trendlines drawn using highs and the lows
  19. //  , % change is adjustable in the parameters.
  20. //
  21. //------------------------------------------------------------------------------
  22. per1=Param("#1 S/R %", .25,.05,5,.05);
  23. LB1=Param("#1 Lookback Period",2,2,30,1);
  24. per2=Param("#2 S/R %", .5 ,.05,5,.05);
  25. LB2=Param("#2 Lookback Period",2,2,30,1);
  26. per3=Param("#3 S/R %", 2,.05,5,.05);
  27. LB3=Param("#3 Lookback Period",2,2,30,1);
  28. color=ParamColor("S/R Color",colorBlue);
  29. colorPP=ParamColor("PP Color",colorGrey50);
  30. ////////////////////////////////////////////////////////////////////////
  31. ////Pivot and Support Resistance Lines     /////////////////////////////
  32. ////Plots a daily and hourly Pivot Point on 1min, 5min, etc... charts //
  33. //////// Also, 3 adjustable S/R lines///////////////////////////////////
  34. ////////////////////////////////////////
  35. /////////////////////////////PIVOT POINT////////////////////////////////
  36. TimeFrameSet(inDaily);
  37. AVGd = Ref((L + H + C),-1)/3;
  38. "        PPd:t "+ AVGd;
  39. TimeFrameRestore();
  40. Plot( TimeFrameExpand(AVGd,inDaily,expandFirst),"",colorPP,styleStaircase);
  41. TimeFrameSet(inHourly);
  42. AVGh = Ref((L + H + C),-1)/3;
  43. "        PPh:t "+ Avgh;
  44. TimeFrameRestore();
  45. Plot( TimeFrameExpand(AVGh,inHourly,expandFirst),"",colorPP,styleStaircase);
  46. //////////////////////////S?R LINES 1/////////////////////////////////////
  47. procedure SRlines(per,Lb)
  48. {
  49. ys0=LastValue(Trough(L,per,Lb)); 
  50. ys1=LastValue(Trough(L,per,Lb-1)); 
  51. xs0=BarCount - 1 - LastValue(TroughBars(L,per,Lb)); 
  52. xs1=BarCount - 1 - LastValue(TroughBars(L,per,Lb-1)); 
  53. yr0=LastValue(Peak(H,per,Lb)); 
  54. yr1=LastValue(Peak(H,per,Lb-1)); 
  55. xr0=BarCount - 1 - LastValue(PeakBars(H,per,Lb)); 
  56. xr1=BarCount - 1 - LastValue(PeakBars(H,per,Lb-1)); 
  57. sl = LineArray( xs0, ys0, xs1, ys1,1 ); 
  58. rL = LineArray( xr0, yr0, xr1, yr1,1 );
  59. Plot( sl, "S line", color,1 ); 
  60. Plot( rl, "R line", color,1  );
  61. }
  62. //////////////////////////S?R LINES 2/////////////////////////////////////
  63.  
  64. SRlines(per1,Lb1);
  65. SRlines(per2,Lb2);
  66. SRlines(per3,Lb3);