Download Modify The Flower for Amibroker AFL (Script)
MODIFY THE FLOWER AFL SCRIPT
One of the best Scripts that Listing Indicators/Formulas for Amibroker (AFL).
Download Amibroker AFL Script. It’s easy to download.
Meet Our Amibroker AFL Script
WHY MODIFY THE FLOWER FOR AMIBROKER AFL SCRIPT?
Because This AFL is one of the best indicator for any kind of trading market like Stock or Forex Market.
Form AFL Script, you may get a lot of Buy Sell Signal as well as direction what to do.
Also, Raw Source Code of Amibroker Afl include and define here.
How to Setup Amibroker AFL Script
- Copy the Amibroker AFL Code.
- Create a new file and Paste the code in the file. Name of the file should be XXXX.afl
- Copy XXXX.afl file to \Program Files\Amibroker\Formula\
- For 64 bit operating system, Copy XXXX.afl file to \Program Files(x86)\AmiBroker\Formulas\
- Open Amibroker and Open a Blank Chart
- Go to Charts and apply/drag-and-drop the newly added indicator over blank chart.
- That’s it, you are done. Now you will be able to use the new indicator.
Download Modify The Flower For Amibroker AFL Script
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 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 | //------------------------------------------------------------------------------ // Formula Name : Modify Flower AFL for Amibroker 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"); 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(); SetChartOptions(0,chartShowArrows|chartShowDates); _SECTION_BEGIN("Background_Setting"); SetChartBkGradientFill( ParamColor("BgTop", colorBlack), ParamColor("BgBottom", colorBlack),ParamColor("titleblock",colorDarkTeal )); _SECTION_END(); _SECTION_BEGIN("Flower"); Prd1=Param("ATR Period",4,1,20,1); Prd2=Param("Look Back",7,1,20,1); green = HHV(LLV(L,Prd1)+ATR(Prd1),Prd2); red = LLV(HHV(H,Prd1)-ATR(Prd1),Prd2); flowerClose = EMA((Open+High+Low+Close)/4,3) ; flowerOpen = EMA((Ref(Open,-1) + Ref(flowerClose,-1))/2,3); Temp = Max(High, flowerOpen); flowerHigh = EMA(Max(Temp, flowerClose),3); Temp = Min(Low,flowerOpen); flowerLow = EMA(Min(Temp, flowerClose),3); barColor=IIf(C>Green ,colorBrightGreen,IIf(C < RED,colorRed,colorWhite)); PlotOHLC( IIf(flowerOpen<flowerClose, flowerOpen, flowerClose),flowerHigh,flowerLow,IIf(flowerOpen<flowerClose, flowerClose, flowerOpen), "Close", barColor, styleNoTitle | styleCandle); _SECTION_END(); _SECTION_BEGIN("OsSetting"); OBSetting=Param("Setting",45,1,500,1); Bline = StochD(OBSetting); Oversold=Bline<=30; Overbought=Bline>=85; PlotShapes (IIf(Oversold, shapeSmallCircle, shapeNone) ,colorDarkGrey, layer = 0, yposition = flowerLow, offset = -8 ); PlotShapes (IIf(Overbought, shapeSmallCircle, shapeNone) ,colorPlum, layer = 0, yposition = flowerHigh, offset = 7 ); _SECTION_END(); _SECTION_BEGIN("Parameters"); LB1= Param("Long LookBack Periods",42,1,60,1); LB3= Param("Mid LookBack Periods",18,1,30,1); LB2= Param("Short LookBack Periods",6,1,30,1); _SECTION_END(); _SECTION_BEGIN("ResistanceLong"); RsColor=ParamColor("LongResColor",colorOrange); BrCount=Param("LongBarLength",65,1,500,1); for (i=0;i<barcount -BrCount;i++) //hide the line except most recent 10 bars { RsColor[i] = colorBlack; } flowerClose = EMA((Open+High+Low+Close)/4,3) ; flowerOpen = EMA((Ref(Open,-1) + Ref(flowerClose,-1))/2,3); Temp = Max(High, flowerOpen); flowerHigh = EMA(Max(Temp, flowerClose),3); Temp = Min(Low,flowerOpen); flowerLow = EMA(Min(Temp, flowerClose),3); R=ValueWhen(Cross(MA(flowerClose,LB1),C),HHV(flowerHigh,LB1),-1); Plot(R,"Resistance",RsColor,ParamStyle("LongResStyle",styleNoTitle|styleLine|styleDots|styleStaircase|styleThick,maskAll)); _SECTION_END(); _SECTION_BEGIN("ResistanceMid"); Rs3Color=ParamColor("MidResColor",colorCustom4); BrCount3=Param("MidBarLength",40,1,500,1); for (i=0;i<BarCount-BrCount3;i++) //hide the line except most recent 10 bars { Rs3Color[i] =colorBlack; } flowerClose = EMA((Open+High+Low+Close)/4,3) ; flowerOpen = EMA((Ref(Open,-1) + Ref(flowerClose,-1))/2,3); Temp = Max(High, flowerOpen); flowerHigh = EMA(Max(Temp, flowerClose),3); Temp = Min(Low,flowerOpen); flowerLow = EMA(Min(Temp, flowerClose),3); RM2=ValueWhen(Cross(EMA(flowerClose,LB3),C),HHV(flowerHigh,LB3),-1); Plot(RM2,"MidRes",Rs3Color,ParamStyle("MidResStyle",styleLine|styleStaircase|styleNoTitle,maskAll)); _SECTION_END(); _SECTION_BEGIN("ResistanceShort"); Rs2Color=ParamColor("ShortResColor",colorCustom12); BrCount2=Param("ShortResLength",12,1,500,1); for (i=0;i<BarCount-BrCount2;i++) //hide the line except most recent 10 bars { Rs2Color[i] = colorBlack; } flowerClose = EMA((Open+High+Low+Close)/4,3) ; flowerOpen = EMA((Ref(Open,-1) + Ref(flowerClose,-1))/2,3); Temp = Max(High, flowerOpen); flowerHigh = EMA(Max(Temp, flowerClose),3); Temp = Min(Low,flowerOpen); flowerLow = EMA(Min(Temp, flowerClose),3); RM=ValueWhen(Cross(TEMA(flowerClose,LB2),C),HHV(flowerHigh,LB2),-1); Plot(RM,"ShortRes",Rs2Color,ParamStyle("ShortResStyle",styleDashed|styleThick|styleNoTitle|styleStaircase,maskAll)); _SECTION_END(); _SECTION_BEGIN("SupportLong"); Sup1Color=ParamColor("LongSupColor",colorBlue); BrCount4=Param("LongSupBarLength",65,1,500,1); for (i=0;i<BarCount-BrCount4;i++) //hide the line except most recent 10 bars { Sup1Color[i] =colorBlack; } flowerClose = EMA((Open+High+Low+Close)/4,3) ; flowerOpen = EMA((Ref(Open,-1) + Ref(flowerClose,-1))/2,3); Temp = Max(High, flowerOpen); flowerHigh = EMA(Max(Temp, flowerClose),3); Temp = Min(Low,flowerOpen); flowerLow = EMA(Min(Temp, flowerClose),3); S=ValueWhen(Cross(MA(flowerClose,LB1),C),LLV(flowerLow,LB1),-1); Plot(s,"Support",Sup1Color,ParamStyle("SupStyle",styleLine|styleDots|styleStaircase|styleThick|styleNoTitle,maskAll)); _SECTION_END(); _SECTION_BEGIN("SupportMid"); Sup3Color=ParamColor("MidSupColor",colorDarkYellow); BrCount6=Param("MidBarLength",40,1,500,1); for (i=0;i<BarCount-BrCount6;i++) //hide the line except most recent 10 bars { Sup3Color[i] =colorBlack; } flowerClose = EMA((Open+High+Low+Close)/4,3) ; flowerOpen = EMA((Ref(Open,-1) + Ref(flowerClose,-1))/2,3); Temp = Max(High, flowerOpen); flowerHigh = EMA(Max(Temp, flowerClose),3); Temp = Min(Low,flowerOpen); flowerLow = EMA(Min(Temp, flowerClose),3); SM2=ValueWhen(Cross(EMA(flowerClose,LB3),C),LLV(flowerLow,LB3),-1); Plot(SM2,"MidSup",Sup3Color,ParamStyle("MidSupStyle",styleLine|styleStaircase|styleNoTitle,maskAll)); _SECTION_END(); _SECTION_BEGIN("SupportShort"); Sup2Color=ParamColor("ShortSupColor",colorPink); BrCount5=Param("ShortSupBarLength",12,1,500,1); for (i=0;i<BarCount-BrCount5;i++) //hide the line except most recent 10 bars { Sup2Color[i] =colorBlack; } flowerClose = EMA((Open+High+Low+Close)/4,3) ; flowerOpen = EMA((Ref(Open,-1) + Ref(flowerClose,-1))/2,3); Temp = Max(High, flowerOpen); flowerHigh = EMA(Max(Temp, flowerClose),3); Temp = Min(Low,flowerOpen); flowerLow = EMA(Min(Temp, flowerClose),3); SM=ValueWhen(Cross(TEMA(flowerClose,LB2),C),LLV(flowerLow,LB2),-1); Plot(SM,"ShortSup",Sup2Color,ParamStyle("ShortSupStyle",styleDashed|styleThick|styleNoTitle|styleStaircase,maskAll)); _SECTION_END(); _SECTION_BEGIN("Cloud Setting"); //Cloud ParmCloud = ParamToggle("Cloud", "No|Yes", 0); CloudResColor=ParamColor("CloudResColor",colorDarkTeal); BrCount7=Param("CloudResLength",15,1,500,1); for (i=0;i<BarCount-BrCount7;i++) //hide the line except most recent 10 bars { CloudResColor[i] = colorBlack; } flowerClose = EMA((Open+High+Low+Close)/4,3) ; flowerOpen = EMA((Ref(Open,-1) + Ref(flowerClose,-1))/2,3); Temp = Max(High, flowerOpen); flowerHigh = EMA(Max(Temp, flowerClose),3); Temp = Min(Low,flowerOpen); flowerLow = EMA(Min(Temp, flowerClose),3); CS=ValueWhen(Cross(WMA(flowerClose,LB2),C),LLV(flowerLow,LB2),-1); CR=ValueWhen(Cross(WMA(flowerClose,LB2),C),HHV(flowerHigh,LB2),-1); if(parmCloud == 1) { PlotOHLC( CS, CS, CR,CR, "Band", CloudResColor, styleCloud | styleNoLabel|styleNoTitle); } _SECTION_END(); Title = StrFormat("\\c02 {{NAME}} | {{DATE}} | Open : %g | High : %g | Low : %g | Close : %g | Change = %.1f%% | Volume = " +WriteVal( V, 1.0 ) +", {{VALUES}}", O, H, L, C, SelectedValue( ROC( C, 1 )) ); _SECTION_BEGIN("Graphics"); GrpPrm=Param("Graphic Space",1,-5,10); GraphXSpace=GrpPrm; _SECTION_END(); |
【 More About Modify The Flower for Amibroker AFL ⋡
♌
DOWNLOAD MODIFY THE FLOWER AFL CODE
Download Amibroker AFL Script directly from here. If you are not familiar with copy-paste to input AFL then you may download a raw file from here. This gives you a direct AFL File. Just download it and copy the file and paste it into the Amibroker formulas folder. Open Amibroker Software and watch the AFL in AFL Section.
♍
MODIFY THE FLOWER AFL CHART
In the trading world, there is one line expressed. Chart Can Talk. Yes, that’s true. In every chart like Amibroker AFL Chart or MT4 Chart can talk. The chart shows you the actual situation in the market. Buy-Sell Signal may generate and interpret clearly. That’s why anyone can find out the reality.
♊
MODIFY THE FLOWER AFL VIDEO
Every Stock Trading or Forex trading needs a platform where anyone can get the freedom to analyze. This Amibroker AFL Script gives you those opportunities. But if you do not catch the real signal in real-time then you lose money as well as waste time. For this reason, watch videos first and then earn. Don’t lose money.
What Are You Waiting For?
Find the Latest Amibroker AFL Scripts. It’s absolutely Free!
AMIBROKER AFL SCRIPTS ➜
“The parable of those who spend their substance in the way of Allah is that of a grain of corn: it groweth seven ears, and each ear Hath a hundred grains.Allah giveth manifold increase to whom He pleaseth: And Allah careth for all and He knoweth all things.” | Al-Quran (Surah Al-Baqara, 261)
0 thoughts on “Download Modify The Flower for Amibroker AFL (Script)”