- Joined
- 14 December 2010
- Posts
- 3,472
- Reactions
- 248
I have studied a number of entry methods and breakout trading really appeals to me.
What are some of the filters people use in their searches for breakouts e.g. highest high of last 40 days, volume above a certain amount.
What AND or OR functions do people like to include.
I'm not asking for entire entry signals that you might have for your system but just some valuable things to look for.
Thanks,
Matt
Look at breakouts on LOWER than average volume.
This indicates supply at this level (Normally a highest high for sometime) isn't coming into the market.
Look for breakouts on the second attempt at breaking resistance especially with relatively low momentum indicators.
I noticed that you mentioned this one previously Tech/a.
I understand from a theory point of view but can't reconcile how this goes against most of the things I've read about trading on heavy volume to confirm a strong breakout. Are you saying you do the complete opposite and that lower volume confirms a strong breakout for you?
You need to study breakouts and recognize when volume is Supply or Demand.
Breakouts on heavy volume CAN be excellent prospects but can and do turn and reverse as quick as they take off.
Its a long journey not one we can take you through in a thread.
With my current filers: HHV, C>O, V
I am getting between 25-45 results daily.
I am curious as to how many companies usually show up for most people in their filters? I am only looking to hold about 10 trades at any one time so obviously this amount of results is excessive.
Do people get a large amount of results like this and sift through them? or should I add further filters to narrow it down? Any suggestions on other filters?
Thanks,
MM
What does a low momentum indicator for a breakout suggest?
You need to study breakouts and recognize when volume is Supply or Demand.
Breakouts on heavy volume CAN be excellent prospects but can and do turn and reverse as quick as they take off.
Its a long journey not one we can take you through in a thread.
Say you are looking for a breakout and using a stochastic indicator. If it is in the lower to medium part of its chart and moving upwards when it breaks through a resistance, chances are it will keep moving through it.
I think you'll find stochastics and for that matter most indicators follow price movement. Therefore if the price is making a new high the stochastic will be heading in the same direction or very high already. Anyways I have set the stochastics parameter setting to the extreme to show this.Does that indicator measure positive and negative or just a measure of strength, so if it is moving upwards from the lower to medium part of the chart for both a potential long AND short trade it is a strong sign?
And how would I create a filter for this?
Period = Param("StochK Period", 14, 5, 250, 1);
Rangeup = Param("StochK Range Up >", 90, 20, 80, 1);
Rangedown = Param("StochK Range Down <", 10, 20, 80, 1);
Criteriaup = C > Ref(HHV(C,25),-1) & C > O & H > MA(C,40) & V*C > 500000;
Criteriadown = C < Ref(LLV(C,25),-1) & C < O & L < MA(C,40) & V*C > 500000;
Buy = StochK(Period) > Rangeup & Criteriaup;
Short = StochK(Period) < Rangedown & Criteriadown;
Filter = Buy OR Short;
AddColumn (C,"Buy", 1.2, IIf(Buy, colorBlue, colorWhite), IIf(Buy, colorSeaGreen, colorWhite));
AddColumn (C,"Short", 1.2, IIf(Short, colorDarkRed, colorWhite), IIf(Short, colorOrange, colorWhite));
AddColumn (V,"Volume");
Is there any recommended reading on this that you can point me towards?
Does that indicator measure positive and negative or just a measure of strength, so if it is moving upwards from the lower to medium part of the chart for both a potential long AND short trade it is a strong sign?
And how would I create a filter for this?
You Dont need an oscillator to do this you can do it purely on price.
If price breaks through resistance or support for that matter with low to average volume it means No supply at resistance and No Demand at support.
Then of course there is the issue of identifying "meaningful" support and resistance
there are many ways of determining a support or resistance zone point or area---besides the standard pivot high/low.
Then of course there is the issue of identifying "meaningful" support and resistance there are many ways of determining a support or resistance zone point or area---besides the standard pivot high/low.
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?