I need a indicator that can scroll in real time but have a function so that can look back at any amount of days, bars ticks......etc back as I need.
Example if im looking at a current day or month, I want to be able to adjust some parameters to go back 15 days or 15 bars....etc When my chart is scrolling in real time I will be able to see what happened in the past at that same time, bar or day back but hopefully with some auto scrolling adjustments without having to use the global cross hair to look back.
If you want to talk more about my needs please feel free to email me back. Blkreign69@hotmail.com
Moderator Notice
Moved from TH to NinjaTrader Programming. -- Big Mike
Site Administrator Swing Trader Data Scientist & DevOps
Manta, Ecuador
Experience: Advanced
Platform: My own custom solution
Trading: Emini Futures
Posts: 49,753 since Jun 2009
Thanks: 32,299 given,
97,506
received
blk,
You'll get a better response if you share details. You need to mark up a chart or two with examples of what you are trying to accomplish and write out a few paragraphs of text explaining how the indicator will work. Otherwise people will just skip your post most likely.
Yes @ Studio88. ts not exactly the same but the split screen like you do in NT7 could work for what im trying to configure. Do you know of where I can get a code or indicator that would possibly do the same thing?
The change to NT7 is inevitable.
NT6.5 will go away and a custom indicator for an obsolete platform is a waste of time and money (if you actually paid someone to do it).
Rejoice in the Thunderstorms of Life . . .
Knowing it's not about Clouds or Wind. . .
But Learning to Dance in the Rain ! ! !
The following user says Thank You to DavidHP for this post:
Hi Blkreign, mate I dont have a solution for you but I would have to agree with what David has stated.
You can run NT7 in parallel with NT6.5 and you can even use your existing Key and it will import most of your instruments and other compatible items.
Give it a try is all I can suggest otherwise, you may need to even try another program but I am not too sure which one would help you there.
Perhaps somebody else could comment on whether Multicharts can do your needs.
I quite like multicharts but all this toggling back and forth it becomes frustrating because MC has other easy task processing over some of NTs ways, Yet NT has some other natural task processing than MC. Getting torn between the 2.
Anyway, good luck with that one mate.
Cheers.
The following user says Thank You to studio88 for this post:
i am looking to normalize an indicator for a range of 0-100 so it acts like an rsi for oversold and overbought - the indicator is attached in free form and it needs to be done for ninja trader
Site Administrator Swing Trader Data Scientist & DevOps
Manta, Ecuador
Experience: Advanced
Platform: My own custom solution
Trading: Emini Futures
Posts: 49,753 since Jun 2009
Thanks: 32,299 given,
97,506
received
Without looking at your code, many times you can do a quick and dirty trick by just using RSI, like so:
Typing that free hand from my notebook, no Ninja editor. But the point is, just pass your dataseries that you want to normalize into RSI directly. If 1,1 doesn't give you the desired results, increase the lookback smoothing period.
thanks - but i dont know the first thing about programing so would not know how to do it - any help would be appriciated - i know it was done in meta and is being used by some prop traders i know so its very helpful
You are looking for a bound oscillator, which never goes lower than 0 or greater than 100. These are usually bound because they the result of a ratio, which implies a value is divided by some other value, and the divisor is always >= the dividend. So, I'm not sure what sort of ratio you are looking for. What is being divided by what?
The oscillator
(Mov((C+L+H+O)/4>Ref(LLV(C,2) ,-1),2,S)) AND
(((H-L)+(O-C))/2<Ref(HHV((H-L),2) ,0))
which i would like to be translated into Ninja Trader is composed from two parts. I have attached screen shots from each one separetely.