Maybe this is something that is already possible and I just don't know how to do it.
Lets say I have a buy signal SIG_BUY at POS=1
What I would like is to have a confirmation of that signal (SIG_CONF) at POS>1.
So that when SIG_BUY fires I get an additional conditional SIG_CONF after POS=1, but SIG_CONF only fires if SIG_BUY has fired.
The Signal Statistics Indicator can come in handy for this. It can give you results like "Bars Since Last Signal" or "Sum of Session Signals" So for instance...
POS > 1 AND STAT.1 >= 1
where STAT was setup with signal POS = 1 and "Sum of Session Signals".... or...
POS > 1 AND STAT <= POS
where STAT is setup with signal POS = 1 and "Bars Since Last Signal".
Works like a charm, thanks!