Bekaert
 Regular
  Posts: 52
Joined: 2/1/2008
Location: Oostkamp, Belgium, Europe
User Profile |
There is also another solution
if the systems in you strategies are omnilanguage you could add the following in you system:
Dim mysymbol As String
mySymbol = left(Symbol,3)
'====Signal Statement =====
If mySymbol = "abc" or mySymbol = “def” . . . .Then
Signal = LongSignal
End if
|