Slopey family general discussion and reports

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

Slopey family general discussion and reports

Post by SteveHopwood »

Results in the week ending 30th March 2018. First figure is for the week, second is cumulative:

Peaky +415 +4696
Griddy +183 +820
Holy -86 +1154
Buddha -755 +577

: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. [email protected] 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: 9754
Joined: Tue Nov 15, 2011 8:43 am
Location: Misterton - an insignificant village in England. Very pleasant to live in.

Slopey family general discussion and reports

Post by SteveHopwood »

Results for the week ending 6th April 2018:

Peaky +1523
Griddy +208
Buddha -289
Holy -297

: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. [email protected] 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: 9754
Joined: Tue Nov 15, 2011 8:43 am
Location: Misterton - an insignificant village in England. Very pleasant to live in.

Slopey family general discussion and reports

Post by SteveHopwood »

I have experimented by reversing the polarities of the Flying Buddha. Details at
http://www.stevehopwoodforex.com/phpBB3 ... 104&t=5432

: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. [email protected] 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: 9754
Joined: Tue Nov 15, 2011 8:43 am
Location: Misterton - an insignificant village in England. Very pleasant to live in.

Slopey family general discussion and reports

Post by SteveHopwood »

Results for the week ending 13th April 2018
Peaky +1142
Reverse Buddha +969 New EA this week
Griddy +405
Holy -79
Buddha -190

: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. [email protected] 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: 9754
Joined: Tue Nov 15, 2011 8:43 am
Location: Misterton - an insignificant village in England. Very pleasant to live in.

Slopey family general discussion and reports

Post by SteveHopwood »

This is part of a PM I received from Thomas earlier.
tomele wrote:Hi Steve.

Three of my 4 tests still didnt close their trades on Friday. Holy did, while Griddy, Peaky and Crossy refused.
Anyone else experience the failures?

: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. [email protected] 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: 9754
Joined: Tue Nov 15, 2011 8:43 am
Location: Misterton - an insignificant village in England. Very pleasant to live in.

Slopey family general discussion and reports

Post by SteveHopwood »

Results for the week ending 20th April 2018. Oops.

Peaky 0
Holy -45
Buddha -63
Reverse -377
Griddy -1584


: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. [email protected] 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: 9754
Joined: Tue Nov 15, 2011 8:43 am
Location: Misterton - an insignificant village in England. Very pleasant to live in.

Slopey family general discussion and reports

Post by SteveHopwood »

I have made the changes suggested by radar http://www.stevehopwoodforex.com/phpBB3 ... 49#p161249 to the entire family apart from Moving, which was a failure from the start. I have also made the changes to the shell.

There is no hurry to re-download as these changes only affect the Friday/Saturday closure functions.

It is easy to DIY. Do a search for, "void ShutDownForTheWeekend()" and copy this over the top of the entire function:

Code: Select all

void ShutDownForTheWeekend()
{

   //Close/delete all trades to be flat for the weekend.
   
   int day = TimeDayOfWeek(TimeLocal() );
   int hour = TimeHour(TimeLocal() );
   bool CloseDelete = false;
   
   //Friday
   if (day == 5)
   {
      if (hour >= FridayCloseAllHour)
         if (TotalCashUpl < 0)
         {
      	   if (TotalCashUpl >= MaxAllowableCashLoss)//MaxAllowableCashLoss is a negative number
               CloseDelete = true;
         } //if (TotalCashUpl < 0)
   }//if (day == 5)
 
   //Saturday
   if (day == 6)
   {
      if (hour >= SaturdayCloseAllHour)
         if (TotalCashUpl < 0)
         {
      	   if (TotalCashUpl >= MaxAllowableCashLoss)//MaxAllowableCashLoss is a negative number
               CloseDelete = true;
         } //if (TotalCashUpl < 0)
   }//if (day == 6)
   
   if (CloseDelete)
   {
      CloseAllTrades(AllSymbols, AllTrades);
      if (ForceTradeClosure)
         CloseAllTrades(AllSymbols, AllTrades);
      if (ForceTradeClosure)
         CloseAllTrades(AllSymbols, AllTrades);
   }//if (CloseDelete)
      

}//End void ShutDownForTheWeekend()
: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. [email protected] 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.
Radar
Trader
Posts: 437
Joined: Fri Mar 23, 2012 5:39 pm
Location: Round the bend ;)

Slopey family general discussion and reports

Post by Radar »

Hey Steve,

The gears in my noggin were slowly grinding, and I realised that,

Code: Select all

if (TotalCashUpl < 0)
{
...
}
would only allow baskets with a floating loss to close... Baskets with floating profit will stay open over the weekend. :(

Ahh, the joys of of sporadic coding ;)

My memory is like one of them round things with holes in it...
It starts with "S"...

Swiss cheese! My memory's like a wheel of Swiss cheese! ;)

Take care,
&
Have fun! =8^)
Check out my new, (well, old now), manual trade & automatic scale-in manager,
StackManV2
User avatar
SteveHopwood
Owner
Posts: 9754
Joined: Tue Nov 15, 2011 8:43 am
Location: Misterton - an insignificant village in England. Very pleasant to live in.

Slopey family general discussion and reports

Post by SteveHopwood »

I had completely forgotten radar's post just above this one - or maybe missed it. Sorry radar. Thomas just sent me a pm pointing out the same thingy.

This bloody function is starting to seriously annoy me. We are talking pre-infant school level coding. Morons banned for life from SHF could have coded it, yet I have fucked it up at ever stage of the way. :arrrg: :arrrg: :arrrg: :arrrg: :arrrg: :arrrg: :arrrg: :arrrg: :arrrg: :arrrg: :arrrg: :arrrg: :arrrg: :arrrg: :arrrg:

I have made the required changes to the entire family apart from Moving, which was a failure from the start. I have also made the changes to the shell.

There is no hurry to re-download as these changes only affect the Friday/Saturday closure functions.

It is easy to DIY. Do a search for, "void ShutDownForTheWeekend()" and copy this over the top of the entire function:

Code: Select all

void ShutDownForTheWeekend()
{

   //Close/delete all trades to be flat for the weekend.
   
   int day = TimeDayOfWeek(TimeLocal() );
   int hour = TimeHour(TimeLocal() );
   bool CloseDelete = false;
   
   //Friday
   if (day == 5)
   {
      if (hour >= FridayCloseAllHour)
         if (TotalCashUpl >= MaxAllowableCashLoss)//MaxAllowableCashLoss is a negative number
            CloseDelete = true;
   }//if (day == 5)
 
   //Saturday
   if (day == 6)
   {
      if (hour >= SaturdayCloseAllHour)
         if (TotalCashUpl >= MaxAllowableCashLoss)//MaxAllowableCashLoss is a negative number
            CloseDelete = true;
   }//if (day == 6)
    
   if (CloseDelete)
   {
      CloseAllTrades(AllSymbols, AllTrades);
      if (ForceTradeClosure)
         CloseAllTrades(AllSymbols, AllTrades);
      if (ForceTradeClosure)
         CloseAllTrades(AllSymbols, AllTrades);
   }//if (CloseDelete)
      

}//End void ShutDownForTheWeekend()

Ever heard the phrase, "Don't shoot the messenger?"

The next messenger about this bloody function had better be wearing Gracie as body armour.

:oops:
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. [email protected] 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

Slopey family general discussion and reports

Post by Gertje »

SteveHopwood » Wed Apr 25, 2018 8:00 pm wrote: Ever heard the phrase, "Don't shoot the messenger?"

The next messenger about this bloody function had better be wearing Gracie as body armour.

:oops:
Or carry a folder..... :smile:
Post Reply

Return to “Super Slope EA's”