i'm writing the strategy signals into a file and would like to put the name of the study template into the file name. How can i get the template name into a string variable? If it is possible to get the names of the active strategies into a string too, then o would like to know this also

My filename looks like this in the moment and i would like to put in the strategy names or at least the studytemplate names also.
var: fname(" "), datumzeit(" "), interval(" ");;
datumzeit = FormatDate("yyyyMMdd", computerdatetime) + " " + FormatTime("hh mm",computerdatetime);
interval = NumToStr(barinterval, 0);
fname = "C:\MC Tests\_Testresult for " + getsymbolname + " in "+interval+" Minutes Timeframe"+" tested at " + datumzeit + ".csv";
Regards
Robert