- Search Energy EXCH
- 3,858 Results (90 Threads, 3,768 Replies)
-
Ronald Raygun replied Feb 18, 2010Do you mean something like this? image
I'm New Here, need help with a price action idea
-
Ronald Raygun replied Feb 18, 2010Let me guess... When two MAs cross: Up: Set a pending order x pips above the candle high where x is 1/2 the distance from the high to the low. Down: Set a pending order x pips below the candle low where x is 1/2 the distance from the high to the ...
Any hlep me improving my EA
-
Ronald Raygun replied Feb 18, 2010Lab Access => Download page for other robots, right?
Forex Robot World Cup?
-
Ronald Raygun replied Feb 18, 2010Not total wick removal (Dojis still show wicks) Press F8 Set Bar Up and Bar Down to "None"
Wick removal possible?
-
Ronald Raygun replied Feb 18, 2010Make these variables global double CurrentTick; double PreviousTick; start() PreviousTick = CurrentTick; CurrentTick = Ask;
Seemingly Easy MQL4 Question
-
Ronald Raygun replied Feb 18, 2010You can use strings: if(TimeCurrent() >= StrToTime("07:00"))... You can use current hour: if(Hour() == 7)...
Time > 08:00
-
Ronald Raygun replied Feb 17, 2010Agreed, I hate when trading systems are moved to the rookie forum. They get mixed in with the rest of the rookie stuff.
SRS - Simple RSI System
-
Ronald Raygun replied Feb 17, 2010Look at any of my [TD] EAs. There is a function called "TickData" Web communication is all there.
Safely password protect your work?
-
Ronald Raygun replied Feb 17, 2010In live trading, HiRider had relatively large floating losses.
Forex Robot World Cup?
-
Ronald Raygun replied Feb 17, 2010Set your terminal to "Run as administrator"
FileOpen in Windows 7
-
Ronald Raygun replied Feb 16, 2010bool CheckPreviousTrade() { datetime CheckTime = 0; for(int I = OrdersHistoryTotal(); I > 0; I--) { OrderSelect(I, SELECY_BY_POS, MODE_HISTORY); if(OrderOpenTime() > CheckTime) { CheckTime = OrderOpenTime(); } } if(iBarShift(NULL, 0, CheckTime, ...
Help: program mt4 EA to check trade previous bar
-
Ronald Raygun replied Feb 16, 2010$999 for EAs 1-8. (One time payment) $599 x 2 (Two payments) They need to sell at least 150 packages to make the prize money back. Tack on another maybe $100,000 for the website, account funds, paying people to test the EAs, programmers... Assuming ...
Forex Robot World Cup?
-
Ronald Raygun replied Feb 15, 2010Fusion is exactly as it says. They took the trading logic of the top 5 EAs and merged it together.
Forex Robot World Cup?
-
Ronald Raygun replied Feb 15, 2010Don't distribute the code. Simple as that. If you want to go the more complex route... Don't put the logic in the .ex4 file. It can easily be decompiled. Put it up on your webserver and just have the indis feed data to that. As for logging IPs, make ...
Safely password protect your work?
-
Ronald Raygun replied Feb 15, 2010EA uses "stealth pending orders". That way, the broker doesn't see the straddle.
Generic Breakout V5
-
Ronald Raygun replied Feb 11, 2010Relative drawdown is a ratio between the maximal drawdown and the value of the corresponding local maximum of the equity. This coefficient shows losses, in percents of equity, experienced by an Expert Advisor; Maximal drawdown is the maximal ...
MT4 Relative Drawdown
-
Ronald Raygun replied Feb 8, 2010If I let the users host their own EA, what's stopping them from interfering with an EA's trades?
Forex Robot World Cup?
-
Ronald Raygun replied Feb 8, 2010I did explore this route. There were a few concerns: Developers don't want to send the code, so it's a bad idea to ask for .ex4 and .mq4 files. Allowing users to trade using their terminals at home might give an unfair advantage to people who trade ...
Forex Robot World Cup?
-
Ronald Raygun replied Feb 8, 2010It's not difficult to port the mql code to C+ for example.
Forex Robot World Cup?