// Downloaded From https://www.WiseStockTrader.com
_SECTION_BEGIN("Stock_Bond_Big_Bang");

p=Param("period", 4,2,100);
q=Param("Big_Bang",8,1,20);
d = (H-L)/V;
d1 = (L-H)/V;
Plot(A= MA(d,p),"", colorWhite, styleDots);
Plot(b= MA(a,q),"", colorRed, styleDots);
Plot(A1= MA(d1,p),"", colorWhite, styleDots);
Plot(b1= MA(a1,q),"", colorRed, styleDots);
_SECTION_END();

_SECTION_BEGIN("Name");
GfxSetOverlayMode(1);
GfxSelectFont("Tahoma", Status("pxheight")/8 );
GfxSetTextAlign( 6 );// center alignment
GfxSetTextColor( ColorHSB( 90, 90, 90 ) );
GfxSetBkMode(50); // transparent
GfxTextOut( Name(), Status("pxwidth")/2, Status("pxheight")/12 );
GfxSelectFont("Tahoma", Status("pxheight")/18 );
GfxTextOut( "https://www.facebook.com/stockbond", Status("pxwidth")/2, Status("pxheight")/4 );

_SECTION_END();