Forex
Google

Go Back   Forex Trading > Downloads > Expert Advisors - Metatrader 3
Forex Forum Register FAQ Members List Calendar Search Today's Posts Mark Forums Read


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

Reply
 
LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 11-02-2005, 07:23 PM
jdun jdun is offline
Senior Member
 
Join Date: Nov 2005
Posts: 119
jdun is on a distinguished road
Robot Scalper

I found this little EA in MoneyTec. I am haveing good result from it. More test is needed tho. Testing is done in live demo account. No Backtest at all.

My fields are:
Robot Scalper

GBPUSD: M1 S/L: 9
USDCHF: M1 S/L: 8
USDCAD: M1 S/L: 9
USD/JPY: M1 S/L: 9
EURUSD: M1 S/L: 8
EURCHF: M1 S/L: 9

the rest are default. Using FXDD.com as my broker for this test.

Finding:
Entry: Very good. Rock solid.
Take Profit: Very Good.
Exit Lost: Not Good. When you lose you lose big sometime. The exit lost could be made better.

The program is pre compiled. I wish there were a souce code for it. If anyone have the souce code for this could you please post it up. If there is a MT4 version could you post it up.

If anyone can make improvements for this program or have the souce codes please post it up or email it to me. Thanks!


Post:
MoneyTec Post
Attached Files
File Type: zip Robot_Scalper-V1.35-MC.zip (1.4 KB, 406 views)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #2 (permalink)  
Old 11-03-2005, 08:20 AM
BrunoFX's Avatar
BrunoFX BrunoFX is offline
Senior Member
 
Join Date: Sep 2005
Posts: 807
BrunoFX will become famous soon enough
hello Traders,

This is the code of :Scalper_V1[1].35_MC.mql:

Code:
/*[[
        Name := Robot_Scalper-V1.35-MC
        Author := Copyright © 2005, Metex Invest Inc.
        Link := http://www.metexinvest.com/
        Notes := 
        Lots := 1.00
        Stop Loss := 17
        Take Profit := 50
        Trailing Stop := 5
]]*/

Var:    pos1pre(0);
Var:    pos2cur(0);
Var:    cnt(0);
Var:    mode(0);
Var:    openpozprice(0);
Var:    bull(0);
Var:    bear(0);
Define: slippage(2);
Var:    sl(0);
Var:    tp(0);
Define: ProfitMade(3);
Var:    OpenTrades(0);
Var:    i(0);
Var:    AcountNum(75807);

pos1pre = iBullsPower(13,0,1);
pos2cur = iBullsPower(13,0,0);
bull = iBullsPower(5,0,1);
bear = iBearsPower(5,0,1);

for cnt = 1 to TotalTrades
   { // else gotoLine 38;
   if OrderValue(cnt,VAL_SYMBOL) == Symbol then OpenTrades++;
   } // next - 38

if TimeYear(Time[0]) >= 2005 and TimeMonth(Time[0]) >= 8 and TimeDay(Time[0]) >= 7 then
   { // else gotoLine 63;
   Comment("\n","\n"," Your License Has Expired ","\n"," Please Contact Customer Support ","\n"," The Robot Will Trade ","\n"," For 2 Days Then Cease To Operate ");
   } // next - 63

if TimeYear(Time[0]) >= 2005 and TimeMonth(Time[0]) >= 8 and TimeDay(Time[0]) >= 7 then
   { // else gotoLine 176;
   if OrderValue(cnt,VAL_SYMBOL) == Symbol then
      { // else gotoLine 164;
      if OrderValue(cnt,VAL_TYPE) == OP_BUYLIMIT then
         { // else gotoLine 95;
         DeleteOrder(OrderValue(cnt,VAL_TICKET),Red);
         Exit;
         } // next - 95
      if OrderValue(cnt,VAL_TYPE) == OP_SELLLIMIT then
         { // else gotoLine 106;
         DeleteOrder(OrderValue(cnt,VAL_TICKET),Red);
         Exit;
         } // next - 106
      if OrderValue(cnt,VAL_TYPE) == OP_BUYSTOP then
         { // else gotoLine 117;
         DeleteOrder(OrderValue(cnt,VAL_TICKET),Red);
         Exit;
         } // next - 117
      if OrderValue(cnt,VAL_TYPE) == OP_SELLSTOP then
         { // else gotoLine 128;
         DeleteOrder(OrderValue(cnt,VAL_TICKET),Red);
         Exit;
         } // next - 128
      if OrderValue(cnt,VAL_TYPE) == OP_BUY then
         { // else gotoLine 146;
         CloseOrder(OrderValue(cnt,VAL_TICKET),OrderValue(cnt,VAL_LOTS),OrderValue(cnt,VAL_CLOSEPRICE),3,Red);
         Exit;
         } // next - 146
      if OrderValue(cnt,VAL_TYPE) == OP_SELL then
         { // else gotoLine 164;
         CloseOrder(OrderValue(cnt,VAL_TICKET),OrderValue(cnt,VAL_LOTS),OrderValue(cnt,VAL_CLOSEPRICE),3,Red);
         Exit;
         }
      } // next - 164
   if OpenTrades <= 0 then
      { // else gotoLine 176;
      Alert(" Your License Has Expired ","\n"," The Robot Has Ceased To Operate ","\n"," Please Contact Customer Support ","\n"," For A New Subscription ");
      Exit;
      }
   } // next - 176

if TimeYear(Time[0]) >= 2005 and TimeMonth(Time[0]) >= 9 and CurTime > 11080540800 then
   { // else gotoLine 200;
   Alert(" Your License Has Expired ");
   Comment(" Please Contact Customer Support ","\n"," The Expert will Manage Open Trades ","\n"," For 2 Days ","\n"," Then Cease To Operate ");
   Exit;
   } // next - 200

if TimeYear(Time[0]) >= 2005 and TimeMonth(Time[0]) >= 9 and TimeDay(Time[0]) >= 6 then Exit;

OpenTrades = 0;
for i = 1 to TotalTrades
   { // else gotoLine 232;
   if OrderValue(i,VAL_SYMBOL) == Symbol then OpenTrades++;
   } // next - 232

if OpenTrades < 1 then
   { // else gotoLine 294;
   if pos1pre > pos2cur and pos2cur > 0 and bull + bear > 0 then
      { // else gotoLine 266;
      sl = Ask - StopLoss * Point;
      tp = Bid + TakeProfit * Point;
      SetOrder(OP_BUY,Lots,Bid,slippage,sl,tp,Blue);
      Exit;
      } // next - 266
   if pos2cur < 0 and bull + bear > 0 then
      { // else gotoLine 294;
      sl = Bid + StopLoss * Point;
      tp = Ask - TakeProfit * Point;
      SetOrder(OP_SELL,Lots,Ask,slippage,sl,tp,Red);
      Exit;
      }
   } // next - 294

for cnt = 1 to TotalTrades
   { // else gotoLine 362;
   if Ord(cnt,VAL_TYPE) == OP_BUY and Ord(cnt,VAL_SYMBOL) == Symbol then
      { // else gotoLine 330;
      if Bid - Ord(cnt,VAL_OPENPRICE) >= ProfitMade * Point then
         { // else gotoLine 330;
         CloseOrder(OrderValue(cnt,VAL_TICKET),Ord(cnt,VAL_LOTS),Bid,0,BlueViolet);
         Exit;
         }
      } // next - 330
   if Ord(cnt,VAL_TYPE) == OP_SELL and Ord(cnt,VAL_SYMBOL) == Symbol then
      { // else gotoLine 360;
      if Ord(cnt,VAL_OPENPRICE) - Ask >= ProfitMade * Point then
         { // else gotoLine 360;
         CloseOrder(OrderValue(cnt,VAL_TICKET),Ord(cnt,VAL_LOTS),Ask,0,Violet);
         Exit;
         }
      } // next - 360
   } // next - 362

Last edited by newdigital : 11-03-2005 at 03:28 PM.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #3 (permalink)  
Old 11-03-2005, 03:27 PM
newdigital newdigital is online now
Administrator
 
Join Date: Sep 2005
Posts: 14,341
newdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud of
Everything about testing this EA you may find at Robot Scalper
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #4 (permalink)  
Old 03-11-2007, 01:14 PM
smalltalk's Avatar
smalltalk smalltalk is offline
Senior Member
 
Join Date: Apr 2006
Location: Yogyakarta
Posts: 112
smalltalk is on a distinguished road
Robot Scalper-V1.5-MC

There is a newer version of this EA. Robot Scalper-V1.5-MC
Anyone knows this EA?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #5 (permalink)  
Old 03-11-2007, 03:14 PM
Maji Maji is offline
Senior Member
 
Join Date: Mar 2006
Posts: 791
Maji is on a distinguished road
PHP Code:
      SetOrder(OP_BUY,Lots,Bid,slippage,sl,tp,Blue);
      
SetOrder(OP_SELL,Lots,Ask,slippage,sl,tp,Red); 
If you can find a MT4 broker who lets you buy at bid and sell at ask, you can become a billionaire. It is a garbage EA that takes advantage of a bug in MT3 demo only.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #6 (permalink)  
Old 03-12-2007, 09:11 AM
BrunoFX's Avatar
BrunoFX BrunoFX is offline
Senior Member
 
Join Date: Sep 2005
Posts: 807
BrunoFX will become famous soon enough
Hello

+1 yes
__________________
--> All long voyages always start from the first small steps...
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #7 (permalink)  
Old 03-12-2007, 09:23 AM
prasxz prasxz is offline
Senior Member
 
Join Date: Jun 2006
Posts: 960
prasxz is on a distinguished road
hi

Quote:
Originally Posted by Maji
PHP Code:
      SetOrder(OP_BUY,Lots,Bid,slippage,sl,tp,Blue);
      
SetOrder(OP_SELL,Lots,Ask,slippage,sl,tp,Red); 
If you can find a MT4 broker who lets you buy at bid and sell at ask, you can become a billionaire. It is a garbage EA that takes advantage of a bug in MT3 demo only.

buy at bid and sell at ask ..I want it.!..I'll invest $90,000 ..and do hedging in one currency ...with SL and TP both I'm very sure I'll get profit first

==================
Forex Indicators Collection
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #8 (permalink)  
Old 04-13-2008, 03:27 PM
Bongo Bongo is offline
Senior Member
 
Join Date: Oct 2005
Posts: 269
Bongo is on a distinguished road
On Market execution:
I’m buying on BID and selling on ASK but still I’m not getting
the best prices. Spread is 0, not all the time, that is BID=ASK,
but in some case you can jump to positive rates. HOW?
“At order by market execution,
the price will be quoted by dealer.”
If you will ask +5, maybe broker can give you +2????
Currenex is shoving you few prices, MT4 only one.
For banks, they are offsetting your trades,
are not important spreads but volume and commission.
Thanks.
B.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On
Forum Jump


Similar Threads
Thread Thread Starter Forum Replies Last Post
FX Scalper PX4 Roets Suggestions for Trading Systems 71 04-15-2008 08:05 PM
Robot Power EA xxDavidxSxx Expert Advisors - Metatrader 4 20 11-17-2006 05:13 AM
indicator and robot trader cruise Indicators - Metatrader 4 4 04-02-2006 02:50 AM
Robot Scalper BrunoFX Post and compare Trades 4 11-03-2005 04:40 PM


All times are GMT. The time now is 06:24 AM.