Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save D3MZ/16d9961f60c5ac32bcec to your computer and use it in GitHub Desktop.
Save D3MZ/16d9961f60c5ac32bcec to your computer and use it in GitHub Desktop.
complements this blog
cut -d',' -f6 #Close prices in sheet
awk 'NR>1{print $1-p} {p=$1}' #changes in close prices
awk '{if ($1 != 0) print $1}' #no zeros
perl -ne 'print $_ < 0 ? -1 : 1, "\n";' #up-down format
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment