+ Reply to Thread
Results 1 to 2 of 2

Thread: Cum.tick and ThinkOrSwim

  1. #1
    Join Date
    Jan 1970
    Location
    New York, NY
    Posts
    191

    Cum.tick and ThinkOrSwim

    In a private message I was asked where I was getting my cum.tick information since TOS doesn't have a standard solution.

    Long time ago I wrote a cum.tick study for TOS. Please find the code and the settings below.

    It follows Billy's insights in cum.tick and I have been using it for several years.


    Best,

    Ernst

    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);
    addcloud(cum195,cum390,color.green,color.red);
    addcloud(cum390,cum600,color.green,color.red);
    alert(crosses(cum,cum195,crossingDirection.Below),"sell", alert.tICK,sound.Ring);
    alert(crosses(cum,cum195,crossingDirection.above),"buy", alert.TICK,sound.Ring);
    plot MiddleLR = InertiaAll(cum,30,0,0,0,1);
    MiddleLR.setDefaultColor(GetColor(5));
    Name:  ct2.png
Views: 321
Size:  40.5 KBName:  ct1.png
Views: 290
Size:  67.7 KB
    Last edited by ernsttanaka; 10-15-2013 at 06:10 PM.

  2. #2
    Join Date
    Jan 2013
    Location
    Texas, USA
    Posts
    12

    Cum Tick on Stockcharts

    I also use Cum Tick, but on Stockcharts.com

+ Reply to Thread

Posting Permissions

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