you suppose to save the zip file then import it thru NT import utility, you are not suppose to unzip it.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".
??
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!
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 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
Hi nkhoiand All,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.