Auto Analysis Key Reversal.afl
上传用户:shiqiang
上传日期:2009-06-12
资源大小:1289k
文件大小:1k
源码类别:
金融证券系统
开发平台:
Others
- //------------------------------------------------------------------------------
- //
- // Formula Name: Auto Analysis Key Reversal
- // Author/Uploader: Larry Lovrencic
- // E-mail: lvl@firstpacific.net
- // Date/Time Added: 2001-09-04 01:51:44
- // Origin:
- // Keywords: key reversal automatic analysis
- // Level: basic
- // Flags: exploration
- // Formula URL: http://www.amibroker.com/library/formula.php?id=109
- // Details URL: http://www.amibroker.com/library/detail.php?id=109
- //
- //------------------------------------------------------------------------------
- //
- // Find Key Reversals using automatic analysis
- //
- //------------------------------------------------------------------------------
- /*Key Reversals Automatic Analysis
- by Larry Lovrencic*/
- buy=O<ref(C,-1) AND L<ref(L,-1) AND C>ref(H,-1);
- sell=O>ref(C,-1) AND H>ref(H,-1) AND C<ref(L,-1);