| New signals service! | |
|
|||||||
| Register in Forex TSD! | |
|
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 |
|
![]() |
|
|
LinkBack | Thread Tools | Display Modes |
|
|||
|
Really, I don't know how to do that.
If nobody give you an answer here, maybe you should ask on the Metaquote's forum. If you just want to execute a .exe, one method (not very elegant) is to call it instead of the alert.wav Last edited by Michel; 04-25-2008 at 03:12 PM. |
|
|||
|
What is wrong with this?
I am trying to get the max and min values of an indicator over the full date range of a chart.
This looks like it should work, but it doesn't cover the whole chart, the "Bars" printout gives a number far lower than the bars in the chart, even if the backtest date range covers the whole chart. I call it from init(). Why doesn't it work? double ATRMin = 99999; double ATRMax; void ATR_HL() { for (int i=1;i<Bars-251;i++) { double ATR1 = iATR(NULL,0,250,i); if (ATR1 < ATRMin) ATRMin = ATR1; if (ATR1 > ATRMax) ATRMax = ATR1; } Print ("Bars ",Bars," ATR1 ",ATR1," ATRMin= ",ATRMin," ATRMAX ", ATRMax); return(0); } |
|
|||
|
Expert Build
Hello out there,
Would anyone be so kind to build an EA for me for my trading system? I have a trading system I want to build an EA for and I have been learning all the while on how to go about building the EA. I have tried all efforts to get the EA running but I needed to add some codings like trailing stop, proper money management according to account margin, use pending orders to place orders after the close of a candlestick, it must work on all currency at once i.e. trade 14 major currency pairs at once. Take Profit should be included and every 30M trade must be trigerred. Keep all pending orders until there is a reversal in trend. Can anyone let me know the possibility of such an EA? It will also be comparing indicators on 2 different Time Frames. If anyone can give me codes that can perform all these functions I will appreciate it. |
|
||||
|
Quote:
__________________
|
|
|||
|
hey
Sorry about that. I don't actually know where exactly to post it since this is a very big website.
Sorry about. I discovered all other posts have been deleted and I guess this is just the perfect place to post. Sorry for the problems. |
|
|||
|
I think you should have a solution here : MetaTrader FTP client!
Quote:
|
|
||||
|
Quote:
Thanks, I'm the #7.ERROR: The handle is invalid ![]() |
|
|||
|
How to code ?
Hi all,
who can think of the program ? - if Buy-Signal : open Buy-Order 1; 2; 3; ( I must wait if I will open several orders ? wait or sleep ?) - if Sell-Signal : close Order 1 - if Sell-Signal 2 && close Order 1: close Order 2 & 3 Send PM? Thanks derumuro |
![]() |
| Bookmarks |
| Thread Tools | |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| How to code this? | iscuba11 | Metatrader 4 mql 4 - Development course | 1 | 08-03-2007 04:22 PM |