Zennor's Piproid

Post your derivatives/discussion threads here.
Post Reply
User avatar
elljay58
Trader
Posts: 33
Joined: Thu Aug 08, 2013 7:35 am
Location: Roaming around the world!

Zennor's Piproid

Post by elljay58 »

milanese » Wed May 13, 2015 5:48 am wrote: You can too use for this ---click--> http://www.stevehopwoodforex.com/phpBB3 ... =21&t=4081
this one has Jumping Stop functions for the basket

Cheers :)

Tommaso
Tommaso,
:?:
Does SAPTM have a Basket jumping stop with a percentage setting?
I have been looking over the settings and did not see any mention of it. If it has could you point it out please as i am hopping to use MPTM to manage a "basket jumping stop" set as a percentage and not as a dollar or pip number.

Cheers Les
You don’t know what you don’t know, and that can KILL your account!
User avatar
milanese
TechAdmin
Posts: 3293
Joined: Wed Jan 09, 2013 9:02 am
Location: btr rdx, r8 +

Zennor's Piproid

Post by milanese »

elljay58 » Wed May 13, 2015 11:05 am wrote:
Tommaso,
:?:
Does SAPTM have a Basket jumping stop with a percentage setting?
I have been looking over the settings and did not see any mention of it. If it has could you point it out please as i am hopping to use MPTM to manage a "basket jumping stop" set as a percentage and not as a dollar or pip number.

Cheers Les
Questions for the ---click--> http://www.stevehopwoodforex.com/phpBB3 ... =21&t=4081 please only in the SAPTM thread..., but for fast answering, yes this one has % inputs all further questions please only in it's realated topic

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
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.

Zennor's Piproid

Post by SteveHopwood »

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.
piet.forex
Trader
Posts: 24
Joined: Mon May 14, 2012 6:59 pm

Zennor's Piproid

Post by piet.forex »


Steve

I see the Stochastic inputs are missing or am I missing some brain cells?

Piet
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.

Zennor's Piproid

Post by SteveHopwood »

I adapted the wrong version - I did wonder why we were suddenly up to such a high version number.

V 1b with both Stoch and the update is in post 1.

:xm:
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.
Leslie
Trader
Posts: 46
Joined: Thu Dec 04, 2014 12:58 am

Zennor's Piproid

Post by Leslie »

Not a good week for my Zennor Piproid trades (ignore the $ as one of my demos is $50K instead of $10K, and all just since 4/29):
Capture1.PNG
In trying to analyze why so bad, I see that pendings remain open even when the Piproid screen is showing "Mixed trend. Chill out and wait". I see in the code, if my very novice coding abilities are reading it right, that CountOpenTrades calls LookforClose for every open trade and that if ordertype is any type of buy or sell, including pendings, the pendings are to be deleted, using the variable 'ticket'.

I'm in the US, and to get the hidden SL-TP to work with the multi's (so my broker doesn't set all TP's and SL's to the TP and SL of the last trade put on) I had to substitute OrderTIcket() for TicketNo in the DrawPendingPriceLines function, but I cant puzzle out if perhaps that's whats going on here- it's beyond my abilities :(

Anyone have any insight here? Without screaming at me for trying to figure out the code and probably being all wrong?
You do not have the required permissions to view the files attached to this post.
ffxbettor
Trader
Posts: 12
Joined: Thu Feb 02, 2012 12:08 pm
Location: France

Zennor's Piproid

Post by ffxbettor »

Leslie » Fri May 15, 2015 3:55 pm wrote: Not a good week for my Zennor Piproid trades (ignore the $ as one of my demos is $50K instead of $10K, and all just since 4/29):


In trying to analyze why so bad, I see that pendings remain open even when the Piproid screen is showing "Mixed trend. Chill out and wait".
...

Anyone have any insight here? Without screaming at me for trying to figure out the code and probably being all wrong?

It's normal, according to the code of LookForTradeClosure() function : see the extracted code bellow.

Code: Select all

   //Extracted from LookForTradeClosure() :

   //Pending orders
   if (OrderType() == OP_BUYSTOP || OrderType() == OP_BUYLIMIT)
      if (Trend != uptrend)
         if (!BuyOpen)
            DeleteThisTrade = true;
         
   if (OrderType() == OP_SELLSTOP || OrderType() == OP_SELLLIMIT)
      if (Trend != downtrend)
         if (!SellOpen)
            DeleteThisTrade = true;
   
   if (DeleteThisTrade)
   ...etc
According to this code, when the trend has changed, pendings are not allways deleted.

A pending BUY is deleted if and only if there is no active BUY (same for SELLs).

If you want to allways force deletion of pending trades after a trend change, make the following changes in the code bellow (in LookForTradeClosure() function) :

Code: Select all

   //Extracted from LookForTradeClosure() :

   //Pending orders
   if (OrderType() == OP_BUYSTOP || OrderType() == OP_BUYLIMIT)
      if (Trend != uptrend)
         // if (!BuyOpen)   line of code commented out
            DeleteThisTrade = true;
         
   if (OrderType() == OP_SELLSTOP || OrderType() == OP_SELLLIMIT)
      if (Trend != downtrend)
         // if (!SellOpen)   line of code commented out
            DeleteThisTrade = true;
   
   if (DeleteThisTrade)
   ...etc

But don't forget this : there should be a good reason for the current functioning code, so may be it's better to ask Steve if it's a good idea or not to make this change ...

Cheers,
Didier
Leslie
Trader
Posts: 46
Joined: Thu Dec 04, 2014 12:58 am

Zennor's Piproid

Post by Leslie »

Well, that's certainly a simple fix- thank you VERY MUCH!!
ffxbettor
Trader
Posts: 12
Joined: Thu Feb 02, 2012 12:08 pm
Location: France

Zennor's Piproid

Post by ffxbettor »

Leslie » Fri May 15, 2015 4:26 pm wrote:Well, that's certainly a simple fix- thank you VERY MUCH!!
I'm not sure if it's a good idea or not ... but it will do what you want !
User avatar
Mike
Trader
Posts: 272
Joined: Sun Dec 11, 2011 12:30 pm
Location: Italy

Zennor's Piproid

Post by Mike »

Hi all

Looking at the User Guide, the different sets and my results I have started to check and recheck the user Guide and some questions have come up. Thanks for any comments.
1. What are the settings of “DaysVarious” if I want to refer to let’s say the last 36h.
2. Unlike PP and PPoS the ATR-multipliers are applicable for Main Trades and Multi Trades. Right?
3. Does setting AtrPeriod = 20, AtrTpMultiplier = 2.5 and AtrSlMultiplier=0
_____a. overwrite “MainTradeTakeProfitPips = 0 ”?
_____b. leave “MainTradeStopLossPips = 125” unchanged or set no SL at all?
_____c. Overwrite “MultiTakeProfitPips=30” or leave it unchanged?
_____d. Leave “MultiStopLossPips= 50” unchanged or set no SL at all?
4. Suppose I want to start trading 8 hours after market opening, in my case Monday 08.00 and continue all through Friday 16.00. Is there a way to set Trading hours to do this?

Has anybody varied DaysVarious=5 ootb?

Thanks Mike

PS: With woodlands setting I had an unbelievable start and am now -12% under my initial balance.
Image
Image
Post Reply

Return to “Pipcruiser's Pipmasher forum”