Many thanks again.
I did what you advised me. We will see later.
Nice day!
Awesome - original version
- 1Direction
- Trader
- Posts: 97
- Joined: Sun Jan 29, 2017 8:37 pm
- Location: London
Awesome
If you can restart Empty4 or change time frame on chart with EA to re-initiate itlbs48 » Mon Aug 14, 2017 4:02 pm wrote:Many thanks again.
I did what you advised me. We will see later.
Nice day!
- Wavegarrick
- Trader
- Posts: 1172
- Joined: Sun Dec 30, 2012 11:21 am
- Location: South Africa
Awesome
Hi Guys,
Tjf's 1min setfile. I can live with this :hi:
Cheers
Leon
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.
- Wavegarrick
- Trader
- Posts: 1172
- Joined: Sun Dec 30, 2012 11:21 am
- Location: South Africa
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
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
So results are pretty nice for 15 days.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
Sure you can live with it begining at 0.1 lot
Thanks a lot Leon.
- TraderJoeForex
- Trader
- Posts: 1157
- Joined: Fri Mar 08, 2013 10:29 pm
- Location: South London
Awesome
Quick Update.. Original M1basket going strong despite GJ still 
You do not have the required permissions to view the files attached to this post.
- TraderJoeForex
- Trader
- Posts: 1157
- Joined: Fri Mar 08, 2013 10:29 pm
- Location: South London
Awesome
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 canSteveHopwood » 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):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.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)
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
Hi LeonWavegarrick » Mon Aug 14, 2017 4:35 pm wrote:Hi Guys,
Tjf's 1min setfile. I can live with this :hi:
Cheers
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
- Wavegarrick
- Trader
- Posts: 1172
- Joined: Sun Dec 30, 2012 11:21 am
- Location: South Africa
Awesome
Hi Kanny,
Yes I use the method as described in the quote.
Cheers
Leon
Yes I use the method as described in the quote.
Cheers
Leon