I'm sure I am doing everything wrong here but I can't seem to figure it out. I am trying to set up an exploration of data that I have brought in via static variables. This data is working just fine to output into my Interpretation Window but I can't get it to populate the Exploration and am getting errors that I can't seem to work around. I have tries AddTextColumn and AddColumn, and I have tried with and without the StrReplace lines, and other configurations to try and get this data called into Exploration. At this point I am happy to just get it to display without any type of sorting or filtering. I can figure that out later. I am able to get the headers but no data. Can anyone point me in the right direction? I am sure Im missing something simple.
_SECTION_BEGIN ("Weighted Alpha w/ Earnings Surprise");
_Sector = StaticVarGet(Name() + "_Sector");
_WeightedAlpha = StaticVarGet(Name() + "_WeightedAlpha");
_LQESurprise = StaticVarGet(Name() + "_LQESurprise");
_LQESurprise = StrReplace(_LQESurprise, "%", "%%");
_SecondQESurprise = StaticVarGet(Name() + "_SecondQESurprise");
_SecondQESurprise = StrReplace(_SecondQESurprise, "%", "%%");
_ThirdQESurprise = StaticVarGet(Name() + "_ThirdQESurprise");
_ThirdQESurprise = StrReplace(_ThirdQESurprise, "%", "%%");
_FourthQESurprise = StaticVarGet(Name() + "_FourthQESurprise");
_FourthQESurprise = StrReplace(_FourthQESurprise, "%", "%%");
_52WkAveVol = StaticVarGet(Name() + "_52WkAveVol");
_DailyPercentPriceChange = StaticVarGet(Name() + "_DailyPercentPriceChange");
_DailyPercentPriceChange = StrReplace(_DailyPercentPriceChange, "%", "%%");
_PercentVolume = StaticVarGet(Name() + "_PercentVolume");
_PercentInsider = StaticVarGet(Name() + "_PercentInsider");
_PercentInsider = StrReplace(_PercentInsider, "%", "%%");
_PercentInstitutional = StaticVarGet(Name() + "_PercentInstitutional");
_PercentInstitutional = StrReplace(_PercentInstitutional, "%", "%%");
_Float = StaticVarGet(Name() + "_Float");
_Float = StrReplace(_Float, "%", "%%");
_LastEarningsDate = StaticVarGet(Name() + "_LastEarningsDate");
_NextEarningsDate = StaticVarGet(Name() + "_NextEarningsDate");
AddColumn(_Sector, "Sector", 1);
AddColumn(_WeightedAlpha, "Weighted Alpha", 1.2);
AddColumn(_LQESurprise, "Last Qtr Surprise", 1.2);
AddColumn(_SecondQESurprise, "2nd Qtr Surprise", 1.2);
AddColumn(_ThirdQESurprise, "3rd Qtr Surprise", 1.2);
AddColumn(_FourthQESurprise, "4th Qtr Surprise", 1.2);
_SECTION_END();