Results 1 to 10 of 26

Thread: Is It Really The Start of Something New? July 20, 2011

Threaded View

  1. #22
    Join Date
    Jan 1970
    Location
    New York, NY
    Posts
    191
    Here is my Cumtick code for TOS.

    Use symbol $tick and uncheck "Show Price Subgraph"

    See attachment for settings and for screen capture of an example.


    Code:
    declare lower;
    rec ct = ct[1]+close;
    plot cum = ct;
    plot cum600 = average(cum,600);
    plot cum390 = average(cum,390);
    plot cum195 = average(cum,195);
    cum600.setDefaultColor(color.red);;
    cum390.setDefaultColor(color.orange);
    cum195.setdefaultColor(color.green);
    Attached Images    

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts