SuperTrend Strategy – Trendless Market Detection
Forums › ProRealTime English forum › ProOrder support › SuperTrend Strategy – Trendless Market Detection
- This topic has 5 replies, 2 voices, and was last updated 8 years ago by Nicolas.
-
-
04/05/2016 at 10:28 AM #4882
The SuperTrend Indicator works very well as long as there is a trend but it will throw away it’s profit in a quiet market, I’d like to run the strategy 24×5, so I’m looking to define a trendless market and make an indicator, such as..
123456789HighPoint = highest[10](high)LowPoint = lowest[10](low)if HighPoint - LowPoint <10 thenNoTrade = 1elseNoTrade=0endifreturn NoTrade AS "No Trade"The problem is that will stop the market from trading until after a move has taken place and the market range has increased above the minimum (i.e. 10 points)
I’m talking about quiet fast chart resolutions (less than 30s), with which the normal Strength and Momentum indicators don’t seem to work as well.
Is there any other solution to the problem?
Regards
Steve
04/05/2016 at 12:06 PM #4884Hello Steve,
Indicators need informations to be drawn, so price must be out your range boxes before giving you a useful trigger to relaunch trades operations.
Maybe you should use another strategy into your strategy whenever the market is ranging, defined by your high/low boxes. Breaking out those boxes is obviously nothing else than testing if price has piercing their highest and lowest values.
04/05/2016 at 12:15 PM #4885Thanks Nicolas, I think a confirmation from a slower SuperTrend would help (i.e. if running 5s, get trend confirmation from 30s/1m), is it possible to do that?
This thread http://www.prorealcode.com/topic/multitimeframe-indicator/ suggests to me it it possible.
Regards
Steve
04/05/2016 at 1:01 PM #4887That’s a good idea. I were thinking of that in a first instance. It is somehow often more reliable to stay in position than exit while in profit, in trend trading because of market whipsaw.
Though be aware that you cannot do autotrade in less than 1 minute timeframe in ProOrder.
04/05/2016 at 2:59 PM #488804/05/2016 at 4:08 PM #4889 -
AuthorPosts