View Single Post
  #3 (permalink)  
Old 03-31-2006, 09:56 PM
Nicholishen's Avatar
Nicholishen Nicholishen is offline
Senior Member
 
Join Date: Dec 2005
Posts: 531
Nicholishen is on a distinguished road
Quote:
Originally Posted by techinvest
anyone??????
Try this
PHP Code:
bool mail;
int start(){
   if (
Hour()>=23 && !mail){
      
SendMail("DLMod1""Account Balance is-"+DoubleToStr(AccountBalance(),2)+"_Account Equity is-"+DoubleToStr(AccountEquity(),2)+
      
"_Account Profit is-"+DoubleToStr(AccountProfit(),2)+"_Account Margin is-"+DoubleToStr(AccountMargin(),2)+
      
"_Account Free Margin is-"+DoubleToStr(AccountFreeMargin(),2));
      
mail=true;
   }
   if(
Hour()<23)mail=false;

__________________
"Anyone who has never made a mistake has never tried anything new." -Albert Einstein

Last edited by Nicholishen; 03-31-2006 at 10:00 PM.
Reply With Quote