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.
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
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
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
//+-------------------------------------------------------------+
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(cnt, SELECT_BY_POS, MODE_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);
}
__________________
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.
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.
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.