Skip to content

Instantly share code, notes, and snippets.

@nanake
Created June 25, 2011 16:41
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 nanake/1046645 to your computer and use it in GitHub Desktop.
Save nanake/1046645 to your computer and use it in GitHub Desktop.
Ichimoku
ST:=(HHV(H,26)+LLV(L,26))/2;
TL:=(HHV(H,9)+LLV(L,9))/2;
DL:=Ref(C, 26);
1Span:=Ref((ST+TL)/2,-26);
2Span:=Ref((HHV(H,52)+LLV(L,52))/2,-26);
ST;
TL;
DL;
1Span;
2Span
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment