I run a loop of quantile regressions as follows:

global ylist DvWEM
forvalues i = 0.05(0.1)0.95 {
qreg $ylist i.Gender i.DvAgeGrp5 i.GenderAge i.DvCH, q(`i') allbaselevels
}

I am wondering how I can incorporate 'est store' and 'esttab' commands into the above loop to show the estimation results in one table? Any advice is appreciated.