This .BAT file launches 2 python scripts which take order parameters from a CSV file (created by Amibroker). Each of the python scripts creates a log file if not already there and then writes exceptions to the log
If I click the .BAT file manually, I do get the order and the stop loss placed on the exchange and the logs are created, but if I run them from Amibroker batch using Execute and wait, ...
Solved (or at least found a workaround.
I just pasted this as .afl and put it into an .apx project (for current symbol and 1 recent bar,.... I learned that the hard way)
@SpandexMan, as a simple alternative, in your DOS batch file (.bat) you could have added a statement to change the current directory to the one where the python scripts are located. E.g.:
CD "C:\Program Files\Amibroker\YourScriptsParentFolder\Python"
start python stoplossPlacer.py
start python newOrder.py