Wysiwyg
Everyone wants money
- Joined
- 8 August 2006
- Posts
- 8,428
- Reactions
- 284
The critical information you left out in your assumption is the test period. The best part of this trend trader was catching one of the strongest bull runs in ASX history. Simple as that.The ONE tweak that I've found that made an improvement was to change the sell criteria - By changing the sell criteria to:
Sell= C < MA(C,50);
skate
The critical information you left out in your assumption is the test period. The best part of this trend trader was catching one of the strongest bull runs in ASX history. Simple as that.
Change the test period = change the result.
Much much more here and coming up in the future for those interested.
http://lightning.he.net/cgi-bin/suid/~reefcap/ultimatebb.cgi?ubb=get_topic;f=74;t=000040
You'll have to register if not a member.
I realise this is very old post now but does this link supposed to go somewhere different now or is there another link. Just a query.
I have seen this claimed about the techtrader thread multiple times by tech, but I have never been able to verify.
From my understanding, it was $30k plus $70k margin loan, so the return from trades is actually more like 260% return over 7 years (~15% per annum, after margin costs I assume, otherwise not much better than market return) than the 1200% return that "turning $30k into $360k" seems to imply.
Still an impressive return of course, but should be considered in light of the overall market regime for those 7 years as well.
The position sizing was 10% of Funds available with a stop of 10% of the purchase price.
If you turn $30k into $360k does it really matter if margin was used or not? It's still $360k....
If you turn $30k into $360k does it really matter if margin was used or not? It's still $360k....
If you turn $30k into $360k does it really matter if margin was used or not? It's still $360k....
what's my return on my initial capital???
What I shouldn't be doing that??
You can do whatever you want. This defensiveness in light of any sort of questioning is toxic.
I just wanted clarification on the thing I asked, which you provided.
Thankyou for clarifying.
From my understanding, it was $30k plus $70k margin loan, so the return from trades is actually more like 260% return over 7 years (~15% per annum, after margin costs I assume, otherwise not much better than market return) than the 1200% return that "turning $30k into $360k" seems to imply.
I'm sure someone like minwa is using leverage in some form to gain his returns, but his return on initial capital is still awesome.
If someone invests 10k into a CFD account and has access to 100k of tradeable funds and makes 5k profit it would be counted as a 50% return in the end wouldn't it? not 5%
Your questioning is designed to discredit.
Perhaps you should be less confrontational!
I and others may then become less toxic
Yeah, if you buy a $1000 put option on SPY and tomorrow you wake up and the put is now worth $1500 then it's a 50% return but it doesn't entitle you to say "I can make 50% returns in a day".Nobody is disputing that return on capital is return on capital. The issue raised was only to clarify the source of those returns, which has been done. If you don't care about the source, that is fine, but some people do.
Dude, you are actually crazy if you think the motivation for people to post things is to discredit you. Perhaps try to think about other reasons why people might post things.
How in the hell is making a comment that begins with the words "from my understanding" and includes the statement "still an impressive return", confrontational?
so the return from trades is actually more like 260% return over 7 years (~15% per annum, after margin costs I assume, otherwise not much better than market return) than the 1200% return that "turning $30k into $360k" seems to imply.
// here we define our buy conditions
cond1=Cross(H,Ref(HHV(H,10),-1)); //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
// initial stop aim to never lose more than 10%
ApplyStop( stopTypeLoss, stopModePercent, amount=10 );
//our exit conditions if not stopped out
Sellsig= Cross(Ref(EMA(L,180),-1),C); // close crosses below yesterdays EMA of the low
Hi @markrmau,Morning everyone, longtime no hear (from me anyway)!
I had a renewed interest in a system I could use for super and thought I would backtest TT. However, I think I would have to modify slightly.
Data: using yahoo finance. This gives you adjusted OHLC which accounts for all splits and dividends. However, if I use this, it is a little hard to compare to XAO unless I can easily split out the dividend yield.
For this reason I think I will use the unadjusted values and see if I can adjust only for splits. Dividends would then be extra return
Position size.
I am a little more conservative. I would feel more comfortable with position sizes of $15k now. I intend to work out what that translates to at the beggining of the data set and have a year-by-year escallation that equates to $15k now.
Stock universe.
If I could get the BT margin list each year for the last 30years I could use that. It might present data problems for me though. For now I intend to rely on the EMA of the volume*close to select on liquidity instead.
The buy conditions.
cond1 - i think this will always be true when cond3 is true. cond1 ignored.
cond4 - (also see Stock universe). In two minds. For liquidity checking I would prefer to use the MA rather than EMA, however EMA would allow selection of stocks with smaller traded $ which have an uptick in the traded $. Will leave as EMA.
cond5: if I use data that is backadjusted for splits and dividends, this interferes with this condition. I do have unadjusted data. Will try with and without this condition.
EMA generally - assume smoothing = 2 as per https://www.investopedia.com/terms/e/ema.asp
The sell conditions.
I will change the stop slightly - if any of o/h/l/c <= 0.9 * buy price, then sell next open. This is realistically the best I could acheive in real life. I prefer not to have automated stop losses via the broker system - as you wouldn't know what price you got for the sale if it dumps to market, and it would be hard to backtest without knowing sell price. Assuming the liquidity is selected suitably, you have better chance buying/selling on the open/close without influencing the market.
Monte carlo analysis: will do this.
Any thoughts or comments?
I'll send analysis when I get it all working.
Hi @markrmau,Morning everyone, longtime no hear (from me anyway)!
I had a renewed interest in a system I could use for super and thought I would backtest TT. However, I think I would have to modify slightly.
Data: using yahoo finance. This gives you adjusted OHLC which accounts for all splits and dividends. However, if I use this, it is a little hard to compare to XAO unless I can easily split out the dividend yield.
For this reason I think I will use the unadjusted values and see if I can adjust only for splits. Dividends would then be extra return
Position size.
I am a little more conservative. I would feel more comfortable with position sizes of $15k now. I intend to work out what that translates to at the beggining of the data set and have a year-by-year escallation that equates to $15k now.
Stock universe.
If I could get the BT margin list each year for the last 30years I could use that. It might present data problems for me though. For now I intend to rely on the EMA of the volume*close to select on liquidity instead.
The buy conditions.
cond1 - i think this will always be true when cond3 is true. cond1 ignored.
cond4 - (also see Stock universe). In two minds. For liquidity checking I would prefer to use the MA rather than EMA, however EMA would allow selection of stocks with smaller traded $ which have an uptick in the traded $. Will leave as EMA.
cond5: if I use data that is backadjusted for splits and dividends, this interferes with this condition. I do have unadjusted data. Will try with and without this condition.
EMA generally - assume smoothing = 2 as per https://www.investopedia.com/terms/e/ema.asp
The sell conditions.
I will change the stop slightly - if any of o/h/l/c <= 0.9 * buy price, then sell next open. This is realistically the best I could acheive in real life. I prefer not to have automated stop losses via the broker system - as you wouldn't know what price you got for the sale if it dumps to market, and it would be hard to backtest without knowing sell price. Assuming the liquidity is selected suitably, you have better chance buying/selling on the open/close without influencing the market.
Monte carlo analysis: will do this.
Any thoughts or comments?
I'll send analysis when I get it all working.
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?