hi,
I have simple formula, only one symbol, here it is:
Buy =
(
C > TEMA ( C , 12 )
AND C > TEMA ( C , 26 )
);
Sell =
(
C < TEMA ( C , 12 )
AND C < TEMA ( C , 26 )
);
Buy = Buy AND BarsSince( Sell ) >= 3;
Short = 0; Cover = 0;
I want to have 3 bars delay between INITIAL SELL, not every SELL signal.
How to do that?
Please look at the picture above. The initial SELL was 3 bars ago, so I want the formula to generate BUY. Now it doesnt generete the BUY signal, coz of "buy = buy and barsince (sell) >=3. The formula doesnt differ the sell signal from initial sell signal.
Any idea how to repair it?
thanks!