Expert Advisors • Indicators • Scripts • Libraries

MQL.RobotFX.org is the biggest collection of MetaTrader expert advisors (MT5 & MT4), indicators, scripts and libraries that can be used to improve trading results, minimize risks or simply automate trading tasks

MetaTrader 5 Script | Quick Chart Setter: Instant Color Themes for MT5 Traders

MetaTrader Experts, Indicators, Scripts and Libraries

Hello Traders, I hope y'all like this quick little script. The script is designed to make creating new charts a little quicker. Every time a new chart is created you will need to set your color theme. This annoyed me so I created this script to have three color themes. The color themes are easily edited to make this suit your needs. For me I have it set to green/red, Aqua/Pink, and Black/White. Find the color you want to change. The varible for colors will start with clr then the color. Repeat ths pattern with your choice. Example Below

      case PINK_AQUA:    //A Personal Favorite Color Design            bullishColor = clrAqua;           bearishColor = clrHotPink;           backgroundColor = clrBlack;           gridColor = clrSlateGray;           textColor = clrWhite;           break;

Now to use it. Make a new chart, drag the script to the chart,  pick your theme hit okay.

61452