Now that I'm able to get the 1minute up-to-date data for the Forex market I would love to recieve it permenatly,
but unfortunately the auto-download can only be set to at least 1 day interval,
is there any way to auto-download the data every minute?
- Select Tools -> Script Editor.
- Create a new file
- Type the following formula:
while(true)
{
Downloader.DownloadData("", "One-Minute Intraday Data for Currency Pairs", true, new string[0], new string[0]);
int seconds = 60;
App.Main.Sleep(1000 * seconds); // Do not change this - It may crash your PC if you change it
Charts.GetSelectedChart().Update();
}
- Save it
- Select Settings -> Add Current Script to Bookmark Panel
- In the Bookmarket Panel (under the Menu, Symbols and Drawing buttons) double click on the script to execute it. Double click again to stop it.
It is better to check "Last Symbol Date" in the download item settings so that each download gets only the latest quotes.