SF Entry,Stop, PT Indicator.afl
上传用户:shiqiang
上传日期:2009-06-12
资源大小:1289k
文件大小:1k
源码类别:

金融证券系统

开发平台:

Others

  1. //------------------------------------------------------------------------------
  2. //
  3. //  Formula Name:    SF Entry,Stop, PT Indicator
  4. //  Author/Uploader: Stefan-Georg Fuchs 
  5. //  E-mail:          sgfuchs@tradeshark.de
  6. //  Date/Time Added: 2001-10-13 08:59:11
  7. //  Origin:          Own - hope it works ;-)
  8. //  Keywords:        
  9. //  Level:           basic
  10. //  Flags:           indicator
  11. //  Formula URL:     http://www.amibroker.com/library/formula.php?id=124
  12. //  Details URL:     http://www.amibroker.com/library/detail.php?id=124
  13. //
  14. //------------------------------------------------------------------------------
  15. //
  16. //  //For use with STO MACD Buy signals with Moneymanagement
  17. //
  18. //  maxgraph = 5;
  19. //
  20. //  graph0 = close;
  21. //
  22. //  graph0style=64;
  23. //
  24. //  graph0color=2;
  25. //
  26. //  graph1 = ema(CLOSE,5)-(ema(ATR(1),10)*1.50);
  27. //
  28. //  graph2 = ema(close,5)+(ema(ATR(1),10)*2.5);
  29. //
  30. //  graph2style = 1;
  31. //
  32. //  graph2color=3;
  33. //
  34. //  graph3 = ema(CLOSE,5)+(ema(ATR(1),10)/4);
  35. //
  36. //  graph3style = 1;
  37. //
  38. //  graph3colour =5;
  39. //
  40. //------------------------------------------------------------------------------
  41. maxgraph = 5;
  42. graph0 = close;
  43. graph0style=64;
  44. graph0color=2;
  45. graph1 = ema(CLOSE,5)-(ema(ATR(1),10)*1.50);
  46. graph2 = ema(close,5)+(ema(ATR(1),10)*2.5);
  47. graph2style = 1;
  48. graph2color=3;
  49. graph3 = ema(CLOSE,5)+(ema(ATR(1),10)/4);
  50. graph3style = 1;
  51. graph3colour =5;