Forex
Google

Go Back   Forex Trading > Non Related Discussions
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 (1) Thread Tools Display Modes
  1 links from elsewhere to this Post. Click to view. #1 (permalink)  
Old 06-29-2007, 02:33 PM
KaMpeR's Avatar
KaMpeR KaMpeR is offline
Senior Member
 
Join Date: Mar 2006
Location: South Africa
Posts: 346
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
http://www.ovenstone.net

You want my secret?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #2 (permalink)  
Old 06-29-2007, 03:35 PM
CiTiFx CiTiFx is offline
Member
 
Join Date: Mar 2007
Location: London Calling....
Posts: 51
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!
Reply With Quote
  #3 (permalink)  
Old 06-29-2007, 03:41 PM
frantacech's Avatar
frantacech frantacech is offline
Senior Member
 
Join Date: Sep 2006
Posts: 466
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!
Reply With Quote
  #4 (permalink)  
Old 06-29-2007, 04:41 PM
w4rn1ng w4rn1ng is offline
Senior Member
 
Join Date: Jun 2006
Location: Italy
Posts: 167
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
__________________
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #5 (permalink)  
Old 06-29-2007, 05:14 PM
davidke20's Avatar
davidke20 davidke20 is offline
Senior Member
 
Join Date: Sep 2006
Location: 38° 53′ 51.61″ N, 77° 2′ 11.58″ W
Posts: 1,396
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 05:18 PM.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #6 (permalink)  
Old 06-29-2007, 05:21 PM
w4rn1ng w4rn1ng is offline
Senior Member
 
Join Date: Jun 2006
Location: Italy
Posts: 167
w4rn1ng is on a distinguished road
lol
__________________
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #7 (permalink)  
Old 06-29-2007, 07:42 PM
HellGungrave_777's Avatar
HellGungrave_777 HellGungrave_777 is offline
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!
Reply With Quote
  #8 (permalink)  
Old 06-30-2007, 08:24 AM
KaMpeR's Avatar
KaMpeR KaMpeR is offline
Senior Member
 
Join Date: Mar 2006
Location: South Africa
Posts: 346
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
http://www.ovenstone.net

You want my secret?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #9 (permalink)  
Old 06-30-2007, 10:44 AM
davidke20's Avatar
davidke20 davidke20 is offline
Senior Member
 
Join Date: Sep 2006
Location: 38° 53′ 51.61″ N, 77° 2′ 11.58″ W
Posts: 1,396
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!
Reply With Quote
  #10 (permalink)  
Old 06-30-2007, 11:53 AM
prasxz prasxz is offline
Senior Member
 
Join Date: Jun 2006
Posts: 1,044
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!
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

LinkBacks (?)
LinkBack to this Thread: http://www.forex-tsd.com/non-related-discussions/8329-guaranteed-winning-strategy.html
Posted By For Type Date
guaranteed This thread Refback 08-17-2007 12:16 PM

Similar Threads
Thread Thread Starter Forum Replies Last Post
Guaranteed Hedge 4rex Expert Advisors - Metatrader 4 31 08-13-2007 03:10 AM
65% winning system fxsterling General Discussion 4 06-17-2007 05:17 AM
Winning Solution 9.3 winning-solution.net Commercial Trading Systems and indicators 25 03-12-2007 04:58 PM


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