I had added option chain in the watchlist and run the following code in exploration. Why there is the difference in the output of the followings?
//SMI Code
SetForeign( "Nifty", fixup = True, Tradeprices = False );
........
........
AAA = EMA( nStoMom60, nPeriods60 );
BBB = IIf( nStomom60 > nEMA60, 1 , 0 );
AddColumn( BBB, "60 Total final" );
TimeFrameRestore();