NexusFi: Find Your Edge


Home Menu

 





Multicharts NT web publishing


Discussion in EasyLanguage Programming

Updated
      Top Posters
    1. looks_one bomberone1 with 5 posts (0 thanks)
    2. looks_two Big Mike with 4 posts (0 thanks)
    3. looks_3 bukkan with 2 posts (0 thanks)
    4. looks_4 Quick Summary with 1 posts (0 thanks)
    1. trending_up 5,751 views
    2. thumb_up 0 thanks given
    3. group 2 followers
    1. forum 11 posts
    2. attach_file 0 attachments




 
Search this Thread

Multicharts NT web publishing

  #1 (permalink)
 bomberone1 
London
 
Experience: Beginner
Platform: MultiCharts
Posts: 277 since Nov 2010
Thanks Given: 14
Thanks Received: 29

Hi folks,

is it possible publishing automatically, snapshot of chart, signal by MC or NT on own web pages.
I mean something like this
MT4i - Statement for candle666
MT4 Stats - Share your MetaTrader 4 Statements with the world
Metatrader
instrument --> option --> editor

Or value in excel web based like
Num Sum - web spreadsheet

Started this thread Reply With Quote

Can you help answer these questions
from other members on NexusFi?
REcommedations for programming help
Sierra Chart
About a successful futures trader who didnt know anythin …
Psychology and Money Management
Pivot Indicator like the old SwingTemp by Big Mike
NinjaTrader
How to apply profiles
Traders Hideout
MC PL editor upgrade
MultiCharts
 
  #3 (permalink)
 bukkan 
Calcutta, India
 
Experience: Intermediate
Platform: ArthaChitra
Posts: 278 since Jun 2009
Thanks Given: 161
Thanks Received: 271


I dont know what exactly you are trying to do but heres a little NT code snippet which lets u to upload pics txt files etc (txt file in our example) directly to the server.

 
Code
 FtpWebRequest request = (FtpWebRequest)FtpWebRequest.Create("ftp://ftp.yoursite.com/wwwroot/TestFile.txt");
            request.Method = WebRequestMethods.Ftp.UploadFile;
            request.Credentials = new NetworkCredential("usename", "password");

            Stream ftpStream = request.GetRequestStream();
            FileStream fs = File.OpenRead(path + "\\TestFile.txt");
            int length = 1024;
            byte[] buffer = new byte[length];
            int bytRead = 0;

            do
            {
                bytRead = fs.Read(buffer, 0, length);
                ftpStream.Write(buffer, 0, bytRead);
            }
            while (bytRead != 0);

            fs.Close();
            ftpStream.Close();

Reply With Quote
  #4 (permalink)
 
Big Mike's Avatar
 Big Mike 
Manta, Ecuador
Site Administrator
Developer
Swing Trader
 
Experience: Advanced
Platform: Custom solution
Broker: IBKR
Trading: Stocks & Futures
Frequency: Every few days
Duration: Weeks
Posts: 50,463 since Jun 2009
Thanks Given: 33,242
Thanks Received: 101,662

My Collective2 example may also be useful to you:



Mike



Join the free Markets Chat beta: one platform, all the trade rooms!

We're here to help: just ask the community or contact our Help Desk

Quick Links: Change your Username or Register as a Vendor
Searching for trading reviews? Review this list
Lifetime Elite Membership: Sign-up for only $149 USD
Exclusive money saving offers from our Site Sponsors: Browse Offers
Report problems with the site: Using the NexusFi changelog thread
Follow me on Twitter Visit my NexusFi Trade Journal Reply With Quote
  #5 (permalink)
 bomberone1 
London
 
Experience: Beginner
Platform: MultiCharts
Posts: 277 since Nov 2010
Thanks Given: 14
Thanks Received: 29

For example I want write in a webpages a real time signal generated by a strategy is it possible by Multicharts?

Started this thread Reply With Quote
  #6 (permalink)
 
Big Mike's Avatar
 Big Mike 
Manta, Ecuador
Site Administrator
Developer
Swing Trader
 
Experience: Advanced
Platform: Custom solution
Broker: IBKR
Trading: Stocks & Futures
Frequency: Every few days
Duration: Weeks
Posts: 50,463 since Jun 2009
Thanks Given: 33,242
Thanks Received: 101,662


bomberone1 View Post
For example I want write in a webpages a real time signal generated by a strategy is it possible by Multicharts?

Yes, EL supports writing to a file. The example from my last post shows you how.

Mike



Join the free Markets Chat beta: one platform, all the trade rooms!

We're here to help: just ask the community or contact our Help Desk

Quick Links: Change your Username or Register as a Vendor
Searching for trading reviews? Review this list
Lifetime Elite Membership: Sign-up for only $149 USD
Exclusive money saving offers from our Site Sponsors: Browse Offers
Report problems with the site: Using the NexusFi changelog thread
Follow me on Twitter Visit my NexusFi Trade Journal Reply With Quote
  #7 (permalink)
 bomberone1 
London
 
Experience: Beginner
Platform: MultiCharts
Posts: 277 since Nov 2010
Thanks Given: 14
Thanks Received: 29

How can i write directly in a webpages and send screenshots?

Started this thread Reply With Quote
  #8 (permalink)
 
Big Mike's Avatar
 Big Mike 
Manta, Ecuador
Site Administrator
Developer
Swing Trader
 
Experience: Advanced
Platform: Custom solution
Broker: IBKR
Trading: Stocks & Futures
Frequency: Every few days
Duration: Weeks
Posts: 50,463 since Jun 2009
Thanks Given: 33,242
Thanks Received: 101,662


bomberone1 View Post
How can i write directly in a webpages and send screenshots?

If you are not a programmer, I suggest hiring it done. If you are a programmer I have told you a couple times now where you can find examples on writing to a file, which you could manipulate to send to a webserver using XML, as I also provided a fully functioning example of in the posts I told you to look at.

Mike



Join the free Markets Chat beta: one platform, all the trade rooms!

We're here to help: just ask the community or contact our Help Desk

Quick Links: Change your Username or Register as a Vendor
Searching for trading reviews? Review this list
Lifetime Elite Membership: Sign-up for only $149 USD
Exclusive money saving offers from our Site Sponsors: Browse Offers
Report problems with the site: Using the NexusFi changelog thread
Follow me on Twitter Visit my NexusFi Trade Journal Reply With Quote
  #9 (permalink)
 bomberone1 
London
 
Experience: Beginner
Platform: MultiCharts
Posts: 277 since Nov 2010
Thanks Given: 14
Thanks Received: 29


bukkan View Post
I dont know what exactly you are trying to do but heres a little NT code snippet which lets u to upload pics txt files etc (txt file in our example) directly to the server.

I am a Multicharts user, is there a way to do this by MC?
I see what say Mike but I don't know how to go on.
My best

Started this thread Reply With Quote
  #10 (permalink)
 
Big Mike's Avatar
 Big Mike 
Manta, Ecuador
Site Administrator
Developer
Swing Trader
 
Experience: Advanced
Platform: Custom solution
Broker: IBKR
Trading: Stocks & Futures
Frequency: Every few days
Duration: Weeks
Posts: 50,463 since Jun 2009
Thanks Given: 33,242
Thanks Received: 101,662



bomberone1 View Post
I am a Multicharts user, is there a way to do this by MC?
I see what say Mike but I don't know how to go on.
My best

It is not possible unless you are an expert programmer. If you are an expert programmer, then you just need to build a C++ or C# dll and call it as a function from EasyLanguage.

Mike



Join the free Markets Chat beta: one platform, all the trade rooms!

We're here to help: just ask the community or contact our Help Desk

Quick Links: Change your Username or Register as a Vendor
Searching for trading reviews? Review this list
Lifetime Elite Membership: Sign-up for only $149 USD
Exclusive money saving offers from our Site Sponsors: Browse Offers
Report problems with the site: Using the NexusFi changelog thread
Follow me on Twitter Visit my NexusFi Trade Journal Reply With Quote




Last Updated on July 1, 2011


© 2024 NexusFi™, s.a., All Rights Reserved.
Av Ricardo J. Alfaro, Century Tower, Panama City, Panama, Ph: +507 833-9432 (Panama and Intl), +1 888-312-3001 (USA and Canada)
All information is for educational use only and is not investment advice. There is a substantial risk of loss in trading commodity futures, stocks, options and foreign exchange products. Past performance is not indicative of future results.
About Us - Contact Us - Site Rules, Acceptable Use, and Terms and Conditions - Privacy Policy - Downloads - Top
no new posts