Welcome to Forex-TSD!, one of the largest Forex forums worldwide, where you will be able to find the most complete and reliable Forex information imaginable.
From the list below, select the forum that you want to visit and register to post, as many times you want. It’s absolutely free. Click here for registering on Forex-TSD.
Exclusive Forum
The Exclusive Forum is the only paid section. Once you subscribe, you will get free access to real cutting-edge Trading Systems (automated and not), Indicators, Signals, Articles, etc., that will help and guide you, in ways that you could only imagine, with your Forex trading.
Elite Section
Get access to private discussions, specialized support, indicators and trading systems reported every week.
Advanced Elite Section
For professional traders, trading system developers and any other member who may need to use and/or convert, the most cutting-edge exclusive indicators and trading systems for MT4 and MT5.
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.