skc
Goldmember
- Joined
- 12 August 2008
- Posts
- 8,277
- Reactions
- 329
That is, if three consecutive higher closes actually signaled an uptrend, prices may gap up on the 4th day's open, so being able to buy on the closing price of the 3rd day is an exercise in theory only. Same with exits
Of course, this doesn't negate the fact that you got to be right on your stock picking.
when you use real money you'll face a new set of issues again....the ones that involve the psychology of losing/winning real money. Live trading just isn't the same as demo trading.
Good luck. Sift the advice that's been given to you. I have 5 mechanical systems - only 2 are live in the current market conditions. But all 5 would be considered "impossible" by quite a few people on this forum. Remember that those who think some thing is impossible are ignored by those who are doing it. But stay grounded...as a newbie you will learn the most when you go live.
Saiter, you can theoretically achieve what you want to achieve (depending on your exit strategy) but you are going to need to follow your rules 100%. That is what remains to be seen. However, as TH points out you have no idea if your goal is possible if you don't know how the idea will perform.
Classic!! So you haven't a clue about your trigger, what to expect as far as stats, expected size of initial stop, win rate, DD, Amount of opportunities this will trigger daily OR as bunyip & I suspect that it would be a better trigger for a opposite entry and on and on....
:afro::shake::microwave:grenade:
What are these? just thought I would lighten my post
Hahaha exits would be at points where my original analysis would be incorrect:
- VSA
A bar with a wide range, closing near the low and on high volume would indicate weakness and hence an exit.
[*]Trends
2 or 3 bars of sideways movement with average to above average volume OR where the price has broken through a recent flag.
[*]Reversals
Price breaking through flag or another reversal in the opposite direction
I think I have more of a hard time coding them into amibroker, hence I can't back test the system properly. Also, I wouldn't know how to fix stops or set position size.
nice work there mstradesim, good read
with your exit;
Exit after X number of days.
arent you ignoring the advantages of position sizing in all this? and a maximum ammount of risk per trade, i would of thought i set % would work better in preventing heavy drawdowns,
might be missing something though,
Thanks for all your help guys.
I'll have a look at intraday data and get some more reading done. I'll post up what I've learnt in a few weeks time.
You don't need more reading. That's were unrealistic goals come from, you need PRACTISE.
Back testing and sim. Only then will you see whats possible and what you need to work on.
Or you could just keep throwing ideas around in your head and dreamin'
/*Variables*/
/***********/
y=MA(Volume,10); /*Formula for Average Volume*/
spread= H-L; /*Size of the spread*/
mid = L + spread/2; /*The midpoint of a bar*/
/*Going Long*/
/************/
[B]/*Buy Condition: Three consecutive up-thrust days with successively increasing volume*/[/B]
Buy = Ref(C,-2)<Ref(C,-1) AND Ref(C,-1)<C AND Ref(C,-2)<C AND Ref(V,-2)<Ref(V,-1) AND Ref(V,-1)<V AND Ref(V,-2)<V;
/*Sell Condition #1: Three days where the close is sideways (+/- 5% of each other) and volume is successively decling but larger than average for the first two days*/
/*Sell = (Ref(C,-2)<1.025*Ref(C,-1) AND Ref(C,-2)>0.975*Ref(C,-1)) AND (Ref(C,-2)<1.025*C AND Ref(C,-2)>0.975*C) AND (Ref(C,-1)<1.025*C AND Ref(C,-1)>0.975*C);*/
[B]/*Sell Condition #2: Sell on the bar with the smallest spread for the past 15 days, above average volume and a close towards the high*/[/B]
Sell = LLV(spread,15) AND V>1.5*Y AND C>mid AND HHV(C,90);
/*Going Short*/
/*Short = Ref(C,-2)>Ref(C,-1) AND Ref(C,-1)>C AND Ref(C,-2)>C AND Ref(V,-2)<Ref(V,-1) AND Ref(V,-1)<V AND Ref(V,-2)<V;
Cover = ApplyStop(stopTypeTrailing, stopModePercent, 2,0) ;*/
Okay well here's the first system that's being backtested:
I thought I'd also test the system from 01/01/01 till today, but it didn't get past 30/06/2006 when I had 100% DD
Time to make this profitable?
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?