Quote from TheoCap:
Thanks for the clarification. My only question is what does the system look at if it is monday(or does it not look at anything)? I really need to buckle down and learn some EasyLanguage.
If it's Monday, the system takes high and low of the previous day, i.e. high and low of Friday. Here's simple explanation:
"if dayofweekfix(date) = 1 then begin
hh = 0;
ll = 99999;
end;"
hh - highest high
ll - lowest low
if it's Monday, then the hh and ll values are reset (lowest low is set to this high value because any other value it would be compared to will be smaller)
Next...
"if high[1] > hh then hh = high[1];
if low[1] < ll then ll = low[1];"
high[1] and low[1] are high and low of yesterday (index "1" marks 1 day before today), so on Monday it's Friday.
EasyLanguage is in fact easy and intuitive. I have never programmed in this language and don't even own TS. But the syntax and semantics are almost the same as in universal programming languages like C or JAVA.
I think your'e exactly right re: the ADX component.
So summing it up the strategy is fading an attempt to break support/resistance with a low ADX and with an infinitely low R:R (limited reward/unlimited risk).
I bet you meant "high ADX" there.
The surprising thing is according to Acrary, it actually made a little bit of money. The only thing I could think of attributing the very marginable success to would be it's entry spot (the weekly low/high).
It could have made some money, but I think it had massive drawdowns. Also I don't see any other exit besides profit target, and a new entry could be made any day every day, so the system can build up a massive position. It waits forever until profit targets are hit, but in reality it will hit margin call sooner or later.