Better explanation for Investment class
This commit is contained in:
parent
258328a06f
commit
9c86b8f25b
2 changed files with 4 additions and 4 deletions
|
|
@ -70,8 +70,8 @@ class AccountInvestment(IsinMixin, Page):
|
||||||
----------------
|
----------------
|
||||||
|
|
||||||
label = StringField('Label of stocks')
|
label = StringField('Label of stocks')
|
||||||
code = StringField('Short code identifier of the stock')
|
code = StringField('Identifier of the stock (ISIN code)')
|
||||||
description = StringField('Description of the stock')
|
description = StringField('Short description of the stock')
|
||||||
quantity = IntField('Quantity of stocks')
|
quantity = IntField('Quantity of stocks')
|
||||||
unitprice = DecimalField('Buy price of one stock')
|
unitprice = DecimalField('Buy price of one stock')
|
||||||
unitvalue = DecimalField('Current value of one stock')
|
unitvalue = DecimalField('Current value of one stock')
|
||||||
|
|
|
||||||
|
|
@ -159,8 +159,8 @@ class Investment(BaseObject):
|
||||||
"""
|
"""
|
||||||
|
|
||||||
label = StringField('Label of stocks')
|
label = StringField('Label of stocks')
|
||||||
code = StringField('Short code identifier of the stock')
|
code = StringField('Identifier of the stock (ISIN code)')
|
||||||
description = StringField('Description of the stock')
|
description = StringField('Short description of the stock')
|
||||||
quantity = DecimalField('Quantity of stocks')
|
quantity = DecimalField('Quantity of stocks')
|
||||||
unitprice = DecimalField('Buy price of one stock')
|
unitprice = DecimalField('Buy price of one stock')
|
||||||
unitvalue = DecimalField('Current value of one stock')
|
unitvalue = DecimalField('Current value of one stock')
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue