'########################################################### ' Script Name: Targetted PL ' Author: Ehab Kanani ' Descreption: This Client Script will create a time label on your chart ' Website: http://www.hybridsolutions.com ' Date: March, 22nd, 2012 '###########################################################
Dim objID
''' <summary>
''' The main function is the entry point for any Script program
''' </summary>
Public Sub main()
objID="label1"
CreateObjectLabel 0,0,CSTR(objID),20,20,TimeLocal()
ObjectSet 0,CSTR(objID),1,False
IntervalTimer 1000
EnableTimer True
End Sub
''' <summary>
''' The function is generated when a new tick is received fro any symbol
''' </summary>
Public Sub OnTimer()
ObjectSet 0,CSTR(objID),2,TimeLocal()
End Sub
''' <summary>
''' The function is generated when a new tick is received fro any symbol
''' </summary>
Public Sub OnTick(SymbolName)
End Sub
Public Sub OnInit()
'''TODO: initialization method
End Sub
''' <summary>
''' The function is generated when deinitialization script
''' </summary>
Public Sub OnDeInit()
'''TODO: deinitialization method
End Sub
See Also
Back to VTL Client Script Index
|