Equivalent of Visual Studio Object Browser in eclipse

q0paz

Active member
Joined
Aug 19, 2020
Posts
27
Likes
6
I'm still trying to figure out the object hierarchies of all the com.motivewave imports in the study examples

How do I do this ?

I expect to be able to right click on the line "import com.motivewave.platform.sdk.study.Study;"
and then go' view Objects' or something like that.. (similar to how you right click the references in a VS project and go => view in object browser)

How do I view the contents of all these imports ?

Where are these libraries located ?

Can I open them with a decompiler ?

Really all I want to do is, like in MQL5 when you create a new expert or whatever, their editor creates all the stubs for the eventHandlers... I really need to be able to create a template Study and know what goes where to initialise my study and calculate it on each handled price event.

The SDK documentation seems a bit sparse on this stuff..

Thanks
 

sas7085

Active member
Joined
Jul 7, 2020
Posts
33
Likes
7
IN eclipse if you will click on the class it will take to the source of that file. Maximum imports are from the mwave_sdk.jar
The source code of imports are not shared in public.
we have the mwave_sdk.jar is shared with us and in eclipse need to place this jar in the referenced libraries.

For example BarSize.class
651
 
Top