View Single Post
  #1 (permalink)  
Old 03-10-2006, 02:58 AM
moscar.1 moscar.1 is offline
Junior Member
 
Join Date: Mar 2006
Posts: 6
moscar.1 is on a distinguished road
Cool MT4 DDE with perl

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 Win32E::Client;

my $Client = new Win32E::Client('MT4', 'BID');
die "Unable to initiate conversation" if $Client->Error;

my $group= $Client->Request('EURUSD');
print "$group\n";


$Client->Disconnect;

Thank you.

Oscar
Reply With Quote