Originally Posted By: jcl
If a real trade was rejected or was externally closed, Zorro will attempt to open it again at the next trade with that asset.


I guess you mean ...at the next bar... yes, and this is great

Originally Posted By: jcl
If you want to close the virtual trade instead, let your script compare LotsPool and LotsPhantom, and cancel the virtual trade accordingly. I do not think that this has an effect on the accuracy of the equity.


yes it will affect the equity: you will have a +1 number of trades with a small loss or profit. The virtual trade will be always open regardless the real asset availability. This is why a was asking a previous check. If you have any hint on this it will be great.

just immagine a psudo-code like:

tradeIsGood = enterLong();
If (tradeIsGood ) enterVirtual(tradeIsGood);

In this case any wrong virtual opening will be avoided. I understand this will limit the Hedge = 5 setting. This is the reason because I was asking for something that will simplify "is the asset available" topic.

Thank you in advance