Software Used to Trade Jack Hershey Methods

Could you please tell me where I find PP_Channels?

Thanks!

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
 
Quote from nkhoi:

This indi wync up yesterday only. NJ7 .22

Hi prob silly question but when I extract from your attached zip, nothing shows up in the folder...if I don't extract and just copy the ind into NT, it tells me "system can't read file".
??
 
Quote from Vienna:

Hi prob silly question but when I extract from your attached zip, nothing shows up in the folder...if I don't extract and just copy the ind into NT, it tells me "system can't read file".
??
you suppose to save the zip file then import it thru NT import utility, you are not suppose to unzip it.
 
Ok, I got all the NT indicators working, except the PP_Channels tool... I see it under indicators but how do I actually use it?
If I activate it as an indicator, nothing happens, and I can ot see it under drawing tools either...?

Thanks!
 
Quote from Vienna:

Ok, I got all the NT indicators working, except the PP_Channels tool... I see it under indicators but how do I actually use it?
If I activate it as an indicator, nothing happens, and I can ot see it under drawing tools either...?

Thanks!

after you add it to your chart, hit 'insert' key then just follow on screen instruction.
 
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

Hi palinuro or any member,

I was trying to add a few lines taken from palinuro's partial code to fix PV_ChartHelper, I got programming errors alerts from NT 7 when I tried to compile. Could any nice person help me to solve the problem. TIA
 

Attachments

Quote from NYCMB:

Hi palinuro or any member,

I was trying to add a few lines taken from palinuro's partial code to fix PV_ChartHelper, I got programming errors alerts from NT 7 when I tried to compile. Could any nice person help me to solve the problem. TIA

you are not supposed to add any line of code, you are supposed to put // in front of several line of codes.
 
Quote from nkhoi:

you are not supposed to add any line of code, you are supposed to put // in front of several line of codes.
Hi nkhoiand All,

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

Help! TIA
 

Attachments

Back
Top