I have a strategy with a primary and a secondary data series. I have the following as a condition on the primary series:
bool longCondDeltaA = GCD.DeltaClose[0] > 0;
GCD is a cumulative delta indicator that is part of the Gomi framework. The strategy and this condition currently works fine. However, I'd like to check this condition on the secondary data series. Is it possible? If so, how is best/easiest way to go about it?
I considered simply checking for a secondary series close in OnBarUpdate, setting a value, and then using the value when the primary series closes (where the actual condition check takes place). Hope this makes sense, please ask for necessary clarification.

Comment