MPTM's new home

MPTM's new home
Locked
User avatar
cad0811
Trader
Posts: 97
Joined: Sat Sep 08, 2012 1:09 pm

MPTM's new home [fixed ATR SL/TP]

Post by cad0811 »

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!
Thank you so much for all the people here!Thank you for your selfless!My growth cannot leave your work!Cheers!
User avatar
milanese
TechAdmin
Posts: 3293
Joined: Wed Jan 09, 2013 9:02 am
Location: btr rdx, r8 +

MPTM's new home [new ATR BE/JS]

Post by milanese »

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
You do not have the required permissions to view the files attached to this post.
Global Prime is the official SHF broker :yahoo:
Searching for Servers and Workstations with individual configuration?
Just PM
:smile: Click here to go to the BoardKnowledgeBase
NOTE: Cookies and JavaScript are required for the using the board, with full functionality
User avatar
cad0811
Trader
Posts: 97
Joined: Sat Sep 08, 2012 1:09 pm

MPTM's new home [new ATR BE/JS]

Post by cad0811 »

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
You do not have the required permissions to view the files attached to this post.
Thank you so much for all the people here!Thank you for your selfless!My growth cannot leave your work!Cheers!
User avatar
milanese
TechAdmin
Posts: 3293
Joined: Wed Jan 09, 2013 9:02 am
Location: btr rdx, r8 +

MPTM's new home [new ATR BE/JS]

Post by milanese »

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
You do not have the required permissions to view the files attached to this post.
Global Prime is the official SHF broker :yahoo:
Searching for Servers and Workstations with individual configuration?
Just PM
:smile: Click here to go to the BoardKnowledgeBase
NOTE: Cookies and JavaScript are required for the using the board, with full functionality
User avatar
cad0811
Trader
Posts: 97
Joined: Sat Sep 08, 2012 1:09 pm

MPTM's new home [new ATR BE/JS]

Post by cad0811 »

sure :smile:

Cheers :)

Tommaso
Thank you, I will test him
Thank you so much for all the people here!Thank you for your selfless!My growth cannot leave your work!Cheers!
helloworld123
Trader
Posts: 27
Joined: Sat Apr 26, 2014 2:40 pm

MPTM's new home

Post by helloworld123 »

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 :).
You do not have the required permissions to view the files attached to this post.
User avatar
milanese
TechAdmin
Posts: 3293
Joined: Wed Jan 09, 2013 9:02 am
Location: btr rdx, r8 +

MPTM's new home

Post by milanese »

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
Global Prime is the official SHF broker :yahoo:
Searching for Servers and Workstations with individual configuration?
Just PM
:smile: Click here to go to the BoardKnowledgeBase
NOTE: Cookies and JavaScript are required for the using the board, with full functionality
helloworld123
Trader
Posts: 27
Joined: Sat Apr 26, 2014 2:40 pm

MPTM's new home

Post by helloworld123 »

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.
Catagus
Posts: 2
Joined: Thu Jul 10, 2014 4:45 am

MPTM's new home

Post by Catagus »

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
dudest
Trader
Posts: 1847
Joined: Tue May 08, 2012 2:37 pm

MPTM's new home

Post by dudest »

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
Locked

Return to “Utilities Indicators and Scripts”