Ta.correlation

Created at 18 Apr 2024, 22:40
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!
MF

mferialdi563

Joined 01.12.2023

Ta.correlation
18 Apr 2024, 22:40


I'm looking for a function in cTrader similar to codepine's ta.correlation.


@mferialdi563
Replies

firemyst
21 Apr 2024, 09:05 ( Updated at: 22 Apr 2024, 05:35 )

Or you could write you own, and import the Python into your custom C#. Basic steps would be:

  1. Install the Python for . NET library: "pythonnet".
  2. In your C# code, import the "pythonnet" namespace.
  3. Use the "Py. Import" method to import your Python module.
  4. Use the "Py. ...
  5. Convert data between C# and Python using "PyObject" instances.

 

https://somegenericdev.medium.com/calling-python-from-c-an-introduction-to-pythonnet-c3d45f7d5232

 

 


@firemyst