Software Used to Trade Jack Hershey Methods

I consider myself a newbee as well :)

I have started two projects, one for equities, and one for futures.

The equities part (which I have posted bits and pieces off here), is at a state were the program can grap data from Stocktables, cull data from Yahoo and compare it to my current Final Universe. The next step is integrating Spyders RANK SCAN... and the DRY-UP calculations. I'm not nervous about the trading part, as I'm sure it'll work. The key is the 65 day avg. vol - I'm still looking into this. I got the right number/code, just need to put it into the right context.

For fortures, I have a model running using indicators (Stochastics and MACD), which I have tested profittable on historical data. The plan is to evolve this into channels, gaussians, M-A-D-A, WMCN etc., but this is to be considered somewhat long-term, as my C# skill aren't quite there yet :-)
 
Quote from LostTrader:

Short answer: no.

Long answer:
I can draw the rectangle using bar & price coordinates, which at least means NT will keep it in the right place as the chart is updated, I am just annoyed that it lays on TOP of the inside bar pennant drawing (and price).
I suspect I can drop into raw C & override NT's methods to do it, but it would also make the indicator harder (for me) to maintain.
I could also separate the lateral from the BarCheck and place it on the chart so that it is underneath BarCheck, then add another indicator to redraw price bars... It starts to get ridiculous (at least in my mind) and churns CPU workload unnecessarily (again IMHO).

In theory, layering of objects will be supported by NT in v7
Since I would rather NT simply fix it, I will wait. I am supposed to working on calculating pace, and keep procrastinating because I do not know much about collections. Everytime I start to break down the strategy, I start thinking that would be the better way to handle the data sets. and now I am way off-topic. sorry...

LostTrader,
I added lateral lines to your indicator and found it didn't bother me that they cross over the subsequent bars ... perhaps it depends on the color you use?
I also added lateral area shading, using max transparent black, and that works quite well too (imho).

Also bar painting, but you already have that...
 

Attachments

Quote from Munck:

I consider myself a newbee as well :)

I have started two projects, one for equities, and one for futures.

The equities part (which I have posted bits and pieces off here), is at a state were the program can grap data from Stocktables, cull data from Yahoo and compare it to my current Final Universe. The next step is integrating Spyders RANK SCAN... and the DRY-UP calculations. I'm not nervous about the trading part, as I'm sure it'll work. The key is the 65 day avg. vol - I'm still looking into this. I got the right number/code, just need to put it into the right context.

For fortures, I have a model running using indicators (Stochastics and MACD), which I have tested profittable on historical data. The plan is to evolve this into channels, gaussians, M-A-D-A, WMCN etc., but this is to be considered somewhat long-term, as my C# skill aren't quite there yet :-)

Munck,

I sent you a pm. I'll have a look at the new DU function in the latest chartscript.

palinuro
 
palinuro, thanks for letting me look at yours... Here's of picture what mine looked like (alongside yours). I guess it just bothered me that the inside bar colors get dull. Hmmm, so I guess I am hearing that I am too stuck on perfectionism and I should relax... :-)

Currently mine stops at FBO's & I do not want it to. Yours continues until an actual BO. I need to fix mine.

I finally broke down and ordered a C# book. If I actually learn the language maybe I will get better at this stuff...

Thanks for sharing!!
 

Attachments

Quote from palinuro:

LostTrader,
I added lateral lines to your indicator and found it didn't bother me that they cross over the subsequent bars ...

Hi Palinuro,

I tried your script on friday and thought I would share an enhancement to your script.

I like to annotate laterals strictly as ones that have the second bar of the lateral as a inside bar (ie a lateral is created after a pennant formation).

Without that criteria, I found your script was marking a lot of laterals when price ticks were coming in.

Attached is the updated code. I briefly tried it and it looked good but I will test is out tomorrow as well.

I have also added code to color the bars in a different scheme (exactly the same as the QT paintbar code I posted a while back). To keep the code clean I put the original bar painting code and my additions in two different functions to so it is pretty easy to switch to either scheme.
 

Attachments

OK, I finished adding the lateral to BarCheck. Y'all can decide how you like it. The laterals are more faded than the inside & outside bars, which helps some.

Laterals stop at a BO only (not an FBO) and don't start until the third bar (i.e., the bar after the inside bar has not broken the 1st pennant bar).

Sorry I don't have more time to work on this stuff.
I've got a few other things to finish as well...
 

Attachments

I've tried viewing the Camtasia videos and have tried a whole bunch of codecs with windows media and real player with no luck. Any ideas on which codecs work?
 
Quote from CDNPatriot:

I've tried viewing the Camtasia videos and have tried a whole bunch of codecs with windows media and real player with no luck. Any ideas on which codecs work?

You could also try using the free VLC player, it works with anything - even the most stubborn files. - EZ http://www.videolan.org/
 
Back
Top