1import tinkoff.invest 2 3def quotation_count(quot): 4 return quot.units + quot.nano / 1e9 5 6# В разработке 7# def moneyvalue_count(quot): 8# 9# if quot.currency == "rub": 10# return quot.units + quot.nano / 1e9 11# elif quot.currency == "usd": 12# return quot.units + quot.nano / 1e9 13 14