How to import exported values from other studies?

datapool

New member
Joined
Feb 5, 2021
Posts
2
Likes
0
I am using a custom study written in java with the SDK on a chart which calculates the values, plots the indicator and saves/stores the values with the following statement. All fine.

Java:
desc.exportValue(new ValueDescriptor(Values.DCL, "DCE Length", new String[] {Inputs.PERIOD, Inputs.PERIOD2}));

I can see the exported data in the "Cursor Data" view window with the Name and Value. My question is:

How can I access this stored/exported value from another custom study?

How can I read that value as input in another custom study as mentioned in the SDK docs: ".. 2. Input for another Study - Studies may be created with values from other studies.".

I am not able to find any documentation or example on how to do that. Could you guide me or show a code snippet how to do that?

Thank you,
Lars
 
Top