Skip to content

Instantly share code, notes, and snippets.

@programatt
Created October 14, 2011 06:11
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 programatt/1286373 to your computer and use it in GitHub Desktop.
Save programatt/1286373 to your computer and use it in GitHub Desktop.
thinkScript $ES_F vs $6E_F indicator
#This script will plot the change in Euro FX Futures versus the change in emini S&P futures
declare lower;
input eu = "/6E";
input sp = "/ES";
plot data =(close(eu)-close(eu)[1])*1000;
plot Data2 = (close(sp)-close(sp)[1]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment