NexusFi: Find Your Edge


Home Menu

 





Make Charts Pretty!


Discussion in NinjaTrader

Updated
      Top Posters
    1. looks_one ThatManFromTexas with 39 posts (74 thanks)
    2. looks_two Fat Tails with 25 posts (69 thanks)
    3. looks_3 lolu with 21 posts (9 thanks)
    4. looks_4 Mindset with 18 posts (38 thanks)
      Best Posters
    1. looks_one Fat Tails with 2.8 thanks per post
    2. looks_two Mindset with 2.1 thanks per post
    3. looks_3 ThatManFromTexas with 1.9 thanks per post
    4. looks_4 Big Mike with 1.3 thanks per post
    1. trending_up 79,337 views
    2. thumb_up 263 thanks given
    3. group 48 followers
    1. forum 202 posts
    2. attach_file 66 attachments




 
Search this Thread

Make Charts Pretty!

  #151 (permalink)
 
Rad4633's Avatar
 Rad4633 
Greensboro NC
 
Experience: Advanced
Platform: TOS/ NT Dorman
Trading: ES TF CL
Posts: 1,357 since Sep 2011
Thanks Given: 2,657
Thanks Received: 894

@ThatManFromTexas

I can say Ive made a day out of this along with a few pts Es but love this new appearance of my charts. Well Done!!!!!

Question, does the background changing colors off a preset 21ema? and the bollingerEMA2fptrendbyTMFT colors off 21ema too correct?

You did the SMAGradientBackground for me which is great, can I ask a little favor,could you do this background for me the same? allow color change option in settings for colors,length of MA it will color of off,,, bc I use a different color down instead of red. I can probably manage changing your EMA bollinger2FP to sma on my own

Either way Great job and Thank you

Visit my NexusFi Trade Journal Reply With Quote

Can you help answer these questions
from other members on NexusFi?
NT7 Indicator Script Troubleshooting - Camarilla Pivots
NinjaTrader
How to apply profiles
Traders Hideout
Better Renko Gaps
The Elite Circle
Trade idea based off three indicators.
Traders Hideout
REcommedations for programming help
Sierra Chart
 
Best Threads (Most Thanked)
in the last 7 days on NexusFi
Spoo-nalysis ES e-mini futures S&P 500
29 thanks
Just another trading journal: PA, Wyckoff & Trends
25 thanks
Tao te Trade: way of the WLD
24 thanks
Bigger Wins or Fewer Losses?
21 thanks
GFIs1 1 DAX trade per day journal
17 thanks
  #152 (permalink)
 
ThatManFromTexas's Avatar
 ThatManFromTexas 
Houston,Tx
 
Experience: Advanced
Platform: NinjaTrader
Broker: Mirus Futures/Zen-Fire
Trading: TF
Posts: 2,265 since Feb 2010
Thanks Given: 1,206
Thanks Received: 4,353


Rad4633 View Post
@ThatManFromTexas

I can say Ive made a day out of this along with a few pts Es but love this new appearance of my charts. Well Done!!!!!

Question, does the background changing colors off a preset 21ema? and the bollingerEMA2fptrendbyTMFT colors off 21ema too correct?

You did the SMAGradientBackground for me which is great, can I ask a little favor do this background for me and allow color change option in settings for colors, bc I use a different color down instead of red. I can probably manage changing your EMA bollinger2FP to sma on my own

Either way Great job and Thank you

@Rad4633

1. I am confused (don't be alarmed... happens all the time .. ) are you talking about the SMAGradientBackground or the ImageFile background?

The SMAGradient has user selectable colors.

The imagefile will pull up whatever images you put in setup, pick images whatever color you like.

2. The trend decisions are based on ...

 
Code
if(EMA(3)[0]>EMA(4)[0] && EMA(4)[0]>EMA(5)[0] && EMA(5)[0]>EMA(6)[0] && EMA(6)[0]>EMA(7)[0] 
&& EMA(7)[0]>EMA(8)[0] && EMA(8)[0]>EMA(9)[0] && EMA(9)[0]>EMA(10)[0] && EMA(10)[0]>EMA(11)[0] 
&& EMA(11)[0]>EMA(12)[0] && EMA(12)[0]>EMA(13)[0])
			
			fillColor = UpColor;
			
			
else  if(EMA(3)[0]<EMA(4)[0] && EMA(4)[0]<EMA(5)[0] && EMA(5)[0]<EMA(6)[0] && EMA(6)[0]<EMA(7)[0] 
&& EMA(7)[0]<EMA(8)[0] && EMA(8)[0]<EMA(9)[0] && EMA(9)[0]<EMA(10)[0] && EMA(10)[0]<EMA(11)[0] 
&& EMA(11)[0]<EMA(12)[0] && EMA(12)[0]<EMA(13)[0])
				
			fillColor = DnColor;
			
			
			else 
			
			fillColor = FtColor;
For your indicator the criteria can be changed to whatever you want. Which begs the question... "Uh... what do you want?"

I'm just a simple man trading a simple plan.

My daddy always said, "Every day above ground is a good day!"
Reply With Quote
  #153 (permalink)
 
Rad4633's Avatar
 Rad4633 
Greensboro NC
 
Experience: Advanced
Platform: TOS/ NT Dorman
Trading: ES TF CL
Posts: 1,357 since Sep 2011
Thanks Given: 2,657
Thanks Received: 894



ThatManFromTexas View Post
@Rad4633

1. I am confused (don't be alarmed... happens all the time .. ) are you talking about the SMAGradientBackground or the ImageFile background?

The SMAGradient has user selectable colors.

The imagefile will pull up whatever images you put in setup, pick images whatever color you like.

2. The trend decisions are based on ...

 
Code
if(EMA(3)[0]>EMA(4)[0] && EMA(4)[0]>EMA(5)[0] && EMA(5)[0]>EMA(6)[0] && EMA(6)[0]>EMA(7)[0] 
&& EMA(7)[0]>EMA(8)[0] && EMA(8)[0]>EMA(9)[0] && EMA(9)[0]>EMA(10)[0] && EMA(10)[0]>EMA(11)[0] 
&& EMA(11)[0]>EMA(12)[0] && EMA(12)[0]>EMA(13)[0])
			
			fillColor = UpColor;
			
			
else  if(EMA(3)[0]<EMA(4)[0] && EMA(4)[0]<EMA(5)[0] && EMA(5)[0]<EMA(6)[0] && EMA(6)[0]<EMA(7)[0] 
&& EMA(7)[0]<EMA(8)[0] && EMA(8)[0]<EMA(9)[0] && EMA(9)[0]<EMA(10)[0] && EMA(10)[0]<EMA(11)[0] 
&& EMA(11)[0]<EMA(12)[0] && EMA(12)[0]<EMA(13)[0])
				
			fillColor = DnColor;
			
			
			else 
			
			fillColor = FtColor;
For your indicator the criteria can be changed to whatever you want. Which begs the question... "Uh... what do you want?"

Sorry TMFT for the confusion.

What i want to do is use a SMA bollinger 20-2-1deviations and have the background change colors off a moving average that I can set to my method just as your SMA Gradient does which also allows background color settings.

How do I achieve doing this?

Many thx again

Visit my NexusFi Trade Journal Reply With Quote
  #154 (permalink)
 
Rad4633's Avatar
 Rad4633 
Greensboro NC
 
Experience: Advanced
Platform: TOS/ NT Dorman
Trading: ES TF CL
Posts: 1,357 since Sep 2011
Thanks Given: 2,657
Thanks Received: 894

settings & colors I use now for smaGradient

Attached Thumbnails
Click image for larger version

Name:	T1.PNG
Views:	311
Size:	111.1 KB
ID:	84893  
Visit my NexusFi Trade Journal Reply With Quote
  #155 (permalink)
 
ThatManFromTexas's Avatar
 ThatManFromTexas 
Houston,Tx
 
Experience: Advanced
Platform: NinjaTrader
Broker: Mirus Futures/Zen-Fire
Trading: TF
Posts: 2,265 since Feb 2010
Thanks Given: 1,206
Thanks Received: 4,353


Rad4633 View Post
Sorry TMFT for the confusion.

What i want to do is use a SMA bollinger 20-2-1deviations and have the background change colors off a moving average that I can set to my method just as your SMA Gradient does which also allows background color settings.

How do I achieve doing this?

Many thx again

@Rad4633


1. Are you going to use the imagefile instead of the gradient background?

2. Do you use more than 1 data series?

I'm just a simple man trading a simple plan.

My daddy always said, "Every day above ground is a good day!"
Reply With Quote
  #156 (permalink)
 
Rad4633's Avatar
 Rad4633 
Greensboro NC
 
Experience: Advanced
Platform: TOS/ NT Dorman
Trading: ES TF CL
Posts: 1,357 since Sep 2011
Thanks Given: 2,657
Thanks Received: 894


ThatManFromTexas View Post
@Rad4633


1. Are you going to use the imagefile instead of the gradient background?

2. Do you use more than 1 data series?

I can use smaGradient but when i change setting to change color of background (ie. red to mediumSeaGreen for my down, background stays red) ??? Also the smaGradient causes the imagefile to stop plotting once I remove smaGradient from indicator imagefile then works again displaying picture, these two dont play well together

I just realized the image file must color off the same as your 21ema, I see why the indi's were conflicting with each other now Help

2. I am only using one data string

Attached Thumbnails
Click image for larger version

Name:	T1.PNG
Views:	258
Size:	564.1 KB
ID:	84905  
Visit my NexusFi Trade Journal Reply With Quote
  #157 (permalink)
 
ThatManFromTexas's Avatar
 ThatManFromTexas 
Houston,Tx
 
Experience: Advanced
Platform: NinjaTrader
Broker: Mirus Futures/Zen-Fire
Trading: TF
Posts: 2,265 since Feb 2010
Thanks Given: 1,206
Thanks Received: 4,353


Rad4633 View Post
I can use smaGradient but when i change setting to change color of background (ie. red to mediumSeaGreen for my down, background stays red) ??? Also the smaGradient causes the imagefile to stop plotting once I remove smaGradient from indicator imagefile then works again displaying picture, these two dont play well together

I just realized the image file must color off the same as your 21ema, I see why the indi's were conflicting with each other now Help

2. I am only using one data string

@Rad4633

Import Rad4633SMA.zip

Indicators are;

Bollinger2FpTrend4Rad4633ByThatManFromTexas.cs

ImageFile4Rad4633ByThatManFromTexas.cs

They are based on > or < SMA(Period)

I left the Flat fields in case you change your criteria in the future. You can ignore them.

Be sure to put the complete file path in the setup for the imagefile.

I'm just a simple man trading a simple plan.

My daddy always said, "Every day above ground is a good day!"
Attached Files
Elite Membership required to download: Rad4633SMA.zip
Reply With Quote
  #158 (permalink)
 
Rad4633's Avatar
 Rad4633 
Greensboro NC
 
Experience: Advanced
Platform: TOS/ NT Dorman
Trading: ES TF CL
Posts: 1,357 since Sep 2011
Thanks Given: 2,657
Thanks Received: 894


ThatManFromTexas View Post
@Rad4633

Import Rad4633SMA.zip

Indicators are;

Bollinger2FpTrend4Rad4633ByThatManFromTexas.cs

ImageFile4Rad4633ByThatManFromTexas.cs

They are based on > or < SMA(Period)

I left the Flat fields in case you change your criteria in the future. You can ignore them.

Be sure to put the complete file path in the setup for the imagefile.

Thank you so much and I assume I go into ie. photoshop reshade(color) my image to match my color selection in my bollingers....

this turned out PERFECT...thank you again- one and only TMFT

Visit my NexusFi Trade Journal Reply With Quote
  #159 (permalink)
 
ThatManFromTexas's Avatar
 ThatManFromTexas 
Houston,Tx
 
Experience: Advanced
Platform: NinjaTrader
Broker: Mirus Futures/Zen-Fire
Trading: TF
Posts: 2,265 since Feb 2010
Thanks Given: 1,206
Thanks Received: 4,353


Rad4633 View Post
Thank you so much and I assume I go into ie. photoshop reshade(color) my image to match my color selection in my bollingers....

this turned out PERFECT...thank you again- one and only TMFT

@Rad4633

1. I used Adobe Elements (came with the computer)/Enhance /Adjust Color/Adjust Hue/Saturation and changed the Hue only.

2. You can start with the Space image I posted and adjust the hue on it.

2. You don't have to use the same image. You can download any images you like that are the color you want.

I'm just a simple man trading a simple plan.

My daddy always said, "Every day above ground is a good day!"
Reply With Quote
  #160 (permalink)
 
lolu's Avatar
 lolu 
Lagos, Nigeria
Market Wizard
 
Experience: Intermediate
Platform: NinjaTrader, SierraChart
Trading: Euro Currency & Oil
Frequency: Daily
Duration: Hours
Posts: 2,552 since Jun 2009
Thanks Given: 1,049
Thanks Received: 1,678



ThatManFromTexas View Post
@lolu

I edited the BollingerEMA to change the region color in sync with the trend just like the ImageFile.









You're welcome

@TMFT,

Can we have a little more from you ... for the BB to change its region color at the point of trend change (momentary, short-term and long-term trend changes) and still maintaining its previous color trend changes (see the screenshot below ... you'll note that the previous green region is maintained even when the red region forms).



Lolu

Visit my NexusFi Trade Journal Reply With Quote




Last Updated on December 17, 2018


© 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