-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
137 lines (111 loc) · 3.55 KB
/
main.go
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
package main
import (
binance "binance-integration/binance"
utils "binance-integration/utils"
"time"
)
func main() {
executeTrades() // Execute immediately on start
ticker := time.NewTicker(5 * time.Minute)
for {
select {
case <-ticker.C:
executeTrades() // Then execute every 6 hours
}
}
}
func executeTrades() {
interval := "5m"
limit := 200 // Obtendo as últimas 200 velas de 5 minutos
ohlcData := binance.FetchOHLCData(interval, limit)
support, resistance := utils.IdentifyLevels(ohlcData)
// resistance, support := utils.CalculateLevels(ohlcData)
binance.ExecuteTrades(interval, limit, resistance, support)
}
// func executeTrades(resistance []float64, support []float64) {
// client, err := mongo.NewClient(options.Client().ApplyURI("mongodb://localhost:27017"))
// if err != nil {
// log.Fatal(err)
// }
// ctx, _ := context.WithTimeout(context.Background(), 10*time.Second)
// err = client.Connect(ctx)
// if err != nil {
// log.Fatal(err)
// }
// defer client.Disconnect(ctx)
// tradesCollection := client.Database("test").Collection("trades")
// currentPrice := fetchCurrentPrice()
// if len(resistance) < 1 || len(support) < 1 {
// fmt.Println("No resistance or support levels found")
// return
// }
// var tradeType string
// if currentPrice > resistance[len(resistance)-1] {
// fmt.Println("Sell Signal")
// tradeType = "sell"
// } else if currentPrice < support[len(support)-1] {
// fmt.Println("Buy Signal")
// tradeType = "buy"
// } else {
// fmt.Println("No Signal")
// tradeType = "no signal"
// }
// trade := Trade{
// Type: tradeType,
// Price: currentPrice,
// Timestamp: time.Now(),
// }
// _, err = tradesCollection.InsertOne(ctx, trade)
// if err != nil {
// log.Fatal(err)
// }
// }
// func CalculateLevels(data []OHLC) ([]float64, []float64) {
// high := make([]float64, len(data))
// low := make([]float64, len(data))
// for i, ohlc := range data {
// high[i] = parseFloat64(ohlc.High)
// low[i] = parseFloat64(ohlc.Low)
// }
// period := 3 // Example period for the SMA
// if len(high) < period || len(low) < period {
// fmt.Println("Not enough data points for the SMA calculation")
// return
// }
// resistance := talib.Sma(high, period)
// support := talib.Sma(low, period)
// return resistance, support
// }
// func calculateProfit() {
// client, err := mongo.NewClient(options.Client().ApplyURI("mongodb://localhost:27017"))
// if err != nil {
// log.Fatal(err)
// }
// ctx, _ := context.WithTimeout(context.Background(), 10*time.Second)
// err = client.Connect(ctx)
// if err != nil {
// log.Fatal(err)
// }
// defer client.Disconnect(ctx)
// tradesCollection := client.Database("test").Collection("trades")
// cursor, err := tradesCollection.Find(ctx, bson.M{})
// if err != nil {
// log.Fatal(err)
// }
// var trades []Trade
// if err = cursor.All(ctx, &trades); err != nil {
// log.Fatal(err)
// }
// sort.Slice(trades, func(i, j int) bool {
// return trades[i].Timestamp.Before(trades[j].Timestamp)
// })
// var totalProfit float64
// for _, trade := range trades {
// if trade.Type == "buy" {
// totalProfit -= trade.Price
// } else if trade.Type == "sell" {
// totalProfit += trade.Price
// }
// }
// fmt.Printf("Total profit: %f\n", totalProfit)
// }