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 SalmaTrader, 07-07-2026, 10:26 PM
|
0 responses
31 views
0 likes
|
Last Post
by SalmaTrader
07-07-2026, 10:26 PM
|
||
|
Started by CarlTrading, 07-05-2026, 01:16 PM
|
0 responses
18 views
0 likes
|
Last Post
by CarlTrading
07-05-2026, 01:16 PM
|
||
|
Started by CaptainJack, 06-17-2026, 10:32 AM
|
0 responses
9 views
0 likes
|
Last Post
by CaptainJack
06-17-2026, 10:32 AM
|
||
|
Started by kinfxhk, 06-17-2026, 04:15 AM
|
0 responses
16 views
0 likes
|
Last Post
by kinfxhk
06-17-2026, 04:15 AM
|
||
|
Started by kinfxhk, 06-17-2026, 04:06 AM
|
0 responses
20 views
0 likes
|
Last Post
by kinfxhk
06-17-2026, 04:06 AM
|

Comment