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

金融证券系统

开发平台:

Others

  1. //------------------------------------------------------------------------------
  2. //
  3. //  Formula Name:    Positive ROC Exploration
  4. //  Author/Uploader: Mubashar Virk 
  5. //  E-mail:          mavirk@gmail.com
  6. //  Date/Time Added: 2006-10-03 14:36:47
  7. //  Origin:          ROC
  8. //  Keywords:        ROC
  9. //  Level:           basic
  10. //  Flags:           exploration
  11. //  Formula URL:     http://www.amibroker.com/library/formula.php?id=730
  12. //  Details URL:     http://www.amibroker.com/library/detail.php?id=730
  13. //
  14. //------------------------------------------------------------------------------
  15. //
  16. //  Hi there guys and ladies, I have a Positive ROC exploration for all you
  17. //  tight-traders and beginners. It may give you some good picks for the next
  18. //  day. Needless to say you must study the securities by using William,
  19. //  Chaikin, and Bollinger's. Also try to put your own filtration values for
  20. //  ROC and Volume as mine are too tight. May the Profit be with you all.
  21. //
  22. //------------------------------------------------------------------------------
  23. P  =  ((H + L + C) / 3);
  24. R1  =  ((2 * P) - L);
  25. S1  =  ((2 * P)  - H);
  26. R2  =  ((P - S1) + R1);
  27. S2  =  (P - (R1 - S1));
  28. Filter = ROC( C, 1 ) > 0.25 AND V > 29999;
  29.  
  30. AddColumn( V, "Volume",1 );
  31. AddColumn( C, "Close" );
  32. AddColumn( Ref (C, -1), "Last Close");
  33. AddColumn( C - Ref( C, -1), "Change");
  34. AddColumn( ROC( C, 1 ), "ROC" ); 
  35. AddColumn (RSI(), "RSI",1.2);
  36. AddColumn( r2, "R 2", 1.2);
  37. AddColumn( r1, "R 1", 1.2);
  38. AddColumn( P, "Pivot", 1.2);
  39. AddColumn( S1, "S 1", 1.2);
  40. AddColumn( S2, "S 2", 1.2);