Welcome to Forex-TSD!, one of the largest Forex forums worldwide, where you will be able to find the most complete and reliable Forex information imaginable.
From the list below, select the forum that you want to visit and register to post, as many times you want. It’s absolutely free. Click here for registering on Forex-TSD.
Exclusive Forum
The Exclusive Forum is the only paid section. Once you subscribe, you will get free access to real cutting-edge Trading Systems (automated and not), Indicators, Signals, Articles, etc., that will help and guide you, in ways that you could only imagine, with your Forex trading.
Elite Section
Get access to private discussions, specialized support, indicators and trading systems reported every week.
Advanced Elite Section
For professional traders, trading system developers and any other member who may need to use and/or convert, the most cutting-edge exclusive indicators and trading systems for MT4 and MT5.
Is there a way to have this save to FTP, website or forum?
I use this one, attach as Ea to the chart or if you already use an EA insert the code inside the EA.
There is only one small problem, MT don't close the FTP connection after the upload is done. but most FTP server does after 2 or 3 minutes of inactivity.
__________________ I have not failed. I've just found 10,000 ways that won't work. Thomas Alva Edison
Hi coders, i looking for an ea which when i make an new order either buy/sell, then the ea will immedately take a screenshot of current chart, and autosave it to a folder, can any one help me code this. if you would like to sell..im willing to buy it too.
Here's a small tool I just coded for my personal use. I didn't reinvented the wheel. It may exist already in some other versions.
It saves a screen shot of your current chart in the /experts/files/ folder every starting bar. Example on a 1hr chart, a pic will be saved every hour.
Copy it in the /indicators/ folder and set it accordingly.
size_x - Screen shot width in pixels. size_y - Screen shot height in pixels. start_bar - Index of the first visible bar in the screen shot. If 0 value is set, the current first visible bar will be shot. If no value or negative value has been set, the end-of-chart screen shot will be produced, indent being taken into consideration. chart_scale - Horizontal chart scale for screen shot. Can be in the range from 0 to 5. If no value or negative value has been set, the current chart scale will be used. chart_mode - Chart displaying mode. It can take the following values: CHART_BAR (0 is a sequence of bars), CHART_CANDLE (1 is a sequence of candlesticks), CHART_LINE (2 is a close prices line). If no value or negative value has been set, the chart will be shown in its current mode.
Enjoy.
FerruFx
__________________ FerruFx / www.ervent.net - Professional Coding Services (EAs/Indicators/Alerts)
Hi all guru,
Is it possible to take a snapshot and sent by email to my email account every 4H? I cannot access my home computer at my office so I would rather have this function.
Thank you
Hi coders, i looking for an ea which when i make an new order either buy/sell, then the ea will immedately take a screenshot of current chart, and autosave it to a folder, can any one help me code this. if you would like to sell..im willing to buy it too.
thanks
Should be easy enough to do yourself.
Take a look at the help file and the WindowScreenShot() function.
You could just have it check to see if any order has been placed that tick or something. Do some testing but it shouldn't take you too long.
Thanks testern for posting the indicator. SnapshotI. It has been a great help to me. I gust wont to let every one know that the screenshots are put under. Experts,files. I also found that if you select all the screen shots at once and open them all. You can page through them. This is the best way see if a indicator repaints. Jatki24300
This is a great tool to have can not say enough about it and I only have had it for the last 2 days.
Here a Tip make a short cut on your Desk Top to the "file" folder to gain access to the pic faster without having to go to the Main folder itself.
I was given this ea that is suposed to take a snapshot at the close of every candle and it didn't come with any instructions. I was hoping that one of the programmers could take a look at it and tell me where it is storing the pictures. I am trying to find out how much some of my indicators repaint on me and I can't watch the charts all the time. Thanks for your help.
//| Creates a screen shot at beginning of every new bar. GIFs are |
//| placed in experts/files/ subdirectory of your MetaTrader |
//| instalation. Use this utility when you want to manually test |
//| your strategy, to spot if you have any indicators that changes |
//| its past values. |
//+------------------------------------------------------------------+