Download Pin Bar Candlestick Pattern Detector AFL (Script)
PIN BAR CANDLESTICK PATTERN DETECTOR 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 PIN BAR CANDLESTICK PATTERN DETECTOR 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 Pin Bar Candlestick Pattern Detector 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 | //------------------------------------------------------------------------------ // Formula Name : Pin Bar Candlestick Pattern Detector 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(); //------------------------------------------------------------------------------ _SECTION_BEGIN( "Pin Bar AFL" ); SetBarsRequired( 100000, 0 ); GraphXSpace = 15; SetChartOptions( 0, chartShowArrows | chartShowDates ); SetChartBkColor( ParamColor( "bkcolor", ColorRGB( 0, 0, 0 ) ) ); GfxSetBkMode( 0 ); GfxSetOverlayMode( 1 ); SetBarFillColor( IIf( C > O, ParamColor( "Candle UP Color", colorGreen ), IIf( C < = O, ParamColor( "Candle Down Color", colorRed ), colorLightGrey ) ) ); Plot( C, "\nPrice", IIf( C > O, ParamColor( "Wick UP Color", colorDarkGreen ), IIf( C < = O, ParamColor( "Wick Down Color", colorDarkRed ), colorLightGrey ) ), 64, 0, 0, 0, 0 ); dec = ( Param( "Decimals", 2, 0, 7, 1 ) / 10 ) + 1; Title = EncodeColor( 55 ) + Title = Name() + " " + EncodeColor( 32 ) + Date() + " " + EncodeColor( 5 ) + "{{INTERVAL}} " + EncodeColor( 55 ) + " Open = " + EncodeColor( 52 ) + WriteVal( O, dec ) + EncodeColor( 55 ) + " High = " + EncodeColor( 5 ) + WriteVal( H, dec ) + EncodeColor( 55 ) + " Low = " + EncodeColor( 32 ) + WriteVal( L, dec ) + EncodeColor( 55 ) + " Close = " + EncodeColor( 52 ) + WriteVal( C, dec ) + EncodeColor( 55 ) + " Volume = " + EncodeColor( 52 ) + WriteVal( V, 1 ); MaxNoseBodySize = 0.33; // Max. Body / Candle length ratio of the Nose Bar NoseBodyPosition = 0.4; // Body position in Nose Bar (e.g. top/bottom 40%) LeftEyeOppositeDirection = True; // true = Direction of Left Eye Bar should be opposite to pattern (bearish bar for bullish Pinbar pattern and vice versa) NoseSameDirection = False; // true = Direction of Nose Bar should be the same as of pattern (bullish bar for bullish Pinbar pattern and vice versa) NoseBodyInsideLeftEyeBody = False; // true = Nose Body should be contained inside Left Eye Body LeftEyeMinBodySize = 0.1; // Min. Body / Candle length ratio of the Left Eye Bar NoseProtruding = 0.5; // Minmum protrusion of Nose Bar compared to Nose Bar length NoseBodyToLeftEyeBody = 1; // Maximum relative size of the Nose Bar Body to Left Eye Bar Body NoseLengthToLeftEyeLength = 0; // Minimum relative size of the Nose Bar Length to Left Eye Bar Length LeftEyeDepth = 0.2; // Minimum relative depth of the Left Eye to its length; depth is difference with Nose's back up = down = 0; point = 0.1; blpin = brpin = False; for( i = 1; i < BarCount; i++ ) { NoseLength = High[i] - Low[i]; if( NoseLength == 0 ) NoseLength = Point; LeftEyeLength = High[i - 1] - Low[i - 1]; if( LeftEyeLength == 0 ) LeftEyeLength = Point; NoseBody = abs( Open[i] - Close[i] ); if( NoseBody == 0 ) NoseBody = point; LeftEyeBody = abs( Open[i - 1] - Close[i - 1] ); if( LeftEyeBody == 0 ) LeftEyeBody = point; // Bearish Pinbar if( High[i] - High[i - 1] >= NoseLength * NoseProtruding ) // Nose protrusion { if( NoseBody / NoseLength < = MaxNoseBodySize ) // Nose body to candle length ratio { if( 1 - ( High[i] - Max( Open[i], Close[i] ) ) / NoseLength < NoseBodyPosition ) // Nose body position in bottom part of the bar { if( ( !LeftEyeOppositeDirection ) || ( Close[i - 1] > Open[i - 1] ) ) // Left Eye bullish if required { if( ( !NoseSameDirection ) || ( Close[i] < Open[i] ) ) // Nose bearish if required { if( LeftEyeBody / LeftEyeLength >= LeftEyeMinBodySize ) // Left eye body to candle length ratio { if( ( Max( Open[i], Close[i] ) < = High[i - 1] ) && ( Min( Open[i], Close[i] ) >= Low[i - 1] ) ) // Nose body inside Left Eye bar { if( NoseBody / LeftEyeBody < = NoseBodyToLeftEyeBody ) // Nose body to Left Eye body ratio { if( NoseLength / LeftEyeLength >= NoseLengthToLeftEyeLength ) // Nose length to Left Eye length ratio { if( Low[i] - Low[i - 1] >= LeftEyeLength * LeftEyeDepth ) // Left Eye low is low enough { if( ( !NoseBodyInsideLeftEyeBody ) || ( ( Max( Open[i], Close[i] ) < = Max( Open[i - 1], Close[i - 1] ) ) && ( Min( Open[i], Close[i] ) >= Min( Open[i - 1], Close[i - 1] ) ) ) ) // Nose body inside Left Eye body if required { Down[i] = High[i] + 5 * Point + NoseLength / 5; brpin[i] = True; } } } } } } } } } } } // Bullish Pinbar if( Low[i - 1] - Low[i] >= NoseLength * NoseProtruding ) // Nose protrusion { if( NoseBody / NoseLength < = MaxNoseBodySize ) // Nose body to candle length ratio { if( 1 - ( Min( Open[i], Close[i] ) - Low[i] ) / NoseLength < NoseBodyPosition ) // Nose body position in top part of the bar { if( ( !LeftEyeOppositeDirection ) || ( Close[i - 1] < Open[i - 1] ) ) // Left Eye bearish if required { if( ( !NoseSameDirection ) || ( Close[i] > Open[i] ) ) // Nose bullish if required { if( LeftEyeBody / LeftEyeLength >= LeftEyeMinBodySize ) // Left eye body to candle length ratio { if( ( Max( Open[i], Close[i] ) < = High[i - 1] ) && ( Min( Open[i], Close[i] ) >= Low[i - 1] ) ) // Nose body inside Left Eye bar { if( NoseBody / LeftEyeBody < = NoseBodyToLeftEyeBody ) // Nose body to Left Eye body ratio { if( NoseLength / LeftEyeLength >= NoseLengthToLeftEyeLength ) // Nose length to Left Eye length ratio { if( High[i - 1] - High[i] >= LeftEyeLength * LeftEyeDepth ) // Left Eye high is high enough { if( ( !NoseBodyInsideLeftEyeBody ) || ( ( Max( Open[i], Close[i] ) < = Max( Open[i - 1], Close[i - 1] ) ) && ( Min( Open[i], Close[i] ) >= Min( Open[i - 1], Close[i - 1] ) ) ) ) // Nose body inside Left Eye body if required { Up[i] = Low[i] - 5 * Point - NoseLength / 5; blpin[i] = True; } } } } } } } } } } } } for( i = 1; i < BarCount; i++ ) { if( blpin[i] ) PlotText( "bull.pin " , i, L[ i ] - 2.5, colorLime ); if( brpin[i] ) PlotText( " bear pin" , i, H[ i ] + 2.5, colorOrange ); } PlotShapes( shapeHollowSmallSquare*brpin, 4, 0, H , 5 ); PlotShapes( shapeHollowSmallSquare*blpin, 5, 0, L , -5 ); Filter = brpin OR blpin; AddColumn( brpin, "Bearish Pin", 1.2 ); AddColumn( blpin, "Bullish Pin", 1.2 ); _SECTION_END(); |
【 More About Pin Bar Candlestick Pattern Detector AFL ⋡
♌
DOWNLOAD PIN BAR CANDLESTICK PATTERN DETECTOR 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.
♍
PIN BAR CANDLESTICK PATTERN DETECTOR 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.
♊
PIN BAR CANDLESTICK PATTERN DETECTOR 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 Pin Bar Candlestick Pattern Detector AFL (Script)”