hello folks,
For single systems i am able to get intraday email 
  alerts using alertif by setting the system to scan every 10seconds or 
  so.
But how do i run multiple systems in this mode? 
one option 
  would be to create a gigantic code file with all the systems in it but it 
  would be horrible to manage or even create as there will all these name 
  conflicts between multiple systems. What are people doing to manage multiple 
  systems? are there any trick that let me do something like:
  
//System-1
Buy = ..
BuyPrice = ..
Sell = ..
SellPrice = ..
//end-system1
//System-2
Buy 
    = ..
BuyPrice = ..
etc
//end-system2
Alert if Buy on System1 or 
  System2
Having slightly different names for 
  arrays is probably not useful; as BuySystem1 and BuySystem2 are ok for 
  generating signal arrays but for the inbuilt BuyPrice arrays if i change the 
  names they might not be considered by the backtester as they should 
  be.
thanks
-gariki