The item you are using is just a downloader. The real-time version of QuantShare is not yet released.
If you want to download the last quotes automatically every 1 minute:
- Open the downloader (Intraday Data for NSE Stocks) and set the field "Number of past days" to 1.
- Select Tools -> Script Editor.
- Create a new file
- Type the following formula:
int seconds = 60;
while(true)
{
Chart chart = Charts.GetSelectedChart();
if(chart != null)
{
string[] symbols = new string[1];
symbols[0] = chart.SymbolName;
string[] fields = new string[1];
fields[0] = "Number of past days=1";
Downloader.DownloadData("", "Intraday Data for NSE Stocks", true, symbols, fields);
App.Main.Sleep(1000 * seconds); // Do not change this - It may crash your PC if you change it
Charts.GetSelectedChart().Update();
}
else
{
App.Main.Sleep(1000 * seconds); // Do not change this - It may crash your PC if you change it
}
}
- Save it (File -> Save)
- 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.
Trading financial instruments, including foreign exchange on margin, carries a high level of risk and is not suitable for all investors. The high degree of leverage can work against you as well as for you. Before deciding to invest in financial instruments or foreign exchange you should carefully consider your investment objectives, level of experience, and risk appetite. The possibility exists that you could sustain a loss of some or all of your initial investment and therefore you should not invest money that you cannot afford to lose. You should be aware of all the risks associated with trading and seek advice from an independent financial advisor if you have any doubts.