N Nana Trader Jun 30, 2005 #11 Is download Scheduler in TS.8 for the same purpose? If so, how many symbols it can download at same time and where it downloads data to ?
Is download Scheduler in TS.8 for the same purpose? If so, how many symbols it can download at same time and where it downloads data to ?
U up23 Jun 11, 2016 #12 Here's my code to download to different files based on telozo: vars: fileName(""); fileName = "C:\TradestationExport\" + GetSymbolName + ".csv"; if BarNumber = 1 then FileDelete(fileName); FileAppend(fileName, numtostr(date,0) + "," + numtostr(time,0) + "," + numtostr(open,2) + "," + numtostr(high,2) + "," + numtostr(low,2) + "," + numtostr(close,2) + newline);
Here's my code to download to different files based on telozo: vars: fileName(""); fileName = "C:\TradestationExport\" + GetSymbolName + ".csv"; if BarNumber = 1 then FileDelete(fileName); FileAppend(fileName, numtostr(date,0) + "," + numtostr(time,0) + "," + numtostr(open,2) + "," + numtostr(high,2) + "," + numtostr(low,2) + "," + numtostr(close,2) + newline);