How can I write the code with the " OR"
def FastEMA = MovingAverage(AverageType.EXPONENTIAL, close, 30);
def SlowEMA = MovingAverage(AverageType.EXPONENTIAL, close, 50);
def EMAcondition = FastEMA < SlowEMA;
plot Condition = sum(EMAcondition,7) ==7;OR def FastEMA = MovingAverage(AverageType.EXPONENTIAL, close, 30);
def SlowEMA = MovingAverage(AverageType.EXPONENTIAL, close, 50);
def EMAcondition = FastEMA > SlowEMA;
plot Condition = sum(EMAcondition,7) ==7;
def FastEMA = MovingAverage(AverageType.EXPONENTIAL, close, 30);
def SlowEMA = MovingAverage(AverageType.EXPONENTIAL, close, 50);
def EMAcondition = FastEMA < SlowEMA;
plot Condition = sum(EMAcondition,7) ==7;OR def FastEMA = MovingAverage(AverageType.EXPONENTIAL, close, 30);
def SlowEMA = MovingAverage(AverageType.EXPONENTIAL, close, 50);
def EMAcondition = FastEMA > SlowEMA;
plot Condition = sum(EMAcondition,7) ==7;