Sample code for 30+ languages & platforms
AutoIt

Read Bitfinex WebSocket Ticker Channel

See more WebSocket Examples

Subscribes to the public Bitfinex websocket ticker channel and receives ticker updates.

Chilkat AutoIt Downloads

AutoIt
Local $bSuccess = False

; This example requires the Chilkat API to have been previously unlocked.
; See Global Unlock Sample for sample code.

$oWs = ObjCreate("Chilkat.WebSocket")

; For brevity, this example does not check for errors when etablishing the WebSocket connection.
; See Establish WebSocket Connection for more complete sample code for making the connection.

$oRest = ObjCreate("Chilkat.Rest")

; Connect to api.bitfinex.com
$bSuccess = $oRest.Connect("api.bitfinex.com",443,True,False)
$oWs.UseConnection($oRest)
$oWs.AddClientHeaders()

Local $sResponseBody = $oRest.FullRequestNoBody("GET","/ws")
$bSuccess = $oWs.ValidateServerHandshake()
If ($bSuccess <> True) Then
    ConsoleWrite($oWs.LastErrorText & @CRLF)
    ConsoleWrite($sResponseBody & @CRLF)
    ConsoleWrite($oRest.ResponseHeader & @CRLF)
    Exit
EndIf

; After connecting, the bitfinex websocket server will send
; an info message that contains the actual version of the websocket stream.
; Receive that message..
$bSuccess = $oWs.ReadFrame()
If ($bSuccess <> True) Then
    ConsoleWrite("Failed to receive a frame" & @CRLF)
    ConsoleWrite("ReadFrame fail reason = " & $oWs.ReadFrameFailReason & @CRLF)
    ConsoleWrite($oWs.LastErrorText & @CRLF)
    Exit
EndIf

; We should get this:
; {"event":"info","version":1.1,"platform":{"status":1}}
ConsoleWrite($oWs.GetFrameData() & @CRLF)

; Subscribe to the public ticker feed.
; See https://docs.bitfinex.com/docs for more information.
$oJson = ObjCreate("Chilkat.JsonObject")
$oJson.AppendString("event","subscribe")
$oJson.AppendString("channel","ticker")
$oJson.AppendString("pair","BTCUSD")

Local $bFinalFrame = True
$bSuccess = $oWs.SendFrame($oJson.Emit(),$bFinalFrame)

; Read the response.
$bSuccess = $oWs.ReadFrame()
If ($bSuccess <> True) Then
    ConsoleWrite("Failed to receive a frame" & @CRLF)
    ConsoleWrite("ReadFrame fail reason = " & $oWs.ReadFrameFailReason & @CRLF)
    ConsoleWrite($oWs.LastErrorText & @CRLF)
    Exit
EndIf

; Examine the response
; We should get this:
; {"event":"subscribed","channel":"ticker","chanId":2751,"pair":"BTCUSD"}
ConsoleWrite($oWs.GetFrameData() & @CRLF)

; Begin reading the ticker feed.
; We'll just read the 1st 5 updates and then exit..
Local $bReceivedFinalFrame = False
Local $iNumUpdatesReceived = 0
While $iNumUpdatesReceived < 5

    $bSuccess = $oWs.ReadFrame()
    If ($bSuccess <> True) Then
        ConsoleWrite("Failed to receive a frame" & @CRLF)
        ConsoleWrite("ReadFrame fail reason = " & $oWs.ReadFrameFailReason & @CRLF)
        ConsoleWrite($oWs.LastErrorText & @CRLF)
        Exit
    EndIf

    ; The responses we desire are in Text frames, where the opcode = 1.
    If ($oWs.FrameOpcodeInt = 1) Then
Local $sReceivedText = $oWs.GetFrameData()
        ConsoleWrite($sReceivedText & @CRLF)
        ; Should receive a line of text such as this:
        ; [2751,7349,36.34269559,7349.1,41.01777063,-116.2,-0.0156,7349.1,22188.26055319,7560,7270.5]
        $iNumUpdatesReceived = $iNumUpdatesReceived + 1
    EndIf

Wend

; Close the websocket connection.
$bSuccess = $oWs.SendClose(True,1000,"Closing this websocket.")
If ($bSuccess <> True) Then
    ConsoleWrite($oWs.LastErrorText & @CRLF)
    Exit
EndIf

; Read the Close response.
$bSuccess = $oWs.ReadFrame()
If ($bSuccess <> True) Then
    ConsoleWrite("ReadFrame fail reason = " & $oWs.ReadFrameFailReason & @CRLF)
    ConsoleWrite($oWs.LastErrorText & @CRLF)
    Exit
EndIf

ConsoleWrite("Success." & @CRLF)