Expert Advisors and Automated Trading - page 229

Hi I have subscribe to a signal and its opening multiple trades when the signal only opens one. Its also opening lots way to big than set in the settings. The signal provider is on the same broker as me. At the time of trade opening his account balance was $500 and mine was$1300, I have set my
Hi, I've written a piece of code that creates a linear regression object on the chart based recent swings. I then need to use the values from the upper and lower channel in my trade criteria. When I run it in visual backtest mode, everything works fine. When I turn off the visual mode, it stops
Hi there. My EA (a kind of grid) is start to trade with 0.01 lot but Market requires that it must open trades on every symbol and every broker. 1. If I don't trade, if the minimum lot of the symbol is higher than my trade than I get "No trade operations" error in validation. 2. If I try to trade
Hi All, My signal is not yet strong enough to be shown in MT4. However i have some friends and they want to subscribe to my signal. Is there a way for them to subscribe to me and copy my trades? Even if the signal is not to be found in MT4 terminal
I am subscribed to a sign.al provider but i am not included in his trades. I can see from his records that he traded 19 hrs ago but i haven't seen him for four days. Please advice how to contact him
Hi guys, Would someone be kind enough and tell me how long I should be prepared to wait for an EA that I have already paid for in full via MQL5 community? My understanding is that the minute the funds are transferred, the EA becomes available immediately for one to use. I tried to register the EA I
Hi guys, My BE Stop doesn't work, trying to find ... :( Please help Best regards BE Stop doesn't work#include <Trade\trade.mqh>CTrade trade;void OnTick() { double Balance=AccountInfoDouble(ACCOUNT_BALANCE); double Equity=AccountInfoDouble(ACCOUNT_EQUITY); double
Hi , i have an own ea , its working on monthly 30% to 50% , so am sell my ea , so how to set password , like , my ea are buy 1 person , use 1 account and 1 person only , don't set unlimited accounts , Please help me
Dear all, In MT4 we were able to hard set for example a max of 10% equity DD for the optimization process. In MT5 they do not have a direct feature for this so I was figuring out how to code it. Right now I have been using the following code but getting an error. "Genetic pass 0,506) tested with
Hi, Here is the code : //+------------------------------------------------------------------+ //| LearnCAppDialog.mq5 | //| Copyright 2018, MetaQuotes Software Corp. | //|
Hi Guys,I am looking for an EA on MT5 that is capable of auto closing any open order when a profit amount is reached. I can only find some for MT4 Any help would be greatly appreciated
Hi, Please help me with this I dont know how to fix it. double OnePip = 0; if (TradeSymbol == "JPY") {OnePip = 0.001;} else OnePip = 0.00001; This gives me at non JPY pairs OnePip = 1e-05 How can I convert 1e-05 to number 0.00001 for calculations ? if (OnePip == 0.00001) {Calc_Lot =
Hello guys. Iam trying to achieve increasing lot size for future order (long or short) when current order (long or short) is in negtavie profit. There can be maximum of two current orders in the same time. I've got so far: double LotSize=0.01;bool CanOpenBuy=true;bool CanOpenSell=true;void
Dear all, I have been able to retreive the swap fees from a closed deal using this little code: void OnTradeTransaction( const MqlTradeTransaction& trans, const MqlTradeRequest& request, const MqlTradeResult& result) { ulong dealTicket = trans.deal; if(dealTicket != 0) {
The code works in strategy tester, but when using in real trade, I get Error 4756 (Trade request sending failed) and retcode 10006 (Request rejected). Anyone has any idea why this could not work? the SYMBOL_FILLING_MODE is 3 and the SYMBOL_EXPIRATION_MODE is 2. I can buy and sell normally if I use...
[Deleted]
But are we really sure that the funds deposited on the signal providers are real? These figures are far from credible. I believe there is a way to fool MT4... This provider have 3 signal, with total funds more then 100 MILLIONS . And he need to sell signal at 30USD? FAKE
Hi, First, I am an algo trader not a programmer. Saying that, I am using multiple EAs to execute multiple strategies. I called API EA because it is the best definition to my knowledge that describe what I want to achieve from this EA so forgive me if my definition is not accurate :) Saying that, I
  I need an EA  (5)
The idea of the trading system is as follows
Hello all, New user here and i've just subscribed to a signal, however i get the following message in my 'Journal': ...: Signal - connecting to signal server ...: Signal - symbol archived not found ...: Signal - different specification of symbol EURUSD, signal provider has maximal volume 1000.00
Hi, I am new to coding in mql4. Can somebody tell me how do you take the variable that tell if the expert advisor will send only short orders, only long orders or both(the one from Common tab)? Thanks
{ OrderClose(OrderTicket(), Lots, Bid, Slippage * Gd_156, CLR_NONE); continue; }
Hi, I'm new to both Metatrader and BO trade and I'm struggling in one specific point. How do I get the payout information to provide for the EA? The only way that I found was through the MT2Trading platform. From what I understood about it, it's supposed to allow me to create any EA I want for BO
Hi I'm sure there's an article out there but I can't quite find the appropriate reference. In the documentation for OnCalculate()(https://www.mql5.com/en/docs/event_handlers/oncalculate), for the price[] parameter, the documentation mentions "One of the price timeseries or a calculated indicator
Dear experienced traders, I ran an EA for around 1 month, and I did a back test for last 1 month. What I find is the back test result is different to real trade history. The author's ac and both of my friends ac didn't get the trade which shown on the back test result. I have no idea how could it
Good morning, I have tested a robot and I would like to test it live without risking real money with the MetaQuotes Demo account, I have virtual Balance but the Diary keeps posting "Trade Disabled"... Any help would be very appreciated, thanks in advance! -- S-
Hey, ive developped a simple EA based on ema's cross-over strategy and, even if i noticed a good efficiency reading these indicators on live market, ive tested my EA on XM MT5 with the backtesting to figure out that the results are pretty bad, because of opening trades when it shouldn't be the case
Hello Everyone, Please I am still learning to code EA with MQL5 language however I wrote a code that involved selection of closed orders. There was no error when I run it but during implementation the EA failed to open buy order while opening of sell order was okay. The position select for sell is
Hi, everyone, I'm a programmer and I normally consider I know a lot of MT4 and MT5 already, but encounter something new today. I have a new project that potentially can have thousands of inputs, client insists to define parameters as inputs compared to other means. I don't think I know of a limit on
Hi there, I am trying to established connection between MetaTrader 5 and Python using socket. Server part written in python and client part written in mql5. also client is Expert Advisor not a indicator. problem is when i run both server and client ,client gives me "error 4014". I'm very thankful if
Dear experienced traders, I'm planning to run several different EA in one ac. I want to run them in fixed-lot and in a relatively large balance. Could you list up any reason EA could affect each other? Thank you in advance and best wishes, Sky