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

Status
Not open for further replies.
Re: Free RealTime Data NOW Nest ODIN Trade Tiger Google Yahoo to AmiBroker, Fcharts M

sir ,

my terminal is odin. i am getting rt data in amibroker but facing 2 problems ----
1. not getting rt data for commodity after 3.30 pm .
2. during importing by ascii import wizard showing error and not able to backfill.
 

josh1

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

sir ,

my terminal is odin. i am getting rt data in amibroker but facing 2 problems ----
1. not getting rt data for commodity after 3.30 pm .
2. during importing by ascii import wizard showing error and not able to backfill.
1. Check your market session time in Database settings
2. set your fields properly in wizard. You will have to read Amibroker Users Guide for that.
 
Re: Free RealTime Data NOW Nest ODIN Trade Tiger Google Yahoo to AmiBroker, Fcharts M

I am facing the same issue again.

It was working fine, as I reported earlier, but today when I tried to backfill it gave the same error - "Trading symbol must be present Market Watch".

The NOW window is getting activated (maximized) when I run NowVwapBackFill_0.5.exe (whether I run as an administrator or not) so I think NowVwapBackFill_0.5.exe not able to read NOW, may not be the issue. But then, what may be wrong?

By the way, I tried changing the settings suggested by shankar4kv, but nothing seems to work.
 
Re: Free RealTime Data NOW Nest ODIN Trade Tiger Google Yahoo to AmiBroker, Fcharts M

1. Check your market session time in Database settings
2. set your fields properly in wizard. You will have to read Amibroker Users Guide for that.
sir,

i have tried all things properly but no backfilling.

my odin chart preference setting --

http://


saved chart in excel format -----

http://


import wizard column setting ----

http://


but not not able to backfill.
 

josh1

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

I am facing the same issue again.

It was working fine, as I reported earlier, but today when I tried to backfill it gave the same error - "Trading symbol must be present Market Watch".

The NOW window is getting activated (maximized) when I run NowVwapBackFill_0.5.exe (whether I run as an administrator or not) so I think NowVwapBackFill_0.5.exe not able to read NOW, may not be the issue. But then, what may be wrong?

By the way, I tried changing the settings suggested by shankar4kv, but nothing seems to work.
It is not able to read Market Watch. The last solution is to download and install Autoit. Then compile the app on your machine
 
Re: Free RealTime Data NOW Nest ODIN Trade Tiger Google Yahoo to AmiBroker, Fcharts M

It is not able to read Market Watch. The last solution is to download and install Autoit. Then compile the app on your machine
Finally I am able to diagnose the problem. The culprit is a virtual keyboard program that I use as some of the keys in my keyboard is not working. The nature of this program is to always "take-over" the currently activated window, so as to enable typing on that window. As such, as-soon-as the NOW window is activated by NowVwapBackFill_0.5.exe, this virtual keyboard program takes hold of it and instead of reading Market Watch of NOW, NowVwapBackFill_0.5.exe reads the window of this virtual-keyboard program. So I just closed the running virtual keyboard program and NowVwapBackFill_0.5.exe was able to read Market Watch. Whew!

Thanks josh1, you were right all this time.
 

josh1

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

sir,

i have tried all things properly but no backfilling.

my odin chart preference setting --

http://


saved chart in excel format -----

http://


import wizard column setting ----

http://


but not not able to backfill.
You have to save the file in the name of NIFTY14AUGFUT or whhcichever you want.
Intraday chart type should be 1 min.

Read the Setup instructions again.
 
Re: Free RealTime Data NOW Nest ODIN Trade Tiger Google Yahoo to AmiBroker, Fcharts M

sir,

backfilling problem solved and still have one problem.
after changing session timing now i am getting mcx data after 3.30 pm but in nse scrips getting constant data (one fixed value only) till end of mcx session.

http://


i have checked all possible combination of session timing, filtering but not able to stop that.

thanks for your data feed utility .
 
Re: Free RealTime Data NOW Nest ODIN Trade Tiger Google Yahoo to AmiBroker, Fcharts M

I have 64 bits windows 8.1. Backfill version 0.5 32 bit works without any problem. As C drive needs Admin access permissions, You have to run this and connected applications as admin.
Otherwise install all connected programs like amibroker, Now/Nest in D Drive. It will work. I have ms-office, Amibroker, Now and nest installed in D:\Program Files\.
All the programs works without admin privileges.

I mean i have windows 8.1 32 bit
 

josh1

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

sir,

backfilling problem solved and still have one problem.
after changing session timing now i am getting mcx data after 3.30 pm but in nse scrips getting constant data (one fixed value only) till end of mcx session.

http://


i have checked all possible combination of session timing, filtering but not able to stop that.

thanks for your data feed utility .
A. Make two folders say A and B on your drive. Copy my utility in both folders. (do not change the name of utility...!). Utility in folder A will have all scrips. Utility in folder B will have only MCX Scrips. Close the first at 3:30 PM and start the second.

B. You can use DeleteRTTics to delete the tics after 3:30 from NSE scrips.

C. This one requires a bit of effort and learning.
1. Type 15:30 against all NSE Scrips in Symbol Column.
2. Find the following lines in makecsv() routine in Developer -- Visual Basic -- Module1 code.

For R = 7 To Range("A65536").End(xlUp).Row
S = Format(Date, "dd/mm/yyyy") & ","
C = 1
While Not IsEmpty(Cells(R, C))
If C = 2 Then
CellValue = Format(Cells(R, C).Value, "HH:mm:ss")
' ElseIf C = 4 Then
' t = Cells(R, C).Value - (Vol(R, 1))
' Vol(R, 1) = Cells(R, C).Value
' CellValue = t
' Debug.Print Cells(R, 1).Value & t & " - " & Vol(R, 1)
Else
CellValue = Cells(R, C).Value '
End If
S = S & CellValue & "," 'Add contents of current cell to string 's' and a comma
C = C + 1
Wend
a.writeline S 'write line to the file MyCSV.csv

Next R

Change it to following -
For R = 7 To Range("A65536").End(xlUp).Row

If TimeValue(Now()) >= TimeValue(Cells(R,5).value) then
Nextiteration
Endif

S = Format(Date, "dd/mm/yyyy") & ","
C = 1
While Not IsEmpty(Cells(R, C))
If C = 2 Then
CellValue = Format(Cells(R, C).Value, "HH:mm:ss")
' ElseIf C = 4 Then
' t = Cells(R, C).Value - (Vol(R, 1))
' Vol(R, 1) = Cells(R, C).Value
' CellValue = t
' Debug.Print Cells(R, 1).Value & t & " - " & Vol(R, 1)
Else
CellValue = Cells(R, C).Value '
End If
S = S & CellValue & "," 'Add contents of current cell to string 's' and a comma
C = C + 1
Wend
a.writeline S 'write line to the file MyCSV.csv

Nextiteration
Next R
 
Last edited:
Status
Not open for further replies.

Similar threads