a.afl

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

AFL
30
字号
//------------------------------------------------------------------------------
//
//  Formula Name:    a
//  Author/Uploader: ali 
//  E-mail:          abosliman2005m@hotmail.com
//  Date/Time Added: 2006-09-21 18:37:12
//  Origin:          a
//  Keywords:        a
//  Level:           advanced
//  Flags:           indicator
//  Formula URL:     http://www.amibroker.com/library/formula.php?id=713
//  Details URL:     http://www.amibroker.com/library/detail.php?id=713
//
//------------------------------------------------------------------------------
//
//  a
//
//------------------------------------------------------------------------------

/* Bernstein Momentum Indicator */
/* Set Scaling to Automatic, Show dates On, Percent On, Middle On */

Title = "Bernstein MOM Close - Ref(Close,-7)"; 
GraphXSpace = 5;
Graph0 = MA(Close - Ref(Close,-7),1); 
Graph0Style = 8; 
Graph0Color = 5;
Graph1 = MA(Graph0,5);
Graph1Style = 1;  
Graph1Color = 32;

⌨️ 快捷键说明

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