Wing Ki (Catherine) Wong

PhD in Bioinformatics, Scientist in Antibody Development

Valuation models

Fundamental investors use various discounting models to measure the intrinsic value of a company at its current time and in the future. To compare among companies, the multiples / financial ratios are useful indicators for the like-for-like comparisons. Here is a notebook with some codes that help complete the financial projection using the Discounted Cash Flow (DCF) model with Leveraged Buyout (LBO) model, and a few words and useful links for the all-rounded analysis required for a pitch deck.

 

Parallel in native bash

N=5
num_jobs="\j"
for F in ./*.txt
do
  	if [ -f ${F%.txt}.csv ]; then
                continue
        fi
	while (( ${num_jobs@P} >= N )); do
        wait -n
   done
       	echo ${F%.pip}.ht
        ../main.o -i ${F} -o ${F%.txt}.csv &
done