Hi:
We are considering adding this in the next version. For now, maybe you can use Error Propagation to compute the error manually?
Take the built-in DoesResp fitting function as example. After fit, active the Fit Report worksheet, and you can run the following script to get the error:
// Get results to tree variable, tr.
getnlr tr;
// Compute the error of EC50.
e_EC50= 10^tr.LOGx0 * ln(10) * tr.e_LOGx0;
// Type the value of e_EC50.
e_EC50 = ;
Larry