/* -*- mode: c++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* Copyright (C) 2006 Joseph Wang This file is part of QuantLib, a free-software/open-source library for financial quantitative analysts and developers - http://quantlib.org/ QuantLib is free software: you can redistribute it and/or modify it under the terms of the QuantLib license. You should have received a copy of the license along with this program; if not, please email . The license is also available online at . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the license for more details. */ /*! \file prices.hpp \brief price classes */ #ifndef quantlib_prices_hpp #define quantlib_prices_hpp #include namespace QuantLib { //! Price types enum PriceType { Bid, /*!< Bid price. */ Ask, /*!< Ask price. */ Last, /*!< Last price. */ Close, /*!< Close price. */ Mid, /*!< Mid price, calculated as the arithmetic average of bid and ask prices. */ MidEquivalent, /*!< Mid equivalent price, calculated as a) the arithmetic average of bid and ask prices when both are available; b) either the bid or the ask price if any of them is available; c) the last price; or d) the close price. */ MidSafe /*!< Safe Mid price, returns the mid price only if both bid and ask are available. */ }; /*! return the MidEquivalent price, i.e. the mid if available, or a suitable substitute if the proper mid is not available */ Real midEquivalent(const Real bid, const Real ask, const Real last, const Real close); /*! return the MidSafe price, i.e. the mid if both bid and ask prices are available */ Real midSafe(const Real bid, const Real ask); //! interval price class IntervalPrice { public: enum Type { Open, Close, High, Low }; IntervalPrice(); IntervalPrice(Real open, Real close, Real high, Real low); //! \name Inspectors //@{ Real open() const { return open_; } Real close() const { return close_; } Real high() const { return high_; } Real low() const { return low_; } Real value(IntervalPrice::Type) const; //@} //! \name Modifiers //@{ void setValue(Real value, IntervalPrice::Type); void setValues(Real open, Real close, Real high, Real low); //@} //! \name Helper functions //@{ static TimeSeries makeSeries( const std::vector& d, const std::vector& open, const std::vector& close, const std::vector& high, const std::vector& low); static std::vector extractValues( const TimeSeries&, IntervalPrice::Type); static TimeSeries extractComponent( const TimeSeries&, enum IntervalPrice::Type); //@} private: Real open_, close_, high_, low_; }; } #endif