一个更精度的平滑涵数, 可用于股票交易系统.用于Amibroker 平台

源代码在线查看: 10-20 indicator.afl

软件大小: 1290 K
上传用户: myc
关键词: Amibroker 精度 股票
下载地址: 免注册下载 普通下载 VIP

相关代码

				//------------------------------------------------------------------------------
				//
				//  Formula Name:    10-20 Indicator
				//  Author/Uploader: Dennis Skoblar 
				//  E-mail:          DennisAndLisa@sbcglobal.net
				//  Date/Time Added: 2005-06-14 04:09:34
				//  Origin:          Dave Landry On Swing Trading by Dave Landry
				//  Keywords:        Dave Landry,Landry,10-20 indicator
				//  Level:           basic
				//  Flags:           indicator
				//  Formula URL:     http://www.amibroker.com/library/formula.php?id=471
				//  Details URL:     http://www.amibroker.com/library/detail.php?id=471
				//
				//------------------------------------------------------------------------------
				//
				//  Shows how many points the stock has gone in a 20 day (one month) period.
				//  The ideal would be for a stock to move 10 points in a 20 day period.
				//
				//------------------------------------------------------------------------------
				
				_SECTION_BEGIN("TenTwentyValue");
				TenTwentyValue = HHV(H,20)-LLV(L,20);
				Plot(TenTwentyValue,"10/20 Value",colorRed,styleLine);
				_SECTION_END();			

相关资源