I was trying to save datapoints that lay above 99.9% CI from Bivariate linear regression results. Selected alpha 0.001 and saved Indiv CIs formula. JM surely enough saves 2 columns named Lower.. and  Upper 99.9% Indiv[my Y variable name]. However, when selecting points in which my Y variable > Upper I see that these limits correspond to much less strict CI, apparently 90%.
 
Removing Fit and redoing it does not help, obviously
Bivariate(
	Y( :"Dtranscr=sqrt(Sum(dZ2))"n ),
	X( :Meanpident ),
	Fit Line(
		{Confid Curves Indiv( 1 ), Line Color( "Red" )},
		{Set α Level( 0.001 )}
	),
	SendToReport(
		Dispatch(
			{},
			"Bivar Plot",
			FrameBox,
			{Frame Size( 617, 465 ), Grid Line Order( 3 ), Reference Line Order( 4 )
			}
		)
	)
);
, because alpha is set after the fitting is done.
 
This looks like a bug worth fixing, unless I am overlooking something.