hello,
i have on the same account a other ea who trade for me. what settings i have to make, when i want that the trademanger only manage the trades what i open manually and not the trades from the other ea?
and what settings i have to make, when i want, that the trademanger manage my orders, whe i open a manually order from my handy Android) ? the trade manger is installed on a vps, he is running always.
thanks a lot
MPTM's new home
-
bloodazh
- Posts: 7
- Joined: Fri Aug 31, 2012 6:13 am
Re: MPTM's new home
Hi Guys, i have some problem again with MPTM.
i read it at manual but still dont get it.
i try to set my Hidden BE + hidden JS.
but why mptm always close my trade?
i think its about "pips away from BE/JS", i try to set it from 100 to 0... (i read at manual but no explaination about pips away"
or because my broker differ from market price is 20?
any suggestion? give some attachment
i read it at manual but still dont get it.
i try to set my Hidden BE + hidden JS.
but why mptm always close my trade?
i think its about "pips away from BE/JS", i try to set it from 100 to 0... (i read at manual but no explaination about pips away"
or because my broker differ from market price is 20?
any suggestion? give some attachment
You do not have the required permissions to view the files attached to this post.
-
nazmulhyder
Re: MPTM's new home
I am also facing the same problem. need help very much as the EA is very much useful for me.lilac wrote:Hi,
I'm having problems configuring the right jumpingstop settings. I read the manual but couldn't figure out what I am doing wrong. I am using a BE at 15 pips, locking 10 BEProfits, and i want the SL to jump by 5 pips after reaching BE, so i tried following settings:
BreakEven=1
BreakEvenPips=15
BreakEvenProfit=10
JumpingStop=1
JumpingStopPips=5
AddBEP=0
JumpAfterBreakevenOnly=1
But for some reason the JS ignores settings AddBEP/JumpAfterBreakevenOnly, and starts jumping from 0 breakeven, or doesn't jump at all for some pairs. I tried all combinations, AddBEP=1 and JumpAfterBreakevenOnly=1, as well as AddBEP=1 and JumpAfterBreakevenOnly=0
None of them produced the JS of 5 pips after BreakEven was reached, they start jumping from 0 or just don't jump, not even after 20 pips. I am letting all trades managed by mptm, and only setting this BE/JS feature, along with hedge to true (the hedge is not being triggered either). When I see BE/JS/hedges are not being set when they should, i remove/reattach the ea, or restart the platform, and sometimes it sets inmediatly a couple of BE/JS, but not all of them. In the error log I only see some "invalid stop" messages, which happen randomly at some criminals, even when all trades are still at a loss.
- Can someone please clarify what JS settings will make SL jump each 5 pips after breakeven and for all pairs?
- Does the JS need to be bigger than BE and/or BEP?
- Does the hedge setting need to be set on another instance of the ea in order to be activated?
I appreciate any help with this. Thank you
-
Forexperiments
- Trader
- Posts: 16
- Joined: Mon Sep 17, 2012 8:45 am
Re: MPTM's new home
Can someone give me a set file for making a simple trailing stop?
I tried dozens of settings, all are unreliable
I tried dozens of settings, all are unreliable
- ChicagoRob
- Trader
- Posts: 48
- Joined: Sun Dec 04, 2011 11:26 pm
- Location: Chicago, Illinois
Stumped
I'm having a problem with MPTM stopping out trades immediately after the orders are placed. I recently put on a sell trade with a SL 35 pips away from the entry price. However, every time I tried to place the trade, MPTM would stop it out instantaneously. I had two buy trades set up with similar stop losses and they were executed without any problems.
If anyone can enlighten me as to what I may be doing wrong, please do not hesitate.
Rob
If anyone can enlighten me as to what I may be doing wrong, please do not hesitate.
Rob
- Mike
- Trader
- Posts: 272
- Joined: Sun Dec 11, 2011 12:30 pm
- Location: Italy
Re: MPTM's new home
Hey Coders
In MPTM's version page 1 "Management Style" "ManageByTickeNumber" cannot be enabled.
I suggest to change the code from
Each line a different option:
Would "0" stand for the specific number "0" or, in analogy to the magic number "all Ticket Numbers"? I just do not know.
And, if I would want to apply it to all trades except a specific Ticket Number?
Please comment and specify.
Thanks for your help, Mike
In MPTM's version page 1 "Management Style" "ManageByTickeNumber" cannot be enabled.
I suggest to change the code from
toextern bool ManageByTickeNumber = false;
int TicketNumber;
though when set to false, I am not sure, whether I can leave the TicketNumber empty, set it to 0 or have to set some fancy number. And then, how can I define more than one number?extern bool ManageByTicketNumber = false;
extern int TicketNumber = 2082829;
Each line a different option:
Is coma the right deliminator?extern int TicketNumber= ;
extern int TicketNumber= 0;
extern int TicketNumber= 2082827,2082828,2082829;
Would "0" stand for the specific number "0" or, in analogy to the magic number "all Ticket Numbers"? I just do not know.
And, if I would want to apply it to all trades except a specific Ticket Number?
Please comment and specify.
Thanks for your help, Mike
Last edited by Mike on Wed Dec 05, 2012 8:25 pm, edited 1 time in total.
- KevinT
- Trader
- Posts: 113
- Joined: Fri Jan 06, 2012 4:23 am
Re: MPTM's new home
Lets hope Steve finds the time to address this after the trading season is over (should be easier than recoding for CrapT5) 
Last edited by KevinT on Sat Dec 08, 2012 12:25 am, edited 1 time in total.
-
Jason
Re: MPTM's new home
I just started tinkering with MPTM and I have a 5 digit broker. Should MPTM automatically adjust to working with 5 digits? Is there a way to manually adjust it because it's still assuming there are only 4.
Thanks
Thanks
- SteveHopwood
- Owner
- Posts: 9904
- Joined: Tue Nov 15, 2011 8:43 am
- Location: Misterton - an insignificant village in England. Very pleasant to live in.
Re: MPTM's new home
Curious. No idea where the extern in front of TicketNumber went.Mike wrote:Hey Coders
In MPTM's version page 1 "Management Style" "ManageByTickeNumber" cannot be enabled.
I suggest to change the code fromtoextern bool ManageByTickeNumber = false;
int TicketNumber;though when set to false, I am not sure, whether I can leave the TicketNumber empty, set it to 0 or have to set some fancy number. And then, how can I define more than one number?extern bool ManageByTicketNumber = false;
extern int TicketNumber = 2082829;
Each line a different option:Is coma the right deliminator?extern int TicketNumber= ;
extern int TicketNumber= 0;
extern int TicketNumber= 2082827,2082828,2082829;
Would "0" stand for the specific number "0" or, in analogy to the magic number "all Ticket Numbers"? I just do not know.
And, if I would want to apply it to all trades except a specific Ticket Number?
Please comment and specify.
Thanks for your help, Mike
I have replaced it in the update in post 1.
Re "extern int TicketNumber= 2082827,2082828,2082829; Is coma the right deliminator?"
No, it isn't nor is any other. You can apply mptm to manage one ticket number only. Your quoted input would cause mptm to ignore all trades unless they have a ticket number of 2082827,2082828,2082829. Doesn't seem likely, to me.
Read the effing manual, ok?
Afterprime is the official SHF broker. Read about them at https://www.stevehopwoodforex.com/phpBB3/viewtopic.php?p=175790#p175790.
I still suffer from OCCD. Good thing, really.
Anyone here feeling generous? My paypal account is always in the market for a tiny donation. pianodoodler@hotmail.com is the account.
To see The Weekly Roundup of stuff you guys might have missed Click here
My special thanks to Thomas (tomele) for all the incredible work he does here.
Afterprime is the official SHF broker. Read about them at https://www.stevehopwoodforex.com/phpBB3/viewtopic.php?p=175790#p175790.
I still suffer from OCCD. Good thing, really.
Anyone here feeling generous? My paypal account is always in the market for a tiny donation. pianodoodler@hotmail.com is the account.
To see The Weekly Roundup of stuff you guys might have missed Click here
My special thanks to Thomas (tomele) for all the incredible work he does here.