Forum

Renko Chart Backtest

Hello, is it possible to make a backtest with Renko charts where the prices of the Renko chart and the normal chart match

Renko Chart Backtest

Hello, is it possible to make a Renko chart backtest based on real ticks ? Because when you do a backtest, the Renko chart does not move, but a whole candlestick appears at once

I do not understand were the problem is

I have a source code here that is not working, however I don't quite understand the problem. According to the compiler it does not handle the two bool functions at the bottom. Low, high, open and close are not defined. I thank you already for the help

Exponential Moving Average of H1 on M5 without H1 data

Good day, does anyone know how to bring an Exponential Moving Average from H1 timeframe to M5 timeframe without using the data from H1, since you can read the opening price in the H1 chart on the M5 chart. Thanks in advance

MQL5 to MQL4 Error

Hello, I have rewritten the super_smoother_3 indicator which is a MT5 indicator in MQL4. But now the buffer is shifted to the left and the indicator also does not update when the trend is progressing. //+------------------------------------------------------------------+ //|

Why is this out of range????

for ( int i= 0 ;i<rates_total;i++) { double Buffer= iCustom ( _Symbol , _Period , "SuperTrendValues" , 0 ,i+ 1 ); double Buffer_1= iCustom ( _Symbol , _Period , "SuperTrendValues" , 0 ,i+ 2 ); if (Buffer>Buffer_1) { Blue_1= true ; Red_1= false ;

Change colors of an indicator in the code

Hello, I am trying to solve a problem, but I find it difficult. For example, I want the indicator to be blue only if the current buffer is bigger than the one before or exactly the same size. And red it should be only when the current buffer is smaller than the one before or exactly the same size

Indicator shows wrong values

Hi, I have rewritten an indicator from MQL4 to MQL5, but it is not displayed correctly. When I reload it, it shows different values than before. //+------------------------------------------------------------------+ //| Test.mq5 | //|

100pips Momentum_1.4 indicator for MetaTrader 5

Hello, does anyone know which two indicators make up the 100pips Momentum_1.4 indicator? One indicator is as far as I know the Hull Moving Average, but I don't know the other one

No arrows appear

Does anyone know what the problem is? No arrows appear. #property strict #property indicator_chart_window #property indicator_buffers 2 double UpArrow[]; double DownArrow[]; //+------------------------------------------------------------------+ //| Custom indicator initialization function