using System;
using System.ComponentModel;
namespace Krs.Ats.IBNet
{
///
/// Historical Data Request Return Types
///
[Serializable()]
public enum HistoricalDataType
{
///
/// Return Trade data only
///
[Description("TRADES")]
Trades,
///
/// Return the mid point between the bid and ask
///
[Description("MIDPOINT")]
Midpoint,
///
/// Return Bid Prices only
///
[Description("BID")]
Bid,
///
/// Return ask prices only
///
[Description("ASK")]
Ask,
///
/// Return Bid / Ask price only
///
[Description("BID/ASK")]
BidAsk,
}
}