degiro-connector icon indicating copy to clipboard operation
degiro-connector copied to clipboard

This is yet another library to access Degiro's API.

Results 35 degiro-connector issues
Sort by recently updated
recently updated
newest added

Hello, I am trying to get historical intraday OHLC data via the degiro API (1 minute or 5 minute level). This works fine for the 1W period but I keep...

I do have some strange errors when ordering: ``` 2022-03-09 18:37:57,586 CRITICAL MainThread 400 2022-03-09 18:37:57,586 CRITICAL MainThread {"errors":[{"text":"order.error.128"}]} 2022-03-14 11:42:02,077 CRITICAL MainThread 500 2022-03-14 11:42:02,077 CRITICAL MainThread {"errors":[{"text":"Internal server...

bug

I noticed it's very cumbersome to find the product ID's for instruments. I can find the stock list, but finding Dutch FTI futures or german bund or eurostoxx futures is...

Hello, I am trying to create the following sell order: ``` order = Order( action=1, order_type=0, price=54.1, product_id=18364386, size=2, time_type=3, ) ``` When trying to validate the order with `...

bug

I want to let you know how much I love this project, thank you for your amazing work in here. Probably the most useful degiro wrapper in python ever! Also,...

I'm able to create and confirm an order based on your [documentation](https://github.com/Chavithra/degiro-connector#41-how-to-create-an-order-). When trading on the DeGiro website, once an order is executed, a popup is shown briefly. Is there...

documentation
enhancement

The [create order docu](https://github.com/Chavithra/degiro-connector#41-how-to-create-an-order-) 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` -...

bug

For example the Trading API might return a negative response while creating or updating orders, see for example the error response in https://github.com/Chavithra/degiro-connector/pull/50#issuecomment-997392518 ```json {"errors": [{"text": "Le prix renseigné (300.0500)...

documentation

How can we integrate the feed of data from this API in several common used Algo modules e.g. - Backtrader (https://github.com/backtrader/backtrader), - FreqTrade for Telegram interactivity ( https://github.com/freqtrade/freqtrade ) -...

Hello, Probably not a bug but rather a limit from the server side. Do you see the same behaviour? Any workaround? Thanks.