professor_frink
Moderator
- Joined
- 16 February 2006
- Posts
- 3,252
- Reactions
- 5
range = H - L;
buy = range < ref(range,-1) AND ref(range,-1) < ref(range,-2);
I think your missing the point again, we wanted to design a system, a system that was different to Tech Trader in the fundemental way, ie. short term instead of long term...
The testing will prove whether it has an equal performance factor or not.
Cheers,
Also, I'm all for Nick leading the team here...no ego problem here, thats for sure!lol!
Initial stop at technical support
Breakeven Stop ASAP (breakeven 2xinitial stop distance)
Trailing stop - ATR
Exposure Stop - ????
Cheers,
I think code-wise, you would want it to look something like this-
range = H - L;
buy = range < ref(range,-1) AND ref(range,-1) < ref(range,-2);
This wouldnt be mechanical and cannot be made mechanical.
Or do you want to use discretion for (initial) stop placement?
WHy dont we try a %. Like 10% initial stop maybe?? Tech i think your T/T uses something similar.
It's entirely possible to place a stop at a programmable technical support level. Ed Seykota's support/resistance system does exactly this. It's not the type of discretionary support/resistance zoning that most people think of ie. look at the chart on a large time frame and see where price activity has become range bound or been turned around...but for an initial and/or trailing stop in a mechanical system it could suffice.
Hi all
I would like to make the point that a "near enough is good enough" attitude is only acceptable for long term systems.
However, with a short term system like the one we are developing, every aspect of it must be planned and specific because when using leverage you do not have the cushion of time to fall back on.
That is why I'm suggesting that once you have identified a possible trade that meets with all other criteria you confine entry times to the 5th hour of trade.
Cheers
Happytrader
/*
ASF Sample System Development
*/
NumColumns = 3;
VolRatio = StDev(log(C/Ref(C,-1)),5) / StDev(log(C/Ref(C,-1)),99);
Column0 = VolRatio;
Column0Name = "VolRatio";
InsideDay1 = H < Ref(High,-1) AND Low > Ref(Low,-1);
Column1 = InsideDay1;
Column1Name = "Inside Day 1";
InsideDay2 = Ref(High,-1)< Ref(High,-2) AND Ref(Low,-1)> Ref(Low,-2);
Column2 = InsideDay2;
Column2Name = "Inside Day 2";
Filter = InsideDay1 == 1 AND InsideDay2 == 1;
Buy = Filter;
Hi all
I would like to make the point that a "near enough is good enough" attitude is only acceptable for long term systems.
However, with a short term system like the one we are developing, every aspect of it must be planned and specific because when using leverage you do not have the cushion of time to fall back on.
That is why I'm suggesting that once you have identified a possible trade that meets with all other criteria you confine entry times to the 5th hour of trade.
Cheers
Happytrader
Happy we are talking Short term not day trading or a few days trading.
I agree if your down to these timeframes but you'll need realtime data to test.
I dont think thats whats in mind.
The system will spit out the numbers and missing the first hour of trading for an entry can and often is costly.Swings and roundabouts.
Attempting to perfectly time entry and exits will send you round the twist and its NOT necessary---as you understand system structure and what you achieve by trading one you'll understand.
I think you also presume that longterm system traders like myself dont trade or design shorter term systems.I'm playing with a concept now have been for a few months..
Thanks for that ASXG.
I had no idea.
Do you know exactly how to do this with amibroker/metastock or would it require some other software?
Hi Tech
All time frames including hourly charts are easily and freely available www.bigcharts.com. Tech, what happened to implementing Nicks guidance about defining a period of low volatility to take advantage of the high volatility which occurs in the first hour of trading? Aren't you in fact suggesting doing the opposite? Trying to position yourself in a trade in the first hour is far more risky, stressful and will send you round the twist faster than entering in the last hour. In fact on R0n1n's Entry thread, you suggested not trading the first hour. Missing out is only an emotion not a reason.
Canaussieuck there is no need to look at charts all day just afew minutes at key times during the day.
Cheers
Happytrader
I presume nothing about long term system traders such as yourself, but I can spot the difference a mile off.
Not for Systems testing I'm afraid.(Downloadable historical Tick or Minute data.)
Have 2 in place currently.One is currently running at 80% on capital over 9 mths and I only trade it periodically---(Running Businesses is time consuming---Particularly in the Construction Industry).
New concept coming along nicely.
Its setting up the softare and computers which is taking the time. Its out of the square.
Does anyone here have intraday data and tesing capability.
If so i'm sure you'll find that (For stocks) time of day entry is not a biggie.
Futures---different.
I know what you mean.
I have the same ability in spotting novices.
Hi Tech
As Nick has said If we are to get more 'bang for bucks' we need to define low volatility to take advantage of high volatility, then of course time of day is most definitely a 'biggie' This is especially so when using leverage and honouring stop losses.
The idea of being specific and implementing the guidance of those that are walking the walk, is to save time, effort and energy. By the looks of past threads on system development, if the process is too drawn out then people lose interest.
Yes I must admit working is time consuming, however, I'm sure if this system is done right we can manage to average a trade a week and be profitable, with minimal observation time and stress.
Canaussieuck, I don't mind helping out with a couple of bluechip stocks to test, however, I would be taking entry prices from the 5th hour of trade to make it more realistic. Maybe you could allocate a couple of stocks to each interested participant? Submitted for your consideration.
Cheers
Happytrader
Just to keep things moving I have thrown some initial sample code together that people can have a look at, modify, add to, improve and focus discussion.
Run it as an exploration in AB.
Cheers.
Code:/* ASF Sample System Development */ NumColumns = 3; VolRatio = StDev(log(C/Ref(C,-1)),5) / StDev(log(C/Ref(C,-1)),99); Column0 = VolRatio; Column0Name = "VolRatio"; InsideDay1 = H < Ref(High,-1) AND Low > Ref(Low,-1); Column1 = InsideDay1; Column1Name = "Inside Day 1"; InsideDay2 = Ref(High,-1)< Ref(High,-2) AND Ref(Low,-1)> Ref(Low,-2); Column2 = InsideDay2; Column2Name = "Inside Day 2"; Filter = InsideDay1 == 1 AND InsideDay2 == 1; Buy = Filter;
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?