auto analysis key reversal.afl

来自「一个更精度的平滑涵数, 可用于股票交易系统.用于Amibroker 平台」· AFL 代码 · 共 24 行

AFL
24
字号
//------------------------------------------------------------------------------
//
//  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);

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?