📄 simple candle exploration.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 + -