Setup:
#import "speak_b6.dll"
	bool gSpeak(string text, int rate, int volume); 
//function to call from indicators or EA, where "rate" is the speed of output 
#import

example:
  {
   gSpeak("Hurry up! Let's BUY <pitch middle = '-10'/> Euro",1,100));
   
  }
//+------------------------------------------------------------------+


Inputs:
Notice tags inside the text to control voice pitch in the output e.g. 
<pitch middle = '-10'/> - lowers the pitch 
<pitch middle = '10'/>  - increases the pitch
., - inserts a short gap in speach
! - inserts a longer gap

see speak.mq4 EA for example.

