Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
How to specifi Fibonacci levels
Collapse
X
-
Hello Luigio,
Thanks for your post.
This would not be possible in NT7 as the tool was not designed to expose levels in Price. You could access the data values you enter in the fib tools properties which are in percentages by doing something similar to the following snippet :
But you would not be able to set those values.Code:IFibonacciRetracements fib = DrawFibonacciRetracements("Test", true, 10, Close[10], 0, Close[0]); FibonacciRetracements ret = (FibonacciRetracements)fib; foreach(NinjaTrader.Gui.Chart.FibonacciLevel level in ret.Levels) { Print(level.Value); }
I suggest looking at the code for the NT8 version as it likely shares some of the same calculations for the Level price. One of the improvements in NT8 was that this tools source code was released, also the price levels are easily accessible.Last edited by NinjaTrader_JoshG; 04-02-2019, 08:34 AM.Josh G.NinjaTrader Customer Service
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by CaptainJack, 05-29-2026, 05:09 AM
|
0 responses
241 views
0 likes
|
Last Post
by CaptainJack
05-29-2026, 05:09 AM
|
||
|
Started by CaptainJack, 05-29-2026, 12:02 AM
|
0 responses
157 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
165 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
248 views
0 likes
|
Last Post
|
||
|
Started by CarlTrading, 05-11-2026, 05:56 AM
|
0 responses
199 views
0 likes
|
Last Post
by CarlTrading
05-11-2026, 05:56 AM
|

Comment