<!--
This file is generated by a tool. Do not edit directly.
For open-source contributions the docs will be updated automatically.
-->

*Last updated: 2023-03-16.*

<div itemscope itemtype="http://developers.google.com/ReferenceObject">
<meta itemprop="name" content="tf_quant_finance.rates.analytics.swap.ir_swap_price" />
<meta itemprop="path" content="Stable" />
</div>

# tf_quant_finance.rates.analytics.swap.ir_swap_price

<!-- Insert buttons and diff -->

<table class="tfo-notebook-buttons tfo-api" align="left">
</table>

<a target="_blank" href="https://github.com/paolodelia99/tf-quant-finance/blob/main/tf_quant_finance/rates/analytics/swap.py">View source</a>



Computes prices of a batch of interest rate swaps.

```python
tf_quant_finance.rates.analytics.swap.ir_swap_price(
    pay_leg_coupon_rates, receive_leg_coupon_rates, pay_leg_notional,
    receive_leg_notional, pay_leg_daycount_fractions,
    receive_leg_daycount_fractions, pay_leg_discount_factors,
    receive_leg_discount_factors, dtype=None, name=None
)
```



<!-- Placeholder for "Used in" -->

#### Example
```python
pay_leg_coupon_rates = [[0.1], [0.15]]
receive_leg_coupon_rates = [[0.1, 0.2, 0.05], [0.1, 0.05, 0.2]]
notional = 1000
pay_leg_daycount_fractions = 0.5
receive_leg_daycount_fractions = [[0.5, 0.5, 0.5], [0.4, 0.5, 0.6]]
discount_factors = [[0.95, 0.9, 0.85], [0.98, 0.92, 0.88]]

ir_swap_price(
    pay_leg_coupon_rates=pay_leg_coupon_rates,
    receive_leg_coupon_rates=receive_leg_coupon_rates,
    pay_leg_notional=notional,
    receive_leg_notional=notional,
    pay_leg_daycount_fractions=pay_leg_daycount_fractions,
    receive_leg_daycount_fractions=receive_leg_daycount_fractions,
    pay_leg_discount_factors=discount_factors,
    receive_leg_discount_factors=discount_factors,
    dtype=tf.float64)
# Expected: [23.75, -40.7]
```

#### Args:


* <b>`pay_leg_coupon_rates`</b>: A real `Tensor` of shape
  `batch_shape + [num_pay_cashflows]`, where `num_pay_cashflows` is the
  number of cashflows for each batch element. Coupon rates for the paying
  leg.
* <b>`receive_leg_coupon_rates`</b>: A `Tensor` of the same `dtype` as
  `pay_leg_coupon_rates` and of shape
  `batch_shape + [num_receive_cashflows]`, where `num_receive_cashflows` is
  the number of cashflows for each batch element. Coupon rates the
  receiving leg.
* <b>`pay_leg_notional`</b>: A `Tensor` of the same `dtype` as `pay_leg_coupon_rates`
  and of compatible shape. Notional amount for each cashflow.
* <b>`receive_leg_notional`</b>: A `Tensor` of the same `dtype` as
  `receive_leg_coupon_rates` and of compatible shape. Notional amount for
  each cashflow.
* <b>`pay_leg_daycount_fractions`</b>: A `Tensor` of the same `dtype` as
  `pay_leg_coupon_rates` and of compatible shape.  Year fractions for the
  coupon accrual.
* <b>`receive_leg_daycount_fractions`</b>: A `Tensor` of the same `dtype` as
  `receive_leg_coupon_rates` and of compatible shape.  Year fractions for
  the coupon accrual.
* <b>`pay_leg_discount_factors`</b>: A `Tensor` of the same `dtype` as
  `pay_leg_coupon_rates` and of compatible shape. Discount factors for each
  cashflow of the pay leg.
* <b>`receive_leg_discount_factors`</b>: A `Tensor` of the same `dtype` as
  `pay_leg_coupon_rates` and of compatible shape. Discount factors for each
  cashflow of the receive leg.
* <b>`dtype`</b>: `tf.Dtype`. If supplied the dtype for the input and output `Tensor`s.
  Default value: None which maps to the default dtype inferred from
  `pay_leg_coupon_rates`.
* <b>`name`</b>: Python str. The name to give to the ops created by this function.
  Default value: None which maps to 'equity_swap_price'.


#### Returns:

A `Tensor` of the same `dtype` as `pay_leg_coupon_rates` and of shape
`batch_shape`. Present values of the interest rate swaps.
