Forex



Go Back   Forex Trading > Downloads > Expert Advisors - Metatrader 4 > Expert Advisors - Metatrader 3
Forex Forum Register More recent Blogs Calendar Advertising Others Help






Register
Welcome to Forex-TSD!, one of the largest Forex forums worldwide, where you will be able to find the most complete and reliable Forex information imaginable.

From the list below, select the forum that you want to visit and register to post, as many times you want. It’s absolutely free. Click here for registering on Forex-TSD.

Exclusive Forum
The Exclusive Forum is the only paid section. Once you subscribe, you will get free access to real cutting-edge Trading Systems (automated and not), Indicators, Signals, Articles, etc., that will help and guide you, in ways that you could only imagine, with your Forex trading.
  • Elite Section
    Get access to private discussions, specialized support, indicators and trading systems reported every week.
  • Advanced Elite Section
    For professional traders, trading system developers and any other member who may need to use and/or convert, the most cutting-edge exclusive indicators and trading systems for MT4 and MT5.
See more

Reply
 
Thread Tools Display Modes
  #1 (permalink)  
Old 11-02-2005, 08:23 PM
Senior Member
 
Join Date: Nov 2005
Posts: 118
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, 796 views)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #2 (permalink)  
Old 11-03-2005, 09:20 AM
BrunoFX's Avatar
Senior Member
 
Join Date: Sep 2005
Posts: 816
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 04:28 PM.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #3 (permalink)  
Old 11-03-2005, 04:27 PM
Administrator
 
Join Date: Sep 2005
Posts: 20,058
Blog Entries: 241
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!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #4 (permalink)  
Old 03-11-2007, 03:14 PM
smalltalk's Avatar
Senior Member
 
Join Date: Apr 2006
Location: Yogyakarta
Posts: 116
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!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #5 (permalink)  
Old 03-11-2007, 05:14 PM
Senior Member
 
Join Date: Mar 2006
Posts: 793
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!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #6 (permalink)  
Old 03-12-2007, 11:11 AM
BrunoFX's Avatar
Senior Member
 
Join Date: Sep 2005
Posts: 816
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!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #7 (permalink)  
Old 03-12-2007, 11:23 AM
Senior Member
 
Join Date: Jun 2006
Posts: 1,512
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!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #8 (permalink)  
Old 04-13-2008, 04:27 PM
Bongo's Avatar
Senior Member
 
Join Date: Oct 2005
Posts: 496
Bongo is an unknown quantity at this point
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!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #9 (permalink)  
Old 08-18-2008, 05:50 PM
matrixebiz's Avatar
Senior Member
 
Join Date: Oct 2006
Posts: 1,218
matrixebiz is on a distinguished road
Anyone have a link to download MT3?
Thanks
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #10 (permalink)  
Old 08-18-2008, 06:31 PM
FseXy's Avatar
Senior Member
 
Join Date: Aug 2007
Location: England
Posts: 198
FseXy is on a distinguished road
I have to agree, you need to convert the EA to java code to work with brokers such as IB if you wanted it to work. $10k min account balance.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
Reply

Bookmarks

Tags
robot scalper, scalper, ROBOT, scalping robot, scalper_v1.1, scalper forex, Robot_Scalper, FOREX ROBOT, scalper robot, forex scalper robot, forex robot scalper, forex scalping robot, robot scalping


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
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

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

Similar Threads
Thread Thread Starter Forum Replies Last Post
Robot Power EA xxDavidxSxx Expert Advisors - Metatrader 4 22 11-02-2008 08:44 AM
Robot Scalper BrunoFX Post and compare Trades 5 10-22-2008 05:05 AM
FX Scalper PX4 Roets Suggestions for Trading Systems 77 06-19-2008 08:17 AM
indicator and robot trader cruise Indicators - Metatrader 4 4 04-02-2006 03:50 AM


All times are GMT. The time now is 11:29 AM.



Search Engine Friendly URLs by vBSEO 3.2.0 ©2008, Crawlability, Inc.