Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
File browser or File Dialog box
Collapse
X
-
File browser or File Dialog box
Can someone give me some help on NT8 indicator that opens or browse a file? Something like it opens a dialog box for me to select file to open. Thanks.Tags: None
-
Hello luxurious_04,
Thanks for your post.
Here is an example of a file picker property:
[ NinjaScriptProperty ]
[ Display (Name = "MyFile", Order =1 , GroupName= "Parameters" )]
[ PropertyEditor ("NinjaTrader.Gui.Tools.FilePathPicker" , Filter= "Any Files (*.*)|*.*" )]
public string MyFile
{ get ; set ; }
For a working example of a sound file picker, please see the code for: https://ninjatrader.com/support/foru...d=7&linkid=906
- Likes 1
-
Thanks Paul, how about the telling the chart that the last bar painted is at bar 36 or whatever number? In NT7, we can do it by ChartControl.LastBarPainted = 36 and last bar painted will go at bar 36 as well as the horizontal scroll will move directly. How can we do that in NT8?
Comment
-
Hello luxurious_04,
Thanks for your reply.
In NT7 the chartcontrol information was not documented, in NT8 you can now find this in the helpguide.
Here is the chart control section: https://ninjatrader.com/support/help...artcontrol.htm
Here is the NT8 equivalent:
or
Setting last bar painted will move the chart to that bar.
Comment
-
It will move visually? I mean if I set it like this ChartControl.LastSlotPainted = 36 the scroll will automatically scroll to that bar?
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Geovanny Suaza, 02-11-2026, 06:32 PM
|
0 responses
649 views
0 likes
|
Last Post
|
||
|
Started by Geovanny Suaza, 02-11-2026, 05:51 PM
|
0 responses
370 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
573 views
1 like
|
Last Post
|
||
|
Started by RFrosty, 01-28-2026, 06:49 PM
|
0 responses
576 views
1 like
|
Last Post
by RFrosty
01-28-2026, 06:49 PM
|

Comment