chaikin volume accumulation.afl

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

AFL
25
字号
//------------------------------------------------------------------------------
//
//  Formula Name:    Chaikin Volume Accumulation
//  Author/Uploader: Tomasz Janeczko 
//  E-mail:          tj@amibroker.com
//  Date/Time Added: 2001-06-16 08:15:07
//  Origin:          Originally developed by Marc Chaikin
//  Keywords:        accumulation
//  Level:           basic
//  Flags:           indicator
//  Formula URL:     http://www.amibroker.com/library/formula.php?id=8
//  Details URL:     http://www.amibroker.com/library/detail.php?id=8
//
//------------------------------------------------------------------------------
//
//  A simple example of using HHV, LLV functions
//
//------------------------------------------------------------------------------

/* Chaikin Volume Accumulation */

cv = 25; 
Graph0 = ((( CLOSE-LLV( CLOSE,cv )) - (HHV(CLOSE,cv)-CLOSE)) / (HHV(CLOSE,cv) - LLV(CLOSE,cv))) * VOLUME;
 

⌨️ 快捷键说明

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