NexusFi: Find Your Edge


Home Menu

 





custom indicator chart label


Discussion in NinjaTrader

Updated
      Top Posters
    1. looks_one SARdynamite with 4 posts (0 thanks)
    2. looks_two TAJTrades with 1 posts (1 thanks)
    3. looks_3 aslan with 1 posts (1 thanks)
    4. looks_4 Big Mike with 1 posts (0 thanks)
    1. trending_up 4,935 views
    2. thumb_up 2 thanks given
    3. group 4 followers
    1. forum 7 posts
    2. attach_file 0 attachments




 
Search this Thread

custom indicator chart label

  #1 (permalink)
 SARdynamite 
Belgium
 
Experience: Advanced
Platform: SaxoTrader
Broker: SaxoBank
Trading: ESTX
Posts: 289 since Dec 2009
Thanks Given: 243
Thanks Received: 110

Hi,

Too much label info on the chart bothers me.

I know you can avoid it by using

 
Code
public override string ToString()
{
           return "Indicator";
}
which forces the name on the chart. However you loose variables settings too.

Is there a way to only errase instrument and timeframe info, but keep variables displayed ?

Thanks

Started this thread Reply With Quote

Can you help answer these questions
from other members on NexusFi?
NexusFi Journal Challenge - May 2024
Feedback and Announcements
MC PL editor upgrade
MultiCharts
Trade idea based off three indicators.
Traders Hideout
ZombieSqueeze
Platforms and Indicators
NT7 Indicator Script Troubleshooting - Camarilla Pivots
NinjaTrader
 
  #3 (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,460 since Jun 2009
Thanks Given: 33,234
Thanks Received: 101,655


I think you can just change the label to a space and it will keep the indicator name but lose the settings.

this.Name = ' ';

Mike

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
  #4 (permalink)
 SARdynamite 
Belgium
 
Experience: Advanced
Platform: SaxoTrader
Broker: SaxoBank
Trading: ESTX
Posts: 289 since Dec 2009
Thanks Given: 243
Thanks Received: 110

Hi Mike,

If I do that I really get a whole blank for everything.

Started this thread Reply With Quote
  #5 (permalink)
TAJTrades
Here, GA
 
Posts: 158 since Jun 2009
Thanks Given: 1
Thanks Received: 86

An option is to use StringBuilder to create the string to display whatever you want. Do not forget to add " using System.Text; " to the declarations.



 
Code
                            
        public override string ToString()
        {
            
StringBuilder sb = new StringBuilder();
            
sb.AppendFormat("Modified Bands({0},{1})"period.ToString(), deviation.ToString());
            return 
sb.ToString();
        } 

Reply With Quote
Thanked by:
  #6 (permalink)
 SARdynamite 
Belgium
 
Experience: Advanced
Platform: SaxoTrader
Broker: SaxoBank
Trading: ESTX
Posts: 289 since Dec 2009
Thanks Given: 243
Thanks Received: 110

Thank you greatly

Started this thread Reply With Quote
  #7 (permalink)
 
aslan's Avatar
 aslan 
Madison, WI
 
Experience: Advanced
Platform: ALT
Trading: ES
Posts: 625 since Jan 2010
Thanks Given: 356
Thanks Received: 1,127


TAJTrades View Post
An option is to use StringBuilder to create the string to display whatever you want.

Actually, it is much simpler than using string builder, just do the following:

 
Code
                            
        public override string ToString()

        {
            return 
"Modified Bands(" period.ToString() + "," deviation.ToString() + ")";
        } 
Using StringBuilder is not efficient for a small number of strings (you can google it, but here is one link StringBuilder).

Reply With Quote
Thanked by:
  #8 (permalink)
 SARdynamite 
Belgium
 
Experience: Advanced
Platform: SaxoTrader
Broker: SaxoBank
Trading: ESTX
Posts: 289 since Dec 2009
Thanks Given: 243
Thanks Received: 110

Thanks for the light version too

Started this thread Reply With Quote




Last Updated on July 18, 2010


© 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