I have an idea for a tool that analyzes Renko. For every trade (according to an indicator giving trade signal) in a historical range of time, I will test how many bars were positive in the direction of the trade. The output should be counted as number of positive bars in the trades during each hour of the day. There can of cause be more than one trade during the hour.
It is an Expert Adviser. Renko is of cause not time based.
This code identify the number of bars in the chart:
How can I identify the hour of the day for each Renko bar?
It is an Expert Adviser. Renko is of cause not time based.
This code identify the number of bars in the chart:
Inserted Code
int NBars = Bars;
Print ("NBars: " , NBars); How can I identify the hour of the day for each Renko bar?
Inserted Code
int counter=1;
for(int i=1; i<=Bars; i++)
{
// Print the hour of the day for this bar.
} MetaTrader 4 - so many advantages.