Software Used to Trade Jack Hershey Methods

Quote from capcom:

Has anybody been having trouble with PP_Channels?

When I draw the channel, I can't get it to go past the current bar, out into the future. Is their something I am missing.


I am using NT7 ver 23


Gary
no, the software just wasn't written for 7.23
 
Quote from NYCMB:

Hi emac,

Thank you for your response.

I really don't think the indicator was designed to have split colors in a single volume bar. As presented on the attached, besides Red and Black, DodgerBlue of PRV was left on the volume bar. Another proof of pvpack_nt7 flaw is NT7 built-in "BuySellVolume indicator" had different ratio of buy and sell for each volume bar than "split color volume bar" generated with pvpack_nt7.

Do you also experience DOM not shows most of the time using PV_DOMES?

I don't use BuySellVolume nor PV Domes so can't comment on them.
 
Quote from nkhoi:

no, the software just wasn't written for 7.23

Quick fix: find this method in ChartHelper and comment out lines as indicated:


private DateTime CalcTimeOutofBounds(int barIdx)
{
_debug = "";
DateTime retTime = DateTime.MinValue;
int lastBarIndex = _Bars.Count - 1;

// TimeSpan sessionEndTime = _Bars.GetSessionBar(0).Time.TimeOfDay;
// TimeSpan lastTime = _Bars.Get(lastBarIndex).Time.TimeOfDay;
// DateTime sessionEndTime = _Bars.GetSessionBar(0).Time.TimeOfDay;
// DateTime lastTime = _Bars.Get(lastBarIndex).Time.TimeOfDay;
//
// TimeSpan rest = sessionEndTime.Subtract(lastTime);
// int numBarsToCloseSession = (int)Math.Round((rest.TotalMinutes / _Bars.Period.Value), 0);

int numBars = barIdx - lastBarIndex;
retTime = _Bars.Get(lastBarIndex).Time.Add(new TimeSpan(0, numBars * _Bars.Period.Value, 0));

- palinuro
 
Quote from vorzo:

Here is a PV Pack that works with NT beta 18.
I'm using it for FX, so you may have to change some settings.

You need to copy the files to
C:\Documents and Settings\[YourUserName]\My Documents\NinjaTrader 7\bin\Custom\Indicator\
then compile them.

As always, use at your own risk and please share improvements.

Thank you to Pepe and others for sharing the code.

Cheers,
Vorzo

Folks,

I have beginner question.

How to import and/or compile that code into NT7.0.0.23?

Thank you,

St.
 
Quote from stepan7:

Folks,

I have beginner question.

How to import and/or compile that code into NT7.0.0.23?

Thank you,

St.
Personally, I just copy the cs file to the appropriate folder.

Then I re-import the zip file of some indicator I don't care about.

This triggers an intellisense reload of all cs files.

The copied cs file is now selectable from the charts menu.

Done!!!

RJay
 
With 6.5, click on the dropdown next to the instrument drop down along the top of your chart... the current chart I have displayed is a 5 minute chart... the drop down says "5Min" when I activate this dropdown I see all the types of charts NT will display Minute, Second, Tick, Volume, Range, etc... you can get even more control by using the last item of this dropdown named "Format Data Series"

In NT 7, look for "Format Data Series" in the chart properties.... it is here you can get to Volume, Range, and Tick bars

HTH

-T
 
Quote from tulanch:



In NT 7, look for "Format Data Series" in the chart properties.... it is here you can get to Volume, Range, and Tick bars

HTH

-T

Thank you,

St.
 
Back
Top