def displayStartupValue(self): return format_currency(self.startupValue, 'EUR')
def displayInvestment(self): return format_currency(self.investmentAmount, self.currency)
def display_total_value(self): return format_currency(self.totalValue, 'EUR')
def display_invested_amount(self, currency): return format_currency(self.invested_amount, currency)
def display_amount(self, currency): return format_currency(self.amount, currency)
def display_cash(self, currency): return format_currency(self.cash, currency)
def display_equity_value(self, currency): return format_currency(self.equity, currency)
def display_total(self, currency): return format_currency(self.total, currency)