As I mentioned previously, use pending orders to execute the trade at the price of the high/low fractal. To use these, you will need MS9 or newer as the older versions (IMHO) don't implement pending orders correctly.
Try something along the lines of (long trades only):
System
Details
PS Fractal Trading System 1 Pending
Optimized
No
Order Bias
Long
Portfolio Bias
Single
Position Limit
1
Notes
Buy Order
Order Type
Stop
Order Expiration
Good Until Cancelled
Entry Size Method
Use Default Size
Signal Formula
hFractal:=H<Ref(H,-2) AND Ref(H,-1)<Ref(H,-2) AND
Ref(H,-3)<Ref(H,-2) AND Ref(H,-4)<Ref(H,-2); hFractal;
Price Formula
hFractal:=H<Ref(H,-2) AND Ref(H,-1)<Ref(H,-2) AND
Ref(H,-3)<Ref(H,-2) AND Ref(H,-4)<Ref(H,-2);
valuewhen(1,hFractal,ref(h,-2));
Entry Size Formula
Strategic Delay
Tick
Minute
Day
# of Bars
0
0
0
Sell Short Order
Order Type
Market
Order Expiration
Good Until Cancelled
Entry Size Method
Use Default Size
Signal Formula
Price Formula
Entry Size Formula
Strategic Delay
Tick
Minute
Day
# of Bars
0
0
0
Sell Order
Order Type
Stop
Order Expiration
Good Until Cancelled
Signal Formula
lFractal:=L>Ref(L,-2) AND Ref(L,-1)>Ref(L,-2) AND
Ref(L,-3)>Ref(L,-2) AND Ref(L,-4)>Ref(L,-2); lFractal;
Price Formula
lFractal:=L>Ref(L,-2) AND Ref(L,-1)>Ref(L,-2) AND
Ref(L,-3)>Ref(L,-2) AND Ref(L,-4)>Ref(L,-2);
valuewhen(1,lFractal,ref(l,-2));
Strategic Delay
Tick
Minute
Day
# of Bars
0
0
0
Buy to Cover Order
Order Type
Market
Order Expiration
Good Until Cancelled
Signal Formula
Price Formula
Strategic Delay
Tick
Minute
Day
# of Bars
0
0
0
Stops
BreakEven Stop
Positions
None
Floor Level
0.0 Pts
Stop Loss
Positions
None
Stop Value
0.0 Pts
Trailing Stop
Positions
None
Profit Risk Value
0.0 Pts
Trailing Periods
0.0
Inactivity Stop
Positions
None
Minimum Value
0.0 Pts
Periods
0.0
Profit Target
Positions
None
Target Value
0.0 Pts
Simulation
Options
General Options
Points Only Test
Yes
Initial Equity
10000.
Default Size
90.00 % Of Available Equity
Trade Long
Yes
Trade Short
No
Optimization Results
9999
Trade Execution Options
Realistic Market Prices
Yes
Buy Price
N/A
Sell Price
N/A
Sell Short Price
N/A
Buy To Cover Price
N/A
Delay To Open
1
Slippage
Buy
0.00 Pts
Sell
0.00 Pts
Sell Short
0.00 Pts
Buy to Cover
0.00 Pts
Broker Options
Interest Rates
Margin
0.00 %
Money Market
0.00 %
Margin Requirement
Long Initial
100.00 %
Long Maintenance
0.00 %
Short Initial
150.00 %
Short Maintenance
150.00 %
Commissions
Entry
$0.00 Per Transaction
Exit
$0.00 Per Transaction
wabbit [:D]