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.
3 days? I give you 3 months time. If it doesn't blow up, I buy it from you for the price of $10.
__________________
"All through time, people have basically acted and reacted the same way in the market as a result of: greed, fear, ignorance, and hope. That is why the numerical formations and patterns recur on a constant basis." - Jesse Lauriston Livermore
3 days? I give you 3 months time. If it doesn't blow up, i buy it from you for the price of $10.
lol
the idea is to meet a specified target and close all trades then start all over again, but i need another ea that will close all open orders at a specified equity and not allow any more trades until i reset it to a higher value and then lock in 50% of the initial profit.
lol
the idea is to meet a specified target and close all trades then start all over again, but i need another ea that will close all open orders at a specified equity and not allow any more trades until i reset it to a higher value and then lock in 50% of the initial profit.
Martingale? Cost averaging? Lock profit? I had enough "success" with these critters.
__________________
"All through time, people have basically acted and reacted the same way in the market as a result of: greed, fear, ignorance, and hope. That is why the numerical formations and patterns recur on a constant basis." - Jesse Lauriston Livermore
lol
the idea is to meet a specified target and close all trades then start all over again, but i need another ea that will close all open orders at a specified equity and not allow any more trades until i reset it to a higher value and then lock in 50% of the initial profit.
By the way, its not that hard to code a limit to the EA to trade only once until user tell it to restart. I bet its easier then coding a martingale/cost averaging EA
Code:
bool ContinueTrading=true;
//Add the additional flag to your trading discretion before OrderSend()
if(ContinueTrading && iMACD(Symbol(),12,26,9,0,0,0)>iMACD(Symbol(),12,26,9,0,0,1))
{
OrderSend(Symbol(),OP_BUY,Lots,Ask,3,SL,TP,"Martingale",Magic,0,Blue);
//Flag the additional variable as false after OrderClose()
OrderClose(OrderTicket(),OrderLots(),Bid,3,Pink);
ContinueTrading=false;
Just 1 additional flag does all the magic work. Special credit to Codersguru.
__________________
"All through time, people have basically acted and reacted the same way in the market as a result of: greed, fear, ignorance, and hope. That is why the numerical formations and patterns recur on a constant basis." - Jesse Lauriston Livermore