R/lt.d2e.R

#' long-term debt-to-equity -- Solvency ratios measure the firm's ability to satisfy its long-term obligations.
#'
#' @param ltd long-term debt
#' @param te  total equity
#' @seealso \code{\link{total.d2e}}
#' @seealso \code{\link{debt.ratio}}
#' @seealso \code{\link{financial.leverage}}
#' @export
#' @examples
#' lt.d2e(ltd=8000,te=20000)
lt.d2e <- function(ltd,te){
  return(ltd/te)
}

Try the FinCal package in your browser

Any scripts or data that you put into this service are public.

FinCal documentation built on May 2, 2019, 1:29 p.m.