MovingAverages.mqh Part I by Wiliam210 – indicator MetaTrader 5

MovingAverages.mqh Part I by Wiliam210
Good morning. If this code malfunctions for whatever reasons, forgetting or MQL5 upgrades, let me know so I can correct it, thank you You can find all my indicator codes in CodeBase or the Marketplace, free or purchasable, by searching for “William210”. What is SimpleMA, ExponentialMA, SmoothedMA, LinearWeightedMA? Smoothing refers to the action of making … Read more

Click on the market chart to create a price alert – indicator MetaTrader 5

Click on the market chart to create a price alert - indicator for MetaTrader 5
This an indicator which understands mouse click and keyboard press, and the purpose is to create alerts at the price that the market has not yet reached. It can be very helpful to be alerted when the price crosses a particular value. It can be used to validate theories in a trading system, or alert … Read more

Custom Bollinger Bands – indicator MetaTrader 5

one
I developed this indicator to provide an alternative to the standard moving average methods in the MetaTrader 5 Bollinger Bands indicator, which only offer the ‘simple’ method. With my indicator, users have the option to select from additional methods including Exponential, Smoothed, and LinearWeighted. To utilize this indicator, you need to place it in a … Read more

AUTO PIVOTS for MT5 – indicator MetaTrader 5

AUTO PIVOTS for MT5 - indicator for MetaTrader 5
Pivots are well known price action indicator . #property link      ” #property version   “1.00” #property indicator_plots 0 #property indicator_chart_window #property strict input color WeeklyColors = Yellow; input color MonthlyColors = Orange; input bool Use_Sunday_Data   = true; input bool Daily             = true; input bool Daily_SR_Levels   = true; input bool Weekly            = true; input bool Weekly_SR_Levels  = false; input bool … Read more