stevehopwoodforex.com
https://www.stevehopwoodforex.com/phpBB3/
Print view

Awesome - original version
https://www.stevehopwoodforex.com/phpBB3/viewtopic.php?t=5232
Page 21 of 46
Author:  lbs48 [ Mon Aug 14, 2017 3:02 pm ]
Post subject:  Awesome

Many thanks again.
I did what you advised me. We will see later.
Nice day!
Author:  1Direction [ Mon Aug 14, 2017 3:09 pm ]
Post subject:  Awesome

lbs48 » Mon Aug 14, 2017 4:02 pm wrote:Many thanks again.
I did what you advised me. We will see later.
Nice day!
If you can restart Empty4 or change time frame on chart with EA to re-initiate it
Author:  Wavegarrick [ Mon Aug 14, 2017 4:35 pm ]
Post subject:  Awesome

Hi Guys,

Tjf's 1min setfile. I can live with this :hi:

Cheers
Leon
Author:  manuoz [ Mon Aug 14, 2017 4:52 pm ]
Post subject:  Awesome

Congrats ! wonderful stats :clap:

Sorry but i have some difficulties reading your report :(
can you please tell me in how many days of trading awsome did you obtain this profit?

And last question, can you tell me what is this indicator report in the indicator window ?

thanks,
manuoz
Author:  Wavegarrick [ Mon Aug 14, 2017 5:10 pm ]
Post subject:  Awesome

Hi Manuoz,

I have been tracking this thread since the start of August so that would be the profit. Trade chart2 is the one at the bottom of the screen and look under Rene's stuff in the Data analysis thread.

Cheers
Leon
Author:  manuoz [ Mon Aug 14, 2017 5:13 pm ]
Post subject:  Awesome

Wavegarrick » Mon Aug 14, 2017 5:10 pm wrote:Hi Manuoz,

I have been tracking this thread since the start of August so that would be the profit. Trade chart2 is the one at the bottom of the screen and look under Rene's stuff in the Data analysis thread.

Cheers
Leon
So results are pretty nice for 15 days.
Sure you can live with it begining at 0.1 lot :)

Thanks a lot Leon.
Author:  TraderJoeForex [ Mon Aug 14, 2017 8:04 pm ]
Post subject:  Awesome

Quick Update.. Original M1basket going strong despite GJ still :lol:
Author:  TraderJoeForex [ Mon Aug 14, 2017 8:10 pm ]
Post subject:  Awesome

SteveHopwood » Sat Aug 12, 2017 5:17 pm wrote:V 1d is in post 1, with a fix to stop Awesome hanging up her hat when loaded onto a newly created demo account.

The starting balance shows up as a trade when code iterates through trades in the History tab, with an OrderType() of 6 so I have told her only to consider closed market trades.

Easy DIY. Copy this over the top of double AccumulatedProfit(int tf):

Code: Select all

double AccumulatedProfit(int tf)
{
   bool OnlyClosedOrders=False;
   datetime starttime = iTime(Symbol(), tf, 0);//Define a starting time based on the passed parameter
   double profit = 0; //initialize the profit to calculate
   
   //Iterate through the orders in History and calculate the accumulated profit/loss.
   for (int cc = OrdersHistoryTotal() -1; cc >= 0; cc--)
   {      
      if(BetterOrderSelect(cc, SELECT_BY_POS, MODE_HISTORY) )
         if(OrderCloseTime() >= starttime)
            if (OrderType() < 2)//We are only interested in market trades
               profit += (OrderProfit() + OrderSwap() + OrderCommission() );
   }//for (int cc = OrdersHistoryTotal() -1; cc >= 0; cc--)
   
   
   return(profit);
}//End double AccumulatedProfit(int tf)
I suggest holding off downloading the latest just in case something else crops up that I have forgotten. Download it a few hours before the markets open after the weekend.

:xm:
Thanks Steve, All working fine. Started a fresh MTF demo this week with no closure apart from £50 weekly target (0.01). Let's see if she can :smile:
Author:  kannyjie [ Tue Aug 15, 2017 2:29 am ]
Post subject:  Awesome

Wavegarrick » Mon Aug 14, 2017 4:35 pm wrote:Hi Guys,

Tjf's 1min setfile. I can live with this :hi:

Cheers
Leon
Hi Leon
Do you use this method:
" I do open my platform for trading 2 hours or so before London open, and close an hour or so before New York and let it loose again in NY."

Or

24/5?


Kanny
Author:  Wavegarrick [ Tue Aug 15, 2017 7:23 am ]
Post subject:  Awesome

Hi Kanny,

Yes I use the method as described in the quote.

Cheers
Leon
All times are UTC Page 21 of 46