Barry Cohen
 Sage
      Posts: 6338
Joined: 1/19/2004
User Profile |
STOP EX: if SMA($SPX) > SMA($SPX)[1] then exit signal.... |
In that case you would not use SymbolID. You could have an OmniScript stop set to a condition like this...
SMA(GetClose("$SPX"),10) > SMA(GetClose("$SPX"),20)
|