Dark Theme
Light Theme
Welcome to NexusFi: the best trading community on the planet, with over 200,000 members Sign Up Now for Free
Genuine reviews from real traders, not fake reviews from stealth vendors
Quality education from leading professional traders
We are a friendly, helpful, and positive community
We do not tolerate rude behavior, trolling, or vendors advertising in posts
We are here to help, just let us know what you need
You'll need to
register in order to view the content of the threads and start contributing to our community.
It's free for basic access, or support us by becoming an Elite Member -- discounts are available after registering.
-- Big Mike, Site Administrator
(If you already have an account, login at the top of the page)
Updated May 12, 2010
Top Posters
looks_one
zeller4
with 4 posts (0 thanks)
looks_two
RJay
with 3 posts (0 thanks)
looks_3
eDanny
with 3 posts (0 thanks)
looks_4
Big Mike
with 1 posts (3 thanks)
trending_up
6,841 views
thumb_up
3 thanks given
group
2 followers
forum
11 posts
attach_file
4 attachments
May 11th, 2010, 10:24 AM
Hartford, CT. USA
Vendor: www.innovative-trading-solutions-online.com
Experience: Intermediate
Platform: NinjaTrader
Broker: AMP/CQG, Kinetick
Trading: ES
Posts: 687 since Jun 2009
Thanks Given: 765
Thanks Received: 789
Has anyone here made a bigger set of arrows for NT???
NT's arrows are a little small on some of my charts.
Can you help answer these questions from other members on NexusFi?
Best Threads (Most Thanked) in the last 7 days on NexusFi
May 11th, 2010, 10:37 AM
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,669 since Jun 2009
Thanks Given: 33,669
Thanks Received: 102,577
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
May 12th, 2010, 10:40 AM
Orlando Florida
Experience: Intermediate
Platform: NT8
Trading: CL, NQ, ES, RTY
Posts: 478 since Jun 2009
Thanks Given: 1,419
Thanks Received: 404
RJay
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 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
May 12th, 2010, 11:01 AM
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
May 12th, 2010, 11:13 AM
Orlando Florida
Experience: Intermediate
Platform: NT8
Trading: CL, NQ, ES, RTY
Posts: 478 since Jun 2009
Thanks Given: 1,419
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
May 12th, 2010, 11:20 AM
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.
May 12th, 2010, 11:36 AM
Orlando Florida
Experience: Intermediate
Platform: NT8
Trading: CL, NQ, ES, RTY
Posts: 478 since Jun 2009
Thanks Given: 1,419
Thanks Received: 404
May 12th, 2010, 12:22 PM
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.
May 12th, 2010, 12:34 PM
Orlando Florida
Experience: Intermediate
Platform: NT8
Trading: CL, NQ, ES, RTY
Posts: 478 since Jun 2009
Thanks Given: 1,419
Thanks Received: 404
i was pretty sure you knew! that answer was for others who may not know...
I hate reinstalling windows...
kz
Last Updated on May 12, 2010