?? chaikin volume accumulation.afl
字號(hào):
//------------------------------------------------------------------------------
//
// 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;
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -