+91-0000000000

}

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

CyberCycle

Navigate market cycles with confidence using the CyberCycle AFL for Amibroker. This dynamic tool, available for free download, employs advanced cycle analysis to identify potential turning points in the market. Integrated with the reliable Amibroker data feed, CyberCycle provides traders with a robust framework for understanding cyclical patterns and making informed decisions. Download this AFL to gain a competitive edge in recognizing market cycles and adapting your strategy accordingly.

/
_SECTION_BEGIN("CyberCycle");
SetBarsRequired( 200, 0 );
// General - purpose Inverse Fisher Transform function
function InvFisherTfm( array )
{
  e2y = exp( 2 * array );
  return ( e2y - 1 )/( e2y + 1 );
}
function CyberCycle( array, alpha )
{
  smooth = ( array + 2 * Ref( array, -1 ) +
             2 * Ref( array, -2 ) + Ref( array, -3 ) ) / 6;
  // init value
  Cycle = ( array[ 2 ] - 2 * array[ 1 ] + array[ 0 ] )/4;
  for( i = 6; i < BarCount; i++ )
  {
     Cycle[ i ] = ( ( 1 - 0.5 * alpha) ^ 2 ) *
                  ( smooth[ i ] - 2 * smooth[ i - 1 ] + smooth[ i - 2] ) +
                  2 * ( 1 - alpha ) * Cycle[ i - 1 ] -
                  ( ( 1 - alpha) ^ 2 ) * Cycle[ i - 2 ];
  }
  return Cycle;
}
Cycle = CyberCycle( (H+L)/2, 0.07 );
ICycle = InvFisherTfm( Cycle );
//Plot( Cycle, "CyberCycle", colorBlue );
Plot( ICycle, "ICyberCycle", colorRed, styleThick );
PlotGrid( 0.5 );
PlotGrid(-0.5 );
_SECTION_END();

Open chat
1
Hi, how can I help you?