ultimate plus.afl

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

AFL
40
字号
//------------------------------------------------------------------------------
//
//  Formula Name:    Ultimate plus
//  Author/Uploader: D o j i  * ABU REHAB 
//  E-mail:          d.o.j.i@hotmail.com
//  Date/Time Added: 2006-04-11 13:39:56
//  Origin:          
//  Keywords:        
//  Level:           basic
//  Flags:           system
//  Formula URL:     http://www.amibroker.com/library/formula.php?id=613
//  Details URL:     http://www.amibroker.com/library/detail.php?id=613
//
//------------------------------------------------------------------------------
//
//  Ultimate plus wthe line to sell and buy
//
//  under 30 is buy
//
//  up 65 is sell
//
//------------------------------------------------------------------------------

_SECTION_BEGIN("D o j i - Ultimate plus");
r1 = Param("Fast avg", 7, 2, 200, 1 );
r2 = Param("Med avg", 14, 2, 200, 1 );
r3 = Param("Slow avg", 28, 2, 200, 1 );
Plot( Ultimate( r1, r2, r3 ), _DEFAULT_NAME(), ParamColor("Color", colorCycle ), ParamStyle("Style"));
Plot(30, "", colorGreen);
Plot(50, "", colorRed);
Plot(65, "", colorBlue);
Plot(70, "", colorRed);


if( Status("action") == actionCommentary )
{
  printf( "(Interpretation is not available yet)" );
}

_SECTION_END();

⌨️ 快捷键说明

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