| Market Internals Discussion forum on market internals, pit noise/action, and price action to determine the overall strength/weakness of the markets. |
![]() | | Tweet | |
| | #1 | ||
![]() | Steenbarger Indicators http://traderfeed.blogspot.com/2009/...-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! | ||
| |
|
| | #2 | ||
![]() | Re: Steenbarger Indicators 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. Code: 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); | ||
| |
|
| The Following 7 Users Say Thank You to sevensa For This Useful Post: | ||
caglebagle (02-02-2009), dandxg (06-12-2009), keithb (03-07-2009), knocks420 (02-02-2009), Soultrader (02-01-2009), thrunner (02-02-2009) | ||
| | #3 | ||
![]() | Re: Steenbarger Indicators I copied and pasted this code into TS 8.3 and compiled it fine. But when I applied to the chart and it is not showed up. Any ideas how ? TF?, symbols? Thanks | ||
| |
|
| | #4 | ||
![]() | Re: Steenbarger Indicators | ||
| |
|
| | #5 | ||
![]() | Re: Steenbarger Indicators Quote:
| ||
| |
|
| | #6 | ||
![]() | Re: Steenbarger Indicators Quote:
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. | ||
| |
|
| | #7 | ||
![]() | Re: Steenbarger Indicators Quote:
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. | ||
| |
|
![]() |
| Thread Tools | |
| Display Modes | Help Others By Rating This Thread |
| |
| ∧ Similar Threads | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| TTM Indicators for CQG? | bathrobe | Coding Forum | 3 | 01-03-2011 06:01 AM |
| Steenbarger, Shull, & Hirschhorn Discuss Peak Performance Electronic Trading | MrPaul | Trading Psychology | 7 | 12-21-2008 06:14 AM |
| DayTrader Trade Setups by Brett Steenbarger | minoo | Technical Analysis | 2 | 10-27-2008 03:09 PM |
| Review of TraderFeed with Brett Steenbarger | brownsfan019 | Trading Products and Services | 11 | 04-17-2008 09:24 AM |
| Enhancing Trader Performance by Brett N. Steenbarger | darthtrader | Books | 15 | 04-15-2008 08:04 AM |