|
|
 |
srishail
2011-03-03 09:07:52
0
|
|
already tried the same method with intraday data for nifty futures ,as downloader name but no response . with .dji auto update i did it and i am get getting it with no problem ,
i tried nifty futures in many ways couldnt got it .
|
|
|
 |
QuantShare
2011-03-03 13:02:05
0
|
|
Best Answer
Hi,
Here is the script:
int seconds = 60;
while(true)
{
Chart chart = Charts.GetSelectedChart();
if(chart != null)
{
string[] fields = new string[1];
fields[0] = "s=" + chart.SymbolName;
Downloader.DownloadData("", "Nifty Futures", true, null, 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
}
}
|
|
|
 |
srishail
2011-03-03 15:05:44
0
|
|
thanku guru i will try it
|
|
|
 |
srishail
2011-03-04 04:35:09
0
|
|
guru its wroking , but the update is 15 to 20 minutes, where as with nifty and .dji i am getting 60 seconds, plz help.
|
|
|
 |
QuantShare
2011-03-04 05:53:56
0
|
|
I have updated the above script.
|
|
|
 |
srishail
2011-03-07 00:25:38
0
|
|
guru,auto update is still 15 to 20 minutes
|
|
|
 |
QuantShare
2011-03-07 03:45:50
0
|
|
auto-update is done every minute.
In the first line you can select the number of seconds:
int seconds = 60;
|
|
|
 |
srishail
2011-03-07 06:35:19
0
|
|
Guru,it is not working as .nsei or .dji. the difference price between realtime and QS data is just 1 min . but with NIFTY+H1-NSF is 15 to 20 mint gap auto update is happening but price differnce is question.
|
|
|
 |
QuantShare
2011-03-07 07:15:00
0
|
|
Maybe the data provider updates its data each 15 or 20 minutes.
I have checked the script and it executes the downloader every minute.
|
|
|
 |
srishail
2011-03-07 07:50:13
0
|
|
ok got it thanks
|
|
|
 |
srishail
2011-03-07 08:02:58
0
|
|
guru,GCI on MetaTrader 4 on demo account provide nifty future real time data is possible to get the same to QS
|
|
|
 |
QuantShare
2011-03-09 05:18:58
0
|
|
The current version do not support real-time data
|
|
|
|
 |
QuantShare
2011-03-18 14:17:44
0
|
|
Sorry, it is not possible
|
|
|
|