Array

Hi,

I am trying to run and plot an event study, but my regression is not reporting any statistics other than the coefficients and I am unsure why. I've posted the code below and have attached an image of the regression result:

Code:
format date %td
gen metal_type=0
replace metal_type=1 if steel_prices
label var metal_type "Type of metal"
reg metal_price metal_type metal_type#i.date i.date
Also in trying to plot the regression, the labels read " Steel#12815", but I want the labels to read dates such as "01feb1995" and I am unsure how to specify this in the coefplot command.

Thanks!