//@Name:FCF/P % //@Description:Displays the Free Cash Flow to Price Ratio as a percentage //@Returns:Number //@Width:60 //Coded by: Paul Hall, ShareScope Support // Care has been taken in preparing this code but it is provided without guarantee. // You are welcome to modify and extend it. Please add your name as a modifier if you distribute it. function getVal(share) { return (share.getResult(0, Result.CashFlow) - share.getResult(0, Result.Capex))/share.getCap()*100; }