Hi
I'm building
the Java interface to QuantLib 0.9.7 via SWIG and am having a few
issues.
1.
experimental/finitedifferences/fdmhestonvariancemesher.cpp and
Examples/CDS/CDS.cpp do not compile, as pulled out of the tarball - are
they expected to?
2. I would
like to enable sessions so that my Java application can use different
valuation dates per thread. I ran configure with --enable-sessions=yes and
built the C++, and then to test it's working, added a print statement to
sessionId() in the EquityOptions.cpp example, but it never gets called.
Does anyone know what am I missing?
Many thanks in
advance,
Guy
This is not an offer (or solicitation of an offer) to buy/sell the securities/instruments mentioned or an official confirmation. Morgan Stanley may deal as principal in or own or act as market maker for securities/instruments mentioned or may advise the issuers. This is not research and is not from MS Research but it may refer to a research analyst/research report. Unless indicated, these views are the author’s and may differ from those of Morgan Stanley research or others in the Firm. We do not represent this is accurate or complete and we may not update this. Past performance is not indicative of future returns. For additional information, research reports and important disclosures, contact me or see https://secure.ms.com/servlet/cls. You should not use e-mail to request, authorize or effect the purchase or sale of any security or instrument, to send transfer instructions, or to effect any other transactions. We cannot guarantee that any such requests received via e-mail will be processed in a timely manner. This communication is solely for the addressee(s) and may contain confidential information. We do not waive confidentiality by mistransmission. Contact me if you do not wish to receive these communications. In the UK, this communication is directed in the UK to those persons who are professional and eligible counterparties (as defined in the UK Financial Services Authority’s rules). Morgan Stanley may monitor and store emails to the extent permitted by applicable law.
------------------------------------------------------------------------------ Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day trial. Simplify your report design, integration and deployment - and focus on what you do best, core application coding. Discover what's new with Crystal Reports now. http://p.sf.net/sfu/bobj-july _______________________________________________ QuantLib-users mailing list [hidden email] https://lists.sourceforge.net/lists/listinfo/quantlib-users |
"Dowman, Guy" <[hidden email]> writes: > 2. I would like to enable sessions so that my Java application can use > different valuation dates per thread. I ran configure with > --enable-sessions=yes and built the C++, and then to test it's working, > added a print statement to sessionId() in the EquityOptions.cpp example, > but it never gets called. Does anyone know what am I missing? This should work, and does work on my machines. Maybe it is worth checking that QL_ENABLE_SESSIONS is defined in your ql/config.hpp? Best, Bojan -- Bojan Nikolic || http://www.bnikolic.co.uk ------------------------------------------------------------------------------ Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day trial. Simplify your report design, integration and deployment - and focus on what you do best, core application coding. Discover what's new with Crystal Reports now. http://p.sf.net/sfu/bobj-july _______________________________________________ QuantLib-users mailing list [hidden email] https://lists.sourceforge.net/lists/listinfo/quantlib-users |
Hi All, I am going to use just linear interpolation of absolute vol on absolute strike axis. Which one should I use: SwaptionVolCube1 or SwaptionVolCube2? Having said that I would like to know the difference. I think each head file should contain a basic description. (Sorry I start to complain ;) ). Thanks in advance, Yan Please consider our environment before printing this email. WARNING - This email and any attachments may be confidential. If received in error, please delete and inform us by return email. Because emails and attachments may be interfered with, may contain computer viruses or other defects and may not be successfully replicated on other systems, you must be cautious. Westpac cannot guarantee that what you receive is what we sent. If you have any doubts about the authenticity of an email by Westpac, please contact us immediately. It is also important to check for viruses and defects before opening or using attachments. Westpac's liability is limited to resupplying any affected attachments. This email and its attachments are not intended to constitute any form of financial advice or recommendation of, or an offer to buy or offer to sell, any security or other financial product. We recommend that you seek your own independent legal or financial advice before proceeding with any investment decision. Westpac Institutional Bank is a division of Westpac Banking Corporation, a company registered in New South Wales in Australia under the Corporations Act 2001 (Cth). Westpac is authorised and regulated in the United Kingdom by the Financial Services Authority and is registered at Cardiff in the United Kingdom as Branch No. BR 106. Westpac operates in the United States of America as a federally chartered branch, regulated by the Office of the Comptroller of the Currency. Westpac Banking Corporation ABN 33 007 457 141. ------------------------------------------------------------------------------ Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day trial. Simplify your report design, integration and deployment - and focus on what you do best, core application coding. Discover what's new with Crystal Reports now. http://p.sf.net/sfu/bobj-july _______________________________________________ QuantLib-users mailing list [hidden email] https://lists.sourceforge.net/lists/listinfo/quantlib-users |
In reply to this post by Bojan Nikolic
Hi All, I am going to input forward volatility (caplet) surface. Am I right to use CapFloorTermVolSurface. I am hoping CapFloorTermVolSurface will do linear interpolation on strike. Am I right to use one of the following constructor? What's the difference? //! fixed reference date, fixed market data CapFloorTermVolSurface(const Date& settlementDate, const Calendar& calendar, BusinessDayConvention bdc, const std::vector<Period>& optionTenors, const std::vector<Rate>& strikes, const Matrix& volatilities, const DayCounter& dc = Actual365Fixed()); //! floating reference date, fixed market data CapFloorTermVolSurface(Natural settlementDays, const Calendar& calendar, BusinessDayConvention bdc, const std::vector<Period>& optionTenors, const std::vector<Rate>& strikes, const Matrix& volatilities, const DayCounter& dc = Actual365Fixed()); For 'const Matrix& volatilities', guess the row axis must be optionTenors? Is there any example code on using CapFloorTermVolSurface? Many thanks, Yan Please consider our environment before printing this email. WARNING - This email and any attachments may be confidential. If received in error, please delete and inform us by return email. Because emails and attachments may be interfered with, may contain computer viruses or other defects and may not be successfully replicated on other systems, you must be cautious. Westpac cannot guarantee that what you receive is what we sent. If you have any doubts about the authenticity of an email by Westpac, please contact us immediately. It is also important to check for viruses and defects before opening or using attachments. Westpac's liability is limited to resupplying any affected attachments. This email and its attachments are not intended to constitute any form of financial advice or recommendation of, or an offer to buy or offer to sell, any security or other financial product. We recommend that you seek your own independent legal or financial advice before proceeding with any investment decision. Westpac Institutional Bank is a division of Westpac Banking Corporation, a company registered in New South Wales in Australia under the Corporations Act 2001 (Cth). Westpac is authorised and regulated in the United Kingdom by the Financial Services Authority and is registered at Cardiff in the United Kingdom as Branch No. BR 106. Westpac operates in the United States of America as a federally chartered branch, regulated by the Office of the Comptroller of the Currency. Westpac Banking Corporation ABN 33 007 457 141. ------------------------------------------------------------------------------ Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day trial. Simplify your report design, integration and deployment - and focus on what you do best, core application coding. Discover what's new with Crystal Reports now. http://p.sf.net/sfu/bobj-july _______________________________________________ QuantLib-users mailing list [hidden email] https://lists.sourceforge.net/lists/listinfo/quantlib-users |
Free forum by Nabble | Edit this page |