AllPairTradeManager(APTM)

MPTM's new home
Post Reply
DigitalCrypto
Trader
Posts: 237
Joined: Tue Feb 24, 2015 4:38 am

AllPairTradeManager(APTM)

Post by DigitalCrypto »

Hi Tommaso,

Sometimes I see a broker induced error on an ordermodify ticket. (Broker's fault) I have to chase down the trade by trade history log which is ok. But would a change like this to the notification alert make sense when dealing with a lot of pairs?

Code: Select all

if(result==false)ReportError(" APTM ",slm);

Code: Select all

if(result==false)ReportError(" APTM "+Symbol()+" ",slm);
Your thoughts?

-David
User avatar
milanese
TechAdmin
Posts: 3293
Joined: Wed Jan 09, 2013 9:02 am
Location: btr rdx, r8 +

AllPairTradeManager(APTM)

Post by milanese »

DigitalCrypto » Mon Jan 21, 2019 6:01 pm wrote:Hi Tommaso,

Sometimes I see a broker induced error on an ordermodify ticket. (Broker's fault) I have to chase down the trade by trade history log which is ok. But would a change like this to the notification alert make sense when dealing with a lot of pairs?

Code: Select all

if(result==false)ReportError(" APTM ",slm);

Code: Select all

if(result==false)ReportError(" APTM "+Symbol()+" ",slm);
Your thoughts?

-David
When it works for you, it is for sure a useful addition, that makes sense. I am sure this will to be help for some other users, to facilitate the controlling of the user log.

Cheers :)

Tommaso
User avatar
SteveHopwood
Owner
Posts: 9904
Joined: Tue Nov 15, 2011 8:43 am
Location: Misterton - an insignificant village in England. Very pleasant to live in.

AllPairTradeManager(APTM)

Post by SteveHopwood »

DigitalCrypto » Mon Jan 21, 2019 6:01 pm wrote:Hi Tommaso,

Sometimes I see a broker induced error on an ordermodify ticket. (Broker's fault) I have to chase down the trade by trade history log which is ok. But would a change like this to the notification alert make sense when dealing with a lot of pairs?

Code: Select all

if(result==false)ReportError(" APTM ",slm);

Code: Select all

if(result==false)ReportError(" APTM "+Symbol()+" ",slm);
Your thoughts?

-David
All this would do is show the chart symbol the manager is loaded onto.

Line 912 makes sure the relevant order is selected, so this should work:

Code: Select all

if(result==false)ReportError(" APTM "+OrderSymbol()+" ",slm);
:xm: :rocket:
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.
User avatar
milanese
TechAdmin
Posts: 3293
Joined: Wed Jan 09, 2013 9:02 am
Location: btr rdx, r8 +

AllPairTradeManager(APTM)

Post by milanese »

SteveHopwood » Mon Jan 21, 2019 10:33 pm wrote: All this would do is show the chart symbol the manager is loaded onto.

Line 912 makes sure the relevant order is selected, so this should work:

Code: Select all

if(result==false)ReportError(" APTM "+OrderSymbol()+" ",slm);
:xm: :rocket:
you are right, I did overlook that, thank you!

:rocket:
User avatar
SteveHopwood
Owner
Posts: 9904
Joined: Tue Nov 15, 2011 8:43 am
Location: Misterton - an insignificant village in England. Very pleasant to live in.

AllPairTradeManager(APTM)

Post by SteveHopwood »

milanese » Mon Jan 21, 2019 10:47 pm wrote:
SteveHopwood » Mon Jan 21, 2019 10:33 pm wrote: All this would do is show the chart symbol the manager is loaded onto.

Line 912 makes sure the relevant order is selected, so this should work:

Code: Select all

if(result==false)ReportError(" APTM "+OrderSymbol()+" ",slm);
:xm: :rocket:
you are right, I did overlook that, thank you!

:rocket:
It is the sort of thingy that we all overlook all the time. If this stuff were easy, then everyone would do it.

It isn't, so they don't.

:xm: :rocket:
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.
DigitalCrypto
Trader
Posts: 237
Joined: Tue Feb 24, 2015 4:38 am

AllPairTradeManager(APTM)

Post by DigitalCrypto »

Ah right. Thank you gentlemen.
User avatar
milanese
TechAdmin
Posts: 3293
Joined: Wed Jan 09, 2013 9:02 am
Location: btr rdx, r8 +

Update-AllPairTradeManager(APTM)

Post by milanese »

update version 2.57 January 23,2019
update making the log-file more legible please go to the first post to download it, it is only a little fix like mentioned in the previous posts here, thanks to DigitalCrypto and Steve for this.

Cheers :)

Tommaso
User avatar
goodo
Trader
Posts: 38
Joined: Thu Mar 23, 2017 10:31 pm

AllPairTradeManager(APTM)

Post by goodo »

Milanese, I have been thinking a pretty good idea would be to make the trailing stop begin working after the EA deletes the TP. So you enter a trade with whatever SL you want, even no SL if you wish. Then APTM moves the SL to break even and when price approaches TP by x amount of pips the EA removes the TP and the JS begins functioning.Similar to the current way it works but tailored to each situation, as TP can and often does depend on the specific pattern price is making, and in my case is never a set amount of pips.

Do you like this idea Milanese?
User avatar
milanese
TechAdmin
Posts: 3293
Joined: Wed Jan 09, 2013 9:02 am
Location: btr rdx, r8 +

AllPairTradeManager(APTM)

Post by milanese »

goodo » Fri Feb 08, 2019 4:43 pm wrote:Milanese, I have been thinking a pretty good idea would be to make the trailing stop begin working after the EA deletes the TP. So you enter a trade with whatever SL you want, even no SL if you wish. Then APTM moves the SL to break even and when price approaches TP by x amount of pips the EA removes the TP and the JS begins functioning.Similar to the current way it works but tailored to each situation, as TP can and often does depend on the specific pattern price is making, and in my case is never a set amount of pips.

Do you like this idea Milanese?
it is again a specialization of a special function the APTM has, sure it can make sense no doubt, but I personally find it not so important that I will add it actually.

Cheers )

Tommaso
User avatar
SteveHopwood
Owner
Posts: 9904
Joined: Tue Nov 15, 2011 8:43 am
Location: Misterton - an insignificant village in England. Very pleasant to live in.

AllPairTradeManager(APTM)

Post by SteveHopwood »

I waited until Tommaso replied before posting. I knew what he was going to write, but wanted to make sure.

He and I have both learned this thingy from hard-won experience of doing so in the past: never respond to individual request for free coding additions to a well-established piece of software. All it does is bollocks up the initial program.

You want a custom addition? Offer to pay him for doing so privately. He is unwell and has not much energy at the moment and so is unlikely to respond but he is never going to respond to a request for a freebie here until he feels a lot better.

Not sure what I am talking about? http://www.stevehopwoodforex.com/phpBB3 ... 13#p164013

:xm: :rocket:
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.
Post Reply

Return to “Utilities Indicators and Scripts”