OrderMan - Ordering interface for NOW + Amibroker

VJAY

Well-Known Member
Thanks ...now error gone ...but it not picking price from file!!!
 

VJAY

Well-Known Member
same issue for me too, lets wait for tracerbullet to reply
How in this image figures showing? I cant see any figures for me here ...even unable to put figures by manually using keypad!!!

1542116803070.png
 

VJAY

Well-Known Member
Dear TB/Pannet
My orderman opening NOW only ...how can I set it to use with NEST?
 

pannet1

Well-Known Member
How in this image figures showing? I cant see any figures for me here ...even unable to put figures by manually using keypad!!!

View attachment 30542
that correct.

i pressed the up arrow and down arrow

just be patient

:p
 

pannet1

Well-Known Member

TracerBullet

Well-Known Member
As i said before, the default place where it picks up the input is R:\OrderMan\input.csv

Input csv should have 1 line with format SCRIP,ENTRYPRICE,STOPPRICE,TARGETPRICE
Example
JETAIRWAYS,256.85,246.95,271.7

The path can be changed in settings.ahk
INPUT_PATH := "R:\OrderMan\" // Path for IO with AB

Also, it should be easy to enable the prices in gui. They were enabled earlier but then I disabled them to avoid typo errors
Try this - probably it will work but i did not test

In gui.ahk : createGUI()

// Column 3
Gui, 1:Add, Edit, vEntryPrice w55 ReadOnly gonEntryPriceChange ym+25 x+m
Gui, 1:Add, Edit, vStopPrice w55 ReadOnly gonStopPriceChange
Gui, 1:Add, Edit, vTargetPrice w55 ReadOnly gupdateCurrentResult



Remove ReadOnly
 

TracerBullet

Well-Known Member
Thanks once again.

No error message till i get the buy window but price is not picked up. when i play with the price, target and stop to increment them from 0 and then press new button i get the following error.

View attachment 30537
Make sure the menu text matches with what you have in ZT/NOW.

Check in Nest.ahk/Now.ahk
static ORDER_BOOK_MENU := "View Order,Order Book" // Menu to open Order Book
 

VJAY

Well-Known Member
As i said before, the default place where it picks up the input is R:\OrderMan\input.csv

Input csv should have 1 line with format SCRIP,ENTRYPRICE,STOPPRICE,TARGETPRICE
Example
JETAIRWAYS,256.85,246.95,271.7

The path can be changed in settings.ahk
INPUT_PATH := "R:\OrderMan\" // Path for IO with AB

Also, it should be easy to enable the prices in gui. They were enabled earlier but then I disabled them to avoid typo errors
Try this - probably it will work but i did not test

In gui.ahk : createGUI()

// Column 3
Gui, 1:Add, Edit, vEntryPrice w55 ReadOnly gonEntryPriceChange ym+25 x+m
Gui, 1:Add, Edit, vStopPrice w55 ReadOnly gonStopPriceChange
Gui, 1:Add, Edit, vTargetPrice w55 ReadOnly gupdateCurrentResult



Remove ReadOnly
Input csv format
1542159867446.png

Corrected path in input path
1542159913394.png

Removed ReadOnly from column3 as abv said
1542160065807.png

But still price not picking from csv file!!!!