Not clear what you are looking for..... do you have any question?
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Strategy problem with renko bars
Collapse
X
-
-
This vwap strategy works very well in ut minute, hours or volume...
But the vwap strategy doesn't work very well with renko bars,
- with renko, this Is a never ending strategy... It is still running after targets without new trade's signal.
- the strategy takes more entry than i program...
It will be great if the strategy :
- could take profit or take loss. With no more entry than i expect.
- then stop until new trade's signal
I think the problem is here :
When I deleted this one : (vwap.vwapSeriesBearish[0] == true && vwap.vwapSeriesBearish[1] == false)Code:if( (vwap.vwapSeriesBullish[0] == true && vwap.vwapSeriesBullish[1] == false) || (vwap.vwapSeriesBearish[0] == true && vwap.vwapSeriesBearish[1] == false) ) { bSuspendTrading = false; }
I can take a long trade without problem.
Thank for your help !Last edited by ghost121; 10-08-2015, 09:39 AM.
Comment
-
I use this strategy (vwap)
and this indicator .
I know the issue with renko bars, its not a problem with my strategy, because I use another indicator and time filter to take the trade.
Comment
-
I do not understand what bSuspendTrading is doing. When the session starts, it is set to false. With the first trend change of the VWAP filter it also set to false. Then it remains false forever. So it is not needed? You would get quite a few long and short entries.Originally posted by ghost121 View PostI use this strategy (vwap)
and this indicator .
I know the issue with renko bars, its not a problem with my strategy, because I use another indicator and time filter to take the trade.
However, your main problem is related to the use of Renko bars, because you are trying to do what cannot be done. The open price of a Renko candle, which is used in backtest has nothing to do with the real market price when a Renko bar is plotted. Therefore mechanically you will get false results when running a backtest.
You try to do something that cannot be done. There are numerous threads explaining why you CANNOT BACKTEST RENKO BARS. Simply read them. I am not going to explain it again.
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Geovanny Suaza, 02-11-2026, 06:32 PM
|
0 responses
600 views
0 likes
|
Last Post
|
||
|
Started by Geovanny Suaza, 02-11-2026, 05:51 PM
|
0 responses
347 views
1 like
|
Last Post
|
||
|
Started by Mindset, 02-09-2026, 11:44 AM
|
0 responses
103 views
0 likes
|
Last Post
by Mindset
02-09-2026, 11:44 AM
|
||
|
Started by Geovanny Suaza, 02-02-2026, 12:30 PM
|
0 responses
558 views
1 like
|
Last Post
|
||
|
Started by RFrosty, 01-28-2026, 06:49 PM
|
0 responses
558 views
1 like
|
Last Post
by RFrosty
01-28-2026, 06:49 PM
|


Comment