NexusFi: Find Your Edge


Home Menu

 





MC: IEasyLanguageObject accessible from C#


Discussion in EasyLanguage Programming

Updated
    1. trending_up 3,081 views
    2. thumb_up 2 thanks given
    3. group 3 followers
    1. forum 7 posts
    2. attach_file 0 attachments




 
Search this Thread

MC: IEasyLanguageObject accessible from C#

  #1 (permalink)
 
PK 1's Avatar
 PK 1 
Kassel / Germany
 
Experience: None
Platform: MC
Broker: IB
Trading: CL/NG/ES
Posts: 72 since Aug 2011
Thanks Given: 128
Thanks Received: 62

Hello,

since a while I'm trying to build a setup where I can outsource algorithms from MC to C#. I'm not familiar with C++ but did lots of things in C# (except COM-related things), hence my choice for C#. There is a PDF (EasyLanguage_Extension_SDK) and a few threads regarding the interface IEasyLanguageObject (Defined on side of EasyLanguage/Powerlanguage) on the MC-Forum.

What I'm aiming to do is a MC-Indicator calling a C#-Method. The indicator is using {self} to pass a reference to itself and its context (like [n]bars Close, Open, ...). I've created the necessary C++-Interop-DLL in order to communicate with managed code (C#). The reference overgiven from the indicator can be used within my C++-Code. The appropriate interface is IEasyLanguageObject . I can access all necessary data via this interface. Now the problem is forwarding that reference further from my C++-Interop-DLL to C#. Exchanging primitive types via MC <--> C++ <--> C# is no problem at all, works as it should. Both DLLs use PLKit.dll for the type-definitions like IEasyLanguageObject for example.

My approuch: passing the ref from C++ to C# the best way is likely using IntPtr on both sides. Retrieving the interface for the reference from that pointer is the main problem. There are many things regarding the interaction between COM and managed code.

I wonder if anyone here has figured out how to retrieve and access the IEasyLanguageObject -Interface from C#.

 
Code
// 1. Approuch (not complete)
IntPtr ptr = Marshal.GetIUnknownForObject(elRef);              // from IntPtr overgiven from C++ to IUnknown
result = Marshal.QueryInterface(ptr, ref iid, out finalIntPtr); // the iid is the GUID from PLKit.dll

// 2. Approuch (not complete)
ptr = Marshal.GetComInterfaceForObject(elRef, typeof(IEasyLanguageObject));
ptr2 = Marshal.ReadIntPtr(finalIntPtr);
mcRefObj = (IEasyLanguageObject) Convert.ChangeType(ptr, typeof(IEasyLanguageObject));
Is anyone here is using IEasyLanguageObject from C# passed as a reference? I'm not using MC.Net, just the normal MC-Version. Any help appreciated.

Started this thread Reply With Quote

Can you help answer these questions
from other members on NexusFi?
Better Renko Gaps
The Elite Circle
How to apply profiles
Traders Hideout
Pivot Indicator like the old SwingTemp by Big Mike
NinjaTrader
Trade idea based off three indicators.
Traders Hideout
Exit Strategy
NinjaTrader
 
Best Threads (Most Thanked)
in the last 7 days on NexusFi
Spoo-nalysis ES e-mini futures S&P 500
29 thanks
Tao te Trade: way of the WLD
24 thanks
Just another trading journal: PA, Wyckoff & Trends
24 thanks
Bigger Wins or Fewer Losses?
21 thanks
GFIs1 1 DAX trade per day journal
17 thanks
  #3 (permalink)
 ABCTG   is a Vendor
 
Posts: 2,433 since Apr 2013
Thanks Given: 481
Thanks Received: 1,627


In case you haven't seen this thread, maybe it helps: MultiCharts: Trading Software for Automated Trading and [AUTOLINK]Backtesting[/AUTOLINK] ? View topic - [Advanced Topic] Programming DLL

Regards,
ABCTG

Follow me on Twitter Reply With Quote
Thanked by:
  #4 (permalink)
 
PK 1's Avatar
 PK 1 
Kassel / Germany
 
Experience: None
Platform: MC
Broker: IB
Trading: CL/NG/ES
Posts: 72 since Aug 2011
Thanks Given: 128
Thanks Received: 62

I've checked many threads on MC-Forum as well, that pointed thread I know.

Started this thread Reply With Quote
  #5 (permalink)
 ABCTG   is a Vendor
 
Posts: 2,433 since Apr 2013
Thanks Given: 481
Thanks Received: 1,627

Is there a particular reason why are you not doing this in MC.NET?

Regards,
ABCTG

Follow me on Twitter Reply With Quote
  #6 (permalink)
 
PK 1's Avatar
 PK 1 
Kassel / Germany
 
Experience: None
Platform: MC
Broker: IB
Trading: CL/NG/ES
Posts: 72 since Aug 2011
Thanks Given: 128
Thanks Received: 62


PK 1 View Post
I'm not using MC.Net, just the normal MC-Version.

My license is for MC not MC.Net

Started this thread Reply With Quote
  #7 (permalink)
 ABCTG   is a Vendor
 
Posts: 2,433 since Apr 2013
Thanks Given: 481
Thanks Received: 1,627

I don't know how much time you have already spend with this project, but you'll probably spend some more with it. That's why I thought it might make sense to go with the .NET version, even more so as you are versatile with C#.

You can probably get a discount for MC.NET as you have already a license for the regular version. Just my two cents, in the end I don't know how much code you have to convert etc. and you have probably done the math about switching already.

Regards,
ABCTG

Follow me on Twitter Reply With Quote
  #8 (permalink)
 
PK 1's Avatar
 PK 1 
Kassel / Germany
 
Experience: None
Platform: MC
Broker: IB
Trading: CL/NG/ES
Posts: 72 since Aug 2011
Thanks Given: 128
Thanks Received: 62


ABCTG View Post
Just my two cents, in the end I don't know how much code you have to convert etc. and you have probably done the math about switching already.

Actually off-topic ... In fact, you are right and I did a proof of concept with calling my dll from MC.Net. Easy going! They charge 199$ for converting the license, which is imho ok. But there are things that kept me from really migrating to the .Net-Side.
  • Indicator on Indicator was proposed for version 9 (MC-Statement from spring 2013) but not anymore after I asked them about it
  • programming this for my own in my indicators and doing this for builtin-indicators via a wrapper would be ok for me but I can't see a way to do this. The suggested examples for this given on MC-Forum are not related to what I need to do. I have an example on the support forum ... maybe this can be done easily and I've just overseen something.
  • One big minus is the two missing default settings - checkbox in the Format-Study-Dialog for Input and Style. Applying a default is not possible ... implementing the checkboxes for MC.Net is not possible according to the support. This might sound like a minor problem but can get a real nightmare.
  • Another point I came upon is the PLE being in charge of the .Net-Projects for C# and VB. This of course was meant to be that way in order to realize the integration of extern editors, so far no problem. But one has to be aware that from time to time PLE is doing something in the background causing the project to change. Actually no problem either. But in case there is getting something wrong the user can do nothing. One example: for me I've converted half a dozens of bigger indicators on the C#-Side, never did anything on the VB-Side. But from nothing after starting VS from PLE the VB-Project was missing the reference to PLStudiesProxy.dll, hence almost 200errors ... of course they don't count because compilation is done by the PLE but Intellisense and normal development hardly possible. As PLE triggering the generation/change of the two projects I couldn't change this wrong project. Strange but true on PLE-Side the project was fine. The support asked me to send the code in order to investigate but thats hardly possible here. So in the end there's a lot happening under the hood when dealing with .Net-Version which the developer is not in charge of.
  • It's told the functionality of MC and MC.Net is the same but thats obviously not true for some specific things. I've checked the .Net-Forum and it looks like there are some other points ... maybe no big deal either but surprise when one is recognizing this.
--> so for me it would take long time to migrate due to the huge amount of code and some things got me thinking hardly whether it's really worth migrating. I've put much time into evaluating but at the moment for me it's better to stick with my MC-Configuration.

AddOn: Regarding my second point this could be possible with Lambda-Expressions I've read on MC-Forum. There's a class defined for Multicharts: Powerlanguage.Lambda<T> : ISeries<T>

m_rsi.price = new Lambda<double>(_barsBack0 => (Bars.Close[_barsBack0] * 2));

Started this thread Reply With Quote
Thanked by:




Last Updated on March 20, 2014


© 2024 NexusFi™, s.a., All Rights Reserved.
Av Ricardo J. Alfaro, Century Tower, Panama City, Panama, Ph: +507 833-9432 (Panama and Intl), +1 888-312-3001 (USA and Canada)
All information is for educational use only and is not investment advice. There is a substantial risk of loss in trading commodity futures, stocks, options and foreign exchange products. Past performance is not indicative of future results.
About Us - Contact Us - Site Rules, Acceptable Use, and Terms and Conditions - Privacy Policy - Downloads - Top
no new posts