what's your Jack Hershey trading system win/loss ratio ?

Quote from bwolinsky:

It really surprises me anybody asks about Jack Hershey's methods, and never have a look at the threads about it under my name. Every part of the MACD Stochastic momentum driven indicator is available on Wealth Lab Pro, which is the only platform that has backtested as succesfully as advertised. Have Code, could post, but set for .SPX 5 Minute Bars.

Here is Jack Hershey's Algorithm:

var lbar,bar : integer;

var val1 : integer = 5;
var val2 : integer = 13;
var val3 : integer = 6;
var HersheyStochK2 : integer = StochDSeries(5, 2);
var HersheyStochD2 : integer = SMASeries(HersheyStochK2, 3);
var HersheyStochK : integer = StochDSeries(14, 1);
var HersheyStochD : integer = SMASeries(HersheyStochK, 3);

for Bar := 5 to BarCount - 1 do
begin



if (bar>lbar+2) and (gettime(bar)<1545) then begin
if not (lastpositionactive) and (crossovervalue(bar,HersheyStochK,50) ) and (@#Volume[bar-1]>20000) then begin
{ if (@MACDH[bar]>0) then }buyatmarket(Bar+1,'Jacks friend scott d says to buy here');
end;
if not (lastpositionactive) and (crossundervalue(Bar,HersheyStochK,50)) and (@#Volume[bar-1]>20000) then begin
{ if (@MACDH[bar]<0) then }shortatmarket(Bar+1,'Jacks friend scott d says to sellshort here');
end;
if (positionlong(lastposition)) and (@HersheyStochK[bar]<@HersheyStochD[bar]) and (crossundervalue(Bar,HersheyStochK,80)) then begin
sellatmarket(Bar+1,LastPosition,'');
end;
if (positionshort(lastposition)) and (@HersheyStochK[bar]>@HersheyStochD[bar]) and (crossovervalue(Bar,HersheyStochK,20)) then begin
coveratmarket(Bar+1,lastposition,'');
end;
if (positionlong(lastposition)) and (abs(@HersheyStochD[bar])<1.4) then begin sellatmarket(Bar+1,LastPosition,''); end;
if (positionshort(lastposition)) and (abs(@HersheyStochD[bar])<1.4) then begin coveratmarket(Bar+1,LastPosition,''); end;
if (positionlong(lastposition)) and (lastbar(bar)) then begin sellatclose(Bar,lastposition,'');end;
if (positionshort(lastposition)) and (lastbar(bar)) then begin coveratclose(Bar,lastposition,'');end;

end;
if lastbar(bar) then begin
lbar:=bar;
end;
end;

Note this is in Wealth Lab Developer 4.5, not Pro, use translator to create new updated version.

Is there such script for Ninja Trader?
 
Quote from Colyn.Rosenthal:

The other said he has been trading SCT for about 3 years and after a year of practice get 8+ points a day with a 80% win rate.

This is when my Bullshit-O-Meter broke, so you are buying me a new one...

So this guy has been making 8 pts per day for 2 years? Really? If so, he should be buying a house, what house?, a palace for Jack!!

Seriously, just imagine the compounding.....
 
Quote from baro-san:

You're confusing him with Chuck Norris!

Jack Hershey would pulverize Chuck Norris and sprinkle him across his breakfast in the morning.

Jack Hershey is part trader, part super-computer and he is actually plugged directly into the fibre-optic backbone of the internet as we speak.

Jack Hershey is the love child of Waxie and $$$$MR MARKET$$$$$$$.
 
This trade is Epic Funny...especially the comment by piezoe on page 2. I almost choked on my coffee from laughter.


On a serious note though (....I don't know shit about jack hershey's method nor care too for that matter. I just like to read threads about JH because they tend to be the funniest...), I do however remember Mr Black posted some trades on a simulator here:

http://www.elitetrader.com/vb/showthread.php?s=&threadid=191352&perpage=6&pagenumber=79


You can also problem look up his quotes here:
http://www.elitetrader.com/vb/search.php?s=&action=showresults&searchid=3866301
 
Quote from Colyn.Rosenthal:

Two have gotten back to me.

One started trading with real money in March after 9 months of practice. He said he is still building his confidence and that is way his win rate is low but hits a 65% win rate and a 1:2 R/R ratio. He said he has about 4 to 6 trades a day.

The other said he has been trading SCT for about 3 years and after a year of practice get 8+ points a day with a 80% win rate.

Both of these guys are simple retail traders not large scale insitutional traders.

More power to them but I repeat, I can't trade it. It still makes my head hurt.

Hey Colin, Thanks for digging out this info for all of us. The numbers surely sound super-impressive, however at a conceptual-intuitive level I have some difficulty agreeing with basic tenets of methodology.

I don't know JH methods, nor do I have the time to explore them (frankly), I will rather go, start my spreadsheet and find historical patterns/do data analysis by myself. However, just the utter complexity of JH's methods makes it for me conceptually very hard to accept the soundness of the methods (let alone trade them). When compared to Turtle's method, or mean reversion type methods, or pairs trading or index arbitrage type stuff, opening range breakout - you name it everything that really makes money in the markets is so easy to understand. Even HFT world (at the conceptual level) is easy to understand - be it either liquidity/latency arb, or subpennying etal. But, omg JH's methods are not easy to understand at all.

Thanks for your efforts, but I won't even look at his methods, at least till the time I have 500 other simple ideas to backtest and verify.
 
Man I must have been high when I wrote my previous post with all the spelling errors.

Edit:

This thread is Epic Funny...especially the comment by piezoe on page 2. I almost choked on my coffee from laughter.


On a serious note though (....I don't know shit about jack hershey's method nor care too for that matter. I just like to read threads about JH because they tend to be the funniest...), I do however remember Mr Black posted some trades on a simulator here:

http://www.elitetrader.com/vb/showt...6&pagenumber=79


You can also look up his quotes here:
http://www.elitetrader.com/vb/searc...earchid=3866301
 
Quote from Pekelo:

This is when my Bullshit-O-Meter broke, so you are buying me a new one...

So this guy has been making 8 pts per day for 2 years? Really? If so, he should be buying a house, what house?, a palace for Jack!!

Seriously, just imagine the compounding.....

Exactly. Instead of emailing Hersheyheads and asking for their performance, someone should actually verifying this stuff. 8 points a day for two years with modest compounding? Yeah, do the math on that one and see how believable it is.
 
Back
Top