[
:symbol, :pretty_symbol, :symbol_lookup_url, :company, :exchange, :exchange_timezone,
:exchange_utc_offset, :exchange_closing, :divisor, :currency, :last, :high, :low,
:volume, :avg_volume, :market_cap, :open, :y_close, :change, :perc_change, :delay,
:trade_timestamp, :trade_date_utc, :trade_time_utc, :current_date_utc, :current_time_utc,
:symbol_url, :chart_url, :disclaimer_url, :ecn_url, :isld_last, :isld_trade_date_utc,
:isld_trade_time_utc, :brut_last, :brut_trade_date_utc, :brut_trade_time_utc, :daylight_savings
]
{
exchange_closing: PARSERS[:to_int],
divisor: PARSERS[:to_int],
last: PARSERS[:to_float],
high: PARSERS[:to_float],
low: PARSERS[:to_float],
volume: PARSERS[:to_int],
avg_volume: PARSERS[:to_int],
market_cap: PARSERS[:to_float],
open: PARSERS[:to_float],
y_close: PARSERS[:to_float],
change: PARSERS[:to_float],
perc_change: PARSERS[:to_float],
delay: PARSERS[:to_int],
isld_last: PARSERS[:to_float],
trade_date_utc: PARSERS[:to_date],
trade_time_utc: PARSERS[:to_time],
current_date_utc: PARSERS[:to_date],
current_time_utc: PARSERS[:to_time],
isld_trade_date_utc: PARSERS[:to_date],
isld_trade_time_utc: PARSERS[:to_time],
daylight_savings: PARSERS[:to_bool]
}