Forum Replies Created
-
AuthorPosts
-
TrentRothallParticipant
In a Moc system? I’ve got it too
TrentRothallParticipantI never got one, i’d just do it. So you can iron out any issues before the 15th. I think they are ceasing the PDU then
TrentRothallParticipantWell there you go.
Good it’s all sorted then
TrentRothallParticipantI haven’t updated my VPS yet. Will probably do it on the weekend once i’m happy.
Maurice you have to uninstall the PDU updater to install the NDU.
I think Craig has examples of the unadjsted close in the LMS Julian..
Here is the one i’m using.
Code:_SECTION_BEGIN(“Optional Filters”);
//=====================================================================================
//Optional Filters
//=====================================================================================
PriceTog = ParamToggle(“Price Filter”,”Off|On”,1);
CloseToggle = ParamToggle(“Close Price”,”Adjusted|Unadjusted”,0);
CP = IIf(CloseToggle,NorgateOriginalCloseTimeSeries(),Close);
MinSP = Param(“Minimum Share Price”,.2,0.00,1000,0.01);
MaxSP = Param(“Maximum Share Price”,100,0.00,2000,0.01);
MinMaxSP = CP >= MinSP AND CP <= MaxSP; PriceFilt = IIf(PriceTog,MinMaxSP,1); //------------------------------------------------------------------------------------- AveVolTog = ParamToggle("Average Volume Filter","Off|On",1); AveVolPer = Param("Volume EMA",30,2,1000,1); MinAveVol = Param("Minimum Average Volume",350000,0,10000000,1000); AveVol = EMA(Volume,AveVolPer) > MinAveVol;
AveVolFilt = IIf(AveVolTog,AveVol,1);
//————————————————————————————-
VolTog = ParamToggle(“Volume Filter”,”Off|On”,0);
MinVol = Param(“Minimum Volume”,300000,0,1000000,1000);
VolFilter = Volume > MinVol;
VolFilt = IIf(VolTog,VolFilter,1);
//————————————————————————————-
TOTog = ParamToggle(“Turnover Filter”,”Off|On”,1);
CloseToggle2 = ParamToggle(“Close Price.”,”Adjusted|Unadjusted”,0);
CP1 = IIf(CloseToggle2,NorgateOriginalCloseTimeSeries(),Close);
TO = V * CP1;
MinTO = Param(“Minimum Turnover – $”,500000,0,10000000,1000);
TOMA = Param(“Turnover MA”,7,1,200,1);
AveTO = EMA(TO,TOMA);
TOFilter = TO > MinTO AND AveTO > MinTO;
TOFilt = IIf(TOTog,TOFilter,1);
//————————————————————————————-
OptFilt = PriceFilt AND AveVolFilt AND VolFilt AND TOFilt;
//=====================================================================================
_SECTION_END();TrentRothallParticipantOh ok, like i said i had it this morning but fine now. I think NDU may have done a update this morning or somethig
TrentRothallParticipantTrentRothallParticipantThis is my historical index list. if thats what you’re after
The actual code looked messy when i posted it. This is it though
TrentRothallParticipantJulian Cohen wrote:I’m getting errors onCond6 = NorgateIndexConstituentTimeSeries(“$RUI”);
It says the function is undefined.
I hate it when they change things
Did you put: #include_once “FormulasNorgate DataNorgate Data Functions.afl” at the top of your code?
TrentRothallParticipantI had that pop up this morning. I just opened another formula that i had, then ran a backtest and it went away.
TrentRothallParticipantSet you up with changing your trendlines etc over or just with NDU?
TrentRothallParticipantDoes anyone know if there is some way we can get our chart annotations from the pdu database onto the ndu?
TrentRothallParticipanti never received it either, i just followed Nicks post on here
TrentRothallParticipanthaha, happens to us all
TrentRothallParticipantchange it to 50k
TrentRothallParticipantUhhh i had my previous data else where i think so i just followed the basic steps.
-
AuthorPosts