المتوسط&.afl
上传用户:shiqiang
上传日期:2009-06-12
资源大小:1289k
文件大小:2k
源码类别:

金融证券系统

开发平台:

Others

  1. //------------------------------------------------------------------------------
  2. //
  3. //  Formula Name:    المتوسط&
  4. //  Author/Uploader: ali 
  5. //  E-mail:          abosliman2005m@hotmail.com
  6. //  Date/Time Added: 2006-09-26 20:15:15
  7. //  Origin:          المتوسطات
  8. //  Keywords:        المتوسطات
  9. //  Level:           basic
  10. //  Flags:           exploration
  11. //  Formula URL:     http://www.amibroker.com/library/formula.php?id=719
  12. //  Details URL:     http://www.amibroker.com/library/detail.php?id=719
  13. //
  14. //------------------------------------------------------------------------------
  15. //
  16. // 
  17. //  المتوسطات
  18. //
  19. //------------------------------------------------------------------------------
  20. ScriptVersion = " explorativo del Main al 12 de set 2005";
  21. //////////////////// PRECIO //////////////////////////////////////////////
  22. Plot(C,"",colorBlack,styleCandle|styleNoLabel);
  23. Filter = Close > 5;
  24. AddColumn(Close,"Close");
  25. PositionSize = 50;
  26. /////////////////////// MEDIAS MOVILES///////////////////
  27. slope = Param("slope",2,2,50,1);
  28. Color20= IIf(LinRegSlope(MA(C,5),slope)<0,colorRed,colorBrightGreen);
  29. event1= LinRegSlope(MA(C,5),slope)<1;
  30. Plot( MA( C,9), "",Color20, styleLine);
  31. //Plot( event1, "", colorRose, styleArea|styleOwnScale);
  32. Color50= IIf(LinRegSlope(MA(C,50),slope)<0,colorRed,colorBlue); 
  33. Plot( MA( C, 60), "",Color50  , styleLine);
  34. Color100= IIf(LinRegSlope(MA(C,100),slope)<0,colorRed,colorYellow);
  35. Plot( MA( C,  90), "",Color100 , styleLine);
  36. Color150= IIf(LinRegSlope(MA(C,150),slope)<0,colorRed,10); 
  37. Plot( MA( C, 150), "",Color150  , styleLine);
  38. event1=Cross(MA(C,2),MA(C,7));
  39. PlotShapes( IIf(event1 ,shapeDigit1,0) ,5, 1, L,-30);
  40. event4=Cross(MA(C,7),MA(C,2));
  41. PlotShapes( IIf(event4 ,shapeDigit4,0) ,4, 1, H,30);