//+------------------------------------------------------------------+ //| SnapShotI.mq4 | //| Copyright © 2006, MQLService | //| http://www.mqlservice.com | //+------------------------------------------------------------------+ #property copyright "Copyright © 2006, MQLService" #property link "http://www.mqlservice.com" #include #property indicator_chart_window extern int DelayTicks = 1; // Delay so many ticks after new bar extern int ShotsPerBar = 1; // How many screen shots per bar int start(){ static datetime last_bar; static int DoShot = -1; static int old_phase = 3000000; if(ShotsPerBar > 0) int shot_interval = MathRound((60*Period())/ShotsPerBar); else shot_interval = 60*Period(); int phase = MathFloor((CurTime()-Time[0])/shot_interval); if(Time[0] != last_bar){ last_bar = Time[0]; DoShot = DelayTicks; }else if(phase > old_phase) MakeScreenShot("i"); old_phase = phase; if(DoShot == 0) MakeScreenShot(); if(DoShot >= 0) DoShot -= 1; return(0); } string al0(int number, int digits){ // add leading zeros that the resulting string has 'digits' length. string result; result = DoubleToStr(number, 0); while(StringLen(result)