Expert Advisors and Automated Trading - page 279

Hi all, I am using an EA that is using Values from indicators of the last closed candle. So I expected that I can backtest it with using the "Open Pricy Only" Modelling because this is way faster. Specialy in the Optimazion. But the results made by this method are very different to the OHLC or the
Why most indicators that I put in graph stay with aleatory arrows when I alter symbol and change the timeframe in same window? Its any garbage that going accumulating in the buffers? Can you explain why it ocurrer? and what I can do to solve it? Thanks! Sample
I need an expert code that reads the bid price and stores it. When the next qoute appears, if the same price has not changed, an alert will be issued, and so on until this price changes every second
Hi, I have programmed a neural net backpropagation EA and just would like to share what I have learned and get some feedback hopefully from others. I've found that it works quite well on EURUSD and GBPUSD on higher timeframes but on other pairs it's not so good. The accuracy of the training is quite
Hi, I am new to Metatrader 5. I've got kind of a weird problem: I am using an EA which is working completely perfect when I attach it to the symbol ENQ. After detaching it and attaching it to the symbol DD, the German DAX future, it doesn't execute any trades. There is enough cash in the account
Hello, I want to save data between two starts of the same EA. I hesitate between using the Global Variables and an ini file. What solution do you use in general? Thank you, https://www.mql5.com/en/code/20842 https://www.mql5.com/en/docs/globals
I am using ctrade for my programming right now but as I want to expand my capabilites / possibilities, I am wondering if it is possible to set the position_id of an order? In the MqlTradeRequest struct there is the MqlTradeRequest.position member - is this there, so that my EA could set the
Hi, I did not see any example related to how to pass parameters to a .bat file. With the following code: ShellExecuteW( 0 , "open" , "start.bat" , "123" , "" , 1 ); I get the following error: Access violation read to 0x0000007B in 'shell32.dll' However, the following works when I do not pass any
Hi, I've created a custom EURUSD-M5 dataset which I've imported into MetaTrader 5 and want to use with the Strategy Tester. The data set loads fine into Metatrader without any problems or errors. The strategy Tester works fine with this data during the trading simulation processing stage. However
Hello Community, The problem is shortly explained on title. So I have this EA that basically acts as programmed (bug-free, optimised etc... took me some time but it goes VERY well). It is programmed to follow certain signals/arrows from an indicator. I need both Indicator and EA to be in existance
#include <Trade\Trade.mqh> //Create an instance of Ctrade CTrade trade; void OnTick() { //we calculate the ask price double Ask=NormalizeDouble(SymbolInfoDouble(_Symbol,SYMBOL_ASK),_Digits); //we calculate the Bid price double Bid=
Hi everyone, I am new to coding and was trying to make an EA just for Backtesting some CustomIndicators. It is a little Patchwork of all the Informations I was looking at: It is testing 28 currencys with one Indicator running over all of them on the D1-Chart. Well now I want to test it or want to
Hey there, I have a algorithm that I need to get information from the Bid/Ask book from two different stocks to trade them. The issue is, that I can run that algo in the function OnInit(), which requires me to keep replaying the EA. I would like to use the function OnBookEvent(), but when I try to
Good morning all, I have a small question, I have my EA that works very well with the strategy tester but in reality it has bug it does not open a position when it should. my question is that an EA works better with a powerful computer or the power has no influence. thank you all
Hi all, I usually download demos of EAs in order to test them and see how they perform in the strategy tester, most of the times they don't open and close a signle position. Can someone help me understanding why this is happening? Thanks in advance
I have an EA that draws rectangle on a specifically defined bearish pinbar followed by a bullish candle. Please see the code below. It basically shows the rectangle on the timeframe displayed on the chart. How can I search for this candlestick pattern on timeframes within an H1 candlestick down to
Somebody asked me to make an EA which can use the signals coming from an indicator. The problem is Indicator doesn't send any useful data as out put so I can't use iCustom. And it also doesn't draw anything on the chart so I can not work by its objects too. the only thing we have is the signals of...
  Compiling Errors  (3)
Hello guys. I am having a problem compiling this code. When I leave out the closing parenthesis I get only two errors. But when I include it I get 26 errors. Could you please help me by going through it and highlight for me anything that I may have missed? thanks! PS. "Createtline" is a function to
[Deleted]
int PORBullishBars(int i) { int POR_Bullish_Counter = 0; for(i = 1; i < Bars - 100; i++) { (this is 694 line where error occurs: '-' - open parenthesis expected if(Bullish_POR_LevelBuffer[i] != 0 && Bullish_POR_LevelBuffer[i] != EMPTY_VALUE) { POR_Bullish_Counter = i; break; }
Hi, I have an EA running on remote desktop. The EA keeps getting upgraded from time to time. What is the best way to push the new version of the EA to all the remote desktop also loaded them on a new chart programmatically
I'm starting to experiment a bit with a neural network library in MT5. The library has some handy load and save methods which are useful to retain the network weightings between separate runs of the EA. I'm about to implement the load/save functionality but this leads me to my problem; Normally EAs
Hi everybody, Im developing an EA, but i' having trouble at understanding how I can get the value of the RSI at the current Tick. Im using the iRSI function, and I'm able to get values out of it. The problem is that I need the RSI value of the current tick and not of the last closed bar. Do you know
[Deleted]
Hi all, I ran optimization with MQL5 cloud network and I got this error: OnInit returned non-zero code 1. Can someone help me? Full log at: 2020.06 . 19 20 : 36 : 33.874 Tester Experts indicator and trend 23 .ex5 on EURUSD,M5 from 2020.06 . 15 00 : 00 to 2020.06 . 19 00 : 00 2020.06 . 19 20 : 36
Hi all, What's the best way to find the length of a trend in an oscillator? For example when macd moves below zero for 4 bars the length of the trend will be 4
I want to use the bollinger bands as normal, just with one exception: For the newest, the current candle, the bollinger bands shouldnt move as the price changes. I want to set a certain value, and the bollinger bands should form as if this value is the price of the current candle. Is that possible
If I cannot do it from same platform then I need to have 2 MQL5 accounts and being log-in from 1 MT5 platform to 1 account and from another platform to the other account? Is there a more simple solution? Thanks for your answers
Please I'm a beginner in python programing language and my mission is to create a trade copier for MT4. So I want to know if it is possible to use python and create mql file
Hello I'm building multiples EA for EURUSD, but there are some conflicts when they open a posiition. How can I filter to see if my current EA with magic number x have a open position? PS: There are more than 3 EA's. I didnt put all together because I wont be able to backtest . if (temosNovaVela
Hello there.. I'm new in MQL5. I'm planning to migrate my MQL4 file to MQL5. I wanna create objects that exactly point to price and time like DASH SYMBOL in MQL4 that are not supported in MQL5 anymore. I just found 2arrows that do that things in MQL5: OBJ_ARROW_LEFT_PRICE, OBJ_ARROW_RIGHT_PRICE I...
I paid for a new EA, but I can't install it. It appears a button saying "install" but I the button doesn't work. What shall I do? Shall I return the EA