Auto Analysis Pivot Point Reversal.afl
上传用户:shiqiang
上传日期:2009-06-12
资源大小:1289k
文件大小:1k
源码类别:

金融证券系统

开发平台:

Others

  1. //------------------------------------------------------------------------------
  2. //
  3. //  Formula Name:    Auto Analysis Pivot Point Reversal
  4. //  Author/Uploader: Larry Lovrencic 
  5. //  E-mail:          lvl@firstpacific.net
  6. //  Date/Time Added: 2001-09-04 02:39:26
  7. //  Origin:          
  8. //  Keywords:        Pivot point reversal
  9. //  Level:           basic
  10. //  Flags:           exploration
  11. //  Formula URL:     http://www.amibroker.com/library/formula.php?id=112
  12. //  Details URL:     http://www.amibroker.com/library/detail.php?id=112
  13. //
  14. //------------------------------------------------------------------------------
  15. //
  16. //  Find Pivot Point Reversals using automatic analysis
  17. //
  18. //------------------------------------------------------------------------------
  19. /*Pivot Point Reversals Automatic Analysis
  20. by Larry Lovrencic*/
  21. buy=ref(L,-1)<ref(L,-2) AND ref(L,-1)<L AND C>ref(H,-1);
  22. sell=ref(H,-1)>ref(H,-2) AND ref(H,-1)>H AND C<ref(L,-1);