These indicators were made in 6.5 and may or may not work in 7. They were provided as 3rd party indicators created during my free time. Unfortunately I do not have time at the moment to convert them for 7. Feel free to make any changes you feel necessary to achieve the desired effect.
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
TRO Indicators
Collapse
X
-
Lolu,
These indicators were made in 6.5 and may or may not work in 7. They were provided as 3rd party indicators created during my free time. Unfortunately I do not have time at the moment to convert them for 7. Feel free to make any changes you feel necessary to achieve the desired effect.Josh P.NinjaTrader Customer Service
-
SweetSpotsGold
Can anyone convert this over to ninjascript? I'm no programmer otherwise I would do it. Or point me down the right path to start learning code.Attached Files
Comment
-
NY Josh:Originally posted by NinjaTrader_Josh View Postkumaresh11,
Sorry we would not know what modified version you are referring to. Unfortunately these indicators have been provided as a 3rd party indicator for use but we no longer maintain them due to time constraints.
where is the latest TRO dynamic 3 (not the fib one)? I know there is not a version 7 for nt, but I was looking for the one which had the option of adding a stop loss
also, how d you use the buy zone indicator?Last edited by Gregory Arkadin; 07-11-2010, 06:45 AM.
Comment
-
Ben - Do we have HighFive converted for NinjaTrader? I saw a request in this thread and not sure if it was completed
Comment
-
I have modified the BuyZone code as follows:
In place of the original code here:
longtop = CurrentDayOHL().CurrentOpen[0]+spread+buyzone;
longbot = CurrentDayOHL().CurrentOpen[0]+spread;
shorttop = CurrentDayOHL().CurrentOpen[0]-spread;
shortbot = CurrentDayOHL().CurrentOpen[0]-spread-buyzone;
I have changed the code as follows:
// Current bar opening price
double barOpenPrice = Open[0];
longtop = Open[0]+spread+buyzone;
longbot = Open[0]+spread;
shorttop = Open[0]-spread;
shortbot = Open[0]-spread-buyzone;
This works fine if I place it on a 60 min chart to get the hourly BuyZone. Is there another way it could be coded to give the hourly BuyZone on a 3 min chart. Thanks in advance. winja
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Geovanny Suaza, 02-11-2026, 06:32 PM
|
0 responses
659 views
0 likes
|
Last Post
|
||
|
Started by Geovanny Suaza, 02-11-2026, 05:51 PM
|
0 responses
374 views
1 like
|
Last Post
|
||
|
Started by Mindset, 02-09-2026, 11:44 AM
|
0 responses
109 views
0 likes
|
Last Post
by Mindset
02-09-2026, 11:44 AM
|
||
|
Started by Geovanny Suaza, 02-02-2026, 12:30 PM
|
0 responses
574 views
1 like
|
Last Post
|
||
|
Started by RFrosty, 01-28-2026, 06:49 PM
|
0 responses
579 views
1 like
|
Last Post
by RFrosty
01-28-2026, 06:49 PM
|


Comment