OrderMan - Ordering interface for NOW + Amibroker

pannet1

Well-Known Member
You solved this issue?if so please post the steps
i am confused now because @TracerBullet says its a different issue.

Uninstall AutoHotKey.
Install it under a custom folder lets says c:\AHK\
copy and paste the OrderMan folder that you downloaded from github under c:\AHK\. so its now under c:\AHK\Orderman

then run the orderman.bat file and you should be fine.
 

VJAY

Well-Known Member
i am confused now because @TracerBullet says its a different issue.

Uninstall AutoHotKey.
Install it under a custom folder lets says c:\AHK\
copy and paste the OrderMan folder that you downloaded from github under c:\AHK\. so its now under c:\AHK\Orderman

then run the orderman.bat file and you should be fine.
Thanks pannet bro....I done what you explained here...but for me problem is same....

1542102824675.png


I think problem is in path...its error showing as c:windows//// something but actually it at C:/AHK/
where can we change this path?
 

pannet1

Well-Known Member
Thanks pannet bro....I done what you explained here...but for me problem is same....

View attachment 30525

I think problem is in path...its error showing as c:windows//// something but actually it at C:/AHK/
where can we change this path?
This is the content of my OrderMan.bat. Not sure if i changed it from the original git version but this is working for me.

OrderMan.bat
START ./../../AHK/AutoHotkey.exe OrderMan.ahk

1542083980206.png
 

VJAY

Well-Known Member
This is the content of my OrderMan.bat. Not sure if i changed it from the original git version but this is working for me.

OrderMan.bat
START ./../../AHK/AutoHotkey.exe OrderMan.ahk

View attachment 30531

Looks similar to me too...

1542103914605.png
 

VJAY

Well-Known Member
nope.

it should not be similar ... it should be exact
notice the extra ../
Now its corrected ...thanks for your help brother......can you pls explain how we use it ?
Is it same as we use BO order?how can we connect entry price from chart?
 

Attachments

pannet1

Well-Known Member
Now its corrected ...thanks for your help brother......can you pls explain how we use it ?
Is it same as we use BO order?how can we connect entry price from chart?
i dont know .. trying to build something more on top of this.
for me CRUDEOILM future script is not coming correctly and there is write error on util, so more work ahead.

this utility is aimed at entering SL and TP in one entry i think.
 

TracerBullet

Well-Known Member
Directory create error is probably because you dont have R:\

I take input Entry/Stop/Target prices from files created by AB at R:\OrderMan\input.csv. The path is set in settings.ahk
INPUT_PATH := "R:\OrderMan\" // Path for IO with AB

You can set this to some writable path and the error will go away.
But anyway, you will only be able to take in prices from files and not via hotkey. I think i removed it and will have to add/test again when i get time.

If you can create input file, then you can test that out.
You will also have to set the scrips in config/scrips. I generate the config using ScripsImporter.ahk which needs input at config/quotes.csv. Or you can create manually looking at sample file.
Once you understand all of the configuration, then it works well ..

-----------------------------------------------------------
Example file - input.csv

JETAIRWAYS,256.85,246.95,271.7

---------------------------------------------------------------
Example file - quotes.csv
ACC,1503.2
ADANIPORTS,323.25
ASHOKLEY,116.25
ASIANPAINT,1261.2
AUROPHARMA,735.1
AXISBANK,584.05

----------------------------------------------------
Example config\scrips\JETAIRWAYS.ini

[OrderMan]
Scrip=NSE,EQ,JETAIRWAYS,,,1
ProdType=MIS
TickSize=0.05
MinTargetStopDiff=0.75


Edit - Again - Futures will need code changes to round for lot size. Qty is set as % of current capital. I have not done that and probably wont as i would probably prefer to use IB + api.
I have many tools working together at this stage( ex Orderman + Rtdman+ Tradelog) and have not tested OM standalone. Some effort will be needed from anyone trying to make it work ..
If you can code, then great, try to mod it for own use.
 
Last edited:

pannet1

Well-Known Member
Thank you.

I am not using AB and so more learning ahead. I will try with the inputs you provided and let you know. BTW can you point me to the forum where your setup of AB and RTD is mentioned. I am trading only commodity.

Directory create error is probably because you dont have R:\

I take input Entry/Stop/Target prices from files created by AB at R:\OrderMan\input.csv. The path is set in settings.ahk
INPUT_PATH := "R:\OrderMan\" // Path for IO with AB

You can set this to some writable path and the error will go away.
But anyway, you will only be able to take in prices from files and not via hotkey. I think i removed it and will have to add/test again when i get time.

If you can create input file, then you can test that out.
You will also have to set the scrips in config/scrips. I generate the config using ScripsImporter.ahk which needs input at config/quotes.csv. Or you can create manually looking at sample file.
Once you understand all of the configuration, then it works well ..

-----------------------------------------------------------
Example file - input.csv

JETAIRWAYS,256.85,246.95,271.7

---------------------------------------------------------------
Example file - quotes.csv
ACC,1503.2
ADANIPORTS,323.25
ASHOKLEY,116.25
ASIANPAINT,1261.2
AUROPHARMA,735.1
AXISBANK,584.05

----------------------------------------------------
Example config\scrips\JETAIRWAYS.ini

[OrderMan]
Scrip=NSE,EQ,JETAIRWAYS,,,1
ProdType=MIS
TickSize=0.05
MinTargetStopDiff=0.75