Amibroker AFL for stochastic divergence. When ever a positive divergence is found then it will draw a vertical line. /*Positive Stochastic Divergence for use in Indicator Builder and Automatic Analysis (scan mode)*/ ST33=StochD(14); TR1=LLVBars(ST33,4); TR2=IIf(ST33<30 AND TR1>0 AND Ref(TR1,-1)==0,Ref(ST33,-1),0); TRC=IIf(TR2>0,C,0); vs=ValueWhen(tr2, Ref(st33,-1), 1); dvs=vs-Ref(vs,-1); vc=ValueWhen(trc, LLV(C,3), 1); dvc=vc-Ref(vc,-1); diver=IIf(dvs>0 AND dvc<0,30,0); DAS=BarsSince(Ref(TR2,-1)>0); DD=IIf(DAS<20 AND C>=Ref(C,-1),DIVER,0); [...]
Archive for the ‘amibroker afl’ Category
Amibroker AFL for Price Breakout Detection. AFL can be used to find out horizontal support and resistance lines for detecting the price breakouts. _SECTION_BEGIN(“BREAK OUTS”); // ============== Standard Chart Code ============================ CodeName = “Rasheed’s Breakouts”; SetFormulaName(“Rasheed’s Breakouts”); // ————— Controls for Chart Display ———————————- SetChartOptions(0, chartShowDates | chartWrapTitle); if (ParamToggle(“Tooltip shows”, “All Values|Only Prices”)) [...]
To get IEOD Data into Amibroker visit the link below: http://tinyurl.com/ctzqcsy Using Day-Week-Month-Hourly AFL you can customize your chart with multiple time-frames without navigating between time-frames. All you need to do is add this AFL 3 to 4 times on the same chart and change time frames in each panel. As simple it is. [...]
To get IEOD Data into Amibroker visit the link below: http://tinyurl.com/ctzqcsy We come across several indicators that show Oversold and Overbought zone for the stocks. Every time we need to navigate between various tabs in Amibroker to monitor all these indicators for a given stock or Index. So, is it possible to combine and customize [...]
To get IEOD Data into Amibroker visit the link below: http://tinyurl.com/ctzqcsy Here is the Amibroker AFL to find the stocks that hit 52-week High and low on the given date. AFL can be used both to scan the stocks and also to explore them. It is a simple AFL which takes only the trading [...]
To get IEOD Data into Amibroker visit the link below: http://tinyurl.com/ctzqcsy Whenever the buy/sell signals trigger in Amibroker then we can configure the respective AFL so that it can send signals to us in the form of an Audio. All we need to do is to add the following two lines of code to [...]
