After googling a lot and reading many articles, (for reference the two ones I found most interesting:
http://www.tradingblox.com/forum/viewtopic.php?t=8342http://www.elitetrader.com/vb/showthread.php?t=242751 )
I would like to discuss and possibly get answers or some guidance to the subject.
Part 1:From what I understand of the first link, combining strategies whose equity curve RETURNS are anticorrelated or uncorrelated improves metrics like Sharpe Ratio and Drawdowns.
For calculating the equity curve value for an asset/algo combination in Zorro is very simple: EquityLong + EquityShort
-Is that right?-
So for deriving what in the first link is called the return on day j:
Let E[j] be the total equity on day number j. Then the equity curve return on day number j, written R[j], is simply R[j] = ((E[j] / E[j-1]) - 1). As you can verify yourself by making a couple of plots, the E[j] series is not stationary but the R[j] series is stationary. So given equity curves A and B, first we calculate the returns series of A and the returns series of B, and then we calculate the correlation of (returns series A) to (returns series B).
In Zorro it would be a code like this inside the run function:
var eq = series(EquityLong + EquityShort)
var r = ( eq[0] / eq[1] ) - 1
var returns = series(r)
Is anything wrong in this part? Particularly with Montecarlo I am unsure whether EquityLong/EquityShort refers to the actual equity or to the equity at the 50% confidence level.
Part 2:From what I understood of what jcl says in the second link and the discussion afterwards (yes, I have read all 17 pages

) drawdowns can be reduced by anticorrelated equity curves (when some is in a drawdown the other not) but according to the first link equity curve values are not stationary (which from what I understand is a necessary condition to making forecast models but I don't know about it in extent) so is that a flaw or what jcl wants is not the same as in the first link?
Finally,
Part 3:Is there any relationship with equity curve returns (or the equity curve) and prices of the asset you are trading?
I ask this because I have this 'hypothesis': If you trade a trend following system with assets whose prices are UNcorrelated, ie correlation near 0, then the resulting equity curves (equity curve returns?) will be anticorrelated
Here is why according to my reasoning: When one asset is trending, a signal (for simplicity sake let's ignore false signals when trending) is made and since then profit. The other asset since correlation is 0 should be ranging so no signal is made or a false signal is made in which case a drawdown would ocurr (negative profit). So, when one equity is in a 'drawup' the other one is in a drowdown, hence the anticorrelation.
Is this reasoning correct? I have also an 'hypothesis' for cycle (counter trend) trading which is trading cycles which are shifted in duration would give also anticorrelated equity curves. Consider two curves shifted 180 degrees, you sell at top and buy at low of each cycle of each curve. When a trade in one curve is open a trade in the other curve is closed and made profit so when one equity curve stays the same the other goes up. Again, anticorrelation between equity curves. Is this reasoning also correct?
Thanks beforehand for your help and comments!