| 
  • If you are citizen of an European Union member nation, you may not use this service unless you are at least 16 years old.

  • You already know Dokkio is an AI-powered assistant to organize & manage your digital files & messages. Very soon, Dokkio will support Outlook as well as One Drive. Check it out today!

View
 

OmniPilot_OnSignal

Page history last edited by Ryan Olson 14 years, 3 months ago

Signatures

OmniPilot.OnSignal(Callback As DelegateOnSignal)

 

Purpose

This will establish the delegate call back for the OnSignal event.  This event will fire when analysis is ran on a symbol.  The delegate will contain the SymbolObject and the voted SignalObject that fired the event.

 

Example

Sub OnStartup

    StartOT

    OmniPilot.OnSignal(AddressOf MyOnSignal)

End Sub

Sub MyOnSignal(ByVal oSymbol As SymbolObject, ByVal oSignal As SignalObject)

    LogAction("Symbol " & oSymbol.Symbol & " was just voted.")

End Sub

 

Also See

OnSignal Event

 

Comments (0)

You don't have permission to comment on this page.