Modify Aroon indicator afl for Amibroker
MODIFY AROON INDICATOR AFL FOR AMIBROKER
Aroon indicator afl use worldwide as a technical indicator. This Afl is very much popular in India where all people are called it – Aroon indicator for Indian stocks. Also For trading purpose, many organization make there own aroon indicator software . By this afl, Some modify occurs in formula . Altered from aroon indicator screener, from this we can change different Color, Style properties for up and down Aroon.
What is the ‘Aroon Indicator’
The Aroon indicator formula is a technical indicator that is used to identify when trends are likely to change direction. In essence, the indicator measures the time that it takes for the price to reach the highest and lowest points over a given time frame as a percentage of total time. The indicator consists of the “Aroon up” line, which measures the strength of the uptrend, and the “Aroon down” line, which measures the strength of the downtrend.
Image of Aroon Indicator Strategies AFL [amibroker formula language].
AROON INDICATOR FORMULA 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 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 | //------------------------------------------------------------------------------ // Formula Name : aroon indicator afl 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(); //------------------------------------------------------------------------------ L14 = LLV( Low, 14 ); H14 = HHV( High, 14 ); AroonDown = 100* (14 - (( IIf(Ref(L,-1) == L14 ,1 , IIf( Ref(L ,-2 ) == L14 ,2 , IIf( Ref(L ,- 3 ) == L14 ,3 ,IIf( Ref(L ,-4 ) == L14 ,4 ,IIf(Ref( L ,-5 ) == L14 ,5 ,IIf(Ref(L ,-6 ) == L14 ,6 ,IIf( Ref(L ,-7 ) == L14 ,7 ,IIf(Ref( L ,-8 ) == L14 ,8 ,IIf(Ref( L ,-9 ) == L14 ,9 ,IIf( Ref(L,-10) == LLV(L,14 ) ,10 ,IIf(Ref(L ,-11) == L14 ,11 ,IIf(Ref(L,-12 ) == LLV(L ,14) ,12,IIf( Ref(L,-13) == LLV(L ,14 ) ,13 ,IIf( Ref( L,-14) == L14 ,14 ,0) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) / 14; AroonUp = 100 * ( 14 - ( ( IIf(Ref(H ,-1) == H14 ,1 ,IIf(Ref(H ,-2 ) == H14 ,2 ,IIf(Ref(H ,- 3 ) == H14 ,3, IIf(Ref(H ,-4 ) == H14 ,4 ,IIf(Ref(H ,-5 ) == H14 ,5 ,IIf(Ref(H ,-6 ) == H14 ,6 ,IIf(Ref(H,-7 ) == H14 ,7 ,IIf(Ref(H ,-8 ) == H14 ,8 , IIf(Ref(H ,-9 ) == H14 ,9 ,IIf(Ref(H ,-10 ) == H14 ,10 ,IIf(Ref(H ,-11 ) == H14 ,11 ,IIf(Ref(H ,-12 ) == H14 ,12 ,IIf(Ref(H ,-13) == H14 ,13 ,IIf(Ref(H ,-14 ) == H14 ,14 ,0 ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) / 14; PL = Param("PL",14,4,200,1); ALen = PL; AroonUp = 100 * (ALen - (HHVBars(H, ALen + 1))) / Alen; AroonDn = 100 * (ALen - (LLVBars(L, ALen + 1))) / ALen; Plot(AroonUp, "Aroon Up", ParamColor( "Color up", colorCycle ), ParamStyle("Style up")); Plot(AroonDn, "Aroon Dn", ParamColor( "Color Dn", colorCycle ), ParamStyle("Style Dn")); |
Aroon Indicator Download
How to use Amibroker AFL
- Download the Amibroker AFL File.
- Now copy the afl file and paste it to \Program Files\AmiBroker\Formulas\Custom. [For 32 bit]
- For 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? If not than Just Watch.
Tags amibroker afl
0 thoughts on “Modify Aroon indicator afl for Amibroker”