Forum

Candles.

Why are the candles overlapping

Build 2006 Problems

The following indicators don't work properly - either won't draw at all or draw incorrectly

Delete Data MetaTrader 5

Hi there Is it possible to delete historical data in MetaTrader 5 so one can create a custom session like in MetaTrader 4? I did try a synthetic symbol but that didn't work

Start Time - End Time

Hi there, does anyone know how I would add a specific start time and end time to this indicator so that it doesn't cover the whole day? //+------------------------------------------------------------------+ //| ColorBars.mq5 | //|

Draw in the background.

Does anyone know how to change this indy so that it draws in the background: #property indicator_chart_window #property indicator_buffers 1 #property indicator_plots 1 #property indicator_label1 "Daily open line" #property indicator_type1 DRAW_ARROW #property indicator_style1 STYLE_DOT

MT5 Previous Bar Hi-Lo

Does anyone happen to know how to convert this to MT5 so I can display the previous bars' high and low: int counted_bars=IndicatorCounted(); double HIGH; double LOW; if((Time[0]!=curTime)) { curTime=Time[0]; HIGH = High[1]; LOW = Low[1]; I've tried numerous things but can't seem to find a solution