NexusFi: Find Your Edge


Home Menu

 





Multicharts questions


Discussion in MultiCharts

Updated
      Top Posters
    1. looks_one iCEO with 5 posts (0 thanks)
    2. looks_two Big Mike with 4 posts (3 thanks)
    3. looks_3 Nicolas11 with 4 posts (3 thanks)
    4. looks_4 sptrader with 3 posts (4 thanks)
      Best Posters
    1. looks_one arnie with 2 thanks per post
    2. looks_two sptrader with 1.3 thanks per post
    3. looks_3 Big Mike with 0.8 thanks per post
    4. looks_4 Nicolas11 with 0.8 thanks per post
    1. trending_up 9,123 views
    2. thumb_up 13 thanks given
    3. group 8 followers
    1. forum 28 posts
    2. attach_file 5 attachments




 
Search this Thread

Multicharts questions

  #11 (permalink)
 
MultiCharts's Avatar
 MultiCharts 
Columbus, Ohio, US
 
Experience: Intermediate
Platform: MultiCharts
Broker: Multiple/Multiple
Trading: ES, EUR/USD
Posts: 168 since Oct 2010
Thanks Given: 74
Thanks Received: 172


Traderji View Post
Does MC support adding auto trade management to open positions?

For example I have an open position which has gone past my profit target and I want to let it run but add a trailing stop so that the profits are sort of locked in.

Yes, just drag and drop a trailing stop onto the open position.

MultiCharts - Raising the Trading Standard.
Please send me a private message if you have any further questions about MultiCharts
Follow me on Twitter Reply With Quote

Can you help answer these questions
from other members on NexusFi?
Quantum physics & Trading dynamics
The Elite Circle
REcommedations for programming help
Sierra Chart
ZombieSqueeze
Platforms and Indicators
MC PL editor upgrade
MultiCharts
NT7 Indicator Script Troubleshooting - Camarilla Pivots
NinjaTrader
 
  #12 (permalink)
iCEO
Taiwan
 
Posts: 7 since Nov 2011
Thanks Given: 1
Thanks Received: 0

It seems like GetRTAccountEquity() does not work in indicators and only work in signals. However, signals have no abilities to plot text on charts.

I want to show account information on charts. How do I accomplish it?

Reply With Quote
  #13 (permalink)
 
sptrader's Avatar
 sptrader 
Colorado
 
Experience: Advanced
Platform: MultiCharts
Broker: IB & Iqfeed
Trading: ES , CL
Posts: 535 since Apr 2010
Thanks Given: 1,097
Thanks Received: 701



iCEO View Post
It seems like GetRTAccountEquity() does not work in indicators and only work in signals. However, signals have no abilities to plot text on charts.

I want to show account information on charts. How do I accomplish it?

************************************************************************************
Multicharts has an extensive order and position tracker page..see attached..

Attached Thumbnails
Click image for larger version

Name:	MC_Order Tracker.jpg
Views:	128
Size:	76.0 KB
ID:	65807  
Reply With Quote
  #14 (permalink)
iCEO
Taiwan
 
Posts: 7 since Nov 2011
Thanks Given: 1
Thanks Received: 0

I want to do some calculation and analysis of account equity before plot on the chart, not limit to "order and position tracker page" information.

Reply With Quote
  #15 (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,469 since Jun 2009
Thanks Given: 33,249
Thanks Received: 101,669

i_OpenEquity, i_ClosedEquity

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
  #16 (permalink)
iCEO
Taiwan
 
Posts: 7 since Nov 2011
Thanks Given: 1
Thanks Received: 0

i_OpenEquity, i_ClosedEquity are close enough but I still need the initial capital information from account at brokers to calculate let's say how many shares to open positions and show on the chart.

I don't want to do this in my code:Input: InitialCapital (100000);

Reply With Quote
  #17 (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,469 since Jun 2009
Thanks Given: 33,249
Thanks Received: 101,669


iCEO View Post
i_OpenEquity, i_ClosedEquity are close enough but I still need the initial capital information from account at brokers to calculate let's say how many shares to open positions and show on the chart.

I don't want to do this in my code:Input: InitialCapital (100000);

Understood.

Seems like it should be there, but I am not seeing it. Might ask @MultiCharts.

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
  #18 (permalink)
 
Nicolas11's Avatar
 Nicolas11 
near Paris, France
 
Experience: Beginner
Platform: -
Trading: -
Posts: 1,071 since Aug 2011
Thanks Given: 2,232
Thanks Received: 1,769

Hi,


iCEO View Post
However, signals have no abilities to plot text on charts.

I think it is possible.

For instance, this is a signal which indicates "IB" near the price in case of inside bar:
 
Code
if H < H[1] AND L > L[1] {inside bar} then begin
    Value1 = Text_New_s(Date, Time_s, High + 6 * MinMove/PriceScale, "IB");
    Text_SetColor(Value1, DarkBlue);
end;


Nicolas

Visit my NexusFi Trade Journal Reply With Quote
Thanked by:
  #19 (permalink)
 
Nicolas11's Avatar
 Nicolas11 
near Paris, France
 
Experience: Beginner
Platform: -
Trading: -
Posts: 1,071 since Aug 2011
Thanks Given: 2,232
Thanks Received: 1,769


iCEO View Post
i_OpenEquity, i_ClosedEquity are close enough but I still need the initial capital information from account at brokers to calculate let's say how many shares to open positions and show on the chart.

I don't want to do this in my code:Input: InitialCapital (100000);

i_ClosedEquity should give access to the equity on broker's side.
If it does not, what is exactly the problem you see when you plot it or calculate it? What does MC shows?

Nicolas

Visit my NexusFi Trade Journal Reply With Quote
  #20 (permalink)
 NW27 
Newcastle, Australia
 
Experience: Intermediate
Platform: Multicharts 8 - Full Version
Broker: IB
Trading: SPI,FTSE100, 6E, 6A
Posts: 285 since Oct 2010
Thanks Given: 108
Thanks Received: 188



Nicolas11 View Post
Hi,



I think it is possible.

For instance, this is a signal which indicates "IB" near the price in case of inside bar:
 
Code
if H < H[1] AND L > L[1] {inside bar} then begin
    Value1 = Text_New_s(Date, Time_s, High + 6 * MinMove/PriceScale, "IB");
    Text_SetColor(Value1, DarkBlue);
end;


Nicolas

Or use a very simple function that I have created.
Print Text Horizontally, Vertically, any color, any size, special graphics all within an Indicator OR Signal.
All from one line.
ie PrintText_S(date,time_s,High+3,1,2,black,15,True,"SHORT",False); // "Short" is written Vertically above the price

In the below, as I test a bar, I build a string variable with information and print this vertically near the bar ie some bars may just be IB (inside bar) others may be IB and SB (Smash Bars) so I print both.




Neil.

Reply With Quote
Thanked by:




Last Updated on March 22, 2013


© 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