You are missing trading opportunities:
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
Registration
Log in
You agree to website policy and terms of use
If you do not have an account, please register
Good afternoon, congratulations guilherme for your work.
I would like to know if you or someone can help me on how to release the buy and sell option on the Renko chart?
in the Demo or Real account it generates the error below, I have already used several tickets and it always generates the error.
in backtests it works fine
Has anyone experienced this and can you advise me?
You look at the renko and open orders on the standard chart (candlestick), it is not possible to open orders on the renko chart.
Congratulations to the programmer!
I've tested 3 RENKO charts so far, and this is the best I've found so far. Simple and straightforward.
However, I have a question.
I'm making an EA that uses this RENKO chart to know where to enter and where to exit. But I don't know how to implement it to know when a new box is formed.
If it were a temporary candle, I'd know by comparing the date of the current candle with the previous one. But RENKO is timeless.
I need to know when a new box is formed.
How could I implement this?
Cristiano M. Magalhaes
in the Demo or Real account it generates the error below, I have already used several tickets and it always generates the error.
in backtests it works fine
Has anyone experienced this and can advise me?
You run your robot on the RENKO chart. Your robot will use Renko to read entries and exits.
The functions for sending orders should be played on another symbol.
Example:
You have the symbol WING22. Then you generate the renko of that asset in a new window, forming WING22_8R (for example).
Your robot will play in the WING22_8R window, but the MQL5 functions that send orders will use "WING22" in them.
However, I had a question.
I'm making an EA that uses this RENKO chart to know where to enter and where to exit. But I don't know how to implement it to know when a new box is formed.
If it were a temporary candle, I'd know by comparing the date of the current candle with the previous one. But RENKO is timeless.
I need to know when a new box is formed.
How could I implement this?
Cristiano M. Magalhaes
Guys, Guilherme replied to me by email. He gave me this solution:
"You can play the opening timestamp in the volume"
I'll try it here.
You run your robot on the RENKO chart. Your robot will use Renko to read entries and exits.
The order despatch functions, you must play on another symbol.
Example:
You have the symbol WING22. Then you generate the renko of that asset in a new window, forming WING22_8R (for example).
Your robot will play in the WING22_8R window, but the MQL5 functions that send orders will use "WING22" in them.
Thanks for the tip
I added renko2offline to the chart, it creates the custom symbol, converts it to a renko(5r) chart, but after I add renko2offline there are no more ticks on the chart, it just stops.
Does anyone know why?
Another question, I'm developing an EA that needs the renko chart to validate the entries, but I can't use iCustom with this code, does anyone know how I could read the candle information with the renko chart?
I've inserted Bollinger Bands directly into the chart and it's fine... but when I insert the Bands (iBands) through the EA the values are different...
Has anyone noticed this?
iBands("WINM22",PERIOD_CURRENT,20,0,2,PRICE_CLOSE);