OnTick
Posted by Mohammad Rahhal, Last modified by Diana Alkouni on 02 September 2020 10:06 AM
|
|
Description The OnTick event is generated whenever there is a new tick. There are 2 variants form of the events:
Or
You should use one form to consume OnTick Event.
See Also | |
|
Comments (2)
abdul azeez
29 June 2015 12:01 PM
sir,
please any one help me.
i am new in this system
my first requirement is, assume i have a symbol name 'xyz'. when ever the price movement of this symbol 'xyz' happens i need to read the new price of it. how it is possible? could you please help me?
please any one help me.
i am new in this system
my first requirement is, assume i have a symbol name 'xyz'. when ever the price movement of this symbol 'xyz' happens i need to read the new price of it. how it is possible? could you please help me?
Hassan Abu Krayem
30 June 2015 01:07 PM
Hello,
Please check this sample
Public Sub OnTick(symName as string)
Dim Bid As Double
Bid = ClientCode.SymbolInfoDouble(symName,VTLGeneral.ENUM_SYMBOL_INFO_DOUBLE.SYMBOL_BID)
End Sub
For faster response please visit our forum : http://www.hybrid-solutions.com/forum/
Please check this sample
Public Sub OnTick(symName as string)
Dim Bid As Double
Bid = ClientCode.SymbolInfoDouble(symName,VTLGeneral.ENUM_SYMBOL_INFO_DOUBLE.SYMBOL_BID)
End Sub
For faster response please visit our forum : http://www.hybrid-solutions.com/forum/