SoftCallability - Constructor Parameter Trigger

classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

SoftCallability - Constructor Parameter Trigger

tibbar
In the sample code from convertableBonds, can anyone tell me what the 1.20 trigger parameter represents?

        // Load call schedules
        for (Size i=0; i<LENGTH(callLength); i++) {
            callability.push_back(
                   boost::shared_ptr<Callability>(
                       new SoftCallability(Callability::Price(
                                                   callPrices[i],
                                                   Callability::Price::Clean),
                                           schedule.date(callLength[i]),
                                           1.20)));  // <-- what is 1.20 for??
        }

Thanks