- Visual C++源码
- Visual Basic源码
- C++ Builder源码
- Java源码
- Delphi源码
- C/C++源码
- PHP源码
- Perl源码
- Python源码
- Asm源码
- Pascal源码
- Borland C++源码
- Others源码
- SQL源码
- VBScript源码
- JavaScript源码
- ASP/ASPX源码
- C#源码
- Flash/ActionScript源码
- matlab源码
- PowerBuilder源码
- LabView源码
- Flex源码
- MathCAD源码
- VBA源码
- IDL源码
- Lisp/Scheme源码
- VHDL源码
- Objective-C源码
- Fortran源码
- tcl/tk源码
- QT源码
Simple Candle Exploration.afl
上传用户:shiqiang
上传日期:2009-06-12
资源大小:1289k
文件大小:1k
源码类别:
金融证券系统
开发平台:
Others
- //------------------------------------------------------------------------------
- //
- // 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);
- }