OPEN POSITIONS USING HTTP_RESPONSE - Can FXDREEMA DO THAT ?
-
I have a page on the internet that I update each time with the following information:
Pair: EurUSD
OPEN: x.xxxxx
SL: x.xxxxx
TP: x.xxxxxCan I through FXDREEMA create an EA that sends an HTTP_REQUEST to the page: http://www.site.com/signal.php
When it will find this information:
Pair: EurUSD
OPEN: x.xxxxx
SL: x.xxxxx
TP: x.xxxxxIt retrieves them with HTTP_RESPONSE
And opens a position with.
Is it possible ?
-
Please,
Really i need an answer, i m working on a big project, and i need to know if Fxdreema wan resolve my problem..many thanks
-
You can find this "Send HTTP request" block, which is designed to send GET or POST data to a server with up to 10 key pairs. So yes, you can send those 4.
if there is a response from the server, after this block you can read certain value for example from Condition -> HTTP response. But note that the expected format for the response is in delimiter-separated values, where the delimiter is defined in "Send HTTP request". For example the response could be (let's say the delimiter is ;
value1;value2;value3value1 comes from key 0, value2 is on key 1 and value3 is on key 2
-
Very thankfull ...