Hi to all,
I tried to make a DDE Client in perl, but I cant get any data from MT4.
I would like to know waht is wrong with this code in perl:
use strict;
use Win32

E::Client;
my $Client = new Win32

E::Client('MT4', 'BID');
die "Unable to initiate conversation" if $Client->Error;
my $group= $Client->Request('EURUSD');
print "$group\n";
$Client->Disconnect;
Thank you.
Oscar