Forex



Go Back   Forex Trading > Non Related Discussions
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 06-29-2007, 03:33 PM
KaMpeR's Avatar
Senior Member
 
Join Date: Mar 2006
Location: South Africa
Posts: 495
KaMpeR is on a distinguished road
Guaranteed WINNING Strategy.

1) Find a Newbie.
2) Take every trade opposit to Newbie.
3) Make a fortune.
__________________
FatCat
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 06-29-2007, 04:35 PM
Member
 
Join Date: Mar 2007
Location: London Calling....
Posts: 52
CiTiFx is on a distinguished road
Unless the newbie has a bout of beginners luck and then ure fcuked.

Quote:
Originally Posted by KaMpeR View Post
1) Find a Newbie.
2) Take every trade opposit to Newbie.
3) Make a fortune.
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 06-29-2007, 04:41 PM
frantacech's Avatar
Senior Member
 
Join Date: Sep 2006
Posts: 497
frantacech is on a distinguished road
Quote:
Originally Posted by KaMpeR View Post
1) Find a Newbie.
2) Take every trade opposit to Newbie.
3) Make a fortune.
It is not work. Newbie go long, after 30pips close loss and go short, after 30pips close loss. if newbie turn logic, result identical. He is know, what wants.
__________________
RUN With The BULLS And HUNT With The BEARS - Nothing By Chance
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 06-29-2007, 05:41 PM
Senior Member
 
Join Date: Jun 2006
Location: Italy
Posts: 187
w4rn1ng is on a distinguished road
Some time i do like that with my father, he and only he have the power to sell at bottoms and buy at tops! Let's imagine a perfect downtrend, a strong downtrend of that ones that nobody can say: "i think it will reverse soon!", well, if my father sell, it reverse immediately :P It's not so bad the idea to do the opposite of newbies traders, or just unluckies traders
__________________
My Trading Blog http://www.warninvest.tk
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 06-29-2007, 06:14 PM
davidke20's Avatar
Senior Member
 
Join Date: Sep 2006
Location: 38° 53′ 51.61″ N, 77° 2′ 11.58″ W
Posts: 1,492
davidke20 is on a distinguished road
Quote:
Originally Posted by w4rn1ng View Post
Some time i do like that with my father, he and only he have the power to sell at bottoms and buy at tops! Let's imagine a perfect downtrend, a strong downtrend of that ones that nobody can say: "i think it will reverse soon!", well, if my father sell, it reverse immediately :P It's not so bad the idea to do the opposite of newbies traders, or just unluckies traders
Alright, here is the EA...
PHP Code:
//+-------------------------------------------------------------+
//|                                       w4rn1ng-antinoobs.mq4 |
//|                                 Copyright © 2007, davidke20 |
//+-------------------------------------------------------------+
#property copyright "Copyright © 2007, davidke20"
#property link      ""

extern double TakeProfit 100;
extern double Lots 0.1;
extern double TrailingStop 15;
extern double DaddyBuy=false;
extern double DaddySell=false;

//+-------------------------------------------------------------+
int start()
  {
   
total=OrdersTotal();
   if(
total<1
     {
      if(
DaddyBuy && DaddySell){Comment("Dad! WTF are you trying to do?!"}
      if(!
DaddyBuy && !DaddySell){Comment("OK dad! What trade should we take now?"}
      
// no opened orders identified
      
if(AccountFreeMargin()<(1000*Lots))
        {
         Print(
"We have no money. Free Margin = "AccountFreeMargin());
         return(
0);  
        }
      
// check for long position (BUY) possibility
      
if(!DaddyBuy && DaddySell)
        {
         
ticket=OrderSend(Symbol(),OP_BUY,Lots,Ask,3,0,Ask+TakeProfit*Point,"macd sample",16384,0,Green);
         if(
ticket>0)
           {
            if(
OrderSelect(ticket,SELECT_BY_TICKET,MODE_TRADES)) Print("BUY order opened : ",OrderOpenPrice());
           }
         else Print(
"Error opening BUY order : ",GetLastError()); 
         return(
0); 
        }
      
// check for short position (SELL) possibility
      
if(DaddyBuy && !DaddySell)
        {
         
ticket=OrderSend(Symbol(),OP_SELL,Lots,Bid,3,0,Bid-TakeProfit*Point,"macd sample",16384,0,Red);
         if(
ticket>0)
           {
            if(
OrderSelect(ticket,SELECT_BY_TICKET,MODE_TRADES)) Print("SELL order opened : ",OrderOpenPrice());
           }
         else Print(
"Error opening SELL order : ",GetLastError()); 
         return(
0); 
        }
      return(
0);
     }
   
// it is important to enter the market correctly, 
   // but it is more important to exit it correctly...   
   
for(cnt=0;cnt<total;cnt++)
     {
      
OrderSelect(cntSELECT_BY_POSMODE_TRADES);
      if(
OrderType()<=OP_SELL &&   // check for opened position 
         
OrderSymbol()==Symbol())  // check for symbol
        
{
         if(
OrderType()==OP_BUY)   // long position is opened
           
{
            
// should it be closed?
            
if(DaddyBuy && !DaddySell)
                {
                 
OrderClose(OrderTicket(),OrderLots(),Bid,3,Violet); // close position
                 
return(0); // exit
                
}
            
// check for trailing stop
            
if(TrailingStop>0)  
              {                 
               if(
Bid-OrderOpenPrice()>Point*TrailingStop)
                 {
                  if(
OrderStopLoss()<Bid-Point*TrailingStop)
                    {
                     
OrderModify(OrderTicket(),OrderOpenPrice(),Bid-Point*TrailingStop,OrderTakeProfit(),0,Green);
                     return(
0);
                    }
                 }
              }
           }
         else 
// go to short position
           
{
            
// should it be closed?
            
if(!DaddyBuy && DaddySell)
              {
               
OrderClose(OrderTicket(),OrderLots(),Ask,3,Violet); // close position
               
return(0); // exit
              
}
            
// check for trailing stop
            
if(TrailingStop>0)  
              {                 
               if((
OrderOpenPrice()-Ask)>(Point*TrailingStop))
                 {
                  if((
OrderStopLoss()>(Ask+Point*TrailingStop)) || (OrderStopLoss()==0))
                    {
                     
OrderModify(OrderTicket(),OrderOpenPrice(),Ask+Point*TrailingStop,OrderTakeProfit(),0,Red);
                     return(
0);
                    }
                 }
              }
           }
        }
     }
   return(
0);
  } 
Hope this help

Regards

David

Last edited by davidke20; 06-29-2007 at 06:18 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
  #6 (permalink)  
Old 06-29-2007, 06:21 PM
Senior Member
 
Join Date: Jun 2006
Location: Italy
Posts: 187
w4rn1ng is on a distinguished road
lol
__________________
My Trading Blog http://www.warninvest.tk
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 06-29-2007, 08:42 PM
HellGungrave_777's Avatar
Member
 
Join Date: Mar 2007
Posts: 39
HellGungrave_777 is on a distinguished road
davidke20 how much are $$$ for this ea?
__________________
There is no room for fantasizing in trading. Counting up and calculating and mentally spending profits you haven't made yet is mental masturbation.
Anonymous.
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 06-30-2007, 09:24 AM
KaMpeR's Avatar
Senior Member
 
Join Date: Mar 2006
Location: South Africa
Posts: 495
KaMpeR is on a distinguished road
David, that is brilliant, your sense of humour is great.

I think an EA that works this well is going to be a BIG money maker, you are a brilliant coder, now I just have to get my father to move in with me, then I am wealthy beyond belief.

Does this EA also work with 13 year old daughter, or 18 year old son who already knows everything?

I think is going to be a very expensive EA, watch your mail box, it is going to fill with PM's soon.
__________________
FatCat
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 06-30-2007, 11:44 AM
davidke20's Avatar
Senior Member
 
Join Date: Sep 2006
Location: 38° 53′ 51.61″ N, 77° 2′ 11.58″ W
Posts: 1,492
davidke20 is on a distinguished road
Quote:
Originally Posted by KaMpeR View Post
David, that is brilliant, your sense of humour is great.

I think an EA that works this well is going to be a BIG money maker, you are a brilliant coder, now I just have to get my father to move in with me, then I am wealthy beyond belief.

Does this EA also work with 13 year old daughter, or 18 year old son who already knows everything?

I think is going to be a very expensive EA, watch your mail box, it is going to fill with PM's soon.
I dont know, I think its very personallity driven. I've tried once when I facing lossing streak. I purposely invert the trading signals. And guess what, it did not help me to cope up with my down hill equity slope. I'm still lossing EACH trades. So, I guess that EA only works for w4rn1ng's dad. Should you really wanted to purchase this EA? No need, its FREE. All you need to do is rent w4rn1ng's dad. Thats the most expansive part. May be you should go back and backtest your dad. He could be the next most valueable asset for you in your future speculation business.

Regards

David
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 06-30-2007, 12:53 PM
Senior Member
 
Join Date: Jun 2006
Posts: 1,512
prasxz is on a distinguished road
hi

Quote:
Originally Posted by KaMpeR View Post
1) Find a Newbie.
2) Take every trade opposit to Newbie.
3) Make a fortune.
I think it's better to throw your coins for buy and sell with TP and SL 30 pips

===================
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
Reply

Bookmarks


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
Winning Solution 9.3 winning-solution.net Commercial Trading Systems and indicators 29 08-21-2009 06:04 PM
Guaranteed Hedge 4rex Expert Advisors - Metatrader 4 31 08-13-2007 04:10 AM
65% winning system fxsterling General Discussion 4 06-17-2007 06:17 AM


All times are GMT. The time now is 01:57 AM.



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