Please help confirm my understanding on the following:
1. I have "&&" to specify that all these conditions must be met before entering short, right?? Do not want a surprise that the system thought only one condition only for entry.
// Condition set 2 Go Short
if (d9ParticleOscillatorWVertLineR(7, 0).RawTrend[0]<0 && (DonMA(14).MAFalling[0] < DonMA(14).MAFalling[1]) && (EMA_Colors_Paint_v01(30, 60, 14).EMAdown[0] < EMA_Colors_Paint_v01(30, 60, 14).EMAup[1]))
{
EnterShort(DefaultQuantity, "");
}
2. I used || to tell the system that only one of these 2 conditions is required for an early exit. Am I right?
// Exit with warning signals of trend reversal
if (CrossBelow(d9ParticleOscillatorWVertLineR(7, 0).RawTrend, _Sharkfin(6).Rising, 1)|| (d9ParticleOscillatorWVertLine(7, 0).DotL[0]==0))
ExitLong();
My trillion thanks again.







Will be very occupied. Possibly knock .. knock .. again tomorrow .. smile .. 
Comment