Stock Portfolio Organizer
The ultimate porfolio management solution.
WiseTrader Toolbox
#1 Selling Amibroker Plugin featuring:
CountDown Completion of Bar for Amibroker (AFL)
For those who want the remaining time left for the completion of a bar. Make sure you have set the time of the market you trade in database settings>>>Intraday settings.
Similar Indicators / Formulas
Indicator / Formula
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | _SECTION_BEGIN ( "Time Left" ); tempnum = Now ( 4 ) - TimeNum (); TimeRem = Interval () - (( int (tempnum[ BarCount - 1] / 100) * 60) + (tempnum[ BarCount - 1] - int (tempnum[ BarCount - 1] / 100) * 100)); if (TimeRem[ BarCount - 1] < 0) TimeRem = 0; MinuteVar = int (TimeRem / 60); SecondsVar = int ( frac (TimeRem / 60) * 60); TitleTimeRem = EncodeColor ( colorWhite ) + MinuteVar + ":" + WriteIf (SecondsVar > 9, "" , "0" ) + SecondsVar; Hora= Param ( "Horizontal Positiona" ,525,1,1200,1); Vera= Param ( "Vertical Positiona" ,17,1,830,1); GfxSetBkMode ( colorWhite ); FST= Param ( "Font Size Time" ,12,11,100,1); GfxSelectFont ( "Arial" , FST, 700, italic = False , underline = False , True ); GfxSetTextColor ( ParamColor ( "Color" , colorWhite ) ); GfxTextOut ( "" +MinuteVar+ ":" + WriteIf (SecondsVar > 9, "" , "0" )+SecondsVar+ "" , Hora+30 , Vera+65 ); _SECTION_END (); |
0 comments
Leave Comment
Please login here to leave a comment.
Back