li

Archive for the ‘amibroker afl’ Category

Amibroker AFL for stochastic divergence

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); [...]

Amibroker AFL Price Breakout Detection

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”)) [...]

Day Week Month Hourly Timeframe Charts in one Amibroker AFL

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. [...]

Amibroker AFL for 14 Oversold & Overbought indicators with Support & Resistances

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 [...]

Amibroker AFL to find 52-week High and Low of stocks – Scanner & Explorer

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 [...]

How to get Audio Trigger Alerts/Sound Alerts for Buy/Sell signals in Amibroker?

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 [...]