Signal Confirmation

Login or Register

Please login or register in order to view and post in the Forum.

3 posts / 0 new
Last post
Alex Savin
Last seen: 3 years 11 months ago
Joined: 08/31/2016 - 10:57
Signal Confirmation

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.

0
cpayne
Last seen: 1 year 1 month ago
Joined: 03/30/2009 - 00:00
Signal Statistics

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".

Alex Savin
Last seen: 3 years 11 months ago
Joined: 08/31/2016 - 10:57
Works like a charm, thanks!

Works like a charm, thanks!