Quote from rgelite:
This seems similar, with historically proven results.
http://www.originalturtles.org/system.htm
Quote from Runningbear:
Actually in this regard you are right. It is some what similar. However the 5 points you outline are really common to all mechanical systems.
I was comparing the basic use of an MA based strategy in two time frames to a break out strategy using one time frame.
Runningbear

Quote from metooxx:
Text version; I don't have Tradestation?
Quote from abogdan:
Inputs: Length(40);
Vars: Top(0), Bottom(0), Middle(0);
Top = LinearRegValue( H, Length, 0 );
Bottom = LinearRegValue( L, Length, 0 );
Middle = LinearRegValue( ((C+L+H)/3), Length, 0 );
If c >= Top Then Begin
SellShort Next bar H Limit;
End;
If c <= Bottom Then Begin
Buy Next Bar at L Limit;
End;
If MarketPosition = 1 And (C >= Middle or Close > AvgEntryPrice) Then Begin
Sell This bar on Close;
End;
If MarketPosition = -1 And (C <= Middle or Close < AvgEntryPrice) Then Begin
BuyToCover This bar on Close;
End;
If MarketPosition = 1 Then Begin
Sell Next Bar at (AvgEntryPrice + 0.01) Limit;
End;
If MarketPosition = -1 Then Begin
BuyToCover Next Bar at (AvgEntryPrice - 0.01) Limit;
End;
Quote from balda:
This is just one of many little thing that I learned from Acrary's posts
"Did you know that after the first 2 hours of SP trading, there is a 90% chance that either the high or the low is in for the day?"
this is very valuable information.
thank you, acrary.
Quote from Samson77:
Great strategy if true?
At 11:30 on days the market is at or close to the Highs SELL with a stop just above the HOD.
At 11:30 on days the market is at or close to the Lows BUY with a stop just below the LOD.
90% success rate right ?
Quote from Samson77:
Great strategy if true?
At 11:30 on days the market is at or close to the Highs SELL with a stop just above the HOD.
At 11:30 on days the market is at or close to the Lows BUY with a stop just below the LOD.
90% success rate right ?
There are very many people trading like thisQuote from Samson77:
Great strategy if true?
At 11:30 on days the market is at or close to the Highs SELL with a stop just above the HOD.
At 11:30 on days the market is at or close to the Lows BUY with a stop just below the LOD.
90% success rate right ?
Quote from ig0r:
Seems like the start of a good strategyThere are very many people trading like this