Traderji.com - Discussion forum for Stocks Commodities & Forex

PIB data to amibroker possible?????

Discuss PIB data to amibroker possible????? at the AmiBroker within the Traderji.com - Discussion forum for Stocks Commodities & Forex; I request all the programmers to come up to create a free tool. Have a ...


Go Back   Traderji.com - Discussion forum for Stocks Commodities & Forex > TOOLS & RESOURCES > Software > AmiBroker

Notices


Advertise Here

Reply
 
Thread Tools
Sponsored Links
  #1  
Old 25th March 2007, 08:00 PM
Member
 
Join Date: May 2006
Location: Kolkata
Posts: 1,098
Thanks: 1
Thanked 0 Times in 0 Posts
swagat86 is on a distinguished road
Reputation: 24
Default PIB data to amibroker possible?????

I request all the programmers to come up to create a free tool.
Have a look.




http://www.amibroker.com/devlog/2006...e-to-everyone/

http://www.amibroker.com/devlog/2007...n-version-140/

This ODBC link has a function to pull live data from CSV files. But since i hav very low knowledge of programming i cudnt get thru this.

Thanks
Reply With Quote
  #2  
Old 25th March 2007, 10:21 PM
Member
 
Join Date: Dec 2006
Posts: 270
Thanks: 5
Thanked 5 Times in 3 Posts
omkarmango is on a distinguished road
Reputation: 43
Default Re: PIB data to amibroker possible?????

Dear Swagat,

The better way is, to write a Java Script,
Add it from Amibroker>tools>customize>new
Call it from Amibroker>tools

You have to create Format file by Import Wizard & copy it to format folder.
.
.
Although I am not sharing my script, but I will try to make the ways easier for others.

Regards.

Omkar

Last edited by omkarmango; 25th March 2007 at 10:26 PM.
Reply With Quote
  #3  
Old 26th March 2007, 09:16 AM
Member
 
Join Date: Jul 2006
Posts: 252
Thanks: 0
Thanked 0 Times in 0 Posts
rkgoyal_98 is on a distinguished road
Reputation: 18
Default Re: PIB data to amibroker possible?????

Dear Omkar
Hello

Thanks for sharing your idea.
Java script will work fine. however i just want to know that since data is added with evry tick to the files in PIB directory, are u deleting the file after script update - or deleteing the data - otherwise whole data ha to be processed every time and that will eat resources
Regards
Rajeev
Reply With Quote
  #4  
Old 26th March 2007, 01:09 PM
Member
 
Join Date: Dec 2006
Posts: 270
Thanks: 5
Thanked 5 Times in 3 Posts
omkarmango is on a distinguished road
Reputation: 43
Default Re: PIB data to amibroker possible?????

Dear Rajeev,

You made me rethink,

I thought,
Amibroker's built in Importers, only updates the updated lines in CSV., even when you Import whole file.
[I have tested my scipt by adding quotes mannualy in files & I am not sure about system resources front]

But if it's consuming system resources,

Another way of deleting the file & appending to newer one is always open.

You even do not have to create OR append to newer one as you can always export from Amibroker when you want.

Regards
Omkar
Reply With Quote
  #5  
Old 26th March 2007, 01:28 PM
Member
 
Join Date: Dec 2006
Posts: 270
Thanks: 5
Thanked 5 Times in 3 Posts
omkarmango is on a distinguished road
Reputation: 43
Default Re: PIB data to amibroker possible?????

Dear Rajeev,

Another idea is to keep refresh interval bit bigger suppose 20 seconds,
1] In this case you are not going to miss a single quote because unlike *****, it's stored in your csv file.
2] Amobroker will take suppose 1 sec to update full CSV. (if it does so)
3] You can watch PIB itself meanwhile for breakouts etc. (depends on your trading style)

Omkar
Reply With Quote
  #6  
Old 27th March 2007, 02:38 AM
Member
 
Join Date: Jul 2006
Posts: 252
Thanks: 0
Thanked 0 Times in 0 Posts
rkgoyal_98 is on a distinguished road
Reputation: 18
Default Re: PIB data to amibroker possible?????

Dear Omkar,
Hi

There are 2 points why i wrote
1. Even though for us Amibroker will look like addeing new quotes but in fact it may be happening that amibroker is overwritiing all the quotes that is why i stated system resources. And it may be having more and more heavy as the day progress. Moreover is we are having some exploration also running at the same time this may become a major issue.
2. Deleting the csv files may be possible but then it may compromise with the integrity of data and ther can be a rare chance of clash within the system

Now i look at it in difrent way - as PIB software has somthing to write on the disk can we have a system where by we just catch it and put all in one file instead of many files. If that can be possible then DDE can help us making a good integrated system
Rajeev
Reply With Quote
  #7  
Old 27th March 2007, 09:38 AM
Member
 
Join Date: Feb 2006
Location: New Delhi
Posts: 1,617
Thanks: 0
Thanked 2 Times in 2 Posts
aca_trader is on a distinguished road
Reputation: 33
Default Re: PIB data to amibroker possible?????

Quote:
Originally Posted by rkgoyal_98 View Post
Now i look at it in difrent way - as PIB software has somthing to write on the disk can we have a system where by we just catch it and put all in one file instead of many files. If that can be possible then DDE can help us making a good integrated system
Rajeev
There are two crude methods of doing it.
1. you can use copy function of Command Prompt to merge the files into one file and use this file.

2. MS-Access can be used to pull all the data into one table which may also be exported to .txt, .csv or .xls formats.

But I have no idea how this can be done in real time at specific time intervals.
I have used access method in real time but it was limited to 1-2 stocks. Even tthe copy function has been used but only after market hours.

Best Regards,
--Ashish
Reply With Quote
  #8  
Old 27th March 2007, 11:38 AM
Member
 
Join Date: Jul 2006
Posts: 252
Thanks: 0
Thanked 0 Times in 0 Posts
rkgoyal_98 is on a distinguished road
Reputation: 18
Default Re: PIB data to amibroker possible?????

Dear Ashish,

Thanks for the quick reply
I was having a different idea in mind - i.e. to intercept dump from the PIB client and then write that in the access/ or anyother RDBMS
We will keep exploring different possiilities till we can find a solution

Regards
Rajeev
Reply With Quote
  #9  
Old 27th March 2007, 12:24 PM
Member
 
Join Date: Dec 2006
Posts: 270
Thanks: 5
Thanked 5 Times in 3 Posts
omkarmango is on a distinguished road
Reputation: 43
Default Re: PIB data to amibroker possible?????

I will think every way suggested by both of & try to do in limits of my knowledge. (as I am not trained in programming. just learned from internet on try n error basis).

I will post here if anything I find new,faster,convenient.

Thanks to both of you.

Omkar
Reply With Quote
  #10  
Old 27th March 2007, 01:38 PM
Member
 
Join Date: Jul 2006
Posts: 252
Thanks: 0
Thanked 0 Times in 0 Posts
rkgoyal_98 is on a distinguished road
Reputation: 18
Default Re: PIB data to amibroker possible?????

Dear Omkar,

Hello.

I too have very little knowledge - do a bit of ASP and asl some VB. I we can pool our knowledge we can make 1 & 1 = 11.
Let us work towards it
Ragards
Rajeev
Reply With Quote
Sponsored Links

Reply

Bookmarks


Advertise Here


Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off

Similar Threads for: PIB data to amibroker possible?????
Thread Thread Starter Forum Replies Last Post
BSE Data :Direct to Amibroker vimalpfizer Data Feeds 7 23rd July 2008 02:49 AM
Commodities-Data for Amibroker axe AmiBroker 4 16th May 2007 12:21 PM
Intraday Data From Pib Directly To Amibroker prashantsinghal101 AmiBroker 1 20th March 2007 10:47 AM
New Pib Data Converter For Amibroker rajeshshah1972 Software 0 27th October 2006 01:56 PM
amibroker data rajneesh_mailbox Data Feeds 1 23rd January 2006 07:17 PM


All times are GMT +5.5. The time now is 01:03 AM.

Indemnity, Disclaimer & Disclosure Notice:
• By visiting Traderji.com you indicate your acceptance of our Forum Rules Disclaimer & Disclosure and indemnify Traderji.com, its associates and related parties of all claims howsoever resulting from the usage of the forum.
Disclaimer: Trading or investing in stocks & commodities is a high risk activity. Any action you choose to take in the markets is totally your own responsibility. Traderji.com will not be liable for any, direct or indirect, consequential or incidental damages or loss arising out of the use of this information.
Disclosure: The information in this forum is neither an offer to sell nor solicitation to buy any of the securities mentioned herein. The writers may or may not be trading in the securities mentioned.
• All names or products mentioned are trademarks or registered trademarks of their respective owners.
General Content Disclaimer Notice:
In light of our policy of encouraging candid, open exchanges of views and the rapid distribution of information originating from many sources, Traderji.com cannot determine the accuracy of information that may be uploaded to the forum. Opinions, advice and all other information expressed by participants in discussions are those of the author. You rely on such information at your own risk. You are urged to seek professional advice for specific, individual situations and not rely solely on advice or opinions given in the discussions. Since Traderji.com is an open and free discussion forum, any comments made by members of this forum in their posts reflect their own views and not of the owner or administrator of Traderji.com. Thus the owner/administrator indemnify themselves of all claims whatsoever and will not be liable or responsible for any members comments/views in this forum Traderji.com. If you find any objectionable or offensive posts made by members of this forum which you would like to bring to our notice for removal then please Contact Us.
 


Copyright © 2001 - 2008, Traderji.com All Rights Reserved.

Recommended Websites - www.TradersEdgeIndia.com - www.TradingPicks.com - www.MasterOfTrading.com