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 CarlTrading, 03-31-2026, 09:41 PM
|
1 response
156 views
1 like
|
Last Post
|
||
|
Started by CarlTrading, 04-01-2026, 02:41 AM
|
0 responses
90 views
1 like
|
Last Post
by CarlTrading
04-01-2026, 02:41 AM
|
||
|
Started by CaptainJack, 03-31-2026, 11:44 PM
|
0 responses
140 views
2 likes
|
Last Post
by CaptainJack
03-31-2026, 11:44 PM
|
||
|
Started by CarlTrading, 03-30-2026, 11:51 AM
|
0 responses
130 views
1 like
|
Last Post
by CarlTrading
03-30-2026, 11:51 AM
|
||
|
Started by CarlTrading, 03-30-2026, 11:48 AM
|
0 responses
107 views
0 likes
|
Last Post
by CarlTrading
03-30-2026, 11:48 AM
|

Comment