Here is a workaround sniplet:
@Configurable("Pricelevel") public String pricelevel = "0";
double priceD = 0D;
public void onStart(IContext context) throws JFException {
priceD = Double.parseDouble(pricelevel);
}
In variable priceD you will get your pricelevel as a double variable.