Hey Alexdepa,
I still can't do this in fxDreema, but I can give you some snippets of code that will do the job...
I'll assume that you're using a global scope variable named "ConsecutiveSLCount" for this... Replace it with the name that you actually use...
In init...
if (GlobalVariableCheck(StringConcatenate(<EAName> + "_" + Symbol() + "_" + string(Period()) + "_ConsecutiveSL_" + string(<MagicNumber>))))
{
ConsecutiveSLCount = GlobalVariableGet(StringConcatenate(<EAName> + "_" + Symbol() + "_" + string(Period()) + "_ConsecutiveSL_" + string(<MagicNumber>)));
} // End if (GlobalVariableCheck(StringConcatenate(<EAName> + "_" + Symbol() + "_" + string(Period()) + "_ConsecutiveSL_" + string(MagicNumber))))
else ConsecutiveSLCount = 0;
Obviously, replace <EAName> with the name of the EA, and <MagicNumber> with the name of the constant that holds the Magic Number 
Now, just after the point where you update the counter, paste this bit of code...
if (ConsecutiveSLCount >= 1)
{
GlobalVariableSet(StringConcatenate(<EAName> + "_" + Symbol() + "_" + string(Period()) + "_ConsecutiveSL_" + string(<MagicNumber>)), ConsecutiveSLCount);
} // End if (ConsecutiveSLCount >= 1)
else
{
if (GlobalVariableCheck(StringConcatenate(<EAName> + "_" + Symbol() + "_" + string(Period()) + "_ConsecutiveSL_" + string(<MagicNumber>))))
{
GlobalVariableDel(StringConcatenate(<EAName> + "_" + Symbol() + "_" + string(Period()) + "_ConsecutiveSL_" + string(<MagicNumber>)));
} // End if (GlobalVariableCheck(StringConcatenate(<EAName> + "_" + Symbol() + "_" + string(Period()) + "_ConsecutiveSL_" + string(<MagicNumber>))))
} // End else
Again, replace what needs to be replaced.
Now, as the EA runs and consecutive SL's are counted and the global-scope variable is updated, the GlobalVariable of the terminal is also updated...
You can shut down the terminal at the end of the week, and when you re-start next week, the code in init will read the GlobalVariable of the terminal, and update the global-scope variable with its contents.
Have fun!
Radar =8^)
edit... I forgot to say that the EA name must be in double quotes.