{
// Condition set 1
if ((EMA(14)[1] > EMA(14)[0]) && (Open[0] >= Close[1]) && IsReverseBarUp(b, 3.0) == true);
{
}
}
Hello, I have this method which wont compile because it says b does not exist in the current context?
even though i have specified what it is in another part of the code?
public static bool IsReverseBarUp(Bar b, double bodyFullRatio)
see?
Can anybody help me here?
Best Regards,
James

Comment