vars Price = series(price());
vars SMA220 = series(SMA(Price, 220));
if(dow() == 1) {
Entry = 50*PIP;
// EntryTime = 5;

if(Price < SMA220)
enterShort(WatchTrades);
if(Price > SMA220)
enterLong(WatchTrades);