Name: Anonymous 2008-05-11 4:54
Anyone know of a good book to read on building automated algorithms for trading stocks? I don't have the time or patience to be sitting at the comp all day watching those damn graphs.
int
ishigh(void)
{
if(!islow()) {
return 1;
} else {
return 0;
}
}
int
islow(void)
{
if(!ishigh()) {
return 1;
} else {
return 0;
}
}