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 Mindset, 04-21-2026, 06:46 AM
|
0 responses
44 views
0 likes
|
Last Post
by Mindset
04-21-2026, 06:46 AM
|
||
|
Started by M4ndoo, 04-20-2026, 05:21 PM
|
0 responses
58 views
0 likes
|
Last Post
by M4ndoo
04-20-2026, 05:21 PM
|
||
|
Started by M4ndoo, 04-19-2026, 05:54 PM
|
0 responses
35 views
0 likes
|
Last Post
by M4ndoo
04-19-2026, 05:54 PM
|
||
|
Started by cmoran13, 04-16-2026, 01:02 PM
|
0 responses
95 views
0 likes
|
Last Post
by cmoran13
04-16-2026, 01:02 PM
|
||
|
Started by PaulMohn, 04-10-2026, 11:11 AM
|
0 responses
59 views
0 likes
|
Last Post
by PaulMohn
04-10-2026, 11:11 AM
|

Comment