If the flag is already indicating long, there should not be a new flag indicating long. If flag does not indicate long evaluate the expression
longCondition = if (strategy.long) ? false: (rsi<30) and (close>moving_avg)
shortCondition = if (strategy.short) ? false: (rsi>70) and (close<moving_avg)
Processing script...
line 30: mismatched input 'shortCondition' expecting 'end of line without line continuation'
I assume this is an indicator and not a strategy. Because you can configure how many entries you want to have in the same direction in a strategy with the
pyramiding
parameter. Default is 0, so if this is a strategy and you haven't changed the pyramiding parameter, it shouldn't be a problem.For indicators, you can use a variable like this: