stevehopwoodforex.com
https://www.stevehopwoodforex.com/phpBB3/
Print view

MPTM's new home
https://www.stevehopwoodforex.com/phpBB3/viewtopic.php?t=64
Page 48 of 57
Author:  rapple [ Thu Jul 10, 2014 11:07 pm ]
Post subject:  MPTM's new home

Hi

I found the most reliable way to setup MPTM is to hard code the variables using the MetaEditor then compile and save. Then drag the EA onto the chart. I have been using with ATR TP and SL and it works perfectly.

Trying to set variables with F7 or even Presets did not work well !

Kind regards Rapple
Author:  Catagus [ Fri Jul 11, 2014 12:02 am ]
Post subject:  MPTM's new home

Hey guys thanks for the quick replys, I`ve solved my issue after numerous trial and errors I finally got my setup working, such an excellent EA. Thanks for the help guys!
Author:  PattFX [ Fri Jul 18, 2014 4:44 pm ]
Post subject:  MPTM's new home

Hi guys. Could anyone explain what AtrBE, AtrTp, AtrSl do?

Do they simply set the Sl to BE, Tp and Sl equal to current Atr?

If so, can I configure it to set Tp at (ATR - current daily move in pips from specific time)?

For example, if ATR is 50 and the price has move 20 pips today from London open, the EA will set the TP to 30 pips away from current price.

Hope you guys understand what I mean.

Thanks.
Author:  milanese [ Fri Jul 18, 2014 4:53 pm ]
Post subject:  MPTM's new home

PattFX » Fri Jul 18, 2014 4:44 pm wrote:Hi guys. Could anyone explain what AtrBE, AtrTp, AtrSl do?

Do they simply set the Sl to BE, Tp and Sl equal to current Atr?

If so, can I configure it to set Tp at (ATR - current daily move in pips from specific time)?

For example, if ATR is 50 and the price has move 20 pips today from London open, the EA will set the TP to 30 pips away from current price.

Hope you guys understand what I mean.

Thanks.
no it will set it 50 pips if your atr-tp multiplicator is 1
Cheers:)

Tommaso
Author:  PattFX [ Fri Jul 18, 2014 4:57 pm ]
Post subject:  MPTM's new home

milanese » Fri Jul 18, 2014 11:53 pm wrote:
PattFX » Fri Jul 18, 2014 4:44 pm wrote:Hi guys. Could anyone explain what AtrBE, AtrTp, AtrSl do?

Do they simply set the Sl to BE, Tp and Sl equal to current Atr?

If so, can I configure it to set Tp at (ATR - current daily move in pips from specific time)?

For example, if ATR is 50 and the price has move 20 pips today from London open, the EA will set the TP to 30 pips away from current price.

Hope you guys understand what I mean.

Thanks.
no it will set it 50 pips if your atr-tp multiplicator is 1
Cheers:)

Tommaso
Alright. So what exactly does AtrBE do?
Author:  milanese [ Fri Jul 18, 2014 5:00 pm ]
Post subject:  MPTM's new home

PattFX » Fri Jul 18, 2014 4:57 pm wrote:
Alright. So what exactly does AtrBE do?
setting after 50 pips BE

Cheers:)

Tommaso
Author:  ta5851 [ Sun Jul 20, 2014 12:56 pm ]
Post subject:  MPTM's new home

Hi guys, I have one question. If I set BE=100 pip, BE Profit = 10 and I want the actual JS to be 100pip, but hide from the crims. So I put Hidejumpstop= True, JS=300 , pipsawayfromvisualjs=200 and jump after breakeven only = true.
So when the trading +100pip. The BE stop now is 10pip. But what is the value for visul SL now? will it be -300, -200 , -290,-190 or 10 ? Actually, can we really combine this 2 stop loss together or cannot do that?
If the trading now become +200 pip. What is the visual SL now? I really confused........Without hide jumpstop, I think the value suppose to be 100. Please Help.
Author:  milanese [ Sun Jul 20, 2014 1:06 pm ]
Post subject:  MPTM's new home

ta5851 » Sun Jul 20, 2014 12:56 pm wrote:Hi guys, I have one question. If I set BE=100 pip, BE Profit = 10 and I want the actual JS to be 100pip, but hide from the crims. So I put Hidejumpstop= True, JS=300 , pipsawayfromvisualjs=200 and jump after breakeven only = true.
So when the trading +100pip. The BE stop now is 10pip. But what is the value for visul SL now? will it be -300, -200 , -290,-190 or 10 ? Actually, can we really combine this 2 stop loss together or cannot do that?
If the trading now become +200 pip. What is the visual SL now? I really confused........Without hide jumpstop, I think the value suppose to be 100. Please Help.
the hide functions are buggy please use without hide.. or try this trade manager http://www.stevehopwoodforex.com/phpBB3 ... =21&t=3482

Cheers :)

Tommaso
Author:  ta5851 [ Sun Jul 20, 2014 1:23 pm ]
Post subject:  MPTM's new home

Thank bro. Really appreciate.
Author:  ta5851 [ Tue Jul 22, 2014 5:09 am ]
Post subject:  MPTM's new home [new ATR BE/JS]

milanese » Wed Jun 11, 2014 5:27 pm wrote:
cad0811 » Wed Jun 11, 2014 5:23 pm wrote:
milanese » Thu Jun 12, 2014 1:10 am wrote:
cad0811 » Wed Jun 11, 2014 4:28 pm wrote:
milanese » Tue May 27, 2014 4:50 pm wrote:Hi all :hi:

as cad0811 me requested for an ATR SL/TP setting, I found a little bloop in the code here is the fixed MPTM version now you can use UseTpAtr and UseSlAtr, the OOTB setting is set to use both.

Cheers :)

Tommaso
Hi,Tommaso!
To request you a request again?Modify the BE and the way of JSL!

BE="Break even settings";
BreakEven=false;
BreakEvenPips=10; (Fixed points is modified to use the ATR)
BreakEvenProfit=2;
HideBreakEvenStop=false;
PipsAwayFromVisualBE=100;
JSL="Jumping stop loss settings";
JumpingStop=false;
JumpingStopPips=50; (Fixed points is modified to use the ATR)


Thank you!
cheers!
here you go

new settings:

Code: Select all

extern string  BE                            = "Break even settings";
extern bool    BreakEven                     = true;
extern bool    UseBEAtr                      = true;
extern int     AtrBEPeriod                   = 14;
extern int     AtrBETimeFrame                = PERIOD_H4;
extern double  AtrBEMultiplier               = 1;
extern double  BreakEvenPips                 = 25;
extern double  BreakEvenProfit               = 10;
extern bool    HideBreakEvenStop             = false;
extern double  PipsAwayFromVisualBE          = 100;
extern string  JSL                           = "Jumping stop loss settings";
extern bool    JumpingStop                   = true;
extern bool    UseJSAtr                      = true;
extern int     AtrJSPeriod                   = 14;
extern int     AtrJSTimeFrame                = PERIOD_H4;
extern double  AtrJSMultiplier               = 1;
extern double  JumpingStopPips               = 30;
extern bool    AddBEP                        = false;
extern bool    JumpAfterBreakevenOnly        = false;
extern bool    HideJumpingStop               = false;
extern double  PipsAwayFromVisualJS          = 100;

Cheers :)

Tommaso
Hello, I test it appear the following error, thank you!Can you give me a compiled?
sure :smile:

Cheers :)

Tommaso
Is there any reason why Multi-purpose trade manager_ATR_BE&JS.ex4 works on latest Empty4 but similar mq4 file not working?
All times are UTC Page 48 of 57