Home › Forums › Trading System Mentor Course Community › AmiBroker and Data Setup › PDU > NDU ISSUES
- This topic is empty.
-
AuthorPosts
-
February 13, 2017 at 4:09 am #106114JulianCohenParticipant
I also didn’t get an email but wrote to them. They issued me the new username and password and I went from there.
February 13, 2017 at 5:31 am #106239TrentRothallParticipant+1
February 13, 2017 at 8:35 am #106238ScottMcNabParticipantLen Zir wrote:Scott
You placed a semicolon after .afl”
Take away the semicolon. See if that works for you.
LenIts all working now since did update properly…thanks Len
February 13, 2017 at 8:37 am #106241ScottMcNabParticipantLooks like I was the only goose to muck it up….how unusual…all good then…
February 13, 2017 at 9:08 am #106242SaidBitarMemberI got the mail this morning
February 14, 2017 at 4:40 am #106231LeeDanelloParticipantTrent Rothall wrote:Scott McNab wrote:My watchlists are unpopulated. Is there a link saying how to access pre-configured watchlists in NDU please ?That happened to me too. I just reset my comp, ran an ndu update and maintenance and they populated.
Start there maybe
Do you mean restart?
I’m having trouble seeing the watchlists alsoFebruary 14, 2017 at 4:45 am #106244LeeDanelloParticipantJust figured it out
See bottom rightFebruary 14, 2017 at 5:09 am #106245TrentRothallParticipantYeah sorry restart.
you should have a list of watchlists in the drop down ‘Watchlists” menu Maurice..
February 14, 2017 at 5:18 am #106246LeeDanelloParticipantI actually hit the orange maintenance icon at the bottom RH corner of the charting screen and it updated while the program was open.
February 14, 2017 at 6:04 am #106247TrentRothallParticipantYeah, that’s the same as ‘syncing’ data base in PDU
February 17, 2017 at 7:15 pm #106248SaidBitarMemberSo I moved from PDU to NDU now, all the changes that i did to the code are :
#include_once “FormulasNorgate DataNorgate Data Functions.afl”
this one on top of the AFL fileNorgateIndexConstituentTimeSeries
instead of IsIndexConstituentoc = NorgateOriginalCloseTimeSeries();
PF = oc;
instead of PF = ParamField(“Price Field”,6);also since now there is unadjusted volume so i am using it for the volume and turnover filter
ov = NorgateOriginalVolumeTimeSeries();Am i missing anything??
February 18, 2017 at 4:54 pm #106115AnonymousInactiveI have changed, but I have not changed code yet.
Custom watchlists have gone, seems others have had this too and have not recovered them. I made copies of them before changing.
I also lost all my Layouts, anybody else have this or a tip on how to recover them?
February 18, 2017 at 6:12 pm #106278LEONARDZIRParticipantSaid,
I changed my PF1 as you suggested and surpisingly my returns went up 10%, which is nice but suspicious.
Could you take a look at this line of code and tell me if I also have to change my PF2?oc = NorgateOriginalCloseTimeSeries();
PF = oc;
//PF1 = ParamField(“Channel Price field”,3);//default to close
PF2 = ParamField(“Breakout Bar Price field”,3);//default to close
CLength = Param(“Channel length”,5,1,14,1);//default to 5 period
//CLength = Optimize(“Channel length”,7,1,14,1);//default to 7 period
//SetOption(“ExtraColumnsLocation”,1);Channel = LLV(PF,Clength);// using the price field PF
Thanks
LenFebruary 18, 2017 at 7:59 pm #106281LEONARDZIRParticipantSaid,
Please ignore my prior email, I figured things out. Sorry for the bother.
LenFebruary 18, 2017 at 11:17 pm #106279ScottMcNabParticipantSaid Bitar wrote:So I moved from PDU to NDU now, all the changes that i did to the code are :#include_once “FormulasNorgate DataNorgate Data Functions.afl”
this one on top of the AFL fileNorgateIndexConstituentTimeSeries
instead of IsIndexConstituentoc = NorgateOriginalCloseTimeSeries();
PF = oc;
instead of PF = ParamField(“Price Field”,6);also since now there is unadjusted volume so i am using it for the volume and turnover filter
ov = NorgateOriginalVolumeTimeSeries();Am i missing anything??
I am using aux1 for turnover.
oc works ok in my backtests when I plug it in…(not sure if that should make you fell better or worse)
cant remember if buylimit calculation for next day should be using close or oc though for intraday system? If use oc then prob no chance of getting a fill next dayBuyLimP = close- (ATRMult*ATR(10));
Tick = 0.01;
BuyLimVal = round(BuyLimP/Tick);
buylimit = BuyLimVal*Tick; -
AuthorPosts
- You must be logged in to reply to this topic.