
You are missing trading opportunities:
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
Registration
Log in
You agree to website policy and terms of use
If you do not have an account, please register
Hello
i use a script for buy and sell
this script safe also the actual view with WindowScreenShot
now i like to change the template before i safe the screenshot
save actual Screen as Template
Load Template
WindowScreenShot --> is clear
Load saved template
so my question is, how i can safe and load a tempate with a script
kind regards
for (int i=0;i<OrdersTotal();i++){
OrderSelect(i,SELECT_BY_POS,MODE_TRADES);
string Number = OrderTicket() + " " + Tag + "." + Monat + "." + Year()+ " " + stunde + "." + min + " " + Symbol() + " " + Text;
}
WindowScreenShot( "shots\\ "+ Number + ".gif",1280,1024,0,3,CHART_CANDLE);
}