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

📄 simple candle exploration.afl

📁 一个更精度的平滑涵数, 可用于股票交易系统.用于Amibroker 平台
💻 AFL
字号:
//------------------------------------------------------------------------------
//
//  Formula Name:    Simple Candle Exploration
//  Author/Uploader: Herman van den Bergen 
//  E-mail:          psytek@magma.ca
//  Date/Time Added: 2005-01-28 17:33:59
//  Origin:          
//  Keywords:        
//  Level:           medium
//  Flags:           exploration
//  Formula URL:     http://www.amibroker.com/library/formula.php?id=425
//  Details URL:     http://www.amibroker.com/library/detail.php?id=425
//
//------------------------------------------------------------------------------
//
//  Exploration to find and list Candle patterns. Requires
//  CandleFunctionsInclude.afl (in this library) to be in your include folder.
//  Modify to suit your needs.
//
//------------------------------------------------------------------------------

#include <CandleFunctionsInclude.afl>
SetOption("NoDefaultColumns",False);
Filter = Status("LastbarInTest");

for(CP=0; Cp<=44; CP++)
	{
	PV = CandlePattern(CP);
	AddColumn(PV,PatternName,1.0);
	}

⌨️ 快捷键说明

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