Jump to content

Welcome to the new Traders Laboratory! Please bear with us as we finish the migration over the next few days. If you find any issues, want to leave feedback, get in touch with us, or offer suggestions please post to the Support forum here.

  • Welcome Guests

    Welcome. You are currently viewing the forum as a guest which does not give you access to all the great features at Traders Laboratory such as interacting with members, access to all forums, downloading attachments, and eligibility to win free giveaways. Registration is fast, simple and absolutely free. Create a FREE Traders Laboratory account here.

knocks420

Steenbarger Indicators

Recommended Posts

Has anyone been able to successfully recreate the indicators used on Brett Steenbarger's site? Indicators include NYSE cumulative TICKS, Money Flow, and other market internals. Here is an example of one I am currently working on:

 

http://traderfeed.blogspot.com/2009/02/stock-market-sentiment-look-at-muted.html

 

Despite using the logic written I was unable to recreate the indicator in the timeframe shown in the examples. Thanks for any assistance!

Share this post


Link to post
Share on other sites

Attached is "my" version of cumulative tick. I say my version since I have changed it somewhat for my specific chart setup and it is specific to minute based bars. I am pretty sure this is not the most optimized way of coding it, but it works for me. Or rather it did, as I am not using it anymore.

 

From what I understood from is blog, the money flow indicator is virtually the same, but also multiply the cumulative tick values with the volume for each bar, so this should easy to adapt the code. You most likely will have to adjust it for your setups, but hopefully this give you a starting point.

 

In the attached picture, the middle frame is the cumulative TICK and the bottom one the ROC of it.

Inputs:	AvgDays(20),
	BarResolution(1),
	UpColor(Green),
	DownColor(Red),
	TrendBars(5),
	MALen(60),
	ShowMA(1),
	ShowDiff(0); 

Vars:	AvgLen(0),
TodayAvg(0),
TickMA(0),
CumuAvg(0),
TodayTotal(0),
TICK(0),
Counter(0),
Color(Yellow);

AvgLen = AvgDays * (390/BarResolution);
TICK = (High + Low + Close)/3;

If date <> Date[1] then TodayAvg = Average(TICK, AvgLen)[1];

TodayTotal = TodayTotal + (High + Low + Close)/3 - TodayAvg;
TickMA = Average(TodayTotal,MALen);

If ShowMA = 1 then Color = Iff(TodayTotal >= TickMA, UpColor, DownColor);
if ShowMA = 0 then begin
IF TodayTotal > TodayTotal[TrendBars] then Color = UpColor;
IF TodayTotal < TodayTotal[TrendBars] then Color = DownColor;
End;

If ShowDiff = 1 then Plot1(TodayTotal - TodayTotal[TrendBars],"Diff",Color);
if ShowDiff = 0 then Plot2(TodayTotal,"Adjusted TICK", Color);
If ShowMA = 1 then Plot3(TickMA, "TickMA", Yellow);	

5aa70eacd89ce_cumulativetick.thumb.png.0707c20b674270092229b37456e1dd99.png

Share this post


Link to post
Share on other sites
All he means by culmative is its current value. Its the same as On Balance Volume or Accumulation/Distribution. It's just a running total of the net.

 

Actually, it is not. It is the cummulative value of the differences from the average of the last 20 days and not just the cummulative value of adding current values together.

Share this post


Link to post
Share on other sites
Actually, it is not. It is the cummulative value of the differences from the average of the last 20 days and not just the cummulative value of adding current values together.

 

 

 

Any series can be made to contain only the last N day's. Whether you use just the last N days or let it run continously its the same thing.

Share this post


Link to post
Share on other sites
Any series can be made to contain only the last N day's. Whether you use just the last N days or let it run continously its the same thing.

 

I didn't say it is the cummulative value over the last 20 days. Please read my post again.

 

Please also read the explanation again from Steenbarger's blog on how this is calculated. In some of the comments to his blog posts, he explains it in more detail. This is not a simple cumulative value of the current values as you think as with On Balance Volume. It's a cummulative value of the difference from the average.

Share this post


Link to post
Share on other sites
Sevensa,

 

Upon closer look it appears this works for divergences as well. Did I read that right?

 

I haven't used the indicator in a while and actually has used it very little. However, my guess would be that divergences would be one of it's strong points, just like with regular TICK when it doesn't confirm price movement.

Share this post


Link to post
Share on other sites

Steenbarger's a sharp guy! I track the NYSE tick and use them to watch for equity "buy programs" as well a track the cumulative delta in the e-minis via fulcrumtrader, but he used marketdelta for cd and other volume analysis last i heard.

Share this post


Link to post
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.


×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.