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

Steve's 10.6 EA manual trading aids
https://www.stevehopwoodforex.com/phpBB3/viewtopic.php?t=3273
Page 8 of 15
Author:  95026862 [ Sun Dec 08, 2013 5:59 am ]
Post subject:  Re: Steve's 10.6 EA manual trading aids

SteveHopwood wrote:
95026862 wrote:hey steve, did you add the feature to only open the trade at the close of the next candle along with STO7 20/80 cross ?
One thing that you need to learn about me is that I cannot stand reading questions about stuff I have addressed in earlier posts. This implies that you cannot be arsed to read the posts of the Forum Owner. In case you have not noticed, that is me. Well, nominally at least. Given the financial contributions here lately, maybe nominally is the best I can do. Ah well, moving on in titular ownership at least.

So, read my bloody posts and answer your bloody silly question for yourself or you will lose the ability to ask your bloody silly questions at all.

thanks i appreciate your kind words. you are so nice :) did you add the feature to all of the EA's ? or just the flexible
Author:  kwchau [ Tue Dec 10, 2013 10:47 am ]
Post subject:  Re: Steve's 10.6 EA manual trading aids

Just discovered that the buy function of the Flexible Stoch EA seems not functioning properly. Please refer to attached chart. The buy trade should be taken at the red vertical line. The same situation happened in other charts. I looked back the history, the sell function seems working quite well but not the buy function. I'm setting the Everytickmode to False.
I hope Steve could look into the codes to see if there is any problem.
Author:  SteveHopwood [ Tue Dec 10, 2013 1:24 pm ]
Post subject:  Re: Steve's 10.6 EA manual trading aids

kwchau wrote:Just discovered that the buy function of the Flexible Stoch EA seems not functioning properly. Please refer to attached chart. The buy trade should be taken at the red vertical line. The same situation happened in other charts. I looked back the history, the sell function seems working quite well but not the buy function. I'm setting the Everytickmode to False.
I hope Steve could look into the codes to see if there is any problem.
The clue is in the chart display - second stochastic reading being zero. It could not trade because the close shift 1 was always zero. When the sell version sent a trade correctly, this was a fluke.

Fixes in post 1 - you must download both buy and sell.

Or go to line 179. Change
double StochVal[2];

to

double StochVal[3];

This was a good example of LUC inviting his buddies around for coffee.

:D
Author:  SteveHopwood [ Tue Dec 10, 2013 4:21 pm ]
Post subject:  Re: Steve's 10.6 EA manual trading aids

The excercise some of you guys carried out at http://www.stevehopwoodforex.com/phpBB3 ... 383#p82383 needs carrying out on all the EA's - or you can download the zip from post 1 that already has the fixes.

:D
Author:  Naki003 [ Wed Dec 11, 2013 12:22 am ]
Post subject:  Re: Steve's 10.6 EA manual trading aids

@Steve

Dear Steve,
I have a stupid problem: the Stoch H1 EA did not fired the buy trade, although in the Alert window there is it already three times...
problem.png
What is the problem?

Many thanks, Tom
Author:  SteveHopwood [ Wed Dec 11, 2013 9:53 am ]
Post subject:  Re: Steve's 10.6 EA manual trading aids

Naki003 wrote:@Steve

Dear Steve,
I have a stupid problem: the Stoch H1 EA did not fired the buy trade, although in the Alert window there is it already three times...
problem.png
What is the problem?

Many thanks, Tom
No idea Tom. Sorry.

:D
Author:  kwchau [ Wed Dec 11, 2013 11:47 am ]
Post subject:  Re: Steve's 10.6 EA manual trading aids

SteveHopwood wrote:
kwchau wrote:Just discovered that the buy function of the Flexible Stoch EA seems not functioning properly. Please refer to attached chart. The buy trade should be taken at the red vertical line. The same situation happened in other charts. I looked back the history, the sell function seems working quite well but not the buy function. I'm setting the Everytickmode to False.
I hope Steve could look into the codes to see if there is any problem.
The clue is in the chart display - second stochastic reading being zero. It could not trade because the close shift 1 was always zero. When the sell version sent a trade correctly, this was a fluke.

Fixes in post 1 - you must download both buy and sell.

Or go to line 179. Change
double StochVal[2];

to

double StochVal[3];

This was a good example of LUC inviting his buddies around for coffee.

:D
Hi Steve, I am testing the latest Flexible EA and sorry to report that the Flexible Stoch Buy EA is still having problem. In the attached chart, it should trigger a buy trade at the red vertical line. I've set the EveryTickMode as False and Stoch TF = 60, BuyAbove=20 and CloseBelow=80.

I've no example for the Sell EA yet ! Will let you know how it goes.
Author:  SteveHopwood [ Wed Dec 11, 2013 5:20 pm ]
Post subject:  Re: Steve's 10.6 EA manual trading aids

kwchau wrote:
SteveHopwood wrote:
kwchau wrote:Just discovered that the buy function of the Flexible Stoch EA seems not functioning properly. Please refer to attached chart. The buy trade should be taken at the red vertical line. The same situation happened in other charts. I looked back the history, the sell function seems working quite well but not the buy function. I'm setting the Everytickmode to False.
I hope Steve could look into the codes to see if there is any problem.
The clue is in the chart display - second stochastic reading being zero. It could not trade because the close shift 1 was always zero. When the sell version sent a trade correctly, this was a fluke.

Fixes in post 1 - you must download both buy and sell.

Or go to line 179. Change
double StochVal[2];

to

double StochVal[3];

This was a good example of LUC inviting his buddies around for coffee.

:D
Hi Steve, I am testing the latest Flexible EA and sorry to report that the Flexible Stoch Buy EA is still having problem. In the attached chart, it should trigger a buy trade at the red vertical line. I've set the EveryTickMode as False and Stoch TF = 60, BuyAbove=20 and CloseBelow=80.

I've no example for the Sell EA yet ! Will let you know how it goes.
The second stoch value on the chart still shows zero when it is considerably higher than that. Your attempt to edit the code has failed/

-------------------------------------------------------------------------------------------------------------------

In checking this I noticed that the flexible ea's need ReadIndicatorValues(); in int init() to be moved in front of the call to CountOpenTrades() just as you guys did with the stochastic ea's in the zip.

I have placed the fixes in post 1 for the codephobics.

:D
Author:  kwchau [ Thu Dec 12, 2013 12:25 am ]
Post subject:  Re: Steve's 10.6 EA manual trading aids

SteveHopwood wrote:
kwchau wrote:
SteveHopwood wrote:
kwchau wrote:Just discovered that the buy function of the Flexible Stoch EA seems not functioning properly. Please refer to attached chart. The buy trade should be taken at the red vertical line. The same situation happened in other charts. I looked back the history, the sell function seems working quite well but not the buy function. I'm setting the Everytickmode to False.
I hope Steve could look into the codes to see if there is any problem.
The clue is in the chart display - second stochastic reading being zero. It could not trade because the close shift 1 was always zero. When the sell version sent a trade correctly, this was a fluke.

Fixes in post 1 - you must download both buy and sell.

Or go to line 179. Change
double StochVal[2];

to

double StochVal[3];

This was a good example of LUC inviting his buddies around for coffee.

:D
Hi Steve, I am testing the latest Flexible EA and sorry to report that the Flexible Stoch Buy EA is still having problem. In the attached chart, it should trigger a buy trade at the red vertical line. I've set the EveryTickMode as False and Stoch TF = 60, BuyAbove=20 and CloseBelow=80.

I've no example for the Sell EA yet ! Will let you know how it goes.
The second stoch value on the chart still shows zero when it is considerably higher than that. Your attempt to edit the code has failed/

-------------------------------------------------------------------------------------------------------------------

In checking this I noticed that the flexible ea's need ReadIndicatorValues(); in int init() to be moved in front of the call to CountOpenTrades() just as you guys did with the stochastic ea's in the zip.

I have placed the fixes in post 1 for the codephobics.

:D
I've put the latest Flexible EAs on charts, the second stoch values on the chart displays are still showing zero. As you said, this is not right. Would you mind looking into it ? Thank you !
Author:  95026862 [ Thu Dec 12, 2013 4:17 am ]
Post subject:  Re: Steve's 10.6 EA manual trading aids

the original not putting in trades, and the flexible is opening and closing short trades simultaneously
All times are UTC Page 8 of 15