NexusFi: Find Your Edge


Home Menu

 





Cumulative tick script


Discussion in ThinkOrSwim

Updated
      Top Posters
    1. looks_one dalebru with 5 posts (6 thanks)
    2. looks_two runit with 2 posts (0 thanks)
    3. looks_3 Cerberus with 1 posts (1 thanks)
    4. looks_4 ProlongWealth with 1 posts (0 thanks)
      Best Posters
    1. looks_one tpredictor with 2 thanks per post
    2. looks_two dalebru with 1.2 thanks per post
    3. looks_3 lynmark1 with 1 thanks per post
    4. looks_4 Cerberus with 1 thanks per post
    1. trending_up 17,788 views
    2. thumb_up 10 thanks given
    3. group 15 followers
    1. forum 16 posts
    2. attach_file 1 attachments




 
Search this Thread

Cumulative tick script

  #11 (permalink)
 dalebru 
Indianapolis/IN
 
Experience: Intermediate
Platform: SC, NT, ToS, my own
Broker: EdgeClear
Trading: ES
Posts: 67 since Jan 2013
Thanks Given: 1,035
Thanks Received: 110


lynmark1 View Post
How do you down load this to TOS?

https://tlc.thinkorswim.com/center/charting/studies/basics/basic-operations/importing.html

Reply With Quote

Can you help answer these questions
from other members on NexusFi?
Quantum physics & Trading dynamics
The Elite Circle
About a successful futures trader who didnt know anythin …
Psychology and Money Management
ZombieSqueeze
Platforms and Indicators
REcommedations for programming help
Sierra Chart
What broker to use for trading palladium futures
Commodities
 
  #12 (permalink)
sholcombe4
Houston, TX
 
Posts: 14 since Jan 2018
Thanks Given: 10
Thanks Received: 5

What is the difference between ShadowTrader's Cumulative TICK and let's say the "Awesome Oscillator" in think or swim?

Reply With Quote
  #13 (permalink)
 Gregorymc83 
San Francisco CA
 
Experience: Intermediate
Platform: NinjaTrader, ToS
Trading: High volume products
Posts: 2 since Mar 2016
Thanks Given: 1
Thanks Received: 0


Hi @dalebru

I like your cumulative tick study, the layout in the chart lower is perfect and it's...ya know..free!

I am looking to also have market breadth ($ADDC) the same way right below in another lower panel to see divergence/confluence.

Simply changing the ticker in the study doesn't work because ADDC doesn't need any of the math of cumulative tick, however I've failed miserably at trying to edit the code myself.

Is there an easy way to use this framework to show Advance/Decline in a chart lower, instead of plotting it in a whole new chart??

Thanks for cumulative tick!

Greg

Reply With Quote
  #14 (permalink)
 dalebru 
Indianapolis/IN
 
Experience: Intermediate
Platform: SC, NT, ToS, my own
Broker: EdgeClear
Trading: ES
Posts: 67 since Jan 2013
Thanks Given: 1,035
Thanks Received: 110


Gregorymc83 View Post
Hi @dalebru

I like your cumulative tick study, the layout in the chart lower is perfect and it's...ya know..free!

I am looking to also have market breadth ($ADDC) the same way right below in another lower panel to see divergence/confluence.

Simply changing the ticker in the study doesn't work because ADDC doesn't need any of the math of cumulative tick, however I've failed miserably at trying to edit the code myself.

Is there an easy way to use this framework to show Advance/Decline in a chart lower, instead of plotting it in a whole new chart??

Thanks for cumulative tick!

Greg

I haven't been into ThinkOrSwim for the past year or so, so I don't remember. But IIRC you'll need a new chart.

Reply With Quote
  #15 (permalink)
scottm
Clemmons
 
Posts: 7 since Feb 2018
Thanks Given: 1
Thanks Received: 0

Histogram for 1 frame, plotlines for 6 frame & 12 frame
(On 5m chart these are 30m & 60m averages
Timeframes can be changed

#############################

##Tick Count Histogram with Two Longer Tick Averages
##Default 1, 6, 12. On 5min chart = 5m, 30m, 60m
##@scottseller##

declare lower;

input Period_1 = 1;
input Period_6 = 6;
input Period_12 = 12;

plot HistoTick = (average(tick_count, Period_1));
plot P_1 = (average(tick_count, Period_1));
plot P_6 = (average(tick_count, Period_6));
plot P_12 = (average(tick_count, Period_12));


## Hides the tick count line plot by default, opting for histogram tick count

P_1.Hide();
P_1.SetLineWeight(2);
P_1.setDefaultColor(color.yellow);
HistoTick.SetPaintingStrategy(PaintingStrategy.HISTOGRAM);
HistoTick.AssignValueColor(
if HistoTick >= P_6
then Color.DARK_GREEN
else Color.DARK_RED);

P_6.setDefaultColor(color.cyan);
P_12.setDefaultColor (color.violet);

P_1.HideBubble();
P_6.HideBubble();
P_12.HideBubble();
HistoTick.HideBubble();

Reply With Quote
  #16 (permalink)
whats1thingnow
Whistler, BC
 
Posts: 34 since Dec 2015
Thanks Given: 25
Thanks Received: 9


dalebru View Post
Attached.

what's the difference between Cumulative Tick indicator, and Cumulative Delta indicator?


Cumulative Delta keeps track of bid and ask volume...

and cumulative tick is just up tick vs down tick?

Reply With Quote
  #17 (permalink)
 dalebru 
Indianapolis/IN
 
Experience: Intermediate
Platform: SC, NT, ToS, my own
Broker: EdgeClear
Trading: ES
Posts: 67 since Jan 2013
Thanks Given: 1,035
Thanks Received: 110


whats1thingnow View Post
what's the difference between Cumulative Tick indicator, and Cumulative Delta indicator?


Cumulative Delta keeps track of bid and ask volume...

and cumulative tick is just up tick vs down tick?

Yes, I think so. I haven't looked at it for years.

Reply With Quote




Last Updated on September 20, 2018


© 2024 NexusFi™, s.a., All Rights Reserved.
Av Ricardo J. Alfaro, Century Tower, Panama City, Panama, Ph: +507 833-9432 (Panama and Intl), +1 888-312-3001 (USA and Canada)
All information is for educational use only and is not investment advice. There is a substantial risk of loss in trading commodity futures, stocks, options and foreign exchange products. Past performance is not indicative of future results.
About Us - Contact Us - Site Rules, Acceptable Use, and Terms and Conditions - Privacy Policy - Downloads - Top
no new posts