No, it doesn't make sense. QQQQ went up from 29.27 to 47.49 in the testing period. Please provide full disclosure of your analysis and please be very specific. Put up or shut up.Quote from bashatrader:
I did my own analysis and I calculated a success rate slightly better than 50% in the case of long-only trades. This makes sense. It appears that you selected a sample biased enough to match the performance of the Harris system so you can declare it random.
I'll go first. I used daily QQQQ data from TradeStation and this code for my test.
Code:
Inputs: Num(1);
Vars: EP(0);
if CurrentBar = Num then
Buy next bar on Open;
if CurrentBar = Num + 1 then
EP = Open;
if CurrentBar > Num then
begin
Sell next bar at EP * 1.07 Limit;
Sell next bar at EP * 0.93 Stop;
end;
I verified the results of the above code by comparing against the built-in SetProfitTarget and SetStopLoss. Almost identical outcome, winning % very close to 60. I also accounted for the MaxBarsBack value and made sure my first trade was on 05/07/2002.
Unlike the built-in TS stop and target, the above code doesn't exit on the entry day. However, the difference in results was minimal due to a total sample size of > 1500. We are talking about different winning % of +- 0.5 points here.
I'm very interested to learn how you got slightly better than 50 and not 60.
Beyond that, your twisted drivel and bizarre claims are not worth discussing.