QQQ closed at 35.96 today. The resistence will be the intermediate downtrend line below 37. If 37 is taken out, it will signal a breakout from the downtrend started in Jan. 2004. We will take some profit at 37 and use 36 as the stop for remaining position.
Monthly Archives: May 2004
QQQ
QQQ closed at 35.96 today. The resistence will be the intermediate downtrend line below 37. If 37 is taken out, it will signal a breakout from the downtrend started in Jan. 2004. We will take some profit at 37 and use 36 as the stop for remaining position.
QQQ
QQQ bounced back from the support at 34. The big intraday swing probably caused a lot of pains among many. It needs to take out 35.5 to show the strength of the bulls.
QQQ
QQQ bounced back from the support at 34. The big intraday swing probably caused a lot of pains among many. It needs to take out 35.5 to show the strength of the bulls.
Better xsd.exe
now, it supports property, collection, import and option not to generate codes for imported types. download.
for more info, check here.
Statement.xsd
CashAccount.xsd
‘ Statement.vb
‘
_
Public Class ConsolidatedAccountStatementResponse
Private _cashAccounts As CashAccountCollection
‘
_
Public Property CashAccounts As CashAccountCollection
Get
Return Me._cashAccounts
End Get
Set
Me._cashAccounts = value
End Set
End Property
End Class
Public Class CashAccountCollection
Inherits System.Collections.CollectionBase
Public Default Property Item(ByVal idx As Integer) As CashAccount
Get
Return CType(MyBase.InnerList(idx),CashAccount)
End Get
Set
MyBase.InnerList(idx) = value
End Set
End Property
Public Function Add(ByVal value As CashAccount) As Integer
Return MyBase.InnerList.Add(value)
End Function
End Class