Skip to main content

Stock_Bond_Big_Bang for Amibroker (AFL)

bdsource over 14 years ago Amibroker (AFL)

  • Rating:
    3 / 5 (Votes 3)
  • Tags:
    oscillator, amibroker

This afl is to show the Buy_n_Sell pressure through create a Big_Bang

Screenshots

Indicator / Formula

Copy & Paste Friendly
_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();

1 comments

Leave Comment

Please login here to leave a comment.