//-------------------------------------------------------
// late lunch trade short
// instrument dax40
// timezone europe, berlin
// timeframe 30m
// created and coded by JohnScher
//-------------------------------------------------------
defparam cumulateorders= false
defparam flatafter = 213000
once ordersize = 0.5
tm = openmonth <> 1 and openmonth <> 3 and openmonth <> 10
td = opendayofweek >= 1 and opendayofweek <= 5
tt = time = 133000
c = close < exponentialaverage [6] (close)
c1 = rsi [14] (close) < 50
if tm and td and tt and c and c1 then
sellshort ordersize contracts at market
endif
set stop %loss 3
set target %profit 1.5