Awesome - original version

The place for Peaky and Peaky-related stuff.
Post Reply
DigitalCrypto
Trader
Posts: 237
Joined: Tue Feb 24, 2015 4:38 am

Awesome - original version

Post by DigitalCrypto »

Hey Tomele,

I really like what you did with the dashboard. One thing that I had to modify slightly was the TextYPos for all the pairs. I have limited real estate on VPS screens.

Around line 1447:

Would it be a good idea to make it user adjustable or no?

Code: Select all

TextYPos+=(int)(fontSise*2.5);
Becomes

Code: Select all

extern double LineSpacing = 1.5;

TextYPos+=(int)(fontSise*LineSpacing);
Appreciate your input.

- David
You do not have the required permissions to view the files attached to this post.
jade768
Posts: 8
Joined: Thu Jul 13, 2017 6:48 am

Awesome - original version

Post by jade768 »

eaymon » Wed Sep 20, 2017 7:56 pm wrote:
please mind me as i drool over myself...
Nice :clap: which set file are you using?
User avatar
ThaiGuy
Trader
Posts: 17
Joined: Mon Apr 29, 2013 6:33 am

Awesome - original version

Post by ThaiGuy »

jade768 » Thu Sep 21, 2017 12:55 pm wrote:
Nice :clap: which set file are you using?
interested as well to run in on a few seperate demo accounts, all different brokers :)
DigitalCrypto
Trader
Posts: 237
Joined: Tue Feb 24, 2015 4:38 am

Awesome - original version

Post by DigitalCrypto »

Somehow I set trade buffer pips to exactly 0. That's what I get for doing this stuff tired. It's back to default at 5 pips on v2 set file. You probably wouldn't notice unless you were testing live anyway. :D
DigitalCrypto
Trader
Posts: 237
Joined: Tue Feb 24, 2015 4:38 am

Awesome - original version

Post by DigitalCrypto »

TraderJoeForex » Wed Sep 20, 2017 6:46 am wrote: ...
The purpose of FB here is just as a trade trigger. FB are not at all accurate in terms of direction but they do offer a trigger at extremes of local price action from which price will breakout against or retrace (usually breakout).

....
One of the traders in my group, Mike, mentioned that there is a 60% chance of an inside bar followed by a lower close on m1. This means that the entry would be more reliable but naturally less of them. I bring this up because Oanda doesn't present many FBs on live. Where as a bucket shop like Tradersway has literally hundreds of them.

I've incorporated these signals into variations of AO for testing to see if they aid in profit while reducing draw down on the m1 trader. It's too early for results but so far it is producing about 100% better profit with less draw down.

I will keep you guys updated as testing moves forward.

- David
getdown71
Trader
Posts: 15
Joined: Wed Nov 16, 2011 11:12 pm

Awesome - original version

Post by getdown71 »

Any thoughts out there on Awesome Original vs Bells and whistles ? (i have yet to try B&W)
DigitalCrypto
Trader
Posts: 237
Joined: Tue Feb 24, 2015 4:38 am

Awesome - original version

Post by DigitalCrypto »

AO pays out well if you take the time to understand it, don't over leverage it and tweak it. I've not had time to check out and test other versions yet.

I'm a firm believer in simplicity and the principle of "If it aint broke, don't fix it". Maybe they got it more profitable? Best way to find out is to do your own testing and perform your own due diligence. Then make a decision. :D
User avatar
Weyk
Trader
Posts: 42
Joined: Mon Apr 10, 2017 3:53 pm

Awesome - original version

Post by Weyk »

DigitalCrypto » 23 Sep 2017, 09:11 wrote:AO pays out well if you take the time to understand it, don't over leverage it and tweak it. I've not had time to check out and test other versions yet.

I'm a firm believer in simplicity and the principle of "If it aint broke, don't fix it". Maybe they got it more profitable? Best way to find out is to do your own testing and perform your own due diligence. Then make a decision. :D
DigitalCrypto i think that you are on right track to use candlestick patterns. You said earlier about some kind engulfing pattern.
If you look here almost all are some kind
of engulfing

http://thepatternsite.com/CandleReverse.html

Cheers.
If you put your mind onto something sooner or later it will come up with the solution.
DigitalCrypto
Trader
Posts: 237
Joined: Tue Feb 24, 2015 4:38 am

Awesome - original version

Post by DigitalCrypto »


DigitalCrypto i think that you are on right track to use candlestick patterns. You said earlier about some kind engulfing pattern.
If you look here almost all are some kind
of engulfing

--link removed--

Cheers.
Hi Weyk,

When a bar closes higher or lower than the previous bar it means that it has broken some kind of minor support or resistance on a lower time frame. This is the main reason for buying breakout tops and selling breakdown bottoms. Naturally we want to get best possible price so we look for pullbacks on lower time frames. And price will pull back 100% of the time.....eventually. It just depends which time frame you are trading. It could be months, weeks, days, minutes or even ticks.

That being said, you will find that the most successful candle patterns will be where the bars on the right closed higher or lower than the ones on the left. In reality it only takes 3 bars or periods to determine what price is going to do next and you will always see the same price at least twice. Market makers aren't allowed to push the price too far from the pre-determined VWAP without messing things up and getting fined heavily. So they will push price to extremes then back and fill the positions based on time (read: Breakout and retest and market cycles). A pit trader taught me this. I over simplify here for brevity.

I'm working on a rendition of AO that uses said bars for entries into the direction of the trend. Steve sent over some patches to my patches today. Damn fine work Steve huge thank you! I will put them on and test for another week. Hopefully it will produce similar results with less DD than AO. But it's already hard to beat this algo.

Have a great weekend,
David :xm:
DigitalCrypto
Trader
Posts: 237
Joined: Tue Feb 24, 2015 4:38 am

Awesome - original version

Post by DigitalCrypto »

@Steve

I am noticing a slight bug with regard to max positions and position direction. This happens when the EA is dropped fresh on a chart with already open trades in the terminal. It also happens when the EA is recompiled and/or reloaded from adjusting a setting.

I see when Awesome Original is iterating through the pairs looking for signals I notice that there is a line of code that comes after that builds a composite picture of our baskets that comes after our signals.

Code: Select all

         //Build a picture of the trade position.
         CountOpenTrades(symbol, MagicNumbers[tfIndex], tfIndex);
Is it possible to also perform this check prior to looking for positions without taking a performance hit?

Here is my proposed change which adds the function at the top of the for loop

Code: Select all

      //Iterate through the time frames chosen by the user.
      for (int tfIndex = 0; tfIndex < ArraySize(TimeFrames); tfIndex++)
      {
         //We need to know positions before and after trade signals - DXH
         //Build a picture of the trade position.
         CountOpenTrades(symbol, MagicNumbers[tfIndex], tfIndex);
               
         BuySignal = false;
         SellSignal = false;
If my thinking is correct, this would solve the greater than max signals to follow problem where the EA will load more trades per pair than we want to allow. It will also correct the pair's trade direction and not counter trade against already opened positions.

You thoughts?

EDIT: If the change is valid would also be a good time to patch the BE and JS?

- David
Post Reply

Return to “Peaky forum”