-
Notifications
You must be signed in to change notification settings - Fork 0
/
SIGNAL READER.cs
262 lines (224 loc) · 7.53 KB
/
SIGNAL READER.cs
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
//#reference: ./libs/JsonFx.dll
//#reference: ./libs/EasyHttp.dll
using System;
using System.Collections.Generic;
using System.Net;
using cAlgo.API;
using cAlgo.API.Indicators;
using cAlgo.API.Requests;
using cAlgo.Indicators;
using EasyHttp.Http;
static class FServer
{
public const string URL = "";
public const string ACCOUNT_NO = "";
public const int BETWEEN_REQUESTS = 15;
}
namespace cAlgo.Robots
{
[Robot()]
public class SIGNALREADER : Robot
{
private ServerSignal signal;
private DateTime time;
protected override void OnStart()
{
time = Server.Time;
play();
}
protected override void OnTick()
{
TimeSpan diff = Server.Time - time;
if (diff.TotalSeconds < FServer.BETWEEN_REQUESTS)
{
return;
}
play();
foreach (Position position in Positions)
{
if (position.SymbolCode != Symbol.Code)
{
continue;
}
new ServerTradeUpdate(position);
}
time = Server.Time;
}
protected override void OnStop()
{
}
protected override void OnError(Error error)
{
switch (error.Code)
{
case ErrorCode.BadVolume:
Print("Bad Volume");
break;
case ErrorCode.TechnicalError:
Print("Technical Error");
break;
case ErrorCode.NoMoney:
Print("No Money");
break;
case ErrorCode.Disconnected:
Print("Disconnected");
break;
case ErrorCode.MarketClosed:
Print("Market Closed");
break;
}
}
protected override void OnPositionOpened(Position position)
{
var trade = new ServerTrade(position, position.EntryPrice, Symbol.Spread);
trade.openTrade();
}
protected override void OnPositionClosed(Position position)
{
var trade = new ServerTrade(position, Symbol.Bid, Symbol.Spread);
trade.closeTrade();
}
protected override void OnPendingOrderCreated(PendingOrder newOrder)
{
}
public void play()
{
fetchSignals();
if (signal.signal_id != null)
{
openTrade();
}
}
private void openTrade()
{
TradeType tradeType = TradeType.Buy;
if (signal.direction == "SELL")
tradeType = TradeType.Sell;
var lot_size = (int)(signal.lot_size * 10);
var request = new StopOrderRequest(tradeType, lot_size * 10000, signal.entry)
{
Label = "signal_id=" + signal.signal_id,
StopLoss = signal.sl,
TakeProfit = signal.tp,
Expiration = signal.expiration
};
Trade.Send(request);
signal.signalStored();
}
private void fetchSignals()
{
try
{
var http = new HttpClient();
http.Request.Accept = HttpContentTypes.ApplicationJson;
var response = http.Get(FServer.URL + "/signal/reader/?broker=fxpro&account=" + FServer.ACCOUNT_NO + "&type=json&pair=" + Symbol.Code);
signal = response.StaticBody<ServerSignal>();
} catch (WebException e)
{
return;
}
}
private void sendLog(string action, Position position)
{
try
{
var http = new HttpClient();
http.Request.Accept = HttpContentTypes.ApplicationJson;
var response = http.Get(FServer.URL + "/report/log/?broker=fxpro&account=" + FServer.ACCOUNT_NO + "&action=" + action + "&ticket_id=" + position.Id + "&profit=" + position.NetProfit);
} catch (WebException e)
{
Print("Cannot connect to the server (sendLog)");
return;
}
}
}
public class ServerSignal
{
public string pair { get; set; }
public string signal_id { get; set; }
public string direction { get; set; }
public double tp { get; set; }
public double sl { get; set; }
public double entry { get; set; }
public double lot_size { get; set; }
public DateTime expiration { get; set; }
public string comment { get; set; }
public ServerSignal()
{
}
private void sendLog(string action)
{
try
{
var http = new HttpClient();
http.Request.Accept = HttpContentTypes.ApplicationJson;
var response = http.Get(FServer.URL + "/report/log/?broker=fxpro&account=" + FServer.ACCOUNT_NO + "&action=" + action + "&signal_id=" + signal_id);
} catch (WebException e)
{
return;
}
}
public void signalStored()
{
sendLog("signal_stored");
}
public void signalActivated()
{
sendLog("signal_activated");
}
public void signalRemoved()
{
sendLog("signal_removed");
}
}
public class ServerTrade
{
private Position pos;
private double price;
private double spread;
public ServerTrade(Position _pos, double _price, double _spread)
{
pos = _pos;
price = _price;
spread = _spread;
}
public void openTrade()
{
string comment = pos.Label;
if (comment.IndexOf("signal_id=") < 0)
return;
sendLog("open_trade", "signal_id=" + comment.Replace("signal_id=", "") + "&size=" + pos.Volume + "&projected_tp=" + pos.TakeProfit + "&projected_sl=" + pos.StopLoss + "&tp=" + pos.TakeProfit + "&sl=" + pos.StopLoss);
}
public void closeTrade()
{
sendLog("close_trade", "profit=" + pos.NetProfit + "&commision=" + pos.Commissions + "&swap=" + pos.Swap + "&net_profit=" + pos.NetProfit + "&gross_profit=" + pos.GrossProfit);
}
private void sendLog(string action, string extraParam = "")
{
try
{
var http = new HttpClient();
http.Request.Accept = HttpContentTypes.ApplicationJson;
var response = http.Get(FServer.URL + "/report/log/?broker=fxpro&account=" + FServer.ACCOUNT_NO + "&ticket=" + pos.Id + "&action=" + action + "&price=" + price + "&spread=" + spread + "&" + extraParam);
} catch (WebException e)
{
return;
}
}
}
public class ServerTradeUpdate
{
public ServerTradeUpdate(Position pos)
{
try
{
var http = new HttpClient();
http.Request.Accept = HttpContentTypes.ApplicationJson;
var response = http.Get(FServer.URL + "/report/trade/?broker=fxpro&account=" + FServer.ACCOUNT_NO + "&ticket=" + pos.Id + "&commision=" + pos.Commissions + "&swap=" + pos.Swap + "&net_profit=" + pos.NetProfit + "&gross_profit=" + pos.GrossProfit);
} catch (WebException e)
{
return;
}
}
}
}