Real Time Data Now / Nest Trader to Amibroker, Fcharts

josh1

Well-Known Member
Amibroker 5.3

Real time chart refresh rate is already 1 sec. ( checked ).
Working fine with older utility, refreshing simultaneously with data.
I think 5.3 does not refresh automatically. In my older utility, I had included a refresh call to Amibroker. Later, I found that 5.6 refreshes automatically. Install 5.6 or higher. If you had bought it, 5.6 should be available for free.
 
Last edited:

candle

Well-Known Member
I think 5.3 does not refresh automatically. In my older utility, I had included a refresh call to Amibroker. Later, I found that 5.6 refreshes automatically. Install 5.6 or higher. If you had bought it, 5.6 should be available for free.

installed 5.70.3 now. But facing the same issue. :confused::confused:
However both of them are updating with older utility of urs.
 

josh1

Well-Known Member
installed 5.70.3 now. But facing the same issue. :confused::confused:
However both of them are updating with older utility of urs.
:confused::confused::mad:
Weird. We had confirmed with users that charts are getting refreshed automatically. In fact we removed refresh call. Which older utility are you having?
 

muinali

Well-Known Member
hi, why data downloader no retreiving data after 9/04/2015
 
zerodha provides pi platform where it accepts signals from amibroker.
I am trying to automate the acceptance part of semi automated mode with autoit.

Has any tried this ?

i am facing trouble getting the hold of PI window based on the Title.
#Region ............ Included Scripts
#include-once
#include <GUIConstants.au3>
#include <Array.au3>
#include <GuiListView.au3>
#include <Date.au3>
#include <file.au3>
#EndRegion ............ Included Scripts

Func _WinWaitActivate($title,$text,$timeout=0)
WinWait($title,$text,$timeout)
If Not WinActive($title,$text) Then WinActivate($title,$text)
WinWaitActive($title,$text,$timeout)
EndFunc


MsgBox(0,"test Pi ","running test pi")
$Title="Pi"
_WinWaitActivate($Title,"test")

Global $hWnd = WinGetHandle($Title) ; Get handle for NOW main window
Global $hWatch = ControlGetHandle($hWnd, "", 67868) ;Get handle of Market Watch Control
MsgBox(0,"test Pi ","got window handles")

Local $iColumnCount = _GUICtrlListView_GetColumnCount($hWatch)
MsgBox(0,"test Pi ","column count is " & $iColumnCount)
Local $aColumns[] = []

For $i = 0 To $iColumnCount - 1
$aColumns = _GUICtrlListView_GetColumn($hWatch, $i);
Local $Name = $aColumns[5]
MsgBox(0,"test ",$Name)
Next

The same piece works with notepad++ if i give full path of the notepad doc.(but auto it window info shows the path in the in the title section , for PI platform it says just PI.

Any ideas?
 

josh1

Well-Known Member
_WinWaitActivate($Title,"test")

Why are you passing "test" to the function? Is it visible text in PI window? Use Winexists instead of Winwait.
 
Thanks for the reply.
thought we can give any random text. just realized that the text had to be present on the window.


Has anytried automating the acceptance part. ?
 

Similar threads