The most stable scenario for renko or crb is to modify the EA to check the m2 chart for its calculations. This way, you can drop the EA on a regular chart and have fairly good insurance for it to work.
The only difference you will need to implement is the custom indicator calls. For example, the usual icustom(Symbol(),0,"indicator",....... would be replaced with icustom(Symbol(),2,"indicator",.......
Also, all calls to High[],Low[],Open[],Close[], etc will be replaced with iHigh(Symbol(),2,x), where x is the candle number. Additionally, it is required to have the m2 offline chart open at all times, with the m1 chart generator software running continuously at all times.
|