How to get type of a column using Tables.Schema from Tables.jl?

I think this is the way you are looking for:

Tables.columntype(sch, :Close)

If used a lot, then:

import Tables: columntype

can remove the need for a Module prefix.