<?xml version="1.0" encoding="UTF-8"?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://purl.org/rss/1.0/" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:syn="http://purl.org/rss/1.0/modules/syndication/" xmlns:admin="http://webns.net/mvcb/">
  <channel rdf:about="http://permalink.gmane.org/gmane.comp.finance.quantlib.user">
    <title>gmane.comp.finance.quantlib.user</title>
    <link>http://permalink.gmane.org/gmane.comp.finance.quantlib.user</link>
    <description/>
    <syn:updatePeriod>hourly</syn:updatePeriod>
    <syn:updateFrequency>1</syn:updateFrequency>
    <syn:updateBase>1901-01-01T00:00+00:00</syn:updateBase>
    <items>
      <rdf:Seq>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.finance.quantlib.user/8440"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.finance.quantlib.user/8439"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.finance.quantlib.user/8438"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.finance.quantlib.user/8437"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.finance.quantlib.user/8436"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.finance.quantlib.user/8435"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.finance.quantlib.user/8434"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.finance.quantlib.user/8433"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.finance.quantlib.user/8432"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.finance.quantlib.user/8431"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.finance.quantlib.user/8430"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.finance.quantlib.user/8429"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.finance.quantlib.user/8428"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.finance.quantlib.user/8427"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.finance.quantlib.user/8426"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.finance.quantlib.user/8425"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.finance.quantlib.user/8424"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.finance.quantlib.user/8423"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.finance.quantlib.user/8422"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.finance.quantlib.user/8421"/>
      </rdf:Seq>
    </items>
    <image rdf:resource="http://gmane.org/img/gmane-25t.png"/>
    <textinput rdf:resource=""/>
  </channel>
  <image rdf:about="http://gmane.org/img/gmane-25t.png">
    <title>Gmane</title>
    <url>http://gmane.org/img/gmane-25t.png</url>
    <link>http://gmane.org</link>
  </image>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.finance.quantlib.user/8440">
    <title>Re: QuantLib SWIG in Java</title>
    <link>http://permalink.gmane.org/gmane.comp.finance.quantlib.user/8440</link>
    <description>&lt;pre&gt;
The first instantiates a template in Java.  If you just give SWIG the
definition of a class template, that's just a template. There's no
actual class to wrap, and as far as I know, it doesn't map to a
generic in Java.  The %template directive tells SWIG to instantiate
the template with the given type and wrap the instantiation.  You can
have a look at the SWIG docs for details.

The second is part of a define macro.  SWIG macros work more or less
like the C preprocessor.  When you call the macro, you pass a value
that replaces the Name parameter, and the above becomes, say,

%rename(SomeCurve) SomeCurvePtr;
class SomeCurvePtr : public boost::shared_ptr&amp;lt;YieldTermStructure&amp;gt; {...};

which declares the class SomeCurvePtr and exports it as SomeCurve.  We
usually do this because we want to hide pointers (which are not
idiomatic in the exported languages), so for instance we camouflage
boost::shared_ptr&amp;lt;YieldTermStructure&amp;gt; as YieldTermStructure in Python.
 But then you have problems if you also export a derived cl&lt;/pre&gt;</description>
    <dc:creator>Luigi Ballabio</dc:creator>
    <dc:date>2012-05-16T14:43:30</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.finance.quantlib.user/8439">
    <title>QuantLib SWIG in Java</title>
    <link>http://permalink.gmane.org/gmane.comp.finance.quantlib.user/8439</link>
    <description>&lt;pre&gt;
What is the difference between these two structures?
Is %template (1) creating a template structure in Java?
whereas (2) is a template for i-file generating different Java Code?

Billy Ng

1.
%template(Callability) boost::shared_ptr&amp;lt;Callability&amp;gt;;
2.
%rename(Name) Name##Ptr;
class Name##Ptr : public boost::shared_ptr&amp;lt;YieldTermStructure&amp;gt; 
------------------------------------------------------------------------------
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
&lt;/pre&gt;</description>
    <dc:creator>Billy Ng</dc:creator>
    <dc:date>2012-05-16T06:51:37</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.finance.quantlib.user/8438">
    <title>please unsuscribe</title>
    <link>http://permalink.gmane.org/gmane.comp.finance.quantlib.user/8438</link>
    <description>&lt;pre&gt;thanks
------------------------------------------------------------------------------
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/_______________________________________________
QuantLib-users mailing list
QuantLib-users&amp;lt; at &amp;gt;lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/quantlib-users
&lt;/pre&gt;</description>
    <dc:creator>Bill Smith</dc:creator>
    <dc:date>2012-05-14T15:45:12</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.finance.quantlib.user/8437">
    <title>Re: Sensitivity analysis in QuantLibXL</title>
    <link>http://permalink.gmane.org/gmane.comp.finance.quantlib.user/8437</link>
    <description>&lt;pre&gt;Hi Gerardo


yes it does.
qlBucketAnalysis calculates the sensitivity analysis for the
aggregated NPV (i.e. a single number) of a collection of Instruments
with respect to a matrix of quotes. As such it should return a matrix
of deltas and a matrix of gammas, but being limited by gensrc/Excel to
have a matrix return it just returns the delta matrix.


This must be because your input is a vector of quotes, so the result
is a degenerate one column matrix, i.e. a vector.
The duplication is just Excel usual confusing behavior when dealing
with multidimensional output ranges larger than the actual
multidimensional result.


It would be a quick hack to duplicate the function to have the gamma
matrix, but this would require two full evaluations.
A better way would be to have a different function limited to an input
vector of Quotes: in this case the delta would be just a vector and a
second Gamma vector could be added side by side as you were expecting.
The third best solution might be to have a persistent object i&lt;/pre&gt;</description>
    <dc:creator>Ferdinando Ametrano</dc:creator>
    <dc:date>2012-05-14T10:47:30</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.finance.quantlib.user/8436">
    <title>Bootstrap 3M Curve from SA swaps and 6Mv3M Basis</title>
    <link>http://permalink.gmane.org/gmane.comp.finance.quantlib.user/8436</link>
    <description>&lt;pre&gt;
Hi,

I'm trying to bootstrap a 3M curve but only have data for (GBP) SA swaps and
6Mv3M basis. For the SwapRateHelpers I have set the FixedLegFrequency as
SemiAnnual, the IborIndex as 3M Libor and the spread as the 6Mv3M basis. Is
this the correct way of setting up the SwapRateHelpers?

Thanks,
Brian


&lt;/pre&gt;</description>
    <dc:creator>BP_QLibXL_User</dc:creator>
    <dc:date>2012-05-11T08:17:35</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.finance.quantlib.user/8435">
    <title>Linking object as if no debug info</title>
    <link>http://permalink.gmane.org/gmane.comp.finance.quantlib.user/8435</link>
    <description>&lt;pre&gt;Hi Users,
I am receiving a list of linking warnings from a project compilation that
make uses of a few QuantLib classes (mainly related to bond and swap
calculations). The project finally compiles but with warnings like these:

QuantLib-vc100-mt-gd.lib(averagebmacoupon.obj) : warning LNK4099: PDB
'vc100.pdb' was not found with
'QuantLib-vc100-mt-gd.lib(averagebmacoupon.obj)' or at
'V:\PMS\Debug\vc100.pdb'; linking object as if no debug info
QuantLib-vc100-mt-gd.lib(termstructure.obj) : warning LNK4099: PDB
'vc100.pdb' was not found with
'QuantLib-vc100-mt-gd.lib(termstructure.obj)' or at
'V:\PMS\Debug\vc100.pdb'; linking object as if no debug info

The target application is an xll files(via XLW). I am including already the
auto_link. I would like to clear the warnings.
Any suggestion?
Thanks in advance!
------------------------------------------------------------------------------
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed &lt;/pre&gt;</description>
    <dc:creator>simone pilozzi</dc:creator>
    <dc:date>2012-05-10T17:51:16</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.finance.quantlib.user/8434">
    <title>Sensitivity analysis in QuantLibXL</title>
    <link>http://permalink.gmane.org/gmane.comp.finance.quantlib.user/8434</link>
    <description>&lt;pre&gt;Hi all,
I've recently started using QuantLibXL and I'm familiarizing with it. At
this moment I'm trying to understand how to compute sensitivities and
I'd like to ask a few questions:

1. In QuantLib's source code I read that the bucketAnalysis function (in
its various incarnations) calculates and returns both Delta and Gamma
(provided that SensitivityAnalysis == Centered). However, QuantLibXL's
function qlBucketAnalysis seems to return only Delta. I expanded the
function call into a matrix of cells, each row corresponds to a quote, I
was expecting to see two columns, with the Delta on the first column and
the Gamma on the second. Instead, no matter how much I expand the
matrix, I get always the same column repeated over and over. Is that
intentional or is it a bug? If it is intentional, how can I get the
Gamma?

2. What is the Parameters argument in qlBucketAnalysisDelta and
qlBucketAnalysisDelta2? The documentation doesn't explain. Reading the
source code I see that it must be a vector of quotes. I can't m&lt;/pre&gt;</description>
    <dc:creator>Ballabio Gerardo</dc:creator>
    <dc:date>2012-05-10T10:12:50</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.finance.quantlib.user/8433">
    <title>Re: OIS curve bootstrap</title>
    <link>http://permalink.gmane.org/gmane.comp.finance.quantlib.user/8433</link>
    <description>&lt;pre&gt;Yes, it has.  The library provides helpers for bootstrapping an OIS
curve (in &amp;lt;ql/termstructures/yield/oisratehelper.hpp&amp;gt;).  Once you've
done that, it's possible to pass it as a discount curve to the swap
helpers used for bootstrapping the indexing curve (see SwapRateHelper
in &amp;lt;ql/termstructures/yield/ratehelpers.hpp&amp;gt;, whose constructor takes
an optional discountingCurve parameter).

Unfortunately, there's no example code available.  If somebody wants
to try and contribute it, drop me a line and I'll get you started.

Luigi


On Thu, Apr 19, 2012 at 7:35 PM,  &amp;lt;candy.chiu.ad&amp;lt; at &amp;gt;gmail.com&amp;gt; wrote:

------------------------------------------------------------------------------
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
&lt;/pre&gt;</description>
    <dc:creator>Luigi Ballabio</dc:creator>
    <dc:date>2012-05-08T08:48:31</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.finance.quantlib.user/8432">
    <title>QuantLib SWIG - optionlet stripper</title>
    <link>http://permalink.gmane.org/gmane.comp.finance.quantlib.user/8432</link>
    <description>&lt;pre&gt;Hello, 

I have correctly ported QuantLib into Java using SWIG but only a part of the 
whole list of functionalities are translated. In fact the .i files do not 
consider all the QL files. 
I would like to know if someone has already implemented the interface for  the 
OptionletStripper.

If yes I would appreciate if you can forward me so I can give it a look in 
details

Thanks
Paolo

------------------------------------------------------------------------------
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
&lt;/pre&gt;</description>
    <dc:creator>tarpanelli&lt; at &gt;libero.it</dc:creator>
    <dc:date>2012-05-07T17:07:11</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.finance.quantlib.user/8431">
    <title>Re: Curves over Eonia</title>
    <link>http://permalink.gmane.org/gmane.comp.finance.quantlib.user/8431</link>
    <description>&lt;pre&gt;The only help I can currently provide is to point at SwapRateHelper,
where you'll find the input parameter for an exogenous curve to be
used for discounting while bootstrapping a forwading curve.

As for updating the standalone examples, I'll try to do that before next release

ciao -- Nando

------------------------------------------------------------------------------
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
&lt;/pre&gt;</description>
    <dc:creator>Ferdinando Ametrano</dc:creator>
    <dc:date>2012-05-07T10:46:07</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.finance.quantlib.user/8430">
    <title>Bootstrapping Caplet Volas from ATM Cap/Floor Volas</title>
    <link>http://permalink.gmane.org/gmane.comp.finance.quantlib.user/8430</link>
    <description>&lt;pre&gt;Hi,

I am currently using QL in a project to price Structured Floaters; as part
of the incoming data I would like to use to parameterize the LFM we are
receiving (annualized) atm cap/floor volatilities...

I tried using OptionletStripper1/2 to get caplet volas from those;
however, OptionletStripper2 is not usable since it relies on
OptionletStripper1 which in turn needs a vol surface instead of a vol
curve.

Anyhow, "faking" a vol surface by setting all values to the atm vols gave
me only zeros upon calling OptionletStripper1::optionletVolatilities()

Am I doing something fundementally wrong here and/or is there some other
class/method which I can use for the purpose?


Thanks for any help and best regards,

Andreas





------------------------------------------------------------------------------
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile&lt;/pre&gt;</description>
    <dc:creator>Andreas Spengler</dc:creator>
    <dc:date>2012-05-03T15:04:59</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.finance.quantlib.user/8429">
    <title>Re: Install problem with VC++ 2010 Express</title>
    <link>http://permalink.gmane.org/gmane.comp.finance.quantlib.user/8429</link>
    <description>&lt;pre&gt;Google it
You can find it there
http://en.sourceforge.jp/projects/sfnet_boost/downloads/boost-binaries/1.46.1/libboost_unit_test_framework-vc100-mt-gd-1_46_1.zip/
it's in japan but I found most of my boost lib there
good luck!
JRV
________________________________
From: Paul Darbyshire [mailto:pmdarbyshire2003&amp;lt; at &amp;gt;yahoo.co.uk]
Sent: Thursday, April 26, 2012 7:49 PM
To: quantlib-users&amp;lt; at &amp;gt;lists.sourceforge.net
Subject: [Quantlib-users] Install problem with VC++ 2010 Express

Dear All,

Ive followed all the instructions to install boost and quantlib using VC++ 2010 Express and when doing the final Build of the project I get the following error near the very end:

14&amp;gt; vpp.cpp
14&amp;gt; writerextensibleoption.cpp
14&amp;gt; quantlibtestsuite.cpp
14&amp;gt;LINK : fatal error LNK1104: cannot open file 'libboost_unit_test_framework-vc100-mt-1_47.lib'
========== Rebuild All: 14 succeeded, 1 failed, 0 skipped ==========

Please can anyone help me sort out this problem?

Thanks

Paul
---------------------------------------------------------------&lt;/pre&gt;</description>
    <dc:creator>Viala Jean-Renaud (AMUNDI</dc:creator>
    <dc:date>2012-04-27T08:40:04</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.finance.quantlib.user/8428">
    <title>Re: Install problem with VC++ 2010 Express</title>
    <link>http://permalink.gmane.org/gmane.comp.finance.quantlib.user/8428</link>
    <description>&lt;pre&gt;Just to exclude the obvious candidates: do you have
libboost_unit_test_framework-vc100-mt-1_47.lib on your disk? Did you
add its directory to the library directories for the compiler as shown
in the instructions?

Luigi

On Thu, Apr 26, 2012 at 7:48 PM, Paul Darbyshire
&amp;lt;pmdarbyshire2003&amp;lt; at &amp;gt;yahoo.co.uk&amp;gt; wrote:

------------------------------------------------------------------------------
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
&lt;/pre&gt;</description>
    <dc:creator>Luigi Ballabio</dc:creator>
    <dc:date>2012-04-27T08:37:44</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.finance.quantlib.user/8427">
    <title>Install problem with VC++ 2010 Express</title>
    <link>http://permalink.gmane.org/gmane.comp.finance.quantlib.user/8427</link>
    <description>&lt;pre&gt;Dear All,
 
Ive followed all the instructions to install boost and quantlib using VC++ 2010 Express and when doing the final Build of the project I get the following error near the very end:
 14&amp;gt;  vpp.cpp
14&amp;gt;  writerextensibleoption.cpp
14&amp;gt;  quantlibtestsuite.cpp
14&amp;gt;LINK : fatal error LNK1104: cannot open file 'libboost_unit_test_framework-vc100-mt-1_47.lib'
========== Rebuild All: 14 succeeded, 1 failed, 0 skipped ==========
 
Please can anyone help me sort out this problem?
 
Thanks
 
Paul------------------------------------------------------------------------------
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/_______________________________________________
QuantLib-users mailing list
QuantLib-users&amp;lt; at &amp;gt;lists.sourceforge.net
https://lists.&lt;/pre&gt;</description>
    <dc:creator>Paul Darbyshire</dc:creator>
    <dc:date>2012-04-26T17:48:32</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.finance.quantlib.user/8426">
    <title>Re: Curves over Eonia</title>
    <link>http://permalink.gmane.org/gmane.comp.finance.quantlib.user/8426</link>
    <description>&lt;pre&gt;
Hi Nando and Kaya,
I'd like to second Francois' request. Bootstrapping a Euribor over Eonia
curve would be really useful.

Is it possible without adding anything to the current version of the .xla?
(If so, a stand alone example sheet would be incredibly helpful.)


Many thanks,
Brian


eonia curve.  

Hello
I want to do exactly the same thing and i didn't understand how you did it 
Do you have more explanation  ?
Thanks in advance
Regards
Francois


&lt;/pre&gt;</description>
    <dc:creator>BP_QLibXL_User</dc:creator>
    <dc:date>2012-04-25T09:47:54</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.finance.quantlib.user/8425">
    <title>QuantlibXL</title>
    <link>http://permalink.gmane.org/gmane.comp.finance.quantlib.user/8425</link>
    <description>&lt;pre&gt;
Hi all, 

Will there be (or has there been in the past) a course focusing on
QuantLibXL? I'm relatively new to QL-XL and am having some difficulty moving
beyond the stand alone workbook examples. 

For example, it took me quite a while today to price a Cap with a vol curve
instead of a constant vol as is illustrated in the
InterestRateDerivatives.xls file. I spent most of that time trying to get an
OptionletVolatilityStructure from a CapFloorTermVolatilityStructure! 

Thanks, 
Brian
&lt;/pre&gt;</description>
    <dc:creator>BP_QLibXL_User</dc:creator>
    <dc:date>2012-04-24T16:24:44</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.finance.quantlib.user/8424">
    <title>Introduction to Quantlib Development, London, May 21-23 - Special Offer to Mailing List Members</title>
    <link>http://permalink.gmane.org/gmane.comp.finance.quantlib.user/8424</link>
    <description>&lt;pre&gt;
Dear List Members,

Please forgive this one-off promotional mail. MoneyScience hopes to run a
3-day Quantlib Training Event in London on May 21-23rd. 

"The goal of this three-day intensive hands-on course is to take a bird-eye
look at the design of the QuantLib library as well as its rationale, to
examine its implementation, and thus to learn how one's own code can be
fitted on top of QuantLib to reuse and benefit from provided functionality.
The course will focus on QuantLib proper, i.e., on the C++ library and won't
cover extensions such as the Excel addin."

You can read more about the course at:

http://www.moneyscience.com/pg/blog/Admin/read/260727/luigi-ballabio-and-moneyscience-present-introduction-to-quantlib-development-london-2123rd-may-2012 

or download a brochure from:

http://www.moneyscience.com/mod/file/download.php?file_guid=260699

Quantllib mailing list members can receive a 15% discount by quoting
QLList01 the on registration form.

Thank you.

Jacob Bettany

~~~~~~~~~~~~~~~~~~~~~~~~~~~&lt;/pre&gt;</description>
    <dc:creator>Jacob B</dc:creator>
    <dc:date>2012-04-24T12:54:11</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.finance.quantlib.user/8423">
    <title>Re: Adding functions to QuantLib SWIG</title>
    <link>http://permalink.gmane.org/gmane.comp.finance.quantlib.user/8423</link>
    <description>&lt;pre&gt;In the swap valuation example.
The following change will cause a boostrapping of the curves

        boost::shared_ptr&amp;lt;SimpleQuote&amp;gt; fiveYearsRate =
            boost::dynamic_pointer_cast&amp;lt;SimpleQuote&amp;gt;(s5yRate);
        fiveYearsRate-&amp;gt;setValue(0.0460);

How do I do a similar dynamic pointer casting in SWIG/Java?

Billy
-----Original Message-----
From: Luigi Ballabio [mailto:luigi.ballabio&amp;lt; at &amp;gt;gmail.com]
Sent: Thursday, April 19, 2012 3:16 PM
To: Billy Ng
Cc: quantlib-users&amp;lt; at &amp;gt;lists.sourceforge.net
Subject: Re: [Quantlib-users] Adding functions to QuantLib SWIG


The CallableBonds example.

Luigi

On Thu, Apr 19, 2012 at 1:53 AM, Billy Ng &amp;lt;mail.billy&amp;lt; at &amp;gt;gmail.com&amp;gt; wrote:
------------------------------------------------------------------------------
For Developers, A Lot Can Happen In A Second.
Boundary is the first to Know...and Tell You.
Monitor Your Applications in Ultra-Fine Resolution. Try it FREE!
http://p.sf.net/sfu/Boundary-d2dvs2
&lt;/pre&gt;</description>
    <dc:creator>Billy Ng</dc:creator>
    <dc:date>2012-04-21T06:56:08</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.finance.quantlib.user/8422">
    <title>Re: Adding functions to QuantLib SWIG</title>
    <link>http://permalink.gmane.org/gmane.comp.finance.quantlib.user/8422</link>
    <description>&lt;pre&gt;Hi Luigi,

For the CallableBonds Example, I need to set up the SWIG file for these two classes
TreeCallableFixedRateBondEngine
CallableFixedRateBond

What are the good SWIG file references for these two classes? 

Billy

-----Original Message-----
From: Luigi Ballabio [mailto:luigi.ballabio&amp;lt; at &amp;gt;gmail.com]
Sent: Thursday, April 19, 2012 3:16 PM
To: Billy Ng
Cc: quantlib-users&amp;lt; at &amp;gt;lists.sourceforge.net
Subject: Re: [Quantlib-users] Adding functions to QuantLib SWIG


The CallableBonds example.

Luigi

On Thu, Apr 19, 2012 at 1:53 AM, Billy Ng &amp;lt;mail.billy&amp;lt; at &amp;gt;gmail.com&amp;gt; wrote:
------------------------------------------------------------------------------
For Developers, A Lot Can Happen In A Second.
Boundary is the first to Know...and Tell You.
Monitor Your Applications in Ultra-Fine Resolution. Try it FREE!
http://p.sf.net/sfu/Boundary-d2dvs2
&lt;/pre&gt;</description>
    <dc:creator>Billy Ng</dc:creator>
    <dc:date>2012-04-21T13:58:27</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.finance.quantlib.user/8421">
    <title>Re: Adding functions to QuantLib SWIG</title>
    <link>http://permalink.gmane.org/gmane.comp.finance.quantlib.user/8421</link>
    <description>&lt;pre&gt;In the swap valuation example.
The following change will cause a boostrapping of the curves

        boost::shared_ptr&amp;lt;SimpleQuote&amp;gt; fiveYearsRate =
            boost::dynamic_pointer_cast&amp;lt;SimpleQuote&amp;gt;(s5yRate);
        fiveYearsRate-&amp;gt;setValue(0.0460);

How do I do a similar dynamic pointer casting in SWIG/Java?

Billy
-----Original Message-----
From: Luigi Ballabio [mailto:luigi.ballabio&amp;lt; at &amp;gt;gmail.com]
Sent: Thursday, April 19, 2012 3:16 PM
To: Billy Ng
Cc: quantlib-users&amp;lt; at &amp;gt;lists.sourceforge.net
Subject: Re: [Quantlib-users] Adding functions to QuantLib SWIG


The CallableBonds example.

Luigi

On Thu, Apr 19, 2012 at 1:53 AM, Billy Ng &amp;lt;mail.billy&amp;lt; at &amp;gt;gmail.com&amp;gt; wrote:
------------------------------------------------------------------------------
For Developers, A Lot Can Happen In A Second.
Boundary is the first to Know...and Tell You.
Monitor Your Applications in Ultra-Fine Resolution. Try it FREE!
http://p.sf.net/sfu/Boundary-d2dvs2
&lt;/pre&gt;</description>
    <dc:creator>Billy Ng</dc:creator>
    <dc:date>2012-04-21T10:53:40</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.finance.quantlib.user/8420">
    <title>OIS curve bootstrap</title>
    <link>http://permalink.gmane.org/gmane.comp.finance.quantlib.user/8420</link>
    <description>&lt;pre&gt;Hi,

Has QuantLib implemented anything to bootstrap two curves (one for  
indexing, one for discounting) simultaneously?

Thanks!
------------------------------------------------------------------------------
For Developers, A Lot Can Happen In A Second.
Boundary is the first to Know...and Tell You.
Monitor Your Applications in Ultra-Fine Resolution. Try it FREE!
http://p.sf.net/sfu/Boundary-d2dvs2_______________________________________________
QuantLib-users mailing list
QuantLib-users&amp;lt; at &amp;gt;lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/quantlib-users
&lt;/pre&gt;</description>
    <dc:creator>candy.chiu.ad&lt; at &gt;gmail.com</dc:creator>
    <dc:date>2012-04-19T17:35:37</dc:date>
  </item>
  <textinput rdf:about="http://search.gmane.org/?group=$group=gmane.comp.finance.quantlib.user">
    <title>Search Engine</title>
    <description>Search the mailing list at Gmane</description>
    <name>query</name>
    <link>http://search.gmane.org/?group=$group=gmane.comp.finance.quantlib.user</link>
  </textinput>
</rdf:RDF>

