last trade price panel for Amibroker (AFL)
slingam almost 13 years ago Amibroker (AFL)
last trade price panel for your afl you can add in your code
Indicator / Formula
Copy & Paste Friendly
_SECTION_BEGIN("");
GfxSetOverlayMode(0);
GfxSelectPen( colorRed, 3 );
GfxSelectSolidBrush( colorLightYellow );
GfxRoundRect( 350, 38,665, 70, 15, 15 );
GfxSetBkMode(1);
GfxSelectFont( "Arial", 17.5, 700, False );
GfxSetTextColor( colorBrown );
GfxSetTextAlign(0);
GfxSetTextColor( colorBlack );
GfxTextOut( " Last Traded Price = "+ BuyPrice , 350, 40);
_SECTION_END();0 comments
Leave Comment
Please login here to leave a comment.