Skip to content

Commit 61f75d0

Browse files
committed
Moved repositories to the organization
1 parent 1d635b1 commit 61f75d0

File tree

8 files changed

+14
-22
lines changed

8 files changed

+14
-22
lines changed

LICENSE.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2025 Valentin Popov <valentin@popov.link>
1+
Copyright (c) 2025 Valentin Popov <valentin[email protected]>
22

33
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
44

README.md

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,14 @@
11
# MT4 Client Library
22

3-
[![Go Reference](https://pkg.go.dev/badge/go.popov.link/metatrader4.svg)](https://pkg.go.dev/go.popov.link/metatrader4)
4-
[![codecov](https://codecov.io/gh/valentineus/go-metatrader4/graph/badge.svg?token=6ZE32TQERQ)](https://codecov.io/gh/valentineus/go-metatrader4)
5-
[![Go Report Card](https://goreportcard.com/badge/go.popov.link/metatrader4)](https://goreportcard.com/report/go.popov.link/metatrader4)
3+
[![Go Reference](https://pkg.go.dev/badge/github.com/digineat/go-metatrader4.svg)](https://pkg.go.dev/github.com/digineat/go-metatrader4)
4+
[![Go Report Card](https://goreportcard.com/badge/github.com/digineat/go-metatrader4)](https://goreportcard.com/report/github.com/digineat/go-metatrader4)
65

76
A lightweight Go client library for interacting with a MetaTrader 4 (MT4) trading server over TCP.
87

98
## Example Usage
109

1110
```go
12-
import "go.popov.link/metatrader4/mt4"
11+
import "github.com/digineat/go-metatrader4/mt4"
1312

1413
client := mt4.NewClient("127.0.0.1", 443,
1514
mt4.WithDialTimeout(3*time.Second),
@@ -40,11 +39,10 @@ Use `WithAutoClose(false)` if you want to reuse the connection manually via `cli
4039

4140
## Project Info
4241

43-
- Vanity import path: `go.popov.link/metatrader4`
44-
- Source mirror (read-only): [git.popov.link](https://git.popov.link/go-metatrader4/)
45-
- Issues and contributions: [GitHub](https://github.com/valentineus/go-metatrader4/issues)
42+
- Vanity import path: `github.com/digineat/go-metatrader4/mt4`
43+
- Issues and contributions: [GitHub](https://github.com/digineat/go-metatrader4/issues)
4644

47-
Maintained by [Valentin Popov](mailto:valentin@popov.link).
45+
Maintained by [Valentin Popov](mailto:valentin[email protected]).
4846

4947
## License
5048

examples/info/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Example: INFO Command
22

3-
This example demonstrates how to use the [`go-metatrader4`](https://github.com/valentineus/go-metatrader4) library to send the `INFO` command to a MetaTrader 4 (MT4) server and retrieve server information.
3+
This example demonstrates how to use the [`go-metatrader4`](https://github.com/digineat/go-metatrader4) library to send the `INFO` command to a MetaTrader 4 (MT4) server and retrieve server information.
44

55
The `INFO` command requests basic server details such as build version and company name.
66

examples/info/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66
"log"
77
"time"
88

9-
"go.popov.link/metatrader4/mt4"
9+
"github.com/digineat/go-metatrader4/mt4"
1010
)
1111

1212
func main() {

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module go.popov.link/metatrader4
1+
module github.com/digineat/go-metatrader4
22

33
go 1.24.2
44

go.sum

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,2 @@
1-
golang.org/x/text v0.25.0 h1:qVyWApTSYLk/drJRO5mDlNYskwQznZmkpV2c8q9zls4=
2-
golang.org/x/text v0.25.0/go.mod h1:WEdwpYrmk1qmdHvhkSTNPm3app7v4rsT8F2UD6+VHIA=
3-
golang.org/x/text v0.26.0 h1:P42AVeLghgTYr4+xUnTRKDMqpar+PtX7KWuNQL21L8M=
4-
golang.org/x/text v0.26.0/go.mod h1:QK15LZJUUQVJxhz7wXgxSy/CJaTFjd0G+YLonydOVQA=
5-
golang.org/x/text v0.27.0 h1:4fGWRpyh641NLlecmyl4LOe6yDdfaYNrGb2zdfo4JV4=
6-
golang.org/x/text v0.27.0/go.mod h1:1D28KMCvyooCX9hBiosv5Tz/+YLxj0j7XhWjpSUF7CU=
71
golang.org/x/text v0.28.0 h1:rhazDwis8INMIwQ4tpjLDzUhx6RlXqZNPEM0huQojng=
82
golang.org/x/text v0.28.0/go.mod h1:U8nCwOR8jO/marOQ0QbDiOngZVEBB7MAiitBuMjXiNU=

mt4/client.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ import (
55
"fmt"
66
"time"
77

8-
"go.popov.link/metatrader4/internal/conn"
9-
"go.popov.link/metatrader4/internal/proto"
8+
"github.com/digineat/go-metatrader4/internal/conn"
9+
"github.com/digineat/go-metatrader4/internal/proto"
1010
)
1111

1212
// Client provides access to a MetaTrader4 server.

mt4/client_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ import (
77
"testing"
88
"time"
99

10-
ic "go.popov.link/metatrader4/internal/conn"
11-
"go.popov.link/metatrader4/internal/proto"
10+
ic "github.com/digineat/go-metatrader4/internal/conn"
11+
"github.com/digineat/go-metatrader4/internal/proto"
1212
)
1313

1414
// mockServer returns net.Pipe connections with server writing resp to client.

0 commit comments

Comments
 (0)