So if I remember, You are simply testing the NQ from 2 different times 12:00cst and 13:00cst and using the original rules and the cut-off time (14:45cst) and exit time(15:00cst)....Right? Are you using the same factors to multiply with, that are used on the ER? Michael B.
"Trade" for today: Opening Price of day session 545.10 Long Signal = 1.0033*545.10 = 546.90 Stop Short Signal = .9967*545.10 = 543.30 Stop short at market 1300CST at 541.40 Exit short at BUY/Long stop 546.90 P/L -5.50 Per contract with commission $-555.00
I applaud you for avoiding the noise on this thread.. Look forward seeing how this plays out over time. (Although tedious to wade through 13 or so pages for each of your posts )
I'm using his original rules that he spelled out for the first test. Then i am using what another poster said that he uses. He does the measurements from 1:00 number. So i take the 1:00 central price and do the *1.0033 and *.9967 for the second test. Pierson
Ok, I decided to throw to gether a very quick and simple test on this idea, and the results are what I expect. Here's the Tradestation code: -------------------------------------------------- Input: Threshold(.33); vars: lng(0), sht(0), opn(0); if time = 1100 then opn = open; lng = opn * (1+(threshold/100)); sht = opn * (1-(threshold/100)); if time >= 1100 and time < 1245 and marketposition = 0 then begin buy next bar at lng stop; sell short next bar at sht stop; end; if marketposition <> 0 then begin sell next bar at sht stop; buy to cover next bar at lng stop; if time >= 1300 then begin sell next bar at market; buy to cover next bar at market; end; end; ------------------------------------------------ If you use $12.5 slippage and $5 commission per trade, you would've lost your rear in any contract (other than the Russell, which I did not test) over the last three years. As a side note, I used intraday continuous futures for the tests.
Also, I do not Trade it on Fridays or on the last day of the month. Although this reduced profit slightly, the PF and %profitable improved.