Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Measuring trade intensity with the free Pace of Tape indicator
Collapse
X
-
aligator,
I had a look on the User App Share and I did not see the indicator there. I am not sure how this was shared previously on the forums where it did not make it to the User App Share.
If you still have it on your system, would you mind uploading it again?
-
When I click on it I get Invalid File Specified.Originally posted by aligator View PostPaceOfTapeNT8.zip
Here is my conversion of the original PaceOfTape indicator for NT 8.0. 16.1.
It is Free! (a 10 min effort)
Cheers!
Leave a comment:
-
OK. I'll try it out and tweak the settings around . . . . Thank you.Originally posted by aligator View Post
I cant tell from your chart with no information, could you post a screenshot of drop down list of parameters. Perhaps you need to change the threshold value. This variable is very different for different contracts and time frames. Also, maybe both plots have the same color, if so change one of the colors.
Leave a comment:
-
Hello All,
Does anyone have the zip file for the Pace of Tape Indicator that was originally posted by Aligator in post #11 and #15. The link in #11 is invalid and there's no link in #15. Aligator if you are on this thread, please re-post. Thanks!!
- Likes 3
Leave a comment:
-
I cant tell from your chart with no information, could you post a screenshot of drop down list of parameters. Perhaps you need to change the threshold value. This variable is very different for different contracts and time frames. Also, maybe both plots have the same color, if so change one of the colors.Originally posted by Dan_C View Post
Last edited by aligator; 01-20-2021, 10:19 AM.
Leave a comment:
-
Originally posted by aligator View PostPaceOfTapeNT8.zip
Here is my conversion of the original PaceOfTape indicator for NT 8.0. 16.1.
It is Free! (a 10 min effort)
Cheers!
I managed to download this indicator for NT8 (with great thanks !!!) . . . However, I can't seem to figure out how to change the colour when the indicator shows a spike (above 100 as I had entered) ?? Please help.
Last edited by Dan_C; 01-20-2021, 03:19 AM.
Leave a comment:
-
For the NT8 BarTimes indicator see the following link, if that is what you are asking for:Originally posted by PN720 View PostHi, was the NT8 indicator ever attached to any of these posts?
https://ninjatraderecosystem.com/use.../nt8-bartimes/
Leave a comment:
-
OK, now things are getting confusing. You asked for "I'm trying to find something that shows current speed of price movement (velocity), like a radar gun and gives rate of speed."Originally posted by jack98765 View Post
Thanks for the suggestion. I tried that one but it's for plotting time duration of bars. I'm trying to find something that shows current speed of price movement (velocity), like a radar gun and gives rate of speed. There are some paid indicators that many do it but it's source code is probably in a dll file that can't be modified.
Radar gun measures velocity(m/s), but rate of speed is acceleration. You get a ticket for speeding not for accelerating from 0 to 5 miles per hours. Regardless, this indicator essentially gives you what you need. Here is why:
For example, on a 100 tick charts the indicator measures the "time to complete" a 100 tick bar in seconds, i.e., 5 seconds. So your average velocity of that bar is 100/5 = 20 ticks per second. If you want to plot the bar "velocity" then plot the ratio of bar size in ticks to the "time to complete." Now, because every bar on the chart is 100 ticks, a plot of the "velocity" will visually looks exactly the same (actually inverted) as the plot for "time to complete" the bar, except on a different scale by a constant factor.
So, this indicator is a good representation of the bar velocity.
Perhaps if you provide actual examples, charts, or references to "some paid indicators that many do it" or what you have seen elsewhere it would be easier for someone to code a different indicator.
Finally, if this is important to you and you "don't believe it would be hard to code" then editing an existing NT8 indicator to do what you want is not a difficult task, just needs a little effort to learn simple cut and paste without being a programmer.
Cheers!Last edited by aligator; 09-15-2020, 03:43 PM.
- Likes 2
Leave a comment:
-
Thanks for the suggestion. I tried that one but it's for plotting time duration of bars. I'm trying to find something that shows current speed of price movement (velocity), like a radar gun and gives rate of speed. There are some paid indicators that many do it but it's source code is probably in a dll file that can't be modified.Originally posted by aligator View Post
Yes, there are many custom indicators that if you do a search you will find them under the User Apps Downloads. Here is the BarTimes indicator that times the formation of a bar and can be downloaded here:
https://ninjatraderecosystem.com/use.../nt8-bartimes/
Leave a comment:
-
Yes, there are many custom indicators that if you do a search you will find them under the User Apps Downloads. Here is the BarTimes indicator that times the formation of a bar and can be downloaded here:Originally posted by jack98765 View Post
Okay I see it now, thank you. I either overlooked it the first time or it wasn't showing up. It's still not quite what i'm looking for though. Do you know of an indicator that measures current tick movement in either direction per seconds/minutes (I mean that as price movement speed)? I can't find anything that does this and don't believe it would be hard to code, I'm just not familiar enough with C#.
BarTimes is a simple indicator to provide the time it takes to build a bar This is useful for non time-based bars such as Range, Renko, Volume, Tick, etc, to help show how long any bar took to develop. The indicator has options to display the time in milliseconds, seconds, minutes, or hours, the default […]
- Likes 2
Leave a comment:
-
Okay I see it now, thank you. I either overlooked it the first time or it wasn't showing up. It's still not quite what i'm looking for though. Do you know of an indicator that measures current tick movement in either direction per seconds/minutes (I mean that as price movement speed)? I can't find anything that does this and don't believe it would be hard to code, I'm just not familiar enough with C#.Last edited by jack98765; 09-14-2020, 10:20 AM.
Leave a comment:
-
Thanks. Agree, it certainly can be improved for resource efficiency. I simply converted the indicator to NT8 and maintained the original logic as coded by cunparis. Any less "scary" alternative script suggestion?Originally posted by balltrader View Poston every tick, when OBU is called, you loop thru all historical bars until the current bar, and measure seconds between bars, compared to some arbitrary value you set (30)?Code:Calculate = Calculate.OnEachTick; protected override void OnBarUpdate() { int pace = 0; int i = 0; while(i < CurrentBar) { TimeSpan ts = Time[0] - Time[i]; if (ts.TotalSeconds < period) pace += Bars.BarsPeriod.Value; else break; ++i; }
it must be halloween, bcuz this is very scary, lol
Cheers!
Leave a comment:
-
The indicator has been slightly modified for the sound file. However, the original logic remains the same as coded by cunparis. The ZIP files in either Post #11 and #15 are correct. Remove the older version and download/install this new version.Originally posted by jack98765 View Post
Do you still have this zip file? It's missing from this forum. Thank youLast edited by aligator; 09-13-2020, 12:48 PM.
- Likes 1
Leave a comment:
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by CaptainJack, 05-29-2026, 05:09 AM
|
0 responses
388 views
0 likes
|
Last Post
by CaptainJack
05-29-2026, 05:09 AM
|
||
|
Started by CaptainJack, 05-29-2026, 12:02 AM
|
0 responses
260 views
0 likes
|
Last Post
by CaptainJack
05-29-2026, 12:02 AM
|
||
|
Started by charlesugo_1, 05-26-2026, 05:03 PM
|
0 responses
218 views
1 like
|
Last Post
by charlesugo_1
05-26-2026, 05:03 PM
|
||
|
Started by DannyP96, 05-18-2026, 02:38 PM
|
1 response
302 views
0 likes
|
Last Post
|
||
|
Started by CarlTrading, 05-11-2026, 05:56 AM
|
0 responses
268 views
0 likes
|
Last Post
by CarlTrading
05-11-2026, 05:56 AM
|

Leave a comment: