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

MPTM's new home
https://www.stevehopwoodforex.com/phpBB3/viewtopic.php?t=64
Page 47 of 57
Author:  cad0811 [ Wed Jun 11, 2014 4:28 pm ]
Post subject:  MPTM's new home [fixed ATR SL/TP]

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!
Author:  milanese [ Wed Jun 11, 2014 5:10 pm ]
Post subject:  MPTM's new home [new ATR BE/JS]

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;
Multi-purpose trade manager_ATR_BE&JS.mq4
Cheers :)

Tommaso
Author:  cad0811 [ Wed Jun 11, 2014 5:23 pm ]
Post subject:  MPTM's new home [new ATR BE/JS]

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?
20140612012150.png
Author:  milanese [ Wed Jun 11, 2014 5:27 pm ]
Post subject:  MPTM's new home [new ATR BE/JS]

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:
Multi-purpose trade manager_ATR_BE&JS.ex4
Cheers :)

Tommaso
Author:  cad0811 [ Wed Jun 11, 2014 5:37 pm ]
Post subject:  MPTM's new home [new ATR BE/JS]

sure :smile:

Cheers :)

Tommaso
Thank you, I will test him
Author:  helloworld123 [ Thu Jul 10, 2014 8:26 am ]
Post subject:  MPTM's new home

Gd evening,

I got this error from the following settings:

1) Manage by ticketnumber.
2) BE - hidden enabled.
3) SL - hidden enabled.
4) TP - hidden enabled.
5) TrailStop

The moment the EA was loaded, this error pop up and my position was closed immediately.

.set is attached.

Please help and thank you :).
Author:  milanese [ Thu Jul 10, 2014 8:36 am ]
Post subject:  MPTM's new home

helloworld123 » Thu Jul 10, 2014 8:26 am wrote:Gd evening,

I got this error from the following settings:

1) Manage by ticketnumber.
2) BE - hidden enabled.
3) SL - hidden enabled.
4) TP - hidden enabled.
5) TrailStop

The moment the EA was loaded, this error pop up and my position was closed immediately.

.set is attached.

Please help and thank you :).
This a known problem the hidden SL ecc functions are not working correctly...
Please use it only without hidden stops.

Cheers :)

Tommaso
Author:  helloworld123 [ Thu Jul 10, 2014 9:41 pm ]
Post subject:  MPTM's new home

milanese » Thu Jul 10, 2014 8:36 am wrote:
helloworld123 » Thu Jul 10, 2014 8:26 am wrote:Gd evening,

I got this error from the following settings:

1) Manage by ticketnumber.
2) BE - hidden enabled.
3) SL - hidden enabled.
4) TP - hidden enabled.
5) TrailStop

The moment the EA was loaded, this error pop up and my position was closed immediately.

.set is attached.

Please help and thank you :).
This a known problem the hidden SL ecc functions are not working correctly...
Please use it only without hidden stops.

Cheers :)

Tommaso
Thank you for explaining.
Author:  Catagus [ Thu Jul 10, 2014 9:44 pm ]
Post subject:  MPTM's new home

Folks rookie question here, while using this EA I have the smiley face in the top right hand, I have all 4 enable trading option boxes enabled under tools > options, Ive also allowed live trading enabled under common of the EA itself, and of course enable Autotrading box is active. But i'm not getting any updating SL/TP values, ie no red lines on my charts and no values changing? I'm using the default settings of the most recent file posted. My build is 646? Thanks guys I appreciate the hard work
Author:  dudest [ Thu Jul 10, 2014 9:55 pm ]
Post subject:  MPTM's new home

Catagus » Fri Jul 11, 2014 12:44 am wrote:Folks rookie question here, while using this EA I have the smiley face in the top right hand, I have all 4 enable trading option boxes enabled under tools > options, Ive also allowed live trading enabled under common of the EA itself, and of course enable Autotrading box is active. But i'm not getting any updating SL/TP values, ie no red lines on my charts and no values changing? I'm using the default settings of the most recent file posted. My build is 646? Thanks guys I appreciate the hard work
Hallo,

Default settings should not allow you to do much

How would you like it to manage your trades?

Could you post your current set file ( saved settings for the EA )?

Cheers
All times are UTC Page 47 of 57