degiro-connector: TradingAPI `check_order()` no longer returns `free_space_new` and the 3 `transaction_XXX` properties

The create order docu shows that the response on check_order() has 6 parameters. I did see all of them in the past, but recently it only returns:

  • confirmation_id
  • response_datetime

This behaviour is observed on both NASDAQ and Euronext Amsterdam.

About this issue

  • Original URL
  • State: closed
  • Created 2 years ago
  • Reactions: 1
  • Comments: 18 (18 by maintainers)

Most upvoted comments

@Chavithra Awesome. I already wrote the docu with the Pythonian names.

Hello @funnel20,

you are right, I think they have changed their API.

The check_order response looks like this now :

{
    "confirmationId": "MOCK_CONFIRMATION_ID",
    "freeSpaceNew": 1.2345,
    "showExAnteReportLink": true,
    "transactionFee": 1.2
}

A new release let you access these new parameters.