123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100 |
- #ifndef FIX50_TRADINGSESSIONSTATUS_H
- #define FIX50_TRADINGSESSIONSTATUS_H
- #include "Message.h"
- namespace FIX50
- {
- class TradingSessionStatus : public Message
- {
- public:
- TradingSessionStatus() : Message(MsgType()) {}
- TradingSessionStatus(const FIX::Message& m) : Message(m) {}
- TradingSessionStatus(const Message& m) : Message(m) {}
- TradingSessionStatus(const TradingSessionStatus& m) : Message(m) {}
- static FIX::MsgType MsgType() { return FIX::MsgType("h"); }
- TradingSessionStatus(
- const FIX::TradingSessionID& aTradingSessionID,
- const FIX::TradSesStatus& aTradSesStatus )
- : Message(MsgType())
- {
- set(aTradingSessionID);
- set(aTradSesStatus);
- }
- FIELD_SET(*this, FIX::TradSesReqID);
- FIELD_SET(*this, FIX::TradingSessionID);
- FIELD_SET(*this, FIX::TradingSessionSubID);
- FIELD_SET(*this, FIX::TradSesMethod);
- FIELD_SET(*this, FIX::TradSesMode);
- FIELD_SET(*this, FIX::UnsolicitedIndicator);
- FIELD_SET(*this, FIX::TradSesStatus);
- FIELD_SET(*this, FIX::TradSesStatusRejReason);
- FIELD_SET(*this, FIX::TradSesStartTime);
- FIELD_SET(*this, FIX::TradSesOpenTime);
- FIELD_SET(*this, FIX::TradSesPreCloseTime);
- FIELD_SET(*this, FIX::TradSesCloseTime);
- FIELD_SET(*this, FIX::TradSesEndTime);
- FIELD_SET(*this, FIX::TotalVolumeTraded);
- FIELD_SET(*this, FIX::Text);
- FIELD_SET(*this, FIX::EncodedTextLen);
- FIELD_SET(*this, FIX::EncodedText);
- FIELD_SET(*this, FIX::Symbol);
- FIELD_SET(*this, FIX::SymbolSfx);
- FIELD_SET(*this, FIX::SecurityID);
- FIELD_SET(*this, FIX::SecurityIDSource);
- FIELD_SET(*this, FIX::Product);
- FIELD_SET(*this, FIX::CFICode);
- FIELD_SET(*this, FIX::SecurityType);
- FIELD_SET(*this, FIX::SecuritySubType);
- FIELD_SET(*this, FIX::MaturityMonthYear);
- FIELD_SET(*this, FIX::MaturityDate);
- FIELD_SET(*this, FIX::MaturityTime);
- FIELD_SET(*this, FIX::PutOrCall);
- FIELD_SET(*this, FIX::SettleOnOpenFlag);
- FIELD_SET(*this, FIX::InstrmtAssignmentMethod);
- FIELD_SET(*this, FIX::SecurityStatus);
- FIELD_SET(*this, FIX::CouponPaymentDate);
- FIELD_SET(*this, FIX::IssueDate);
- FIELD_SET(*this, FIX::RepoCollateralSecurityType);
- FIELD_SET(*this, FIX::RepurchaseTerm);
- FIELD_SET(*this, FIX::RepurchaseRate);
- FIELD_SET(*this, FIX::Factor);
- FIELD_SET(*this, FIX::CreditRating);
- FIELD_SET(*this, FIX::InstrRegistry);
- FIELD_SET(*this, FIX::CountryOfIssue);
- FIELD_SET(*this, FIX::StateOrProvinceOfIssue);
- FIELD_SET(*this, FIX::LocaleOfIssue);
- FIELD_SET(*this, FIX::RedemptionDate);
- FIELD_SET(*this, FIX::StrikePrice);
- FIELD_SET(*this, FIX::StrikeCurrency);
- FIELD_SET(*this, FIX::StrikeMultiplier);
- FIELD_SET(*this, FIX::StrikeValue);
- FIELD_SET(*this, FIX::OptAttribute);
- FIELD_SET(*this, FIX::ContractMultiplier);
- FIELD_SET(*this, FIX::MinPriceIncrement);
- FIELD_SET(*this, FIX::UnitOfMeasure);
- FIELD_SET(*this, FIX::TimeUnit);
- FIELD_SET(*this, FIX::CouponRate);
- FIELD_SET(*this, FIX::SecurityExchange);
- FIELD_SET(*this, FIX::PositionLimit);
- FIELD_SET(*this, FIX::NTPositionLimit);
- FIELD_SET(*this, FIX::Issuer);
- FIELD_SET(*this, FIX::EncodedIssuerLen);
- FIELD_SET(*this, FIX::EncodedIssuer);
- FIELD_SET(*this, FIX::SecurityDesc);
- FIELD_SET(*this, FIX::EncodedSecurityDescLen);
- FIELD_SET(*this, FIX::EncodedSecurityDesc);
- FIELD_SET(*this, FIX::Pool);
- FIELD_SET(*this, FIX::ContractSettlMonth);
- FIELD_SET(*this, FIX::CPProgram);
- FIELD_SET(*this, FIX::CPRegType);
- FIELD_SET(*this, FIX::DatedDate);
- FIELD_SET(*this, FIX::InterestAccrualDate);
- };
- }
- #endif
|