Scripts: SignalViewer

 

SignalViewer:

Check out any MQL5 closed positions on a chart.

Author: icebob

 

Very Useful.

Thnak you. 

 

Instead of strict comparison:

if (StringSubstr(symb, 0, 6) != StringSubstr(Symbol(), 0, 6)) continue;

it would be better to check substrings because many signals use non-standard instruments with prefixes and suffixes. I'm using (in other script):

if(StringFind(symb, Symbol()) != -1 || StringFind(Symbol(), symb) != -1) // then proceed

Reason: