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.
Does anyone know how to program it to have T/P and S/L? Seems like non of the PIPMakers (any Version) had such function.
With regards to my last message, Does anyone here know how to program the PIPMarker (any version) so that it can have the function to have S/L and T/P in every trade?!? I tried to add in this feature to this program but fail.
I would like to suggest to the expert in programing the Mg4, maybe can add in a function to enable/disable the option to have S/L or T/P and of course the option on how many PIPs we wish to enable for both the S/L and T/P.
let pipmaker do everything for u, why shall u had to suffer about the SL & TP.
You have the point, But then I'm sure there are some ppl who will prefer to have the S/L or T/P Option. Anyway I've mention in my suggestion that why not add in a feature to disable / Enable the S/L & T/P Option.. At least it a choice for all user.
Just a suggestion for an additional improvement/upgrade.......
[quote=scanderick;254465]You have the point, But then I'm sure there a<textarea name="message" id="vB_Editor_QE_1_textarea" rows="10" cols="60" style="width:500px; height:200px" tabindex="1" dir="ltr">
Quote:
Originally Posted by scanderick
You have the point, But then I'm sure there are some ppl who will prefer to have the S/L or T/P Option. Anyway I've mention in my suggestion that why not add in a feature to disable / Enable the S/L & T/P Option.. At least it a choice for all user.
Just a suggestion for an additional improvement/upgrade.......
the aim of the pipsmaker is to calculated out the profits from all the opened trades and find out where is the right place , when will be the right time and which trades was suitable to close and get the profits.
let said if u had setup up the SL or TP, then the Pipsmaker will not do its job anymore.
but if u intent want to do it, then u can just add the SL & TP on it.
int StopLoss = 30; // let said u want add 30 or other u like, u can change overhere. if zero means disable.
int TakeProfit = 30; // same on top...
At the OrderSend()function u had to add up somethings like this,
OrderSend(Symbol(),OP_SELL,volume,Bid,slippage,Bid+StopLoss*Point,
Bid-TakeProfit*Point,comment,magic,0,arrow_color); for sell order and
OrderSend(Symbol(),OP_BUY,volume,Ask,slippage,Ask-StopLoss*Point,
Ask+TakeProfit*Point,comment,magic,0,arrow_color);for buy orders
let do it yourself , hope u makeit.