Wysiwyg
Everyone wants money
- Joined
- 8 August 2006
- Posts
- 8,428
- Reactions
- 284
Interesting to note there are over 14000 views of this thread and only 60 replies with some ambiguous or off topic ones. Tells me there aint no "simple trading system".
Interesting to note there are over 14000 views of this thread and only 60 replies with some ambiguous or off topic ones. Tells me there aint no "simple trading system".
I back tested someone's Amibroker coded "Tech Trader" and got very ordinary to poor results on All Ords and S&P 500 over any period. I can only assume the entry/exit conditions are wrong. Code below and please enlighten if the code is wrong.Of course there is
"Techtrader" is a simple system
Traded live for 7 yrs and still in use by many.
Its on Radge's site and will be in his next book.
Yes.Wysiwyg
You haven't got one then?
What it tells me is people don't want to do the construction and testing of a "system" for trading or those that have are looking for new and better ideas.What it tells me is that very few trade!!!---at all.
// techtrader v2 amibroker version
// here we define buy conditions and name each one as a variable
PosQty = 10; // You can define here how many open positions you want
SetOption("MaxOpenPositions", PosQty );
PositionScore = Random();
SetOption ("UsePrevBarEquityForPosSizing", True);
SetTradeDelays(1,1,0,0);
// techtrader v2 amibroker version
// here we define buy conditions and name each one as a variable
PositionSize = -10; // always invest only 10% of the current Equity
cond1=Cross(H,Ref(HHV(H,10),-1)); // when todays high crosses last highest high over the last 10 periods
cond2=H > EMA(C,40); // todays high is greater than the 40 day Exp MA of closes
cond3=HHVBars(H,70) == 0; // todays high is the highest for 70 periods
cond4=EMA(V*C,21) > 500000; // ensure at least $500k of money flow
cond5=C < 10.00; // only trading in stocks less than $10
cond6=C > O; // todays close higher than open
// the following line is the trigger if all conditions satisfied
Buy=cond1 AND cond2 AND cond3 AND cond4 AND cond5 AND cond6;
//ApplyStop( stopTypeLoss, stopModePercent, amount=10 );
Sell= Cross(Ref(EMA(L,20),-1),C); // close crosses below yesterdays average of the low
Filter = Buy; // lists exploration results conforming to our buy criteria
AddColumn(Buy, "buy", 1.0); //
Filter = Sell; // lists exploration results conforming to our buy criteria
AddColumn(Sell, "sell", 1.0); //
// This section creates the data that you can plot to see how often TT2 trades
// NOTE:- Using VOLUME array so get correct number when switching to WEEKLY or MONTHLY display
AddToComposite(Buy,"~TTBuys","V");
AddToComposite(Sell,"~TTSells","V");
Buy = ExRem(Buy,Sell) ;
Sell = ExRem(Sell, Buy);
Binary = Flip(Buy , Sell);
If one believes that trading is a competitive environment and revealing in detail what trading method one uses will give the competition an edge. Very few traders reveal their trading system in detail. Especially if it works in flat and bear markets.The reason for this is that, those that post do not want to give secrets away.
The share market education industry must be worth billions.
To me, those traders believe its an internal society, and it probably is for those that have that particular beliefs.
Heiken Ashi is an indicator, not a trading system !
A trading system is a method involving the entry, stops, profit targets and exits, and that is an oversimplification.
A trading system may involve the use of indicators.
I back tested someone's Amibroker coded "Tech Trader" and got very ordinary to poor results on All Ords and S&P 500 over any period.
Especially if it works in flat and bear markets.
I can't begin to imagine what niche the likes of Howard Bandy has tapped
Have a look at any calender and choose two different dates. e.g. 1/01/2003 to 17/7/2007 or 17/7/2007 to 3/3/2009. Can't define it any further but 'any' is quite varied.I'm interested in your definition of "any period".
Is this site Reefcap.com.au?It traded live for 7 yrs returning 1200% on initial investment----pretty ordinary--. Its still up on the site ----
As you have conveniently left out, the Amibroker version of techtrader I have shows very ordinary results so again, what is not right in that version.Its also been tested to death by academics who's qualifications would have your head spinning---Ive not had any comments from any of them remotely reflecting your results.
Only for you.But still I'm sure your definition of "any period" will be enlightening.
But true regardless of whatever stage you think I'm at.This is SERIOUSLY the comment of a novice.Very few traders reveal their trading system in detail. Especially if it works in flat and bear markets.
The consistently profitable one.Niche' ??---what are you on about?
Define the type of Niche' you "think" he has tapped?
[/B]Have a look at any calender and choose two different dates. e.g. 1/01/2003 to 17/7/2007 or 17/7/2007 to 3/3/2009. Can't define it any further but 'any' is quite varied.
It traded live for 7 yrs returning 1200% on initial investment----
Hello AlterEgo. My test period was 5 years from 21/4/2006 to 21/4/2010 on circa 2000 ASX stocks, not All Ords.Hi Wysiwyg,
I just ran that code, exactly as shown above, and ran it on the past 5 years of ASX data. I get an average annual return of around 38%. What are you getting?
Hello AlterEgo. My test period was 5 years from 21/4/2006 to 21/4/2010 on circa 2000 ASX stocks, not All Ords.
My commision is set at $20, my % of entry bar volume is set at 10, my initial equity is 100k, no stops or profit targets set and buy on open next day after signal.
We use cookies and similar technologies for the following purposes:
Do you accept cookies and these technologies?
We use cookies and similar technologies for the following purposes:
Do you accept cookies and these technologies?