[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: System Test HELP



PureBytes Links

Trading Reference Links

chuck,
	a possible workaround is to plot the equity line as an indicator.this
example might not be exact be may be a starting point.

setup := (ref(l,-1) < ref(h,-2))    {initial gap}
	     and (ref(h,-1) > o);   {open less than last week high}
cum(if(setup,c-o,0));

the resulting indicator would be the profit/loss in points. unfortunatly
there are no buy/sell arrows.
	i'd be interested in hearing your conclusions on the patterns. after
quickly testing them myself i discounted the equilateral quads as i
couldnt duplicate the authors results. the soybean gap pattern looks
promising but has to few trades to be conclusive. it also failed to work
in other time frames which is something i like to see. if you could
foward your conclusions i would appreciate it.

thanks,al
neubauer@xxxxxxxxxxxxx


Chuck Wemlinger wrote:
> 
> List,
> 
> I am trying to build some system tests based on the TASC Jan 99
> article "The Tactical Trader".  The Soybean Gap and Equilateral Quads
> trading rules cannot be duplicated exactly since entry is executed at
> a stop the same day that all conditions are met.  Therefore my entry
> point is on the open with a delay of 0.  Now I would like to exit at
> the close of the same day.  It seems the system tester (which now
> allows for seperate entry and exit rules in the new 6.52 version)
> forces the exit to the next day.  Has anyone found this to be true
> also and is there a workaround?
> 
> And, regarding the PRINT reports to a GENERIC/TEXT file, has anyone
> noticed that the leading edge of numbers and trailing edge of text is
> being truncated?  Or is it just my generic/test print driver?  For
> example Net Profit will report 8.45 when it's really 38.45.
> 
> Thanks,
> Chuck