Rodrigo Santhiago Batista Dos Reis / Publications
Forum
Indicator Validation
Hello guys. Im trying to validate a indicator in mql5 market , but: test on EURUSD,H1 (netting) expert file MQL5\include\candlestickpatterns.ex5 open error [ 2 ] expert file MQL5\Indicators\include\candlestickpatterns.ex5 open error [ 3 ] program file include\candlestickpatterns.ex5 read error
A help with sending signals to EA
Sup guys, i hope u can help me again. i got this code. this is from the customindicator: void SendSignalsToEA( const int rates_total, const double &close_price[], int &buy_signal, int &sell_signal) { double ma = ExtLineBuffer[ 0 ]; if (close_price[rates_total - 1 ] > ma) {
'Ticket' - undeclared identifier
I hope someone have a solution: 'Ticket' - undeclared identifier its used here: if(!m_trade.PositionModify(m_position.Ticket(), newSL, m_position.TakeProfit())) also the trade.mqh and Ctrade m_trade; are ok, since im using in other parts of the code. but i got this error to compile, any idea? the