+91-0000000000

}

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

Detecting Breakouts Indicators

Amibroker AFL empowers traders to develop breakout detection indicators. By analyzing historical data, traders can create indicators that identify instances when a security’s price breaks through support or resistance levels. These indicators, coded in AFL, help in pinpointing potential breakout opportunities, providing traders with valuable insights for their strategies.

/
_SECTION_BEGIN("Detecting Breakouts Indicators");
//////////////////////////////////// 
// Indicators 
//////////////////////////////////// 
P1=Param("StdDev period", 30, 5, 80 ); 
P2=Param("ADX period", 25, 5, 80 ); 

// Normalized standard deviation 
SD = StDev(C, P1 ); 
SDC = SD / MA( C, P1 ); 

// Standard Deviation * ADX formula 
SADX = SDC * ADX( P2 ); 

Plot( SADX, "StdDev*ADX", colorRed); 
Plot( SDC, "Norm. Standard Deviation", colorBlue, 
styleOwnScale ); 
_SECTION_END();

Open chat
1
Hi, how can I help you?