The Awesome Basket Forward Test

The place for Peaky and Peaky-related stuff.
Post Reply
User avatar
LittleCaro
Trader
Posts: 63
Joined: Tue May 19, 2015 7:09 am

The Awesome Basket Forward Test

Post by LittleCaro »

Hello guys,

Here is some news.

Sorry for late update, in short: i find a job (i work at L'Oréal Paris, a cosmetic brand). So i work in digital marketing. That's crazy !

Conerning Awesome, my demo has expired :( (for the records : 17 % performance and 7 % drawdown)

So at first october i create another one, it traded well, but then the bot stop trading during 1 week. Then, i download here the latest Awesome, and it started trading again.

So the results here is incomplete, but very nice.

Low drawdown, nice results :!!:

Thanks for the incredible work guys !
You do not have the required permissions to view the files attached to this post.
User avatar
c1borg
Trader
Posts: 456
Joined: Sun Aug 14, 2016 5:09 pm

The Awesome Basket Forward Test

Post by c1borg »

Early days but been running since 24th with Dclay (H4 PeakHiLo730) 1m :good: 7% increase on account
Capture.PNG
Capture1.png
You do not have the required permissions to view the files attached to this post.
andwen
Trader
Posts: 62
Joined: Tue Jun 03, 2014 4:07 am
Location: Melbourne, Aust

The Awesome Basket Forward Test

Post by andwen »

First of the month so posting some results using 1hr time frame and $25 basket close ver 1m.
No complaints for a $1000 a/c demo. :clap: :clap: :clap:

Now using on $1000 live a/c for a dose of reality.
Global Prime - Empty4 4.png
You do not have the required permissions to view the files attached to this post.
ianp
Trader
Posts: 83
Joined: Tue Nov 15, 2011 9:58 pm

The Awesome Basket Forward Test

Post by ianp »

I have been cleaning out my VPS and came across a demo that has been doing very well .

It has been running for 2 months On a 10k account GAIN 22.7% DD 7,5%

test2.png
test 1.png
I am not sure which setfile I used but here is a copy of it ....
workingwell oct17.set
You do not have the required permissions to view the files attached to this post.
lamdog330
Trader
Posts: 71
Joined: Wed Mar 22, 2017 7:33 am

The Awesome Basket Forward Test

Post by lamdog330 »

andwen » Wed Nov 01, 2017 1:18 am wrote:First of the month so posting some results using 1hr time frame and $25 basket close ver 1m.
No complaints for a $1000 a/c demo. :clap: :clap: :clap:

Now using on $1000 live a/c for a dose of reality.

What's your setfile?
User avatar
dreambig2
Trader
Posts: 46
Joined: Sat Nov 19, 2016 12:54 am
Location: US

The Awesome Basket Forward Test

Post by dreambig2 »

10-31 to start of this week....Spy+H1 doing ok so far.
You do not have the required permissions to view the files attached to this post.
User avatar
c1borg
Trader
Posts: 456
Joined: Sun Aug 14, 2016 5:09 pm

The Awesome Basket Forward Test

Post by c1borg »

Ok I am using Awesome 1m Dclay (H4 PeakHiLo730) since 24/10 and here are the latest results :clap:
Capture.PNG
Capture1.png
All trades have just closed and I belive its due to this code

Code: Select all

extern string  sep6="================================================================";
//Treating every trade open on the platform as part of a basket.
extern string  bas="---- Global Basket trading ----";
extern bool    AllTradesBelongToBasket=true;
//'Hard take profit'
extern double  BasketCashTakeProfit=0;
extern double  BasketCashPercentageTarget=10;
and

Code: Select all

bool HaveWeReachedGlobalBasketTP()
{

   //Close all trades on the platform if a full basket tp is hit.
   double BasketProfitTarget = BasketCashTakeProfit;
      
   //Calculate the dynamic tp
   if (!CloseEnough(BasketCashPercentageTarget, 0) )
      BasketProfitTarget = (AccountBalance() * BasketCashPercentageTarget) / 100;
      
   if (EntirePositionCashUpl >= BasketProfitTarget)
      return (true);
         
   //Not reached the target
   return(false);
I am no coder but I am thinking if my profit is 10% of my balance everything closes. My question is does this reset or do I need to restart the EA I am a bit confused as to how this is designed to work. Trying to improve my knowledge and hopefully not deemed a stupid question. :)

My setfile contains this setting
Capture2.png
You do not have the required permissions to view the files attached to this post.
User avatar
c1borg
Trader
Posts: 456
Joined: Sun Aug 14, 2016 5:09 pm

The Awesome Basket Forward Test

Post by c1borg »

Ok bit of an update and some more thoughts....
1. The instance on my VPS fired back up overnight so my reset question appears to have been answered. I think it is a good feature and will remain as it seems to have cleared up all the remaining trades, both good and bad and start afresh.
2. I need to stop being so lazy and delve under the hood myself, may need to learn some code :shock:
3. Possibility is the setfile I am using doesnt fully match version 1m :o latest version is ver 1q I think that is where I will begin, as there are a few versions/setfile combos now.

Anyway once again thanks for inventing the code/system in the first place guys. :cheer:

ps should I be posting here or the Awesome original version thread
dclayw
Trader
Posts: 139
Joined: Wed Nov 13, 2013 6:53 am
Location: Australia

The Awesome Basket Forward Test

Post by dclayw »

Yeah you're probably posting in the wrong thread. I would keep this thread for discussing specific forward tests rather then general type questions about the workings of the EA.
c1borg » Tue Nov 07, 2017 6:44 am wrote:All trades have just closed and I belive its due to this code

Code: Select all

extern string  sep6="================================================================";
//Treating every trade open on the platform as part of a basket.
extern string  bas="---- Global Basket trading ----";
extern bool    AllTradesBelongToBasket=true;
//'Hard take profit'
extern double  BasketCashTakeProfit=0;
extern double  BasketCashPercentageTarget=10;
Nope, your trades didn't close because of that code. Those settings above are the EA defaults. The set file you're using overrides those. The set file has cashprofit=5 and %target=0, those are the settings that will be used.

If you shut down the Empty4 instance or your VPS crashes or whatever, when you restart it the trades that were in place prior to that event should still be in place. The EA will just roll on and manage those trades.

Not sure why trades closed, did you change any other settings in the EA, like weekly profit target (that is set to 150 in the setfile)
dclayw
Trader
Posts: 139
Joined: Wed Nov 13, 2013 6:53 am
Location: Australia

The Awesome Basket Forward Test

Post by dclayw »

c1borg » Tue Nov 07, 2017 3:33 pm wrote:
3. Possibility is the setfile I am using doesnt fully match version 1m :o latest version is ver 1q I think that is where I will begin, as there are a few versions/setfile combos now.
I could be wrong (I often am) but I don't believe this is the case.

I'm pretty particular about putting some quality control in any testing I do, i.e. ensuring setfiles and EA versions match, appropriately naming setfiles, documenting the tests and settings used etc etc. That set file you're using was created on 19/9 and I'm almost certain that is the day v1m of the EA was released. 19/9 is the day I started my test with that setfile.
Post Reply

Return to “Peaky forum”