diff --git a/weboob/capabilities/bank.py b/weboob/capabilities/bank.py index b5d149170e45486295000982fd3b73dd97e1f78d..a4981c192d86017ff810be61339e2677d4d75cf2 100644 --- a/weboob/capabilities/bank.py +++ b/weboob/capabilities/bank.py @@ -481,18 +481,18 @@ class Investment(BaseObject): CODE_TYPE_ISIN = u'ISIN' CODE_TYPE_AMF = u'AMF' - label = StringField('Label of stocks') - code = StringField('Identifier of the stock') - code_type = StringField('Type of stock code (ISIN or AMF)') - description = StringField('Short description of the stock') - quantity = DecimalField('Quantity of stocks') - unitprice = DecimalField('Buy price of one stock') - unitvalue = DecimalField('Current value of one stock') - valuation = DecimalField('Total current valuation of the Investment') - vdate = DateField('Value date of the valuation amount') - diff = DecimalField('Difference between the buy cost and the current valuation') - diff_ratio = DecimalField('Difference in ratio (1 meaning 100%) between the buy cost and the current valuation') - portfolio_share = DecimalField('Ratio (1 meaning 100%) of the current amount relative to the total') + label = StringField('Label of stocks') + code = StringField('Identifier of the stock') + code_type = StringField('Type of stock code (ISIN or AMF)') + description = StringField('Short description of the stock') + quantity = DecimalField('Quantity of stocks') + unitprice = DecimalField('Buy price of one stock') + unitvalue = DecimalField('Current value of one stock') + valuation = DecimalField('Total current valuation of the Investment') + vdate = DateField('Value date of the valuation amount') + diff = DecimalField('Difference between the buy cost and the current valuation') + diff_ratio = DecimalField('Difference in ratio (1 meaning 100%) between the buy cost and the current valuation') + portfolio_share = DecimalField('Ratio (1 meaning 100%) of the current amount relative to the total') performance_history = Field('History of the performances of the stock (key=years, value=diff_ratio)', dict) srri = IntField('Synthetic Risk and Reward Indicator of the stock (from 1 to 7)') asset_category = StringField('Category of the stock')