{ Function: _DateTimeSymBSMP Purpose: Create text string of Date Time symbol BarStatus(1) MP MP[1] (MPPrior) in format: "12/31/09 1314 GCJ09 BS=1 MP=-1 MP[1]=0" Note: This function must be defined as a series function to be able to store prior MP value. Author: MarkSanDiego Last Updated: 04/26/09 original version } vars: {intrabarpersist} MP(0), intrabarpersist MP1(0); MP = MarketPosition; _DateTimeSymBSMP = ELDateToString(Date) & " " & RightStr("000" & NumToStr(Time,0), 4) & " " & Symbol & " BS=" & NumToStr(BarStatus(1),0) & " MP= " & RightStr(" " & NumToStr(MP, 0), 2) & " MP[1]= " & RightStr(" " & NumToStr(MP[1], 0), 3) & " Bar= " & NumToStr(BarNumber,0) & " "; MP1 = MP;