Count of black candlesticks during a particular period - AFL help

#11
You got my query (and thanks for AFL code).

I was already getting results, but what I require is to remove duplicates (when I 'Explore', I get multiple entries of the same 'Ticker'):

I get result like below (AFL code - 'Explore'):
Ticker Date/Time TotalGreenCandles TotalRedCandles TotalDojiCandles
ABGSHIP 9/3/2014 3 7 0
ABGSHIP 9/4/2014 2 8 0
ABGSHIP 9/5/2014 1 9 0
ABGSHIP 9/8/2014 1 9 0
ABGSHIP 9/9/2014 1 9 0
ABGSHIP 9/10/2014 2 8 0
:
:
:


But I want result to be like this (without duplicates of Ticker):
Ticker Date/Time Count
ABGSHIP 9/3/2014 6

Count 6 indicates ABGSHIP totally occurred 6 times.