Trade With Powerful Woodies CCI Indicator – Amibroker AFL
WOODIES CCI INDICATOR AFL
Woodies CCI Indicator is a momentum indicator which was developed by Ken Woods. This AFL based on a 14 period Commodity Channel Index (CCI). It’s a fully unbounded oscillator with a base value of 0 and has no lower or upper limit.
Some traders use the indicator to spot a number of trad-able CCI patterns both with and against the trend, such as the zero line reject, the reverse divergence and the trend line break. The 200 level signals an extreme reading. The indicator is often used in combination with other signals.
Here is the Image of AFL [amibroker formula language].
In picture See the drawing tools deeply. You can fine where to buy signal. Also you can find out the sell signal. As a mention Woodies CCI Indicator gives you perfect taking profit signal. When Signal appears, you may take signal without any hesitation.
Trader actually use this afl for the base of trailing stop formula.
WOODIES CCI INDICATOR AFL FOR AMIBROKER AFL CODE
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 | //------------------------------------------------------------------------------ // Formula Name : WOODIES CCI INDICATOR by pipschart // Author : KrT group // Uploader : www.pipschart.com // E-mail : info@pipschart.com // Amibroker Blog : www.pipschart.com/amibroker // Origin : Modified & Collected from different sources. //------------------------------------------------------------------------------ _SECTION_BEGIN("KrT group Logo"); GfxSetBkMode(1); X=750; Y=1; Font=10; GfxSelectFont("Impact",Font*2.2, 550);GfxSetTextColor(colorRed);GfxTextOut ("KrT group",x,y); GfxSelectFont("Impact",Font*2.2, 550);GfxSetTextColor(colorGreen);GfxTextOut ("RESEARCH",x+120,Y); _SECTION_END(); //------------------------------------------------------------------------------ Title = "Woodies CCI " + " " + FullName() + " " + Date( ) ; A=Param("CCI TURBO PERIODS",6,3,14,1); A1=Param("CCI 14 PERIODS",14,7,20,1); A2=ParamColor("CCI TURBO",colorBrightGreen); A3=ParamColor("CCI 14",colorRed); A4=CCI(A); A5=CCI(A1); A6=IIf(A5<0,colorBrightGreen,colorRed); A7=IIf(Ref(A5,-5) <0 AND Ref(A5,-4) <0 AND Ref(A5,-3) <0 AND Ref(A5,-2) <0 AND Ref(A5,-1) <0,colorRed,A6); A8=IIf(Ref(A5,-5) >0 AND Ref(A5,-4) >0 AND Ref(A5,-3) >0 AND Ref(A5,-2) >0 AND Ref(A5,-1) >0,colorBrightGreen,A7); Plot(A5,"CCI TURBO HISTOGRAM",A8,styleHistogram); Plot(A4,"CCI TURBO",A2,styleThick); Plot(A5,"CCI 14",A3,styleThick); Plot(0,"ZERO LINE",colorBlack,styleThick); Plot(100,"HUNDRED LINE",colorBlack,styleDots); Plot(-100,"MINUS LINE",colorBlack,styleDots); |
Download AFL
How to use Woodies CCI Indicator for Amibroker AFL
- Download the Woodies CCI Indicator for Amibroker AFL.
- Now copy the afl file and paste it to \Program Files\AmiBroker\Formulas\Custom. [For 32 bit]
- If You have 64 bit operating system than paste it to \Program Files(x86)\AmiBroker\Formulas\Custom.
- Go to formula section of Amibroker and you will get the afl in Custom folder.
Don’t Know How To Set Amibroker? Than Just Watch :
Tags amibroker afl
0 thoughts on “Trade With Powerful Woodies CCI Indicator – Amibroker AFL”