zig explorer.afl

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

AFL
42
字号
//------------------------------------------------------------------------------
//
//  Formula Name:    Zig Explorer
//  Author/Uploader: Michael.S.G. 
//  E-mail:          OzFalcon@Bden.org
//  Date/Time Added: 2003-08-05 15:21:45
//  Origin:          
//  Keywords:        ZigZag Historical Explore
//  Level:           basic
//  Flags:           indicator
//  Formula URL:     http://www.amibroker.com/library/formula.php?id=291
//  Details URL:     http://www.amibroker.com/library/detail.php?id=291
//
//------------------------------------------------------------------------------
//
//  /* Historical ZigZag Explorer.
//
//  *Use the Parameters Popup to "Look Back" in history
//
//  & watch the Zig adapt as you progress through.
//
//  (Hit "CTRL-R" to bring up the Parameters Dialog.)
//
//  OzFalcon.
//
//  */
//
//------------------------------------------------------------------------------

/* Historical ZigZag Explorer.
   *Use the Parameters Popup to "Look Back" in history
    & watch the Zig adapt as you progress through.
   (Hit "CTRL-R" to bring up the Parameters Dialog.)
	OzFalcon.
*/
adjz = Param("Zig",10,0,15.0,.1);
adjc = Param("Back",0,0,BarCount,1);
CAdj = Ref(Close,-adjc);
Graph1 = CAdj;
Graph0 = Zig( CAdj, adjz );

⌨️ 快捷键说明

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