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

Sccobs Old Chessnut
https://www.stevehopwoodforex.com/phpBB3/viewtopic.php?t=411
Page 2 of 3
Author:  SteveHopwood [ Sun Mar 18, 2012 11:28 pm ]
Post subject:  Re: Sccobs Old Chessnut

MichaelM wrote:Got my first sell basket trades last Friday at 18:30GMT.

Set TP and SL to 0 and going to keep them open and close at 11GMT as scoobs originally intended for this method to work.
Fabulous example of different crims = different feeds = different results. My Cowboy IBFX Aussie came within a whisker of triggering a basket but did not quite make it.

Michael, yours appears to be the only basket open right now, so please keep us in touch with your results.

:D
Author:  hiredwhip [ Sun Mar 18, 2012 11:34 pm ]
Post subject:  Re: Sccobs Old Chessnut

SteveHopwood wrote:
MichaelM wrote:Got my first sell basket trades last Friday at 18:30GMT.

Set TP and SL to 0 and going to keep them open and close at 11GMT as scoobs originally intended for this method to work.
Fabulous example of different crims = different feeds = different results. My Cowboy IBFX Aussie came within a whisker of triggering a basket but did not quite make it.

Michael, yours appears to be the only basket open right now, so please keep us in touch with your results.

:D
My FXCM basket did the same thing missed by an eye-lash
Author:  MichaelM [ Mon Mar 19, 2012 12:09 am ]
Post subject:  Re: Sccobs Old Chessnut

I'm demoing this with Cowboy Go Markets.

Did any of you understand why scoobs chose these pairs, apart from EURUSD?
I'm still trying to decipher what he meant.

P.S. I see FR v4.2g is doing well in scoobs myfxbook account, I wonder what pairs he is using
Author:  SteveHopwood [ Mon Mar 19, 2012 12:22 am ]
Post subject:  Re: Sccobs Old Chessnut

MichaelM wrote:I'm demoing this with Cowboy Go Markets.

Did any of you understand why scoobs chose these pairs, apart from EURUSD?
I'm still trying to decipher what he meant.

P.S. I see FR v4.2g is doing well in scoobs myfxbook account, I wonder what pairs he is using
Why not ask Scoobz? I have no idea what you are talking about here. Did you post in your intended thread?

:D
Author:  MichaelM [ Mon Mar 19, 2012 2:19 am ]
Post subject:  Re: Sccobs Old Chessnut

Sorry Steve :)

I did forget to mention that I modified this EA code... likely the reason why mine took trades.

When looking for sell trades, instead of comparing the bid with the overbought line, you should be comparing the ask with the overbought line.

i.e.

Code: Select all

double ask = MarketInfo(Pair1, MODE_ASK);
.
.
//Look for sell trades if the market is > ob
target = ObjectGet(ob, OBJPROP_PRICE1);
if (ask > target)
Author:  OldTrader [ Mon Mar 19, 2012 6:40 am ]
Post subject:  Re: Sccobs Old Chessnut

MichaelM wrote:Got my first sell basket trades last Friday at 18:30GMT.

Set TP and SL to 0 and going to keep them open and close at 11GMT as scoobs originally intended for this method to work.
Got the same, however since trades are supposed to run and be closed at 11gmt on friday, I'd assume this basket shouldn't have been taken at all, since it triggered after this close time.
Will be interesting to see how it plays out regardless, but if you were to follow scoobs rules, i guess it shouldnt have been opened in the first place.
I have backtested this strategy, and while it yields great results from jan til present, not so great a few months farther back. Time will tell I guess, that's assuming interest in the strategy stays intact long enough to find out :)
Author:  SteveHopwood [ Mon Mar 19, 2012 8:09 am ]
Post subject:  Re: Sccobs Old Chessnut

MichaelM wrote:Sorry Steve :)

I did forget to mention that I modified this EA code... likely the reason why mine took trades.

When looking for sell trades, instead of comparing the bid with the overbought line, you should be comparing the ask with the overbought line.

i.e.

Code: Select all

double ask = MarketInfo(Pair1, MODE_ASK);
.
.
//Look for sell trades if the market is > ob
target = ObjectGet(ob, OBJPROP_PRICE1);
if (ask > target)
The problem is always the same with this thingy. The chart shows the bid. Candles are created from the bid. If trading that depends on a line on the chart being touched/passed, then basing them on the cid means that buys are taken late.

Basing them on the ask means they appear to have been taken prematurely. Guess how many posts that will cause. Guess how I know.

That is why EA's that depend on lines on the chart always base their trades on the bid for both sells and buys - it usually saves the coder some grief.

Thanks anyway. This sort of thingy is usually my bloop.

:D
Author:  SteveHopwood [ Mon Mar 19, 2012 8:10 am ]
Post subject:  Re: Sccobs Old Chessnut

OldTrader wrote:
MichaelM wrote:Got my first sell basket trades last Friday at 18:30GMT.

Set TP and SL to 0 and going to keep them open and close at 11GMT as scoobs originally intended for this method to work.
Got the same, however since trades are supposed to run and be closed at 11gmt on friday, I'd assume this basket shouldn't have been taken at all, since it triggered after this close time.
Will be interesting to see how it plays out regardless, but if you were to follow scoobs rules, i guess it shouldnt have been opened in the first place.
I have backtested this strategy, and while it yields great results from jan til present, not so great a few months farther back. Time will tell I guess, that's assuming interest in the strategy stays intact long enough to find out :)
I haven't coded the Friday thingy yet. That is why there is no FridayCloseTime input.

:D
Author:  MichaelM [ Mon Mar 19, 2012 11:45 am ]
Post subject:  Re: Sccobs Old Chessnut

OldTrader wrote:
MichaelM wrote:Got my first sell basket trades last Friday at 18:30GMT.

Set TP and SL to 0 and going to keep them open and close at 11GMT as scoobs originally intended for this method to work.
Got the same, however since trades are supposed to run and be closed at 11gmt on friday, I'd assume this basket shouldn't have been taken at all, since it triggered after this close time.
Will be interesting to see how it plays out regardless, but if you were to follow scoobs rules, i guess it shouldnt have been opened in the first place.
I have backtested this strategy, and while it yields great results from jan til present, not so great a few months farther back. Time will tell I guess, that's assuming interest in the strategy stays intact long enough to find out :)
Hi OldTrader,

Although it doesn't seem logical (most times) to trade on Friday, I don't recall scoobs saying that we can't open trades after Friday 11GMT.
Author:  OldTrader [ Mon Mar 19, 2012 4:12 pm ]
Post subject:  Re: Sccobs Old Chessnut

No, he didn't. Like I said, I 'ass'umed :)
I haven't gone back to compare instances where you'd get a friday trigger after a close all for the previous week has happened, so am not sure what results would differ. Doubt it would make much impact, as this wouldn't happen very often.
All times are UTC Page 2 of 3