[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Posted Code by Randy T.



PureBytes Links

Trading Reference Links

Hi preston, 
> 
> Randy, you have set a high standard with your code post, what with the
> explanatory marginal remarks!  There may yet be hope for us dummies to learn to trade/program/read when people such as you make the code so clear.

I do every system I have that same way.  It is to keep my own code clear as to what is 
going on.  I don't trust any built-in stop method because it doesn't work real time.  
The charts are always behind because the system is based upon time and sales data, which 
is history after the fact.  The only true way to trade is with massive instant data and 
a fast system.  

Because my systems are complex and attempt to play real time, I must track within the 
program what is going on.  Hence, any series function call is in top of the program, 
with the result assigned to a variable.  I use that variable again & again within the 
program so that I only refer to the function one time.  Any functions should be 
referenced to first, so that you are not testing with old data.

> 
> Keep it up...hope it's contagious

I hope so, but given the nature of this list - I will not be holding my breath.  

Good luck and good trading 

Randy