Post
Topic
Board Trading Discussion
Re: HAL 10K - PHP Open source Trading bot
by
nous
on 11/01/2014, 23:30:48 UTC
First of all, thanks for making this tool open source. I believe that with enough feedback from its users you'll deliver a solid final product. I'm using it right now on linux at paper mode, testing to see how it goes, using the settings woutie70 reported as "perfect".

The least I can do is provide a good start_hal10k.sh for UNIX-like systems:

Code:
#!/bin/sh

#export HTROOT=/srv/http/bitcoin/hal10k

[ $HTROOT ] || { echo "Please, edit $(basename ./$0) and set the correct HTROOT path."; exit 1; }

while true; do
    echo Start time is: $(date)
    cd $HTROOT
    php start.php
done

I'll leave hal10k (what a cool name, BTW) running all night and report back with the results.