Hi,

Another noobie question...

I have coded up some specific series that I'd like to export to a CSV file; would have thought it to be pretty easy,
however, am not sure I am seeing the right output length's for the calculated series; I tried NumBars; it came out 0,
then Lookback, which was 80, etc... Am looking for something like the pseudocode below; I will adapt it to write to a
file, etc. The real issue is this: what should mySeriesLength be set to? Do I have to use a different function other
than run() to accompish this? It appeared that any output printf's in run() executed BEFORE the data was loaded,
series were calculated, etc.

vars myseries1=series(<function of interest>);
vars myseries2=series(<function of interest>);
...
for(i=0; i < mySeriesLength; i++)
{
printf("%f %f", myseries1[i],myseries2[i]);
}

Please advise,
TIA for your help,
Vode Norwood