//------------------------------------------------------------------------
// : DataSeriesReadFunc_1d
// : 
// : û
// : û
// : ֵ
//------------------------------------------------------------------------
Params
	//˴Ӳ
	
Vars
	//˴ӱ	
	Dic<Array<bool>> boolArrDs("boolArrDs");
	Dic<Array<Integer>> intArrDs("intArrDs");
	Dic<Array<Numeric>> numArrDs("numArrDs");
	Dic<Array<String>> strArrDs("strArrDs");
	
	Array<Bool> tempBoolArrDs;
	Array<Integer> tempIntArrDs;
	Array<Numeric> tempNumArrDs;
	Array<String> tempStrArrDs;
	
	Integer i;
	String tempStr;
Begin
    //˴Ӵ
    tempBoolArrDs = boolArrDs[0];
    tempIntArrDs = intArrDs[0];
    tempNumArrDs = numArrDs[0];
    tempStrArrDs = strArrDs[0];
	For i=0 To 3
	{
		If (boolArrDs[0][i] == True)	{
			Commentary("boolArrDs[0][" + Text(i) + "] = True");	
		}
		Else {
			Commentary("boolArrDs[0][" + Text(i) + "] = False");	
		}
		If (tempBoolArrDs[i] == True)	{
			Commentary("tempBoolArrDs[" + Text(i) + "] = True");	
		}
		Else {
			Commentary("tempBoolArrDs[" + Text(i) + "] = False");	
		}
		
 		Commentary("intArrDs[0][" + Text(i) + "] = " + Text(intArrDs[0][i]));
		Commentary("tempIntArrDs[" + Text(i) + "] = " + Text(tempIntArrDs[i]));
		
		Commentary("numArrDs[0][" + Text(i) + "] = " + Text(numArrDs[0][i]));
		Commentary("tempNumArrDs[" + Text(i) + "] = " + Text(tempNumArrDs[i]));
		
		tempStr = strArrDs[0][i];
		Commentary("strArrDs[0][" + Text(i) + "] = " + tempStr);
		tempStr = tempStrArrDs[i];
		Commentary("tempArray<String>Ds[" + Text(i) + "] = " + tempStr);
	}
	
	Return 0;
End


//------------------------------------------------------------------------
// 汾:	2018/11/30 092934
// Ȩ	TradeBlazer
// 	TradeBlazer SoftwareTradeBlazerƽ̨
//			ÿһ汾TradeBlazerʽ޸ĺдȨ
//------------------------------------------------------------------------