Last traded date

sholay

Active Member
#1
Can any one help me in finding last traded date for every scrip? I want to remove the symbols which are not trading since some days.
 

hmsanil

Active Member
#2
Can any one help me in finding last traded date for every scrip? I want to remove the symbols which are not trading since some days.
I don't whether any afl is there to do this, but you can do it in amibroker. Go to tools and use cleanup database. It will show symbols which are not trade over a period of time

Thanks

Sudha
 
#6
Can any one help me in finding last traded date for every scrip? I want to remove the symbols which are not trading since some days.
Yes you can do it via exploration.
Most simplest version:

Code:
SetSortColumns(2);
Filter =  Status("LastBarinRange");
Choose "Apply to" "All symbols" and range "All quotes"
 
#7
This version moves symbols to a watchlist if their date is lower than chosen date of parameter dialog

Code:
Checkupdate = ParamToggle("Check date of symbol(s)?", "NO|YES", 1);
upddate     = ParamDate("Choose last date to check", Now(1));
watchlistnumber = 0;
if( Checkupdate && (EndValue(DateNum()) < upddate) && Status("action") == actionExplore ) 
  CategoryAddSymbol( "", categoryWatchlist, watchlistnumber);

SetSortColumns(2);
Filter =  Status("LastBarinRange") && LastValue(DateNum()) < upddate;