Expert Advisors and Automated Trading - page 200

HI EVERYONE i used DT OSCILLATOR in eabuilder.com to create a custom indicator but no matter what i change it doesn't show any buy or sell arrows any one knows whats the issue? OR just send me a dt oscillator with alert code please help me its very important to my strategy i attached both DT
Hey Guys, I want to get the ticketnr. after I opened a position to be able to work with it (close it) later. if (instruction == OpenLong) { double entry = SymbolInfoDouble ( Symbol (), SYMBOL_ASK ); if (trading.Buy(EAVolume, Symbol (), entry, 0.0 , 0.0 , "EA" )) {
I set up a free signal, but was disabled due to too many pending orders. Now this is the issue. Each day there will be a max amount of pending orders, 210 that figure can never be more or less, as old orders are cancelled before new ones are placed. Only a small % of each days orders are excecuted
I'm new in the vps EA thing, i still cannot win migrating charts onto vps, No error message , even when i cant see to check on the expert advisor window. need help to configure. its not Mql5 VPS
<Deleted> Moderator's note: If you want to share an EA or indicator in the forum attach the mq4 source code file
Hedge and set stoploss and takeprofit for ecn account; I do not know how to code .Someone can help me
<Deleted> Moderator's note: The place for your request is Freelance . The forum is for discussion about trading, strategies and coding for MT. Recommendations/promotions/advertising are not allowed
Hi, I get this strange behaviour after running the strategy tester. Trades and deals are correctly performed, however, the report is empty, or containing "Inf" values. What could be wrong
Hi, I need help to understand why do I get [No prices] and [off quotes] returns when opening a position at market price, and the symbol ENUM_SYMBOL_TRADE_EXECUTION is SYMBOL_TRADE_EXECUTION_EXCHANGE. 2021.01.05 10:17:40.203 Trades '999999': failed exchange buy 1 WING21 at market sl: 117900 tp
hi this code doesn't work. does not take any action. I would appreciate your help. ObjectCreate ( _Symbol , "Dik" , OBJ_VLINE , 0 , TimeCurrent (), 0 ); ObjectSetInteger ( 0 , "Dik" , OBJPROP_TIME , TimeCurrent ()); ObjectSetInteger ( 0 , "Dik" , OBJPROP_WIDTH , 2 ); ObjectMove ( _Symbol , "Dik" , 0
hi, i have a problem with my ea: summarizing opens a market position and a limit after finding the signal on the average. the signal finds it even if the smile :( appears at the top right of the chart, the problem is that it does not open orders because it is automatically removed from the chart
I'm looking to find/create/buy an EA that will change a pair shown as (for example) EURUSD_SB on MT5 to simply EURUSD . Before I spend loads of time trying to figure that out my first question is... can I run an EA at the same time as following an MQL5 signal? Cheers
Hi folks, I would like to select in Deals or Orders History any symbol that begins with "EUR" letters. Even if my EA is on " EURUSD " chart, I would like to get "history deals" from "EURCAD" for example, or any symbol that begins with "EUR..." The following is my code to select only the Symbol on
Hi all, I developed a simple trading strategy that relies on an indicator signal and currently forward-test it on a Demo account. When comparing forward and backtest results, I get almost the same results but only when backtesting visually. In non-visual mode, the results are different. After
helo I am facing a very weird problem and I dont know how to work around it. basically I have created an expert and I want to debug it, so I have compiled it with zero errors. When I test it using the strategy tester it does run it ok without any problems. But when I try it using the metaeditor...
yesterday it was still okay. Today i wanna access market and signals in MT4, i received a message Failed to connect server www.mql5.com sonetimes with MQL4 Market failed to connect to www.mql5.com:443 failed
Hi everyone, I've read somewhere in the internet that EA that run solely using indicators is not a good EA and people should avoid using it. Since I'm new to EA, anyone can explain to me is it true about that statement
hi what is the different between relative drawdown and maximal? its look like both calculate same and give a same result
Hello everyone, I'm trying to convert some part of my MQL4 code to MQL5 code. After reading the documentation, I still have trouble understanding some things. Can you tell if the following code do the same things MQL4 version: void historyMQL4(){ for ( int z=OrdersHistoryTotal(); z>= 0 ; z--) {
Hello I need Help. I have An EA <Deleted> but I have a problem. Draw down is 70% no multiplies are used the test was made at MT4 using the data of tickstory data. so it was 99.9 accurate. Is there any possibility that the results is wrong ? Is mt5 is more accurate and should I use tickstory data
hi every one I write below code in expert to show current candle time in chart and it works in all time frame M1,M3,M15,.... void OnTimer() { long time=TimeCurrent(); long ekh=(Period()*60+Time[0]-time); if(Period()==1) Comment(ekh," s"); else
Hi there, I'm having issue when trying to trade symbols with different settings built into a multicurrency advisor . This is the way I've coded the "solution": for ( int s= 0 ;s< SymbolsTotal ( true );s++){ string SName= SymbolName (s, true ); if (ManageAll== false ){SName= _Symbol ;}
Hi If i have a trading i had deposited $1000 but now i have $320 indide. And i want to set the signals to calculate $320 balance. If i set it to 95% It calculate from 1000 or available 320
I purchased a VPS from mql5 and have it synced up with my EA as pre instructions and made sure that the auto trade is activated. I also have the same EA activate on a demo account with the same broker but my EA on the demo account issued a buy but nothing is happening on the one on VPS. Anyone know
Hi, Can anyone tell me how accurate is back test for past result (Not future result). I know bast performance do not guarantee future result. So, here i am asking about a past result. I made a back test for EA (Oct 2020) and the result is in negative but the developer of EA said me back test provide
Hello. Can someone help me out here. I'm trying to store the OrderTakeProfit() in an extern variable. Most of the time it work's fine. but sometime the value is something like 1.325329999999999999. How do i prevent the 9999999999 to get stored
The owner of the expert advisor does not want to sell anymore. When the product is discontinued, can the previous purchasers continue to use the product
Hello, I have an EA which works fine but when it hits the stop loss it exceeds it and takes more profit. which is quite unusual for the EA to do that. Even though the take profit and stop loss has been set. The image below is a perfect example of what am saying. I really need assistance
My expert advisor compiles fine, but wont load on the tester. I created a second EA that used ChartIndicatorAdd() thinking that may be the reason the indicator isn't loading properly but same results. It is an unusual indicator because it has a user-defined starting point to calculate the signal