http request sending same value several times
-
Hello
Just staring using fxdreema and its a great tool, specially for us that dont now mql4 very well.The problem is I'm trying to send a http request to a web server with high/low/open/close etc when I'm clicking a button on the chart.
The first request is fine, but when sending another one, its just ads the values to the urlthe first one
http://localhost/?open=0.76497&close=0.76499&high=0.765&low=0.8849996the next one is
http://localhost/?open=0.76008&close=0.76011&high=0.76011&low=0.76002&open=0.76008&close=0.7601&high=0.76011&low=0.76002and then it just gets bigger and bigger.
Do I have todo something to reset it somehow for each time?
Regards
kritro -
If I changed
static string HttpAddress = "http://localhost/";
to
static string HttpAddress = "";
HttpAddress = "http://localhost/";in the block that handles the request in mql source code it works, but It would be better to not have todo this for every change:)
-
Now working?
-
Yes, now working
Thanks for support and great product.
I've just started testing it and I definitely go for the full product.
Regards