//+------------------------------------------------------------------+ //| | //| | //| www.arabictrader.com/vb | //| | //| mrdollar.cs@gmail.com | //+------------------------------------------------------------------+ #property copyright "MR.dollar" #property link "mrdollar.cs@gmail.com" #property show_inputs //+------------------------------------------------------------------+ //| | //+------------------------------------------------------------------+ input bool AllSymbols=true; input bool RemoveSL=true; input bool RemoveTP=true; double point; int digits,P; //+------------------------------------------------------------------+ //| FUNCTION DEFINITIONS deinitialization function | //+------------------------------------------------------------------+ void OnInit() { if(Digits==5 || Digits==3)P=10; else P=1; if(Digits<4) { point=0.01; digits=2; } else { point=0.0001; digits=4; } CreatePanel("Panel_Info_Info1",OBJ_EDIT,"www.ArabicTrader.com",10,25,190,20,DodgerBlue,White,DodgerBlue,11,true,false,0,ALIGN_CENTER); } //+------------------------------------------------------------------+ //| | //+------------------------------------------------------------------+ void OnDeinit(const int reason) { } //+------------------------------------------------------------------+ //| FUNCTION DEFINITIONS Start function | //+------------------------------------------------------------------+ void OnStart() { for(int i=0;i