Skip to content

Commit

Permalink
#10 #63 little typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Tim55667757 committed Nov 5, 2022
1 parent 2d2b109 commit 948f0ab
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tksbrokerapi/TKSBrokerAPI.py
Original file line number Diff line number Diff line change
Expand Up @@ -845,7 +845,7 @@ def ShowInstrumentInfo(self, iJSON: dict, show: bool = True) -> str:
])

if "aciValue" in iJSON.keys() and iJSON["aciValue"]:
info.append("| Current Accrued Interest (ACI): | {:<54} |\n".format("{:.2f} {}".format(
info.append("| Current accumulated coupon income (ACI): | {:<54} |\n".format("{:.2f} {}".format(
NanoToFloat(str(iJSON["aciValue"]["units"]), iJSON["aciValue"]["nano"]),
iJSON["aciValue"]["currency"]
)))
Expand Down Expand Up @@ -3983,7 +3983,7 @@ def CreateBondsCalendar(self, extBonds: pd.DataFrame, xlsx: bool = False) -> pd.

uLogger.debug("Generating bond payments calendar data. Wait, please...")

colNames = ["Paid", "Payment date", "FIGI", "Ticker", "Name", "No.", "Value", "Currency", "Type", "Period", "End registry date", "Coupon start date", "Coupon end date"]
colNames = ["Paid", "Payment date", "FIGI", "Ticker", "Name", "No.", "Value", "Currency", "Coupon type", "Period", "End registry date", "Coupon start date", "Coupon end date"]
colID = ["paid", "couponDate", "figi", "ticker", "name", "couponNumber", "payOneBond", "payCurrency", "couponType", "couponPeriod", "fixDate", "couponStartDate", "couponEndDate"]
calendar = None
for bond in extBonds.iterrows():
Expand Down

0 comments on commit 948f0ab

Please # to comment.