//------------------------------------------------------------------------
// : DataSeriesWriteFunc
// : 
// : û
// : û
// : ֵ
//------------------------------------------------------------------------
Params
	//˴Ӳ
	
Vars
	Dic<Bool> boolDs("boolDs");
	Dic<Integer> integerDs("integerDs");
	Dic<Numeric> numericDs("numericDs");
	Dic<String> stringDs("stringDs");

	Integer barCount;
Begin
    //˴Ӵ
    barCount = CurrentBar();
    if(barCount % 2 == 0)
    {
    	boolDs[0] = True;
    	integerDs[0] = barCount;
    	numericDs[0] = barCount / 10;
    	stringDs[0] = "str_" + Text(barCount);
    }
	Return 0;
End


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