ProtoOAGetTrendbarsReq has suddenly stopped working

Created at 03 Mar 2025, 12:56
How’s your experience with the cTrader Platform?
Your feedback is crucial to cTrader's development. Please take a few seconds to share your opinion and help us improve your trading experience. Thanks!
AN

andrewO

Joined 05.06.2023

ProtoOAGetTrendbarsReq has suddenly stopped working
03 Mar 2025, 12:56


My code has suddenly failed to retrieve trendbars this morning. I noticed UTCNOW has effectively been deprecated today. I have updated to the new way of get UTCNOW but ProtoOAGetTrendbarsReq now only returns None data. Please could you look at this at your end to confirm your end is not affected by this deprecation


@andrewO
Replies

elena56brown
05 Mar 2025, 08:22 ( Updated at: 10 Mar 2025, 08:38 )

Hello,
It looks like the deprecation of datetime.utcnow() in Python 3.12 has caused some issues with your code2. The new recommended way to get the current UTC time is to use datetime.now(timezone.utc).

As for the ProtoOAGetTrendbarsReq returning None data, it seems like others have encountered similar issues. This might be related to the deprecation of UTCNOW and how the API handles the new datetime format.

Here are a few steps you can take to troubleshoot and resolve the issue:

Update your code: Ensure that you are using datetime.now(timezone.utc) instead of datetime.utcnow().

Check API documentation: Verify if there are any updates or changes in the API documentation regarding the datetime format.

Test with different datetime formats: Experiment with different datetime formats to see if the API accepts any specific format.

 

Hope this helps!
Best regards,
Elena


@elena56brown

andrewO
05 Mar 2025, 16:26

Resolved!!!


@andrewO