Real Time Data Now / Nest Trader to Amibroker, Fcharts

@Zoheb

You have to start RTD_1.30 as administrator?
Data table -- press Shift+D on any scrip
Vwap -- save button is available
You can add as many column as you want
@josh1, Many thanx :)

However, I do start RTD 1.30 as admin, same for nest.
data table column order is by default as required (thanx for letting me know how to access that)
found the save button within the Vwap window - need to right click on col header & go into reposition cols, i was just dragging cols to set order earlier, thanx.

So looks like everything was already set as required, wonder why i am still getting the error (Trading symbol must be present....) as in the screenshot shared earlier :(. Also have made sure to ensure all symbols are visible too in market watch.

also the error message seems to be incomplete "....right click on top of market watch & ___ ?

btw, I am on Windows 7 Ultimate SP1 64bit, with 32bit Microsoft Office Professional Plus 2010

what am I doing wrong, please help, thanx
 
Last edited:

josh1

Well-Known Member
@Zoheb
Uninstall Nest/Now, Amibroker, RTD.
Install all in any other drive. If you have no other drive, install them in C:\trading
Latest version of Nest/NOW are run as administrator by default. If you uncheck that property, you can run all as normal user
 

boarders

Well-Known Member
I have made a preliminary rtdman version for feeding amibroker with OFA through aux1 and aux 2. But I am not sure if I have coded the c++ correctly in worker Cpp. the logic is:
if LTP equals ask price then LTQ equals ask vol (avol) - passed to aux1
if LTP equals Bid price then LTQ equals bid vol (bvol) - passed to aux 2

when I compiled and checked with quote editor live, the LTQ was equal to either the aux1 or aux2 and not both which is correct. but what is bothering me is:
1. some time LTQ doesnt appear either at aux1 or aux2 both showing zero.
2. when archive is on the updation to ami is anywhere between 5 to 8 secs
and when archive is off then between 1 sec to even 5 secs. this although nest/ninja showing updations which doesnt reflect in ami.

I am attaching the source code (remove spaces) for checking by any of you guys and solve the above problems while I am also at it.

the next immediate once above problems solved TODO will be to make OFA afl for amibroker.

http s://my.pcloud.co m/publink/show?code=XZngA8ZA6x2Dqd7vuj8KMQYP8upHzd4PtH7
 

TracerBullet

Well-Known Member
But what is bothering me is:
1. some time LTQ doesnt appear either at aux1 or aux2 both showing zero.
2. when archive is on the updation to ami is anywhere between 5 to 8 secs
and when archive is off then between 1 sec to even 5 secs. this although nest/ninja showing updations which doesnt reflect in ami.

I am attaching the source code (remove spaces) for checking by any of you guys and solve the above problems while I am also at it.

the next immediate once above problems solved TODO will be to make OFA afl for amibroker.

http s://my.pcloud.co m/publink/show?code=XZngA8ZA6x2Dqd7vuj8KMQYP8upHzd4PtH7
1) archive is meant to be used with Ram drive - although it shouldnt be taking that long. You can turn it off as you dont use it.
2) learn to debug. Its essential. With debugging you can check why its not behaving as you expected.

See here . This article, seems good.
 

boarders

Well-Known Member
1) archive is meant to be used with Ram drive - although it shouldnt be taking that long. You can turn it off as you dont use it.
2) learn to debug. Its essential. With debugging you can check why its not behaving as you expected.

See here . This article, seems good.
I have 4 gb Ram but for some reason Ram drive crashes the computer. but my harddrive is SSD and very fast as good as ram drive.

will check debugging thanks
 

TracerBullet

Well-Known Member
I have 4 gb Ram but for some reason Ram drive crashes the computer. but my harddrive is SSD and very fast as good as ram drive.
SSD is still much slower than RAM. But anyway, it should not be taking so long. Even without archive its slow.

So, debug and check if code flow is ok. Did you change code for Amibroker too?
You can also try to time various functions and narrow down the culprit. I have example code in ABBackfill main class ( its commented - QueryPerformanceFrequency ). Normally we use profiling tools to check for performance problems but i am not familiar with VC++ and QueryPerformanceFrequency should suffice for now
 

Similar threads