Version 8.1.7.2 - how to get rid of the vertical line marker on the time axis

just updated to 8.1.7.2 and i need to get rid of the box markers in the time window at the bottom of the charts… when i hover over Draw.VerticalLine none of the 8 possible override strings have an option for the marker on/off and i’m not seeing it in chart parameters…

thanks/

Go back to 8.1.6 and wait a year. Nothing in 8.1.7 gives edge

reasonable… what about the “fixes” to charts and orders ? 36228 is kinda big if one is running an automated scheme…

are you an NT rep ? this is my first visit to this forum version…

I’m just a guy. This forum is a community forum that is crowd-sourced. If you want support, contact ninjatrader directly.

You’ve should’ve read on the front page of this forum that it is community managed and not tended to by Ninja Staff.

Are you new to futures trading?

so there’s no more “forum” where NT staff answer questions, it’s just a support ticket ? i noticed the old forum current pages are in 2025… oh and what about 36228… you don’t automate i take it…

//Manually
Double Click the Vertical Line on Chart
Check or UnCheck “Time Marker” property

//Code

//Add using statement if missing
using NinjaTrader.NinjaScript.DrawingTools;

//Declare Private Variable (Vertical Line Object)
VerticalLine VL;

//Draw Vertical Line and Assign to Private VL
VL = Draw.VerticalLine(bla, bla, bla);

//(SafetyCheck) PropertyChanges Error when Null
if(VL != null)
{
	//Set VL Object Properties (TimeMarker)
	VL.IsTimeMarkerVisible = false;

	//use . for intellisense to view properties
	//VL. 
}
else
{
	Print("Error! - Vertical Line is Null");
}	

Be Safe in this Crazy World! :smiling_face_with_sunglasses:

1 Like