+91-0000000000

}

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

CCT Bollinger Band Oscillator

CCT Bollinger Band Oscillator is a powerful tool for traders who rely on Amibroker data. By combining Bollinger Bands with an oscillator, it helps analyze price volatility. Access to free Amibroker data feed ensures that traders have the latest information, enabling them to fine-tune their Bollinger Band Oscillator strategy for more precise trading decisions.

CCTBBOsc = 100 * ( C + 2*StDev( C, 21) - MA( C, 21 ) ) / ( 4 * StDev( C, 21 ) );

Plot( CCTBBOsc, "CCTBBOsc", colorRed, styleThick );
Plot (0,"",colorBlue,styleNoLabel);
Plot (100,"",colorBlue,styleNoLabel);

_SECTION_BEGIN("MA1");
P = ParamField("Price field",-1);
Periods = Param("Periods", 15, 2, 200, 1, 10 );
Plot( MA( P, Periods ), _DEFAULT_NAME(), ParamColor( "Color", colorCycle ), ParamStyle("Style") ); 
_SECTION_END();

Open chat
1
Hi, how can I help you?