How can I download/upload files from web using NT7?
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
downloading/uploading files from web
Collapse
X
-
daglas,
I'm not aware of a supported method you could use, but it should be possible.
I'm including our reference sample on Using StreamWriter to write to a text file:
This should give you information on how to read/write to text files from your hard drive, however I would not be able to give you a full solution for working with files on the web.MatthewNinjaTrader Product Management
Comment
-
I found such code, and it compiles good. I just need to check how good is work
WebClient myWebClient = new WebClient();
Uri ftp_path = new Uri("ftp://FTPLOGIN:[email protected]/file.txt"); // file.txt
myWebClient.UploadFile(ftp_path.ToString(), @"/temp/anyfile.txt"); // anyfile.txt -
Comment
-
What I'm looking to do is add a step of saving a screenshot to a temp location, then running the above code to send it to a FTP site.Originally posted by daglas View PostI found such code, and it compiles good. I just need to check how good is work
WebClient myWebClient = new WebClient();
Uri ftp_path = new Uri("ftp://FTPLOGIN:[email protected]/file.txt"); // file.txt
myWebClient.UploadFile(ftp_path.ToString(), @"/temp/anyfile.txt"); // anyfile.txt -
Is there a way to execute a "save screenshot" from ninjascript?
Ultimately, I would create a button to "send screenshot to FTP" which would do all of the above.
Thanks!
Daniel
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by kinfxhk, 07-14-2026, 09:39 AM
|
0 responses
125 views
0 likes
|
Last Post
by kinfxhk
07-14-2026, 09:39 AM
|
||
|
Started by kinfxhk, 07-13-2026, 10:18 AM
|
0 responses
105 views
0 likes
|
Last Post
by kinfxhk
07-13-2026, 10:18 AM
|
||
|
Started by kinfxhk, 07-13-2026, 09:50 AM
|
0 responses
85 views
0 likes
|
Last Post
by kinfxhk
07-13-2026, 09:50 AM
|
||
|
Started by kinfxhk, 07-13-2026, 07:21 AM
|
0 responses
105 views
0 likes
|
Last Post
by kinfxhk
07-13-2026, 07:21 AM
|
||
|
Started by kinfxhk, 07-11-2026, 02:11 AM
|
0 responses
85 views
0 likes
|
Last Post
by kinfxhk
07-11-2026, 02:11 AM
|

Comment