I'm wanting to use the data points as the indicator plotted from the
following code. If I use setbarsrequired(100000,100000), it gives me
different output than what I'm looking for and none of the explorations
or scans are searching for the criteria that I want them to. How do I
fix the code, so as to get the values associated without using
setbarsrequired()?
SetBarsRequired(100000);
SetForeign(GetBaseIndex());
TimeFrameSet(inWeekly);
xp=RelStrength("sp-500");
MA10=EMA(xp,40);
f=TimeFrameExpand(xp,inWeekly);
g=TimeFrameExpand(MA10,inWeekly);
TimeFrameRestore();
RestorePriceArrays();
Plot(f,"relstrength",colorBlack,styleLine);
Plot(g,"ema10",colorGreen,styleLine);