Just wanted to confirm as I got a situation on our EFS. Typically there is a line that says as an example
The EFS is loaded in the WATCHLIST so typically if the symbol on the watchlist symbol column is AC-MEX it will produce a textfile which it did. But if I replace "AC-MEX" with a mexican symbol like "ALFA\A-MEX" although there was a line in the code that says
No textfile were produce even though the symbol on the watchlist matched on the code. Does it not accept the \ symbol?
Thanks
Code:
if (Symbol == "AC-MEX") { will produce textfile}
Code:
if (Symbol == "ALFA\A-MEX") { will produce textfile}
Thanks
Comment