simple candle exploration.afl
来自「一个更精度的平滑涵数, 可用于股票交易系统.用于Amibroker 平台」· AFL 代码 · 共 32 行
AFL
32 行
//------------------------------------------------------------------------------
//
// 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 + =
减小字号Ctrl + -
显示快捷键?