When I open a data filter and use "zoom to Selection" to restrict the displayed ranged, I can generate a J'SL code which looks like the one below.

 
Unfortunately, when I run the JSL code, the Data Filter is opened without the range restriction (Jmp 17.0):

 
 
Is there anything that I can do to get the range restricted?
 
dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
dt  << Data Filter(
	Location( {175, 175} ),
	Conditional,
	Mode( Include( 1 ) ),
	Add Filter(
		columns( :height ),
		Where( :height >= 65 ),
		Display( :height, Min( 60 ) )
	)
);