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.
yup that is what my previous post addresses. your broker will more than likely require you to enter a position 5 pips before the current price. if I set the active and prepare both to 0 the EA will work but the broker will reject the order because it does not follow their rules. just set the prepare for the buy stop and the sell stop to 5 or 6 and see if that acts as a work round till we can have the programmer set an instant execution instead of a pending order if the prepare and activate are set to 0.
PipeTrader,
Thru testing I find that these setting might work better for what your wanting the EA to do for you. Hope this helps.
Code:
extern string BuyStop_Trend_Info = "_______________________";
extern string BuyStop_TrendName = "B1";
extern int BuyStop_TakeProfit = 20;
extern int BuyStop_StopLoss = 40;
extern double BuyStop_Lot = 0.1;
extern int BuyStop_StepActive = 3;
extern int BuyStop_StepPrepare = 3;
extern string SellStop_Trend_Info = "_______________________";
extern string SellStop_TrendName = "S1";
extern int SellStop_TakeProfit = 20;
extern int SellStop_StopLoss = 40;
extern double SellStop_Lot = 0.1;
extern int SellStop_StepActive = 0;
extern int SellStop_StepPrepare = 6;
__________________
Proverbs [James]
Faith in Jesus helps me to see the invisible, believe the incredible and receive the impossible!
He makes all things new in my life.
TMLMv3 worked fine at catching the short trade at the trendline, but then generated at total of 87 more "mystery" short trades approximately 25 pips away from the trendline.
I'm using the Trend me leave me gold. I keep getting the same problem in the experts tab. error code 103. I know its SL and TP related and I've checked them they are okay. Dioes anyone have any idea of something I can do to fix?
I'm using the Trend me leave me gold. I keep getting the same problem in the experts tab. error code 103. I know its SL and TP related and I've checked them they are okay. Dioes anyone have any idea of something I can do to fix?
I have just found out that some MT4 brokers do not allow the Stoploss and Takeprofit to be sent at the time the order is first placed. They must be set with a modify order once the trade is detected as being accepted by the broker.
I'm using the Trend me leave me gold. I keep getting the same problem in the experts tab. error code 103. I know its SL and TP related and I've checked them they are okay. Dioes anyone have any idea of something I can do to fix?
The EA is putting a pending order if the price crossed a pre-determined sloping or horizontal trend line. What I need you to help me on doing the following.
I need the EA instead of putting a pending order, to open life market order. If the price closes below, or above the determined trend line.
And I want to put the Lots and determine TP and SL levels for the trade in EA options screen too.
I just change the takeprofit from 50 to 500 cos of my platform is a six digits platform. where as the stoploss I remain its as the same 30. I do it in the backtest included the Demark indicator as the trend drawer. and get this result and its just run at the half way.