In what order are the studies being executed?

Dennis

Member
Joined
Oct 30, 2023
Posts
10
Likes
2
It is currently unclear to me, in which order MotiveWave executes studies that I add to a plot.
It's not running them by alphabetical order or by the order I added them to my plot.

Does anyone know what the technical insights are and how I can control the execution order of studies?

I can't find anything in the MotiveWave SDK Javadoc.
 

igor.s

Well-known member
Joined
May 22, 2019
Posts
286
Likes
152
I would assume there are running in parallel, Java threads.

cheers.
 

Spin

Well-known member
Joined
May 22, 2019
Posts
480
Likes
192
It is currently unclear to me, in which order MotiveWave executes studies that I add to a plot.
It's not running them by alphabetical order or by the order I added them to my plot.

Does anyone know what the technical insights are and how I can control the execution order of studies?

I can't find anything in the MotiveWave SDK Javadoc.
I answered with a suggestion that might shed light on this here ;)
 

Dennis

Member
Joined
Oct 30, 2023
Posts
10
Likes
2
I would assume there are running in parallel, Java threads.

cheers.
Sadly not. They are using the same Thread and are being executed one-by-one:

e.g.
Study A Precalculate
Study A Calculate
Study A Calculate
Study A Postcalculate
Study B Precalculate
Study B Calculate
Study B Calculate
Study B Postcalculate
 
Top