NexusFi: Find Your Edge


Home Menu

 





Data Downloader


Discussion in Platforms and Indicators

Updated
      Top Posters
    1. looks_one StockJock with 11 posts (3 thanks)
    2. looks_two TonyB with 8 posts (0 thanks)
    3. looks_3 Abnash with 2 posts (1 thanks)
    4. looks_4 vinoth with 1 posts (0 thanks)
    1. trending_up 19,355 views
    2. thumb_up 5 thanks given
    3. group 5 followers
    1. forum 22 posts
    2. attach_file 1 attachments




 
Search this Thread

Data Downloader

  #1 (permalink)
StockJock
Chicago + Illinois/USA
 
Posts: 256 since Aug 2010
Thanks Given: 15
Thanks Received: 154

I just heard about a data downloader that links to Yahoo Real Time and Yahoo 15 min delayed. It's called [COLOR=blue][B]RTQDownloader V1.5[/B][/COLOR]. Does anyone know if this will work with AmiBroker? It works with Bull's Eye Broker and I only want to buy one data downloader; instead of the regular downloaders that are usually purchased with these platforms.

Reply With Quote

Can you help answer these questions
from other members on NexusFi?
NexusFi Journal Challenge - May 2024
Feedback and Announcements
How to apply profiles
Traders Hideout
Pivot Indicator like the old SwingTemp by Big Mike
NinjaTrader
MC PL editor upgrade
MultiCharts
REcommedations for programming help
Sierra Chart
 
Best Threads (Most Thanked)
in the last 7 days on NexusFi
Spoo-nalysis ES e-mini futures S&P 500
41 thanks
Just another trading journal: PA, Wyckoff & Trends
30 thanks
Tao te Trade: way of the WLD
24 thanks
Bigger Wins or Fewer Losses?
23 thanks
GFIs1 1 DAX trade per day journal
21 thanks
  #2 (permalink)
 vegasfoster 
las vegas
 
Experience: Intermediate
Platform: Sierra Chart
Broker: Velocity/IB
Trading: 6E
Posts: 1,145 since Feb 2010
Thanks Given: 304
Thanks Received: 844

I used it a couple years ago when I was still trading stocks, IMO it was serious pos, but they may have improved it since then. Just a thought, but can Amibroker connect to TDA? If you open an account with TDA, in addition to live feed you get 2 years of minute data and 10+ years of daily data. I'm guessing that you probably don't even have to fund it. I have a TDA account with a $0 balance that I still can access the data. If you do have to fund it to activate it, then just fund the minimum and turn around and drain it. This way you could have a free live data feed.

Reply With Quote
Thanked by:
  #3 (permalink)
StockJock
Chicago + Illinois/USA
 
Posts: 256 since Aug 2010
Thanks Given: 15
Thanks Received: 154


Yes, it is possible to link AmiBroker and TOS; however, I haven't been able to save all the live data. The only data that is saved is the data I backfill with Yahoo. Real time date is not saved from previous days, I have to use historical data from Yahoo. Once you exit AmiBroker, all the real time data that you were looking at is gone. For that matter can [COLOR=blue][B]RTQDownloader V1.5[/B][/COLOR] do what I need? You said that you used RTQDownloader; please clarify, did you use it with AmiBroker and were you able to save all the TICK data, both current and historical backfills? Are you still using AmiBroker?

Reply With Quote
  #4 (permalink)
Abnash
Bangalore India
 
Posts: 14 since May 2011
Thanks Given: 2
Thanks Received: 9

You can try to export the data that you see realtime and then import it again into another database.

Here is a program that I have written, that is pretty simple and can be modified to chose a specific scrip, set of scrips or all scrips.

Posting the code below, as I couuldnt figure how to post a file and the attachments dont support .afl extensions.

//change the directory to whatever you like
fmkdir( "C:\\OHLC" );
//Buy = DateNum() >= 0 AND DateNum() >= 1120101 AND DateNum()<1120101;
//Edit following line to choose the date range that you would like
Buy = DateNum() >= 0 ;//AND DateNum() >= 1120101 ;//AND DateNum()<1120101;
j=0;
for( i = 0; i < BarCount; i++ )
// comment uncomment your custome if statement to choose the appropriate scrips.
if( Buy[i] )
//if( Buy[i] AND (Name()=="NIFTY_F1" OR Name()=="NIFTY" OR Name()=="BANKNIFTY_F1" OR Name()=="MINIFTY_F1"))
//if( Buy[i] AND Name()=="BANKNIFTY_F1")
//if( Buy[i] AND Name()=="NIFTY")
// Do not touch any of the lines below
{
fh =
fopen( "C:\\OHLC\\"+Name()+".txt", "a");
if( fh )
{
y =
Year();
m =
Month();
d =
Day();
r =
Hour();
e =
Minute();

for( i = 0; i < BarCount; i++ )
if( Buy[i] )
{
// if (j==0)fputs("<Ticker>,<Date>,<Time>,<Open>,<High>,<Low>,<Close>,<Volume>\n",fh);
if (j==0)fputs("<Ticker>,<Date>,<Time>,<Open>,<High>,<Low>,<Close>,<Volume><OpenInterest>\n",fh);
j=j+
1;
fputs( Name() + "," , fh );
ds =
StrFormat("%02.0f%02.0f%02.0f,",
y[ i ], m[ i ], d[ i ] );
fputs( ds, fh );

ts =
StrFormat("%02.0f:%02.0f,",
r[ i ],e[ i ]);
fputs( ts, fh );
// qs = StrFormat("%.2f,%.2f,%.2f,%.2f,%.0f\n",//%.0f\n",
qs = StrFormat("%.2f,%.2f,%.2f,%.2f,%.0f,%.0f\n",
O[ i ],H[ i ],L[ i ],C[ i ],V[ i ],OpenInt[i] );
fputs( qs, fh );
}
fclose( fh );
}
}

Reply With Quote
Thanked by:
  #5 (permalink)
StockJock
Chicago + Illinois/USA
 
Posts: 256 since Aug 2010
Thanks Given: 15
Thanks Received: 154

Thanks [SIZE=2]Abnash[/SIZE],

I've seen the Yahoo Query Language (YQL) and that historical quotes can be downloaded; however, the code only downloads ASCII fields: Symbol, StartDate, EndDate, High, Low, Close, Volume
https://table.finance.yahoo.com/table.csv?s=YHOO&a=01&b=01&c=2010&d=01&e=05&f=2010&g=d&ignore=.csv

So far I've found code that only downloads the current quote data, not the historical data. [COLOR=#0066cc]Downloading Yahoo Data[/COLOR]

Would you happen to know the YQL code to download historical quotes in ASCII - MetaStock format? -- Symbol, Periodicity, Date, Open, High, Low, Close, Volume, Open Interest

Reply With Quote
  #6 (permalink)
Abnash
Bangalore India
 
Posts: 14 since May 2011
Thanks Given: 2
Thanks Received: 9


StockJock View Post
Thanks [SIZE=2]Abnash[/SIZE],

I've seen the Yahoo Query Language (YQL) and that historical quotes can be downloaded; however, the code only downloads ASCII fields: Symbol, StartDate, EndDate, High, Low, Close, Volume
https://table.finance.yahoo.com/table.csv?s=YHOO&a=01&b=01&c=2010&d=01&e=05&f=2010&g=d&ignore=.csv

So far I've found code that only downloads the current quote data, not the historical data. [COLOR=#0066cc]Downloading Yahoo Data[/COLOR]

Would you happen to know the YQL code to download historical quotes in ASCII - MetaStock format? -- Symbol, Periodicity, Date, Open, High, Low, Close, Volume, Open Interest

There are software providers in the Indian market who provide yahoo historical data for both intraday and EOD data.

I will check and post, once I get a link, which should help with international scrips.. I used to use such a provider for EURUSD data, but they packed up.

Reply With Quote
  #7 (permalink)
 
TonyB's Avatar
 TonyB 
Bay Area, CA - US
 
Experience: Beginner
Platform: TOS, TS & MC
Broker: TDA & TS
Trading: Stock, Options and now Futures (ES)
Posts: 516 since Dec 2010
Thanks Given: 227
Thanks Received: 140


StockJock View Post
Yes, it is possible to link AmiBroker and TOS; however, I haven't been able to save all the live data. The only data that is saved is the data I backfill with Yahoo. Real time date is not saved from previous days, I have to use historical data from Yahoo. Once you exit AmiBroker, all the real time data that you were looking at is gone. For that matter can [COLOR=blue][B]RTQDownloader V1.5[/B][/COLOR] do what I need? You said that you used RTQDownloader; please clarify, did you use it with AmiBroker and were you able to save all the TICK data, both current and historical backfills? Are you still using AmiBroker?

May I ask how you are able to get TOS or TDA data into AmiBroker? I'm on the brink of starting a trial with AmiBroker, and don't see TDA / TOS as one of their data providers... Thanks much.

Reply With Quote
  #8 (permalink)
StockJock
Chicago + Illinois/USA
 
Posts: 256 since Aug 2010
Thanks Given: 15
Thanks Received: 154


TonyB View Post
May I ask how you are able to get TOS or TDA data into AmiBroker? I'm on the brink of starting a trial with AmiBroker, and don't see TDA / TOS as one of their data providers... Thanks much.

How to use AmiBroker with external DDE data source Also, see Attachment.

Attached Thumbnails
Click image for larger version

Name:	Amibroker DDL.png
Views:	187
Size:	38.2 KB
ID:	63597  
Reply With Quote
Thanked by:
  #9 (permalink)
 
TonyB's Avatar
 TonyB 
Bay Area, CA - US
 
Experience: Beginner
Platform: TOS, TS & MC
Broker: TDA & TS
Trading: Stock, Options and now Futures (ES)
Posts: 516 since Dec 2010
Thanks Given: 227
Thanks Received: 140



SJ, thanks for the info. Really good to know. Since this does not include historical data, I assume you use Yahoo! or the like as well... Thanks again.

Reply With Quote
  #10 (permalink)
StockJock
Chicago + Illinois/USA
 
Posts: 256 since Aug 2010
Thanks Given: 15
Thanks Received: 154



TonyB View Post
SJ, thanks for the info. Really good to know. Since this does not include historical data, I assume you use Yahoo! or the like as well... Thanks again.

Yes, Yahoo or Google historical data can be used even though they're only EOD quotes.

Reply With Quote
Thanked by:




Last Updated on April 8, 2012


© 2024 NexusFi™, s.a., All Rights Reserved.
Av Ricardo J. Alfaro, Century Tower, Panama City, Panama, Ph: +507 833-9432 (Panama and Intl), +1 888-312-3001 (USA and Canada)
All information is for educational use only and is not investment advice. There is a substantial risk of loss in trading commodity futures, stocks, options and foreign exchange products. Past performance is not indicative of future results.
About Us - Contact Us - Site Rules, Acceptable Use, and Terms and Conditions - Privacy Policy - Downloads - Top
no new posts