sabren.net   rants   archive   bio   portfolio

Misc notes [0803.1999]

I'm cleaning out my notes file. Here's some random stuff about traderbots and telephone wiring, constraints at work, and perl modules.

trading systems

if we only look at the current trends, it would be helpful to know, for a particular stock, how much it tends to move from tick to tick... call it "inertia" or velocity.. this would give you an idea of how much time you'd generally have to buy or sell before realizing a trend has started..?

telephone wiring

I needed to setup a second phone line (a while back) and figured I could save some money doing it myself. I went to the library and read up on how this stuff works. The phone company only goes to the d-marc location - the box outside. All the inside wiring involves wires that are probably already in the wall.

When I unscrewed my jack, there were six color wires in the wall: red, green, yellow, black, blue, white (the book said it could be orange for some people)... blue and white seem to be the second line. So I just unhooked the red and green, connected the blue and white, and voila! My jack now points to the second phone line.

Constraints at ASI

  * issues slowing me down at georgianet:
   * boredom
   * slack
   * other projects
   * multi*tasking
   * waiting on other people (marta, etc.)
   * hardware failures
   * learning curve
   * sucky legacy code
  * issues possibly slowing us down in general:
   * lack of reusable code (access, asp)
   * bloated scope
   * delay in feedback

Perl Module Creation

h2xs -XA AI::Fuzzy (will creat
<Schwern> sabren: Overwrite Fuzzy.pm with your AI::Fuzzy (Fuzzy.pm)
and place any other modules in AI/Fuzzy/lib/AI/Fuzzy/
<Schwern> subren: Thus, AI::Fuzzy::Set (Set.pm) would go into
AI/Fuzzy/lib/AI/Fuzzy/Set.pm
<Schwern> sabren:  I tend to do make tardist.
<sabren> schwern: but it will auto-install all three modules?
<Schwern> sabren: I don't know if they changed the defaults, but I
usually set: 'dist' => { COMPRESS => 'gzip -9', SUFFIX => '.gz',
DIST_DEFAULT => 'all tardist' }
<Schwern> sabren:  make tardist (or make dist) will make a tarball for you of the distribution.
<sabren> schwern: thanks!