Griddy Wotsit Mk 2

Post Reply
User avatar
keydcuk
Trader
Posts: 104
Joined: Tue Dec 04, 2012 8:01 pm

Griddy Wotsit Mk 2

Post by keydcuk »

Gertje » Wed Mar 09, 2016 12:47 pm wrote: Maybe change the "MaxDistanceBetweenGroupsPips" to a level like '20' or whatever and observe what happens then. I believe it will behave like a 2 trade grid and re-sends after every 2nd trade.
I tried this and it doesn't seem to work. All it does it keeps deleting pending positions and resetting them even when nothing is triggered and PA is in the middle of a grid.

I guess what I am trying to do with this is limit the amount of hedging and have it trade more often. My hopeful setting would be to simply have a grid in both directions 10 pips apart and take profit at 10 pips. Once the 10 pips has been achieved, start again from the absolute beginning of EA grid settings.

With the grid being 10 pips apart, the most it could do is trigger L1 and go back the opposite direction to have the opposing L3 to seal the deal. Otherwise if it trends to L2' in the same direction, essentially you would have closed 10 pips and have the EA restart.

By doing this, you may not get as many pips in a day but DD and hedges waiting to close would be limited to virtually nothing at all. Another thing to consider is you would limit your exposure to negative swap. This would be done with the L4 set to false opens to opposing direction.

This is really stirring something in my head as I am thinking this, I am thinking what if the grid resets so that you are always 100% in a trade? I think that is waiting for another post. ERRRRR I so wish I knew how to code, I would love code something myself.

Cheers!

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 »

Well, that was another fun day..... :clap:
Running 8 pairs since last night, adding 1.000 pips today.
One thing I'm sure off, this can't last long.
Huge profit comes with huge risk, we just haven't discovered it yet.
Closed a 120 trade basket today....... :shock:
Like Martingale, this system can't loose.
Just make sure you have an unlimited bankroll...... :arrrg:
Peepaws
Trader
Posts: 121
Joined: Thu Nov 27, 2014 11:19 pm

Griddy Wotsit Mk 2

Post by Peepaws »

I'm starting to use sAPBM to close all trades at a certain equity gain. We all know how many open positions you can end up with this EA and this will allow all trades to close once the Balance to Equity gap comes closer together and allow us to restart the grid, without having to watch all the time to close manually.

The other great thing about this manager is it will tell you the high and low watermark on your equity, giving you an idea on the swings GW makes while you're sleeping, etc.

I've set mine to close at about 2.5% equity gain, see how it goes.

Heres the link to this awesome basket manager.

http://www.stevehopwoodforex.com/phpBB3 ... 94#p113181

This would be a very helpful for other EA's as well.
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 »

EURGBPM1.png
Global Prime - Empty4 4.png
:!!: :!!: :!!: :!!:
You do not have the required permissions to view the files attached to this post.
Peepaws
Trader
Posts: 121
Joined: Thu Nov 27, 2014 11:19 pm

Griddy Wotsit Mk 2

Post by Peepaws »

Whoa man is that Windows 98?!?!?!? :lol: :lol: :lol:
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 »

Peepaws » Wed Mar 09, 2016 10:39 pm wrote:Whoa man is that Windows 98?!?!?!? :lol: :lol: :lol:
Nope, just my VPS running Windows Webserver 2008?

It's all I have, and an iPad to connect to it.... :smile:
User avatar
rapple
Trader
Posts: 277
Joined: Fri Feb 21, 2014 10:56 pm
Location: Sydney, Australia

Griddy Wotsit Mk 2

Post by rapple »

Hi Gertje

Would you mind sharing your set file.

I tried to set up GW on Global Prime (see attachment) and it sent '2038986 messages and 24,000 modifications' to their server overnight. When I check my computer in the morning my access to the GP server was blocked due to me having a "Top hyperactive account" :youknow: . Anyway is it obvious that I have some of my settings wrong.

I must say that Global Prime showed excellent service. They quickly traced down the offending EA and reinstating my service :clap: :clap: :clap:

Kind regards Richard
You do not have the required permissions to view the files attached to this post.
User avatar
Elixe
Trader
Posts: 98
Joined: Tue Jun 04, 2013 6:44 pm
Location: France

Griddy Wotsit Mk 2

Post by Elixe »

Same thing happened to me monday/tuesday, not quite sure what caused this for the moment
:D
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 »

The problem with the pendings being placed then deleted over and over again is a logic problem. I have attempted a fix in 1h in post 1, but am not sure that is will work.

Here is the attempted fix to the function if you want to make the update yourselves. It begins 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 (PendingTradesTotal < (GridSize * 2) )
   {
      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)
   
   }//if (PendingTradesTotal < (GridSize * 2) )
   


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

Man, this is like watching paint drying...... :cry:
Post Reply

Return to “Automated trading systems”