//+------------------------------------------------------------------+ //| closeall.mq4 | //| Phoenix | //| no1phoenix@gmail.com | //+------------------------------------------------------------------+ #property copyright "Phoenix" #property link "no1phoenix@gmail.com" //+------------------------------------------------------------------+ //| expert initialization function | //+------------------------------------------------------------------+ int init() { //---- //---- return(0); } //+------------------------------------------------------------------+ //| expert deinitialization function | //+------------------------------------------------------------------+ int deinit() { //---- //---- return(0); } //+------------------------------------------------------------------+ //| expert start function | //+------------------------------------------------------------------+ int start() { //---- //---- return(0); } //+------------------------------------------------------------------+