- Search Energy EXCH
-
Oksana17 replied Dec 3, 2008Isn't that just MACD?? Difference between 2 MAs?? PM me. I would love to know.
[Indicator] Difference between 2 Mas
-
Oksana17 replied Dec 3, 2008I'm not sure if I understand your question fully. The EA needs to wait for a tick in order for it to come back into the start() function. But there are possible ways of making it stay in the start() function for a long time, but most likely you'll ...
EA and ticks
-
Oksana17 replied Dec 2, 2008well the EA DOES trade only in a sequence of buy, then sell, etc.
10K to 9 Million and yet .......
-
Oksana17 replied Dec 2, 2008Why won't you guys just use the OrderClosePrice() function? Why MODE_BID and MODE_ASK? That's just extra coding, am I right? I always use OrderClosePrice(), and everything is working fine all the time. What's the point of you guys using ...
Close all my trades
-
Oksana17 replied Dec 1, 2008I like your tip. The tip will cause me to make my account 0. lol.
Squidster's Stupid Strategy (SSS) -
-
Oksana17 replied Dec 1, 2008TEB, You never stop having new methods, huh? Can't you just stick to one? That is the only way you will be successfull.
Trading The Big Dog Pack ..howllll
-
Oksana17 replied Nov 9, 2008I wish you had told me sooner! I've deleted the mq4 file of the EA already. I'm sorry. What has it been, like 7 days of NO replying?
Need an EA to manage open positions
-
Oksana17 replied Nov 4, 2008mq4 is source code visible. ex4 hides the source code.
Simple question on EAs
-
Oksana17 replied Nov 3, 2008forward testing is more reliable than backtesting. If you have at least 90% modeling quality, maybe that'll be true in forward testing. It depends. Try forward testing. just my 2 cents.
how reliable is system testing on MT4
-
Oksana17 replied Nov 2, 2008Use this for determining the current pair's last open trade's side: for(int a=OrdersTotal()-1;a>=0;a--) if(OrderSelect(a,0)) if(OrderSymbol()==Symbol()) { if(OrderType()==0)Alert("buy position opened"); if(OrderType()==1)Alert("sell position ...
best way to define if open position is a long or short.
-
Oksana17 replied Nov 2, 2008Use MathAbs(); this returns the positive value of the value.
How to remove the minus from a value?
-
Oksana17 replied Nov 2, 2008Here's some I use: if(Open[0]==Close[0] && High[0]==Low[0])NewBar(); if(Volume[0]==1)NewBar(); if(Bars-OldBars>0)NewBar(); if(TimeCurrent()-Time[0]==0)NewBar(); if(TimeCurrent()==Time[0])NewBar();
best was to detect new bar
-
Oksana17 replied Nov 2, 2008For once, it only manages the trades that are on the same pair as which the EA is attached to. Try it again.
Need an EA to manage open positions
-
Oksana17 replied Oct 29, 2008Simple. Well just name the tickets or something, and write in the code : if not open 2 orders then open them...in a loop so that it keeps banging it again and again until it makes the orders.
Opening 10 Limit Orders at a Time