-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsendAutoTx.go
More file actions
83 lines (75 loc) · 2 KB
/
sendAutoTx.go
File metadata and controls
83 lines (75 loc) · 2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
package main
import (
"github.com/distributeddesigns/currency"
types "github.com/distributeddesigns/shared_types"
"github.com/streadway/amqp"
)
func fulfilAutoTx(autoTxFilled types.AutoTxFilled) {
return
}
func updateAccount(autoTxFilled types.AutoTxFilled) {
// TODO: Do account add and lock here, needs rebase
return
}
func sendAutoTx() {
ch, err := rmqConn.Channel()
failOnError(err, "Failed to open a channel")
defer ch.Close()
for {
select {
case autoTxInit := <-autoTxInitChan:
autoTxKey := autoTxInit.AutoTxKey
qr := types.QuoteRequest{
Stock: autoTxKey.Stock,
UserID: autoTxKey.UserID,
}
quote, found := getCachedQuote(qr)
var validTrigger bool
if autoTxKey.Action == "Buy" {
validTrigger = found && (quote.Price.ToFloat() < autoTxInit.Trigger.ToFloat())
} else {
validTrigger = found && (quote.Price.ToFloat() > autoTxInit.Trigger.ToFloat())
}
if validTrigger {
// TODO: DO MATH FOR FILLED TRANS
curr, err := currency.NewFromFloat(0.00)
failOnError(err, "Failed to parse currency")
autoTxFilled := types.AutoTxFilled{
AddFunds: curr,
AddStocks: uint(0),
AutoTxKey: autoTxKey,
}
updateAccount(autoTxFilled)
continue
}
// No quote found, let's autoTx that
err := ch.Publish(
"", // exchange
autoTxQueue, // routing key
false, // mandatory
false, // immediate
amqp.Publishing{
ContentType: "text/csv",
Headers: amqp.Table{
"transType": "autoTxInit",
},
Body: []byte(autoTxInit.ToCSV()),
})
failOnError(err, "Failed to publish a message")
case autoTxKey := <-autoTxCancelChan:
err := ch.Publish(
"", // exchange
autoTxQueue, // routing key
false, // mandatory
false, // immediate
amqp.Publishing{
ContentType: "text/csv",
Headers: amqp.Table{
"transType": "autoTxCancel",
},
Body: []byte(autoTxKey.ToCSV()),
})
failOnError(err, "Failed to publish a message")
}
}
}