Griddy Wotsit Mk 2

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

Griddy Wotsit Mk 2

Post by SteveHopwood »

Hehe. What is EU on at the moment, and where can we buy it? :party:

: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.
User avatar
Gertje
Trader
Posts: 1936
Joined: Mon Dec 12, 2011 1:17 pm
Location: Middle of the Netherlands

Griddy Wotsit Mk 2

Post by Gertje »

It's insane.
Today over 1.000 pips, 3 pairs.
7,5% increase of balance, max DD 400 pips.
:!!:
User avatar
keydcuk
Trader
Posts: 104
Joined: Tue Dec 04, 2012 8:01 pm

Griddy Wotsit Mk 2

Post by keydcuk »

Gertje » Mon Mar 07, 2016 5:26 pm wrote:It's insane.
Today over 1.000 pips, 3 pairs.
7,5% increase of balance, max DD 400 pips.
:!!:
Congrats! :clap: I am 351 pips so far on only the GBPJPY. I don't know how I can figure out DD in pips but so far the last basket closed went to use 51 Euros in margin. I really need to finish up an application with GlobalPrime since someone said that it doesn't charge margin on hedged positions. Tallinex definitely does. I hate to be leaving such a good broker but I think you guys at SHF have sold me the idea to move to GP. :good:

Daniel
User avatar
Gertje
Trader
Posts: 1936
Joined: Mon Dec 12, 2011 1:17 pm
Location: Middle of the Netherlands

Griddy Wotsit Mk 2

Post by Gertje »

keydcuk » Mon Mar 07, 2016 5:36 pm wrote:
Congrats! :clap: I am 351 pips so far on only the GBPJPY. I don't know how I can figure out DD in pips but so far the last basket closed went to use 51 Euros in margin. I really need to finish up an application with GlobalPrime since someone said that it doesn't charge margin on hedged positions. Tallinex definitely does. I hate to be leaving such a good broker but I think you guys at SHF have sold me the idea to move to GP. :good:

Daniel
When you add MPBM to a blank chart, and set the closing values to a huge number that won't get hit, it keeps track of the DD in pips. Knowing the pipvalue is appr. $0,10 for 0,01 lots, you can calculate the max DD on the account.

For me, using 0,01 lots per $1.000 means every 100 pips = 1% DD.
You do not have the required permissions to view the files attached to this post.
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.

Griddy Wotsit Mk 2

Post by SteveHopwood »

Another update - V 1g in post 1, inspired by my observing groups of pending trades drifting too far apart. I had a look at the code I wrote to prevent this. It was bollocks.

You can copy this over the top of the existing IsGapBetweenGroupsTooBig() function, starting at line 1324:

Code: Select all

bool IsGapBetweenGroupsTooBig()
{
   //Return true if the gap between the lowest market buy and the lowest market sell is too large,
   //else return false
   
   int ExistingGap = 0;
   int PendingGap = 0;
   
   //Market trades
   if (MarketBuys > 0)
      if (MarketSells > 0)
      {
         //More buys than sells. Market has risen so gap is at the bottom of the buys
         if (MarketBuys > MarketSells)
         {
            ExistingGap = (HighestMarketBuyPrice - HighestMarketSellPrice) * factor;
         }//if (MarketBuys > MarketSells)
         
         //More sells than buys. Market has fallen so gap is at the top of the sells
         if (MarketBuys < MarketSells)
         {
            ExistingGap = (LowestMarketBuyPrice - LowestMarketSellPrice) * factor;
         }//if (MarketBuys > MarketSells)
         
         if (ExistingGap > MaxDistanceBetweenGroups)
            return(true);
      }//if (MarketSells > 0)

   //Pending trades
   if (BuyStops > 0)
      if (SellStops > 0)
      {
         //More buys than sells. Market has risen so gap is at the bottom of the buys
         if (BuyStops > SellStops)
         {
            PendingGap = (LowestBuyStopPrice - HighestSellStopPrice) * factor;
         }//if (BuyStops > SellStops)
         
         //More sells than buys. Market has fallen so gap is at the top of the sells
         if (BuyStops < SellStops)
         {
            PendingGap = (LowestBuyStopPrice - HighestSellStopPrice) * factor;
         }//if (BuyStops > SellStops)
         
         //Equal numbers
         if (BuyStops == SellStops)
         {
            PendingGap = (LowestBuyStopPrice - HighestSellStopPrice) * factor;
         }//if (BuyStops == SellStops)
         
         
         if (PendingGap > MaxDistanceBetweenGroups)
            return(true);
      }//if (PendingSellStop > 0)




   //Got this far, so gap is ok
   return(false);

}//bool IsGapBetweenGroupsTooBig()

 
: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.
zaguy
Trader
Posts: 43
Joined: Wed Feb 03, 2016 7:42 am

Griddy Wotsit Mk 2

Post by zaguy »

Thanks Steve for the hard work. This now really looks like a winner!

Have not yet opened live account. As soon as I do, I will make a donation. Thanks again!
User avatar
Gertje
Trader
Posts: 1936
Joined: Mon Dec 12, 2011 1:17 pm
Location: Middle of the Netherlands

Griddy Wotsit Mk 2

Post by Gertje »

Gertje » Mon Mar 07, 2016 1:33 pm wrote: It is a trade-off.

Set L4 to 'false' and you get lesser DD, but it takes longer to recover when price goes against the majority of positions.

A better option in my opinion is to make the pip-distance between trades bigger.
I set GBPJPY to 5pips, and get 'less' trades. Right now 13 buy and 12 sell. Since the winning side most of the time is twice the # of orders of the losing side, one or the other needs to open 6-7 trades again before being able to close.
Another way of dealing with this is expanding the grid to 15 or even 20 trades. It takes a big move to complete the grid, the basket might already be closed before that happens.

A lot of things to try out.
One thing strategytester told me, it is possible to have several hundreds orders in one pair if the EA is left alone.
k3v1n0s
Trader
Posts: 27
Joined: Mon Jan 13, 2014 8:50 pm
Location: Luxembourg

Griddy Wotsit Mk 2

Post by k3v1n0s »

Gertje » 07 Mar 2016, 18:26 wrote:It's insane.
Today over 1.000 pips, 3 pairs.
7,5% increase of balance, max DD 400 pips.
:!!:
Thought I was having fun with HGB'nG, but you guys are CELEBRATING with Griddy Wotsit. :roll:

I'm joining the party and setting this up on a demo with Gertje's setfile on EU 3pips and GJ 5pips. :lol:
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.

Griddy Wotsit Mk 2

Post by SteveHopwood »

k3v1n0s » Mon Mar 07, 2016 8:21 pm wrote:
Thought I was having fun with HGB'nG, but you guys are CELEBRATING with Griddy Wotsit. :roll:

I'm joining the party and setting this up on a demo with Gertje's setfile on EU 3pips and GJ 5pips. :lol:
Welcome Kevin. This thing is a hoot.

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

Griddy Wotsit Mk 2

Post by SteveHopwood »

Talking about a hoot, try this. I know that most of us open demos that represent the size of account we can hope to trade live, but try this instead.

Open a $100,000 demo account and trade GW at 1 lot. Lovely to feel how the rich feel from time to time. Who knows, but one day this might be you.

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

Return to “Automated trading systems”