NexusFi: Find Your Edge


Home Menu

 





Has anyone here made a bigger set of arrows for NT???


Discussion in NinjaTrader

Updated
      Top Posters
    1. looks_one zeller4 with 4 posts (0 thanks)
    2. looks_two RJay with 3 posts (0 thanks)
    3. looks_3 eDanny with 3 posts (0 thanks)
    4. looks_4 Big Mike with 1 posts (3 thanks)
    1. trending_up 4,878 views
    2. thumb_up 3 thanks given
    3. group 2 followers
    1. forum 11 posts
    2. attach_file 4 attachments




 
Search this Thread

Has anyone here made a bigger set of arrows for NT???

  #1 (permalink)
 
RJay's Avatar
 RJay 
Hartford, CT. USA
 
Experience: Intermediate
Platform: NinjaTrader
Broker: AMP/CQG, Kinetick
Trading: RTY
Posts: 683 since Jun 2009
Thanks Given: 758
Thanks Received: 787

Has anyone here made a bigger set of arrows for NT???

NT's arrows are a little small on some of my charts.

Started this thread Reply With Quote

Can you help answer these questions
from other members on NexusFi?
REcommedations for programming help
Sierra Chart
How to apply profiles
Traders Hideout
Trade idea based off three indicators.
Traders Hideout
Exit Strategy
NinjaTrader
MC PL editor upgrade
MultiCharts
 
Best Threads (Most Thanked)
in the last 7 days on NexusFi
Spoo-nalysis ES e-mini futures S&P 500
43 thanks
Just another trading journal: PA, Wyckoff & Trends
30 thanks
Tao te Trade: way of the WLD
24 thanks
Bigger Wins or Fewer Losses?
23 thanks
GFIs1 1 DAX trade per day journal
21 thanks
  #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,446 since Jun 2009
Thanks Given: 33,217
Thanks Received: 101,608


You might try using DrawText instead in combination with Wingdings. Just open up Word or whatever on your system and look at Wingdings 1,2,3, type on your keyboard and find a symbol you like (several arrow types), then control the size with DrawText Font Size.

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
Thanked by:
  #4 (permalink)
 zeller4 
Orlando Florida
 
Experience: Intermediate
Platform: NT8
Trading: CL, NQ, ES, RTY
Posts: 477 since Jun 2009
Thanks Given: 1,416
Thanks Received: 404


RJay View Post
Has anyone here made a bigger set of arrows for NT???

NT's arrows are a little small on some of my charts.

Hello RJay,

I don't use NT7 yet but here's some code snippets from 6.5

 
Code
#region Variables
private Font textFontSymbol = new Font("Webdings", 20);//"a" is checkmark
private Font textFontSymbolWing = new Font("Wingdings", 16);//"l" is a circle
private Font textFontSymbolWing_3 = new Font("Wingdings 3", 16);//

#endregion
 
Code
if (Close[0] < Close[5])//testing only
{
 
DrawText("UpArrow"+CurrentBar,false,"ñ",0,High[0] + 4*TickSize,Color.Blue,textFontSymbolWing,StringAlignment.Center, Color.Empty,Color.Empty,10);
DrawText("UpRightArrow"+CurrentBar,false,"ö",0,High[0] + 8*TickSize,Color.Blue,textFontSymbolWing,StringAlignment.Center, Color.Empty,Color.Empty,10);
DrawText("RightArrow"+CurrentBar,false,"ð",0,High[0] + 12*TickSize,Color.Blue,textFontSymbolWing,StringAlignment.Center, Color.Empty,Color.Empty,10);
DrawText("DownRightArrow"+CurrentBar,false,"ø",0,High[0] + 16*TickSize,Color.Blue,textFontSymbolWing,StringAlignment.Center, Color.Empty,Color.Empty,10);
DrawText("DownArrow"+CurrentBar,false,"ò",0,High[0] + 20*TickSize,Color.Blue,textFontSymbolWing,StringAlignment.Center, Color.Empty,Color.Empty,10);
 
DrawText("UpArrow3"+CurrentBar,false,"ã",0,Low[0] - 4*TickSize,Color.Red,textFontSymbolWing_3,StringAlignment.Center, Color.Empty,Color.Empty,10);
DrawText("UpRightArrow3"+CurrentBar,false,"æ",0,Low[0] - 8*TickSize,Color.Red,textFontSymbolWing_3,StringAlignment.Center, Color.Empty,Color.Empty,10);
DrawText("RightArrow3"+CurrentBar,false,"â",0,Low[0] - 12*TickSize,Color.Red,textFontSymbolWing_3,StringAlignment.Center, Color.Empty,Color.Empty,10);
DrawText("DownRightArrow3"+CurrentBar,false,"è",0,Low[0] - 16*TickSize,Color.Red,textFontSymbolWing_3,StringAlignment.Center, Color.Empty,Color.Empty,10);
DrawText("DownArrow3"+CurrentBar,false,"ä",0,Low[0] - 20*TickSize,Color.Red,textFontSymbolWing_3,StringAlignment.Center, Color.Empty,Color.Empty,10);
 
}
HTH,
Kirk

Attached Files
Elite Membership required to download: BasicDrawText_02.cs
Reply With Quote
  #5 (permalink)
 
eDanny's Avatar
 eDanny 
East Rochester, NY
 
Experience: Intermediate
Platform: NT
Posts: 329 since Jul 2009
Thanks Given: 18
Thanks Received: 425

You also could try Alt characters like this ▼ or ▲ which are generated by holding the Alt key and typing 31 or 30 on the keypad and then releasing the Alt key. Changing your Font size will change the symbol size. Dan

Reply With Quote
  #6 (permalink)
 zeller4 
Orlando Florida
 
Experience: Intermediate
Platform: NT8
Trading: CL, NQ, ES, RTY
Posts: 477 since Jun 2009
Thanks Given: 1,416
Thanks Received: 404

Thanks, Dan,

I forgot to mention that I use the Character Map in windows.

Then, you can see what symbol you're looking for, select it to the window, copy that, and paste in the correct location within the DrawText code.

HTH,
Kirk

Reply With Quote
  #7 (permalink)
 
eDanny's Avatar
 eDanny 
East Rochester, NY
 
Experience: Intermediate
Platform: NT
Posts: 329 since Jul 2009
Thanks Given: 18
Thanks Received: 425

Are you talking about the on screen keyboard? I wish I had it but it seems to be missing from my windows install on this comp.

Reply With Quote
  #8 (permalink)
 zeller4 
Orlando Florida
 
Experience: Intermediate
Platform: NT8
Trading: CL, NQ, ES, RTY
Posts: 477 since Jun 2009
Thanks Given: 1,416
Thanks Received: 404

TechSmith | Screencast.com, online video sharing, 2010-05-12_1134

yes,
I found mine on Start button>All Programs>Accessories>System Tools

Hope you find it.
kz

Reply With Quote
  #9 (permalink)
 
eDanny's Avatar
 eDanny 
East Rochester, NY
 
Experience: Intermediate
Platform: NT
Posts: 329 since Jul 2009
Thanks Given: 18
Thanks Received: 425

I know where it is supposed to be but it is not there. Grrr.

Reply With Quote
  #10 (permalink)
 zeller4 
Orlando Florida
 
Experience: Intermediate
Platform: NT8
Trading: CL, NQ, ES, RTY
Posts: 477 since Jun 2009
Thanks Given: 1,416
Thanks Received: 404


i was pretty sure you knew! that answer was for others who may not know...

I hate reinstalling windows...

kz

Reply With Quote




Last Updated on May 12, 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