sysuse sp500, clear // Load example data
histogram open, ///
frequency /// Frequency instead of density
width(50) /// Bin width
start(0) /// Start point
normal /// Overlay normal curve
addlabels /// Show values
color(blue%50) /// Transparent color
title("Histogram of Open Prices") ///
xtitle("Opening Price") ///
ylabel(, grid) // Add grid lines