Software Used to Trade Jack Hershey Methods

Quote from NYCMB:

Hi nkhoiand All,

I copied and pated code by palinuro to the script of PV_ChartHelper; the progrmming errors still exit.

Help! TIA

Hi nkhoi and All,

One more attachment for my previous post. TIA
 

Attachments

Quote from nkhoi:

try this, remember to rename it without txt
Hi nkhoi,

TYVM! The indicator you wrote is working well. Now the PP_Channels is capable of drawing channel lines extending beyond the last bar on the chart.
 
Hi All,

I got some PMs asking me to fix the code for red/black volume bars.

I'm afraid I cannot help because I trade FX and I haven't encountered that problem with the tick volume bars I use.
I hope someone with NT coding experience who trades the ES can help.

Regards,
Vorzo
 
Is here an update to the Multicharts Indicators?

The one I downloaded from here (Hershey Vol, Pace and PRV) seems to have some errors- for example, the PRV is completely off...and the Bar colors are sometimes not correct...

Thanks
 
Quote from Vienna:

Is here an update to the Multicharts Indicators?

The one I downloaded from here (Hershey Vol, Pace and PRV) seems to have some errors- for example, the PRV is completely off...and the Bar colors are sometimes not correct...

Thanks


bump
 
Quote from Vienna:

Is here an update to the Multicharts Indicators?

The one I downloaded from here (Hershey Vol, Pace and PRV) seems to have some errors- for example, the PRV is completely off...and the Bar colors are sometimes not correct...

Thanks


A major contributor with easylanguage -powerlanguge code is Tams.

Here is a link to his PRV indicator. Thanks to Tams for his major contributions

Tams Indicators_PRV

Tams_Price Action Trainer
 
So can someone attach the latest version in a zip for NT 7, so I can try it out. Also, what format do you suggest for data series, vol, tick, or min and what value. Also, do u use 24/7 or RTH?

Quote from palinuro:

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 TIKITRADER:

A major contributor with easylanguage -powerlanguge code is Tams.

Here is a link to his PRV indicator. Thanks to Tams for his major contributions

Tams Indicators_PRV

Tams_Price Action Trainer

Thanks for your help!
I think these are the ones I have though, will check...you guys have no issues with 1. bar colors (sometimes a bar that closes down is black etc.) or PRV (it is wildly off, shows huge volume and the bar does not even come near when it closes....)...?
 
Back
Top