⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 zig explorer.afl

📁 一个更精度的平滑涵数, 可用于股票交易系统.用于Amibroker 平台
💻 AFL
字号:
//------------------------------------------------------------------------------
//
//  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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -