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

📄 volume weighted moving average.afl

📁 一个更精度的平滑涵数, 可用于股票交易系统.用于Amibroker 平台
💻 AFL
字号:
//------------------------------------------------------------------------------
//
//  Formula Name:    Volume Weighted Moving Average
//  Author/Uploader: Jack Kutzer 
//  E-mail:          jack.kutzer@mail.com
//  Date/Time Added: 2002-07-10 11:23:59
//  Origin:          Neuro Dimensions Trading Solutions Implementation of Volume Weighted Moving Average
//  Keywords:        
//  Level:           basic
//  Flags:           indicator
//  Formula URL:     http://www.amibroker.com/library/formula.php?id=197
//  Details URL:     http://www.amibroker.com/library/detail.php?id=197
//
//------------------------------------------------------------------------------
//
//  Conversion of the Volume Weighted Moving Average from Neuro Dimensions
//  Tading Solutions to AFL.
//
//------------------------------------------------------------------------------

/* The Volume Weighted Moving Average calculates the sum of the volume times the data field for each day in the average, then divides this value by the sum of the volumes in that period. */

Graph0 = Sum((Volume*Close),10)/Sum (Volume,10);

⌨️ 快捷键说明

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