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

📄 garythompson (455).afl

📁 一个更精度的平滑涵数, 可用于股票交易系统.用于Amibroker 平台
💻 AFL
字号:
//------------------------------------------------------------------------------
//
//  Formula Name:    garythompson
//  Author/Uploader: Gary Thompson 
//  E-mail:          picard@ten-forward.co.uk
//  Date/Time Added: 2005-04-07 06:30:20
//  Origin:          
//  Keywords:        AO - Awesome Oscillator
//  Level:           basic
//  Flags:           indicator
//  Formula URL:     http://www.amibroker.com/library/formula.php?id=455
//  Details URL:     http://www.amibroker.com/library/detail.php?id=455
//
//------------------------------------------------------------------------------
//
//  Bill Williams Awesome Oscillator ( a momentum Oscillator) based on the
//  profitunity trading approach. See "Trading Chaos" by Bill williams for full
//  description and useage - good for wave counting
//
//------------------------------------------------------------------------------

/* Awesome Oscillator code for Amibroker
	Written By Gary Thompson 
	07th April 2005  */


SlowMA=MA( Avg ,34);
FastMA=MA( Avg,5);

barcolor= IIf((SlowMA - FastMA) <= Ref(SlowMA - FastMA, -1),colorGreen,colorRed); 
               
Graph0=FastMA-SlowMA;
Graph0Style=2+5;
Graph0BarColor=barcolor;

/* the following is to put the 5 period signal line on the oscillator if you choose*/

/*Graph1=Wilders(SlowMA-FastMA,5);
Graph1Style=4+1;*/

⌨️ 快捷键说明

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