-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.go
264 lines (200 loc) · 5.16 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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
package main
import (
"encoding/csv"
"encoding/json"
"fmt"
"log"
"math"
"net/http"
"os"
"slices"
"strconv"
"time"
)
type Stock struct {
Ticker string
Gap float64
OpeningPrice float64
}
func Load(path string) ([]Stock, error) {
// Open file using the os module
f, err := os.Open(path)
if err != nil {
fmt.Println(err)
return nil, err
}
// Defer closing the file if error occurs
defer f.Close()
// Reader of csv files
r := csv.NewReader(f)
// Read content of the file
rows, err := r.ReadAll()
if err != nil {
fmt.Println(err)
return nil, err
}
// Delete the first row of the file since its a header
rows = slices.Delete(rows, 0, 1)
// Declare variable to store our stock data
var stocks []Stock
// Loop through file and get data in each row
for _, row := range rows {
ticker:= row[0]
gap, err := strconv.ParseFloat(row[1], 64)
if err != nil {
continue
}
openingPrice, err := strconv.ParseFloat(row[2], 64)
if err != nil {
continue
}
stocks = append(stocks, Stock {
Ticker: ticker,
Gap: gap,
OpeningPrice: openingPrice,
})
}
f.Close()
return stocks, nil
}
// Money in the trading account
var accountBalance = 10000.0
// Percentage of balance i can tolerate losing
var lossTolerance = .02
// Max amount i can tolerate losing
var maxLossPerTrade = accountBalance * lossTolerance
// Percentage of gap i want to take as profit
var profitPercent = .8
type Position struct {
EntryPrice float64
Shares int
TakeProfitPrice float64
StopLossPrice float64
Profit float64
}
func Calculate(gapPercent, openingPrice float64) Position {
closingPrice := openingPrice / (1 + gapPercent)
gapValue := closingPrice - openingPrice
profitFromGap := profitPercent * gapValue
stopLoss := openingPrice - profitFromGap
takeProfit := openingPrice + profitFromGap
shares := int(maxLossPerTrade / math.Abs(stopLoss-openingPrice))
profit := math.Abs(openingPrice-takeProfit) * float64(shares)
profit = math.Round(profit*100) / 100
return Position {
EntryPrice: math.Round(openingPrice*100) /100,
Shares: shares,
TakeProfitPrice: math.Round(takeProfit*100) /100,
StopLossPrice: math.Round(stopLoss*100) /100,
Profit: math.Round(profit*100) /100,
}
}
type Selection struct {
Ticker string
Position
Articles []Article
}
const (
url = "https://seeking-alpha.p.rapidapi.com/news/v2/list-by-symbol?size=5&id="
apiKeyHeader = "x-rapidapi-key"
apiKey = "your-api-key-here"
)
type attributes struct {
PublishOn time.Time `json:"publishOn"`
Title string `json:"title"`
}
type seekingAlphaNews struct {
Attributes attributes `json:"attributes"`
}
type seekingAlphaResponse struct {
Data []seekingAlphaNews `json:"data"`
}
type Article struct {
PublishOn time.Time
Headline string
}
func FetchNews(ticker string) ([]Article, error) {
req, err := http.NewRequest(http.MethodGet, url+ticker, nil)
if err != nil {
return nil, err
}
req.Header.Add(apiKeyHeader, apiKey)
client := &http.Client{}
resp, err := client.Do(req)
if err != nil {
return nil, err
}
if resp.StatusCode < 200 || resp.StatusCode > 299 {
return nil, fmt.Errorf("unsuccessful status code %d recieved", resp.StatusCode)
}
res := &seekingAlphaResponse{}
json.NewDecoder(resp.Body).Decode(res)
var articles []Article
for _, item := range res.Data {
art := Article {
PublishOn: item.Attributes.PublishOn,
Headline: item.Attributes.Title,
}
articles = append(articles, art)
}
return articles, nil
}
func Deliver(filePath string, selections []Selection) error {
file, err := os.Create(filePath)
if err != nil {
return fmt.Errorf("error creating file: %w", err)
}
defer file.Close()
encoder := json.NewEncoder(file)
err = encoder.Encode(selections)
if err != nil {
return fmt.Errorf("error encoding selections: %w", err)
}
return nil
}
func main() {
stocks, err := Load("./opg.csv")
if err != nil {
fmt.Println(err)
return
}
stocks = slices.DeleteFunc(stocks , func(s Stock) bool {
return math.Abs(s.Gap) < .1
})
selectionsChan := make(chan Selection, len(stocks))
for _, stock := range stocks {
go func(s Stock, selected chan<-Selection) {
position := Calculate(s.Gap, s.OpeningPrice)
articles, err := FetchNews(s.Ticker)
if err != nil {
log.Printf("error loading news about %s, %v", s.Ticker, err)
selected <- Selection{}
return
} else {
log.Printf("Found %d articles about %s", len(articles), s.Ticker)
}
// We provide each selected stock with its calculated position and related articles
sel := Selection {
Ticker: s.Ticker,
Position: position,
Articles: articles,
}
selected <- sel
}(stock, selectionsChan)
}
var selections []Selection
for sel := range selectionsChan {
selections = append(selections, sel)
if len(selections) == len(stocks) {
close(selectionsChan)
}
}
outputPath := "./opg.json"
// Output the results
err = Deliver(outputPath, selections)
if err != nil {
log.Printf("Error writing output, %v", err)
return
}
log.Printf("Finished writing output to %s\n", outputPath)
}