- Search Metals Mine
-
Ronald Raygun replied Aug 25, 2008int OrderSend( string symbol, int cmd, double volume, double price, int slippage, double stoploss, double takeprofit, string comment=NULL, int magic=0, datetime expiration=0, color arrow_color=CLR_NONE)
Close pending order in X time
-
Ronald Raygun replied Aug 25, 2008Doesn't look like it. Most people talking about their EAs only backtest them, not forward or live-trade them. As for your MM suggestion: I don't see why it won't work.
Use Backtesting for MM ...
-
Ronald Raygun replied Aug 25, 2008If that's the case, set EachTickMode to "False"
Paulus - Traffic lights
-
Ronald Raygun replied Aug 25, 2008How do you know your backtest is accurate and your EA robust?
Use Backtesting for MM ...
-
Ronald Raygun replied Aug 25, 2008The current + 0 in the 2nd line was changed to current + 1.
Paulus - Traffic lights
-
Ronald Raygun replied Aug 25, 2008EA's definitely working. Did you change the lot size from 0? Changed the CCI to 8.
Paulus - Traffic lights
-
Ronald Raygun replied Aug 24, 2008It's true that those actions were huge, but what caused those actions? And more importantly, could you have taken advantage of them? I saw a lot of gaps in the 1M chart whenever an exchange is closed for a day. Gaps generally mean unpredictable ...
Will London be open on Monday?
-
Ronald Raygun replied Aug 24, 2008Ok, so as I understand it: Take the 15 min CCI chart. If CCI is greater than 0 look for long trades. If CCI is less than 0 look for short trades. On the 5 min chart: If the 15 min CCI is up, and the 5 min CCI changes from below 0 to above 0, place a ...
Paulus - Traffic lights
-
Ronald Raygun replied Aug 23, 2008I believe today is saturday (in America at least) Also, simply because there is a bank holiday doesn't mean that there is no trading. There is merely lower liquidity.
Will London be open on Monday?
-
Ronald Raygun replied Aug 23, 2008Doesn't look like it: All Day GBP image Holiday: Summer Bank Holiday UK banks will be closed in observance of the Summer Bank Holiday. Low liquidity is expected for the London Forex session.
Will London be open on Monday?
-
Ronald Raygun replied Aug 23, 2008Actually, metatrader's strategy tester has a visual mode. The check box for visual mode is in the lower left corner.
Strategy Tester
-
Ronald Raygun replied Aug 23, 2008A negative spread trade will work on any pair that has a negative spread. The broker will always be a tricky part and in my opinion: they all cheat in one way or another. You just need to find one which cheats the least. Generally speaking the Ask ...
What are the most consistent EAs ?????
-
Ronald Raygun replied Aug 23, 2008The concept works assuming a few things: Instant fill No broker interference No broker retaliation
What are the most consistent EAs ?????
-
Ronald Raygun replied Aug 23, 2008Backtesting won't work on this one. I have never seen spreads change on a backtest. When the spread is negative, you automatically make money whenever you open and close a trade. This EA looks for that.
What are the most consistent EAs ?????
-
Ronald Raygun replied Aug 23, 2008Ok, I got it. Thanks Pippero.
Why is my code not creating multiple objects?
-
Ronald Raygun replied Aug 23, 2008The only trading system which I know of that has 100% win rate forever is one that trades when the spread is negative. An EA for that is really easy.
What are the most consistent EAs ?????
-
Ronald Raygun replied Aug 23, 2008Here is the MM code that I use (modified from Azmel's version): //Money Management sequence if (MoneyManagement) { if (Risk<1 || Risk>100) { Comment("Invalid Risk Value."); return(0); } else { ...
MM EA code help
-
Ronald Raygun replied Aug 23, 2008Does each object need a different name? And how should I go about assigning unique names for each object?
Why is my code not creating multiple objects?