📄 a.afl
字号:
//------------------------------------------------------------------------------
//
// 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -