Download Stoch KD Cloud AFL (Script)
STOCH KD 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 STOCH KD 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 Stoch KD 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 | //------------------------------------------------------------------------------ // Formula Name : Stoch KD Cloud 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( "Stoch KD Cloud" ); /* Stochastic is an oscillator that measures the position of a stock OR security compared with its recent trading range indicating overbought OR oversold conditions. It displays current Day price at a percentage relative to the security’s trading range (High/Low) over the specified period of time. In a Slow Stochastic, the highs AND lows are averaged over a slowing period. The default is usually 3 for slow AND 1 (no slowing) for fast. The line can then be smoothed using an exponential moving average, Weighted, OR simple moving average %D. Confirming Buy/Sell signals can be read at intersections of the %D with the %K as well. The Stochastic Oscillator always ranges between 0% AND 100%. A reading of 0% shows that the security’s Close was the Lowest price that the security has traded during the preceding x-time periods. A reading of 100% shows that the security’s Close was the Highest price that the security has traded during the preceding x-time periods. When the closing price is near the top of the recent trading range (above 80%), the security is in an overbought condition AND may Signal for a possible correction. Oversold condition exists at a point below %20. Prices Close near the top of the range during uptrends AND near the bottom of the range during downtrends. Source: Amibroker 5.20 Help Menu BUY = When the Stochastic is below the 20 oversold line AND the %K line crosses over the %D line. SELL = When the Stochastic is above the 80 overbought line AND the %K line crosses below the %D line. */ periods = Param( "Periods", 15, 1, 200, 1 ); Ksmooth = Param( "%K Avg", 3, 1, 200, 1 ); a = StochK( periods , Ksmooth); Plot( a, _DEFAULT_NAME(), ParamColor( "Color", colorBrightGreen ), ParamStyle("Style") ); Dsmooth = Param( "%D Avg", 3, 1, 200, 1 ); b = StochD( periods , Ksmooth, DSmooth ); Plot( b, _DEFAULT_NAME(), ParamColor( "Color", colorRed ), ParamStyle("Style") ); PlotOHLC( a,a,b,a,"", IIf(a>b, colorBrightGreen, colorRed), styleCloud); Overbought= 80; Oversold= 20; Plot(Overbought,"OB",colorRed); Plot(Oversold,"OS",colorGreen); Buy = Cross( a, b ); Sell = Cross( b, a ); PlotShapes( shapeSmallUpTriangle * Buy + shapeSmallDownTriangle * Sell, IIf( Buy, colorWhite, colorWhite ) ); _SECTION_END(); _SECTION_BEGIN("Animated_BackGround_"); //==================== for( i = 1; i < BarCount; i++ ) z = (GetPerformanceCounter()/100)%256; anim=ColorHSB( ( i + z ) % 256, 255, 100 ); SetChartBkColor(anim); RequestTimedRefresh(1); //==================== _SECTION_END(); |
【 More About Stoch KD for Amibroker AFL ⋡
♌
DOWNLOAD STOCH KD 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.
♍
STOCH KD 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.
♊
STOCH KD 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 Stoch KD Cloud AFL (Script)”