Australian (ASX) Stock Market Forum

Reply to thread

[USER=9654]@trav[/USER], I had already changed line 30 as follows

[CODE]NorgateIndex = NorgateIndustryIndex("$XJO.au", 1 ,"PR");[/CODE]


I have changed Buy/Sell as suggested:

[CODE]_SECTION_BEGIN("Buy / Sell");

{

//BuyNorgate = NorgatePaddingStatusTimeSeries()==0 AND NOT OnLastTwoBarsOfDelistedSecurity;

Buy = Cross( Close, m );// AND BuyNorgate;


//SellNorgate = OnSecondLastBarOfDelistedSecurity;

Sell = Cross( m, Close ); // OR SellNorgate;[/CODE]


[USER=17857]@qldfrog[/USER], I am using Norgate data and my index is $XJO.au, etc


[USER=9654]@trav[/USER], I have also added :

[CODE]AddColumn ( SectorIndexImported, "Sector", 1.2,colordefault,colorDefault,50 );[/CODE]


When exploration is run the sector value is blank, as follows:[ATTACH=full]104660[/ATTACH]


So possibly there is something in respect of the Sector?


Your code is interesting and I am extremely keen to get it to work. It is the first time I have delved into the Norgate extra data.


Top