Trading Systems Leaders in this forum (automated trading systems) are winning more than 3000 pips in a month (30000$ investing one lot every time). Click here to register and get more information
I am getting this error message when compiling, referencing a couple of the functions:
“no dll defined for the imported function”
I have tried moving the function way up in the EA, to check for earlier syntax errors, but no change.
Since the EA does not use dll's, and the functions are similar to other functions that do NOT get an error message, I don't have a clue.
Can any gracious coder/FxPro trader kindly figure out why I can't use this EA on FxPro's MT4 platform. I just can't seem to get EA to open a single trade for the life of me even with the default settings after many days.
FxPro uses the 5-digit format for their price and I've been wondering whether it's the reason. Can this be modified in the code? Someone pls help, it's slowly driving me nuts. Thanx in anticipation
The five digits is critical.
Mr Pip posted a solution some time ago.
"mypoint" would be a search term.
I wrote an indicator, and have an alert option, and when the Alert() is turned off, it prints a Comment() in the experts log.
I only want to know if the condition exists(give an alert) on the actual Close of the bar, which would be Close[i+1] I thought...
However, when I run the indicator with the Alert() on, it gives me multiple alerts on the current bar while the condition is happening, and generates too many alerts.
My log file for only a couple of hours was over 35mb!
How do I fix this problem?
Please see the attached indicator, which identifies a trend continuation pattern. ( described on a trader's website: 9/30 Setup )
I wrote an indicator, and have an alert option, and when the Alert() is turned off, it prints a Comment() in the experts log.
I only want to know if the condition exists(give an alert) on the actual Close of the bar, which would be Close[i+1] I thought...
However, when I run the indicator with the Alert() on, it gives me multiple alerts on the current bar while the condition is happening, and generates too many alerts.
My log file for only a couple of hours was over 35mb!
How do I fix this problem?
Please see the attached indicator, which identifies a trend continuation pattern. ( described on a trader's website: 9/30 Setup )
Great forum :-)
I would like to know, I use money management to calculate lot size in my EA's, up until now my base currency has always been USD but could someone provide some code to calculate lot size if base currency is not USD, for example EUR etc ? Thanks in advance !
I`m quite new to forex trading as well as to coding in MQL4. I need help in setting up ordersend for SellLimit orders and BuyLimit orders. This is my code but I keep getting a Ordersend error 130 or 3. I don`t know what is wrong with the code.
if (Bid <= LowEnvelope) {OrderSend(Symbol(),OP_SELLLIMIT,lotMM,Bid-EmergencyProfit*Point,0,0,0," Sell Limit Order",MagicNumber,0,Orange);}
I just want to take the opportunity to say thanks to all the people whom make this forum possible and to all the other traders who are willing to share their knowledge freely with every one else. Thank you, I have learned quite a bit and still feel like I know nothing.
I`m quite new to forex trading as well as to coding in MQL4. I need help in setting up ordersend for SellLimit orders and BuyLimit orders. This is my code but I keep getting a Ordersend error 130 or 3. I don`t know what is wrong with the code.
if (Bid <= LowEnvelope) {OrderSend(Symbol(),OP_SELLLIMIT,lotMM,Bid-EmergencyProfit*Point,0,0,0," Sell Limit Order",MagicNumber,0,Orange);}
Please can someone Help me? Thank You
Price for SellLimit order should be higher then real price, not lower.