Free RealTime Data NOW Nest ODIN Trade Tiger Google Yahoo to AmiBroker, Fcharts MS

Status
Not open for further replies.

TracerBullet

Well-Known Member
Re: Free RealTime Data NOW Nest ODIN Trade Tiger Google Yahoo to AmiBroker, Fcharts M

are sir, how will i debug with screenshots :) i just need a sample text file with data taken directly from NOW to check why it fails.

Anyway, i have to stop now. i will release an update soon with a minor fix for RTD.
You can try to use wordpad/notepad++. notepad is useless.

20-30 seconds is too much. COM is fast. you will have to check where we have bottleneck. Ill try to look at your code when you release it.
 

TracerBullet

Well-Known Member
Re: Free RealTime Data NOW Nest ODIN Trade Tiger Google Yahoo to AmiBroker, Fcharts M

Remove the redundant calls and time it again

oStock.Quotations is called 2/3 times for each quote of each scrip.

"while (j < oStock.Quotations.Count)"
This here should be 2 com calls i think. Take them out

var quotations = oStock.Quotations;
var count = quotations.Count
while (j < count){
.... use quotations instead of oStock.Quotations
}

Make a var for everything like he does for oStock
All of the . on com objects will probably be com calls. Do them only once
 

josh1

Well-Known Member

TracerBullet

Well-Known Member
Re: Free RealTime Data NOW Nest ODIN Trade Tiger Google Yahoo to AmiBroker, Fcharts M

There was a link to the data file in that post. Here again ---
http://ubuntuone.com/4ii3l7LOZXfleBLjLJrCe6
The files does not have scrip name tag set.
i added name=NOW as first line and got data imported as scrip NOW without error.

So NOW should also work. Check Chart datatable too. ( this will go in different file - read settings.ini )

I have uploaded new release with minor fix. You can get the latest version with this link ( does not change with new versions)
https://github.com/SpiffSpaceman/AmibrokerFeeder/releases/latest
 
Last edited:
Re: Free RealTime Data NOW Nest ODIN Trade Tiger Google Yahoo to AmiBroker, Fcharts M

1. No api from NEST to get data for past.
So, Instead you will have to get it from VWAP statistics / Chart data table manually. josh was trying to get it automatically using Autohotkey like tool.

2. It wont be easy to find and fill gaps in the data. Need to study AB api + figure out how to identify gaps.
It would be simpler to just get all data for today and import it. Even then you will probably need to delete todays data ( if any ) to avoid duplicate volume issues.
can we take help from yusi for this?
 

extremist

Well-Known Member
Re: Free RealTime Data NOW Nest ODIN Trade Tiger Google Yahoo to AmiBroker, Fcharts M

hi sir first of all thank u for such wonderful utilities.

'm trying to use RTNOW.
all set successfully even the system date and the date in NOW sheet frm RTnow excel file is changed to DD/mm/yyyy format.

but while back filling amibroker is always back filling the data in mm/dd/yyyy format. so it is giving incorrect data.

there is some mistake made by me but not able to find it.
plz plz help me.
 
Status
Not open for further replies.

Similar threads