Rinse 'n Repeat

Post Reply
roman01
Posts: 1
Joined: Tue Apr 05, 2016 3:57 pm

Rinse 'n Repeat

Post by roman01 »

Thank you Cyberevil for the answer.
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.

Rinse 'n Repeat

Post by SteveHopwood »

V 1c is in post 1. Somehow, an important edit I made earlier got lost. :arrrg: Don't try to do this for yourselves. Download the latest version.

: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.
szfxtrader
Trader
Posts: 377
Joined: Sun Feb 10, 2013 9:36 am

Rinse 'n Repeat

Post by szfxtrader »

SteveHopwood » Mon Apr 25, 2016 6:29 pm wrote:V 1c is in post 1. Somehow, an important edit I made earlier got lost. :arrrg: Don't try to do this for yourselves. Download the latest version.

:xm:
Thank you!
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.

Rinse 'n Repeat

Post by SteveHopwood »

Here is one for enthusiastic bloop spotters. During Craptesting, RnR enters an endless loop where it is trying to close a trade that no longer exists, and is not allowed to exit the loop until the trade is closed. Ludo tells me that his has happened to him several times on demo today.

I cannot find it. Anyone here up for the challenge?

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

Rinse 'n Repeat

Post by SteveHopwood »

Damn, bollocks, buggery, crap fuck and any other expletive you guys want to add. Some of the code I added this afternoon has gone missing. Not a clue how. It just did.

V 1d is in post one with the fix for something or other that got unfixed whilst I was fixing something else.

This bloody EA worked perfectly until I started messing with it. :arrrg: :arrrg: :arrrg: :arrrg: :arrrg: :arrrg: :arrrg:

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

Rinse 'n Repeat

Post by SteveHopwood »

It probably didn't work perfectly. Still making shed loads of pips from it. :clap: :clap: :clap:

: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

Rinse 'n Repeat

Post by Gertje »

It sure is fun to watch. :yahoo:
RnR isn't shy of trading either, it did 112 trades on 1 single pair today and made over 5% doing it's thing.
This way it pays for my VPS and lunch as well... :mrgreen:
Bruster400
Trader
Posts: 192
Joined: Tue Sep 24, 2013 3:19 pm

Rinse 'n Repeat

Post by Bruster400 »

SteveHopwood » Mon Apr 25, 2016 8:34 pm wrote:
Anyone here up for the challenge?

:xm:
Had the same thing earlier - so here's my tuppence worth. I think it's the "while"s in the simple offset :

Code: Select all

  
while (!result)
{
     result = CloseOrder(LowestBuyTicketNo);               
}//while (!result)
So could add a counter like:

Code: Select all

while (!result)
                  {
                     CloseAttempts++;
                     if (CloseAttempts >= 15)
                      {
                      CloseAttempts = 0;
                      return;
                      }
                     
                     result = CloseOrder(HighestSellTicketNo);
                                    
                  }//while (!result)
Or would "break" rather than "return" get you out of it so you don't miss anything else?
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.

Rinse 'n Repeat

Post by SteveHopwood »

Bruster400 » Mon Apr 25, 2016 8:19 pm wrote:
SteveHopwood » Mon Apr 25, 2016 8:34 pm wrote:
Anyone here up for the challenge?

:xm:
Had the same thing earlier - so here's my tuppence worth. I think it's the "while"s in the simple offset :

Code: Select all

  
while (!result)
{
     result = CloseOrder(LowestBuyTicketNo);               
}//while (!result)
So could add a counter like:

Code: Select all

while (!result)
                  {
                     CloseAttempts++;
                     if (CloseAttempts >= 15)
                      {
                      CloseAttempts = 0;
                      return;
                      }
                     
                     result = CloseOrder(HighestSellTicketNo);
                                    
                  }//while (!result)
Or would "break" rather than "return" get you out of it so you don't miss anything else?
The latest version with the replaced fixes hasn't stalled yet in craptesting. The counter thingy always works but I could not see where to add it. Let's just see what happens for now.

: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
TraderJoeForex
Trader
Posts: 1157
Joined: Fri Mar 08, 2013 10:29 pm
Location: South London

Rinse 'n Repeat

Post by TraderJoeForex »

TraderJoeForex » Mon Apr 25, 2016 7:44 am wrote:..... testing 2pip grid on demo and 5pip grid on cent account :jump:
Round 1.... 2pip vs 5pip

.. 2 pip = 1631pips (GP demo)

vs

5pip = 117pips (RF cent Live)

.. the (fixed) spread eats into my cent account a chunky chunk or two but huge difference none the less and both very positive for one day's hands off trading!!

Draw-down was only about 2 x with 2pip amazingly so going to reverse the test tomorrow :mrgreen:
You do not have the required permissions to view the files attached to this post.
Post Reply

Return to “Automated trading systems”