+91-0000000000

}

Monday – Friday : 9:00 AM – 6:30 PM

Array Signal

Enhance your trading strategies with the Array Signal AFL for Amibroker. This powerful tool utilizes arrays to generate signals, providing a comprehensive view of market trends. The Array Signal AFL is available for free download, ensuring accessibility for all Amibroker users. Maximize your analytical capabilities and make informed decisions based on array-driven signals.

/
_SECTION_BEGIN("Debu2");

//Title="this is for automatic wrapping of title text 
SetChartOptions(0,chartShowArrows|chartShowDates);
_N(Title = StrFormat("{{NAME}} - {{INTERVAL}} {{DATE}} Open %g, Hi %g, Lo %g, Close %g (%.1f%%) Vol " +
WriteVal( V, 1.0 ) +
" {{VALUES}}", 
O, H, L, C, SelectedValue( ROC( C, 1 )) ));

// This part will plot the EMA value of 5days close and 6 days open price

EMAstyle=ParamStyle("MAType",styleLine,maskAll ); 
Plot(EMA(Close,5), "EMA(CLOSE_5)", colorGreen, EMAstyle, Null, Null ); 
Plot(EMA(O,6), "EMA(OPEN_6)", colorRed, EMAstyle, Null, Null ); 

// This part will plot Closing price with barstyle choosen by user

ChartStyl=ParamStyle("Chart Type", styleBar,maskAll );
Chartcolor=ParamColor("Chart Colour",maskAll); 
Plot(Close,"Closing price with5,6 EMA",Chartcolor,ChartStyl);


// This part will find the buy and sell point in the chart
Buy= MACD(12,26)>=Signal(12,26,9);
//Buy=Cross(EMA(open,6),EMA(close,5)); AND MACD(12,26)>=Signal(12,26,9);
Sell=Cross(EMA(Open,6),EMA(Close,5))AND MACD(12,26)

Open chat
1
Hi, how can I help you?