# Where can I get canned/simulated/real-time free data feed for kdb for

**URL:** https://forum.kx.com/t/where-can-i-get-canned-simulated-real-time-free-data-feed-for-kdb-for/6224
**Category:** Community Support
**Tags:** kdb-and-q
**Created:** [September 10, 2009, 2:01pm UTC](https://forum.kx.com/t/where-can-i-get-canned-simulated-real-time-free-data-feed-for-kdb-for/6224 "2009-09-10T14:01:00Z")
**Posts on this page:** 7
**Page:** 1

<div class="post-metadata">

### Author: ![chetal](https://avatars.discourse-cdn.com/v4/letter/c/848f3c/32.png) [@chetal](https://forum.kx.com/u/chetal)
#### Post date: [September 10, 2009, 2:01pm UTC](https://forum.kx.com/t/where-can-i-get-canned-simulated-real-time-free-data-feed-for-kdb-for/6224/1 "2009-09-10T14:01:00Z")

</div>

Where I can get canned/simulated/real-time free data feed for kdb forpersonal use?Thanks,-- Pradeep

---

<div class="post-metadata">

### Author: ![nathan\_perrem1](https://avatars.discourse-cdn.com/v4/letter/n/839c29/32.png) [@nathan\_perrem1](https://forum.kx.com/u/nathan_perrem1)
#### Post date: [September 10, 2009, 2:15pm UTC](https://forum.kx.com/t/where-can-i-get-canned-simulated-real-time-free-data-feed-for-kdb-for/6224/2 "2009-09-10T14:15:00Z")

</div>

Hi Pradeep,  
Why not just write a q script that opens a connection to the tickerplant and then over write .z.ts timer function to asynchronously send updates to the tickerplant every n milliseconds? Inside .z.ts, just create some random sample data to send.

Nathan

2009/9/10 Pradeep \<chetal@gmail.com\>

> Where I can get canned/simulated/real-time free data feed for kdb for  
> personal use?
> 
> Thanks,
> 
> – Pradeep

---

<div class="post-metadata">

### Author: ![felix1](https://avatars.discourse-cdn.com/v4/letter/f/3e96dc/32.png) [@felix1](https://forum.kx.com/u/felix1)
#### Post date: [September 10, 2009, 2:16pm UTC](https://forum.kx.com/t/where-can-i-get-canned-simulated-real-time-free-data-feed-for-kdb-for/6224/3 "2009-09-10T14:16:00Z")

</div>

X-Mailer: Apple Mail (2.936)fianance.yahoo.comyou can download delayed data as csv and push them to a kdb.felixOn 10 Sep 2009, at 16:01, Pradeep wrote:\>\>\> Where I can get canned/simulated/real-time free data feed for kdb for\> personal use?\>\> Thanks,\>\> – Pradeep\>\> \>

---

<div class="post-metadata">

### Author: ![chetal](https://avatars.discourse-cdn.com/v4/letter/c/848f3c/32.png) [@chetal](https://forum.kx.com/u/chetal)
#### Post date: [September 10, 2009, 2:37pm UTC](https://forum.kx.com/t/where-can-i-get-canned-simulated-real-time-free-data-feed-for-kdb-for/6224/4 "2009-09-10T14:37:00Z")

</div>

Date: Thu, 10 Sep 2009 09:37:52 -0400Message-ID: \<606d36300909100637g191fdf94p19ddfed41aac51f8@mail.gmail.com\>Subject: Re: [personal kdb+] Re: Where can I get canned/simulated/real-time free data feed for kdb for personal use?From: Pradeep Chetal To: personal-kdbplus@googlegroups.comNathan,I was trying to get some real-data, even if it is not real-time.-- PradeepOn Thu, Sep 10, 2009 at 9:15 AM, Nathan Perrem\<nathan.perrem\> wrote:\> Hi Pradeep,\> Why not just write a q script that opens a connection to the tickerplant and\> then over write .z.ts timer function to asynchronously send updates to the\> tickerplant every n milliseconds? Inside .z.ts, just create some random\> sample data to send.\>\> Nathan\>\> 2009/9/10 Pradeep \>\>\>\>\>\> Where I can get canned/simulated/real-time free data feed for kdb for\>\> personal use?\>\>\>\> Thanks,\>\>\>\> – Pradeep\>\>\>\>\>\>\> \>\>\</nathan.perrem\>

---

<div class="post-metadata">

### Author: ![nathan\_perrem1](https://avatars.discourse-cdn.com/v4/letter/n/839c29/32.png) [@nathan\_perrem1](https://forum.kx.com/u/nathan_perrem1)
#### Post date: [September 10, 2009, 2:40pm UTC](https://forum.kx.com/t/where-can-i-get-canned-simulated-real-time-free-data-feed-for-kdb-for/6224/5 "2009-09-10T14:40:00Z")

</div>

Hi Pradeep,  
Then I would suggest you combine Felix’s idea with mine.  
Download csv files from finance.yahoo.com and read them into your q process.  
Then inside .z.ts, send out chunks of this table to the Tickerplant every n milliseconds.

Nathan

2009/9/10 Pradeep Chetal \<chetal@gmail.com\>

> Nathan,
> 
> I was trying to get some real-data, even if it is not real-time.  
>   
> – Pradeep

---

<div class="post-metadata">

### Author: ![chetal](https://avatars.discourse-cdn.com/v4/letter/c/848f3c/32.png) [@chetal](https://forum.kx.com/u/chetal)
#### Post date: [September 10, 2009, 2:47pm UTC](https://forum.kx.com/t/where-can-i-get-canned-simulated-real-time-free-data-feed-for-kdb-for/6224/6 "2009-09-10T14:47:00Z")

</div>

Date: Thu, 10 Sep 2009 09:47:08 -0400Message-ID: \<606d36300909100647o2c1fd660haaebd80a25d8af1b@mail.gmail.com\>Subject: Re: [personal kdb+] Re: Where can I get canned/simulated/real-time free data feed for kdb for personal use?From: Pradeep Chetal To: personal-kdbplus@googlegroups.comGreat, that will workThanks-- PradeepOn Thu, Sep 10, 2009 at 9:40 AM, Nathan Perrem\<nathan.perrem\> wrote:\> Hi Pradeep,\> Then I would suggest you combine Felix’s idea with mine.\> Download csv files from [finance.yahoo.com](http://finance.yahoo.com) and read them into your q process.\> Then inside .z.ts, send out chunks of this table to the Tickerplant every n\> milliseconds.\>\> Nathan\>\> 2009/9/10 Pradeep Chetal \>\>\>\> Nathan,\>\>\>\> I was trying to get some real-data, even if it is not real-time.\>\>\>\> – Pradeep\>\>\>\> On Thu, Sep 10, 2009 at 9:15 AM, Nathan Perrem\<nathan.perrem\>\>\> wrote:\>\> \> Hi Pradeep,\>\> \> Why not just write a q script that opens a connection to the tickerplant\>\> \> and\>\> \> then over write .z.ts timer function to asynchronously send updates to\>\> \> the\>\> \> tickerplant every n milliseconds? Inside .z.ts, just create some random\>\> \> sample data to send.\>\> \>\>\> \> Nathan\>\> \>\>\> \> 2009/9/10 Pradeep \>\> \>\>\>\> \>\>\>\> \>\> Where I can get canned/simulated/real-time free data feed for kdb for\>\> \>\> personal use?\>\> \>\>\>\> \>\> Thanks,\>\> \>\>\>\> \>\> – Pradeep\>\> \>\>\>\> \>\>\>\> \>\>\> \>\>\> \> \>\>\> \>\>\>\>\>\>\>\> \>\>\</nathan.perrem\>\</nathan.perrem\>

---

<div class="post-metadata">

### Author: ![Valerio](https://avatars.discourse-cdn.com/v4/letter/v/3be4f8/32.png) [@Valerio](https://forum.kx.com/u/Valerio)
#### Post date: [September 14, 2009, 11:30pm UTC](https://forum.kx.com/t/where-can-i-get-canned-simulated-real-time-free-data-feed-for-kdb-for/6224/7 "2009-09-14T23:30:00Z")

</div>

User-Agent: G2/1.0X-Google-Token: 2Gh9jAwAAABuqI7GVdcY38B1pHA3jmkFX-HTTP-UserAgent: Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10\_5\_7; en-us) AppleWebKit/530.19.2 (KHTML, like Gecko) Vienna/2.3.4.2305,gzip(gfe),gzip(gfe)Message-ID: Subject: Re: Where can I get canned/simulated/real-time free data feed for kdb for personal use?From: Valerio \<valerio.aimale\>To: “Kdb+ Personal Developers” X-Google-Approved: [charlie@kx.com](mailto:charlie@kx.com) via web at 2009-09-14 22:36:01www.tradingphysics.com has real time data (and raw ITCH feed)ValerioOn Sep 10, 7:47?am, Pradeep Chetal \<che…\> wrote:\> Great, that will work\>\> Thanks\>\> – Pradeep\>\>\>\> On Thu, Sep 10, 2009 at 9:40 AM, Nathan Perrem\<nathan.per…\> wrote:\> \> Hi Pradeep,\> \> Then I would suggest you combine Felix’s idea with mine.\> \> Download csv files from [finance.yahoo.com](http://finance.yahoo.com) and read them into your q process.\> \> Then inside .z.ts, send out chunks of this table to the Tickerplant every n\> \> milliseconds.\>\> \> Nathan\>\> \> 2009/9/10 Pradeep Chetal \<che…\>\>\> \>\> Nathan,\>\> \>\> I was trying to get some real-data, even if it is not real-time.\>\> \>\> – Pradeep\>\> \>\> On Thu, Sep 10, 2009 at 9:15 AM, Nathan Perrem\<nathan.per…\>\> \>\> wrote:\> \>\> \> Hi Pradeep,\> \>\> \> Why not just write a q script that opens a connection to the tickerplant\> \>\> \> and\> \>\> \> then over write .z.ts timer function to asynchronously send updates to\> \>\> \> the\> \>\> \> tickerplant every n milliseconds? Inside .z.ts, just create some random\> \>\> \> sample data to send.\>\> \>\> \> Nathan\>\> \>\> \> 2009/9/10 Pradeep \<che…\>\>\> \>\> \>\> Where I can get canned/simulated/real-time free data feed for kdb for\> \>\> \>\> personal use?\>\> \>\> \>\> Thanks,\>\> \>\> \>\> – Pradeep\</che…\>\</nathan.per…\>\</che…\>\</nathan.per…\>\</che…\>\</valerio.aimale\>
