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

Awesome - original version
https://www.stevehopwoodforex.com/phpBB3/viewtopic.php?t=5232
Page 30 of 46
Author:  1Direction [ Mon Sep 11, 2017 6:01 pm ]
Post subject:  Awesome - original version

Very sexy layout indeed :clap: thank you.

I believe the Total daily cash profit is not filtered out by the EA used magic numbers or comments. This would be helpful when running multiple EAs in the same account and one would like to quickly see how awesome performed for the day.
Author:  tomele [ Mon Sep 11, 2017 6:22 pm ]
Post subject:  Awesome - original version

DigitalCrypto » 11 Sep 2017, 18:48 wrote:I don't suppose you could make the symbol name clickable to open that particular chart could you?
Already thinking about it.
Author:  SteveHopwood [ Mon Sep 11, 2017 7:21 pm ]
Post subject:  Awesome - original version

1Direction » Mon Sep 11, 2017 6:01 pm wrote:Very sexy layout indeed :clap: thank you.

I believe the Total daily cash profit is not filtered out by the EA used magic numbers or comments.
No, it isn't. Nor is it intended to be. Nor will it be.

:xm:
Author:  1Direction [ Mon Sep 11, 2017 7:26 pm ]
Post subject:  Awesome - original version

SteveHopwood » Mon Sep 11, 2017 8:21 pm wrote:
1Direction » Mon Sep 11, 2017 6:01 pm wrote:Very sexy layout indeed :clap: thank you.

I believe the Total daily cash profit is not filtered out by the EA used magic numbers or comments.
No, it isn't. Nor is it intended to be. Nor will it be.

:xm:
We can use the tradereport indi for it anyway, thx for confirmation
Author:  SteveHopwood [ Mon Sep 11, 2017 7:59 pm ]
Post subject:  Awesome - original version

V 1l is in post 1.

This one is purely for the coders - the rest of you will not notice any difference. You do not need 1l if you already have 1k.

For those of you interested in peering under the bonnet, Thomas has consolidated the text display code into a separate function - void DisplayMatrix(). This provides the graphically challenged amongst us with a template for future use.

Thanks again Thomas. We are deeply grateful. :clap: :clap: :clap: :clap: :clap: :clap: :clap: :clap: :clap: :clap: :clap: :clap: :clap: :clap: :clap:

:xm:
Author:  SteveHopwood [ Tue Sep 12, 2017 3:50 pm ]
Post subject:  Awesome - original version

V 1m is in post 1. You are going to lurrrrrrve it.

Thomas again via PM earlier:
tomele wrote:Hi Steve.

I made the FB labels clickable. A click on one of those labels brings up a chart with correct pair and timeframe. If the chart is already open, it comes to top. The template can be defined by the user.

Changes:
- ChartTemplate input for user defined layout in line 611
- New functions OnChartEvent() and OpenChart() in lines 817-860
- Modified functions DisplayMatrix() and DisplayTextLabel() in lines 1350-1491

Have fun.

Cheers, Thomas
:clap: :clap: :clap: :clap: :clap: :clap: :clap: :clap: :clap: :clap: :clap: :clap: :clap: :clap: :clap: :clap: :clap: :clap: :clap: :clap: :clap: :clap: :clap: :clap: :clap: :clap: :clap: :clap: :clap: :clap:
Author:  spyderman [ Tue Sep 12, 2017 4:29 pm ]
Post subject:  Awesome - original version

So trying to learn more on the mechanics of Awesome. I've been running TJF's H4 PeakHiLo False. Waaaaayyyyy over leveraged as a test. The Yen fall broke the bank. Seems when I've hit larger DD it's typically involving the yen pairs. So might try eliminating them from set.

Also had the "fill gap" set at 20 which I believe is way to small for H4. Then was thinking it might be better to have the fill gap geared to ATR rather than a set number. Anyone been experimenting with different fill settings?
Author:  spyderman [ Tue Sep 12, 2017 4:30 pm ]
Post subject:  Awesome - original version

SteveHopwood » Tue Sep 12, 2017 9:50 am wrote:V 1m is in post 1. You are going to lurrrrrrve it.

Thomas again via PM earlier:

:clap: :clap: :clap: :clap: :clap: :clap: :clap: :clap: :clap: :clap: :clap: :clap: :clap: :clap: :clap: :clap: :clap: :clap: :clap: :clap: :clap: :clap: :clap: :clap: :clap: :clap: :clap: :clap: :clap: :clap:
Do love it. Much thanks.
Already closed my first basket... :!!:
Author:  wallywonka [ Wed Sep 13, 2017 5:45 am ]
Post subject:  Awesome - original version

spyderman » Tue Sep 12, 2017 4:29 pm wrote:So trying to learn more on the mechanics of Awesome. I've been running TJF's H4 PeakHiLo False. Waaaaayyyyy over leveraged as a test. The Yen fall broke the bank. Seems when I've hit larger DD it's typically involving the yen pairs. So might try eliminating them from set.

Also had the "fill gap" set at 20 which I believe is way to small for H4. Then was thinking it might be better to have the fill gap geared to ATR rather than a set number. Anyone been experimenting with different fill settings?
I was running the 4H hilo set file as well..one thing I noticed is in the set file it was set to close trades on a superslope but this never happened..possibly a bug in the code somewhere
Author:  SteveHopwood [ Wed Sep 13, 2017 10:24 am ]
Post subject:  Awesome - original version

This one is for those of you who like going under the bonnet.

I always knew there had to be an easier way of splitting PairsToTrade into the TradePair array. DC linked me to some open source code that showed me how.

Compare this with the existing code:

Code: Select all

void ExtractPairs()
{
   //Cater for a symbol suffix
   string AddChar = StringSubstr(Symbol(),6,4);
   
   //Split the PairsToTrade input into the array
   StringSplit(PairsToTrade,',',TradePair);
   
   //NoOfPairs is a historic variable that I calculated in the early ExtractPairs() function.
   //It is used in other parts of the code.
   NoOfPairs = ArraySize(TradePair);
   

   //Trim unwanted spaces and add a suffix   
   for (int cc = 0; cc < NoOfPairs; cc ++)
   {
      TradePair[cc] = StringTrimLeft(TradePair[cc]);
      TradePair[cc] = StringTrimRight(TradePair[cc]);
      TradePair[cc] = StringConcatenate(TradePair[cc], AddChar);
   }//for (int cc; cc<NoOfPairs; cc ++)

}//End void ExtractPairs()
Much neater. You can delete the InputString variable as it is no longer used - do a search for "InputString" to find the declaration.

:xm:
All times are UTC Page 30 of 46