//------------------------------------------------------------------------
// : DataSeriesWriteFunc_1d
// : 
// : û
// : û
// : ֵ
//------------------------------------------------------------------------
Params
	//˴Ӳ

Vars
	//˴ӱ	
	Dic<Array<bool>> boolArrDs("boolArrDs");
	Dic<Array<Integer>> intArrDs("intArrDs");
	Dic<Array<Numeric>> numArrDs("numArrDs");
	Dic<Array<String>> strArrDs("strArrDs");
	
	Integer barCount;
Begin
    //˴Ӵ
	barCount = CurrentBar();
    If(barCount % 5 == 0)
    {
    	boolArrDs[0] = True;
    	intArrDs[0] = barCount;
    	numArrDs[0] = barCount / 10;
    	strArrDs[0] = "str_" + Text(barCount);
    }
    If(barCount % 5 == 1)
    {
    	boolArrDs[0][0] = True;
    	intArrDs[0][0] = barCount;
    	numArrDs[0][0] = barCount / 10;
    	strArrDs[0][0] = "str_" + Text(barCount);
    }
    If(barCount % 5 == 2)
    {
    	boolArrDs[0][1] = True;
    	intArrDs[0][1] = barCount;
    	numArrDs[0][1] = barCount / 10;
    	strArrDs[0][1] = "str_" + Text(barCount);
    }
    If(barCount % 5 == 3)
    {
    	boolArrDs[0][2] = True;
    	intArrDs[0][2] = barCount;
    	numArrDs[0][2] = barCount / 10;
    	strArrDs[0][2] = "str_" + Text(barCount);
    }
    If(barCount % 5 == 4)
    {
    	
    }
	Return 0;
End


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