@bonz you have an excellent answer from @fxshrat but I interpreted your question somewhat differently. What information from the SummaryRows are you really interested in plotting?
So I tried a code which is similar to answers I've previously written on this forum, using StaticVarAdd, and at least it will give you something different to think about.
///@link https://forum.amibroker.com/t/how-do-i-graph-an-exploration/13490
// Using StaticVarAdd and run EXPLORE
// pick watchlist in AA window
wlnum = GetOption( "FilterIncludeWatchlist" );
List = CategoryGetSymbols( categoryWatchlist, wlnum );
if( Status( "stocknum" ) == 0 )
{
// cleanup variables created in previous runs
StaticVarRemove( "~Trend*" ); // should take care of all 5 "Trend" variables
for( n = 0; ( Symbol = StrExtract( List, n ) ) != ""; n++ )
{
SetForeign( symbol );
Trend1 = Close >= MA( Close, 10 );
Trend2 = Close >= MA( Close, 21 );
Trend3 = Close >= MA( Close, 50 );
Trend4 = Close >= MA( Close, 130 );
Trend5 = Close >= MA( Close, 200 );
StaticVarAdd( "~Trend1", Trend1 );
StaticVarAdd( "~Trend2", Trend2 );
StaticVarAdd( "~Trend3", Trend3 );
StaticVarAdd( "~Trend4", Trend4 );
StaticVarAdd( "~Trend5", Trend5 );
RestorePriceArrays();
}
}
svTrend1 = StaticVarGet( "~Trend1" );
svTrend2 = StaticVarGet( "~Trend2" );
svTrend3 = StaticVarGet( "~Trend3" );
svTrend4 = StaticVarGet( "~Trend4" );
svTrend5 = StaticVarGet( "~Trend5" );
///////////////
// Explore
///////////////
Filter = Status( "stocknum" ) == 0 ;
SetOption( "NoDefaultColumns", True );
AddColumn( DateTime(), "Date", formatDateTime );
AddColumn( svTrend1, "Number > ma(10)", 1.0 );
AddColumn( svTrend2, "Number > ma(21)", 1.0 );
AddColumn( svTrend3, "Number > ma(50)", 1.0 );
AddColumn( svTrend4, "Number > ma(130)", 1.0 );
AddColumn( svTrend5, "Number > ma(200)", 1.0 );
///////////////
// Chart
///////////////
Plot( svTrend1, "Number > ma(10)", colorRed, styleLine | styleThick );
Plot( svTrend2, "Number > ma(21)", colorRose, styleDashed );
Plot( svTrend3, "Number > ma(50)", colorlime, styledots );
Plot( svTrend4, "Number > ma(130)", colorOrange, styleLine );
Plot( svTrend5, "Number > ma(200)", colorlightBlue, styleLine );
And it produces a Plot like this (run on the Nasdaq 100 as an example)

Another possibility would be to calculate the percentage of your watch list that is above the various trend measures and plot those percentages.