Automate codes developed in python to run into a platform developed in c++

Hello everyone,

Actually I'm trading using the platform Takion, which is developed in c++ but I'm developing an algo in Python. Is there a way to automate codes developed in python to run into a platform developed in c++? Sorry for the question, I'm really beginner. :)

Thanks
 
Check out this link on StackOverflow:

https://stackoverflow.com/questions/13327280/creating-dll-from-a-python-file/13327324

Basically you can create a dynamic link library (DLL) from Python and then call this DLL from your C++ application. If Takion supports DLLs this should work.

Hi Gary,

Many thanks for the above. Actually there's already a DLL but for c++. Trying to use it I received the error code 0x80004005 which means a file missing or can't be accessed. Once I solved this issue, should I just follow the link you sent? Thanks a lot!
 
Back
Top