Awesome - original version

The place for Peaky and Peaky-related stuff.
Post Reply
lbs48
Trader
Posts: 106
Joined: Thu May 22, 2014 8:02 am
Location: Prague, Czech Republic

Awesome

Post by lbs48 »

Many thanks again.
I did what you advised me. We will see later.
Nice day!
User avatar
1Direction
Trader
Posts: 97
Joined: Sun Jan 29, 2017 8:37 pm
Location: London

Awesome

Post by 1Direction »

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
User avatar
Wavegarrick
Trader
Posts: 1172
Joined: Sun Dec 30, 2012 11:21 am
Location: South Africa

Awesome

Post by Wavegarrick »

Hi Guys,

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

Cheers
Leon
You do not have the required permissions to view the files attached to this post.
manuoz

Awesome

Post by manuoz »

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
User avatar
Wavegarrick
Trader
Posts: 1172
Joined: Sun Dec 30, 2012 11:21 am
Location: South Africa

Awesome

Post by Wavegarrick »

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
manuoz

Awesome

Post by manuoz »

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

Awesome

Post by TraderJoeForex »

Quick Update.. Original M1basket going strong despite GJ still :lol:
You do not have the required permissions to view the files attached to this post.
User avatar
TraderJoeForex
Trader
Posts: 1157
Joined: Fri Mar 08, 2013 10:29 pm
Location: South London

Awesome

Post by TraderJoeForex »

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:
You do not have the required permissions to view the files attached to this post.
kannyjie
Posts: 9
Joined: Mon Sep 03, 2012 1:42 pm

Awesome

Post by kannyjie »

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
User avatar
Wavegarrick
Trader
Posts: 1172
Joined: Sun Dec 30, 2012 11:21 am
Location: South Africa

Awesome

Post by Wavegarrick »

Hi Kanny,

Yes I use the method as described in the quote.

Cheers
Leon
Post Reply

Return to “Peaky forum”