perf_py_pkg.value.book_to_price module#

Book Value Per Share to Price.

perf_py_pkg.value.book_to_price.book_price(common_equity_mr0, common_shares_outstanding_mr0, close, report_curr_to_usd, quote_curr_to_usd)[source]#

Book Value Per Share to Price.

Notes

\[\begin{align} {BookToPrice}_n &= \frac {\frac{CommonEquity_n}{CommonSharesOutstanding_n}} {Close_n} \end{align}\]
Parameters:
  • common_equity_mr0 (float) – book value of common equity.

  • common_shares_outstanding_mr0 (float) – shares outstanding.

  • close (float) – close price.

  • quote_curr_to_usd (float) – the quote currency to_usd conversion.

  • report_curr_to_usd (float) – the reporting currency to_usd conversion.

Returns:

Book Value Per Share to Price.

Return type:

float