//@Name:P/FCF //@Description:Price to Free Cash Flow Ratio //@Returns:Number //@Width:60 // 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.getCap()/(share.getResult(0, Result.CashFlow) - share.getResult(0, Result.Capex)); }